From 3c83039a714f653b9ea847551ac6e54b539a8e23 Mon Sep 17 00:00:00 2001 From: NicholaiVogel Date: Tue, 7 Oct 2025 21:14:33 -0600 Subject: [PATCH] Add 3DE to Nuke Track Converter v2.0 - Complete rewrite with beautiful Rich TUI interface - Interactive and CLI modes for flexibility - Robust error handling with clear, helpful messages - Gap filling with linear interpolation support - Coordinate system transforms (pixels/normalized) - Auto-generated output filenames from input - Configurable resolution and Nuke versions - Batch processing support via CLI - Comprehensive documentation in Scripts/README_CONVERTER.md - Updated main README.md with Scripts section --- README.md | 58 +- Scripts/.gitignore | 41 + Scripts/3de-to-nuke-converter.py | 548 ++ .../site-packages/_distutils_hack/__init__.py | 128 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 5154 bytes .../__pycache__/override.cpython-310.pyc | Bin 0 -> 259 bytes .../site-packages/_distutils_hack/override.py | 1 + .../site-packages/distutils-precedence.pth | 1 + .../Lib/site-packages/markdown_it/__init__.py | 6 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 329 bytes .../__pycache__/_compat.cpython-310.pyc | Bin 0 -> 249 bytes .../__pycache__/_punycode.cpython-310.pyc | Bin 0 -> 1789 bytes .../__pycache__/main.cpython-310.pyc | Bin 0 -> 12820 bytes .../__pycache__/parser_block.cpython-310.pyc | Bin 0 -> 2815 bytes .../__pycache__/parser_core.cpython-310.pyc | Bin 0 -> 1521 bytes .../__pycache__/parser_inline.cpython-310.pyc | Bin 0 -> 3240 bytes .../__pycache__/renderer.cpython-310.pyc | Bin 0 -> 7765 bytes .../__pycache__/ruler.cpython-310.pyc | Bin 0 -> 9085 bytes .../__pycache__/token.cpython-310.pyc | Bin 0 -> 6227 bytes .../__pycache__/tree.cpython-310.pyc | Bin 0 -> 10943 bytes .../__pycache__/utils.cpython-310.pyc | Bin 0 -> 6053 bytes .../Lib/site-packages/markdown_it/_compat.py | 1 + .../site-packages/markdown_it/_punycode.py | 67 + .../site-packages/markdown_it/cli/__init__.py | 0 .../cli/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 208 bytes .../cli/__pycache__/parse.cpython-310.pyc | Bin 0 -> 3296 bytes .../site-packages/markdown_it/cli/parse.py | 110 + .../markdown_it/common/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 211 bytes .../__pycache__/entities.cpython-310.pyc | Bin 0 -> 485 bytes .../__pycache__/html_blocks.cpython-310.pyc | Bin 0 -> 785 bytes .../__pycache__/html_re.cpython-310.pyc | Bin 0 -> 1020 bytes .../__pycache__/normalize_url.cpython-310.pyc | Bin 0 -> 2237 bytes .../common/__pycache__/utils.cpython-310.pyc | Bin 0 -> 6285 bytes .../markdown_it/common/entities.py | 5 + .../markdown_it/common/html_blocks.py | 69 + .../markdown_it/common/html_re.py | 39 + .../markdown_it/common/normalize_url.py | 81 + .../site-packages/markdown_it/common/utils.py | 313 + .../markdown_it/helpers/__init__.py | 6 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 465 bytes .../parse_link_destination.cpython-310.pyc | Bin 0 -> 1489 bytes .../parse_link_label.cpython-310.pyc | Bin 0 -> 938 bytes .../parse_link_title.cpython-310.pyc | Bin 0 -> 1713 bytes .../helpers/parse_link_destination.py | 83 + .../markdown_it/helpers/parse_link_label.py | 44 + .../markdown_it/helpers/parse_link_title.py | 75 + Scripts/Lib/site-packages/markdown_it/main.py | 350 + .../site-packages/markdown_it/parser_block.py | 113 + .../site-packages/markdown_it/parser_core.py | 46 + .../markdown_it/parser_inline.py | 148 + .../Lib/site-packages/markdown_it/port.yaml | 48 + .../markdown_it/presets/__init__.py | 28 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 1256 bytes .../__pycache__/commonmark.cpython-310.pyc | Bin 0 -> 1095 bytes .../__pycache__/default.cpython-310.pyc | Bin 0 -> 636 bytes .../presets/__pycache__/zero.cpython-310.pyc | Bin 0 -> 870 bytes .../markdown_it/presets/commonmark.py | 75 + .../markdown_it/presets/default.py | 36 + .../site-packages/markdown_it/presets/zero.py | 44 + .../Lib/site-packages/markdown_it/py.typed | 1 + .../Lib/site-packages/markdown_it/renderer.py | 336 + .../Lib/site-packages/markdown_it/ruler.py | 275 + .../markdown_it/rules_block/__init__.py | 27 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 677 bytes .../__pycache__/blockquote.cpython-310.pyc | Bin 0 -> 3193 bytes .../__pycache__/code.cpython-310.pyc | Bin 0 -> 924 bytes .../__pycache__/fence.cpython-310.pyc | Bin 0 -> 1414 bytes .../__pycache__/heading.cpython-310.pyc | Bin 0 -> 1572 bytes .../__pycache__/hr.cpython-310.pyc | Bin 0 -> 1161 bytes .../__pycache__/html_block.cpython-310.pyc | Bin 0 -> 1971 bytes .../__pycache__/lheading.cpython-310.pyc | Bin 0 -> 1573 bytes .../__pycache__/list.cpython-310.pyc | Bin 0 -> 4099 bytes .../__pycache__/paragraph.cpython-310.pyc | Bin 0 -> 1270 bytes .../__pycache__/reference.cpython-310.pyc | Bin 0 -> 3290 bytes .../__pycache__/state_block.cpython-310.pyc | Bin 0 -> 5741 bytes .../__pycache__/table.cpython-310.pyc | Bin 0 -> 3847 bytes .../markdown_it/rules_block/blockquote.py | 299 + .../markdown_it/rules_block/code.py | 36 + .../markdown_it/rules_block/fence.py | 101 + .../markdown_it/rules_block/heading.py | 69 + .../markdown_it/rules_block/hr.py | 56 + .../markdown_it/rules_block/html_block.py | 90 + .../markdown_it/rules_block/lheading.py | 86 + .../markdown_it/rules_block/list.py | 345 + .../markdown_it/rules_block/paragraph.py | 66 + .../markdown_it/rules_block/reference.py | 235 + .../markdown_it/rules_block/state_block.py | 261 + .../markdown_it/rules_block/table.py | 250 + .../markdown_it/rules_core/__init__.py | 19 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 545 bytes .../__pycache__/block.cpython-310.pyc | Bin 0 -> 626 bytes .../__pycache__/inline.cpython-310.pyc | Bin 0 -> 541 bytes .../__pycache__/linkify.cpython-310.pyc | Bin 0 -> 2701 bytes .../__pycache__/normalize.cpython-310.pyc | Bin 0 -> 591 bytes .../__pycache__/replacements.cpython-310.pyc | Bin 0 -> 2764 bytes .../__pycache__/smartquotes.cpython-310.pyc | Bin 0 -> 3319 bytes .../__pycache__/state_core.cpython-310.pyc | Bin 0 -> 980 bytes .../__pycache__/text_join.cpython-310.pyc | Bin 0 -> 1126 bytes .../markdown_it/rules_core/block.py | 13 + .../markdown_it/rules_core/inline.py | 10 + .../markdown_it/rules_core/linkify.py | 149 + .../markdown_it/rules_core/normalize.py | 19 + .../markdown_it/rules_core/replacements.py | 127 + .../markdown_it/rules_core/smartquotes.py | 202 + .../markdown_it/rules_core/state_core.py | 25 + .../markdown_it/rules_core/text_join.py | 35 + .../markdown_it/rules_inline/__init__.py | 31 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 806 bytes .../__pycache__/autolink.cpython-310.pyc | Bin 0 -> 1482 bytes .../__pycache__/backticks.cpython-310.pyc | Bin 0 -> 1312 bytes .../__pycache__/balance_pairs.cpython-310.pyc | Bin 0 -> 1918 bytes .../__pycache__/emphasis.cpython-310.pyc | Bin 0 -> 2153 bytes .../__pycache__/entity.cpython-310.pyc | Bin 0 -> 1316 bytes .../__pycache__/escape.cpython-310.pyc | Bin 0 -> 1274 bytes .../fragments_join.cpython-310.pyc | Bin 0 -> 1239 bytes .../__pycache__/html_inline.cpython-310.pyc | Bin 0 -> 1182 bytes .../__pycache__/image.cpython-310.pyc | Bin 0 -> 2051 bytes .../__pycache__/link.cpython-310.pyc | Bin 0 -> 1909 bytes .../__pycache__/linkify.cpython-310.pyc | Bin 0 -> 1466 bytes .../__pycache__/newline.cpython-310.pyc | Bin 0 -> 996 bytes .../__pycache__/state_inline.cpython-310.pyc | Bin 0 -> 3953 bytes .../__pycache__/strikethrough.cpython-310.pyc | Bin 0 -> 2336 bytes .../__pycache__/text.cpython-310.pyc | Bin 0 -> 963 bytes .../markdown_it/rules_inline/autolink.py | 77 + .../markdown_it/rules_inline/backticks.py | 72 + .../markdown_it/rules_inline/balance_pairs.py | 138 + .../markdown_it/rules_inline/emphasis.py | 102 + .../markdown_it/rules_inline/entity.py | 53 + .../markdown_it/rules_inline/escape.py | 93 + .../rules_inline/fragments_join.py | 43 + .../markdown_it/rules_inline/html_inline.py | 43 + .../markdown_it/rules_inline/image.py | 148 + .../markdown_it/rules_inline/link.py | 149 + .../markdown_it/rules_inline/linkify.py | 62 + .../markdown_it/rules_inline/newline.py | 44 + .../markdown_it/rules_inline/state_inline.py | 165 + .../markdown_it/rules_inline/strikethrough.py | 127 + .../markdown_it/rules_inline/text.py | 62 + .../Lib/site-packages/markdown_it/token.py | 178 + Scripts/Lib/site-packages/markdown_it/tree.py | 333 + .../Lib/site-packages/markdown_it/utils.py | 186 + .../markdown_it_py-4.0.0.dist-info/INSTALLER | 1 + .../markdown_it_py-4.0.0.dist-info/METADATA | 219 + .../markdown_it_py-4.0.0.dist-info/RECORD | 142 + .../markdown_it_py-4.0.0.dist-info/WHEEL | 4 + .../entry_points.txt | 3 + .../licenses/LICENSE | 21 + .../licenses/LICENSE.markdown-it | 22 + .../mdurl-0.1.2.dist-info/INSTALLER | 1 + .../mdurl-0.1.2.dist-info/LICENSE | 46 + .../mdurl-0.1.2.dist-info/METADATA | 32 + .../mdurl-0.1.2.dist-info/RECORD | 18 + .../site-packages/mdurl-0.1.2.dist-info/WHEEL | 4 + Scripts/Lib/site-packages/mdurl/__init__.py | 18 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 637 bytes .../mdurl/__pycache__/_decode.cpython-310.pyc | Bin 0 -> 2333 bytes .../mdurl/__pycache__/_encode.cpython-310.pyc | Bin 0 -> 1937 bytes .../mdurl/__pycache__/_format.cpython-310.pyc | Bin 0 -> 767 bytes .../mdurl/__pycache__/_parse.cpython-310.pyc | Bin 0 -> 4123 bytes .../mdurl/__pycache__/_url.cpython-310.pyc | Bin 0 -> 615 bytes Scripts/Lib/site-packages/mdurl/_decode.py | 104 + Scripts/Lib/site-packages/mdurl/_encode.py | 85 + Scripts/Lib/site-packages/mdurl/_format.py | 27 + Scripts/Lib/site-packages/mdurl/_parse.py | 304 + Scripts/Lib/site-packages/mdurl/_url.py | 14 + Scripts/Lib/site-packages/mdurl/py.typed | 1 + .../pip-21.2.3.dist-info/INSTALLER | 1 + .../pip-21.2.3.dist-info/LICENSE.txt | 20 + .../pip-21.2.3.dist-info/METADATA | 92 + .../site-packages/pip-21.2.3.dist-info/RECORD | 795 ++ .../pip-21.2.3.dist-info/REQUESTED | 0 .../site-packages/pip-21.2.3.dist-info/WHEEL | 5 + .../pip-21.2.3.dist-info/entry_points.txt | 5 + .../pip-21.2.3.dist-info/top_level.txt | 1 + Scripts/Lib/site-packages/pip/__init__.py | 13 + Scripts/Lib/site-packages/pip/__main__.py | 31 + .../pip/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 653 bytes .../pip/__pycache__/__main__.cpython-310.pyc | Bin 0 -> 614 bytes .../site-packages/pip/_internal/__init__.py | 19 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 774 bytes .../__pycache__/build_env.cpython-310.pyc | Bin 0 -> 9153 bytes .../__pycache__/cache.cpython-310.pyc | Bin 0 -> 7781 bytes .../__pycache__/configuration.cpython-310.pyc | Bin 0 -> 10743 bytes .../__pycache__/exceptions.cpython-310.pyc | Bin 0 -> 15315 bytes .../__pycache__/main.cpython-310.pyc | Bin 0 -> 598 bytes .../__pycache__/pyproject.cpython-310.pyc | Bin 0 -> 3470 bytes .../self_outdated_check.cpython-310.pyc | Bin 0 -> 4376 bytes .../__pycache__/wheel_builder.cpython-310.pyc | Bin 0 -> 8310 bytes .../site-packages/pip/_internal/build_env.py | 294 + .../Lib/site-packages/pip/_internal/cache.py | 287 + .../pip/_internal/cli/__init__.py | 4 + .../cli/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 293 bytes .../autocompletion.cpython-310.pyc | Bin 0 -> 5194 bytes .../__pycache__/base_command.cpython-310.pyc | Bin 0 -> 6000 bytes .../__pycache__/cmdoptions.cpython-310.pyc | Bin 0 -> 22361 bytes .../command_context.cpython-310.pyc | Bin 0 -> 1327 bytes .../cli/__pycache__/main.cpython-310.pyc | Bin 0 -> 1391 bytes .../__pycache__/main_parser.cpython-310.pyc | Bin 0 -> 2178 bytes .../cli/__pycache__/parser.cpython-310.pyc | Bin 0 -> 9966 bytes .../__pycache__/progress_bars.cpython-310.pyc | Bin 0 -> 7632 bytes .../__pycache__/req_command.cpython-310.pyc | Bin 0 -> 12163 bytes .../cli/__pycache__/spinners.cpython-310.pyc | Bin 0 -> 4967 bytes .../__pycache__/status_codes.cpython-310.pyc | Bin 0 -> 372 bytes .../pip/_internal/cli/autocompletion.py | 163 + .../pip/_internal/cli/base_command.py | 214 + .../pip/_internal/cli/cmdoptions.py | 1009 ++ .../pip/_internal/cli/command_context.py | 27 + .../site-packages/pip/_internal/cli/main.py | 70 + .../pip/_internal/cli/main_parser.py | 87 + .../site-packages/pip/_internal/cli/parser.py | 292 + .../pip/_internal/cli/progress_bars.py | 250 + .../pip/_internal/cli/req_command.py | 453 + .../pip/_internal/cli/spinners.py | 157 + .../pip/_internal/cli/status_codes.py | 6 + .../pip/_internal/commands/__init__.py | 112 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 3120 bytes .../__pycache__/cache.cpython-310.pyc | Bin 0 -> 6061 bytes .../__pycache__/check.cpython-310.pyc | Bin 0 -> 1592 bytes .../__pycache__/completion.cpython-310.pyc | Bin 0 -> 3156 bytes .../__pycache__/configuration.cpython-310.pyc | Bin 0 -> 8354 bytes .../__pycache__/debug.cpython-310.pyc | Bin 0 -> 6712 bytes .../__pycache__/download.cpython-310.pyc | Bin 0 -> 4009 bytes .../__pycache__/freeze.cpython-310.pyc | Bin 0 -> 2651 bytes .../commands/__pycache__/hash.cpython-310.pyc | Bin 0 -> 2167 bytes .../commands/__pycache__/help.cpython-310.pyc | Bin 0 -> 1330 bytes .../__pycache__/index.cpython-310.pyc | Bin 0 -> 4577 bytes .../__pycache__/install.cpython-310.pyc | Bin 0 -> 17783 bytes .../commands/__pycache__/list.cpython-310.pyc | Bin 0 -> 10083 bytes .../__pycache__/search.cpython-310.pyc | Bin 0 -> 5378 bytes .../commands/__pycache__/show.cpython-310.pyc | Bin 0 -> 8455 bytes .../__pycache__/uninstall.cpython-310.pyc | Bin 0 -> 3125 bytes .../__pycache__/wheel.cpython-310.pyc | Bin 0 -> 4870 bytes .../pip/_internal/commands/cache.py | 216 + .../pip/_internal/commands/check.py | 47 + .../pip/_internal/commands/completion.py | 91 + .../pip/_internal/commands/configuration.py | 266 + .../pip/_internal/commands/debug.py | 204 + .../pip/_internal/commands/download.py | 139 + .../pip/_internal/commands/freeze.py | 84 + .../pip/_internal/commands/hash.py | 55 + .../pip/_internal/commands/help.py | 41 + .../pip/_internal/commands/index.py | 139 + .../pip/_internal/commands/install.py | 750 ++ .../pip/_internal/commands/list.py | 337 + .../pip/_internal/commands/search.py | 164 + .../pip/_internal/commands/show.py | 234 + .../pip/_internal/commands/uninstall.py | 100 + .../pip/_internal/commands/wheel.py | 176 + .../pip/_internal/configuration.py | 403 + .../pip/_internal/distributions/__init__.py | 21 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 821 bytes .../__pycache__/base.cpython-310.pyc | Bin 0 -> 1929 bytes .../__pycache__/installed.cpython-310.pyc | Bin 0 -> 1267 bytes .../__pycache__/sdist.cpython-310.pyc | Bin 0 -> 3607 bytes .../__pycache__/wheel.cpython-310.pyc | Bin 0 -> 1604 bytes .../pip/_internal/distributions/base.py | 38 + .../pip/_internal/distributions/installed.py | 22 + .../pip/_internal/distributions/sdist.py | 95 + .../pip/_internal/distributions/wheel.py | 34 + .../site-packages/pip/_internal/exceptions.py | 397 + .../pip/_internal/index/__init__.py | 2 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 247 bytes .../__pycache__/collector.cpython-310.pyc | Bin 0 -> 15971 bytes .../package_finder.cpython-310.pyc | Bin 0 -> 28178 bytes .../index/__pycache__/sources.cpython-310.pyc | Bin 0 -> 7143 bytes .../pip/_internal/index/collector.py | 534 ++ .../pip/_internal/index/package_finder.py | 982 ++ .../pip/_internal/index/sources.py | 224 + .../pip/_internal/locations/__init__.py | 351 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 8387 bytes .../__pycache__/_distutils.cpython-310.pyc | Bin 0 -> 4676 bytes .../__pycache__/_sysconfig.cpython-310.pyc | Bin 0 -> 6262 bytes .../__pycache__/base.cpython-310.pyc | Bin 0 -> 1558 bytes .../pip/_internal/locations/_distutils.py | 169 + .../pip/_internal/locations/_sysconfig.py | 219 + .../pip/_internal/locations/base.py | 52 + .../Lib/site-packages/pip/_internal/main.py | 13 + .../pip/_internal/metadata/__init__.py | 48 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 1861 bytes .../metadata/__pycache__/base.cpython-310.pyc | Bin 0 -> 9258 bytes .../__pycache__/pkg_resources.cpython-310.pyc | Bin 0 -> 6101 bytes .../pip/_internal/metadata/base.py | 242 + .../pip/_internal/metadata/pkg_resources.py | 153 + .../pip/_internal/models/__init__.py | 2 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 281 bytes .../__pycache__/candidate.cpython-310.pyc | Bin 0 -> 1434 bytes .../__pycache__/direct_url.cpython-310.pyc | Bin 0 -> 7135 bytes .../format_control.cpython-310.pyc | Bin 0 -> 2773 bytes .../models/__pycache__/index.cpython-310.pyc | Bin 0 -> 1259 bytes .../models/__pycache__/link.cpython-310.pyc | Bin 0 -> 10256 bytes .../models/__pycache__/scheme.cpython-310.pyc | Bin 0 -> 1049 bytes .../__pycache__/search_scope.cpython-310.pyc | Bin 0 -> 3512 bytes .../selection_prefs.cpython-310.pyc | Bin 0 -> 1711 bytes .../__pycache__/target_python.cpython-310.pyc | Bin 0 -> 3468 bytes .../models/__pycache__/wheel.cpython-310.pyc | Bin 0 -> 4369 bytes .../pip/_internal/models/candidate.py | 31 + .../pip/_internal/models/direct_url.py | 220 + .../pip/_internal/models/format_control.py | 84 + .../pip/_internal/models/index.py | 32 + .../pip/_internal/models/link.py | 288 + .../pip/_internal/models/scheme.py | 31 + .../pip/_internal/models/search_scope.py | 126 + .../pip/_internal/models/selection_prefs.py | 46 + .../pip/_internal/models/target_python.py | 111 + .../pip/_internal/models/wheel.py | 92 + .../pip/_internal/network/__init__.py | 2 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 269 bytes .../network/__pycache__/auth.cpython-310.pyc | Bin 0 -> 7514 bytes .../network/__pycache__/cache.cpython-310.pyc | Bin 0 -> 2916 bytes .../__pycache__/download.cpython-310.pyc | Bin 0 -> 5486 bytes .../__pycache__/lazy_wheel.cpython-310.pyc | Bin 0 -> 8398 bytes .../__pycache__/session.cpython-310.pyc | Bin 0 -> 10548 bytes .../network/__pycache__/utils.cpython-310.pyc | Bin 0 -> 1465 bytes .../__pycache__/xmlrpc.cpython-310.pyc | Bin 0 -> 2082 bytes .../pip/_internal/network/auth.py | 316 + .../pip/_internal/network/cache.py | 69 + .../pip/_internal/network/download.py | 184 + .../pip/_internal/network/lazy_wheel.py | 210 + .../pip/_internal/network/session.py | 454 + .../pip/_internal/network/utils.py | 96 + .../pip/_internal/network/xmlrpc.py | 60 + .../pip/_internal/operations/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 217 bytes .../__pycache__/check.cpython-310.pyc | Bin 0 -> 3977 bytes .../__pycache__/freeze.cpython-310.pyc | Bin 0 -> 6328 bytes .../__pycache__/prepare.cpython-310.pyc | Bin 0 -> 14289 bytes .../_internal/operations/build/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 223 bytes .../__pycache__/metadata.cpython-310.pyc | Bin 0 -> 1175 bytes .../metadata_legacy.cpython-310.pyc | Bin 0 -> 1968 bytes .../build/__pycache__/wheel.cpython-310.pyc | Bin 0 -> 1154 bytes .../__pycache__/wheel_legacy.cpython-310.pyc | Bin 0 -> 2553 bytes .../_internal/operations/build/metadata.py | 35 + .../operations/build/metadata_legacy.py | 74 + .../pip/_internal/operations/build/wheel.py | 38 + .../operations/build/wheel_legacy.py | 110 + .../pip/_internal/operations/check.py | 153 + .../pip/_internal/operations/freeze.py | 277 + .../_internal/operations/install/__init__.py | 2 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 281 bytes .../editable_legacy.cpython-310.pyc | Bin 0 -> 1350 bytes .../__pycache__/legacy.cpython-310.pyc | Bin 0 -> 3507 bytes .../install/__pycache__/wheel.cpython-310.pyc | Bin 0 -> 20453 bytes .../operations/install/editable_legacy.py | 47 + .../_internal/operations/install/legacy.py | 132 + .../pip/_internal/operations/install/wheel.py | 803 ++ .../pip/_internal/operations/prepare.py | 655 ++ .../site-packages/pip/_internal/pyproject.py | 183 + .../pip/_internal/req/__init__.py | 94 + .../req/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 2619 bytes .../__pycache__/constructors.cpython-310.pyc | Bin 0 -> 11730 bytes .../req/__pycache__/req_file.cpython-310.pyc | Bin 0 -> 13508 bytes .../__pycache__/req_install.cpython-310.pyc | Bin 0 -> 21487 bytes .../req/__pycache__/req_set.cpython-310.pyc | Bin 0 -> 5860 bytes .../__pycache__/req_tracker.cpython-310.pyc | Bin 0 -> 4355 bytes .../__pycache__/req_uninstall.cpython-310.pyc | Bin 0 -> 18853 bytes .../pip/_internal/req/constructors.py | 474 + .../pip/_internal/req/req_file.py | 528 ++ .../pip/_internal/req/req_install.py | 846 ++ .../pip/_internal/req/req_set.py | 190 + .../pip/_internal/req/req_tracker.py | 130 + .../pip/_internal/req/req_uninstall.py | 629 ++ .../pip/_internal/resolution/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 217 bytes .../__pycache__/base.cpython-310.pyc | Bin 0 -> 1042 bytes .../pip/_internal/resolution/base.py | 18 + .../_internal/resolution/legacy/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 224 bytes .../__pycache__/resolver.cpython-310.pyc | Bin 0 -> 12124 bytes .../_internal/resolution/legacy/resolver.py | 453 + .../resolution/resolvelib/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 228 bytes .../__pycache__/base.cpython-310.pyc | Bin 0 -> 6612 bytes .../__pycache__/candidates.cpython-310.pyc | Bin 0 -> 18910 bytes .../__pycache__/factory.cpython-310.pyc | Bin 0 -> 18581 bytes .../found_candidates.cpython-310.pyc | Bin 0 -> 4846 bytes .../__pycache__/provider.cpython-310.pyc | Bin 0 -> 6828 bytes .../__pycache__/reporter.cpython-310.pyc | Bin 0 -> 3255 bytes .../__pycache__/requirements.cpython-310.pyc | Bin 0 -> 7486 bytes .../__pycache__/resolver.cpython-310.pyc | Bin 0 -> 7828 bytes .../_internal/resolution/resolvelib/base.py | 144 + .../resolution/resolvelib/candidates.py | 555 ++ .../resolution/resolvelib/factory.py | 700 ++ .../resolution/resolvelib/found_candidates.py | 142 + .../resolution/resolvelib/provider.py | 197 + .../resolution/resolvelib/reporter.py | 69 + .../resolution/resolvelib/requirements.py | 166 + .../resolution/resolvelib/resolver.py | 272 + .../pip/_internal/self_outdated_check.py | 187 + .../pip/_internal/utils/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 212 bytes .../utils/__pycache__/_log.cpython-310.pyc | Bin 0 -> 1541 bytes .../utils/__pycache__/appdirs.cpython-310.pyc | Bin 0 -> 1344 bytes .../utils/__pycache__/compat.cpython-310.pyc | Bin 0 -> 1529 bytes .../compatibility_tags.cpython-310.pyc | Bin 0 -> 4144 bytes .../__pycache__/datetime.cpython-310.pyc | Bin 0 -> 535 bytes .../__pycache__/deprecation.cpython-310.pyc | Bin 0 -> 3060 bytes .../direct_url_helpers.cpython-310.pyc | Bin 0 -> 1853 bytes .../distutils_args.cpython-310.pyc | Bin 0 -> 1120 bytes .../__pycache__/encoding.cpython-310.pyc | Bin 0 -> 1325 bytes .../__pycache__/entrypoints.cpython-310.pyc | Bin 0 -> 1323 bytes .../__pycache__/filesystem.cpython-310.pyc | Bin 0 -> 5182 bytes .../__pycache__/filetypes.cpython-310.pyc | Bin 0 -> 825 bytes .../utils/__pycache__/glibc.cpython-310.pyc | Bin 0 -> 1635 bytes .../utils/__pycache__/hashes.cpython-310.pyc | Bin 0 -> 5039 bytes .../inject_securetransport.cpython-310.pyc | Bin 0 -> 989 bytes .../utils/__pycache__/logging.cpython-310.pyc | Bin 0 -> 9102 bytes .../utils/__pycache__/misc.cpython-310.pyc | Bin 0 -> 21725 bytes .../utils/__pycache__/models.cpython-310.pyc | Bin 0 -> 1854 bytes .../__pycache__/packaging.cpython-310.pyc | Bin 0 -> 2542 bytes .../__pycache__/parallel.cpython-310.pyc | Bin 0 -> 3054 bytes .../__pycache__/pkg_resources.cpython-310.pyc | Bin 0 -> 1722 bytes .../setuptools_build.cpython-310.pyc | Bin 0 -> 2989 bytes .../__pycache__/subprocess.cpython-310.pyc | Bin 0 -> 5748 bytes .../__pycache__/temp_dir.cpython-310.pyc | Bin 0 -> 6906 bytes .../__pycache__/unpacking.cpython-310.pyc | Bin 0 -> 6482 bytes .../utils/__pycache__/urls.cpython-310.pyc | Bin 0 -> 1557 bytes .../__pycache__/virtualenv.cpython-310.pyc | Bin 0 -> 3244 bytes .../utils/__pycache__/wheel.cpython-310.pyc | Bin 0 -> 5941 bytes .../site-packages/pip/_internal/utils/_log.py | 38 + .../pip/_internal/utils/appdirs.py | 35 + .../pip/_internal/utils/compat.py | 63 + .../pip/_internal/utils/compatibility_tags.py | 168 + .../pip/_internal/utils/datetime.py | 11 + .../pip/_internal/utils/deprecation.py | 104 + .../pip/_internal/utils/direct_url_helpers.py | 79 + .../pip/_internal/utils/distutils_args.py | 42 + .../pip/_internal/utils/encoding.py | 36 + .../pip/_internal/utils/entrypoints.py | 27 + .../pip/_internal/utils/filesystem.py | 182 + .../pip/_internal/utils/filetypes.py | 28 + .../pip/_internal/utils/glibc.py | 92 + .../pip/_internal/utils/hashes.py | 165 + .../_internal/utils/inject_securetransport.py | 36 + .../pip/_internal/utils/logging.py | 391 + .../site-packages/pip/_internal/utils/misc.py | 828 ++ .../pip/_internal/utils/models.py | 47 + .../pip/_internal/utils/packaging.py | 89 + .../pip/_internal/utils/parallel.py | 101 + .../pip/_internal/utils/pkg_resources.py | 40 + .../pip/_internal/utils/setuptools_build.py | 173 + .../pip/_internal/utils/subprocess.py | 281 + .../pip/_internal/utils/temp_dir.py | 260 + .../pip/_internal/utils/unpacking.py | 267 + .../site-packages/pip/_internal/utils/urls.py | 65 + .../pip/_internal/utils/virtualenv.py | 111 + .../pip/_internal/utils/wheel.py | 189 + .../pip/_internal/vcs/__init__.py | 15 + .../vcs/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 535 bytes .../vcs/__pycache__/bazaar.cpython-310.pyc | Bin 0 -> 3024 bytes .../vcs/__pycache__/git.cpython-310.pyc | Bin 0 -> 11753 bytes .../vcs/__pycache__/mercurial.cpython-310.pyc | Bin 0 -> 4672 bytes .../__pycache__/subversion.cpython-310.pyc | Bin 0 -> 7979 bytes .../versioncontrol.cpython-310.pyc | Bin 0 -> 19500 bytes .../site-packages/pip/_internal/vcs/bazaar.py | 96 + .../site-packages/pip/_internal/vcs/git.py | 506 + .../pip/_internal/vcs/mercurial.py | 158 + .../pip/_internal/vcs/subversion.py | 329 + .../pip/_internal/vcs/versioncontrol.py | 722 ++ .../pip/_internal/wheel_builder.py | 360 + .../Lib/site-packages/pip/_vendor/__init__.py | 111 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 2930 bytes .../__pycache__/appdirs.cpython-310.pyc | Bin 0 -> 21207 bytes .../__pycache__/distro.cpython-310.pyc | Bin 0 -> 36702 bytes .../__pycache__/pyparsing.cpython-310.pyc | Bin 0 -> 237912 bytes .../_vendor/__pycache__/six.cpython-310.pyc | Bin 0 -> 27616 bytes .../Lib/site-packages/pip/_vendor/appdirs.py | 633 ++ .../pip/_vendor/cachecontrol/__init__.py | 11 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 570 bytes .../__pycache__/_cmd.cpython-310.pyc | Bin 0 -> 1601 bytes .../__pycache__/adapter.cpython-310.pyc | Bin 0 -> 3119 bytes .../__pycache__/cache.cpython-310.pyc | Bin 0 -> 1849 bytes .../__pycache__/compat.cpython-310.pyc | Bin 0 -> 777 bytes .../__pycache__/controller.cpython-310.pyc | Bin 0 -> 7801 bytes .../__pycache__/filewrapper.cpython-310.pyc | Bin 0 -> 2198 bytes .../__pycache__/heuristics.cpython-310.pyc | Bin 0 -> 4739 bytes .../__pycache__/serialize.cpython-310.pyc | Bin 0 -> 4244 bytes .../__pycache__/wrapper.cpython-310.pyc | Bin 0 -> 708 bytes .../pip/_vendor/cachecontrol/_cmd.py | 57 + .../pip/_vendor/cachecontrol/adapter.py | 133 + .../pip/_vendor/cachecontrol/cache.py | 39 + .../_vendor/cachecontrol/caches/__init__.py | 2 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 314 bytes .../__pycache__/file_cache.cpython-310.pyc | Bin 0 -> 3373 bytes .../__pycache__/redis_cache.cpython-310.pyc | Bin 0 -> 1594 bytes .../_vendor/cachecontrol/caches/file_cache.py | 146 + .../cachecontrol/caches/redis_cache.py | 33 + .../pip/_vendor/cachecontrol/compat.py | 29 + .../pip/_vendor/cachecontrol/controller.py | 376 + .../pip/_vendor/cachecontrol/filewrapper.py | 80 + .../pip/_vendor/cachecontrol/heuristics.py | 135 + .../pip/_vendor/cachecontrol/serialize.py | 188 + .../pip/_vendor/cachecontrol/wrapper.py | 29 + .../pip/_vendor/certifi/__init__.py | 3 + .../pip/_vendor/certifi/__main__.py | 12 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 296 bytes .../__pycache__/__main__.cpython-310.pyc | Bin 0 -> 475 bytes .../certifi/__pycache__/core.cpython-310.pyc | Bin 0 -> 1570 bytes .../pip/_vendor/certifi/cacert.pem | 4257 +++++++++ .../site-packages/pip/_vendor/certifi/core.py | 76 + .../pip/_vendor/chardet/__init__.py | 83 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 1922 bytes .../__pycache__/big5freq.cpython-310.pyc | Bin 0 -> 27199 bytes .../__pycache__/big5prober.cpython-310.pyc | Bin 0 -> 1150 bytes .../chardistribution.cpython-310.pyc | Bin 0 -> 5761 bytes .../charsetgroupprober.cpython-310.pyc | Bin 0 -> 2249 bytes .../__pycache__/charsetprober.cpython-310.pyc | Bin 0 -> 3503 bytes .../codingstatemachine.cpython-310.pyc | Bin 0 -> 2922 bytes .../__pycache__/compat.cpython-310.pyc | Bin 0 -> 421 bytes .../__pycache__/cp949prober.cpython-310.pyc | Bin 0 -> 1157 bytes .../chardet/__pycache__/enums.cpython-310.pyc | Bin 0 -> 2605 bytes .../__pycache__/escprober.cpython-310.pyc | Bin 0 -> 2651 bytes .../chardet/__pycache__/escsm.cpython-310.pyc | Bin 0 -> 8398 bytes .../__pycache__/eucjpprober.cpython-310.pyc | Bin 0 -> 2455 bytes .../__pycache__/euckrfreq.cpython-310.pyc | Bin 0 -> 12083 bytes .../__pycache__/euckrprober.cpython-310.pyc | Bin 0 -> 1158 bytes .../__pycache__/euctwfreq.cpython-310.pyc | Bin 0 -> 27203 bytes .../__pycache__/euctwprober.cpython-310.pyc | Bin 0 -> 1158 bytes .../__pycache__/gb2312freq.cpython-310.pyc | Bin 0 -> 19127 bytes .../__pycache__/gb2312prober.cpython-310.pyc | Bin 0 -> 1166 bytes .../__pycache__/hebrewprober.cpython-310.pyc | Bin 0 -> 3043 bytes .../__pycache__/jisfreq.cpython-310.pyc | Bin 0 -> 22155 bytes .../__pycache__/jpcntx.cpython-310.pyc | Bin 0 -> 37662 bytes .../langbulgarianmodel.cpython-310.pyc | Bin 0 -> 47943 bytes .../langgreekmodel.cpython-310.pyc | Bin 0 -> 46133 bytes .../langhebrewmodel.cpython-310.pyc | Bin 0 -> 44582 bytes .../langhungarianmodel.cpython-310.pyc | Bin 0 -> 47903 bytes .../langrussianmodel.cpython-310.pyc | Bin 0 -> 61036 bytes .../__pycache__/langthaimodel.cpython-310.pyc | Bin 0 -> 44758 bytes .../langturkishmodel.cpython-310.pyc | Bin 0 -> 44599 bytes .../__pycache__/latin1prober.cpython-310.pyc | Bin 0 -> 4449 bytes .../mbcharsetprober.cpython-310.pyc | Bin 0 -> 2270 bytes .../mbcsgroupprober.cpython-310.pyc | Bin 0 -> 1153 bytes .../__pycache__/mbcssm.cpython-310.pyc | Bin 0 -> 18780 bytes .../sbcharsetprober.cpython-310.pyc | Bin 0 -> 3099 bytes .../sbcsgroupprober.cpython-310.pyc | Bin 0 -> 1722 bytes .../__pycache__/sjisprober.cpython-310.pyc | Bin 0 -> 2493 bytes .../universaldetector.cpython-310.pyc | Bin 0 -> 5845 bytes .../__pycache__/utf8prober.cpython-310.pyc | Bin 0 -> 2002 bytes .../__pycache__/version.cpython-310.pyc | Bin 0 -> 459 bytes .../pip/_vendor/chardet/big5freq.py | 386 + .../pip/_vendor/chardet/big5prober.py | 47 + .../pip/_vendor/chardet/chardistribution.py | 233 + .../pip/_vendor/chardet/charsetgroupprober.py | 107 + .../pip/_vendor/chardet/charsetprober.py | 145 + .../pip/_vendor/chardet/cli/__init__.py | 1 + .../cli/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 216 bytes .../__pycache__/chardetect.cpython-310.pyc | Bin 0 -> 2716 bytes .../pip/_vendor/chardet/cli/chardetect.py | 84 + .../pip/_vendor/chardet/codingstatemachine.py | 88 + .../pip/_vendor/chardet/compat.py | 36 + .../pip/_vendor/chardet/cp949prober.py | 49 + .../pip/_vendor/chardet/enums.py | 76 + .../pip/_vendor/chardet/escprober.py | 101 + .../pip/_vendor/chardet/escsm.py | 246 + .../pip/_vendor/chardet/eucjpprober.py | 92 + .../pip/_vendor/chardet/euckrfreq.py | 195 + .../pip/_vendor/chardet/euckrprober.py | 47 + .../pip/_vendor/chardet/euctwfreq.py | 387 + .../pip/_vendor/chardet/euctwprober.py | 46 + .../pip/_vendor/chardet/gb2312freq.py | 283 + .../pip/_vendor/chardet/gb2312prober.py | 46 + .../pip/_vendor/chardet/hebrewprober.py | 292 + .../pip/_vendor/chardet/jisfreq.py | 325 + .../pip/_vendor/chardet/jpcntx.py | 233 + .../pip/_vendor/chardet/langbulgarianmodel.py | 4650 +++++++++ .../pip/_vendor/chardet/langgreekmodel.py | 4398 +++++++++ .../pip/_vendor/chardet/langhebrewmodel.py | 4383 +++++++++ .../pip/_vendor/chardet/langhungarianmodel.py | 4650 +++++++++ .../pip/_vendor/chardet/langrussianmodel.py | 5718 +++++++++++ .../pip/_vendor/chardet/langthaimodel.py | 4383 +++++++++ .../pip/_vendor/chardet/langturkishmodel.py | 4383 +++++++++ .../pip/_vendor/chardet/latin1prober.py | 145 + .../pip/_vendor/chardet/mbcharsetprober.py | 91 + .../pip/_vendor/chardet/mbcsgroupprober.py | 54 + .../pip/_vendor/chardet/mbcssm.py | 572 ++ .../pip/_vendor/chardet/metadata/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 221 bytes .../__pycache__/languages.cpython-310.pyc | Bin 0 -> 7983 bytes .../pip/_vendor/chardet/metadata/languages.py | 310 + .../pip/_vendor/chardet/sbcharsetprober.py | 145 + .../pip/_vendor/chardet/sbcsgroupprober.py | 83 + .../pip/_vendor/chardet/sjisprober.py | 92 + .../pip/_vendor/chardet/universaldetector.py | 286 + .../pip/_vendor/chardet/utf8prober.py | 82 + .../pip/_vendor/chardet/version.py | 9 + .../pip/_vendor/colorama/__init__.py | 6 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 464 bytes .../colorama/__pycache__/ansi.cpython-310.pyc | Bin 0 -> 3025 bytes .../__pycache__/ansitowin32.cpython-310.pyc | Bin 0 -> 7924 bytes .../__pycache__/initialise.cpython-310.pyc | Bin 0 -> 1711 bytes .../__pycache__/win32.cpython-310.pyc | Bin 0 -> 3972 bytes .../__pycache__/winterm.cpython-310.pyc | Bin 0 -> 4588 bytes .../pip/_vendor/colorama/ansi.py | 102 + .../pip/_vendor/colorama/ansitowin32.py | 258 + .../pip/_vendor/colorama/initialise.py | 80 + .../pip/_vendor/colorama/win32.py | 152 + .../pip/_vendor/colorama/winterm.py | 169 + .../pip/_vendor/distlib/__init__.py | 23 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 1083 bytes .../__pycache__/compat.cpython-310.pyc | Bin 0 -> 31908 bytes .../__pycache__/database.cpython-310.pyc | Bin 0 -> 42654 bytes .../distlib/__pycache__/index.cpython-310.pyc | Bin 0 -> 17345 bytes .../__pycache__/locators.cpython-310.pyc | Bin 0 -> 38421 bytes .../__pycache__/manifest.cpython-310.pyc | Bin 0 -> 10254 bytes .../__pycache__/markers.cpython-310.pyc | Bin 0 -> 4442 bytes .../__pycache__/metadata.cpython-310.pyc | Bin 0 -> 26578 bytes .../__pycache__/resources.cpython-310.pyc | Bin 0 -> 11059 bytes .../__pycache__/scripts.cpython-310.pyc | Bin 0 -> 11128 bytes .../distlib/__pycache__/util.cpython-310.pyc | Bin 0 -> 52599 bytes .../__pycache__/version.cpython-310.pyc | Bin 0 -> 20165 bytes .../distlib/__pycache__/wheel.cpython-310.pyc | Bin 0 -> 27387 bytes .../pip/_vendor/distlib/_backport/__init__.py | 6 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 504 bytes .../__pycache__/misc.cpython-310.pyc | Bin 0 -> 1126 bytes .../__pycache__/shutil.cpython-310.pyc | Bin 0 -> 21566 bytes .../__pycache__/sysconfig.cpython-310.pyc | Bin 0 -> 15920 bytes .../__pycache__/tarfile.cpython-310.pyc | Bin 0 -> 62530 bytes .../pip/_vendor/distlib/_backport/misc.py | 41 + .../pip/_vendor/distlib/_backport/shutil.py | 764 ++ .../_vendor/distlib/_backport/sysconfig.cfg | 84 + .../_vendor/distlib/_backport/sysconfig.py | 786 ++ .../pip/_vendor/distlib/_backport/tarfile.py | 2607 +++++ .../pip/_vendor/distlib/compat.py | 1120 +++ .../pip/_vendor/distlib/database.py | 1339 +++ .../pip/_vendor/distlib/index.py | 509 + .../pip/_vendor/distlib/locators.py | 1300 +++ .../pip/_vendor/distlib/manifest.py | 393 + .../pip/_vendor/distlib/markers.py | 130 + .../pip/_vendor/distlib/metadata.py | 1058 +++ .../pip/_vendor/distlib/resources.py | 358 + .../pip/_vendor/distlib/scripts.py | 423 + .../site-packages/pip/_vendor/distlib/t32.exe | Bin 0 -> 96768 bytes .../site-packages/pip/_vendor/distlib/t64.exe | Bin 0 -> 105984 bytes .../site-packages/pip/_vendor/distlib/util.py | 1965 ++++ .../pip/_vendor/distlib/version.py | 739 ++ .../site-packages/pip/_vendor/distlib/w32.exe | Bin 0 -> 90112 bytes .../site-packages/pip/_vendor/distlib/w64.exe | Bin 0 -> 99840 bytes .../pip/_vendor/distlib/wheel.py | 1056 +++ .../Lib/site-packages/pip/_vendor/distro.py | 1230 +++ .../pip/_vendor/html5lib/__init__.py | 35 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 1323 bytes .../__pycache__/_ihatexml.cpython-310.pyc | Bin 0 -> 13880 bytes .../__pycache__/_inputstream.cpython-310.pyc | Bin 0 -> 21705 bytes .../__pycache__/_tokenizer.cpython-310.pyc | Bin 0 -> 37382 bytes .../__pycache__/_utils.cpython-310.pyc | Bin 0 -> 4815 bytes .../__pycache__/constants.cpython-310.pyc | Bin 0 -> 161282 bytes .../__pycache__/html5parser.cpython-310.pyc | Bin 0 -> 88542 bytes .../__pycache__/serializer.cpython-310.pyc | Bin 0 -> 10765 bytes .../pip/_vendor/html5lib/_ihatexml.py | 289 + .../pip/_vendor/html5lib/_inputstream.py | 918 ++ .../pip/_vendor/html5lib/_tokenizer.py | 1735 ++++ .../pip/_vendor/html5lib/_trie/__init__.py | 5 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 373 bytes .../_trie/__pycache__/_base.cpython-310.pyc | Bin 0 -> 1625 bytes .../_trie/__pycache__/py.cpython-310.pyc | Bin 0 -> 2288 bytes .../pip/_vendor/html5lib/_trie/_base.py | 40 + .../pip/_vendor/html5lib/_trie/py.py | 67 + .../pip/_vendor/html5lib/_utils.py | 159 + .../pip/_vendor/html5lib/constants.py | 2946 ++++++ .../pip/_vendor/html5lib/filters/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 221 bytes .../alphabeticalattributes.cpython-310.pyc | Bin 0 -> 1352 bytes .../filters/__pycache__/base.cpython-310.pyc | Bin 0 -> 891 bytes .../inject_meta_charset.cpython-310.pyc | Bin 0 -> 1889 bytes .../filters/__pycache__/lint.cpython-310.pyc | Bin 0 -> 2595 bytes .../__pycache__/optionaltags.cpython-310.pyc | Bin 0 -> 2750 bytes .../__pycache__/sanitizer.cpython-310.pyc | Bin 0 -> 20053 bytes .../__pycache__/whitespace.cpython-310.pyc | Bin 0 -> 1397 bytes .../filters/alphabeticalattributes.py | 29 + .../pip/_vendor/html5lib/filters/base.py | 12 + .../html5lib/filters/inject_meta_charset.py | 73 + .../pip/_vendor/html5lib/filters/lint.py | 93 + .../_vendor/html5lib/filters/optionaltags.py | 207 + .../pip/_vendor/html5lib/filters/sanitizer.py | 916 ++ .../_vendor/html5lib/filters/whitespace.py | 38 + .../pip/_vendor/html5lib/html5parser.py | 2795 ++++++ .../pip/_vendor/html5lib/serializer.py | 409 + .../_vendor/html5lib/treeadapters/__init__.py | 30 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 962 bytes .../__pycache__/genshi.cpython-310.pyc | Bin 0 -> 1574 bytes .../__pycache__/sax.cpython-310.pyc | Bin 0 -> 1481 bytes .../_vendor/html5lib/treeadapters/genshi.py | 54 + .../pip/_vendor/html5lib/treeadapters/sax.py | 50 + .../_vendor/html5lib/treebuilders/__init__.py | 88 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 3353 bytes .../__pycache__/base.cpython-310.pyc | Bin 0 -> 11356 bytes .../__pycache__/dom.cpython-310.pyc | Bin 0 -> 9433 bytes .../__pycache__/etree.cpython-310.pyc | Bin 0 -> 11731 bytes .../__pycache__/etree_lxml.cpython-310.pyc | Bin 0 -> 13053 bytes .../pip/_vendor/html5lib/treebuilders/base.py | 417 + .../pip/_vendor/html5lib/treebuilders/dom.py | 239 + .../_vendor/html5lib/treebuilders/etree.py | 343 + .../html5lib/treebuilders/etree_lxml.py | 392 + .../_vendor/html5lib/treewalkers/__init__.py | 154 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 4004 bytes .../__pycache__/base.cpython-310.pyc | Bin 0 -> 6967 bytes .../__pycache__/dom.cpython-310.pyc | Bin 0 -> 1735 bytes .../__pycache__/etree.cpython-310.pyc | Bin 0 -> 3493 bytes .../__pycache__/etree_lxml.cpython-310.pyc | Bin 0 -> 6580 bytes .../__pycache__/genshi.cpython-310.pyc | Bin 0 -> 1941 bytes .../pip/_vendor/html5lib/treewalkers/base.py | 252 + .../pip/_vendor/html5lib/treewalkers/dom.py | 43 + .../pip/_vendor/html5lib/treewalkers/etree.py | 131 + .../html5lib/treewalkers/etree_lxml.py | 215 + .../_vendor/html5lib/treewalkers/genshi.py | 69 + .../pip/_vendor/idna/__init__.py | 44 + .../idna/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 868 bytes .../idna/__pycache__/codec.cpython-310.pyc | Bin 0 -> 2630 bytes .../idna/__pycache__/compat.cpython-310.pyc | Bin 0 -> 689 bytes .../idna/__pycache__/core.cpython-310.pyc | Bin 0 -> 9074 bytes .../idna/__pycache__/idnadata.cpython-310.pyc | Bin 0 -> 35697 bytes .../__pycache__/intranges.cpython-310.pyc | Bin 0 -> 1881 bytes .../__pycache__/package_data.cpython-310.pyc | Bin 0 -> 232 bytes .../__pycache__/uts46data.cpython-310.pyc | Bin 0 -> 145406 bytes .../site-packages/pip/_vendor/idna/codec.py | 117 + .../site-packages/pip/_vendor/idna/compat.py | 16 + .../site-packages/pip/_vendor/idna/core.py | 409 + .../pip/_vendor/idna/idnadata.py | 2050 ++++ .../pip/_vendor/idna/intranges.py | 58 + .../pip/_vendor/idna/package_data.py | 2 + .../pip/_vendor/idna/uts46data.py | 8438 +++++++++++++++++ .../pip/_vendor/msgpack/__init__.py | 54 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 1449 bytes .../__pycache__/_version.cpython-310.pyc | Bin 0 -> 239 bytes .../__pycache__/exceptions.cpython-310.pyc | Bin 0 -> 1829 bytes .../msgpack/__pycache__/ext.cpython-310.pyc | Bin 0 -> 6348 bytes .../__pycache__/fallback.cpython-310.pyc | Bin 0 -> 26466 bytes .../pip/_vendor/msgpack/_version.py | 1 + .../pip/_vendor/msgpack/exceptions.py | 48 + .../site-packages/pip/_vendor/msgpack/ext.py | 193 + .../pip/_vendor/msgpack/fallback.py | 1087 +++ .../pip/_vendor/packaging/__about__.py | 26 + .../pip/_vendor/packaging/__init__.py | 25 + .../__pycache__/__about__.cpython-310.pyc | Bin 0 -> 611 bytes .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 467 bytes .../__pycache__/_manylinux.cpython-310.pyc | Bin 0 -> 7323 bytes .../__pycache__/_musllinux.cpython-310.pyc | Bin 0 -> 4633 bytes .../__pycache__/_structures.cpython-310.pyc | Bin 0 -> 2991 bytes .../__pycache__/markers.cpython-310.pyc | Bin 0 -> 9310 bytes .../__pycache__/requirements.cpython-310.pyc | Bin 0 -> 3996 bytes .../__pycache__/specifiers.cpython-310.pyc | Bin 0 -> 22209 bytes .../__pycache__/tags.cpython-310.pyc | Bin 0 -> 12256 bytes .../__pycache__/utils.cpython-310.pyc | Bin 0 -> 3596 bytes .../__pycache__/version.cpython-310.pyc | Bin 0 -> 12947 bytes .../pip/_vendor/packaging/_manylinux.py | 301 + .../pip/_vendor/packaging/_musllinux.py | 136 + .../pip/_vendor/packaging/_structures.py | 67 + .../pip/_vendor/packaging/markers.py | 304 + .../pip/_vendor/packaging/requirements.py | 146 + .../pip/_vendor/packaging/specifiers.py | 828 ++ .../pip/_vendor/packaging/tags.py | 484 + .../pip/_vendor/packaging/utils.py | 136 + .../pip/_vendor/packaging/version.py | 504 + .../pip/_vendor/pep517/__init__.py | 6 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 334 bytes .../pep517/__pycache__/build.cpython-310.pyc | Bin 0 -> 3635 bytes .../pep517/__pycache__/check.cpython-310.pyc | Bin 0 -> 4598 bytes .../__pycache__/colorlog.cpython-310.pyc | Bin 0 -> 2985 bytes .../pep517/__pycache__/compat.cpython-310.pyc | Bin 0 -> 1330 bytes .../__pycache__/dirtools.cpython-310.pyc | Bin 0 -> 1377 bytes .../__pycache__/envbuild.cpython-310.pyc | Bin 0 -> 4416 bytes .../pep517/__pycache__/meta.cpython-310.pyc | Bin 0 -> 2982 bytes .../__pycache__/wrappers.cpython-310.pyc | Bin 0 -> 12111 bytes .../site-packages/pip/_vendor/pep517/build.py | 127 + .../site-packages/pip/_vendor/pep517/check.py | 207 + .../pip/_vendor/pep517/colorlog.py | 115 + .../pip/_vendor/pep517/compat.py | 42 + .../pip/_vendor/pep517/dirtools.py | 44 + .../pip/_vendor/pep517/envbuild.py | 171 + .../pip/_vendor/pep517/in_process/__init__.py | 17 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 942 bytes .../__pycache__/_in_process.cpython-310.pyc | Bin 0 -> 9760 bytes .../_vendor/pep517/in_process/_in_process.py | 349 + .../site-packages/pip/_vendor/pep517/meta.py | 92 + .../pip/_vendor/pep517/wrappers.py | 371 + .../pip/_vendor/pkg_resources/__init__.py | 3296 +++++++ .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 99951 bytes .../__pycache__/py31compat.cpython-310.pyc | Bin 0 -> 681 bytes .../pip/_vendor/pkg_resources/py31compat.py | 23 + .../pip/_vendor/progress/__init__.py | 177 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 5738 bytes .../progress/__pycache__/bar.cpython-310.pyc | Bin 0 -> 2628 bytes .../__pycache__/counter.cpython-310.pyc | Bin 0 -> 1456 bytes .../__pycache__/spinner.cpython-310.pyc | Bin 0 -> 1349 bytes .../site-packages/pip/_vendor/progress/bar.py | 91 + .../pip/_vendor/progress/counter.py | 41 + .../pip/_vendor/progress/spinner.py | 43 + .../site-packages/pip/_vendor/pyparsing.py | 7107 ++++++++++++++ .../pip/_vendor/requests/__init__.py | 154 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 4033 bytes .../__pycache__/__version__.cpython-310.pyc | Bin 0 -> 576 bytes .../_internal_utils.cpython-310.pyc | Bin 0 -> 1330 bytes .../__pycache__/adapters.cpython-310.pyc | Bin 0 -> 16933 bytes .../requests/__pycache__/api.cpython-310.pyc | Bin 0 -> 6682 bytes .../requests/__pycache__/auth.cpython-310.pyc | Bin 0 -> 8119 bytes .../__pycache__/certs.cpython-310.pyc | Bin 0 -> 660 bytes .../__pycache__/compat.cpython-310.pyc | Bin 0 -> 1639 bytes .../__pycache__/cookies.cpython-310.pyc | Bin 0 -> 18725 bytes .../__pycache__/exceptions.cpython-310.pyc | Bin 0 -> 5034 bytes .../requests/__pycache__/help.cpython-310.pyc | Bin 0 -> 2929 bytes .../__pycache__/hooks.cpython-310.pyc | Bin 0 -> 1015 bytes .../__pycache__/models.cpython-310.pyc | Bin 0 -> 24458 bytes .../__pycache__/packages.cpython-310.pyc | Bin 0 -> 529 bytes .../__pycache__/sessions.cpython-310.pyc | Bin 0 -> 19813 bytes .../__pycache__/status_codes.cpython-310.pyc | Bin 0 -> 4692 bytes .../__pycache__/structures.cpython-310.pyc | Bin 0 -> 4475 bytes .../__pycache__/utils.cpython-310.pyc | Bin 0 -> 23468 bytes .../pip/_vendor/requests/__version__.py | 14 + .../pip/_vendor/requests/_internal_utils.py | 42 + .../pip/_vendor/requests/adapters.py | 533 ++ .../site-packages/pip/_vendor/requests/api.py | 159 + .../pip/_vendor/requests/auth.py | 305 + .../pip/_vendor/requests/certs.py | 18 + .../pip/_vendor/requests/compat.py | 76 + .../pip/_vendor/requests/cookies.py | 549 ++ .../pip/_vendor/requests/exceptions.py | 127 + .../pip/_vendor/requests/help.py | 132 + .../pip/_vendor/requests/hooks.py | 34 + .../pip/_vendor/requests/models.py | 966 ++ .../pip/_vendor/requests/packages.py | 16 + .../pip/_vendor/requests/sessions.py | 781 ++ .../pip/_vendor/requests/status_codes.py | 123 + .../pip/_vendor/requests/structures.py | 105 + .../pip/_vendor/requests/utils.py | 1013 ++ .../pip/_vendor/resolvelib/__init__.py | 26 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 627 bytes .../__pycache__/providers.cpython-310.pyc | Bin 0 -> 6505 bytes .../__pycache__/reporters.cpython-310.pyc | Bin 0 -> 2289 bytes .../__pycache__/resolvers.cpython-310.pyc | Bin 0 -> 14998 bytes .../__pycache__/structs.cpython-310.pyc | Bin 0 -> 7186 bytes .../pip/_vendor/resolvelib/compat/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 222 bytes .../collections_abc.cpython-310.pyc | Bin 0 -> 398 bytes .../resolvelib/compat/collections_abc.py | 6 + .../pip/_vendor/resolvelib/providers.py | 124 + .../pip/_vendor/resolvelib/reporters.py | 37 + .../pip/_vendor/resolvelib/resolvers.py | 473 + .../pip/_vendor/resolvelib/structs.py | 165 + Scripts/Lib/site-packages/pip/_vendor/six.py | 998 ++ .../pip/_vendor/tenacity/__init__.py | 517 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 16400 bytes .../__pycache__/_asyncio.cpython-310.pyc | Bin 0 -> 2635 bytes .../__pycache__/_utils.cpython-310.pyc | Bin 0 -> 1249 bytes .../__pycache__/after.cpython-310.pyc | Bin 0 -> 1252 bytes .../__pycache__/before.cpython-310.pyc | Bin 0 -> 1130 bytes .../__pycache__/before_sleep.cpython-310.pyc | Bin 0 -> 1432 bytes .../tenacity/__pycache__/nap.cpython-310.pyc | Bin 0 -> 1220 bytes .../__pycache__/retry.cpython-310.pyc | Bin 0 -> 8450 bytes .../tenacity/__pycache__/stop.cpython-310.pyc | Bin 0 -> 4038 bytes .../__pycache__/tornadoweb.cpython-310.pyc | Bin 0 -> 1785 bytes .../tenacity/__pycache__/wait.cpython-310.pyc | Bin 0 -> 7982 bytes .../pip/_vendor/tenacity/_asyncio.py | 92 + .../pip/_vendor/tenacity/_utils.py | 68 + .../pip/_vendor/tenacity/after.py | 46 + .../pip/_vendor/tenacity/before.py | 41 + .../pip/_vendor/tenacity/before_sleep.py | 58 + .../site-packages/pip/_vendor/tenacity/nap.py | 43 + .../pip/_vendor/tenacity/retry.py | 213 + .../pip/_vendor/tenacity/stop.py | 96 + .../pip/_vendor/tenacity/tornadoweb.py | 59 + .../pip/_vendor/tenacity/wait.py | 191 + .../pip/_vendor/tomli/__init__.py | 6 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 400 bytes .../tomli/__pycache__/_parser.cpython-310.pyc | Bin 0 -> 16355 bytes .../tomli/__pycache__/_re.cpython-310.pyc | Bin 0 -> 2444 bytes .../pip/_vendor/tomli/_parser.py | 703 ++ .../site-packages/pip/_vendor/tomli/_re.py | 83 + .../pip/_vendor/urllib3/__init__.py | 85 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 2211 bytes .../__pycache__/_collections.cpython-310.pyc | Bin 0 -> 10874 bytes .../__pycache__/_version.cpython-310.pyc | Bin 0 -> 234 bytes .../__pycache__/connection.cpython-310.pyc | Bin 0 -> 13362 bytes .../connectionpool.cpython-310.pyc | Bin 0 -> 24505 bytes .../__pycache__/exceptions.cpython-310.pyc | Bin 0 -> 11015 bytes .../__pycache__/fields.cpython-310.pyc | Bin 0 -> 8211 bytes .../__pycache__/filepost.cpython-310.pyc | Bin 0 -> 2773 bytes .../__pycache__/poolmanager.cpython-310.pyc | Bin 0 -> 15228 bytes .../__pycache__/request.cpython-310.pyc | Bin 0 -> 5648 bytes .../__pycache__/response.cpython-310.pyc | Bin 0 -> 20952 bytes .../pip/_vendor/urllib3/_collections.py | 337 + .../pip/_vendor/urllib3/_version.py | 2 + .../pip/_vendor/urllib3/connection.py | 539 ++ .../pip/_vendor/urllib3/connectionpool.py | 1067 +++ .../pip/_vendor/urllib3/contrib/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 220 bytes .../_appengine_environ.cpython-310.pyc | Bin 0 -> 1402 bytes .../__pycache__/appengine.cpython-310.pyc | Bin 0 -> 8216 bytes .../__pycache__/ntlmpool.cpython-310.pyc | Bin 0 -> 3655 bytes .../__pycache__/pyopenssl.cpython-310.pyc | Bin 0 -> 15549 bytes .../securetransport.cpython-310.pyc | Bin 0 -> 21948 bytes .../contrib/__pycache__/socks.cpython-310.pyc | Bin 0 -> 5622 bytes .../urllib3/contrib/_appengine_environ.py | 36 + .../contrib/_securetransport/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 237 bytes .../__pycache__/bindings.cpython-310.pyc | Bin 0 -> 10748 bytes .../__pycache__/low_level.cpython-310.pyc | Bin 0 -> 9132 bytes .../contrib/_securetransport/bindings.py | 519 + .../contrib/_securetransport/low_level.py | 396 + .../pip/_vendor/urllib3/contrib/appengine.py | 314 + .../pip/_vendor/urllib3/contrib/ntlmpool.py | 130 + .../pip/_vendor/urllib3/contrib/pyopenssl.py | 511 + .../urllib3/contrib/securetransport.py | 922 ++ .../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 | 5 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 334 bytes .../packages/__pycache__/six.cpython-310.pyc | Bin 0 -> 27691 bytes .../urllib3/packages/backports/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 231 bytes .../__pycache__/makefile.cpython-310.pyc | Bin 0 -> 1331 bytes .../urllib3/packages/backports/makefile.py | 51 + .../pip/_vendor/urllib3/packages/six.py | 1077 +++ .../packages/ssl_match_hostname/__init__.py | 24 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 619 bytes .../_implementation.cpython-310.pyc | Bin 0 -> 3323 bytes .../ssl_match_hostname/_implementation.py | 160 + .../pip/_vendor/urllib3/poolmanager.py | 536 ++ .../pip/_vendor/urllib3/request.py | 170 + .../pip/_vendor/urllib3/response.py | 821 ++ .../pip/_vendor/urllib3/util/__init__.py | 49 + .../util/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 1130 bytes .../__pycache__/connection.cpython-310.pyc | Bin 0 -> 3479 bytes .../util/__pycache__/proxy.cpython-310.pyc | Bin 0 -> 1366 bytes .../util/__pycache__/queue.cpython-310.pyc | Bin 0 -> 1085 bytes .../util/__pycache__/request.cpython-310.pyc | Bin 0 -> 3494 bytes .../util/__pycache__/response.cpython-310.pyc | Bin 0 -> 2379 bytes .../util/__pycache__/retry.cpython-310.pyc | Bin 0 -> 15808 bytes .../util/__pycache__/ssl_.cpython-310.pyc | Bin 0 -> 11334 bytes .../__pycache__/ssltransport.cpython-310.pyc | Bin 0 -> 7455 bytes .../util/__pycache__/timeout.cpython-310.pyc | Bin 0 -> 8964 bytes .../util/__pycache__/url.cpython-310.pyc | Bin 0 -> 10708 bytes .../util/__pycache__/wait.cpython-310.pyc | Bin 0 -> 3116 bytes .../pip/_vendor/urllib3/util/connection.py | 150 + .../pip/_vendor/urllib3/util/proxy.py | 56 + .../pip/_vendor/urllib3/util/queue.py | 22 + .../pip/_vendor/urllib3/util/request.py | 143 + .../pip/_vendor/urllib3/util/response.py | 107 + .../pip/_vendor/urllib3/util/retry.py | 602 ++ .../pip/_vendor/urllib3/util/ssl_.py | 495 + .../pip/_vendor/urllib3/util/ssltransport.py | 221 + .../pip/_vendor/urllib3/util/timeout.py | 268 + .../pip/_vendor/urllib3/util/url.py | 432 + .../pip/_vendor/urllib3/util/wait.py | 153 + .../Lib/site-packages/pip/_vendor/vendor.txt | 22 + .../pip/_vendor/webencodings/__init__.py | 342 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 9772 bytes .../__pycache__/labels.cpython-310.pyc | Bin 0 -> 5257 bytes .../__pycache__/mklabels.cpython-310.pyc | Bin 0 -> 1962 bytes .../__pycache__/tests.cpython-310.pyc | Bin 0 -> 5064 bytes .../x_user_defined.cpython-310.pyc | Bin 0 -> 2613 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 + Scripts/Lib/site-packages/pip/py.typed | 4 + .../site-packages/pkg_resources/__init__.py | 3288 +++++++ .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 100108 bytes .../pkg_resources/_vendor/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 214 bytes .../__pycache__/appdirs.cpython-310.pyc | Bin 0 -> 20277 bytes .../__pycache__/pyparsing.cpython-310.pyc | Bin 0 -> 199035 bytes .../pkg_resources/_vendor/appdirs.py | 608 ++ .../_vendor/packaging/__about__.py | 27 + .../_vendor/packaging/__init__.py | 26 + .../__pycache__/__about__.cpython-310.pyc | Bin 0 -> 730 bytes .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 576 bytes .../__pycache__/_compat.cpython-310.pyc | Bin 0 -> 1177 bytes .../__pycache__/_structures.cpython-310.pyc | Bin 0 -> 2720 bytes .../__pycache__/_typing.cpython-310.pyc | Bin 0 -> 1532 bytes .../__pycache__/markers.cpython-310.pyc | Bin 0 -> 9217 bytes .../__pycache__/requirements.cpython-310.pyc | Bin 0 -> 4122 bytes .../__pycache__/specifiers.cpython-310.pyc | Bin 0 -> 20483 bytes .../__pycache__/tags.cpython-310.pyc | Bin 0 -> 17362 bytes .../__pycache__/utils.cpython-310.pyc | Bin 0 -> 1667 bytes .../__pycache__/version.cpython-310.pyc | Bin 0 -> 13048 bytes .../_vendor/packaging/_compat.py | 38 + .../_vendor/packaging/_structures.py | 86 + .../_vendor/packaging/_typing.py | 48 + .../_vendor/packaging/markers.py | 328 + .../_vendor/packaging/requirements.py | 145 + .../_vendor/packaging/specifiers.py | 863 ++ .../pkg_resources/_vendor/packaging/tags.py | 751 ++ .../pkg_resources/_vendor/packaging/utils.py | 65 + .../_vendor/packaging/version.py | 535 ++ .../pkg_resources/_vendor/pyparsing.py | 5742 +++++++++++ .../pkg_resources/extern/__init__.py | 73 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 2923 bytes .../__pycache__/setup.cpython-310.pyc | Bin 0 -> 342 bytes .../data/my-test-package-source/setup.py | 6 + .../pygments-2.19.2.dist-info/INSTALLER | 1 + .../pygments-2.19.2.dist-info/METADATA | 58 + .../pygments-2.19.2.dist-info/RECORD | 684 ++ .../pygments-2.19.2.dist-info/WHEEL | 4 + .../entry_points.txt | 2 + .../licenses/AUTHORS | 291 + .../licenses/LICENSE | 25 + .../Lib/site-packages/pygments/__init__.py | 82 + .../Lib/site-packages/pygments/__main__.py | 17 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 2922 bytes .../__pycache__/__main__.cpython-310.pyc | Bin 0 -> 597 bytes .../__pycache__/cmdline.cpython-310.pyc | Bin 0 -> 15445 bytes .../__pycache__/console.cpython-310.pyc | Bin 0 -> 1899 bytes .../__pycache__/filter.cpython-310.pyc | Bin 0 -> 2661 bytes .../__pycache__/formatter.cpython-310.pyc | Bin 0 -> 4088 bytes .../__pycache__/lexer.cpython-310.pyc | Bin 0 -> 26586 bytes .../__pycache__/modeline.cpython-310.pyc | Bin 0 -> 1202 bytes .../__pycache__/plugin.cpython-310.pyc | Bin 0 -> 1958 bytes .../__pycache__/regexopt.cpython-310.pyc | Bin 0 -> 2966 bytes .../__pycache__/scanner.cpython-310.pyc | Bin 0 -> 3569 bytes .../__pycache__/sphinxext.cpython-310.pyc | Bin 0 -> 7705 bytes .../__pycache__/style.cpython-310.pyc | Bin 0 -> 4611 bytes .../__pycache__/token.cpython-310.pyc | Bin 0 -> 4707 bytes .../__pycache__/unistring.cpython-310.pyc | Bin 0 -> 31239 bytes .../pygments/__pycache__/util.cpython-310.pyc | Bin 0 -> 10075 bytes Scripts/Lib/site-packages/pygments/cmdline.py | 668 ++ Scripts/Lib/site-packages/pygments/console.py | 70 + Scripts/Lib/site-packages/pygments/filter.py | 70 + .../pygments/filters/__init__.py | 940 ++ .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 29587 bytes .../Lib/site-packages/pygments/formatter.py | 129 + .../pygments/formatters/__init__.py | 157 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 4993 bytes .../__pycache__/_mapping.cpython-310.pyc | Bin 0 -> 4009 bytes .../__pycache__/bbcode.cpython-310.pyc | Bin 0 -> 3080 bytes .../__pycache__/groff.cpython-310.pyc | Bin 0 -> 4407 bytes .../__pycache__/html.cpython-310.pyc | Bin 0 -> 29520 bytes .../__pycache__/img.cpython-310.pyc | Bin 0 -> 18428 bytes .../__pycache__/irc.cpython-310.pyc | Bin 0 -> 4081 bytes .../__pycache__/latex.cpython-310.pyc | Bin 0 -> 13852 bytes .../__pycache__/other.cpython-310.pyc | Bin 0 -> 4767 bytes .../__pycache__/pangomarkup.cpython-310.pyc | Bin 0 -> 2112 bytes .../__pycache__/rtf.cpython-310.pyc | Bin 0 -> 8834 bytes .../__pycache__/svg.cpython-310.pyc | Bin 0 -> 6293 bytes .../__pycache__/terminal.cpython-310.pyc | Bin 0 -> 3960 bytes .../__pycache__/terminal256.cpython-310.pyc | Bin 0 -> 9222 bytes .../pygments/formatters/_mapping.py | 23 + .../pygments/formatters/bbcode.py | 108 + .../pygments/formatters/groff.py | 170 + .../site-packages/pygments/formatters/html.py | 995 ++ .../site-packages/pygments/formatters/img.py | 686 ++ .../site-packages/pygments/formatters/irc.py | 154 + .../pygments/formatters/latex.py | 518 + .../pygments/formatters/other.py | 160 + .../pygments/formatters/pangomarkup.py | 83 + .../site-packages/pygments/formatters/rtf.py | 349 + .../site-packages/pygments/formatters/svg.py | 185 + .../pygments/formatters/terminal.py | 127 + .../pygments/formatters/terminal256.py | 338 + Scripts/Lib/site-packages/pygments/lexer.py | 961 ++ .../site-packages/pygments/lexers/__init__.py | 362 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 10024 bytes .../__pycache__/_ada_builtins.cpython-310.pyc | Bin 0 -> 1239 bytes .../__pycache__/_asy_builtins.cpython-310.pyc | Bin 0 -> 17646 bytes .../__pycache__/_cl_builtins.cpython-310.pyc | Bin 0 -> 11642 bytes .../_cocoa_builtins.cpython-310.pyc | Bin 0 -> 96442 bytes .../_csound_builtins.cpython-310.pyc | Bin 0 -> 16296 bytes .../__pycache__/_css_builtins.cpython-310.pyc | Bin 0 -> 9394 bytes .../_googlesql_builtins.cpython-310.pyc | Bin 0 -> 10821 bytes .../_julia_builtins.cpython-310.pyc | Bin 0 -> 8227 bytes .../_lasso_builtins.cpython-310.pyc | Bin 0 -> 76855 bytes .../_lilypond_builtins.cpython-310.pyc | Bin 0 -> 88349 bytes .../__pycache__/_lua_builtins.cpython-310.pyc | Bin 0 -> 6520 bytes .../_luau_builtins.cpython-310.pyc | Bin 0 -> 1054 bytes .../__pycache__/_mapping.cpython-310.pyc | Bin 0 -> 63899 bytes .../__pycache__/_mql_builtins.cpython-310.pyc | Bin 0 -> 18007 bytes .../_mysql_builtins.cpython-310.pyc | Bin 0 -> 17179 bytes .../_openedge_builtins.cpython-310.pyc | Bin 0 -> 34099 bytes .../__pycache__/_php_builtins.cpython-310.pyc | Bin 0 -> 68059 bytes .../_postgres_builtins.cpython-310.pyc | Bin 0 -> 9069 bytes .../_qlik_builtins.cpython-310.pyc | Bin 0 -> 6367 bytes .../_scheme_builtins.cpython-310.pyc | Bin 0 -> 23175 bytes .../_scilab_builtins.cpython-310.pyc | Bin 0 -> 34238 bytes .../_sourcemod_builtins.cpython-310.pyc | Bin 0 -> 20664 bytes .../__pycache__/_sql_builtins.cpython-310.pyc | Bin 0 -> 5570 bytes .../_stan_builtins.cpython-310.pyc | Bin 0 -> 9946 bytes .../_stata_builtins.cpython-310.pyc | Bin 0 -> 21235 bytes .../_tsql_builtins.cpython-310.pyc | Bin 0 -> 8799 bytes .../__pycache__/_usd_builtins.cpython-310.pyc | Bin 0 -> 1383 bytes .../_vbscript_builtins.cpython-310.pyc | Bin 0 -> 2905 bytes .../__pycache__/_vim_builtins.cpython-310.pyc | Bin 0 -> 30688 bytes .../__pycache__/actionscript.cpython-310.pyc | Bin 0 -> 8935 bytes .../lexers/__pycache__/ada.cpython-310.pyc | Bin 0 -> 3473 bytes .../lexers/__pycache__/agile.cpython-310.pyc | Bin 0 -> 1294 bytes .../__pycache__/algebra.cpython-310.pyc | Bin 0 -> 8392 bytes .../__pycache__/ambient.cpython-310.pyc | Bin 0 -> 2332 bytes .../lexers/__pycache__/amdgpu.cpython-310.pyc | Bin 0 -> 1780 bytes .../lexers/__pycache__/ampl.cpython-310.pyc | Bin 0 -> 3276 bytes .../__pycache__/apdlexer.cpython-310.pyc | Bin 0 -> 18349 bytes .../lexers/__pycache__/apl.cpython-310.pyc | Bin 0 -> 2009 bytes .../__pycache__/archetype.cpython-310.pyc | Bin 0 -> 6730 bytes .../lexers/__pycache__/arrow.cpython-310.pyc | Bin 0 -> 2392 bytes .../lexers/__pycache__/arturo.cpython-310.pyc | Bin 0 -> 6725 bytes .../lexers/__pycache__/asc.cpython-310.pyc | Bin 0 -> 1780 bytes .../lexers/__pycache__/asm.cpython-310.pyc | Bin 0 -> 26226 bytes .../lexers/__pycache__/asn1.cpython-310.pyc | Bin 0 -> 3429 bytes .../__pycache__/automation.cpython-310.pyc | Bin 0 -> 16199 bytes .../lexers/__pycache__/bare.cpython-310.pyc | Bin 0 -> 2147 bytes .../lexers/__pycache__/basic.cpython-310.pyc | Bin 0 -> 17351 bytes .../lexers/__pycache__/bdd.cpython-310.pyc | Bin 0 -> 1856 bytes .../lexers/__pycache__/berry.cpython-310.pyc | Bin 0 -> 2561 bytes .../lexers/__pycache__/bibtex.cpython-310.pyc | Bin 0 -> 3667 bytes .../__pycache__/blueprint.cpython-310.pyc | Bin 0 -> 3631 bytes .../lexers/__pycache__/boa.cpython-310.pyc | Bin 0 -> 3010 bytes .../lexers/__pycache__/bqn.cpython-310.pyc | Bin 0 -> 1975 bytes .../__pycache__/business.cpython-310.pyc | Bin 0 -> 18889 bytes .../lexers/__pycache__/c_cpp.cpython-310.pyc | Bin 0 -> 11597 bytes .../lexers/__pycache__/c_like.cpython-310.pyc | Bin 0 -> 21925 bytes .../__pycache__/capnproto.cpython-310.pyc | Bin 0 -> 1767 bytes .../lexers/__pycache__/carbon.cpython-310.pyc | Bin 0 -> 2782 bytes .../lexers/__pycache__/cddl.cpython-310.pyc | Bin 0 -> 3095 bytes .../lexers/__pycache__/chapel.cpython-310.pyc | Bin 0 -> 3333 bytes .../lexers/__pycache__/clean.cpython-310.pyc | Bin 0 -> 3992 bytes .../lexers/__pycache__/codeql.cpython-310.pyc | Bin 0 -> 2103 bytes .../lexers/__pycache__/comal.cpython-310.pyc | Bin 0 -> 2578 bytes .../__pycache__/compiled.cpython-310.pyc | Bin 0 -> 1967 bytes .../__pycache__/configs.cpython-310.pyc | Bin 0 -> 31806 bytes .../__pycache__/console.cpython-310.pyc | Bin 0 -> 3581 bytes .../lexers/__pycache__/cplint.cpython-310.pyc | Bin 0 -> 1569 bytes .../__pycache__/crystal.cpython-310.pyc | Bin 0 -> 8560 bytes .../lexers/__pycache__/csound.cpython-310.pyc | Bin 0 -> 8972 bytes .../lexers/__pycache__/css.cpython-310.pyc | Bin 0 -> 15719 bytes .../lexers/__pycache__/d.cpython-310.pyc | Bin 0 -> 6219 bytes .../lexers/__pycache__/dalvik.cpython-310.pyc | Bin 0 -> 3467 bytes .../lexers/__pycache__/data.cpython-310.pyc | Bin 0 -> 13196 bytes .../lexers/__pycache__/dax.cpython-310.pyc | Bin 0 -> 5676 bytes .../__pycache__/devicetree.cpython-310.pyc | Bin 0 -> 2724 bytes .../lexers/__pycache__/diff.cpython-310.pyc | Bin 0 -> 4038 bytes .../lexers/__pycache__/dns.cpython-310.pyc | Bin 0 -> 2608 bytes .../lexers/__pycache__/dotnet.cpython-310.pyc | Bin 0 -> 25568 bytes .../lexers/__pycache__/dsls.cpython-310.pyc | Bin 0 -> 24171 bytes .../lexers/__pycache__/dylan.cpython-310.pyc | Bin 0 -> 7204 bytes .../lexers/__pycache__/ecl.cpython-310.pyc | Bin 0 -> 4773 bytes .../lexers/__pycache__/eiffel.cpython-310.pyc | Bin 0 -> 2382 bytes .../lexers/__pycache__/elm.cpython-310.pyc | Bin 0 -> 2277 bytes .../lexers/__pycache__/elpi.cpython-310.pyc | Bin 0 -> 4320 bytes .../lexers/__pycache__/email.cpython-310.pyc | Bin 0 -> 4430 bytes .../lexers/__pycache__/erlang.cpython-310.pyc | Bin 0 -> 12916 bytes .../__pycache__/esoteric.cpython-310.pyc | Bin 0 -> 7823 bytes .../lexers/__pycache__/ezhil.cpython-310.pyc | Bin 0 -> 3293 bytes .../lexers/__pycache__/factor.cpython-310.pyc | Bin 0 -> 13009 bytes .../lexers/__pycache__/fantom.cpython-310.pyc | Bin 0 -> 5023 bytes .../lexers/__pycache__/felix.cpython-310.pyc | Bin 0 -> 5770 bytes .../lexers/__pycache__/fift.cpython-310.pyc | Bin 0 -> 1526 bytes .../__pycache__/floscript.cpython-310.pyc | Bin 0 -> 2390 bytes .../lexers/__pycache__/forth.cpython-310.pyc | Bin 0 -> 4762 bytes .../__pycache__/fortran.cpython-310.pyc | Bin 0 -> 7427 bytes .../lexers/__pycache__/foxpro.cpython-310.pyc | Bin 0 -> 20193 bytes .../__pycache__/freefem.cpython-310.pyc | Bin 0 -> 12058 bytes .../lexers/__pycache__/func.cpython-310.pyc | Bin 0 -> 2556 bytes .../__pycache__/functional.cpython-310.pyc | Bin 0 -> 1030 bytes .../__pycache__/futhark.cpython-310.pyc | Bin 0 -> 2825 bytes .../__pycache__/gcodelexer.cpython-310.pyc | Bin 0 -> 1182 bytes .../__pycache__/gdscript.cpython-310.pyc | Bin 0 -> 5140 bytes .../lexers/__pycache__/gleam.cpython-310.pyc | Bin 0 -> 2162 bytes .../lexers/__pycache__/go.cpython-310.pyc | Bin 0 -> 2724 bytes .../grammar_notation.cpython-310.pyc | Bin 0 -> 5994 bytes .../lexers/__pycache__/graph.cpython-310.pyc | Bin 0 -> 2981 bytes .../__pycache__/graphics.cpython-310.pyc | Bin 0 -> 24349 bytes .../__pycache__/graphql.cpython-310.pyc | Bin 0 -> 3200 bytes .../__pycache__/graphviz.cpython-310.pyc | Bin 0 -> 1802 bytes .../lexers/__pycache__/gsql.cpython-310.pyc | Bin 0 -> 3203 bytes .../lexers/__pycache__/hare.cpython-310.pyc | Bin 0 -> 2387 bytes .../__pycache__/haskell.cpython-310.pyc | Bin 0 -> 18901 bytes .../lexers/__pycache__/haxe.cpython-310.pyc | Bin 0 -> 14251 bytes .../lexers/__pycache__/hdl.cpython-310.pyc | Bin 0 -> 13600 bytes .../__pycache__/hexdump.cpython-310.pyc | Bin 0 -> 2738 bytes .../lexers/__pycache__/html.cpython-310.pyc | Bin 0 -> 13322 bytes .../lexers/__pycache__/idl.cpython-310.pyc | Bin 0 -> 11911 bytes .../lexers/__pycache__/igor.cpython-310.pyc | Bin 0 -> 25275 bytes .../__pycache__/inferno.cpython-310.pyc | Bin 0 -> 2617 bytes .../__pycache__/installers.cpython-310.pyc | Bin 0 -> 10654 bytes .../__pycache__/int_fiction.cpython-310.pyc | Bin 0 -> 29907 bytes .../lexers/__pycache__/iolang.cpython-310.pyc | Bin 0 -> 1752 bytes .../lexers/__pycache__/j.cpython-310.pyc | Bin 0 -> 3131 bytes .../__pycache__/javascript.cpython-310.pyc | Bin 0 -> 36810 bytes .../__pycache__/jmespath.cpython-310.pyc | Bin 0 -> 1817 bytes .../lexers/__pycache__/jslt.cpython-310.pyc | Bin 0 -> 2729 bytes .../lexers/__pycache__/json5.cpython-310.pyc | Bin 0 -> 2215 bytes .../__pycache__/jsonnet.cpython-310.pyc | Bin 0 -> 3391 bytes .../lexers/__pycache__/jsx.cpython-310.pyc | Bin 0 -> 2213 bytes .../lexers/__pycache__/julia.cpython-310.pyc | Bin 0 -> 6568 bytes .../lexers/__pycache__/jvm.cpython-310.pyc | Bin 0 -> 42849 bytes .../lexers/__pycache__/kuin.cpython-310.pyc | Bin 0 -> 6330 bytes .../lexers/__pycache__/kusto.cpython-310.pyc | Bin 0 -> 2461 bytes .../lexers/__pycache__/ldap.cpython-310.pyc | Bin 0 -> 4668 bytes .../lexers/__pycache__/lean.cpython-310.pyc | Bin 0 -> 5624 bytes .../__pycache__/lilypond.cpython-310.pyc | Bin 0 -> 4596 bytes .../lexers/__pycache__/lisp.cpython-310.pyc | Bin 0 -> 107536 bytes .../__pycache__/macaulay2.cpython-310.pyc | Bin 0 -> 22692 bytes .../lexers/__pycache__/make.cpython-310.pyc | Bin 0 -> 4895 bytes .../lexers/__pycache__/maple.cpython-310.pyc | Bin 0 -> 4099 bytes .../lexers/__pycache__/markup.cpython-310.pyc | Bin 0 -> 37974 bytes .../lexers/__pycache__/math.cpython-310.pyc | Bin 0 -> 1033 bytes .../lexers/__pycache__/matlab.cpython-310.pyc | Bin 0 -> 51885 bytes .../lexers/__pycache__/maxima.cpython-310.pyc | Bin 0 -> 2497 bytes .../lexers/__pycache__/meson.cpython-310.pyc | Bin 0 -> 2959 bytes .../lexers/__pycache__/mime.cpython-310.pyc | Bin 0 -> 6152 bytes .../__pycache__/minecraft.cpython-310.pyc | Bin 0 -> 6922 bytes .../lexers/__pycache__/mips.cpython-310.pyc | Bin 0 -> 3014 bytes .../lexers/__pycache__/ml.cpython-310.pyc | Bin 0 -> 15430 bytes .../__pycache__/modeling.cpython-310.pyc | Bin 0 -> 8732 bytes .../__pycache__/modula2.cpython-310.pyc | Bin 0 -> 19909 bytes .../lexers/__pycache__/mojo.cpython-310.pyc | Bin 0 -> 9449 bytes .../lexers/__pycache__/monte.cpython-310.pyc | Bin 0 -> 3712 bytes .../lexers/__pycache__/mosel.cpython-310.pyc | Bin 0 -> 6337 bytes .../lexers/__pycache__/ncl.cpython-310.pyc | Bin 0 -> 45436 bytes .../lexers/__pycache__/nimrod.cpython-310.pyc | Bin 0 -> 4222 bytes .../lexers/__pycache__/nit.cpython-310.pyc | Bin 0 -> 2364 bytes .../lexers/__pycache__/nix.cpython-310.pyc | Bin 0 -> 3411 bytes .../__pycache__/numbair.cpython-310.pyc | Bin 0 -> 1760 bytes .../lexers/__pycache__/oberon.cpython-310.pyc | Bin 0 -> 3004 bytes .../__pycache__/objective.cpython-310.pyc | Bin 0 -> 14919 bytes .../lexers/__pycache__/ooc.cpython-310.pyc | Bin 0 -> 2436 bytes .../__pycache__/openscad.cpython-310.pyc | Bin 0 -> 2850 bytes .../lexers/__pycache__/other.cpython-310.pyc | Bin 0 -> 2398 bytes .../__pycache__/parasail.cpython-310.pyc | Bin 0 -> 2352 bytes .../__pycache__/parsers.cpython-310.pyc | Bin 0 -> 16779 bytes .../lexers/__pycache__/pascal.cpython-310.pyc | Bin 0 -> 17944 bytes .../lexers/__pycache__/pawn.cpython-310.pyc | Bin 0 -> 5661 bytes .../lexers/__pycache__/pddl.cpython-310.pyc | Bin 0 -> 2501 bytes .../lexers/__pycache__/perl.cpython-310.pyc | Bin 0 -> 29028 bytes .../lexers/__pycache__/phix.cpython-310.pyc | Bin 0 -> 17784 bytes .../lexers/__pycache__/php.cpython-310.pyc | Bin 0 -> 9927 bytes .../__pycache__/pointless.cpython-310.pyc | Bin 0 -> 1850 bytes .../lexers/__pycache__/pony.cpython-310.pyc | Bin 0 -> 2587 bytes .../lexers/__pycache__/praat.cpython-310.pyc | Bin 0 -> 8157 bytes .../__pycache__/procfile.cpython-310.pyc | Bin 0 -> 1392 bytes .../lexers/__pycache__/prolog.cpython-310.pyc | Bin 0 -> 7933 bytes .../lexers/__pycache__/promql.cpython-310.pyc | Bin 0 -> 2789 bytes .../lexers/__pycache__/prql.cpython-310.pyc | Bin 0 -> 5008 bytes .../lexers/__pycache__/ptx.cpython-310.pyc | Bin 0 -> 3242 bytes .../lexers/__pycache__/python.cpython-310.pyc | Bin 0 -> 30179 bytes .../lexers/__pycache__/q.cpython-310.pyc | Bin 0 -> 4432 bytes .../lexers/__pycache__/qlik.cpython-310.pyc | Bin 0 -> 2393 bytes .../lexers/__pycache__/qvt.cpython-310.pyc | Bin 0 -> 4221 bytes .../lexers/__pycache__/r.cpython-310.pyc | Bin 0 -> 4561 bytes .../lexers/__pycache__/rdf.cpython-310.pyc | Bin 0 -> 8376 bytes .../lexers/__pycache__/rebol.cpython-310.pyc | Bin 0 -> 11671 bytes .../lexers/__pycache__/rego.cpython-310.pyc | Bin 0 -> 1617 bytes .../__pycache__/resource.cpython-310.pyc | Bin 0 -> 2415 bytes .../lexers/__pycache__/ride.cpython-310.pyc | Bin 0 -> 3763 bytes .../lexers/__pycache__/rita.cpython-310.pyc | Bin 0 -> 1325 bytes .../lexers/__pycache__/rnc.cpython-310.pyc | Bin 0 -> 1578 bytes .../__pycache__/roboconf.cpython-310.pyc | Bin 0 -> 1983 bytes .../robotframework.cpython-310.pyc | Bin 0 -> 19300 bytes .../lexers/__pycache__/ruby.cpython-310.pyc | Bin 0 -> 13416 bytes .../lexers/__pycache__/rust.cpython-310.pyc | Bin 0 -> 5041 bytes .../lexers/__pycache__/sas.cpython-310.pyc | Bin 0 -> 6047 bytes .../lexers/__pycache__/savi.cpython-310.pyc | Bin 0 -> 2582 bytes .../lexers/__pycache__/scdoc.cpython-310.pyc | Bin 0 -> 2180 bytes .../__pycache__/scripting.cpython-310.pyc | Bin 0 -> 55641 bytes .../lexers/__pycache__/sgf.cpython-310.pyc | Bin 0 -> 1797 bytes .../lexers/__pycache__/shell.cpython-310.pyc | Bin 0 -> 24670 bytes .../lexers/__pycache__/sieve.cpython-310.pyc | Bin 0 -> 2335 bytes .../lexers/__pycache__/slash.cpython-310.pyc | Bin 0 -> 5011 bytes .../__pycache__/smalltalk.cpython-310.pyc | Bin 0 -> 4526 bytes .../lexers/__pycache__/smithy.cpython-310.pyc | Bin 0 -> 2223 bytes .../lexers/__pycache__/smv.cpython-310.pyc | Bin 0 -> 2244 bytes .../lexers/__pycache__/snobol.cpython-310.pyc | Bin 0 -> 2100 bytes .../__pycache__/solidity.cpython-310.pyc | Bin 0 -> 2647 bytes .../lexers/__pycache__/soong.cpython-310.pyc | Bin 0 -> 1752 bytes .../lexers/__pycache__/sophia.cpython-310.pyc | Bin 0 -> 2754 bytes .../__pycache__/special.cpython-310.pyc | Bin 0 -> 3876 bytes .../lexers/__pycache__/spice.cpython-310.pyc | Bin 0 -> 2481 bytes .../lexers/__pycache__/sql.cpython-310.pyc | Bin 0 -> 24466 bytes .../__pycache__/srcinfo.cpython-310.pyc | Bin 0 -> 1805 bytes .../lexers/__pycache__/stata.cpython-310.pyc | Bin 0 -> 3088 bytes .../__pycache__/supercollider.cpython-310.pyc | Bin 0 -> 3126 bytes .../__pycache__/tablegen.cpython-310.pyc | Bin 0 -> 2647 bytes .../lexers/__pycache__/tact.cpython-310.pyc | Bin 0 -> 5821 bytes .../lexers/__pycache__/tal.cpython-310.pyc | Bin 0 -> 2198 bytes .../lexers/__pycache__/tcl.cpython-310.pyc | Bin 0 -> 3846 bytes .../lexers/__pycache__/teal.cpython-310.pyc | Bin 0 -> 3008 bytes .../__pycache__/templates.cpython-310.pyc | Bin 0 -> 57887 bytes .../__pycache__/teraterm.cpython-310.pyc | Bin 0 -> 4537 bytes .../__pycache__/testing.cpython-310.pyc | Bin 0 -> 8183 bytes .../lexers/__pycache__/text.cpython-310.pyc | Bin 0 -> 1528 bytes .../__pycache__/textedit.cpython-310.pyc | Bin 0 -> 6159 bytes .../__pycache__/textfmts.cpython-310.pyc | Bin 0 -> 10952 bytes .../__pycache__/theorem.cpython-310.pyc | Bin 0 -> 11877 bytes .../__pycache__/thingsdb.cpython-310.pyc | Bin 0 -> 4631 bytes .../lexers/__pycache__/tlb.cpython-310.pyc | Bin 0 -> 1458 bytes .../lexers/__pycache__/tls.cpython-310.pyc | Bin 0 -> 1607 bytes .../lexers/__pycache__/tnt.cpython-310.pyc | Bin 0 -> 6786 bytes .../__pycache__/trafficscript.cpython-310.pyc | Bin 0 -> 1610 bytes .../__pycache__/typoscript.cpython-310.pyc | Bin 0 -> 5425 bytes .../lexers/__pycache__/typst.cpython-310.pyc | Bin 0 -> 4598 bytes .../lexers/__pycache__/ul4.cpython-310.pyc | Bin 0 -> 5413 bytes .../lexers/__pycache__/unicon.cpython-310.pyc | Bin 0 -> 10227 bytes .../lexers/__pycache__/urbi.cpython-310.pyc | Bin 0 -> 4358 bytes .../lexers/__pycache__/usd.cpython-310.pyc | Bin 0 -> 2777 bytes .../__pycache__/varnish.cpython-310.pyc | Bin 0 -> 5214 bytes .../__pycache__/verification.cpython-310.pyc | Bin 0 -> 3031 bytes .../__pycache__/verifpal.cpython-310.pyc | Bin 0 -> 2157 bytes .../lexers/__pycache__/vip.cpython-310.pyc | Bin 0 -> 4375 bytes .../lexers/__pycache__/vyper.cpython-310.pyc | Bin 0 -> 3644 bytes .../lexers/__pycache__/web.cpython-310.pyc | Bin 0 -> 1283 bytes .../__pycache__/webassembly.cpython-310.pyc | Bin 0 -> 4684 bytes .../lexers/__pycache__/webidl.cpython-310.pyc | Bin 0 -> 5246 bytes .../__pycache__/webmisc.cpython-310.pyc | Bin 0 -> 24045 bytes .../lexers/__pycache__/wgsl.cpython-310.pyc | Bin 0 -> 9119 bytes .../lexers/__pycache__/whiley.cpython-310.pyc | Bin 0 -> 2596 bytes .../lexers/__pycache__/wowtoc.cpython-310.pyc | Bin 0 -> 2512 bytes .../lexers/__pycache__/wren.cpython-310.pyc | Bin 0 -> 2216 bytes .../lexers/__pycache__/x10.cpython-310.pyc | Bin 0 -> 1858 bytes .../lexers/__pycache__/xorg.cpython-310.pyc | Bin 0 -> 1173 bytes .../lexers/__pycache__/yang.cpython-310.pyc | Bin 0 -> 3189 bytes .../lexers/__pycache__/yara.cpython-310.pyc | Bin 0 -> 2103 bytes .../lexers/__pycache__/zig.cpython-310.pyc | Bin 0 -> 3040 bytes .../pygments/lexers/_ada_builtins.py | 103 + .../pygments/lexers/_asy_builtins.py | 1644 ++++ .../pygments/lexers/_cl_builtins.py | 231 + .../pygments/lexers/_cocoa_builtins.py | 75 + .../pygments/lexers/_csound_builtins.py | 1780 ++++ .../pygments/lexers/_css_builtins.py | 558 ++ .../pygments/lexers/_googlesql_builtins.py | 918 ++ .../pygments/lexers/_julia_builtins.py | 411 + .../pygments/lexers/_lasso_builtins.py | 5326 +++++++++++ .../pygments/lexers/_lilypond_builtins.py | 4932 ++++++++++ .../pygments/lexers/_lua_builtins.py | 285 + .../pygments/lexers/_luau_builtins.py | 62 + .../site-packages/pygments/lexers/_mapping.py | 602 ++ .../pygments/lexers/_mql_builtins.py | 1171 +++ .../pygments/lexers/_mysql_builtins.py | 1335 +++ .../pygments/lexers/_openedge_builtins.py | 2600 +++++ .../pygments/lexers/_php_builtins.py | 3325 +++++++ .../pygments/lexers/_postgres_builtins.py | 739 ++ .../pygments/lexers/_qlik_builtins.py | 666 ++ .../pygments/lexers/_scheme_builtins.py | 1609 ++++ .../pygments/lexers/_scilab_builtins.py | 3093 ++++++ .../pygments/lexers/_sourcemod_builtins.py | 1151 +++ .../pygments/lexers/_sql_builtins.py | 106 + .../pygments/lexers/_stan_builtins.py | 648 ++ .../pygments/lexers/_stata_builtins.py | 457 + .../pygments/lexers/_tsql_builtins.py | 1003 ++ .../pygments/lexers/_usd_builtins.py | 112 + .../pygments/lexers/_vbscript_builtins.py | 279 + .../pygments/lexers/_vim_builtins.py | 1938 ++++ .../pygments/lexers/actionscript.py | 243 + .../Lib/site-packages/pygments/lexers/ada.py | 144 + .../site-packages/pygments/lexers/agile.py | 25 + .../site-packages/pygments/lexers/algebra.py | 299 + .../site-packages/pygments/lexers/ambient.py | 75 + .../site-packages/pygments/lexers/amdgpu.py | 54 + .../Lib/site-packages/pygments/lexers/ampl.py | 87 + .../site-packages/pygments/lexers/apdlexer.py | 593 ++ .../Lib/site-packages/pygments/lexers/apl.py | 103 + .../pygments/lexers/archetype.py | 315 + .../site-packages/pygments/lexers/arrow.py | 116 + .../site-packages/pygments/lexers/arturo.py | 249 + .../Lib/site-packages/pygments/lexers/asc.py | 55 + .../Lib/site-packages/pygments/lexers/asm.py | 1051 ++ .../Lib/site-packages/pygments/lexers/asn1.py | 178 + .../pygments/lexers/automation.py | 379 + .../Lib/site-packages/pygments/lexers/bare.py | 101 + .../site-packages/pygments/lexers/basic.py | 656 ++ .../Lib/site-packages/pygments/lexers/bdd.py | 57 + .../site-packages/pygments/lexers/berry.py | 99 + .../site-packages/pygments/lexers/bibtex.py | 159 + .../pygments/lexers/blueprint.py | 173 + .../Lib/site-packages/pygments/lexers/boa.py | 97 + .../Lib/site-packages/pygments/lexers/bqn.py | 112 + .../site-packages/pygments/lexers/business.py | 625 ++ .../site-packages/pygments/lexers/c_cpp.py | 414 + .../site-packages/pygments/lexers/c_like.py | 738 ++ .../pygments/lexers/capnproto.py | 74 + .../site-packages/pygments/lexers/carbon.py | 95 + .../Lib/site-packages/pygments/lexers/cddl.py | 172 + .../site-packages/pygments/lexers/chapel.py | 139 + .../site-packages/pygments/lexers/clean.py | 180 + .../site-packages/pygments/lexers/codeql.py | 80 + .../site-packages/pygments/lexers/comal.py | 81 + .../site-packages/pygments/lexers/compiled.py | 35 + .../site-packages/pygments/lexers/configs.py | 1433 +++ .../site-packages/pygments/lexers/console.py | 114 + .../site-packages/pygments/lexers/cplint.py | 43 + .../site-packages/pygments/lexers/crystal.py | 364 + .../site-packages/pygments/lexers/csound.py | 466 + .../Lib/site-packages/pygments/lexers/css.py | 602 ++ .../Lib/site-packages/pygments/lexers/d.py | 259 + .../site-packages/pygments/lexers/dalvik.py | 126 + .../Lib/site-packages/pygments/lexers/data.py | 763 ++ .../Lib/site-packages/pygments/lexers/dax.py | 135 + .../pygments/lexers/devicetree.py | 108 + .../Lib/site-packages/pygments/lexers/diff.py | 169 + .../Lib/site-packages/pygments/lexers/dns.py | 109 + .../site-packages/pygments/lexers/dotnet.py | 873 ++ .../Lib/site-packages/pygments/lexers/dsls.py | 970 ++ .../site-packages/pygments/lexers/dylan.py | 279 + .../Lib/site-packages/pygments/lexers/ecl.py | 144 + .../site-packages/pygments/lexers/eiffel.py | 68 + .../Lib/site-packages/pygments/lexers/elm.py | 123 + .../Lib/site-packages/pygments/lexers/elpi.py | 175 + .../site-packages/pygments/lexers/email.py | 132 + .../site-packages/pygments/lexers/erlang.py | 526 + .../site-packages/pygments/lexers/esoteric.py | 300 + .../site-packages/pygments/lexers/ezhil.py | 76 + .../site-packages/pygments/lexers/factor.py | 363 + .../site-packages/pygments/lexers/fantom.py | 251 + .../site-packages/pygments/lexers/felix.py | 275 + .../Lib/site-packages/pygments/lexers/fift.py | 68 + .../pygments/lexers/floscript.py | 81 + .../site-packages/pygments/lexers/forth.py | 178 + .../site-packages/pygments/lexers/fortran.py | 212 + .../site-packages/pygments/lexers/foxpro.py | 427 + .../site-packages/pygments/lexers/freefem.py | 893 ++ .../Lib/site-packages/pygments/lexers/func.py | 110 + .../pygments/lexers/functional.py | 21 + .../site-packages/pygments/lexers/futhark.py | 105 + .../pygments/lexers/gcodelexer.py | 35 + .../site-packages/pygments/lexers/gdscript.py | 189 + .../site-packages/pygments/lexers/gleam.py | 74 + .../Lib/site-packages/pygments/lexers/go.py | 97 + .../pygments/lexers/grammar_notation.py | 262 + .../site-packages/pygments/lexers/graph.py | 108 + .../site-packages/pygments/lexers/graphics.py | 794 ++ .../site-packages/pygments/lexers/graphql.py | 176 + .../site-packages/pygments/lexers/graphviz.py | 58 + .../Lib/site-packages/pygments/lexers/gsql.py | 103 + .../Lib/site-packages/pygments/lexers/hare.py | 73 + .../site-packages/pygments/lexers/haskell.py | 866 ++ .../Lib/site-packages/pygments/lexers/haxe.py | 935 ++ .../Lib/site-packages/pygments/lexers/hdl.py | 466 + .../site-packages/pygments/lexers/hexdump.py | 102 + .../Lib/site-packages/pygments/lexers/html.py | 670 ++ .../Lib/site-packages/pygments/lexers/idl.py | 284 + .../Lib/site-packages/pygments/lexers/igor.py | 435 + .../site-packages/pygments/lexers/inferno.py | 95 + .../pygments/lexers/installers.py | 352 + .../pygments/lexers/int_fiction.py | 1370 +++ .../site-packages/pygments/lexers/iolang.py | 61 + .../Lib/site-packages/pygments/lexers/j.py | 151 + .../pygments/lexers/javascript.py | 1591 ++++ .../site-packages/pygments/lexers/jmespath.py | 69 + .../Lib/site-packages/pygments/lexers/jslt.py | 94 + .../site-packages/pygments/lexers/json5.py | 83 + .../site-packages/pygments/lexers/jsonnet.py | 169 + .../Lib/site-packages/pygments/lexers/jsx.py | 100 + .../site-packages/pygments/lexers/julia.py | 294 + .../Lib/site-packages/pygments/lexers/jvm.py | 1802 ++++ .../Lib/site-packages/pygments/lexers/kuin.py | 332 + .../site-packages/pygments/lexers/kusto.py | 93 + .../Lib/site-packages/pygments/lexers/ldap.py | 155 + .../Lib/site-packages/pygments/lexers/lean.py | 241 + .../site-packages/pygments/lexers/lilypond.py | 225 + .../Lib/site-packages/pygments/lexers/lisp.py | 3146 ++++++ .../pygments/lexers/macaulay2.py | 1814 ++++ .../Lib/site-packages/pygments/lexers/make.py | 212 + .../site-packages/pygments/lexers/maple.py | 291 + .../site-packages/pygments/lexers/markup.py | 1654 ++++ .../Lib/site-packages/pygments/lexers/math.py | 21 + .../site-packages/pygments/lexers/matlab.py | 3307 +++++++ .../site-packages/pygments/lexers/maxima.py | 84 + .../site-packages/pygments/lexers/meson.py | 139 + .../Lib/site-packages/pygments/lexers/mime.py | 210 + .../pygments/lexers/minecraft.py | 391 + .../Lib/site-packages/pygments/lexers/mips.py | 130 + .../Lib/site-packages/pygments/lexers/ml.py | 958 ++ .../site-packages/pygments/lexers/modeling.py | 366 + .../site-packages/pygments/lexers/modula2.py | 1579 +++ .../Lib/site-packages/pygments/lexers/mojo.py | 707 ++ .../site-packages/pygments/lexers/monte.py | 203 + .../site-packages/pygments/lexers/mosel.py | 447 + .../Lib/site-packages/pygments/lexers/ncl.py | 894 ++ .../site-packages/pygments/lexers/nimrod.py | 199 + .../Lib/site-packages/pygments/lexers/nit.py | 63 + .../Lib/site-packages/pygments/lexers/nix.py | 144 + .../site-packages/pygments/lexers/numbair.py | 63 + .../site-packages/pygments/lexers/oberon.py | 120 + .../pygments/lexers/objective.py | 513 + .../Lib/site-packages/pygments/lexers/ooc.py | 84 + .../site-packages/pygments/lexers/openscad.py | 96 + .../site-packages/pygments/lexers/other.py | 41 + .../site-packages/pygments/lexers/parasail.py | 78 + .../site-packages/pygments/lexers/parsers.py | 798 ++ .../site-packages/pygments/lexers/pascal.py | 644 ++ .../Lib/site-packages/pygments/lexers/pawn.py | 202 + .../Lib/site-packages/pygments/lexers/pddl.py | 82 + .../Lib/site-packages/pygments/lexers/perl.py | 733 ++ .../Lib/site-packages/pygments/lexers/phix.py | 363 + .../Lib/site-packages/pygments/lexers/php.py | 334 + .../pygments/lexers/pointless.py | 70 + .../Lib/site-packages/pygments/lexers/pony.py | 93 + .../site-packages/pygments/lexers/praat.py | 303 + .../site-packages/pygments/lexers/procfile.py | 41 + .../site-packages/pygments/lexers/prolog.py | 318 + .../site-packages/pygments/lexers/promql.py | 176 + .../Lib/site-packages/pygments/lexers/prql.py | 251 + .../Lib/site-packages/pygments/lexers/ptx.py | 119 + .../site-packages/pygments/lexers/python.py | 1201 +++ .../Lib/site-packages/pygments/lexers/q.py | 187 + .../Lib/site-packages/pygments/lexers/qlik.py | 117 + .../Lib/site-packages/pygments/lexers/qvt.py | 153 + .../Lib/site-packages/pygments/lexers/r.py | 196 + .../Lib/site-packages/pygments/lexers/rdf.py | 468 + .../site-packages/pygments/lexers/rebol.py | 419 + .../Lib/site-packages/pygments/lexers/rego.py | 57 + .../site-packages/pygments/lexers/resource.py | 83 + .../Lib/site-packages/pygments/lexers/ride.py | 138 + .../Lib/site-packages/pygments/lexers/rita.py | 42 + .../Lib/site-packages/pygments/lexers/rnc.py | 66 + .../site-packages/pygments/lexers/roboconf.py | 81 + .../pygments/lexers/robotframework.py | 551 ++ .../Lib/site-packages/pygments/lexers/ruby.py | 518 + .../Lib/site-packages/pygments/lexers/rust.py | 222 + .../Lib/site-packages/pygments/lexers/sas.py | 227 + .../Lib/site-packages/pygments/lexers/savi.py | 171 + .../site-packages/pygments/lexers/scdoc.py | 85 + .../pygments/lexers/scripting.py | 1616 ++++ .../Lib/site-packages/pygments/lexers/sgf.py | 59 + .../site-packages/pygments/lexers/shell.py | 902 ++ .../site-packages/pygments/lexers/sieve.py | 78 + .../site-packages/pygments/lexers/slash.py | 183 + .../pygments/lexers/smalltalk.py | 194 + .../site-packages/pygments/lexers/smithy.py | 77 + .../Lib/site-packages/pygments/lexers/smv.py | 78 + .../site-packages/pygments/lexers/snobol.py | 82 + .../site-packages/pygments/lexers/solidity.py | 87 + .../site-packages/pygments/lexers/soong.py | 78 + .../site-packages/pygments/lexers/sophia.py | 102 + .../site-packages/pygments/lexers/special.py | 122 + .../site-packages/pygments/lexers/spice.py | 70 + .../Lib/site-packages/pygments/lexers/sql.py | 1109 +++ .../site-packages/pygments/lexers/srcinfo.py | 62 + .../site-packages/pygments/lexers/stata.py | 170 + .../pygments/lexers/supercollider.py | 94 + .../site-packages/pygments/lexers/tablegen.py | 177 + .../Lib/site-packages/pygments/lexers/tact.py | 303 + .../Lib/site-packages/pygments/lexers/tal.py | 77 + .../Lib/site-packages/pygments/lexers/tcl.py | 148 + .../Lib/site-packages/pygments/lexers/teal.py | 88 + .../pygments/lexers/templates.py | 2355 +++++ .../site-packages/pygments/lexers/teraterm.py | 325 + .../site-packages/pygments/lexers/testing.py | 209 + .../Lib/site-packages/pygments/lexers/text.py | 27 + .../site-packages/pygments/lexers/textedit.py | 205 + .../site-packages/pygments/lexers/textfmts.py | 436 + .../site-packages/pygments/lexers/theorem.py | 410 + .../site-packages/pygments/lexers/thingsdb.py | 140 + .../Lib/site-packages/pygments/lexers/tlb.py | 59 + .../Lib/site-packages/pygments/lexers/tls.py | 54 + .../Lib/site-packages/pygments/lexers/tnt.py | 270 + .../pygments/lexers/trafficscript.py | 51 + .../pygments/lexers/typoscript.py | 216 + .../site-packages/pygments/lexers/typst.py | 160 + .../Lib/site-packages/pygments/lexers/ul4.py | 309 + .../site-packages/pygments/lexers/unicon.py | 413 + .../Lib/site-packages/pygments/lexers/urbi.py | 145 + .../Lib/site-packages/pygments/lexers/usd.py | 85 + .../site-packages/pygments/lexers/varnish.py | 189 + .../pygments/lexers/verification.py | 113 + .../site-packages/pygments/lexers/verifpal.py | 65 + .../Lib/site-packages/pygments/lexers/vip.py | 150 + .../site-packages/pygments/lexers/vyper.py | 140 + .../Lib/site-packages/pygments/lexers/web.py | 24 + .../pygments/lexers/webassembly.py | 119 + .../site-packages/pygments/lexers/webidl.py | 298 + .../site-packages/pygments/lexers/webmisc.py | 1006 ++ .../Lib/site-packages/pygments/lexers/wgsl.py | 406 + .../site-packages/pygments/lexers/whiley.py | 115 + .../site-packages/pygments/lexers/wowtoc.py | 120 + .../Lib/site-packages/pygments/lexers/wren.py | 98 + .../Lib/site-packages/pygments/lexers/x10.py | 66 + .../Lib/site-packages/pygments/lexers/xorg.py | 38 + .../Lib/site-packages/pygments/lexers/yang.py | 103 + .../Lib/site-packages/pygments/lexers/yara.py | 69 + .../Lib/site-packages/pygments/lexers/zig.py | 125 + .../Lib/site-packages/pygments/modeline.py | 43 + Scripts/Lib/site-packages/pygments/plugin.py | 72 + .../Lib/site-packages/pygments/regexopt.py | 91 + Scripts/Lib/site-packages/pygments/scanner.py | 104 + .../Lib/site-packages/pygments/sphinxext.py | 247 + Scripts/Lib/site-packages/pygments/style.py | 203 + .../site-packages/pygments/styles/__init__.py | 61 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 2035 bytes .../__pycache__/_mapping.cpython-310.pyc | Bin 0 -> 3321 bytes .../styles/__pycache__/abap.cpython-310.pyc | Bin 0 -> 970 bytes .../styles/__pycache__/algol.cpython-310.pyc | Bin 0 -> 2241 bytes .../__pycache__/algol_nu.cpython-310.pyc | Bin 0 -> 2256 bytes .../__pycache__/arduino.cpython-310.pyc | Bin 0 -> 2325 bytes .../styles/__pycache__/autumn.cpython-310.pyc | Bin 0 -> 1924 bytes .../__pycache__/borland.cpython-310.pyc | Bin 0 -> 1635 bytes .../styles/__pycache__/bw.cpython-310.pyc | Bin 0 -> 1329 bytes .../styles/__pycache__/coffee.cpython-310.pyc | Bin 0 -> 2154 bytes .../__pycache__/colorful.cpython-310.pyc | Bin 0 -> 2323 bytes .../__pycache__/default.cpython-310.pyc | Bin 0 -> 2117 bytes .../__pycache__/dracula.cpython-310.pyc | Bin 0 -> 2255 bytes .../styles/__pycache__/emacs.cpython-310.pyc | Bin 0 -> 2139 bytes .../__pycache__/friendly.cpython-310.pyc | Bin 0 -> 2226 bytes .../friendly_grayscale.cpython-310.pyc | Bin 0 -> 2440 bytes .../styles/__pycache__/fruity.cpython-310.pyc | Bin 0 -> 1501 bytes .../__pycache__/gh_dark.cpython-310.pyc | Bin 0 -> 2706 bytes .../__pycache__/gruvbox.cpython-310.pyc | Bin 0 -> 2814 bytes .../styles/__pycache__/igor.cpython-310.pyc | Bin 0 -> 1002 bytes .../styles/__pycache__/inkpot.cpython-310.pyc | Bin 0 -> 1979 bytes .../__pycache__/lightbulb.cpython-310.pyc | Bin 0 -> 2714 bytes .../__pycache__/lilypond.cpython-310.pyc | Bin 0 -> 1758 bytes .../__pycache__/lovelace.cpython-310.pyc | Bin 0 -> 2671 bytes .../styles/__pycache__/manni.cpython-310.pyc | Bin 0 -> 2367 bytes .../__pycache__/material.cpython-310.pyc | Bin 0 -> 2818 bytes .../__pycache__/monokai.cpython-310.pyc | Bin 0 -> 2613 bytes .../styles/__pycache__/murphy.cpython-310.pyc | Bin 0 -> 2288 bytes .../styles/__pycache__/native.cpython-310.pyc | Bin 0 -> 2030 bytes .../styles/__pycache__/nord.cpython-310.pyc | Bin 0 -> 3396 bytes .../__pycache__/onedark.cpython-310.pyc | Bin 0 -> 1660 bytes .../__pycache__/paraiso_dark.cpython-310.pyc | Bin 0 -> 2901 bytes .../__pycache__/paraiso_light.cpython-310.pyc | Bin 0 -> 2907 bytes .../styles/__pycache__/pastie.cpython-310.pyc | Bin 0 -> 2223 bytes .../__pycache__/perldoc.cpython-310.pyc | Bin 0 -> 2052 bytes .../__pycache__/rainbow_dash.cpython-310.pyc | Bin 0 -> 2510 bytes .../styles/__pycache__/rrt.cpython-310.pyc | Bin 0 -> 1242 bytes .../styles/__pycache__/sas.cpython-310.pyc | Bin 0 -> 1548 bytes .../__pycache__/solarized.cpython-310.pyc | Bin 0 -> 3320 bytes .../__pycache__/staroffice.cpython-310.pyc | Bin 0 -> 1049 bytes .../__pycache__/stata_dark.cpython-310.pyc | Bin 0 -> 1418 bytes .../__pycache__/stata_light.cpython-310.pyc | Bin 0 -> 1446 bytes .../styles/__pycache__/tango.cpython-310.pyc | Bin 0 -> 3943 bytes .../styles/__pycache__/trac.cpython-310.pyc | Bin 0 -> 1805 bytes .../styles/__pycache__/vim.cpython-310.pyc | Bin 0 -> 1750 bytes .../styles/__pycache__/vs.cpython-310.pyc | Bin 0 -> 1170 bytes .../styles/__pycache__/xcode.cpython-310.pyc | Bin 0 -> 1368 bytes .../__pycache__/zenburn.cpython-310.pyc | Bin 0 -> 2339 bytes .../site-packages/pygments/styles/_mapping.py | 54 + .../Lib/site-packages/pygments/styles/abap.py | 32 + .../site-packages/pygments/styles/algol.py | 65 + .../site-packages/pygments/styles/algol_nu.py | 65 + .../site-packages/pygments/styles/arduino.py | 100 + .../site-packages/pygments/styles/autumn.py | 67 + .../site-packages/pygments/styles/borland.py | 53 + .../Lib/site-packages/pygments/styles/bw.py | 52 + .../site-packages/pygments/styles/coffee.py | 80 + .../site-packages/pygments/styles/colorful.py | 83 + .../site-packages/pygments/styles/default.py | 76 + .../site-packages/pygments/styles/dracula.py | 90 + .../site-packages/pygments/styles/emacs.py | 75 + .../site-packages/pygments/styles/friendly.py | 76 + .../pygments/styles/friendly_grayscale.py | 80 + .../site-packages/pygments/styles/fruity.py | 47 + .../site-packages/pygments/styles/gh_dark.py | 113 + .../site-packages/pygments/styles/gruvbox.py | 118 + .../Lib/site-packages/pygments/styles/igor.py | 32 + .../site-packages/pygments/styles/inkpot.py | 72 + .../pygments/styles/lightbulb.py | 110 + .../site-packages/pygments/styles/lilypond.py | 62 + .../site-packages/pygments/styles/lovelace.py | 100 + .../site-packages/pygments/styles/manni.py | 79 + .../site-packages/pygments/styles/material.py | 124 + .../site-packages/pygments/styles/monokai.py | 112 + .../site-packages/pygments/styles/murphy.py | 82 + .../site-packages/pygments/styles/native.py | 70 + .../Lib/site-packages/pygments/styles/nord.py | 156 + .../site-packages/pygments/styles/onedark.py | 63 + .../pygments/styles/paraiso_dark.py | 124 + .../pygments/styles/paraiso_light.py | 124 + .../site-packages/pygments/styles/pastie.py | 78 + .../site-packages/pygments/styles/perldoc.py | 73 + .../pygments/styles/rainbow_dash.py | 95 + .../Lib/site-packages/pygments/styles/rrt.py | 40 + .../Lib/site-packages/pygments/styles/sas.py | 46 + .../pygments/styles/solarized.py | 144 + .../pygments/styles/staroffice.py | 31 + .../pygments/styles/stata_dark.py | 42 + .../pygments/styles/stata_light.py | 42 + .../site-packages/pygments/styles/tango.py | 143 + .../Lib/site-packages/pygments/styles/trac.py | 66 + .../Lib/site-packages/pygments/styles/vim.py | 67 + .../Lib/site-packages/pygments/styles/vs.py | 41 + .../site-packages/pygments/styles/xcode.py | 53 + .../site-packages/pygments/styles/zenburn.py | 83 + Scripts/Lib/site-packages/pygments/token.py | 214 + .../Lib/site-packages/pygments/unistring.py | 153 + Scripts/Lib/site-packages/pygments/util.py | 324 + .../rich-14.1.0.dist-info/INSTALLER | 1 + .../rich-14.1.0.dist-info/LICENSE | 19 + .../rich-14.1.0.dist-info/METADATA | 472 + .../rich-14.1.0.dist-info/RECORD | 163 + .../rich-14.1.0.dist-info/REQUESTED | 0 .../site-packages/rich-14.1.0.dist-info/WHEEL | 4 + Scripts/Lib/site-packages/rich/__init__.py | 177 + Scripts/Lib/site-packages/rich/__main__.py | 245 + .../rich/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 6098 bytes .../rich/__pycache__/__main__.cpython-310.pyc | Bin 0 -> 6636 bytes .../__pycache__/_cell_widths.cpython-310.pyc | Bin 0 -> 7874 bytes .../__pycache__/_emoji_codes.cpython-310.pyc | Bin 0 -> 360063 bytes .../_emoji_replace.cpython-310.pyc | Bin 0 -> 1204 bytes .../_export_format.cpython-310.pyc | Bin 0 -> 2334 bytes .../__pycache__/_extension.cpython-310.pyc | Bin 0 -> 480 bytes .../rich/__pycache__/_fileno.cpython-310.pyc | Bin 0 -> 797 bytes .../rich/__pycache__/_inspect.cpython-310.pyc | Bin 0 -> 8637 bytes .../__pycache__/_log_render.cpython-310.pyc | Bin 0 -> 2637 bytes .../rich/__pycache__/_loop.cpython-310.pyc | Bin 0 -> 1301 bytes .../__pycache__/_null_file.cpython-310.pyc | Bin 0 -> 3252 bytes .../__pycache__/_palettes.cpython-310.pyc | Bin 0 -> 5106 bytes .../rich/__pycache__/_pick.cpython-310.pyc | Bin 0 -> 649 bytes .../rich/__pycache__/_ratio.cpython-310.pyc | Bin 0 -> 5056 bytes .../__pycache__/_spinners.cpython-310.pyc | Bin 0 -> 12280 bytes .../rich/__pycache__/_stack.cpython-310.pyc | Bin 0 -> 848 bytes .../rich/__pycache__/_timer.cpython-310.pyc | Bin 0 -> 696 bytes .../_win32_console.cpython-310.pyc | Bin 0 -> 18954 bytes .../rich/__pycache__/_windows.cpython-310.pyc | Bin 0 -> 1775 bytes .../_windows_renderer.cpython-310.pyc | Bin 0 -> 2028 bytes .../rich/__pycache__/_wrap.cpython-310.pyc | Bin 0 -> 2479 bytes .../rich/__pycache__/abc.cpython-310.pyc | Bin 0 -> 1312 bytes .../rich/__pycache__/align.cpython-310.pyc | Bin 0 -> 7910 bytes .../rich/__pycache__/ansi.cpython-310.pyc | Bin 0 -> 6004 bytes .../rich/__pycache__/bar.cpython-310.pyc | Bin 0 -> 2992 bytes .../rich/__pycache__/box.cpython-310.pyc | Bin 0 -> 8269 bytes .../rich/__pycache__/cells.cpython-310.pyc | Bin 0 -> 4287 bytes .../rich/__pycache__/color.cpython-310.pyc | Bin 0 -> 17735 bytes .../__pycache__/color_triplet.cpython-310.pyc | Bin 0 -> 1449 bytes .../rich/__pycache__/columns.cpython-310.pyc | Bin 0 -> 6198 bytes .../rich/__pycache__/console.cpython-310.pyc | Bin 0 -> 83765 bytes .../__pycache__/constrain.cpython-310.pyc | Bin 0 -> 1763 bytes .../__pycache__/containers.cpython-310.pyc | Bin 0 -> 6500 bytes .../rich/__pycache__/control.cpython-310.pyc | Bin 0 -> 8053 bytes .../default_styles.cpython-310.pyc | Bin 0 -> 6325 bytes .../rich/__pycache__/diagnose.cpython-310.pyc | Bin 0 -> 1215 bytes .../rich/__pycache__/emoji.cpython-310.pyc | Bin 0 -> 3156 bytes .../rich/__pycache__/errors.cpython-310.pyc | Bin 0 -> 1536 bytes .../__pycache__/file_proxy.cpython-310.pyc | Bin 0 -> 2410 bytes .../rich/__pycache__/filesize.cpython-310.pyc | Bin 0 -> 2629 bytes .../__pycache__/highlighter.cpython-310.pyc | Bin 0 -> 8072 bytes .../rich/__pycache__/json.cpython-310.pyc | Bin 0 -> 4728 bytes .../rich/__pycache__/jupyter.cpython-310.pyc | Bin 0 -> 3998 bytes .../rich/__pycache__/layout.cpython-310.pyc | Bin 0 -> 14613 bytes .../rich/__pycache__/live.cpython-310.pyc | Bin 0 -> 12535 bytes .../__pycache__/live_render.cpython-310.pyc | Bin 0 -> 3299 bytes .../rich/__pycache__/logging.cpython-310.pyc | Bin 0 -> 10328 bytes .../rich/__pycache__/markdown.cpython-310.pyc | Bin 0 -> 24868 bytes .../rich/__pycache__/markup.cpython-310.pyc | Bin 0 -> 6144 bytes .../rich/__pycache__/measure.cpython-310.pyc | Bin 0 -> 5090 bytes .../rich/__pycache__/padding.cpython-310.pyc | Bin 0 -> 4420 bytes .../rich/__pycache__/pager.cpython-310.pyc | Bin 0 -> 1485 bytes .../rich/__pycache__/palette.cpython-310.pyc | Bin 0 -> 3647 bytes .../rich/__pycache__/panel.cpython-310.pyc | Bin 0 -> 7922 bytes .../rich/__pycache__/pretty.cpython-310.pyc | Bin 0 -> 27796 bytes .../rich/__pycache__/progress.cpython-310.pyc | Bin 0 -> 55343 bytes .../__pycache__/progress_bar.cpython-310.pyc | Bin 0 -> 6921 bytes .../rich/__pycache__/prompt.cpython-310.pyc | Bin 0 -> 12200 bytes .../rich/__pycache__/protocol.cpython-310.pyc | Bin 0 -> 1351 bytes .../rich/__pycache__/region.cpython-310.pyc | Bin 0 -> 536 bytes .../rich/__pycache__/repr.cpython-310.pyc | Bin 0 -> 4093 bytes .../rich/__pycache__/rule.cpython-310.pyc | Bin 0 -> 3940 bytes .../rich/__pycache__/scope.cpython-310.pyc | Bin 0 -> 2988 bytes .../rich/__pycache__/screen.cpython-310.pyc | Bin 0 -> 1876 bytes .../rich/__pycache__/segment.cpython-310.pyc | Bin 0 -> 21193 bytes .../rich/__pycache__/spinner.cpython-310.pyc | Bin 0 -> 4285 bytes .../rich/__pycache__/status.cpython-310.pyc | Bin 0 -> 4603 bytes .../rich/__pycache__/style.cpython-310.pyc | Bin 0 -> 21346 bytes .../rich/__pycache__/styled.cpython-310.pyc | Bin 0 -> 1748 bytes .../rich/__pycache__/syntax.cpython-310.pyc | Bin 0 -> 27318 bytes .../rich/__pycache__/table.cpython-310.pyc | Bin 0 -> 30137 bytes .../terminal_theme.cpython-310.pyc | Bin 0 -> 3025 bytes .../rich/__pycache__/text.cpython-310.pyc | Bin 0 -> 41809 bytes .../rich/__pycache__/theme.cpython-310.pyc | Bin 0 -> 4843 bytes .../rich/__pycache__/themes.cpython-310.pyc | Bin 0 -> 302 bytes .../__pycache__/traceback.cpython-310.pyc | Bin 0 -> 24391 bytes .../rich/__pycache__/tree.cpython-310.pyc | Bin 0 -> 7591 bytes .../Lib/site-packages/rich/_cell_widths.py | 454 + .../Lib/site-packages/rich/_emoji_codes.py | 3610 +++++++ .../Lib/site-packages/rich/_emoji_replace.py | 32 + .../Lib/site-packages/rich/_export_format.py | 76 + Scripts/Lib/site-packages/rich/_extension.py | 10 + Scripts/Lib/site-packages/rich/_fileno.py | 24 + Scripts/Lib/site-packages/rich/_inspect.py | 268 + Scripts/Lib/site-packages/rich/_log_render.py | 94 + Scripts/Lib/site-packages/rich/_loop.py | 43 + Scripts/Lib/site-packages/rich/_null_file.py | 69 + Scripts/Lib/site-packages/rich/_palettes.py | 309 + Scripts/Lib/site-packages/rich/_pick.py | 17 + Scripts/Lib/site-packages/rich/_ratio.py | 153 + Scripts/Lib/site-packages/rich/_spinners.py | 482 + Scripts/Lib/site-packages/rich/_stack.py | 16 + Scripts/Lib/site-packages/rich/_timer.py | 19 + .../Lib/site-packages/rich/_win32_console.py | 661 ++ Scripts/Lib/site-packages/rich/_windows.py | 71 + .../site-packages/rich/_windows_renderer.py | 56 + Scripts/Lib/site-packages/rich/_wrap.py | 93 + Scripts/Lib/site-packages/rich/abc.py | 33 + Scripts/Lib/site-packages/rich/align.py | 306 + Scripts/Lib/site-packages/rich/ansi.py | 241 + Scripts/Lib/site-packages/rich/bar.py | 93 + Scripts/Lib/site-packages/rich/box.py | 474 + Scripts/Lib/site-packages/rich/cells.py | 174 + Scripts/Lib/site-packages/rich/color.py | 621 ++ .../Lib/site-packages/rich/color_triplet.py | 38 + Scripts/Lib/site-packages/rich/columns.py | 187 + Scripts/Lib/site-packages/rich/console.py | 2680 ++++++ Scripts/Lib/site-packages/rich/constrain.py | 37 + Scripts/Lib/site-packages/rich/containers.py | 167 + Scripts/Lib/site-packages/rich/control.py | 219 + .../Lib/site-packages/rich/default_styles.py | 193 + Scripts/Lib/site-packages/rich/diagnose.py | 39 + Scripts/Lib/site-packages/rich/emoji.py | 91 + Scripts/Lib/site-packages/rich/errors.py | 34 + Scripts/Lib/site-packages/rich/file_proxy.py | 57 + Scripts/Lib/site-packages/rich/filesize.py | 88 + Scripts/Lib/site-packages/rich/highlighter.py | 232 + Scripts/Lib/site-packages/rich/json.py | 139 + Scripts/Lib/site-packages/rich/jupyter.py | 101 + Scripts/Lib/site-packages/rich/layout.py | 442 + Scripts/Lib/site-packages/rich/live.py | 400 + Scripts/Lib/site-packages/rich/live_render.py | 106 + Scripts/Lib/site-packages/rich/logging.py | 297 + Scripts/Lib/site-packages/rich/markdown.py | 779 ++ Scripts/Lib/site-packages/rich/markup.py | 251 + Scripts/Lib/site-packages/rich/measure.py | 151 + Scripts/Lib/site-packages/rich/padding.py | 141 + Scripts/Lib/site-packages/rich/pager.py | 34 + Scripts/Lib/site-packages/rich/palette.py | 100 + Scripts/Lib/site-packages/rich/panel.py | 317 + Scripts/Lib/site-packages/rich/pretty.py | 1016 ++ Scripts/Lib/site-packages/rich/progress.py | 1715 ++++ .../Lib/site-packages/rich/progress_bar.py | 223 + Scripts/Lib/site-packages/rich/prompt.py | 400 + Scripts/Lib/site-packages/rich/protocol.py | 42 + Scripts/Lib/site-packages/rich/py.typed | 0 Scripts/Lib/site-packages/rich/region.py | 10 + Scripts/Lib/site-packages/rich/repr.py | 149 + Scripts/Lib/site-packages/rich/rule.py | 130 + Scripts/Lib/site-packages/rich/scope.py | 86 + Scripts/Lib/site-packages/rich/screen.py | 54 + Scripts/Lib/site-packages/rich/segment.py | 752 ++ Scripts/Lib/site-packages/rich/spinner.py | 132 + Scripts/Lib/site-packages/rich/status.py | 131 + Scripts/Lib/site-packages/rich/style.py | 796 ++ Scripts/Lib/site-packages/rich/styled.py | 42 + Scripts/Lib/site-packages/rich/syntax.py | 985 ++ Scripts/Lib/site-packages/rich/table.py | 1006 ++ .../Lib/site-packages/rich/terminal_theme.py | 153 + Scripts/Lib/site-packages/rich/text.py | 1361 +++ Scripts/Lib/site-packages/rich/theme.py | 115 + Scripts/Lib/site-packages/rich/themes.py | 5 + Scripts/Lib/site-packages/rich/traceback.py | 899 ++ Scripts/Lib/site-packages/rich/tree.py | 257 + .../setuptools-57.4.0.dist-info/INSTALLER | 1 + .../setuptools-57.4.0.dist-info/LICENSE | 19 + .../setuptools-57.4.0.dist-info/METADATA | 119 + .../setuptools-57.4.0.dist-info/RECORD | 298 + .../setuptools-57.4.0.dist-info/REQUESTED | 0 .../setuptools-57.4.0.dist-info/WHEEL | 5 + .../entry_points.txt | 60 + .../setuptools-57.4.0.dist-info/top_level.txt | 3 + .../Lib/site-packages/setuptools/__init__.py | 241 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 8711 bytes .../_deprecation_warning.cpython-310.pyc | Bin 0 -> 575 bytes .../__pycache__/_imp.cpython-310.pyc | Bin 0 -> 2101 bytes .../__pycache__/archive_util.cpython-310.pyc | Bin 0 -> 5872 bytes .../__pycache__/build_meta.cpython-310.pyc | Bin 0 -> 9143 bytes .../__pycache__/config.cpython-310.pyc | Bin 0 -> 20190 bytes .../__pycache__/dep_util.cpython-310.pyc | Bin 0 -> 883 bytes .../__pycache__/depends.cpython-310.pyc | Bin 0 -> 5295 bytes .../__pycache__/dist.cpython-310.pyc | Bin 0 -> 36078 bytes .../__pycache__/errors.cpython-310.pyc | Bin 0 -> 875 bytes .../__pycache__/extension.cpython-310.pyc | Bin 0 -> 1972 bytes .../__pycache__/glob.cpython-310.pyc | Bin 0 -> 3763 bytes .../__pycache__/installer.cpython-310.pyc | Bin 0 -> 2779 bytes .../__pycache__/launch.cpython-310.pyc | Bin 0 -> 932 bytes .../__pycache__/lib2to3_ex.cpython-310.pyc | Bin 0 -> 2702 bytes .../__pycache__/monkey.cpython-310.pyc | Bin 0 -> 4663 bytes .../__pycache__/msvc.cpython-310.pyc | Bin 0 -> 42713 bytes .../__pycache__/namespaces.cpython-310.pyc | Bin 0 -> 3644 bytes .../__pycache__/package_index.cpython-310.pyc | Bin 0 -> 32523 bytes .../__pycache__/py34compat.cpython-310.pyc | Bin 0 -> 507 bytes .../__pycache__/sandbox.cpython-310.pyc | Bin 0 -> 15809 bytes .../__pycache__/unicode_utils.cpython-310.pyc | Bin 0 -> 1137 bytes .../__pycache__/version.cpython-310.pyc | Bin 0 -> 349 bytes .../__pycache__/wheel.cpython-310.pyc | Bin 0 -> 7377 bytes .../windows_support.cpython-310.pyc | Bin 0 -> 1050 bytes .../setuptools/_deprecation_warning.py | 7 + .../setuptools/_distutils/__init__.py | 15 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 481 bytes .../__pycache__/_msvccompiler.cpython-310.pyc | Bin 0 -> 13862 bytes .../__pycache__/archive_util.cpython-310.pyc | Bin 0 -> 6588 bytes .../__pycache__/bcppcompiler.cpython-310.pyc | Bin 0 -> 6575 bytes .../__pycache__/ccompiler.cpython-310.pyc | Bin 0 -> 33311 bytes .../__pycache__/cmd.cpython-310.pyc | Bin 0 -> 13982 bytes .../__pycache__/config.cpython-310.pyc | Bin 0 -> 3618 bytes .../__pycache__/core.cpython-310.pyc | Bin 0 -> 6683 bytes .../cygwinccompiler.cpython-310.pyc | Bin 0 -> 8771 bytes .../__pycache__/debug.cpython-310.pyc | Bin 0 -> 277 bytes .../__pycache__/dep_util.cpython-310.pyc | Bin 0 -> 2801 bytes .../__pycache__/dir_util.cpython-310.pyc | Bin 0 -> 5909 bytes .../__pycache__/dist.cpython-310.pyc | Bin 0 -> 34085 bytes .../__pycache__/errors.cpython-310.pyc | Bin 0 -> 5019 bytes .../__pycache__/extension.cpython-310.pyc | Bin 0 -> 7033 bytes .../__pycache__/fancy_getopt.cpython-310.pyc | Bin 0 -> 10662 bytes .../__pycache__/file_util.cpython-310.pyc | Bin 0 -> 6004 bytes .../__pycache__/filelist.cpython-310.pyc | Bin 0 -> 10853 bytes .../__pycache__/log.cpython-310.pyc | Bin 0 -> 2334 bytes .../__pycache__/msvc9compiler.cpython-310.pyc | Bin 0 -> 17592 bytes .../__pycache__/msvccompiler.cpython-310.pyc | Bin 0 -> 14811 bytes .../__pycache__/py35compat.cpython-310.pyc | Bin 0 -> 654 bytes .../__pycache__/py38compat.cpython-310.pyc | Bin 0 -> 450 bytes .../__pycache__/spawn.cpython-310.pyc | Bin 0 -> 2920 bytes .../__pycache__/sysconfig.cpython-310.pyc | Bin 0 -> 12409 bytes .../__pycache__/text_file.cpython-310.pyc | Bin 0 -> 8496 bytes .../__pycache__/unixccompiler.cpython-310.pyc | Bin 0 -> 6817 bytes .../__pycache__/util.cpython-310.pyc | Bin 0 -> 17308 bytes .../__pycache__/version.cpython-310.pyc | Bin 0 -> 7384 bytes .../versionpredicate.cpython-310.pyc | Bin 0 -> 5216 bytes .../setuptools/_distutils/_msvccompiler.py | 561 ++ .../setuptools/_distutils/archive_util.py | 256 + .../setuptools/_distutils/bcppcompiler.py | 393 + .../setuptools/_distutils/ccompiler.py | 1123 +++ .../setuptools/_distutils/cmd.py | 403 + .../setuptools/_distutils/command/__init__.py | 31 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 556 bytes .../command/__pycache__/bdist.cpython-310.pyc | Bin 0 -> 3690 bytes .../__pycache__/bdist_dumb.cpython-310.pyc | Bin 0 -> 3671 bytes .../__pycache__/bdist_msi.cpython-310.pyc | Bin 0 -> 19751 bytes .../__pycache__/bdist_rpm.cpython-310.pyc | Bin 0 -> 12316 bytes .../__pycache__/bdist_wininst.cpython-310.pyc | Bin 0 -> 8656 bytes .../command/__pycache__/build.cpython-310.pyc | Bin 0 -> 3918 bytes .../__pycache__/build_clib.cpython-310.pyc | Bin 0 -> 4895 bytes .../__pycache__/build_ext.cpython-310.pyc | Bin 0 -> 16340 bytes .../__pycache__/build_py.cpython-310.pyc | Bin 0 -> 10558 bytes .../__pycache__/build_scripts.cpython-310.pyc | Bin 0 -> 4409 bytes .../command/__pycache__/check.cpython-310.pyc | Bin 0 -> 5035 bytes .../command/__pycache__/clean.cpython-310.pyc | Bin 0 -> 2173 bytes .../__pycache__/config.cpython-310.pyc | Bin 0 -> 10362 bytes .../__pycache__/install.cpython-310.pyc | Bin 0 -> 13864 bytes .../__pycache__/install_data.cpython-310.pyc | Bin 0 -> 2372 bytes .../install_egg_info.cpython-310.pyc | Bin 0 -> 3116 bytes .../install_headers.cpython-310.pyc | Bin 0 -> 1795 bytes .../__pycache__/install_lib.cpython-310.pyc | Bin 0 -> 5199 bytes .../install_scripts.cpython-310.pyc | Bin 0 -> 2224 bytes .../__pycache__/py37compat.cpython-310.pyc | Bin 0 -> 1069 bytes .../__pycache__/register.cpython-310.pyc | Bin 0 -> 8708 bytes .../command/__pycache__/sdist.cpython-310.pyc | Bin 0 -> 14527 bytes .../__pycache__/upload.cpython-310.pyc | Bin 0 -> 5400 bytes .../setuptools/_distutils/command/bdist.py | 143 + .../_distutils/command/bdist_dumb.py | 123 + .../_distutils/command/bdist_msi.py | 749 ++ .../_distutils/command/bdist_rpm.py | 579 ++ .../_distutils/command/bdist_wininst.py | 377 + .../setuptools/_distutils/command/build.py | 157 + .../_distutils/command/build_clib.py | 209 + .../_distutils/command/build_ext.py | 757 ++ .../setuptools/_distutils/command/build_py.py | 416 + .../_distutils/command/build_scripts.py | 160 + .../setuptools/_distutils/command/check.py | 148 + .../setuptools/_distutils/command/clean.py | 76 + .../setuptools/_distutils/command/config.py | 344 + .../setuptools/_distutils/command/install.py | 677 ++ .../_distutils/command/install_data.py | 79 + .../_distutils/command/install_egg_info.py | 77 + .../_distutils/command/install_headers.py | 47 + .../_distutils/command/install_lib.py | 217 + .../_distutils/command/install_scripts.py | 60 + .../_distutils/command/py37compat.py | 30 + .../setuptools/_distutils/command/register.py | 304 + .../setuptools/_distutils/command/sdist.py | 494 + .../setuptools/_distutils/command/upload.py | 214 + .../setuptools/_distutils/config.py | 130 + .../setuptools/_distutils/core.py | 234 + .../setuptools/_distutils/cygwinccompiler.py | 414 + .../setuptools/_distutils/debug.py | 5 + .../setuptools/_distutils/dep_util.py | 92 + .../setuptools/_distutils/dir_util.py | 210 + .../setuptools/_distutils/dist.py | 1257 +++ .../setuptools/_distutils/errors.py | 97 + .../setuptools/_distutils/extension.py | 240 + .../setuptools/_distutils/fancy_getopt.py | 457 + .../setuptools/_distutils/file_util.py | 238 + .../setuptools/_distutils/filelist.py | 355 + .../setuptools/_distutils/log.py | 77 + .../setuptools/_distutils/msvc9compiler.py | 788 ++ .../setuptools/_distutils/msvccompiler.py | 643 ++ .../setuptools/_distutils/py35compat.py | 19 + .../setuptools/_distutils/py38compat.py | 7 + .../setuptools/_distutils/spawn.py | 106 + .../setuptools/_distutils/sysconfig.py | 573 ++ .../setuptools/_distutils/text_file.py | 286 + .../setuptools/_distutils/unixccompiler.py | 332 + .../setuptools/_distutils/util.py | 616 ++ .../setuptools/_distutils/version.py | 347 + .../setuptools/_distutils/versionpredicate.py | 166 + Scripts/Lib/site-packages/setuptools/_imp.py | 82 + .../setuptools/_vendor/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 211 bytes .../__pycache__/ordered_set.cpython-310.pyc | Bin 0 -> 16364 bytes .../__pycache__/pyparsing.cpython-310.pyc | Bin 0 -> 199032 bytes .../_vendor/more_itertools/__init__.py | 4 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 292 bytes .../__pycache__/more.cpython-310.pyc | Bin 0 -> 110050 bytes .../__pycache__/recipes.cpython-310.pyc | Bin 0 -> 18014 bytes .../setuptools/_vendor/more_itertools/more.py | 3825 ++++++++ .../_vendor/more_itertools/recipes.py | 620 ++ .../setuptools/_vendor/ordered_set.py | 488 + .../setuptools/_vendor/packaging/__about__.py | 27 + .../setuptools/_vendor/packaging/__init__.py | 26 + .../__pycache__/__about__.cpython-310.pyc | Bin 0 -> 727 bytes .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 573 bytes .../__pycache__/_compat.cpython-310.pyc | Bin 0 -> 1174 bytes .../__pycache__/_structures.cpython-310.pyc | Bin 0 -> 2717 bytes .../__pycache__/_typing.cpython-310.pyc | Bin 0 -> 1529 bytes .../__pycache__/markers.cpython-310.pyc | Bin 0 -> 9211 bytes .../__pycache__/requirements.cpython-310.pyc | Bin 0 -> 4116 bytes .../__pycache__/specifiers.cpython-310.pyc | Bin 0 -> 20480 bytes .../__pycache__/tags.cpython-310.pyc | Bin 0 -> 17359 bytes .../__pycache__/utils.cpython-310.pyc | Bin 0 -> 1664 bytes .../__pycache__/version.cpython-310.pyc | Bin 0 -> 13045 bytes .../setuptools/_vendor/packaging/_compat.py | 38 + .../_vendor/packaging/_structures.py | 86 + .../setuptools/_vendor/packaging/_typing.py | 48 + .../setuptools/_vendor/packaging/markers.py | 328 + .../_vendor/packaging/requirements.py | 145 + .../_vendor/packaging/specifiers.py | 863 ++ .../setuptools/_vendor/packaging/tags.py | 751 ++ .../setuptools/_vendor/packaging/utils.py | 65 + .../setuptools/_vendor/packaging/version.py | 535 ++ .../setuptools/_vendor/pyparsing.py | 5742 +++++++++++ .../site-packages/setuptools/archive_util.py | 205 + .../site-packages/setuptools/build_meta.py | 281 + .../Lib/site-packages/setuptools/cli-32.exe | Bin 0 -> 65536 bytes .../Lib/site-packages/setuptools/cli-64.exe | Bin 0 -> 74752 bytes Scripts/Lib/site-packages/setuptools/cli.exe | Bin 0 -> 65536 bytes .../setuptools/command/__init__.py | 8 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 400 bytes .../command/__pycache__/alias.cpython-310.pyc | Bin 0 -> 2403 bytes .../__pycache__/bdist_egg.cpython-310.pyc | Bin 0 -> 13130 bytes .../__pycache__/bdist_rpm.cpython-310.pyc | Bin 0 -> 1388 bytes .../__pycache__/build_clib.cpython-310.pyc | Bin 0 -> 2491 bytes .../__pycache__/build_ext.cpython-310.pyc | Bin 0 -> 9918 bytes .../__pycache__/build_py.cpython-310.pyc | Bin 0 -> 8478 bytes .../__pycache__/develop.cpython-310.pyc | Bin 0 -> 6494 bytes .../__pycache__/dist_info.cpython-310.pyc | Bin 0 -> 1420 bytes .../__pycache__/easy_install.cpython-310.pyc | Bin 0 -> 63728 bytes .../__pycache__/egg_info.cpython-310.pyc | Bin 0 -> 22056 bytes .../__pycache__/install.cpython-310.pyc | Bin 0 -> 4077 bytes .../install_egg_info.cpython-310.pyc | Bin 0 -> 2454 bytes .../__pycache__/install_lib.cpython-310.pyc | Bin 0 -> 4200 bytes .../install_scripts.cpython-310.pyc | Bin 0 -> 2455 bytes .../__pycache__/py36compat.cpython-310.pyc | Bin 0 -> 4563 bytes .../__pycache__/register.cpython-310.pyc | Bin 0 -> 866 bytes .../__pycache__/rotate.cpython-310.pyc | Bin 0 -> 2533 bytes .../__pycache__/saveopts.cpython-310.pyc | Bin 0 -> 952 bytes .../command/__pycache__/sdist.cpython-310.pyc | Bin 0 -> 6554 bytes .../__pycache__/setopt.cpython-310.pyc | Bin 0 -> 4574 bytes .../command/__pycache__/test.cpython-310.pyc | Bin 0 -> 8651 bytes .../__pycache__/upload.cpython-310.pyc | Bin 0 -> 839 bytes .../__pycache__/upload_docs.cpython-310.pyc | Bin 0 -> 6209 bytes .../site-packages/setuptools/command/alias.py | 78 + .../setuptools/command/bdist_egg.py | 456 + .../setuptools/command/bdist_rpm.py | 31 + .../setuptools/command/build_clib.py | 101 + .../setuptools/command/build_ext.py | 328 + .../setuptools/command/build_py.py | 252 + .../setuptools/command/develop.py | 216 + .../setuptools/command/dist_info.py | 36 + .../setuptools/command/easy_install.py | 2290 +++++ .../setuptools/command/egg_info.py | 734 ++ .../setuptools/command/install.py | 125 + .../setuptools/command/install_egg_info.py | 62 + .../setuptools/command/install_lib.py | 122 + .../setuptools/command/install_scripts.py | 69 + .../setuptools/command/launcher manifest.xml | 15 + .../setuptools/command/py36compat.py | 134 + .../setuptools/command/register.py | 18 + .../setuptools/command/rotate.py | 64 + .../setuptools/command/saveopts.py | 22 + .../site-packages/setuptools/command/sdist.py | 189 + .../setuptools/command/setopt.py | 148 + .../site-packages/setuptools/command/test.py | 274 + .../setuptools/command/upload.py | 17 + .../setuptools/command/upload_docs.py | 202 + .../Lib/site-packages/setuptools/config.py | 715 ++ .../Lib/site-packages/setuptools/dep_util.py | 25 + .../Lib/site-packages/setuptools/depends.py | 175 + Scripts/Lib/site-packages/setuptools/dist.py | 1121 +++ .../Lib/site-packages/setuptools/errors.py | 16 + .../Lib/site-packages/setuptools/extension.py | 55 + .../setuptools/extern/__init__.py | 73 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 2962 bytes Scripts/Lib/site-packages/setuptools/glob.py | 167 + .../Lib/site-packages/setuptools/gui-32.exe | Bin 0 -> 65536 bytes .../Lib/site-packages/setuptools/gui-64.exe | Bin 0 -> 75264 bytes Scripts/Lib/site-packages/setuptools/gui.exe | Bin 0 -> 65536 bytes .../Lib/site-packages/setuptools/installer.py | 97 + .../Lib/site-packages/setuptools/launch.py | 36 + .../site-packages/setuptools/lib2to3_ex.py | 68 + .../Lib/site-packages/setuptools/monkey.py | 177 + Scripts/Lib/site-packages/setuptools/msvc.py | 1805 ++++ .../site-packages/setuptools/namespaces.py | 107 + .../site-packages/setuptools/package_index.py | 1119 +++ .../site-packages/setuptools/py34compat.py | 13 + .../Lib/site-packages/setuptools/sandbox.py | 496 + .../setuptools/script (dev).tmpl | 6 + .../Lib/site-packages/setuptools/script.tmpl | 3 + .../site-packages/setuptools/unicode_utils.py | 42 + .../Lib/site-packages/setuptools/version.py | 6 + Scripts/Lib/site-packages/setuptools/wheel.py | 213 + .../setuptools/windows_support.py | 29 + Scripts/README_CONVERTER.md | 263 + Scripts/Scripts/Activate.ps1 | 405 + Scripts/Scripts/activate | 69 + Scripts/Scripts/activate.bat | 34 + Scripts/Scripts/deactivate.bat | 22 + Scripts/Scripts/markdown-it.exe | Bin 0 -> 106400 bytes Scripts/Scripts/pip.exe | Bin 0 -> 106401 bytes Scripts/Scripts/pip3.10.exe | Bin 0 -> 106401 bytes Scripts/Scripts/pip3.exe | Bin 0 -> 106401 bytes Scripts/Scripts/pygmentize.exe | Bin 0 -> 106395 bytes Scripts/Scripts/python.exe | Bin 0 -> 242920 bytes Scripts/Scripts/pythonw.exe | Bin 0 -> 232688 bytes Scripts/export-2d-tracks-from-3de-to-nuke.py | 169 + Scripts/pyvenv.cfg | 3 + Scripts/requirements.txt | 1 + 2113 files changed, 372008 insertions(+), 12 deletions(-) create mode 100644 Scripts/.gitignore create mode 100644 Scripts/3de-to-nuke-converter.py create mode 100644 Scripts/Lib/site-packages/_distutils_hack/__init__.py create mode 100644 Scripts/Lib/site-packages/_distutils_hack/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/_distutils_hack/__pycache__/override.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/_distutils_hack/override.py create mode 100644 Scripts/Lib/site-packages/distutils-precedence.pth create mode 100644 Scripts/Lib/site-packages/markdown_it/__init__.py create mode 100644 Scripts/Lib/site-packages/markdown_it/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/markdown_it/__pycache__/_compat.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/markdown_it/__pycache__/_punycode.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/markdown_it/__pycache__/main.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/markdown_it/__pycache__/parser_block.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/markdown_it/__pycache__/parser_core.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/markdown_it/__pycache__/parser_inline.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/markdown_it/__pycache__/renderer.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/markdown_it/__pycache__/ruler.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/markdown_it/__pycache__/token.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/markdown_it/__pycache__/tree.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/markdown_it/__pycache__/utils.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/markdown_it/_compat.py create mode 100644 Scripts/Lib/site-packages/markdown_it/_punycode.py create mode 100644 Scripts/Lib/site-packages/markdown_it/cli/__init__.py create mode 100644 Scripts/Lib/site-packages/markdown_it/cli/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/markdown_it/cli/__pycache__/parse.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/markdown_it/cli/parse.py create mode 100644 Scripts/Lib/site-packages/markdown_it/common/__init__.py create mode 100644 Scripts/Lib/site-packages/markdown_it/common/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/markdown_it/common/__pycache__/entities.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/markdown_it/common/__pycache__/html_blocks.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/markdown_it/common/__pycache__/html_re.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/markdown_it/common/__pycache__/normalize_url.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/markdown_it/common/__pycache__/utils.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/markdown_it/common/entities.py create mode 100644 Scripts/Lib/site-packages/markdown_it/common/html_blocks.py create mode 100644 Scripts/Lib/site-packages/markdown_it/common/html_re.py create mode 100644 Scripts/Lib/site-packages/markdown_it/common/normalize_url.py create mode 100644 Scripts/Lib/site-packages/markdown_it/common/utils.py create mode 100644 Scripts/Lib/site-packages/markdown_it/helpers/__init__.py create mode 100644 Scripts/Lib/site-packages/markdown_it/helpers/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/markdown_it/helpers/__pycache__/parse_link_destination.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/markdown_it/helpers/__pycache__/parse_link_label.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/markdown_it/helpers/__pycache__/parse_link_title.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/markdown_it/helpers/parse_link_destination.py create mode 100644 Scripts/Lib/site-packages/markdown_it/helpers/parse_link_label.py create mode 100644 Scripts/Lib/site-packages/markdown_it/helpers/parse_link_title.py create mode 100644 Scripts/Lib/site-packages/markdown_it/main.py create mode 100644 Scripts/Lib/site-packages/markdown_it/parser_block.py create mode 100644 Scripts/Lib/site-packages/markdown_it/parser_core.py create mode 100644 Scripts/Lib/site-packages/markdown_it/parser_inline.py create mode 100644 Scripts/Lib/site-packages/markdown_it/port.yaml create mode 100644 Scripts/Lib/site-packages/markdown_it/presets/__init__.py create mode 100644 Scripts/Lib/site-packages/markdown_it/presets/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/markdown_it/presets/__pycache__/commonmark.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/markdown_it/presets/__pycache__/default.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/markdown_it/presets/__pycache__/zero.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/markdown_it/presets/commonmark.py create mode 100644 Scripts/Lib/site-packages/markdown_it/presets/default.py create mode 100644 Scripts/Lib/site-packages/markdown_it/presets/zero.py create mode 100644 Scripts/Lib/site-packages/markdown_it/py.typed create mode 100644 Scripts/Lib/site-packages/markdown_it/renderer.py create mode 100644 Scripts/Lib/site-packages/markdown_it/ruler.py create mode 100644 Scripts/Lib/site-packages/markdown_it/rules_block/__init__.py create mode 100644 Scripts/Lib/site-packages/markdown_it/rules_block/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/markdown_it/rules_block/__pycache__/blockquote.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/markdown_it/rules_block/__pycache__/code.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/markdown_it/rules_block/__pycache__/fence.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/markdown_it/rules_block/__pycache__/heading.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/markdown_it/rules_block/__pycache__/hr.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/markdown_it/rules_block/__pycache__/html_block.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/markdown_it/rules_block/__pycache__/lheading.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/markdown_it/rules_block/__pycache__/list.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/markdown_it/rules_block/__pycache__/paragraph.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/markdown_it/rules_block/__pycache__/reference.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/markdown_it/rules_block/__pycache__/state_block.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/markdown_it/rules_block/__pycache__/table.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/markdown_it/rules_block/blockquote.py create mode 100644 Scripts/Lib/site-packages/markdown_it/rules_block/code.py create mode 100644 Scripts/Lib/site-packages/markdown_it/rules_block/fence.py create mode 100644 Scripts/Lib/site-packages/markdown_it/rules_block/heading.py create mode 100644 Scripts/Lib/site-packages/markdown_it/rules_block/hr.py create mode 100644 Scripts/Lib/site-packages/markdown_it/rules_block/html_block.py create mode 100644 Scripts/Lib/site-packages/markdown_it/rules_block/lheading.py create mode 100644 Scripts/Lib/site-packages/markdown_it/rules_block/list.py create mode 100644 Scripts/Lib/site-packages/markdown_it/rules_block/paragraph.py create mode 100644 Scripts/Lib/site-packages/markdown_it/rules_block/reference.py create mode 100644 Scripts/Lib/site-packages/markdown_it/rules_block/state_block.py create mode 100644 Scripts/Lib/site-packages/markdown_it/rules_block/table.py create mode 100644 Scripts/Lib/site-packages/markdown_it/rules_core/__init__.py create mode 100644 Scripts/Lib/site-packages/markdown_it/rules_core/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/markdown_it/rules_core/__pycache__/block.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/markdown_it/rules_core/__pycache__/inline.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/markdown_it/rules_core/__pycache__/linkify.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/markdown_it/rules_core/__pycache__/normalize.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/markdown_it/rules_core/__pycache__/replacements.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/markdown_it/rules_core/__pycache__/smartquotes.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/markdown_it/rules_core/__pycache__/state_core.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/markdown_it/rules_core/__pycache__/text_join.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/markdown_it/rules_core/block.py create mode 100644 Scripts/Lib/site-packages/markdown_it/rules_core/inline.py create mode 100644 Scripts/Lib/site-packages/markdown_it/rules_core/linkify.py create mode 100644 Scripts/Lib/site-packages/markdown_it/rules_core/normalize.py create mode 100644 Scripts/Lib/site-packages/markdown_it/rules_core/replacements.py create mode 100644 Scripts/Lib/site-packages/markdown_it/rules_core/smartquotes.py create mode 100644 Scripts/Lib/site-packages/markdown_it/rules_core/state_core.py create mode 100644 Scripts/Lib/site-packages/markdown_it/rules_core/text_join.py create mode 100644 Scripts/Lib/site-packages/markdown_it/rules_inline/__init__.py create mode 100644 Scripts/Lib/site-packages/markdown_it/rules_inline/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/markdown_it/rules_inline/__pycache__/autolink.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/markdown_it/rules_inline/__pycache__/backticks.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/markdown_it/rules_inline/__pycache__/balance_pairs.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/markdown_it/rules_inline/__pycache__/emphasis.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/markdown_it/rules_inline/__pycache__/entity.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/markdown_it/rules_inline/__pycache__/escape.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/markdown_it/rules_inline/__pycache__/fragments_join.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/markdown_it/rules_inline/__pycache__/html_inline.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/markdown_it/rules_inline/__pycache__/image.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/markdown_it/rules_inline/__pycache__/link.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/markdown_it/rules_inline/__pycache__/linkify.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/markdown_it/rules_inline/__pycache__/newline.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/markdown_it/rules_inline/__pycache__/state_inline.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/markdown_it/rules_inline/__pycache__/strikethrough.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/markdown_it/rules_inline/__pycache__/text.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/markdown_it/rules_inline/autolink.py create mode 100644 Scripts/Lib/site-packages/markdown_it/rules_inline/backticks.py create mode 100644 Scripts/Lib/site-packages/markdown_it/rules_inline/balance_pairs.py create mode 100644 Scripts/Lib/site-packages/markdown_it/rules_inline/emphasis.py create mode 100644 Scripts/Lib/site-packages/markdown_it/rules_inline/entity.py create mode 100644 Scripts/Lib/site-packages/markdown_it/rules_inline/escape.py create mode 100644 Scripts/Lib/site-packages/markdown_it/rules_inline/fragments_join.py create mode 100644 Scripts/Lib/site-packages/markdown_it/rules_inline/html_inline.py create mode 100644 Scripts/Lib/site-packages/markdown_it/rules_inline/image.py create mode 100644 Scripts/Lib/site-packages/markdown_it/rules_inline/link.py create mode 100644 Scripts/Lib/site-packages/markdown_it/rules_inline/linkify.py create mode 100644 Scripts/Lib/site-packages/markdown_it/rules_inline/newline.py create mode 100644 Scripts/Lib/site-packages/markdown_it/rules_inline/state_inline.py create mode 100644 Scripts/Lib/site-packages/markdown_it/rules_inline/strikethrough.py create mode 100644 Scripts/Lib/site-packages/markdown_it/rules_inline/text.py create mode 100644 Scripts/Lib/site-packages/markdown_it/token.py create mode 100644 Scripts/Lib/site-packages/markdown_it/tree.py create mode 100644 Scripts/Lib/site-packages/markdown_it/utils.py create mode 100644 Scripts/Lib/site-packages/markdown_it_py-4.0.0.dist-info/INSTALLER create mode 100644 Scripts/Lib/site-packages/markdown_it_py-4.0.0.dist-info/METADATA create mode 100644 Scripts/Lib/site-packages/markdown_it_py-4.0.0.dist-info/RECORD create mode 100644 Scripts/Lib/site-packages/markdown_it_py-4.0.0.dist-info/WHEEL create mode 100644 Scripts/Lib/site-packages/markdown_it_py-4.0.0.dist-info/entry_points.txt create mode 100644 Scripts/Lib/site-packages/markdown_it_py-4.0.0.dist-info/licenses/LICENSE create mode 100644 Scripts/Lib/site-packages/markdown_it_py-4.0.0.dist-info/licenses/LICENSE.markdown-it create mode 100644 Scripts/Lib/site-packages/mdurl-0.1.2.dist-info/INSTALLER create mode 100644 Scripts/Lib/site-packages/mdurl-0.1.2.dist-info/LICENSE create mode 100644 Scripts/Lib/site-packages/mdurl-0.1.2.dist-info/METADATA create mode 100644 Scripts/Lib/site-packages/mdurl-0.1.2.dist-info/RECORD create mode 100644 Scripts/Lib/site-packages/mdurl-0.1.2.dist-info/WHEEL create mode 100644 Scripts/Lib/site-packages/mdurl/__init__.py create mode 100644 Scripts/Lib/site-packages/mdurl/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/mdurl/__pycache__/_decode.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/mdurl/__pycache__/_encode.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/mdurl/__pycache__/_format.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/mdurl/__pycache__/_parse.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/mdurl/__pycache__/_url.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/mdurl/_decode.py create mode 100644 Scripts/Lib/site-packages/mdurl/_encode.py create mode 100644 Scripts/Lib/site-packages/mdurl/_format.py create mode 100644 Scripts/Lib/site-packages/mdurl/_parse.py create mode 100644 Scripts/Lib/site-packages/mdurl/_url.py create mode 100644 Scripts/Lib/site-packages/mdurl/py.typed create mode 100644 Scripts/Lib/site-packages/pip-21.2.3.dist-info/INSTALLER create mode 100644 Scripts/Lib/site-packages/pip-21.2.3.dist-info/LICENSE.txt create mode 100644 Scripts/Lib/site-packages/pip-21.2.3.dist-info/METADATA create mode 100644 Scripts/Lib/site-packages/pip-21.2.3.dist-info/RECORD create mode 100644 Scripts/Lib/site-packages/pip-21.2.3.dist-info/REQUESTED create mode 100644 Scripts/Lib/site-packages/pip-21.2.3.dist-info/WHEEL create mode 100644 Scripts/Lib/site-packages/pip-21.2.3.dist-info/entry_points.txt create mode 100644 Scripts/Lib/site-packages/pip-21.2.3.dist-info/top_level.txt create mode 100644 Scripts/Lib/site-packages/pip/__init__.py create mode 100644 Scripts/Lib/site-packages/pip/__main__.py create mode 100644 Scripts/Lib/site-packages/pip/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/__pycache__/__main__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/__init__.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/__pycache__/build_env.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/__pycache__/cache.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/__pycache__/configuration.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/__pycache__/exceptions.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/__pycache__/main.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/__pycache__/pyproject.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/build_env.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/cache.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/cli/__init__.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/cli/__pycache__/main.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/cli/__pycache__/parser.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/cli/autocompletion.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/cli/base_command.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/cli/cmdoptions.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/cli/command_context.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/cli/main.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/cli/main_parser.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/cli/parser.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/cli/progress_bars.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/cli/req_command.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/cli/spinners.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/cli/status_codes.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/commands/__init__.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/commands/__pycache__/cache.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/commands/__pycache__/check.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/commands/__pycache__/completion.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/commands/__pycache__/debug.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/commands/__pycache__/download.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/commands/__pycache__/hash.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/commands/__pycache__/help.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/commands/__pycache__/index.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/commands/__pycache__/install.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/commands/__pycache__/list.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/commands/__pycache__/search.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/commands/__pycache__/show.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/commands/cache.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/commands/check.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/commands/completion.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/commands/configuration.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/commands/debug.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/commands/download.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/commands/freeze.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/commands/hash.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/commands/help.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/commands/index.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/commands/install.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/commands/list.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/commands/search.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/commands/show.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/commands/uninstall.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/commands/wheel.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/configuration.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/distributions/__init__.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/distributions/__pycache__/base.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/distributions/base.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/distributions/installed.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/distributions/sdist.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/distributions/wheel.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/exceptions.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/index/__init__.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/index/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/index/__pycache__/collector.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/index/__pycache__/sources.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/index/collector.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/index/package_finder.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/index/sources.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/locations/__init__.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/locations/__pycache__/base.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/locations/_distutils.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/locations/_sysconfig.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/locations/base.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/main.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/metadata/__init__.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/metadata/__pycache__/base.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/metadata/base.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/metadata/pkg_resources.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/models/__init__.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/models/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/models/__pycache__/candidate.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/models/__pycache__/format_control.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/models/__pycache__/index.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/models/__pycache__/link.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/models/__pycache__/scheme.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/models/__pycache__/target_python.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/models/__pycache__/wheel.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/models/candidate.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/models/direct_url.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/models/format_control.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/models/index.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/models/link.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/models/scheme.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/models/search_scope.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/models/selection_prefs.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/models/target_python.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/models/wheel.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/network/__init__.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/network/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/network/__pycache__/auth.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/network/__pycache__/cache.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/network/__pycache__/download.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/network/__pycache__/session.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/network/__pycache__/utils.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/network/auth.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/network/cache.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/network/download.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/network/lazy_wheel.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/network/session.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/network/utils.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/network/xmlrpc.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/operations/__init__.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/operations/__pycache__/check.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/operations/build/__init__.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/operations/build/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata_legacy.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/operations/build/metadata.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/operations/build/metadata_legacy.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/operations/build/wheel.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/operations/build/wheel_legacy.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/operations/check.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/operations/freeze.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/operations/install/__init__.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/operations/install/__pycache__/editable_legacy.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/operations/install/__pycache__/legacy.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/operations/install/editable_legacy.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/operations/install/legacy.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/operations/install/wheel.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/operations/prepare.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/pyproject.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/req/__init__.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/req/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/req/__pycache__/constructors.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/req/__pycache__/req_file.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/req/__pycache__/req_install.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/req/__pycache__/req_set.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/req/__pycache__/req_tracker.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/req/constructors.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/req/req_file.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/req/req_install.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/req/req_set.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/req/req_tracker.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/req/req_uninstall.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/resolution/__init__.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/resolution/__pycache__/base.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/resolution/base.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/resolution/legacy/__init__.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/resolution/legacy/resolver.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/resolution/resolvelib/__init__.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/resolution/resolvelib/base.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/resolution/resolvelib/candidates.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/resolution/resolvelib/factory.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/resolution/resolvelib/provider.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/resolution/resolvelib/reporter.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/resolution/resolvelib/requirements.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/resolution/resolvelib/resolver.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/self_outdated_check.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/utils/__init__.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/utils/__pycache__/_log.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/utils/__pycache__/compat.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/utils/__pycache__/distutils_args.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/utils/__pycache__/inject_securetransport.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/utils/__pycache__/logging.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/utils/__pycache__/misc.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/utils/__pycache__/models.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/utils/__pycache__/parallel.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/utils/__pycache__/pkg_resources.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/utils/__pycache__/urls.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/utils/_log.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/utils/appdirs.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/utils/compat.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/utils/compatibility_tags.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/utils/datetime.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/utils/deprecation.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/utils/direct_url_helpers.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/utils/distutils_args.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/utils/encoding.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/utils/entrypoints.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/utils/filesystem.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/utils/filetypes.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/utils/glibc.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/utils/hashes.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/utils/inject_securetransport.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/utils/logging.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/utils/misc.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/utils/models.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/utils/packaging.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/utils/parallel.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/utils/pkg_resources.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/utils/setuptools_build.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/utils/subprocess.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/utils/temp_dir.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/utils/unpacking.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/utils/urls.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/utils/virtualenv.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/utils/wheel.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/vcs/__init__.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/vcs/__pycache__/git.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_internal/vcs/bazaar.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/vcs/git.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/vcs/mercurial.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/vcs/subversion.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/vcs/versioncontrol.py create mode 100644 Scripts/Lib/site-packages/pip/_internal/wheel_builder.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/__init__.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/__pycache__/appdirs.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/__pycache__/distro.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/__pycache__/pyparsing.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/__pycache__/six.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/appdirs.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/cachecontrol/__init__.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/compat.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/cachecontrol/_cmd.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/cachecontrol/adapter.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/cachecontrol/cache.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/cachecontrol/caches/__init__.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/cachecontrol/compat.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/cachecontrol/controller.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/cachecontrol/filewrapper.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/cachecontrol/heuristics.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/cachecontrol/serialize.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/cachecontrol/wrapper.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/certifi/__init__.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/certifi/__main__.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/certifi/cacert.pem create mode 100644 Scripts/Lib/site-packages/pip/_vendor/certifi/core.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/__init__.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/big5freq.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/big5prober.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/chardistribution.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/charsetprober.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachine.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/compat.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/cp949prober.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/enums.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/escprober.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/escsm.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/eucjpprober.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/euckrfreq.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/euckrprober.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/euctwfreq.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/euctwprober.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/gb2312freq.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/gb2312prober.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/hebrewprober.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/jisfreq.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/jpcntx.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/langbulgarianmodel.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/langgreekmodel.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/langhungarianmodel.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/langrussianmodel.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/langthaimodel.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/langturkishmodel.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/latin1prober.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcharsetprober.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcssm.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/sbcharsetprober.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/sbcsgroupprober.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/sjisprober.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/universaldetector.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/utf8prober.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/version.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/big5freq.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/big5prober.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/chardistribution.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/charsetgroupprober.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/charsetprober.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/cli/__init__.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/cli/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/cli/__pycache__/chardetect.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/cli/chardetect.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/codingstatemachine.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/compat.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/cp949prober.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/enums.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/escprober.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/escsm.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/eucjpprober.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/euckrfreq.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/euckrprober.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/euctwfreq.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/euctwprober.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/gb2312freq.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/gb2312prober.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/hebrewprober.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/jisfreq.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/jpcntx.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/langbulgarianmodel.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/langgreekmodel.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/langhebrewmodel.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/langhungarianmodel.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/langrussianmodel.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/langthaimodel.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/langturkishmodel.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/latin1prober.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/mbcharsetprober.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/mbcsgroupprober.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/mbcssm.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/metadata/__init__.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/metadata/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/metadata/__pycache__/languages.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/metadata/languages.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/sbcharsetprober.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/sbcsgroupprober.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/sjisprober.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/universaldetector.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/utf8prober.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/chardet/version.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/colorama/__init__.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/colorama/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/colorama/__pycache__/ansi.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/colorama/__pycache__/ansitowin32.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/colorama/__pycache__/initialise.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/colorama/__pycache__/win32.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/colorama/__pycache__/winterm.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/colorama/ansi.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/colorama/ansitowin32.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/colorama/initialise.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/colorama/win32.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/colorama/winterm.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/distlib/__init__.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/distlib/__pycache__/locators.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/distlib/_backport/__init__.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/distlib/_backport/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/distlib/_backport/__pycache__/misc.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/distlib/_backport/__pycache__/shutil.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/distlib/_backport/__pycache__/sysconfig.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/distlib/_backport/__pycache__/tarfile.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/distlib/_backport/misc.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/distlib/_backport/shutil.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/distlib/_backport/sysconfig.cfg create mode 100644 Scripts/Lib/site-packages/pip/_vendor/distlib/_backport/sysconfig.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/distlib/_backport/tarfile.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/distlib/compat.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/distlib/database.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/distlib/index.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/distlib/locators.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/distlib/manifest.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/distlib/markers.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/distlib/metadata.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/distlib/resources.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/distlib/scripts.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/distlib/t32.exe create mode 100644 Scripts/Lib/site-packages/pip/_vendor/distlib/t64.exe create mode 100644 Scripts/Lib/site-packages/pip/_vendor/distlib/util.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/distlib/version.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/distlib/w32.exe create mode 100644 Scripts/Lib/site-packages/pip/_vendor/distlib/w64.exe create mode 100644 Scripts/Lib/site-packages/pip/_vendor/distlib/wheel.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/distro.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/html5lib/__init__.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/html5lib/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/html5lib/__pycache__/_ihatexml.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/html5lib/__pycache__/_inputstream.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/html5lib/__pycache__/_tokenizer.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/html5lib/__pycache__/_utils.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/html5lib/__pycache__/constants.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/html5lib/__pycache__/html5parser.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/html5lib/__pycache__/serializer.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/html5lib/_ihatexml.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/html5lib/_inputstream.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/html5lib/_tokenizer.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/html5lib/_trie/__init__.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/html5lib/_trie/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/html5lib/_trie/__pycache__/_base.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/html5lib/_trie/__pycache__/py.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/html5lib/_trie/_base.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/html5lib/_trie/py.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/html5lib/_utils.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/html5lib/constants.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/html5lib/filters/__init__.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/alphabeticalattributes.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/base.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/inject_meta_charset.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/lint.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/optionaltags.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/sanitizer.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/whitespace.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/html5lib/filters/alphabeticalattributes.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/html5lib/filters/base.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/html5lib/filters/inject_meta_charset.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/html5lib/filters/lint.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/html5lib/filters/optionaltags.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/html5lib/filters/sanitizer.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/html5lib/filters/whitespace.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/html5lib/html5parser.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/html5lib/serializer.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/html5lib/treeadapters/__init__.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/html5lib/treeadapters/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/html5lib/treeadapters/__pycache__/genshi.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/html5lib/treeadapters/__pycache__/sax.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/html5lib/treeadapters/genshi.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/html5lib/treeadapters/sax.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/html5lib/treebuilders/__init__.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/base.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/dom.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/etree.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/etree_lxml.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/html5lib/treebuilders/base.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/html5lib/treebuilders/dom.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/html5lib/treebuilders/etree.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/html5lib/treebuilders/etree_lxml.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/html5lib/treewalkers/__init__.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/base.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/dom.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/etree.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/etree_lxml.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/genshi.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/html5lib/treewalkers/base.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/html5lib/treewalkers/dom.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/html5lib/treewalkers/etree.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/html5lib/treewalkers/etree_lxml.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/html5lib/treewalkers/genshi.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/idna/__init__.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/idna/__pycache__/core.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/idna/codec.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/idna/compat.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/idna/core.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/idna/idnadata.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/idna/intranges.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/idna/package_data.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/idna/uts46data.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/msgpack/__init__.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/msgpack/__pycache__/_version.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/msgpack/_version.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/msgpack/exceptions.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/msgpack/ext.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/msgpack/fallback.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/packaging/__about__.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/packaging/__init__.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/packaging/__pycache__/__about__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/packaging/_manylinux.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/packaging/_musllinux.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/packaging/_structures.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/packaging/markers.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/packaging/requirements.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/packaging/specifiers.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/packaging/tags.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/packaging/utils.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/packaging/version.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/pep517/__init__.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/pep517/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/pep517/__pycache__/build.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/pep517/__pycache__/check.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/pep517/__pycache__/colorlog.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/pep517/__pycache__/compat.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/pep517/__pycache__/dirtools.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/pep517/__pycache__/envbuild.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/pep517/__pycache__/meta.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/pep517/__pycache__/wrappers.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/pep517/build.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/pep517/check.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/pep517/colorlog.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/pep517/compat.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/pep517/dirtools.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/pep517/envbuild.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/pep517/in_process/__init__.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/pep517/in_process/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/pep517/in_process/__pycache__/_in_process.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/pep517/in_process/_in_process.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/pep517/meta.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/pep517/wrappers.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/pkg_resources/__init__.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/pkg_resources/__pycache__/py31compat.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/pkg_resources/py31compat.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/progress/__init__.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/progress/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/progress/__pycache__/bar.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/progress/__pycache__/counter.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/progress/__pycache__/spinner.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/progress/bar.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/progress/counter.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/progress/spinner.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/pyparsing.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/requests/__init__.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/requests/__pycache__/_internal_utils.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/requests/__pycache__/api.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/requests/__pycache__/help.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/requests/__pycache__/models.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/requests/__version__.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/requests/_internal_utils.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/requests/adapters.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/requests/api.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/requests/auth.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/requests/certs.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/requests/compat.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/requests/cookies.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/requests/exceptions.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/requests/help.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/requests/hooks.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/requests/models.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/requests/packages.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/requests/sessions.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/requests/status_codes.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/requests/structures.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/requests/utils.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/resolvelib/__init__.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/providers.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/reporters.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/resolvers.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/resolvelib/compat/__init__.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/resolvelib/compat/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/resolvelib/compat/__pycache__/collections_abc.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/resolvelib/providers.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/resolvelib/reporters.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/resolvelib/resolvers.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/resolvelib/structs.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/six.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/tenacity/__init__.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/tenacity/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/tenacity/__pycache__/_asyncio.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/tenacity/__pycache__/_utils.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/tenacity/__pycache__/after.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/tenacity/__pycache__/before.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/tenacity/__pycache__/before_sleep.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/tenacity/__pycache__/nap.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/tenacity/__pycache__/retry.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/tenacity/__pycache__/stop.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/tenacity/__pycache__/tornadoweb.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/tenacity/__pycache__/wait.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/tenacity/_asyncio.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/tenacity/_utils.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/tenacity/after.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/tenacity/before.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/tenacity/before_sleep.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/tenacity/nap.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/tenacity/retry.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/tenacity/stop.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/tenacity/tornadoweb.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/tenacity/wait.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/tomli/__init__.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/tomli/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/tomli/__pycache__/_parser.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/tomli/__pycache__/_re.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/tomli/_parser.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/tomli/_re.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/urllib3/__init__.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/urllib3/__pycache__/_collections.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/urllib3/__pycache__/_version.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connectionpool.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/urllib3/__pycache__/exceptions.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/urllib3/__pycache__/response.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/urllib3/_collections.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/urllib3/_version.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/urllib3/connection.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/urllib3/connectionpool.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/urllib3/contrib/__init__.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/urllib3/contrib/appengine.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/urllib3/contrib/securetransport.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/urllib3/contrib/socks.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/urllib3/exceptions.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/urllib3/fields.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/urllib3/filepost.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/urllib3/packages/__init__.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/six.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/urllib3/packages/six.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/urllib3/packages/ssl_match_hostname/__init__.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/urllib3/packages/ssl_match_hostname/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/urllib3/packages/ssl_match_hostname/__pycache__/_implementation.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/urllib3/packages/ssl_match_hostname/_implementation.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/urllib3/poolmanager.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/urllib3/request.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/urllib3/response.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/urllib3/util/__init__.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/connection.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/proxy.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/queue.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/request.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/response.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/wait.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/urllib3/util/connection.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/urllib3/util/proxy.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/urllib3/util/queue.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/urllib3/util/request.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/urllib3/util/response.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/urllib3/util/retry.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/urllib3/util/ssl_.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/urllib3/util/ssltransport.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/urllib3/util/timeout.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/urllib3/util/url.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/urllib3/util/wait.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/vendor.txt create mode 100644 Scripts/Lib/site-packages/pip/_vendor/webencodings/__init__.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/webencodings/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/webencodings/__pycache__/labels.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/webencodings/__pycache__/mklabels.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/webencodings/__pycache__/tests.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/webencodings/__pycache__/x_user_defined.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pip/_vendor/webencodings/labels.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/webencodings/mklabels.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/webencodings/tests.py create mode 100644 Scripts/Lib/site-packages/pip/_vendor/webencodings/x_user_defined.py create mode 100644 Scripts/Lib/site-packages/pip/py.typed create mode 100644 Scripts/Lib/site-packages/pkg_resources/__init__.py create mode 100644 Scripts/Lib/site-packages/pkg_resources/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pkg_resources/_vendor/__init__.py create mode 100644 Scripts/Lib/site-packages/pkg_resources/_vendor/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pkg_resources/_vendor/__pycache__/appdirs.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pkg_resources/_vendor/__pycache__/pyparsing.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pkg_resources/_vendor/appdirs.py create mode 100644 Scripts/Lib/site-packages/pkg_resources/_vendor/packaging/__about__.py create mode 100644 Scripts/Lib/site-packages/pkg_resources/_vendor/packaging/__init__.py create mode 100644 Scripts/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/__about__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/_compat.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/_structures.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/_typing.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/markers.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/requirements.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/specifiers.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/tags.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/utils.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/version.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pkg_resources/_vendor/packaging/_compat.py create mode 100644 Scripts/Lib/site-packages/pkg_resources/_vendor/packaging/_structures.py create mode 100644 Scripts/Lib/site-packages/pkg_resources/_vendor/packaging/_typing.py create mode 100644 Scripts/Lib/site-packages/pkg_resources/_vendor/packaging/markers.py create mode 100644 Scripts/Lib/site-packages/pkg_resources/_vendor/packaging/requirements.py create mode 100644 Scripts/Lib/site-packages/pkg_resources/_vendor/packaging/specifiers.py create mode 100644 Scripts/Lib/site-packages/pkg_resources/_vendor/packaging/tags.py create mode 100644 Scripts/Lib/site-packages/pkg_resources/_vendor/packaging/utils.py create mode 100644 Scripts/Lib/site-packages/pkg_resources/_vendor/packaging/version.py create mode 100644 Scripts/Lib/site-packages/pkg_resources/_vendor/pyparsing.py create mode 100644 Scripts/Lib/site-packages/pkg_resources/extern/__init__.py create mode 100644 Scripts/Lib/site-packages/pkg_resources/extern/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pkg_resources/tests/data/my-test-package-source/__pycache__/setup.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pkg_resources/tests/data/my-test-package-source/setup.py create mode 100644 Scripts/Lib/site-packages/pygments-2.19.2.dist-info/INSTALLER create mode 100644 Scripts/Lib/site-packages/pygments-2.19.2.dist-info/METADATA create mode 100644 Scripts/Lib/site-packages/pygments-2.19.2.dist-info/RECORD create mode 100644 Scripts/Lib/site-packages/pygments-2.19.2.dist-info/WHEEL create mode 100644 Scripts/Lib/site-packages/pygments-2.19.2.dist-info/entry_points.txt create mode 100644 Scripts/Lib/site-packages/pygments-2.19.2.dist-info/licenses/AUTHORS create mode 100644 Scripts/Lib/site-packages/pygments-2.19.2.dist-info/licenses/LICENSE create mode 100644 Scripts/Lib/site-packages/pygments/__init__.py create mode 100644 Scripts/Lib/site-packages/pygments/__main__.py create mode 100644 Scripts/Lib/site-packages/pygments/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/__pycache__/__main__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/__pycache__/cmdline.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/__pycache__/console.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/__pycache__/filter.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/__pycache__/formatter.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/__pycache__/lexer.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/__pycache__/modeline.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/__pycache__/plugin.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/__pycache__/regexopt.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/__pycache__/scanner.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/__pycache__/sphinxext.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/__pycache__/style.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/__pycache__/token.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/__pycache__/unistring.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/__pycache__/util.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/cmdline.py create mode 100644 Scripts/Lib/site-packages/pygments/console.py create mode 100644 Scripts/Lib/site-packages/pygments/filter.py create mode 100644 Scripts/Lib/site-packages/pygments/filters/__init__.py create mode 100644 Scripts/Lib/site-packages/pygments/filters/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/formatter.py create mode 100644 Scripts/Lib/site-packages/pygments/formatters/__init__.py create mode 100644 Scripts/Lib/site-packages/pygments/formatters/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/formatters/__pycache__/_mapping.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/formatters/__pycache__/bbcode.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/formatters/__pycache__/groff.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/formatters/__pycache__/html.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/formatters/__pycache__/img.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/formatters/__pycache__/irc.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/formatters/__pycache__/latex.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/formatters/__pycache__/other.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/formatters/__pycache__/pangomarkup.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/formatters/__pycache__/rtf.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/formatters/__pycache__/svg.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/formatters/__pycache__/terminal.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/formatters/__pycache__/terminal256.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/formatters/_mapping.py create mode 100644 Scripts/Lib/site-packages/pygments/formatters/bbcode.py create mode 100644 Scripts/Lib/site-packages/pygments/formatters/groff.py create mode 100644 Scripts/Lib/site-packages/pygments/formatters/html.py create mode 100644 Scripts/Lib/site-packages/pygments/formatters/img.py create mode 100644 Scripts/Lib/site-packages/pygments/formatters/irc.py create mode 100644 Scripts/Lib/site-packages/pygments/formatters/latex.py create mode 100644 Scripts/Lib/site-packages/pygments/formatters/other.py create mode 100644 Scripts/Lib/site-packages/pygments/formatters/pangomarkup.py create mode 100644 Scripts/Lib/site-packages/pygments/formatters/rtf.py create mode 100644 Scripts/Lib/site-packages/pygments/formatters/svg.py create mode 100644 Scripts/Lib/site-packages/pygments/formatters/terminal.py create mode 100644 Scripts/Lib/site-packages/pygments/formatters/terminal256.py create mode 100644 Scripts/Lib/site-packages/pygments/lexer.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__init__.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/_ada_builtins.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/_asy_builtins.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/_cl_builtins.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/_cocoa_builtins.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/_csound_builtins.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/_css_builtins.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/_googlesql_builtins.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/_julia_builtins.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/_lasso_builtins.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/_lilypond_builtins.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/_lua_builtins.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/_luau_builtins.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/_mapping.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/_mql_builtins.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/_mysql_builtins.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/_openedge_builtins.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/_php_builtins.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/_postgres_builtins.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/_qlik_builtins.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/_scheme_builtins.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/_scilab_builtins.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/_sourcemod_builtins.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/_sql_builtins.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/_stan_builtins.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/_stata_builtins.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/_tsql_builtins.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/_usd_builtins.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/_vbscript_builtins.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/_vim_builtins.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/actionscript.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/ada.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/agile.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/algebra.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/ambient.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/amdgpu.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/ampl.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/apdlexer.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/apl.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/archetype.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/arrow.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/arturo.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/asc.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/asm.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/asn1.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/automation.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/bare.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/basic.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/bdd.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/berry.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/bibtex.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/blueprint.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/boa.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/bqn.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/business.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/c_cpp.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/c_like.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/capnproto.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/carbon.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/cddl.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/chapel.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/clean.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/codeql.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/comal.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/compiled.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/configs.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/console.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/cplint.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/crystal.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/csound.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/css.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/d.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/dalvik.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/data.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/dax.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/devicetree.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/diff.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/dns.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/dotnet.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/dsls.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/dylan.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/ecl.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/eiffel.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/elm.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/elpi.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/email.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/erlang.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/esoteric.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/ezhil.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/factor.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/fantom.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/felix.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/fift.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/floscript.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/forth.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/fortran.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/foxpro.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/freefem.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/func.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/functional.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/futhark.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/gcodelexer.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/gdscript.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/gleam.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/go.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/grammar_notation.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/graph.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/graphics.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/graphql.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/graphviz.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/gsql.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/hare.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/haskell.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/haxe.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/hdl.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/hexdump.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/html.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/idl.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/igor.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/inferno.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/installers.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/int_fiction.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/iolang.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/j.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/javascript.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/jmespath.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/jslt.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/json5.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/jsonnet.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/jsx.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/julia.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/jvm.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/kuin.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/kusto.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/ldap.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/lean.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/lilypond.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/lisp.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/macaulay2.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/make.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/maple.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/markup.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/math.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/matlab.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/maxima.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/meson.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/mime.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/minecraft.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/mips.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/ml.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/modeling.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/modula2.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/mojo.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/monte.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/mosel.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/ncl.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/nimrod.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/nit.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/nix.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/numbair.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/oberon.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/objective.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/ooc.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/openscad.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/other.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/parasail.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/parsers.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/pascal.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/pawn.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/pddl.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/perl.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/phix.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/php.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/pointless.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/pony.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/praat.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/procfile.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/prolog.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/promql.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/prql.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/ptx.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/python.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/q.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/qlik.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/qvt.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/r.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/rdf.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/rebol.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/rego.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/resource.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/ride.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/rita.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/rnc.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/roboconf.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/robotframework.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/ruby.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/rust.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/sas.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/savi.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/scdoc.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/scripting.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/sgf.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/shell.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/sieve.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/slash.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/smalltalk.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/smithy.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/smv.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/snobol.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/solidity.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/soong.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/sophia.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/special.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/spice.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/sql.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/srcinfo.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/stata.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/supercollider.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/tablegen.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/tact.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/tal.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/tcl.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/teal.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/templates.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/teraterm.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/testing.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/text.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/textedit.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/textfmts.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/theorem.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/thingsdb.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/tlb.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/tls.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/tnt.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/trafficscript.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/typoscript.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/typst.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/ul4.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/unicon.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/urbi.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/usd.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/varnish.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/verification.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/verifpal.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/vip.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/vyper.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/web.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/webassembly.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/webidl.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/webmisc.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/wgsl.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/whiley.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/wowtoc.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/wren.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/x10.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/xorg.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/yang.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/yara.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/__pycache__/zig.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/lexers/_ada_builtins.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/_asy_builtins.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/_cl_builtins.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/_cocoa_builtins.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/_csound_builtins.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/_css_builtins.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/_googlesql_builtins.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/_julia_builtins.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/_lasso_builtins.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/_lilypond_builtins.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/_lua_builtins.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/_luau_builtins.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/_mapping.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/_mql_builtins.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/_mysql_builtins.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/_openedge_builtins.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/_php_builtins.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/_postgres_builtins.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/_qlik_builtins.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/_scheme_builtins.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/_scilab_builtins.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/_sourcemod_builtins.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/_sql_builtins.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/_stan_builtins.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/_stata_builtins.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/_tsql_builtins.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/_usd_builtins.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/_vbscript_builtins.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/_vim_builtins.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/actionscript.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/ada.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/agile.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/algebra.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/ambient.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/amdgpu.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/ampl.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/apdlexer.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/apl.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/archetype.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/arrow.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/arturo.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/asc.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/asm.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/asn1.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/automation.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/bare.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/basic.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/bdd.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/berry.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/bibtex.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/blueprint.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/boa.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/bqn.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/business.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/c_cpp.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/c_like.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/capnproto.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/carbon.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/cddl.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/chapel.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/clean.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/codeql.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/comal.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/compiled.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/configs.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/console.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/cplint.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/crystal.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/csound.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/css.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/d.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/dalvik.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/data.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/dax.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/devicetree.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/diff.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/dns.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/dotnet.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/dsls.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/dylan.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/ecl.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/eiffel.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/elm.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/elpi.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/email.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/erlang.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/esoteric.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/ezhil.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/factor.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/fantom.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/felix.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/fift.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/floscript.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/forth.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/fortran.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/foxpro.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/freefem.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/func.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/functional.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/futhark.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/gcodelexer.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/gdscript.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/gleam.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/go.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/grammar_notation.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/graph.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/graphics.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/graphql.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/graphviz.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/gsql.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/hare.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/haskell.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/haxe.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/hdl.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/hexdump.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/html.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/idl.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/igor.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/inferno.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/installers.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/int_fiction.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/iolang.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/j.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/javascript.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/jmespath.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/jslt.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/json5.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/jsonnet.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/jsx.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/julia.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/jvm.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/kuin.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/kusto.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/ldap.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/lean.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/lilypond.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/lisp.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/macaulay2.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/make.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/maple.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/markup.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/math.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/matlab.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/maxima.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/meson.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/mime.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/minecraft.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/mips.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/ml.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/modeling.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/modula2.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/mojo.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/monte.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/mosel.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/ncl.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/nimrod.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/nit.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/nix.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/numbair.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/oberon.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/objective.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/ooc.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/openscad.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/other.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/parasail.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/parsers.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/pascal.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/pawn.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/pddl.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/perl.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/phix.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/php.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/pointless.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/pony.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/praat.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/procfile.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/prolog.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/promql.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/prql.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/ptx.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/python.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/q.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/qlik.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/qvt.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/r.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/rdf.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/rebol.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/rego.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/resource.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/ride.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/rita.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/rnc.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/roboconf.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/robotframework.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/ruby.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/rust.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/sas.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/savi.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/scdoc.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/scripting.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/sgf.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/shell.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/sieve.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/slash.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/smalltalk.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/smithy.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/smv.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/snobol.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/solidity.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/soong.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/sophia.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/special.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/spice.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/sql.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/srcinfo.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/stata.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/supercollider.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/tablegen.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/tact.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/tal.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/tcl.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/teal.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/templates.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/teraterm.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/testing.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/text.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/textedit.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/textfmts.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/theorem.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/thingsdb.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/tlb.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/tls.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/tnt.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/trafficscript.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/typoscript.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/typst.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/ul4.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/unicon.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/urbi.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/usd.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/varnish.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/verification.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/verifpal.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/vip.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/vyper.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/web.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/webassembly.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/webidl.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/webmisc.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/wgsl.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/whiley.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/wowtoc.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/wren.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/x10.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/xorg.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/yang.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/yara.py create mode 100644 Scripts/Lib/site-packages/pygments/lexers/zig.py create mode 100644 Scripts/Lib/site-packages/pygments/modeline.py create mode 100644 Scripts/Lib/site-packages/pygments/plugin.py create mode 100644 Scripts/Lib/site-packages/pygments/regexopt.py create mode 100644 Scripts/Lib/site-packages/pygments/scanner.py create mode 100644 Scripts/Lib/site-packages/pygments/sphinxext.py create mode 100644 Scripts/Lib/site-packages/pygments/style.py create mode 100644 Scripts/Lib/site-packages/pygments/styles/__init__.py create mode 100644 Scripts/Lib/site-packages/pygments/styles/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/styles/__pycache__/_mapping.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/styles/__pycache__/abap.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/styles/__pycache__/algol.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/styles/__pycache__/algol_nu.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/styles/__pycache__/arduino.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/styles/__pycache__/autumn.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/styles/__pycache__/borland.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/styles/__pycache__/bw.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/styles/__pycache__/coffee.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/styles/__pycache__/colorful.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/styles/__pycache__/default.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/styles/__pycache__/dracula.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/styles/__pycache__/emacs.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/styles/__pycache__/friendly.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/styles/__pycache__/friendly_grayscale.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/styles/__pycache__/fruity.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/styles/__pycache__/gh_dark.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/styles/__pycache__/gruvbox.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/styles/__pycache__/igor.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/styles/__pycache__/inkpot.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/styles/__pycache__/lightbulb.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/styles/__pycache__/lilypond.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/styles/__pycache__/lovelace.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/styles/__pycache__/manni.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/styles/__pycache__/material.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/styles/__pycache__/monokai.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/styles/__pycache__/murphy.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/styles/__pycache__/native.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/styles/__pycache__/nord.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/styles/__pycache__/onedark.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/styles/__pycache__/paraiso_dark.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/styles/__pycache__/paraiso_light.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/styles/__pycache__/pastie.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/styles/__pycache__/perldoc.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/styles/__pycache__/rainbow_dash.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/styles/__pycache__/rrt.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/styles/__pycache__/sas.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/styles/__pycache__/solarized.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/styles/__pycache__/staroffice.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/styles/__pycache__/stata_dark.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/styles/__pycache__/stata_light.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/styles/__pycache__/tango.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/styles/__pycache__/trac.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/styles/__pycache__/vim.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/styles/__pycache__/vs.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/styles/__pycache__/xcode.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/styles/__pycache__/zenburn.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/pygments/styles/_mapping.py create mode 100644 Scripts/Lib/site-packages/pygments/styles/abap.py create mode 100644 Scripts/Lib/site-packages/pygments/styles/algol.py create mode 100644 Scripts/Lib/site-packages/pygments/styles/algol_nu.py create mode 100644 Scripts/Lib/site-packages/pygments/styles/arduino.py create mode 100644 Scripts/Lib/site-packages/pygments/styles/autumn.py create mode 100644 Scripts/Lib/site-packages/pygments/styles/borland.py create mode 100644 Scripts/Lib/site-packages/pygments/styles/bw.py create mode 100644 Scripts/Lib/site-packages/pygments/styles/coffee.py create mode 100644 Scripts/Lib/site-packages/pygments/styles/colorful.py create mode 100644 Scripts/Lib/site-packages/pygments/styles/default.py create mode 100644 Scripts/Lib/site-packages/pygments/styles/dracula.py create mode 100644 Scripts/Lib/site-packages/pygments/styles/emacs.py create mode 100644 Scripts/Lib/site-packages/pygments/styles/friendly.py create mode 100644 Scripts/Lib/site-packages/pygments/styles/friendly_grayscale.py create mode 100644 Scripts/Lib/site-packages/pygments/styles/fruity.py create mode 100644 Scripts/Lib/site-packages/pygments/styles/gh_dark.py create mode 100644 Scripts/Lib/site-packages/pygments/styles/gruvbox.py create mode 100644 Scripts/Lib/site-packages/pygments/styles/igor.py create mode 100644 Scripts/Lib/site-packages/pygments/styles/inkpot.py create mode 100644 Scripts/Lib/site-packages/pygments/styles/lightbulb.py create mode 100644 Scripts/Lib/site-packages/pygments/styles/lilypond.py create mode 100644 Scripts/Lib/site-packages/pygments/styles/lovelace.py create mode 100644 Scripts/Lib/site-packages/pygments/styles/manni.py create mode 100644 Scripts/Lib/site-packages/pygments/styles/material.py create mode 100644 Scripts/Lib/site-packages/pygments/styles/monokai.py create mode 100644 Scripts/Lib/site-packages/pygments/styles/murphy.py create mode 100644 Scripts/Lib/site-packages/pygments/styles/native.py create mode 100644 Scripts/Lib/site-packages/pygments/styles/nord.py create mode 100644 Scripts/Lib/site-packages/pygments/styles/onedark.py create mode 100644 Scripts/Lib/site-packages/pygments/styles/paraiso_dark.py create mode 100644 Scripts/Lib/site-packages/pygments/styles/paraiso_light.py create mode 100644 Scripts/Lib/site-packages/pygments/styles/pastie.py create mode 100644 Scripts/Lib/site-packages/pygments/styles/perldoc.py create mode 100644 Scripts/Lib/site-packages/pygments/styles/rainbow_dash.py create mode 100644 Scripts/Lib/site-packages/pygments/styles/rrt.py create mode 100644 Scripts/Lib/site-packages/pygments/styles/sas.py create mode 100644 Scripts/Lib/site-packages/pygments/styles/solarized.py create mode 100644 Scripts/Lib/site-packages/pygments/styles/staroffice.py create mode 100644 Scripts/Lib/site-packages/pygments/styles/stata_dark.py create mode 100644 Scripts/Lib/site-packages/pygments/styles/stata_light.py create mode 100644 Scripts/Lib/site-packages/pygments/styles/tango.py create mode 100644 Scripts/Lib/site-packages/pygments/styles/trac.py create mode 100644 Scripts/Lib/site-packages/pygments/styles/vim.py create mode 100644 Scripts/Lib/site-packages/pygments/styles/vs.py create mode 100644 Scripts/Lib/site-packages/pygments/styles/xcode.py create mode 100644 Scripts/Lib/site-packages/pygments/styles/zenburn.py create mode 100644 Scripts/Lib/site-packages/pygments/token.py create mode 100644 Scripts/Lib/site-packages/pygments/unistring.py create mode 100644 Scripts/Lib/site-packages/pygments/util.py create mode 100644 Scripts/Lib/site-packages/rich-14.1.0.dist-info/INSTALLER create mode 100644 Scripts/Lib/site-packages/rich-14.1.0.dist-info/LICENSE create mode 100644 Scripts/Lib/site-packages/rich-14.1.0.dist-info/METADATA create mode 100644 Scripts/Lib/site-packages/rich-14.1.0.dist-info/RECORD create mode 100644 Scripts/Lib/site-packages/rich-14.1.0.dist-info/REQUESTED create mode 100644 Scripts/Lib/site-packages/rich-14.1.0.dist-info/WHEEL create mode 100644 Scripts/Lib/site-packages/rich/__init__.py create mode 100644 Scripts/Lib/site-packages/rich/__main__.py create mode 100644 Scripts/Lib/site-packages/rich/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/rich/__pycache__/__main__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/rich/__pycache__/_cell_widths.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/rich/__pycache__/_emoji_codes.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/rich/__pycache__/_emoji_replace.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/rich/__pycache__/_export_format.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/rich/__pycache__/_extension.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/rich/__pycache__/_fileno.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/rich/__pycache__/_inspect.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/rich/__pycache__/_log_render.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/rich/__pycache__/_loop.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/rich/__pycache__/_null_file.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/rich/__pycache__/_palettes.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/rich/__pycache__/_pick.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/rich/__pycache__/_ratio.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/rich/__pycache__/_spinners.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/rich/__pycache__/_stack.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/rich/__pycache__/_timer.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/rich/__pycache__/_win32_console.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/rich/__pycache__/_windows.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/rich/__pycache__/_windows_renderer.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/rich/__pycache__/_wrap.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/rich/__pycache__/abc.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/rich/__pycache__/align.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/rich/__pycache__/ansi.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/rich/__pycache__/bar.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/rich/__pycache__/box.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/rich/__pycache__/cells.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/rich/__pycache__/color.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/rich/__pycache__/color_triplet.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/rich/__pycache__/columns.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/rich/__pycache__/console.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/rich/__pycache__/constrain.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/rich/__pycache__/containers.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/rich/__pycache__/control.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/rich/__pycache__/default_styles.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/rich/__pycache__/diagnose.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/rich/__pycache__/emoji.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/rich/__pycache__/errors.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/rich/__pycache__/file_proxy.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/rich/__pycache__/filesize.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/rich/__pycache__/highlighter.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/rich/__pycache__/json.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/rich/__pycache__/jupyter.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/rich/__pycache__/layout.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/rich/__pycache__/live.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/rich/__pycache__/live_render.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/rich/__pycache__/logging.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/rich/__pycache__/markdown.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/rich/__pycache__/markup.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/rich/__pycache__/measure.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/rich/__pycache__/padding.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/rich/__pycache__/pager.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/rich/__pycache__/palette.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/rich/__pycache__/panel.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/rich/__pycache__/pretty.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/rich/__pycache__/progress.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/rich/__pycache__/progress_bar.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/rich/__pycache__/prompt.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/rich/__pycache__/protocol.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/rich/__pycache__/region.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/rich/__pycache__/repr.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/rich/__pycache__/rule.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/rich/__pycache__/scope.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/rich/__pycache__/screen.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/rich/__pycache__/segment.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/rich/__pycache__/spinner.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/rich/__pycache__/status.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/rich/__pycache__/style.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/rich/__pycache__/styled.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/rich/__pycache__/syntax.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/rich/__pycache__/table.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/rich/__pycache__/terminal_theme.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/rich/__pycache__/text.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/rich/__pycache__/theme.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/rich/__pycache__/themes.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/rich/__pycache__/traceback.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/rich/__pycache__/tree.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/rich/_cell_widths.py create mode 100644 Scripts/Lib/site-packages/rich/_emoji_codes.py create mode 100644 Scripts/Lib/site-packages/rich/_emoji_replace.py create mode 100644 Scripts/Lib/site-packages/rich/_export_format.py create mode 100644 Scripts/Lib/site-packages/rich/_extension.py create mode 100644 Scripts/Lib/site-packages/rich/_fileno.py create mode 100644 Scripts/Lib/site-packages/rich/_inspect.py create mode 100644 Scripts/Lib/site-packages/rich/_log_render.py create mode 100644 Scripts/Lib/site-packages/rich/_loop.py create mode 100644 Scripts/Lib/site-packages/rich/_null_file.py create mode 100644 Scripts/Lib/site-packages/rich/_palettes.py create mode 100644 Scripts/Lib/site-packages/rich/_pick.py create mode 100644 Scripts/Lib/site-packages/rich/_ratio.py create mode 100644 Scripts/Lib/site-packages/rich/_spinners.py create mode 100644 Scripts/Lib/site-packages/rich/_stack.py create mode 100644 Scripts/Lib/site-packages/rich/_timer.py create mode 100644 Scripts/Lib/site-packages/rich/_win32_console.py create mode 100644 Scripts/Lib/site-packages/rich/_windows.py create mode 100644 Scripts/Lib/site-packages/rich/_windows_renderer.py create mode 100644 Scripts/Lib/site-packages/rich/_wrap.py create mode 100644 Scripts/Lib/site-packages/rich/abc.py create mode 100644 Scripts/Lib/site-packages/rich/align.py create mode 100644 Scripts/Lib/site-packages/rich/ansi.py create mode 100644 Scripts/Lib/site-packages/rich/bar.py create mode 100644 Scripts/Lib/site-packages/rich/box.py create mode 100644 Scripts/Lib/site-packages/rich/cells.py create mode 100644 Scripts/Lib/site-packages/rich/color.py create mode 100644 Scripts/Lib/site-packages/rich/color_triplet.py create mode 100644 Scripts/Lib/site-packages/rich/columns.py create mode 100644 Scripts/Lib/site-packages/rich/console.py create mode 100644 Scripts/Lib/site-packages/rich/constrain.py create mode 100644 Scripts/Lib/site-packages/rich/containers.py create mode 100644 Scripts/Lib/site-packages/rich/control.py create mode 100644 Scripts/Lib/site-packages/rich/default_styles.py create mode 100644 Scripts/Lib/site-packages/rich/diagnose.py create mode 100644 Scripts/Lib/site-packages/rich/emoji.py create mode 100644 Scripts/Lib/site-packages/rich/errors.py create mode 100644 Scripts/Lib/site-packages/rich/file_proxy.py create mode 100644 Scripts/Lib/site-packages/rich/filesize.py create mode 100644 Scripts/Lib/site-packages/rich/highlighter.py create mode 100644 Scripts/Lib/site-packages/rich/json.py create mode 100644 Scripts/Lib/site-packages/rich/jupyter.py create mode 100644 Scripts/Lib/site-packages/rich/layout.py create mode 100644 Scripts/Lib/site-packages/rich/live.py create mode 100644 Scripts/Lib/site-packages/rich/live_render.py create mode 100644 Scripts/Lib/site-packages/rich/logging.py create mode 100644 Scripts/Lib/site-packages/rich/markdown.py create mode 100644 Scripts/Lib/site-packages/rich/markup.py create mode 100644 Scripts/Lib/site-packages/rich/measure.py create mode 100644 Scripts/Lib/site-packages/rich/padding.py create mode 100644 Scripts/Lib/site-packages/rich/pager.py create mode 100644 Scripts/Lib/site-packages/rich/palette.py create mode 100644 Scripts/Lib/site-packages/rich/panel.py create mode 100644 Scripts/Lib/site-packages/rich/pretty.py create mode 100644 Scripts/Lib/site-packages/rich/progress.py create mode 100644 Scripts/Lib/site-packages/rich/progress_bar.py create mode 100644 Scripts/Lib/site-packages/rich/prompt.py create mode 100644 Scripts/Lib/site-packages/rich/protocol.py create mode 100644 Scripts/Lib/site-packages/rich/py.typed create mode 100644 Scripts/Lib/site-packages/rich/region.py create mode 100644 Scripts/Lib/site-packages/rich/repr.py create mode 100644 Scripts/Lib/site-packages/rich/rule.py create mode 100644 Scripts/Lib/site-packages/rich/scope.py create mode 100644 Scripts/Lib/site-packages/rich/screen.py create mode 100644 Scripts/Lib/site-packages/rich/segment.py create mode 100644 Scripts/Lib/site-packages/rich/spinner.py create mode 100644 Scripts/Lib/site-packages/rich/status.py create mode 100644 Scripts/Lib/site-packages/rich/style.py create mode 100644 Scripts/Lib/site-packages/rich/styled.py create mode 100644 Scripts/Lib/site-packages/rich/syntax.py create mode 100644 Scripts/Lib/site-packages/rich/table.py create mode 100644 Scripts/Lib/site-packages/rich/terminal_theme.py create mode 100644 Scripts/Lib/site-packages/rich/text.py create mode 100644 Scripts/Lib/site-packages/rich/theme.py create mode 100644 Scripts/Lib/site-packages/rich/themes.py create mode 100644 Scripts/Lib/site-packages/rich/traceback.py create mode 100644 Scripts/Lib/site-packages/rich/tree.py create mode 100644 Scripts/Lib/site-packages/setuptools-57.4.0.dist-info/INSTALLER create mode 100644 Scripts/Lib/site-packages/setuptools-57.4.0.dist-info/LICENSE create mode 100644 Scripts/Lib/site-packages/setuptools-57.4.0.dist-info/METADATA create mode 100644 Scripts/Lib/site-packages/setuptools-57.4.0.dist-info/RECORD create mode 100644 Scripts/Lib/site-packages/setuptools-57.4.0.dist-info/REQUESTED create mode 100644 Scripts/Lib/site-packages/setuptools-57.4.0.dist-info/WHEEL create mode 100644 Scripts/Lib/site-packages/setuptools-57.4.0.dist-info/entry_points.txt create mode 100644 Scripts/Lib/site-packages/setuptools-57.4.0.dist-info/top_level.txt create mode 100644 Scripts/Lib/site-packages/setuptools/__init__.py create mode 100644 Scripts/Lib/site-packages/setuptools/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/__pycache__/_deprecation_warning.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/__pycache__/_imp.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/__pycache__/archive_util.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/__pycache__/build_meta.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/__pycache__/config.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/__pycache__/dep_util.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/__pycache__/depends.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/__pycache__/dist.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/__pycache__/errors.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/__pycache__/extension.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/__pycache__/glob.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/__pycache__/installer.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/__pycache__/launch.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/__pycache__/lib2to3_ex.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/__pycache__/monkey.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/__pycache__/msvc.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/__pycache__/namespaces.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/__pycache__/package_index.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/__pycache__/py34compat.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/__pycache__/sandbox.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/__pycache__/unicode_utils.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/__pycache__/version.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/__pycache__/wheel.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/__pycache__/windows_support.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/_deprecation_warning.py create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/__init__.py create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/__pycache__/_msvccompiler.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/__pycache__/archive_util.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/__pycache__/bcppcompiler.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/__pycache__/ccompiler.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/__pycache__/cmd.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/__pycache__/config.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/__pycache__/core.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/__pycache__/cygwinccompiler.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/__pycache__/debug.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/__pycache__/dep_util.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/__pycache__/dir_util.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/__pycache__/dist.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/__pycache__/errors.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/__pycache__/extension.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/__pycache__/fancy_getopt.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/__pycache__/file_util.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/__pycache__/filelist.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/__pycache__/log.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/__pycache__/msvc9compiler.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/__pycache__/msvccompiler.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/__pycache__/py35compat.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/__pycache__/py38compat.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/__pycache__/spawn.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/__pycache__/sysconfig.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/__pycache__/text_file.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/__pycache__/unixccompiler.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/__pycache__/util.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/__pycache__/version.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/__pycache__/versionpredicate.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/_msvccompiler.py create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/archive_util.py create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/bcppcompiler.py create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/ccompiler.py create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/cmd.py create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/command/__init__.py create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/command/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/command/__pycache__/bdist.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/command/__pycache__/bdist_dumb.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/command/__pycache__/bdist_msi.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/command/__pycache__/bdist_rpm.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/command/__pycache__/bdist_wininst.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/command/__pycache__/build.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/command/__pycache__/build_clib.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/command/__pycache__/build_ext.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/command/__pycache__/build_py.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/command/__pycache__/build_scripts.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/command/__pycache__/check.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/command/__pycache__/clean.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/command/__pycache__/config.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/command/__pycache__/install.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/command/__pycache__/install_data.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/command/__pycache__/install_egg_info.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/command/__pycache__/install_headers.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/command/__pycache__/install_lib.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/command/__pycache__/install_scripts.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/command/__pycache__/py37compat.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/command/__pycache__/register.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/command/__pycache__/sdist.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/command/__pycache__/upload.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/command/bdist.py create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/command/bdist_dumb.py create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/command/bdist_msi.py create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/command/bdist_rpm.py create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/command/bdist_wininst.py create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/command/build.py create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/command/build_clib.py create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/command/build_ext.py create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/command/build_py.py create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/command/build_scripts.py create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/command/check.py create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/command/clean.py create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/command/config.py create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/command/install.py create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/command/install_data.py create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/command/install_egg_info.py create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/command/install_headers.py create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/command/install_lib.py create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/command/install_scripts.py create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/command/py37compat.py create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/command/register.py create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/command/sdist.py create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/command/upload.py create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/config.py create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/core.py create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/cygwinccompiler.py create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/debug.py create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/dep_util.py create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/dir_util.py create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/dist.py create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/errors.py create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/extension.py create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/fancy_getopt.py create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/file_util.py create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/filelist.py create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/log.py create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/msvc9compiler.py create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/msvccompiler.py create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/py35compat.py create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/py38compat.py create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/spawn.py create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/sysconfig.py create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/text_file.py create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/unixccompiler.py create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/util.py create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/version.py create mode 100644 Scripts/Lib/site-packages/setuptools/_distutils/versionpredicate.py create mode 100644 Scripts/Lib/site-packages/setuptools/_imp.py create mode 100644 Scripts/Lib/site-packages/setuptools/_vendor/__init__.py create mode 100644 Scripts/Lib/site-packages/setuptools/_vendor/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/_vendor/__pycache__/ordered_set.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/_vendor/__pycache__/pyparsing.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/_vendor/more_itertools/__init__.py create mode 100644 Scripts/Lib/site-packages/setuptools/_vendor/more_itertools/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/_vendor/more_itertools/__pycache__/more.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/_vendor/more_itertools/__pycache__/recipes.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/_vendor/more_itertools/more.py create mode 100644 Scripts/Lib/site-packages/setuptools/_vendor/more_itertools/recipes.py create mode 100644 Scripts/Lib/site-packages/setuptools/_vendor/ordered_set.py create mode 100644 Scripts/Lib/site-packages/setuptools/_vendor/packaging/__about__.py create mode 100644 Scripts/Lib/site-packages/setuptools/_vendor/packaging/__init__.py create mode 100644 Scripts/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/__about__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/_compat.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/_structures.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/_typing.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/markers.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/requirements.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/specifiers.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/tags.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/utils.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/version.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/_vendor/packaging/_compat.py create mode 100644 Scripts/Lib/site-packages/setuptools/_vendor/packaging/_structures.py create mode 100644 Scripts/Lib/site-packages/setuptools/_vendor/packaging/_typing.py create mode 100644 Scripts/Lib/site-packages/setuptools/_vendor/packaging/markers.py create mode 100644 Scripts/Lib/site-packages/setuptools/_vendor/packaging/requirements.py create mode 100644 Scripts/Lib/site-packages/setuptools/_vendor/packaging/specifiers.py create mode 100644 Scripts/Lib/site-packages/setuptools/_vendor/packaging/tags.py create mode 100644 Scripts/Lib/site-packages/setuptools/_vendor/packaging/utils.py create mode 100644 Scripts/Lib/site-packages/setuptools/_vendor/packaging/version.py create mode 100644 Scripts/Lib/site-packages/setuptools/_vendor/pyparsing.py create mode 100644 Scripts/Lib/site-packages/setuptools/archive_util.py create mode 100644 Scripts/Lib/site-packages/setuptools/build_meta.py create mode 100644 Scripts/Lib/site-packages/setuptools/cli-32.exe create mode 100644 Scripts/Lib/site-packages/setuptools/cli-64.exe create mode 100644 Scripts/Lib/site-packages/setuptools/cli.exe create mode 100644 Scripts/Lib/site-packages/setuptools/command/__init__.py create mode 100644 Scripts/Lib/site-packages/setuptools/command/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/command/__pycache__/alias.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/command/__pycache__/bdist_egg.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/command/__pycache__/bdist_rpm.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/command/__pycache__/build_clib.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/command/__pycache__/build_ext.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/command/__pycache__/build_py.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/command/__pycache__/develop.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/command/__pycache__/dist_info.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/command/__pycache__/easy_install.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/command/__pycache__/egg_info.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/command/__pycache__/install.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/command/__pycache__/install_egg_info.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/command/__pycache__/install_lib.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/command/__pycache__/install_scripts.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/command/__pycache__/py36compat.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/command/__pycache__/register.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/command/__pycache__/rotate.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/command/__pycache__/saveopts.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/command/__pycache__/sdist.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/command/__pycache__/setopt.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/command/__pycache__/test.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/command/__pycache__/upload.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/command/__pycache__/upload_docs.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/command/alias.py create mode 100644 Scripts/Lib/site-packages/setuptools/command/bdist_egg.py create mode 100644 Scripts/Lib/site-packages/setuptools/command/bdist_rpm.py create mode 100644 Scripts/Lib/site-packages/setuptools/command/build_clib.py create mode 100644 Scripts/Lib/site-packages/setuptools/command/build_ext.py create mode 100644 Scripts/Lib/site-packages/setuptools/command/build_py.py create mode 100644 Scripts/Lib/site-packages/setuptools/command/develop.py create mode 100644 Scripts/Lib/site-packages/setuptools/command/dist_info.py create mode 100644 Scripts/Lib/site-packages/setuptools/command/easy_install.py create mode 100644 Scripts/Lib/site-packages/setuptools/command/egg_info.py create mode 100644 Scripts/Lib/site-packages/setuptools/command/install.py create mode 100644 Scripts/Lib/site-packages/setuptools/command/install_egg_info.py create mode 100644 Scripts/Lib/site-packages/setuptools/command/install_lib.py create mode 100644 Scripts/Lib/site-packages/setuptools/command/install_scripts.py create mode 100644 Scripts/Lib/site-packages/setuptools/command/launcher manifest.xml create mode 100644 Scripts/Lib/site-packages/setuptools/command/py36compat.py create mode 100644 Scripts/Lib/site-packages/setuptools/command/register.py create mode 100644 Scripts/Lib/site-packages/setuptools/command/rotate.py create mode 100644 Scripts/Lib/site-packages/setuptools/command/saveopts.py create mode 100644 Scripts/Lib/site-packages/setuptools/command/sdist.py create mode 100644 Scripts/Lib/site-packages/setuptools/command/setopt.py create mode 100644 Scripts/Lib/site-packages/setuptools/command/test.py create mode 100644 Scripts/Lib/site-packages/setuptools/command/upload.py create mode 100644 Scripts/Lib/site-packages/setuptools/command/upload_docs.py create mode 100644 Scripts/Lib/site-packages/setuptools/config.py create mode 100644 Scripts/Lib/site-packages/setuptools/dep_util.py create mode 100644 Scripts/Lib/site-packages/setuptools/depends.py create mode 100644 Scripts/Lib/site-packages/setuptools/dist.py create mode 100644 Scripts/Lib/site-packages/setuptools/errors.py create mode 100644 Scripts/Lib/site-packages/setuptools/extension.py create mode 100644 Scripts/Lib/site-packages/setuptools/extern/__init__.py create mode 100644 Scripts/Lib/site-packages/setuptools/extern/__pycache__/__init__.cpython-310.pyc create mode 100644 Scripts/Lib/site-packages/setuptools/glob.py create mode 100644 Scripts/Lib/site-packages/setuptools/gui-32.exe create mode 100644 Scripts/Lib/site-packages/setuptools/gui-64.exe create mode 100644 Scripts/Lib/site-packages/setuptools/gui.exe create mode 100644 Scripts/Lib/site-packages/setuptools/installer.py create mode 100644 Scripts/Lib/site-packages/setuptools/launch.py create mode 100644 Scripts/Lib/site-packages/setuptools/lib2to3_ex.py create mode 100644 Scripts/Lib/site-packages/setuptools/monkey.py create mode 100644 Scripts/Lib/site-packages/setuptools/msvc.py create mode 100644 Scripts/Lib/site-packages/setuptools/namespaces.py create mode 100644 Scripts/Lib/site-packages/setuptools/package_index.py create mode 100644 Scripts/Lib/site-packages/setuptools/py34compat.py create mode 100644 Scripts/Lib/site-packages/setuptools/sandbox.py create mode 100644 Scripts/Lib/site-packages/setuptools/script (dev).tmpl create mode 100644 Scripts/Lib/site-packages/setuptools/script.tmpl create mode 100644 Scripts/Lib/site-packages/setuptools/unicode_utils.py create mode 100644 Scripts/Lib/site-packages/setuptools/version.py create mode 100644 Scripts/Lib/site-packages/setuptools/wheel.py create mode 100644 Scripts/Lib/site-packages/setuptools/windows_support.py create mode 100644 Scripts/README_CONVERTER.md create mode 100644 Scripts/Scripts/Activate.ps1 create mode 100644 Scripts/Scripts/activate create mode 100644 Scripts/Scripts/activate.bat create mode 100644 Scripts/Scripts/deactivate.bat create mode 100644 Scripts/Scripts/markdown-it.exe create mode 100644 Scripts/Scripts/pip.exe create mode 100644 Scripts/Scripts/pip3.10.exe create mode 100644 Scripts/Scripts/pip3.exe create mode 100644 Scripts/Scripts/pygmentize.exe create mode 100644 Scripts/Scripts/python.exe create mode 100644 Scripts/Scripts/pythonw.exe create mode 100644 Scripts/export-2d-tracks-from-3de-to-nuke.py create mode 100644 Scripts/pyvenv.cfg create mode 100644 Scripts/requirements.txt diff --git a/README.md b/README.md index 9a2f4cd..140ba47 100644 --- a/README.md +++ b/README.md @@ -32,22 +32,56 @@ A curated set of master templates for Nuke/NukeX. Each `.nk` ships with sensible ## Repository Tree ```text / -├─ Biohazard Master Rev 01/ -│ ├─ Biohazard Master Rev 01.nk -│ ├─ Biohazard Master Rev 01.nk~ # backup -│ └─ desktop.ini -├─ Biohazard Master Rev 02/ -│ ├─ Biohazard Master Rev 02 LIGHT.nk # lightweight preset -│ ├─ Biohazard Master Rev 02.nk -│ └─ desktop.ini -├─ Covert Template/ -│ ├─ Covert Template.nk -│ ├─ Covert Template.nk~ # backup -│ └─ desktop.ini +├─ Scripts/ +│ ├─ 3de-to-nuke-converter.py # 3DE track converter v2.0 +│ ├─ export-2d-tracks-from-3de-to-nuke.py # legacy converter +│ ├─ requirements.txt # Python dependencies +│ └─ README_CONVERTER.md # converter documentation +├─ Shot_Templates/ +│ ├─ Biohazard Master Rev 01/ +│ │ ├─ Biohazard Master Rev 01.nk +│ │ ├─ Biohazard Master Rev 01.nk~ # backup +│ │ └─ desktop.ini +│ ├─ Biohazard Master Rev 02/ +│ │ ├─ Biohazard Master Rev 02 LIGHT.nk # lightweight preset +│ │ ├─ Biohazard Master Rev 02.nk +│ │ └─ desktop.ini +│ └─ Covert Template/ +│ ├─ Covert Template.nk +│ ├─ Covert Template.nk~ # backup +│ └─ desktop.ini └─ README.md ``` --- +## Scripts + +
+3DE to Nuke Track Converter v2.0 — production tool + +* Professional converter for 3DEqualizer 2D tracks to Nuke Tracker4 nodes +* Beautiful terminal UI with progress bars and interactive prompts +* Features: + - CLI and interactive modes for flexibility + - Robust error handling with clear messages + - Gap filling with linear interpolation + - Coordinate system transforms (pixels/normalized) + - Auto-generated output filenames + - Configurable resolution and Nuke versions + - Batch processing support +* See `Scripts/README_CONVERTER.md` for full documentation + +**Quick Start:** +```bash +cd Scripts +pip install -r requirements.txt +python 3de-to-nuke-converter.py # Interactive mode +``` + +
+ +--- + ## Templates
diff --git a/Scripts/.gitignore b/Scripts/.gitignore new file mode 100644 index 0000000..6c280b6 --- /dev/null +++ b/Scripts/.gitignore @@ -0,0 +1,41 @@ +# Python virtual environment +Include/ +Lib/ +Scripts/ +pyvenv.cfg + +# Python cache +__pycache__/ +*.py[cod] +*$py.class +*.so +.Python + +# Distribution / packaging +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +*.egg-info/ +.installed.cfg +*.egg + +# IDE +.vscode/ +.idea/ +*.swp +*.swo +*~ + +# OS +.DS_Store +Thumbs.db +desktop.ini diff --git a/Scripts/3de-to-nuke-converter.py b/Scripts/3de-to-nuke-converter.py new file mode 100644 index 0000000..23342c3 --- /dev/null +++ b/Scripts/3de-to-nuke-converter.py @@ -0,0 +1,548 @@ +#!/usr/bin/env python3 +""" +3DE to Nuke Track Converter +A professional tool for converting 3DEqualizer 2D tracks to Nuke Tracker nodes +""" + +import argparse +import sys +import json +from pathlib import Path +from typing import List, Dict, Optional, Tuple +from dataclasses import dataclass + +from rich.console import Console +from rich.panel import Panel +from rich.table import Table +from rich.progress import Progress, SpinnerColumn, BarColumn, TextColumn, TimeElapsedColumn +from rich.prompt import Prompt, Confirm +from rich.layout import Layout +from rich.text import Text +from rich import box +from rich.style import Style + +console = Console() + +# ASCII Art Banner +BANNER = """ +╔═════════════════════════════════════════════════════════════════════════════════════╗ +║ ║ +║ __________.___________ ___ ___ _____ __________ _____ __________________ ║ +║ \______ \ \_____ \ / | \ / _ \ \____ / / _ \\______ \______ \ ║ +║ | | _/ |/ | \/ ~ \/ /_\ \ / / / /_\ \| _/| | \ ║ +║ | | \ / | \ Y / | \/ /_/ | \ | \| ` \ ║ +║ |______ /___\_______ /\___|_ /\____|__ /_______ \____|__ /____|_ /_______ / ║ +║ \/ \/ \/ \/ \/ \/ \/ \/ ║ +║ ║ +║ _________ .____ .___ ___________________ ________ .____ _________ ║ +║ \_ ___ \| | | | \__ ___/\_____ \ \_____ \ | | / _____/ ║ +║ / \ \/| | | | | | / | \ / | \| | \_____ \ ║ +║ \ \___| |___| | | | / | \/ | \ |___ / \ ║ +║ \______ /_______ \___| |____| \_______ /\_______ /_______ \/_______ / ║ +║ \/ \/ \/ \/ \/ \/ ║ +║ ║ +║ Convert 2d tracks from 3dequalizer to .nk 2d tracker nodes. ║ +╚═════════════════════════════════════════════════════════════════════════════════════╝ +""" + +@dataclass +class TrackPoint: + """Represents a single track point""" + frame: int + x: float + y: float + +@dataclass +class Track: + """Represents a complete track""" + name: str + frame_start: int + points: List[TrackPoint] + + @property + def frame_end(self) -> int: + return max(p.frame for p in self.points) if self.points else self.frame_start + + @property + def num_points(self) -> int: + return len(self.points) + +class TrackConverter: + """Main converter class""" + + def __init__(self, config: Dict): + self.config = config + self.tracks: List[Track] = [] + + def parse_3de_file(self, filepath: Path) -> bool: + """Parse 3DE track file with robust error handling""" + try: + with Progress( + SpinnerColumn(), + TextColumn("[progress.description]{task.description}"), + BarColumn(), + TextColumn("[progress.percentage]{task.percentage:>3.0f}%"), + TimeElapsedColumn(), + console=console + ) as progress: + task = progress.add_task("[cyan]Reading 3DE file...", total=100) + + with open(filepath, 'r') as f: + lines = f.read().strip().split('\n') + + progress.update(task, advance=20) + + if not lines: + console.print("[red]✗[/red] Error: File is empty", style="bold red") + return False + + try: + track_count = int(lines[0]) + except ValueError: + console.print(f"[red]✗[/red] Error: Invalid track count on line 1: '{lines[0]}'", style="bold red") + return False + + progress.update(task, advance=10, description=f"[cyan]Parsing {track_count} tracks...") + + current_line = 1 + parse_increment = 70 / max(track_count, 1) + + for i in range(track_count): + try: + # Parse track number + if current_line >= len(lines): + raise ValueError(f"Unexpected end of file at track {i+1}") + + track_num = lines[current_line].strip() + current_line += 1 + + # Parse frame start + if current_line >= len(lines): + raise ValueError(f"Missing frame_start for track {i+1}") + frame_start = int(lines[current_line]) + current_line += 1 + + # Parse number of points + if current_line >= len(lines): + raise ValueError(f"Missing num_points for track {i+1}") + num_points = int(lines[current_line]) + current_line += 1 + + # Parse points + points = [] + for j in range(num_points): + if current_line >= len(lines): + raise ValueError(f"Missing point data for track {i+1}, point {j+1}") + + parts = lines[current_line].strip().split() + if len(parts) < 3: + raise ValueError(f"Invalid point data at line {current_line+1}: '{lines[current_line]}'") + + points.append(TrackPoint( + frame=int(parts[0]), + x=float(parts[1]), + y=float(parts[2]) + )) + current_line += 1 + + # Create track with custom name if available, otherwise use track number + track_name = self.config.get('name_prefix', '') + f"track_{track_num}" + + self.tracks.append(Track( + name=track_name, + frame_start=frame_start, + points=points + )) + + progress.update(task, advance=parse_increment) + + except (ValueError, IndexError) as e: + console.print(f"[red]✗[/red] Error parsing track {i+1}: {str(e)}", style="bold red") + return False + + progress.update(task, completed=100) + + return True + + except FileNotFoundError: + console.print(f"[red]✗[/red] File not found: {filepath}", style="bold red") + return False + except Exception as e: + console.print(f"[red]✗[/red] Unexpected error: {str(e)}", style="bold red") + return False + + def transform_coordinates(self, track: Track) -> Track: + """Transform coordinates based on config settings""" + if self.config.get('input_space') == 'normalized': + # Convert normalized (0-1) to pixels + width = self.config.get('input_width', 2048) + height = self.config.get('input_height', 1556) + + for point in track.points: + point.x *= width + point.y *= height + + if self.config.get('flip_y', False): + height = self.config.get('input_height', 1556) + for point in track.points: + point.y = height - point.y + + return track + + def fill_gaps(self, track: Track) -> Track: + """Fill missing frames in track""" + if not self.config.get('fill_gaps', False) or not track.points: + return track + + strategy = self.config.get('fill_strategy', 'last') + filled_points = [] + + # Sort points by frame + sorted_points = sorted(track.points, key=lambda p: p.frame) + + for i in range(len(sorted_points) - 1): + current = sorted_points[i] + next_point = sorted_points[i + 1] + filled_points.append(current) + + # Check for gap + gap = next_point.frame - current.frame + if gap > 1: + for frame in range(current.frame + 1, next_point.frame): + if strategy == 'last': + filled_points.append(TrackPoint(frame, current.x, current.y)) + elif strategy == 'linear': + # Linear interpolation + t = (frame - current.frame) / gap + x = current.x + (next_point.x - current.x) * t + y = current.y + (next_point.y - current.y) * t + filled_points.append(TrackPoint(frame, x, y)) + + filled_points.append(sorted_points[-1]) + track.points = filled_points + return track + + def generate_curve_data(self, points: List[TrackPoint], axis: str) -> str: + """Generate Nuke curve data""" + curve_data = '{curve' + for point in points: + value = point.x if axis == 'x' else point.y + curve_data += f' x{point.frame} {value}' + curve_data += '}' + return curve_data + + def generate_nuke_file(self, output_path: Path) -> bool: + """Generate Nuke .nk file""" + try: + with Progress( + SpinnerColumn(), + TextColumn("[progress.description]{task.description}"), + BarColumn(), + console=console + ) as progress: + task = progress.add_task("[cyan]Generating Nuke file...", total=len(self.tracks)) + + # Transform and process tracks + processed_tracks = [] + for track in self.tracks: + track = self.transform_coordinates(track) + track = self.fill_gaps(track) + processed_tracks.append(track) + progress.advance(task) + + # Generate track entries + track_entries = [] + for index, track in enumerate(processed_tracks): + track_x = self.generate_curve_data(track.points, 'x') + track_y = self.generate_curve_data(track.points, 'y') + + enabled = '1' if (self.config.get('enable_all', False) or index == 0) else '0' + entry = f' {{ {{curve K x1 1}} "{track.name}" {track_x} {track_y} {{curve K x1 0}} {{curve K x1 0}} {enabled} 0 0 {{curve x1 0}} 1 0 -32 -32 32 32 -22 -22 22 22 {{}} {{}} {{}} {{}} {{}} {{}} {{}} {{}} {{}} {{}} {{}} }}' + track_entries.append(entry) + + # Get config values + nuke_version = self.config.get('nuke_version', '15.2 v3') + format_name = self.config.get('format', '2K_Super_35(full-ap)') + width = self.config.get('input_width', 2048) + height = self.config.get('input_height', 1556) + center_x = width // 2 + center_y = height // 2 + + # Generate .nk file + nuke_file = f"""#! C:/Program Files/Nuke15.2v3/nuke-15.2.3.dll -nx +version {nuke_version} +Root {{ +inputs 0 +name {output_path.name} +format "{width} {height} 0 0 {width} {height} 1 {format_name}" +proxy_type scale +colorManagement OCIO +OCIO_config fn-nuke_studio-config-v1.0.0_aces-v1.3_ocio-v2.1 +defaultViewerLUT "OCIO LUTs" +workingSpaceLUT scene_linear +monitorLut "ACES 1.0 - SDR Video (sRGB - Display)" +monitorOutLUT "ACES 1.0 - SDR Video (sRGB - Display)" +}} +Tracker4 {{ +inputs 0 +tracks {{ {{ 1 31 {len(processed_tracks)} }} +{{ {{ 5 1 20 enable e 1 }} +{{ 3 1 75 name name 1 }} +{{ 2 1 58 track_x track_x 1 }} +{{ 2 1 58 track_y track_y 1 }} +{{ 2 1 63 offset_x offset_x 1 }} +{{ 2 1 63 offset_y offset_y 1 }} +{{ 4 1 27 T T 1 }} +{{ 4 1 27 R R 1 }} +{{ 4 1 27 S S 1 }} +{{ 2 0 45 error error 1 }} +{{ 1 1 0 error_min error_min 1 }} +{{ 1 1 0 error_max error_max 1 }} +{{ 1 1 0 pattern_x pattern_x 1 }} +{{ 1 1 0 pattern_y pattern_y 1 }} +{{ 1 1 0 pattern_r pattern_r 1 }} +{{ 1 1 0 pattern_t pattern_t 1 }} +{{ 1 1 0 search_x search_x 1 }} +{{ 1 1 0 search_y search_y 1 }} +{{ 1 1 0 search_r search_r 1 }} +{{ 1 1 0 search_t search_t 1 }} +{{ 2 1 0 key_track key_track 1 }} +{{ 2 1 0 key_search_x key_search_x 1 }} +{{ 2 1 0 key_search_y key_search_y 1 }} +{{ 2 1 0 key_search_r key_search_r 1 }} +{{ 2 1 0 key_search_t key_search_t 1 }} +{{ 2 1 0 key_track_x key_track_x 1 }} +{{ 2 1 0 key_track_y key_track_y 1 }} +{{ 2 1 0 key_track_r key_track_r 1 }} +{{ 2 1 0 key_track_t key_track_t 1 }} +{{ 2 1 0 key_centre_offset_x key_centre_offset_x 1 }} +{{ 2 1 0 key_centre_offset_y key_centre_offset_y 1 }} +}} +{{ +{chr(10).join(track_entries)} +}} +}} +center {{{center_x} {center_y}}} +name Tracker1 +xpos -75 +ypos -94 +}} +""" + + with open(output_path, 'w') as f: + f.write(nuke_file) + + return True + + except Exception as e: + console.print(f"[red]✗[/red] Error generating Nuke file: {str(e)}", style="bold red") + return False + + def display_summary(self): + """Display conversion summary""" + if not self.tracks: + return + + # Create summary table + table = Table( + title="Track Summary", + box=box.ROUNDED, + show_header=True, + header_style="bold magenta", + border_style="cyan" + ) + + table.add_column("Track", style="cyan", no_wrap=True) + table.add_column("Points", justify="right", style="green") + table.add_column("Frame Range", justify="center", style="yellow") + table.add_column("Status", justify="center") + + for track in self.tracks[:10]: # Show first 10 + status = "[green]✓[/green]" if track.num_points > 0 else "[red]✗[/red]" + table.add_row( + track.name, + str(track.num_points), + f"{track.frame_start}-{track.frame_end}", + status + ) + + if len(self.tracks) > 10: + table.add_row("...", "...", "...", "...") + + console.print(table) + + # Stats panel + total_points = sum(t.num_points for t in self.tracks) + stats = f""" +[cyan]Total Tracks:[/cyan] [bold]{len(self.tracks)}[/bold] +[cyan]Total Points:[/cyan] [bold]{total_points}[/bold] +[cyan]Avg Points/Track:[/cyan] [bold]{total_points // len(self.tracks) if self.tracks else 0}[/bold] +""" + console.print(Panel(stats, title="Statistics", border_style="green", box=box.ROUNDED)) + +def interactive_mode(): + """Run in interactive mode with prompts""" + console.print(Panel(BANNER, style="bold cyan", box=box.DOUBLE)) + + console.print("\n[bold cyan]Welcome to 3DE to Nuke Track Converter![/bold cyan]\n") + + # Get input file + input_file = Prompt.ask( + "[cyan]Enter 3DE track file path[/cyan] [dim](e.g., tracks.txt from 3DEqualizer)[/dim]", + default="tracks.txt" + ) + + if not Path(input_file).exists(): + console.print(f"[red]✗[/red] File not found: {input_file}", style="bold red") + return + + # Auto-generate output filename from input + input_path = Path(input_file) + default_output = input_path.stem + ".nk" + + # Get output file + output_file = Prompt.ask( + "[cyan]Enter output .nk file path[/cyan]", + default=default_output + ) + + # Resolution + width = int(Prompt.ask("[cyan]Input resolution width[/cyan]", default="2048")) + height = int(Prompt.ask("[cyan]Input resolution height[/cyan]", default="1556")) + + # Coordinate space - removed confusing option, using auto-detection + console.print("\n[dim]Note: Coordinate space auto-detected as pixels (standard 3DE export)[/dim]") + coord_space = "pixels" + + # Fill gaps + fill_gaps = Confirm.ask("[cyan]Fill missing frames?[/cyan]", default=False) + fill_strategy = "last" + if fill_gaps: + fill_strategy = Prompt.ask( + "[cyan]Fill strategy[/cyan]", + choices=["last", "linear"], + default="last" + ) + + # Enable all tracks + enable_all = Confirm.ask("[cyan]Enable all tracks?[/cyan]", default=False) + + # Build config + config = { + 'input_width': width, + 'input_height': height, + 'input_space': coord_space, + 'fill_gaps': fill_gaps, + 'fill_strategy': fill_strategy, + 'enable_all': enable_all, + 'flip_y': False, + 'name_prefix': '', + 'nuke_version': '15.2 v3', + 'format': '2K_Super_35(full-ap)' + } + + # Process + converter = TrackConverter(config) + + console.print("\n") + if converter.parse_3de_file(Path(input_file)): + console.print("[green]✓[/green] Successfully parsed 3DE file\n", style="bold green") + converter.display_summary() + + console.print("\n") + if converter.generate_nuke_file(Path(output_file)): + console.print(f"\n[green]✓[/green] Successfully created: [bold]{output_file}[/bold]", style="bold green") + + # Final summary + summary = Panel( + f"[green]Conversion Complete![/green]\n\n" + f"[cyan]Input:[/cyan] {input_file}\n" + f"[cyan]Output:[/cyan] {output_file}\n" + f"[cyan]Tracks:[/cyan] {len(converter.tracks)}\n" + f"[cyan]Total Points:[/cyan] {sum(t.num_points for t in converter.tracks)}", + title="✓ Success", + border_style="green", + box=box.DOUBLE + ) + console.print(summary) + +def cli_mode(args): + """Run in CLI mode with arguments""" + config = { + 'input_width': args.width, + 'input_height': args.height, + 'input_space': args.input_space, + 'fill_gaps': args.fill_gaps, + 'fill_strategy': args.fill_strategy, + 'enable_all': args.enable_all, + 'flip_y': args.flip_y, + 'name_prefix': args.name_prefix, + 'nuke_version': args.nuke_version, + 'format': args.format + } + + if not args.quiet: + console.print(Panel(BANNER, style="bold cyan", box=box.DOUBLE)) + + converter = TrackConverter(config) + + if converter.parse_3de_file(Path(args.input)): + if not args.quiet: + console.print("[green]✓[/green] Successfully parsed 3DE file\n", style="bold green") + if args.verbose: + converter.display_summary() + + if args.dry_run: + console.print("[yellow]Dry run - no file written[/yellow]") + return + + if converter.generate_nuke_file(Path(args.output)): + if not args.quiet: + console.print(f"\n[green]✓[/green] Successfully created: [bold]{args.output}[/bold]", style="bold green") + else: + sys.exit(1) + else: + sys.exit(1) + +def main(): + parser = argparse.ArgumentParser( + description='Convert 3DEqualizer 2D tracks to Nuke Tracker nodes', + formatter_class=argparse.RawDescriptionHelpFormatter + ) + + parser.add_argument('-i', '--input', help='Input 3DE track file') + parser.add_argument('-o', '--output', help='Output Nuke .nk file') + parser.add_argument('-w', '--width', type=int, default=2048, help='Input resolution width (default: 2048)') + parser.add_argument('--height', type=int, default=1556, help='Input resolution height (default: 1556)') + parser.add_argument('--input-space', choices=['pixels', 'normalized'], default='pixels', + help='Input coordinate space (default: pixels)') + parser.add_argument('--fill-gaps', action='store_true', help='Fill missing frames') + parser.add_argument('--fill-strategy', choices=['last', 'linear'], default='last', + help='Gap filling strategy (default: last)') + parser.add_argument('--flip-y', action='store_true', help='Flip Y coordinates') + parser.add_argument('--enable-all', action='store_true', help='Enable all tracks (default: only first)') + parser.add_argument('--name-prefix', default='', help='Prefix for track names') + parser.add_argument('--nuke-version', default='15.2 v3', help='Nuke version (default: 15.2 v3)') + parser.add_argument('--format', default='2K_Super_35(full-ap)', help='Nuke format name') + parser.add_argument('-v', '--verbose', action='store_true', help='Verbose output') + parser.add_argument('-q', '--quiet', action='store_true', help='Quiet mode') + parser.add_argument('--dry-run', action='store_true', help='Parse only, don\'t write file') + + # If no arguments, run interactive mode + if len(sys.argv) == 1: + interactive_mode() + else: + args = parser.parse_args() + if not args.input or not args.output: + parser.error("--input and --output are required in CLI mode") + cli_mode(args) + +if __name__ == '__main__': + try: + main() + except KeyboardInterrupt: + console.print("\n[yellow]Cancelled by user[/yellow]") + sys.exit(0) + except Exception as e: + console.print(f"\n[red]Fatal error: {str(e)}[/red]", style="bold red") + sys.exit(1) diff --git a/Scripts/Lib/site-packages/_distutils_hack/__init__.py b/Scripts/Lib/site-packages/_distutils_hack/__init__.py new file mode 100644 index 0000000..5f40996 --- /dev/null +++ b/Scripts/Lib/site-packages/_distutils_hack/__init__.py @@ -0,0 +1,128 @@ +import sys +import os +import re +import importlib +import warnings + + +is_pypy = '__pypy__' in sys.builtin_module_names + + +warnings.filterwarnings('ignore', + r'.+ distutils\b.+ deprecated', + DeprecationWarning) + + +def warn_distutils_present(): + if 'distutils' not in sys.modules: + return + if is_pypy and sys.version_info < (3, 7): + # PyPy for 3.6 unconditionally imports distutils, so bypass the warning + # https://foss.heptapod.net/pypy/pypy/-/blob/be829135bc0d758997b3566062999ee8b23872b4/lib-python/3/site.py#L250 + return + warnings.warn( + "Distutils was imported before Setuptools, but importing Setuptools " + "also replaces the `distutils` module in `sys.modules`. This may lead " + "to undesirable behaviors or errors. To avoid these issues, avoid " + "using distutils directly, ensure that setuptools is installed in the " + "traditional way (e.g. not an editable install), and/or make sure " + "that setuptools is always imported before distutils.") + + +def clear_distutils(): + if 'distutils' not in sys.modules: + return + warnings.warn("Setuptools is replacing distutils.") + mods = [name for name in sys.modules if re.match(r'distutils\b', name)] + for name in mods: + del sys.modules[name] + + +def enabled(): + """ + Allow selection of distutils by environment variable. + """ + which = os.environ.get('SETUPTOOLS_USE_DISTUTILS', 'stdlib') + return which == 'local' + + +def ensure_local_distutils(): + clear_distutils() + distutils = importlib.import_module('setuptools._distutils') + distutils.__name__ = 'distutils' + sys.modules['distutils'] = distutils + + # sanity check that submodules load as expected + core = importlib.import_module('distutils.core') + assert '_distutils' in core.__file__, core.__file__ + + +def do_override(): + """ + Ensure that the local copy of distutils is preferred over stdlib. + + See https://github.com/pypa/setuptools/issues/417#issuecomment-392298401 + for more motivation. + """ + if enabled(): + warn_distutils_present() + ensure_local_distutils() + + +class DistutilsMetaFinder: + def find_spec(self, fullname, path, target=None): + if path is not None: + return + + method_name = 'spec_for_{fullname}'.format(**locals()) + method = getattr(self, method_name, lambda: None) + return method() + + def spec_for_distutils(self): + import importlib.abc + import importlib.util + + class DistutilsLoader(importlib.abc.Loader): + + def create_module(self, spec): + return importlib.import_module('setuptools._distutils') + + def exec_module(self, module): + pass + + return importlib.util.spec_from_loader('distutils', DistutilsLoader()) + + def spec_for_pip(self): + """ + Ensure stdlib distutils when running under pip. + See pypa/pip#8761 for rationale. + """ + if self.pip_imported_during_build(): + return + clear_distutils() + self.spec_for_distutils = lambda: None + + @staticmethod + def pip_imported_during_build(): + """ + Detect if pip is being imported in a build script. Ref #2355. + """ + import traceback + return any( + frame.f_globals['__file__'].endswith('setup.py') + for frame, line in traceback.walk_stack(None) + ) + + +DISTUTILS_FINDER = DistutilsMetaFinder() + + +def add_shim(): + sys.meta_path.insert(0, DISTUTILS_FINDER) + + +def remove_shim(): + try: + sys.meta_path.remove(DISTUTILS_FINDER) + except ValueError: + pass diff --git a/Scripts/Lib/site-packages/_distutils_hack/__pycache__/__init__.cpython-310.pyc b/Scripts/Lib/site-packages/_distutils_hack/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..85eb2e425400d77b97148b8fb4bfb154ec48fe56 GIT binary patch literal 5154 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 literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/_distutils_hack/__pycache__/override.cpython-310.pyc b/Scripts/Lib/site-packages/_distutils_hack/__pycache__/override.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..176c58e12d6b006d35d351e9f5fc15d40143546a GIT binary patch literal 259 zcmZ8cyGjH>5S-aaP7d!AOb>hoMu&(P>n3;6($I`M&Fyfr^w2#ko~b{gp}*i4_zjne zKVjsoAczHBMFrhe&C}_`6uiBEc1J}&M)Ma{F;``DR)~x@Pxjfq7;C&;nt9b6pbwgd z9HL_9+D$#Lb`!+VCzg!Z?0ZJOCz0Uk)yR16hrYB~Kur(1jXZcbJI9-FCr-A2E9R(B z4;zB(z@2+^;^Ee5COKSDpQ6hI%T_|l3S|p4WI9eI+^tFBU!l|A^pmvR?OpWjhe(%p Jd}%B*GvDj`P4@r* literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/_distutils_hack/override.py b/Scripts/Lib/site-packages/_distutils_hack/override.py new file mode 100644 index 0000000..2cc433a --- /dev/null +++ b/Scripts/Lib/site-packages/_distutils_hack/override.py @@ -0,0 +1 @@ +__import__('_distutils_hack').do_override() diff --git a/Scripts/Lib/site-packages/distutils-precedence.pth b/Scripts/Lib/site-packages/distutils-precedence.pth new file mode 100644 index 0000000..6de4198 --- /dev/null +++ b/Scripts/Lib/site-packages/distutils-precedence.pth @@ -0,0 +1 @@ +import os; var = 'SETUPTOOLS_USE_DISTUTILS'; enabled = os.environ.get(var, 'stdlib') == 'local'; enabled and __import__('_distutils_hack').add_shim(); diff --git a/Scripts/Lib/site-packages/markdown_it/__init__.py b/Scripts/Lib/site-packages/markdown_it/__init__.py new file mode 100644 index 0000000..9fac279 --- /dev/null +++ b/Scripts/Lib/site-packages/markdown_it/__init__.py @@ -0,0 +1,6 @@ +"""A Python port of Markdown-It""" + +__all__ = ("MarkdownIt",) +__version__ = "4.0.0" + +from .main import MarkdownIt diff --git a/Scripts/Lib/site-packages/markdown_it/__pycache__/__init__.cpython-310.pyc b/Scripts/Lib/site-packages/markdown_it/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..dcf7b8283e8cc9c0442a047c639b7b5ca5ecd132 GIT binary patch literal 329 zcmYjL%}T>S5Z+BUv{VW{Ko7b0(3nF{BBI_3wg~MhEDURQwM#ddu)9%{H}Xw*TKWJFJo#txxbFSqZzB_*~7Gent=Dzqs^WyhyV&`=H_LdKMps01^v;-UwrY zIRSW5)@iIlV5QKN?U!GP9R~TKFU-&RTD|zfU?X|9fLncUg>5-(5sl;PX0P~-#+~Sd zm3$?fS2o$IvNpmizA3D(z2o7EJMGoH7R6pXD#y#;-k|*%fUdL$NbB}6x+qaLMqTz* N+$azuEMoLD`UZ<}UyJ|% literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/markdown_it/__pycache__/_compat.cpython-310.pyc b/Scripts/Lib/site-packages/markdown_it/__pycache__/_compat.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3039de6b81a208f812f031d9807891969fde7f8e GIT binary patch literal 249 zcmYjLyG{c!5VQ{p6cj0+fJAi#k0KR92vNf|NfoVREoX;VXL~JsEeLT4?Enmm4XCZdRf__?o<}9FH*s zVq{ApcWpDyl-d?9$tabkiZ_uCEB&3Hu(^WHym0TRXt-Red;6F$?Ln=HT!yX;2JS5F z@D-DW2h42J$=dknkPWQ*WFu#&Dae-1S;T(8CzHWr8Zb}so^)~M LM%D>=nzInU+R{e+ literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/markdown_it/__pycache__/_punycode.cpython-310.pyc b/Scripts/Lib/site-packages/markdown_it/__pycache__/_punycode.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1ce0383f8ad208c773cdc44009658f4219f60711 GIT binary patch literal 1789 zcmaJ>OK;>v5bkb2#&KpgVF-Ef5CINgAj7b`fP_M{AxzLp;6<4Tt!5oYj=PgM@z|#A zQ68F+Kna2i|A52fn18}==quuo6NkO!v{jx=9zkG)k&pd6Zro5^Y5L; z7$JY*OK6$m{C0+%~_zla;d<6#D;2nI{*ic$G z4wWfI-j#7cG0NqKx(;InMpgxplU>>a5IFmt4cIAZk~7U!R@#jZgMNlNA1xS zYw4kcI+HhHWDG==7IS6zSrCT*o&G)Wy_tTKNCQj`lNS6WvdE#bf;y%(6y?#S}AB9uJ^(IW!@{FL??XMHWFJ$6jFwx`RP9^*Q&h0c(^ z2D&y!`Xpxq*a6-;HwN0TWQ%f>mrksn{uMdKC`M1~88c8g$8s;|BSp@!$P$I3wOi@q zweT7bU}Uo(eumH+r9S1~5;~0v%MY;}CtX5YBa8E>MR8GL2YaG;Q>7sd`S429=#KSK_VxMi!aSP< zVN;!!X<4(VO=qb^#1Ih(-~QG>5k#C(!X4*H835g^D3u3}7-``4;#{ z+;J<+sLz_Pki89JRCGCk+c}{83p@4Er8z z9pYIWFvRmZ#zRk?RtorHHIv4qUZra)NJWuURmY+BW-`n+DPOpm<)tGs&N literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/markdown_it/__pycache__/main.cpython-310.pyc b/Scripts/Lib/site-packages/markdown_it/__pycache__/main.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..57b4b9672a2a702a4cb7834a3ddc63500ce5bec2 GIT binary patch literal 12820 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 PVQ<0h!QK3E>Dqq*Tkyz> literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/markdown_it/__pycache__/parser_core.cpython-310.pyc b/Scripts/Lib/site-packages/markdown_it/__pycache__/parser_core.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4f067f0ce4be32b328b8fd459faf38eff17c0be3 GIT binary patch literal 1521 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 ZeSzE!!!qD&nsYCdEkiGx^ZG*RzX9=Kw9Ehi literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/markdown_it/__pycache__/token.cpython-310.pyc b/Scripts/Lib/site-packages/markdown_it/__pycache__/token.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ff3eaaf095fc342770be099bdb069d46e70eaed1 GIT binary patch literal 6227 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 literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/markdown_it/__pycache__/tree.cpython-310.pyc b/Scripts/Lib/site-packages/markdown_it/__pycache__/tree.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8b64a17bf095a0e24491816a240042974f3abea2 GIT binary patch literal 10943 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 literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/markdown_it/_compat.py b/Scripts/Lib/site-packages/markdown_it/_compat.py new file mode 100644 index 0000000..9d48db4 --- /dev/null +++ b/Scripts/Lib/site-packages/markdown_it/_compat.py @@ -0,0 +1 @@ +from __future__ import annotations diff --git a/Scripts/Lib/site-packages/markdown_it/_punycode.py b/Scripts/Lib/site-packages/markdown_it/_punycode.py new file mode 100644 index 0000000..312048b --- /dev/null +++ b/Scripts/Lib/site-packages/markdown_it/_punycode.py @@ -0,0 +1,67 @@ +# Copyright 2014 Mathias Bynens +# Copyright 2021 Taneli Hukkinen +# +# Permission is hereby granted, free of charge, to any person obtaining +# a copy of this software and associated documentation files (the +# "Software"), to deal in the Software without restriction, including +# without limitation the rights to use, copy, modify, merge, publish, +# distribute, sublicense, and/or sell copies of the Software, and to +# permit persons to whom the Software is furnished to do so, subject to +# the following conditions: +# +# The above copyright notice and this permission notice shall be +# included in all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +import codecs +from collections.abc import Callable +import re + +REGEX_SEPARATORS = re.compile(r"[\x2E\u3002\uFF0E\uFF61]") +REGEX_NON_ASCII = re.compile(r"[^\0-\x7E]") + + +def encode(uni: str) -> str: + return codecs.encode(uni, encoding="punycode").decode() + + +def decode(ascii: str) -> str: + return codecs.decode(ascii, encoding="punycode") # type: ignore + + +def map_domain(string: str, fn: Callable[[str], str]) -> str: + parts = string.split("@") + result = "" + if len(parts) > 1: + # In email addresses, only the domain name should be punycoded. Leave + # the local part (i.e. everything up to `@`) intact. + result = parts[0] + "@" + string = parts[1] + labels = REGEX_SEPARATORS.split(string) + encoded = ".".join(fn(label) for label in labels) + return result + encoded + + +def to_unicode(obj: str) -> str: + def mapping(obj: str) -> str: + if obj.startswith("xn--"): + return decode(obj[4:].lower()) + return obj + + return map_domain(obj, mapping) + + +def to_ascii(obj: str) -> str: + def mapping(obj: str) -> str: + if REGEX_NON_ASCII.search(obj): + return "xn--" + encode(obj) + return obj + + return map_domain(obj, mapping) diff --git a/Scripts/Lib/site-packages/markdown_it/cli/__init__.py b/Scripts/Lib/site-packages/markdown_it/cli/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/Scripts/Lib/site-packages/markdown_it/cli/__pycache__/__init__.cpython-310.pyc b/Scripts/Lib/site-packages/markdown_it/cli/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..827b9220f69449a7afd04bfac25feeda946903a1 GIT binary patch literal 208 zcmYk0u?oU45QbCfAVS~4)j{jvBqHLhUD`Rx(fUTdiO=9F&hAbolYVgD z&wp@mDoIAf^S-~Tkk6ohB40LsZ0yBJP9{-yBPOhW`q;w~GQ7A_s*b~aL3iS4nCXEQ zN=XY@S0ikNs@Rno4tr)DnsI@RmdqjKr4ia$@K<1k!>MLv%}!{cVW#Hl+*0AvQi_yP X(F#ZDO!trBs!_a?xDLMbVcy&OO`Ba+7Sf3T(LninhBjgl26A8*HKt)&`1b6%dSOY|Exd zW;lu?!G7`<=tG14fFgkNxPPM0{SEV46lkCNS_DPX?+hi!&OQ|=g&CbWoXg?)<~!$P zGc$pO=U;#Q`}W-_%laD)PChOMzqKq@`~?EH+7@TrPFUY=+l*uh`Zag!`B-RA1s7%%EMe@Yf=@8X9Lv;{z6)37!}mX0 z@+>rO^7faVmUyAMNjBh}U;Hw9(0eLlIqXCmS(X%?)?in3zUpP$@hFzO^Dr*px^P4E z^CVWHv)+}xTooOx>J&XC7P0qkyd{dx#A8uUEp?OLlCidt54GEmd+B+cT}-3%na2X= zI^H{%$#YQ188T~Tf{^j1cFCDP@t=d4#(x(f>|3kW6Yqe*kH&A$Y;LVvKe85}oF4lm zA~(SobcFUNJ~NIeyLr5jv*dJH z()rV6*u)O4BOrR@ytZDm16#TKHg|dDB}n``i+ir+T8B<4uUmJl;>I43r{7~Vnz4=< zsxn+DwaVM69{IewZm`KC{RWja7x3nju%w(bAVeN>Nw?^|ThGk)vi?lr9`pCHs z5}NxOXqR3{@+q+*B*JFqPuc`ock5`TW)NA&d zT>>z?N}$uewEtr(oy97DxO%+GC(;AL+Pbx8J@WzL#t9Gy1=!b1fz?7-f;WkF3n8K( zLMH`6DRL1b{tCZbf|+o;XMrbyh;f7{`yoT?WpP(Dn zf;IRYST|brnw~KrMcV+(z#r#86WAGBw7>T4Jp-QnjMfv#@&-EX?qtB~>^EZgG(-Hj zPoZB9azLqlkWz_M6^ID9UE0fK*3Z?4aGt?7OK3%i&a1f0Wj20u>>`_H*D&(&Pf^5v zYyVr)>^Jj>iDkHHQAnh4cZ#tTcgaKp_&o^9+F`_3WrI)7D+gnTyDuFRjR7RVrYhWj z=`uu@9hcX5z^C~1OK=vf_6Xi}t3ErrT2jq8C8S&jO9p-V$j0cK^4wT-?Aj4R9N z{$&89ZyqN~q*9D0@wZH@?=x0h1s|V;KR=lrFnwc~i*QBBWO0=;Xctf<>Ewdot5|infBN;f>~~imt~L66B5h_kL6V}0FXG}wV_Wr; z0Jm_8i^AkEqf82B4KjyExV43$WaLh(sOgQy87#T)gg`h0Oz$NwyAriUC;^v<+a@}c- zW=~(g(VhSK_Te*3q`8Z;PJ9EEG}0vTMMzs{1y#_q2oaJr+K(bCKcYx}ilL;!q3)X6 zNY+R}c|f8NCoNS8k_weld!f{lW8{_7TKm)tDh5vM_A6R0#6Ue&-h#Okng)GT8Fr0FOd&;ejLCK; zDjLv^oj`RUY@yQidAml0j*!@eyiIG27vFc}Pwg-FGd@T}6VbyeZlZJ9wCCG%6o2h$ WYEDoKD#1)}A-LgJ=8<&WxBmq!>{bQ< literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/markdown_it/cli/parse.py b/Scripts/Lib/site-packages/markdown_it/cli/parse.py new file mode 100644 index 0000000..fe346b2 --- /dev/null +++ b/Scripts/Lib/site-packages/markdown_it/cli/parse.py @@ -0,0 +1,110 @@ +#!/usr/bin/env python +""" +CLI interface to markdown-it-py + +Parse one or more markdown files, convert each to HTML, and print to stdout. +""" + +from __future__ import annotations + +import argparse +from collections.abc import Iterable, Sequence +import sys + +from markdown_it import __version__ +from markdown_it.main import MarkdownIt + +version_str = f"markdown-it-py [version {__version__}]" + + +def main(args: Sequence[str] | None = None) -> int: + namespace = parse_args(args) + if namespace.filenames: + convert(namespace.filenames) + else: + interactive() + return 0 + + +def convert(filenames: Iterable[str]) -> None: + for filename in filenames: + convert_file(filename) + + +def convert_file(filename: str) -> None: + """ + Parse a Markdown file and dump the output to stdout. + """ + try: + with open(filename, encoding="utf8", errors="ignore") as fin: + rendered = MarkdownIt().render(fin.read()) + print(rendered, end="") + except OSError: + sys.stderr.write(f'Cannot open file "{filename}".\n') + sys.exit(1) + + +def interactive() -> None: + """ + Parse user input, dump to stdout, rinse and repeat. + Python REPL style. + """ + print_heading() + contents = [] + more = False + while True: + try: + prompt, more = ("... ", True) if more else (">>> ", True) + contents.append(input(prompt) + "\n") + except EOFError: + print("\n" + MarkdownIt().render("\n".join(contents)), end="") + more = False + contents = [] + except KeyboardInterrupt: + print("\nExiting.") + break + + +def parse_args(args: Sequence[str] | None) -> argparse.Namespace: + """Parse input CLI arguments.""" + parser = argparse.ArgumentParser( + description="Parse one or more markdown files, " + "convert each to HTML, and print to stdout", + # NOTE: Remember to update README.md w/ the output of `markdown-it -h` + epilog=( + f""" +Interactive: + + $ markdown-it + markdown-it-py [version {__version__}] (interactive) + Type Ctrl-D to complete input, or Ctrl-C to exit. + >>> # Example + ... > markdown *input* + ... +

Example

+
+

markdown input

+
+ +Batch: + + $ markdown-it README.md README.footer.md > index.html +""" + ), + formatter_class=argparse.RawDescriptionHelpFormatter, + ) + parser.add_argument("-v", "--version", action="version", version=version_str) + parser.add_argument( + "filenames", nargs="*", help="specify an optional list of files to convert" + ) + return parser.parse_args(args) + + +def print_heading() -> None: + print(f"{version_str} (interactive)") + print("Type Ctrl-D to complete input, or Ctrl-C to exit.") + + +if __name__ == "__main__": + exit_code = main(sys.argv[1:]) + sys.exit(exit_code) diff --git a/Scripts/Lib/site-packages/markdown_it/common/__init__.py b/Scripts/Lib/site-packages/markdown_it/common/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/Scripts/Lib/site-packages/markdown_it/common/__pycache__/__init__.cpython-310.pyc b/Scripts/Lib/site-packages/markdown_it/common/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..22f295755c4b9126ca5a8f91173fc354dff565d3 GIT binary patch literal 211 zcmYk0u?oU45QbCfAcF7U>Y#OS5)pCMF6|@-Atu3wHocIfYJDT$#Ak37XLl#lNk6#n z=RY_&91aI0@V>u_E}xzLi9%V2adD6!85u|Ejo5De)918bKq@buSJ()c&FNMhEVC`p z9I7(!h&6y6|iH@OFPP?HWl*{GH#Xe4#E{U<>kaMUb3TfpqVWNo@=Un!cl9i a6G~OBJf&09KKe_IqN(Jn`^WWyV)6x4Xgl@* literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/markdown_it/common/__pycache__/entities.cpython-310.pyc b/Scripts/Lib/site-packages/markdown_it/common/__pycache__/entities.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ee1304a753de35ecbbbaeaff64387ccac2fe6c06 GIT binary patch literal 485 zcmYjNJxfC|6ixEptF_QSAP#R5idY?VQ7NJh4%)>|CGv<#u(2=AGfDkyC;bP`f{y+Z ze?wMraB_F@MpV3T&*2d6Irqjin+*i@@$xo!0Dg_)eqFb6B< zJ*lgbc}WjB*n3A|iaO=xQpNa?ok&MDvqNDnMuqar+-Pk^%fF|$tE(5QMY7Dl+Ze?KoX>___r*(8%#iY+8U7Rv6&o?v|N_iau8y=0cnr0#xr77EqplK1g z28Xm9W4;W4@eI_F=2G-%z)>!>L+xoQ!P0`M@i6q1Dn)apQ5YL2S4LQ9XsQf5Ds$jt z%RpMxMq3p$m#9tiFDKiB*Ob@56+LA&_>N|^=V5S2{KSy7eZ_dqc*D44yk)$jtkptM z9+`vFmJ`IrDK}&2Hn+ObPEl$NW!AVoWt}jNS-WAoh-^@IGQA z-VS?Rel*aEN8wd@BLWY#xYu281?uundedVlIjRiY_(jjvMWaI*C8prPRR-55(XHbk atCNCO{gD>$J5Ynwn@N;+#*`&bXMX_<&Lgw{ literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/markdown_it/common/__pycache__/html_re.cpython-310.pyc b/Scripts/Lib/site-packages/markdown_it/common/__pycache__/html_re.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c8925feb9f82e3914f30f798af610bb2395f9525 GIT binary patch literal 1020 zcmZuv%Wl&^6tySLvrYPhAOt9_gi2DmjSw56G$E7-7JZ;3Vlf`aOg*F4suKr$45`&` zL9pac`VHP97OdFtERS++LWNL0@;&FyJ@?FvW}JLJC&BmOBxkN5H3`mI9oHxiri3 zH1GoO44c7OHj8s?4o|UpJk1txp3AQaY>|Us>DzD=R^I8OnNPIY``U)=uT)Q@I?Z zfD&&t$i-OMAYLU%l$+(CSl3_?SW2HDtU{tSG8NE}^=2cuUMK4pi$Ku`Zq}DnRc$to zBLsV`uj3rCjC z@zkT<_Lk9WJv2IPT#S?5$L$?sb8ENTj_13*4!(R*q0@dNxdpiSIGp;pMt1mEz;1j- zs&|YnYtNV|!%BKjh@ToZ)wHaZG3^?}2Dn>S?GiT4D8B4v;g4Ox+|p+z)3 z;Zd$2B*QpE2>n6{^b<-yP!fGdDRhd`=o`wQuPBSYpd9*)rqCy7{-~TS&J^U|wqzLJ literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/markdown_it/common/__pycache__/normalize_url.cpython-310.pyc b/Scripts/Lib/site-packages/markdown_it/common/__pycache__/normalize_url.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a0deac150646145147f312a9f01dc5463ba9a4c6 GIT binary patch literal 2237 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 characters }.""" + +import html.entities + +entities = {name.rstrip(";"): chars for name, chars in html.entities.html5.items()} diff --git a/Scripts/Lib/site-packages/markdown_it/common/html_blocks.py b/Scripts/Lib/site-packages/markdown_it/common/html_blocks.py new file mode 100644 index 0000000..8a3b0b7 --- /dev/null +++ b/Scripts/Lib/site-packages/markdown_it/common/html_blocks.py @@ -0,0 +1,69 @@ +"""List of valid html blocks names, according to commonmark spec +http://jgm.github.io/CommonMark/spec.html#html-blocks +""" + +# see https://spec.commonmark.org/0.31.2/#html-blocks +block_names = [ + "address", + "article", + "aside", + "base", + "basefont", + "blockquote", + "body", + "caption", + "center", + "col", + "colgroup", + "dd", + "details", + "dialog", + "dir", + "div", + "dl", + "dt", + "fieldset", + "figcaption", + "figure", + "footer", + "form", + "frame", + "frameset", + "h1", + "h2", + "h3", + "h4", + "h5", + "h6", + "head", + "header", + "hr", + "html", + "iframe", + "legend", + "li", + "link", + "main", + "menu", + "menuitem", + "nav", + "noframes", + "ol", + "optgroup", + "option", + "p", + "param", + "search", + "section", + "summary", + "table", + "tbody", + "td", + "tfoot", + "th", + "thead", + "title", + "tr", + "track", + "ul", +] diff --git a/Scripts/Lib/site-packages/markdown_it/common/html_re.py b/Scripts/Lib/site-packages/markdown_it/common/html_re.py new file mode 100644 index 0000000..ab822c5 --- /dev/null +++ b/Scripts/Lib/site-packages/markdown_it/common/html_re.py @@ -0,0 +1,39 @@ +"""Regexps to match html elements""" + +import re + +attr_name = "[a-zA-Z_:][a-zA-Z0-9:._-]*" + +unquoted = "[^\"'=<>`\\x00-\\x20]+" +single_quoted = "'[^']*'" +double_quoted = '"[^"]*"' + +attr_value = "(?:" + unquoted + "|" + single_quoted + "|" + double_quoted + ")" + +attribute = "(?:\\s+" + attr_name + "(?:\\s*=\\s*" + attr_value + ")?)" + +open_tag = "<[A-Za-z][A-Za-z0-9\\-]*" + attribute + "*\\s*\\/?>" + +close_tag = "<\\/[A-Za-z][A-Za-z0-9\\-]*\\s*>" +comment = "" +processing = "<[?][\\s\\S]*?[?]>" +declaration = "]*>" +cdata = "" + +HTML_TAG_RE = re.compile( + "^(?:" + + open_tag + + "|" + + close_tag + + "|" + + comment + + "|" + + processing + + "|" + + declaration + + "|" + + cdata + + ")" +) +HTML_OPEN_CLOSE_TAG_STR = "^(?:" + open_tag + "|" + close_tag + ")" +HTML_OPEN_CLOSE_TAG_RE = re.compile(HTML_OPEN_CLOSE_TAG_STR) diff --git a/Scripts/Lib/site-packages/markdown_it/common/normalize_url.py b/Scripts/Lib/site-packages/markdown_it/common/normalize_url.py new file mode 100644 index 0000000..92720b3 --- /dev/null +++ b/Scripts/Lib/site-packages/markdown_it/common/normalize_url.py @@ -0,0 +1,81 @@ +from __future__ import annotations + +from collections.abc import Callable +from contextlib import suppress +import re +from urllib.parse import quote, unquote, urlparse, urlunparse # noqa: F401 + +import mdurl + +from .. import _punycode + +RECODE_HOSTNAME_FOR = ("http:", "https:", "mailto:") + + +def normalizeLink(url: str) -> str: + """Normalize destination URLs in links + + :: + + [label]: destination 'title' + ^^^^^^^^^^^ + """ + parsed = mdurl.parse(url, slashes_denote_host=True) + + # Encode hostnames in urls like: + # `http://host/`, `https://host/`, `mailto:user@host`, `//host/` + # + # We don't encode unknown schemas, because it's likely that we encode + # something we shouldn't (e.g. `skype:name` treated as `skype:host`) + # + if parsed.hostname and ( + not parsed.protocol or parsed.protocol in RECODE_HOSTNAME_FOR + ): + with suppress(Exception): + parsed = parsed._replace(hostname=_punycode.to_ascii(parsed.hostname)) + + return mdurl.encode(mdurl.format(parsed)) + + +def normalizeLinkText(url: str) -> str: + """Normalize autolink content + + :: + + + ~~~~~~~~~~~ + """ + parsed = mdurl.parse(url, slashes_denote_host=True) + + # Encode hostnames in urls like: + # `http://host/`, `https://host/`, `mailto:user@host`, `//host/` + # + # We don't encode unknown schemas, because it's likely that we encode + # something we shouldn't (e.g. `skype:name` treated as `skype:host`) + # + if parsed.hostname and ( + not parsed.protocol or parsed.protocol in RECODE_HOSTNAME_FOR + ): + with suppress(Exception): + parsed = parsed._replace(hostname=_punycode.to_unicode(parsed.hostname)) + + # add '%' to exclude list because of https://github.com/markdown-it/markdown-it/issues/720 + return mdurl.decode(mdurl.format(parsed), mdurl.DECODE_DEFAULT_CHARS + "%") + + +BAD_PROTO_RE = re.compile(r"^(vbscript|javascript|file|data):") +GOOD_DATA_RE = re.compile(r"^data:image\/(gif|png|jpeg|webp);") + + +def validateLink(url: str, validator: Callable[[str], bool] | None = None) -> bool: + """Validate URL link is allowed in output. + + This validator can prohibit more than really needed to prevent XSS. + It's a tradeoff to keep code simple and to be secure by default. + + Note: url should be normalized at this point, and existing entities decoded. + """ + if validator is not None: + return validator(url) + url = url.strip().lower() + return bool(GOOD_DATA_RE.search(url)) if BAD_PROTO_RE.search(url) else True diff --git a/Scripts/Lib/site-packages/markdown_it/common/utils.py b/Scripts/Lib/site-packages/markdown_it/common/utils.py new file mode 100644 index 0000000..11bda64 --- /dev/null +++ b/Scripts/Lib/site-packages/markdown_it/common/utils.py @@ -0,0 +1,313 @@ +"""Utilities for parsing source text""" + +from __future__ import annotations + +import re +from re import Match +from typing import TypeVar +import unicodedata + +from .entities import entities + + +def charCodeAt(src: str, pos: int) -> int | None: + """ + Returns the Unicode value of the character at the specified location. + + @param - index The zero-based index of the desired character. + If there is no character at the specified index, NaN is returned. + + This was added for compatibility with python + """ + try: + return ord(src[pos]) + except IndexError: + return None + + +def charStrAt(src: str, pos: int) -> str | None: + """ + Returns the Unicode value of the character at the specified location. + + @param - index The zero-based index of the desired character. + If there is no character at the specified index, NaN is returned. + + This was added for compatibility with python + """ + try: + return src[pos] + except IndexError: + return None + + +_ItemTV = TypeVar("_ItemTV") + + +def arrayReplaceAt( + src: list[_ItemTV], pos: int, newElements: list[_ItemTV] +) -> list[_ItemTV]: + """ + Remove element from array and put another array at those position. + Useful for some operations with tokens + """ + return src[:pos] + newElements + src[pos + 1 :] + + +def isValidEntityCode(c: int) -> bool: + # broken sequence + if c >= 0xD800 and c <= 0xDFFF: + return False + # never used + if c >= 0xFDD0 and c <= 0xFDEF: + return False + if ((c & 0xFFFF) == 0xFFFF) or ((c & 0xFFFF) == 0xFFFE): + return False + # control codes + if c >= 0x00 and c <= 0x08: + return False + if c == 0x0B: + return False + if c >= 0x0E and c <= 0x1F: + return False + if c >= 0x7F and c <= 0x9F: + return False + # out of range + return not (c > 0x10FFFF) + + +def fromCodePoint(c: int) -> str: + """Convert ordinal to unicode. + + Note, in the original Javascript two string characters were required, + for codepoints larger than `0xFFFF`. + But Python 3 can represent any unicode codepoint in one character. + """ + return chr(c) + + +# UNESCAPE_MD_RE = re.compile(r'\\([!"#$%&\'()*+,\-.\/:;<=>?@[\\\]^_`{|}~])') +# ENTITY_RE_g = re.compile(r'&([a-z#][a-z0-9]{1,31})', re.IGNORECASE) +UNESCAPE_ALL_RE = re.compile( + r'\\([!"#$%&\'()*+,\-.\/:;<=>?@[\\\]^_`{|}~])' + "|" + r"&([a-z#][a-z0-9]{1,31});", + re.IGNORECASE, +) +DIGITAL_ENTITY_BASE10_RE = re.compile(r"#([0-9]{1,8})") +DIGITAL_ENTITY_BASE16_RE = re.compile(r"#x([a-f0-9]{1,8})", re.IGNORECASE) + + +def replaceEntityPattern(match: str, name: str) -> str: + """Convert HTML entity patterns, + see https://spec.commonmark.org/0.30/#entity-references + """ + if name in entities: + return entities[name] + + code: None | int = None + if pat := DIGITAL_ENTITY_BASE10_RE.fullmatch(name): + code = int(pat.group(1), 10) + elif pat := DIGITAL_ENTITY_BASE16_RE.fullmatch(name): + code = int(pat.group(1), 16) + + if code is not None and isValidEntityCode(code): + return fromCodePoint(code) + + return match + + +def unescapeAll(string: str) -> str: + def replacer_func(match: Match[str]) -> str: + escaped = match.group(1) + if escaped: + return escaped + entity = match.group(2) + return replaceEntityPattern(match.group(), entity) + + if "\\" not in string and "&" not in string: + return string + return UNESCAPE_ALL_RE.sub(replacer_func, string) + + +ESCAPABLE = r"""\\!"#$%&'()*+,./:;<=>?@\[\]^`{}|_~-""" +ESCAPE_CHAR = re.compile(r"\\([" + ESCAPABLE + r"])") + + +def stripEscape(string: str) -> str: + """Strip escape \\ characters""" + return ESCAPE_CHAR.sub(r"\1", string) + + +def escapeHtml(raw: str) -> str: + """Replace special characters "&", "<", ">" and '"' to HTML-safe sequences.""" + # like html.escape, but without escaping single quotes + raw = raw.replace("&", "&") # Must be done first! + raw = raw.replace("<", "<") + raw = raw.replace(">", ">") + raw = raw.replace('"', """) + return raw + + +# ////////////////////////////////////////////////////////////////////////////// + +REGEXP_ESCAPE_RE = re.compile(r"[.?*+^$[\]\\(){}|-]") + + +def escapeRE(string: str) -> str: + string = REGEXP_ESCAPE_RE.sub("\\$&", string) + return string + + +# ////////////////////////////////////////////////////////////////////////////// + + +def isSpace(code: int | None) -> bool: + """Check if character code is a whitespace.""" + return code in (0x09, 0x20) + + +def isStrSpace(ch: str | None) -> bool: + """Check if character is a whitespace.""" + return ch in ("\t", " ") + + +MD_WHITESPACE = { + 0x09, # \t + 0x0A, # \n + 0x0B, # \v + 0x0C, # \f + 0x0D, # \r + 0x20, # space + 0xA0, + 0x1680, + 0x202F, + 0x205F, + 0x3000, +} + + +def isWhiteSpace(code: int) -> bool: + r"""Zs (unicode class) || [\t\f\v\r\n]""" + if code >= 0x2000 and code <= 0x200A: + return True + return code in MD_WHITESPACE + + +# ////////////////////////////////////////////////////////////////////////////// + + +def isPunctChar(ch: str) -> bool: + """Check if character is a punctuation character.""" + return unicodedata.category(ch).startswith(("P", "S")) + + +MD_ASCII_PUNCT = { + 0x21, # /* ! */ + 0x22, # /* " */ + 0x23, # /* # */ + 0x24, # /* $ */ + 0x25, # /* % */ + 0x26, # /* & */ + 0x27, # /* ' */ + 0x28, # /* ( */ + 0x29, # /* ) */ + 0x2A, # /* * */ + 0x2B, # /* + */ + 0x2C, # /* , */ + 0x2D, # /* - */ + 0x2E, # /* . */ + 0x2F, # /* / */ + 0x3A, # /* : */ + 0x3B, # /* ; */ + 0x3C, # /* < */ + 0x3D, # /* = */ + 0x3E, # /* > */ + 0x3F, # /* ? */ + 0x40, # /* @ */ + 0x5B, # /* [ */ + 0x5C, # /* \ */ + 0x5D, # /* ] */ + 0x5E, # /* ^ */ + 0x5F, # /* _ */ + 0x60, # /* ` */ + 0x7B, # /* { */ + 0x7C, # /* | */ + 0x7D, # /* } */ + 0x7E, # /* ~ */ +} + + +def isMdAsciiPunct(ch: int) -> bool: + """Markdown ASCII punctuation characters. + + :: + + !, ", #, $, %, &, ', (, ), *, +, ,, -, ., /, :, ;, <, =, >, ?, @, [, \\, ], ^, _, `, {, |, }, or ~ + + See http://spec.commonmark.org/0.15/#ascii-punctuation-character + + Don't confuse with unicode punctuation !!! It lacks some chars in ascii range. + + """ + return ch in MD_ASCII_PUNCT + + +def normalizeReference(string: str) -> str: + """Helper to unify [reference labels].""" + # Trim and collapse whitespace + # + string = re.sub(r"\s+", " ", string.strip()) + + # In node v10 'ẞ'.toLowerCase() === 'Ṿ', which is presumed to be a bug + # fixed in v12 (couldn't find any details). + # + # So treat this one as a special case + # (remove this when node v10 is no longer supported). + # + # if ('ẞ'.toLowerCase() === 'Ṿ') { + # str = str.replace(/ẞ/g, 'ß') + # } + + # .toLowerCase().toUpperCase() should get rid of all differences + # between letter variants. + # + # Simple .toLowerCase() doesn't normalize 125 code points correctly, + # and .toUpperCase doesn't normalize 6 of them (list of exceptions: + # İ, ϴ, ẞ, Ω, K, Å - those are already uppercased, but have differently + # uppercased versions). + # + # Here's an example showing how it happens. Lets take greek letter omega: + # uppercase U+0398 (Θ), U+03f4 (ϴ) and lowercase U+03b8 (θ), U+03d1 (ϑ) + # + # Unicode entries: + # 0398;GREEK CAPITAL LETTER THETA;Lu;0;L;;;;;N;;;;03B8 + # 03B8;GREEK SMALL LETTER THETA;Ll;0;L;;;;;N;;;0398;;0398 + # 03D1;GREEK THETA SYMBOL;Ll;0;L; 03B8;;;;N;GREEK SMALL LETTER SCRIPT THETA;;0398;;0398 + # 03F4;GREEK CAPITAL THETA SYMBOL;Lu;0;L; 0398;;;;N;;;;03B8 + # + # Case-insensitive comparison should treat all of them as equivalent. + # + # But .toLowerCase() doesn't change ϑ (it's already lowercase), + # and .toUpperCase() doesn't change ϴ (already uppercase). + # + # Applying first lower then upper case normalizes any character: + # '\u0398\u03f4\u03b8\u03d1'.toLowerCase().toUpperCase() === '\u0398\u0398\u0398\u0398' + # + # Note: this is equivalent to unicode case folding; unicode normalization + # is a different step that is not required here. + # + # Final result should be uppercased, because it's later stored in an object + # (this avoid a conflict with Object.prototype members, + # most notably, `__proto__`) + # + return string.lower().upper() + + +LINK_OPEN_RE = re.compile(r"^\s]", flags=re.IGNORECASE) +LINK_CLOSE_RE = re.compile(r"^", flags=re.IGNORECASE) + + +def isLinkOpen(string: str) -> bool: + return bool(LINK_OPEN_RE.search(string)) + + +def isLinkClose(string: str) -> bool: + return bool(LINK_CLOSE_RE.search(string)) diff --git a/Scripts/Lib/site-packages/markdown_it/helpers/__init__.py b/Scripts/Lib/site-packages/markdown_it/helpers/__init__.py new file mode 100644 index 0000000..f4e2cd2 --- /dev/null +++ b/Scripts/Lib/site-packages/markdown_it/helpers/__init__.py @@ -0,0 +1,6 @@ +"""Functions for parsing Links""" + +__all__ = ("parseLinkDestination", "parseLinkLabel", "parseLinkTitle") +from .parse_link_destination import parseLinkDestination +from .parse_link_label import parseLinkLabel +from .parse_link_title import parseLinkTitle diff --git a/Scripts/Lib/site-packages/markdown_it/helpers/__pycache__/__init__.cpython-310.pyc b/Scripts/Lib/site-packages/markdown_it/helpers/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9727789c4fff57a82bcdff56e442f3fcc438e0bc GIT binary patch literal 465 zcmY*Wu};G<5RH?RRH#KA5DQDz4A2ft2qA{dM{e9P6X#ff1BNhSA&X>KMmR!& z!?BFZ9`1FxClAU5Ck`LXgDlyd-Zxclg{n;YsB~IWZA7(7r=luM7PZGd!9Ba<#)^vi ztL@Qmc1o9A?(v1NlD{LjONR7M@GCkNxiHK6Z34hl4&VWm5&)lc<3KtUV1F`QKOXHB zrB~B_-oLcWaDWDAguVeGCy8MI literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/markdown_it/helpers/__pycache__/parse_link_destination.cpython-310.pyc b/Scripts/Lib/site-packages/markdown_it/helpers/__pycache__/parse_link_destination.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f2b4b2e87c92f466b7edaeb1e40b5bbf917ad0f0 GIT binary patch literal 1489 zcmZ8hOOG5i5VqZ(o}SqULs-H?2v$N!%z+IDBoK;L2|;j4Mu=U67&Wq*wl~{MKW1$Y zB&!~A*hJ!zKLA$_O<*&GozH!vN6W@Dzg7CA4(SQNoH;Ot|j11%pgEic4a>W=B?(1f~+85wyJ>7MRC zkmIi2I%31^^B4P{B-WYzJS!*r+Blz;iO;ICzYuUR6iq)pP3)~oo14Dbnw7?-$<*A; z^AzGsBf#zkrh6G+*q9?aq4_w_p++3=DRls!-KMKPHEx#s$3Y{iNfS&f*96YnCbY)S zY&l9fj#v+(DVAH9?kYg@nkl9Qkm~>_G{d=a^w9!R)-c<_GUSbPCO>)1><+g7JRH9t zkIX%v=G9EcZ@;5%XJ6UG-jCIBRpl-o%_b)PAgfN3^Tg`-PU5_=`^To3=7~4)QEIcP zcQLGDmwEHnG)X7PUE|^+u@hZ=TdK@oJ2m;#Sa)qoIaQQXwUN_<>HQ{BDl0Ru)E0tr zAt2--@ALD)Dk%qRg`u!Lh)2T?8I?(4lxq4)6_uXlL~ko~HcRrAq^Fe2EAN!D&%ms` z^akt_PXefbTE7vKd{?x*CPenL@-9^zYq~{pFDqt6>prDtT@Mn|8SPX2fQPC1Jn-y- z&85eq)cgVuJ`wiw8b$dooAa92V#4faYw5gGcXR-a*J^phK$G?xD_Vj+B+D0AEtT+i z+B#@={GoV>U2t$wNI=ZiI)ufYl?C}Bx=Vh~2A3mndt{-bdAN$`$)$+cjJdB7O%LZy z&YrXsa}H}C9N%)t*P{(zkCrD;e7H4Peh1>TQ!*k&Tc+M7u1myvHn_A_`9 z)}LSpt@jv3x0yHhWgXO%p#N}%C`Bm^G--AT(NJM|j z=cFW^fe?HU2uQAwWGP)*Ep07&v3(>z~sj-^q`m!qzDY1?+CD}mk2Cw%11(}pnjsO4v literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/markdown_it/helpers/__pycache__/parse_link_label.cpython-310.pyc b/Scripts/Lib/site-packages/markdown_it/helpers/__pycache__/parse_link_label.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5581088a1d38df67717c3112d866146c74dc13a1 GIT binary patch literal 938 zcmYjP!EVz)5Z(3Kj^iekC`go>)e||;R;UsPA%v)?1Zty72^ZJM+IT0#wPTyzO=&Af zT=)<;a_1xX244|}o_g;EW}O~7*1q-3&YRhtnX=#a3Ci{Fzq7tg$RDHJl`bl;aj9Jd zK|&&^uyQ)LLW>fyCTy^T15CJJiw>}RZ73W7W>vLNRZ$bDbW zQWZ=WMWWNP2)I&sPxNEM&tFa)JRH0~;5!VL9R%*&0w zk4ybR5Om3Ea!QuAu$E3u1$#(p5);9euCe2y8Ii}hTSk9GmYupI?97sb+7;|MK|fbG zMi=hV`D{GN(nDmY_IIZyKPV;0=%B~@+SoDnCP8iA@Sh>S=+x%SZu8QS$$6VsJ*XY| zp^eB^=QYC)c*CoICHwi3LA6;krFEOLgiH#^z6EVhTH ztBH_E_!Int{1bkI-w@(qpLpSk2g*6KxwHj5@^^eZ_PHNdD=R$$@*6TQ zk0oICV48gZNd`nx$#Pn-0V}+LN68mNdXird$z3+LnKYTI$9bN@ z?^lKg+#XD`1E9!&f`v@dfhR)=dN25ZOQ!r0lY#627f25@cU>S3Y+_aHyX7<~MOu|M zD{JL~BGD729jhkJn^wko#%dR6WoupbQwmzH2d>fFr!dVu07)AnNOwUgPzF2$>H+nx zcrFPT!26%i;RbOe_H_pq+DCx+6Wv7!04}NHM&+YRqSt`^>xaRo!@fGTX{d%H?PqJ#9%n~h!Una&X9UZD-nuDvugH&fzYld)ZXfmrloF?fc zIaX$fKFjJ^DKh(Dtn#VS=D`#*BQP_f&CKrfxeJBJ%FGIZCYnuvfHL~(3>BHBiBX^y==${MC6k8W4dsC1vXoU7qAYj>j(jP5aKOh3te z(FS?}D2FqA!t^IHzaOS|4(-iUtI#iE_F7pW@Beh6ytq62`Sn*L zdY0L7Rz^pViK7S>U$?2aA3-X?=ZG?9aux{E)gQCLvaXf`r^0jhxt8Mr0L-QWu ztBNwrBLE%*G-RRI1H>BM@;LG|1RAiA^(cPZ(9)c4z}%$pkA;5*Yumu-_d$f-0Ek2E zNLi&q43^WXD5`Q7!jPMVJFO>J?X92A%SyYr`yZ|4!p{~R`Upd1-UZ-fovnIolfPh; N-As69UNE-$_dl+$hwuOZ literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/markdown_it/helpers/parse_link_destination.py b/Scripts/Lib/site-packages/markdown_it/helpers/parse_link_destination.py new file mode 100644 index 0000000..c98323c --- /dev/null +++ b/Scripts/Lib/site-packages/markdown_it/helpers/parse_link_destination.py @@ -0,0 +1,83 @@ +""" +Parse link destination +""" + +from ..common.utils import charCodeAt, unescapeAll + + +class _Result: + __slots__ = ("ok", "pos", "str") + + def __init__(self) -> None: + self.ok = False + self.pos = 0 + self.str = "" + + +def parseLinkDestination(string: str, pos: int, maximum: int) -> _Result: + start = pos + result = _Result() + + if charCodeAt(string, pos) == 0x3C: # /* < */ + pos += 1 + while pos < maximum: + code = charCodeAt(string, pos) + if code == 0x0A: # /* \n */) + return result + if code == 0x3C: # / * < * / + return result + if code == 0x3E: # /* > */) { + result.pos = pos + 1 + result.str = unescapeAll(string[start + 1 : pos]) + result.ok = True + return result + + if code == 0x5C and pos + 1 < maximum: # \ + pos += 2 + continue + + pos += 1 + + # no closing '>' + return result + + # this should be ... } else { ... branch + + level = 0 + while pos < maximum: + code = charCodeAt(string, pos) + + if code is None or code == 0x20: + break + + # ascii control characters + if code < 0x20 or code == 0x7F: + break + + if code == 0x5C and pos + 1 < maximum: + if charCodeAt(string, pos + 1) == 0x20: + break + pos += 2 + continue + + if code == 0x28: # /* ( */) + level += 1 + if level > 32: + return result + + if code == 0x29: # /* ) */) + if level == 0: + break + level -= 1 + + pos += 1 + + if start == pos: + return result + if level != 0: + return result + + result.str = unescapeAll(string[start:pos]) + result.pos = pos + result.ok = True + return result diff --git a/Scripts/Lib/site-packages/markdown_it/helpers/parse_link_label.py b/Scripts/Lib/site-packages/markdown_it/helpers/parse_link_label.py new file mode 100644 index 0000000..c80da5a --- /dev/null +++ b/Scripts/Lib/site-packages/markdown_it/helpers/parse_link_label.py @@ -0,0 +1,44 @@ +""" +Parse link label + +this function assumes that first character ("[") already matches +returns the end of the label + +""" + +from markdown_it.rules_inline import StateInline + + +def parseLinkLabel(state: StateInline, start: int, disableNested: bool = False) -> int: + labelEnd = -1 + oldPos = state.pos + found = False + + state.pos = start + 1 + level = 1 + + while state.pos < state.posMax: + marker = state.src[state.pos] + if marker == "]": + level -= 1 + if level == 0: + found = True + break + + prevPos = state.pos + state.md.inline.skipToken(state) + if marker == "[": + if prevPos == state.pos - 1: + # increase level if we find text `[`, + # which is not a part of any token + level += 1 + elif disableNested: + state.pos = oldPos + return -1 + if found: + labelEnd = state.pos + + # restore old state + state.pos = oldPos + + return labelEnd diff --git a/Scripts/Lib/site-packages/markdown_it/helpers/parse_link_title.py b/Scripts/Lib/site-packages/markdown_it/helpers/parse_link_title.py new file mode 100644 index 0000000..a38ff0d --- /dev/null +++ b/Scripts/Lib/site-packages/markdown_it/helpers/parse_link_title.py @@ -0,0 +1,75 @@ +"""Parse link title""" + +from ..common.utils import charCodeAt, unescapeAll + + +class _State: + __slots__ = ("can_continue", "marker", "ok", "pos", "str") + + def __init__(self) -> None: + self.ok = False + """if `true`, this is a valid link title""" + self.can_continue = False + """if `true`, this link can be continued on the next line""" + self.pos = 0 + """if `ok`, it's the position of the first character after the closing marker""" + self.str = "" + """if `ok`, it's the unescaped title""" + self.marker = 0 + """expected closing marker character code""" + + def __str__(self) -> str: + return self.str + + +def parseLinkTitle( + string: str, start: int, maximum: int, prev_state: _State | None = None +) -> _State: + """Parse link title within `str` in [start, max] range, + or continue previous parsing if `prev_state` is defined (equal to result of last execution). + """ + pos = start + state = _State() + + if prev_state is not None: + # this is a continuation of a previous parseLinkTitle call on the next line, + # used in reference links only + state.str = prev_state.str + state.marker = prev_state.marker + else: + if pos >= maximum: + return state + + marker = charCodeAt(string, pos) + + # /* " */ /* ' */ /* ( */ + if marker != 0x22 and marker != 0x27 and marker != 0x28: + return state + + start += 1 + pos += 1 + + # if opening marker is "(", switch it to closing marker ")" + if marker == 0x28: + marker = 0x29 + + state.marker = marker + + while pos < maximum: + code = charCodeAt(string, pos) + if code == state.marker: + state.pos = pos + 1 + state.str += unescapeAll(string[start:pos]) + state.ok = True + return state + elif code == 0x28 and state.marker == 0x29: # /* ( */ /* ) */ + return state + elif code == 0x5C and pos + 1 < maximum: # /* \ */ + pos += 1 + + pos += 1 + + # no closing marker found, but this link title may continue on the next line (for references) + state.can_continue = True + state.str += unescapeAll(string[start:pos]) + return state diff --git a/Scripts/Lib/site-packages/markdown_it/main.py b/Scripts/Lib/site-packages/markdown_it/main.py new file mode 100644 index 0000000..bf9fd18 --- /dev/null +++ b/Scripts/Lib/site-packages/markdown_it/main.py @@ -0,0 +1,350 @@ +from __future__ import annotations + +from collections.abc import Callable, Generator, Iterable, Mapping, MutableMapping +from contextlib import contextmanager +from typing import Any, Literal, overload + +from . import helpers, presets +from .common import normalize_url, utils +from .parser_block import ParserBlock +from .parser_core import ParserCore +from .parser_inline import ParserInline +from .renderer import RendererHTML, RendererProtocol +from .rules_core.state_core import StateCore +from .token import Token +from .utils import EnvType, OptionsDict, OptionsType, PresetType + +try: + import linkify_it +except ModuleNotFoundError: + linkify_it = None + + +_PRESETS: dict[str, PresetType] = { + "default": presets.default.make(), + "js-default": presets.js_default.make(), + "zero": presets.zero.make(), + "commonmark": presets.commonmark.make(), + "gfm-like": presets.gfm_like.make(), +} + + +class MarkdownIt: + def __init__( + self, + config: str | PresetType = "commonmark", + options_update: Mapping[str, Any] | None = None, + *, + renderer_cls: Callable[[MarkdownIt], RendererProtocol] = RendererHTML, + ): + """Main parser class + + :param config: name of configuration to load or a pre-defined dictionary + :param options_update: dictionary that will be merged into ``config["options"]`` + :param renderer_cls: the class to load as the renderer: + ``self.renderer = renderer_cls(self) + """ + # add modules + self.utils = utils + self.helpers = helpers + + # initialise classes + self.inline = ParserInline() + self.block = ParserBlock() + self.core = ParserCore() + self.renderer = renderer_cls(self) + self.linkify = linkify_it.LinkifyIt() if linkify_it else None + + # set the configuration + if options_update and not isinstance(options_update, Mapping): + # catch signature change where renderer_cls was not used as a key-word + raise TypeError( + f"options_update should be a mapping: {options_update}" + "\n(Perhaps you intended this to be the renderer_cls?)" + ) + self.configure(config, options_update=options_update) + + def __repr__(self) -> str: + return f"{self.__class__.__module__}.{self.__class__.__name__}()" + + @overload + def __getitem__(self, name: Literal["inline"]) -> ParserInline: ... + + @overload + def __getitem__(self, name: Literal["block"]) -> ParserBlock: ... + + @overload + def __getitem__(self, name: Literal["core"]) -> ParserCore: ... + + @overload + def __getitem__(self, name: Literal["renderer"]) -> RendererProtocol: ... + + @overload + def __getitem__(self, name: str) -> Any: ... + + def __getitem__(self, name: str) -> Any: + return { + "inline": self.inline, + "block": self.block, + "core": self.core, + "renderer": self.renderer, + }[name] + + def set(self, options: OptionsType) -> None: + """Set parser options (in the same format as in constructor). + Probably, you will never need it, but you can change options after constructor call. + + __Note:__ To achieve the best possible performance, don't modify a + `markdown-it` instance options on the fly. If you need multiple configurations + it's best to create multiple instances and initialize each with separate config. + """ + self.options = OptionsDict(options) + + def configure( + self, presets: str | PresetType, options_update: Mapping[str, Any] | None = None + ) -> MarkdownIt: + """Batch load of all options and component settings. + This is an internal method, and you probably will not need it. + But if you will - see available presets and data structure + [here](https://github.com/markdown-it/markdown-it/tree/master/lib/presets) + + We strongly recommend to use presets instead of direct config loads. + That will give better compatibility with next versions. + """ + if isinstance(presets, str): + if presets not in _PRESETS: + raise KeyError(f"Wrong `markdown-it` preset '{presets}', check name") + config = _PRESETS[presets] + else: + config = presets + + if not config: + raise ValueError("Wrong `markdown-it` config, can't be empty") + + options = config.get("options", {}) or {} + if options_update: + options = {**options, **options_update} # type: ignore + + self.set(options) # type: ignore + + if "components" in config: + for name, component in config["components"].items(): + rules = component.get("rules", None) + if rules: + self[name].ruler.enableOnly(rules) + rules2 = component.get("rules2", None) + if rules2: + self[name].ruler2.enableOnly(rules2) + + return self + + def get_all_rules(self) -> dict[str, list[str]]: + """Return the names of all active rules.""" + rules = { + chain: self[chain].ruler.get_all_rules() + for chain in ["core", "block", "inline"] + } + rules["inline2"] = self.inline.ruler2.get_all_rules() + return rules + + def get_active_rules(self) -> dict[str, list[str]]: + """Return the names of all active rules.""" + rules = { + chain: self[chain].ruler.get_active_rules() + for chain in ["core", "block", "inline"] + } + rules["inline2"] = self.inline.ruler2.get_active_rules() + return rules + + def enable( + self, names: str | Iterable[str], ignoreInvalid: bool = False + ) -> MarkdownIt: + """Enable list or rules. (chainable) + + :param names: rule name or list of rule names to enable. + :param ignoreInvalid: set `true` to ignore errors when rule not found. + + It will automatically find appropriate components, + containing rules with given names. If rule not found, and `ignoreInvalid` + not set - throws exception. + + Example:: + + md = MarkdownIt().enable(['sub', 'sup']).disable('smartquotes') + + """ + result = [] + + if isinstance(names, str): + names = [names] + + for chain in ["core", "block", "inline"]: + result.extend(self[chain].ruler.enable(names, True)) + result.extend(self.inline.ruler2.enable(names, True)) + + missed = [name for name in names if name not in result] + if missed and not ignoreInvalid: + raise ValueError(f"MarkdownIt. Failed to enable unknown rule(s): {missed}") + + return self + + def disable( + self, names: str | Iterable[str], ignoreInvalid: bool = False + ) -> MarkdownIt: + """The same as [[MarkdownIt.enable]], but turn specified rules off. (chainable) + + :param names: rule name or list of rule names to disable. + :param ignoreInvalid: set `true` to ignore errors when rule not found. + + """ + result = [] + + if isinstance(names, str): + names = [names] + + for chain in ["core", "block", "inline"]: + result.extend(self[chain].ruler.disable(names, True)) + result.extend(self.inline.ruler2.disable(names, True)) + + missed = [name for name in names if name not in result] + if missed and not ignoreInvalid: + raise ValueError(f"MarkdownIt. Failed to disable unknown rule(s): {missed}") + return self + + @contextmanager + def reset_rules(self) -> Generator[None, None, None]: + """A context manager, that will reset the current enabled rules on exit.""" + chain_rules = self.get_active_rules() + yield + for chain, rules in chain_rules.items(): + if chain != "inline2": + self[chain].ruler.enableOnly(rules) + self.inline.ruler2.enableOnly(chain_rules["inline2"]) + + def add_render_rule( + self, name: str, function: Callable[..., Any], fmt: str = "html" + ) -> None: + """Add a rule for rendering a particular Token type. + + Only applied when ``renderer.__output__ == fmt`` + """ + if self.renderer.__output__ == fmt: + self.renderer.rules[name] = function.__get__(self.renderer) # type: ignore + + def use( + self, plugin: Callable[..., None], *params: Any, **options: Any + ) -> MarkdownIt: + """Load specified plugin with given params into current parser instance. (chainable) + + It's just a sugar to call `plugin(md, params)` with curring. + + Example:: + + def func(tokens, idx): + tokens[idx].content = tokens[idx].content.replace('foo', 'bar') + md = MarkdownIt().use(plugin, 'foo_replace', 'text', func) + + """ + plugin(self, *params, **options) + return self + + def parse(self, src: str, env: EnvType | None = None) -> list[Token]: + """Parse the source string to a token stream + + :param src: source string + :param env: environment sandbox + + Parse input string and return list of block tokens (special token type + "inline" will contain list of inline tokens). + + `env` is used to pass data between "distributed" rules and return additional + metadata like reference info, needed for the renderer. It also can be used to + inject data in specific cases. Usually, you will be ok to pass `{}`, + and then pass updated object to renderer. + """ + env = {} if env is None else env + if not isinstance(env, MutableMapping): + raise TypeError(f"Input data should be a MutableMapping, not {type(env)}") + if not isinstance(src, str): + raise TypeError(f"Input data should be a string, not {type(src)}") + state = StateCore(src, self, env) + self.core.process(state) + return state.tokens + + def render(self, src: str, env: EnvType | None = None) -> Any: + """Render markdown string into html. It does all magic for you :). + + :param src: source string + :param env: environment sandbox + :returns: The output of the loaded renderer + + `env` can be used to inject additional metadata (`{}` by default). + But you will not need it with high probability. See also comment + in [[MarkdownIt.parse]]. + """ + env = {} if env is None else env + return self.renderer.render(self.parse(src, env), self.options, env) + + def parseInline(self, src: str, env: EnvType | None = None) -> list[Token]: + """The same as [[MarkdownIt.parse]] but skip all block rules. + + :param src: source string + :param env: environment sandbox + + It returns the + block tokens list with the single `inline` element, containing parsed inline + tokens in `children` property. Also updates `env` object. + """ + env = {} if env is None else env + if not isinstance(env, MutableMapping): + raise TypeError(f"Input data should be an MutableMapping, not {type(env)}") + if not isinstance(src, str): + raise TypeError(f"Input data should be a string, not {type(src)}") + state = StateCore(src, self, env) + state.inlineMode = True + self.core.process(state) + return state.tokens + + def renderInline(self, src: str, env: EnvType | None = None) -> Any: + """Similar to [[MarkdownIt.render]] but for single paragraph content. + + :param src: source string + :param env: environment sandbox + + Similar to [[MarkdownIt.render]] but for single paragraph content. Result + will NOT be wrapped into `

` tags. + """ + env = {} if env is None else env + return self.renderer.render(self.parseInline(src, env), self.options, env) + + # link methods + + def validateLink(self, url: str) -> bool: + """Validate if the URL link is allowed in output. + + This validator can prohibit more than really needed to prevent XSS. + It's a tradeoff to keep code simple and to be secure by default. + + Note: the url should be normalized at this point, and existing entities decoded. + """ + return normalize_url.validateLink(url) + + def normalizeLink(self, url: str) -> str: + """Normalize destination URLs in links + + :: + + [label]: destination 'title' + ^^^^^^^^^^^ + """ + return normalize_url.normalizeLink(url) + + def normalizeLinkText(self, link: str) -> str: + """Normalize autolink content + + :: + + + ~~~~~~~~~~~ + """ + return normalize_url.normalizeLinkText(link) diff --git a/Scripts/Lib/site-packages/markdown_it/parser_block.py b/Scripts/Lib/site-packages/markdown_it/parser_block.py new file mode 100644 index 0000000..50a7184 --- /dev/null +++ b/Scripts/Lib/site-packages/markdown_it/parser_block.py @@ -0,0 +1,113 @@ +"""Block-level tokenizer.""" + +from __future__ import annotations + +from collections.abc import Callable +import logging +from typing import TYPE_CHECKING + +from . import rules_block +from .ruler import Ruler +from .rules_block.state_block import StateBlock +from .token import Token +from .utils import EnvType + +if TYPE_CHECKING: + from markdown_it import MarkdownIt + +LOGGER = logging.getLogger(__name__) + + +RuleFuncBlockType = Callable[[StateBlock, int, int, bool], bool] +"""(state: StateBlock, startLine: int, endLine: int, silent: bool) -> matched: bool) + +`silent` disables token generation, useful for lookahead. +""" + +_rules: list[tuple[str, RuleFuncBlockType, list[str]]] = [ + # First 2 params - rule name & source. Secondary array - list of rules, + # which can be terminated by this one. + ("table", rules_block.table, ["paragraph", "reference"]), + ("code", rules_block.code, []), + ("fence", rules_block.fence, ["paragraph", "reference", "blockquote", "list"]), + ( + "blockquote", + rules_block.blockquote, + ["paragraph", "reference", "blockquote", "list"], + ), + ("hr", rules_block.hr, ["paragraph", "reference", "blockquote", "list"]), + ("list", rules_block.list_block, ["paragraph", "reference", "blockquote"]), + ("reference", rules_block.reference, []), + ("html_block", rules_block.html_block, ["paragraph", "reference", "blockquote"]), + ("heading", rules_block.heading, ["paragraph", "reference", "blockquote"]), + ("lheading", rules_block.lheading, []), + ("paragraph", rules_block.paragraph, []), +] + + +class ParserBlock: + """ + ParserBlock#ruler -> Ruler + + [[Ruler]] instance. Keep configuration of block rules. + """ + + def __init__(self) -> None: + self.ruler = Ruler[RuleFuncBlockType]() + for name, rule, alt in _rules: + self.ruler.push(name, rule, {"alt": alt}) + + def tokenize(self, state: StateBlock, startLine: int, endLine: int) -> None: + """Generate tokens for input range.""" + rules = self.ruler.getRules("") + line = startLine + maxNesting = state.md.options.maxNesting + hasEmptyLines = False + + while line < endLine: + state.line = line = state.skipEmptyLines(line) + if line >= endLine: + break + if state.sCount[line] < state.blkIndent: + # Termination condition for nested calls. + # Nested calls currently used for blockquotes & lists + break + if state.level >= maxNesting: + # If nesting level exceeded - skip tail to the end. + # That's not ordinary situation and we should not care about content. + state.line = endLine + break + + # Try all possible rules. + # On success, rule should: + # - update `state.line` + # - update `state.tokens` + # - return True + for rule in rules: + if rule(state, line, endLine, False): + break + + # set state.tight if we had an empty line before current tag + # i.e. latest empty line should not count + state.tight = not hasEmptyLines + + line = state.line + + # paragraph might "eat" one newline after it in nested lists + if (line - 1) < endLine and state.isEmpty(line - 1): + hasEmptyLines = True + + if line < endLine and state.isEmpty(line): + hasEmptyLines = True + line += 1 + state.line = line + + def parse( + self, src: str, md: MarkdownIt, env: EnvType, outTokens: list[Token] + ) -> list[Token] | None: + """Process input string and push block tokens into `outTokens`.""" + if not src: + return None + state = StateBlock(src, md, env, outTokens) + self.tokenize(state, state.line, state.lineMax) + return state.tokens diff --git a/Scripts/Lib/site-packages/markdown_it/parser_core.py b/Scripts/Lib/site-packages/markdown_it/parser_core.py new file mode 100644 index 0000000..8f5b921 --- /dev/null +++ b/Scripts/Lib/site-packages/markdown_it/parser_core.py @@ -0,0 +1,46 @@ +""" +* class Core +* +* Top-level rules executor. Glues block/inline parsers and does intermediate +* transformations. +""" + +from __future__ import annotations + +from collections.abc import Callable + +from .ruler import Ruler +from .rules_core import ( + block, + inline, + linkify, + normalize, + replace, + smartquotes, + text_join, +) +from .rules_core.state_core import StateCore + +RuleFuncCoreType = Callable[[StateCore], None] + +_rules: list[tuple[str, RuleFuncCoreType]] = [ + ("normalize", normalize), + ("block", block), + ("inline", inline), + ("linkify", linkify), + ("replacements", replace), + ("smartquotes", smartquotes), + ("text_join", text_join), +] + + +class ParserCore: + def __init__(self) -> None: + self.ruler = Ruler[RuleFuncCoreType]() + for name, rule in _rules: + self.ruler.push(name, rule) + + def process(self, state: StateCore) -> None: + """Executes core chain rules.""" + for rule in self.ruler.getRules(""): + rule(state) diff --git a/Scripts/Lib/site-packages/markdown_it/parser_inline.py b/Scripts/Lib/site-packages/markdown_it/parser_inline.py new file mode 100644 index 0000000..26ec2e6 --- /dev/null +++ b/Scripts/Lib/site-packages/markdown_it/parser_inline.py @@ -0,0 +1,148 @@ +"""Tokenizes paragraph content.""" + +from __future__ import annotations + +from collections.abc import Callable +from typing import TYPE_CHECKING + +from . import rules_inline +from .ruler import Ruler +from .rules_inline.state_inline import StateInline +from .token import Token +from .utils import EnvType + +if TYPE_CHECKING: + from markdown_it import MarkdownIt + + +# Parser rules +RuleFuncInlineType = Callable[[StateInline, bool], bool] +"""(state: StateInline, silent: bool) -> matched: bool) + +`silent` disables token generation, useful for lookahead. +""" +_rules: list[tuple[str, RuleFuncInlineType]] = [ + ("text", rules_inline.text), + ("linkify", rules_inline.linkify), + ("newline", rules_inline.newline), + ("escape", rules_inline.escape), + ("backticks", rules_inline.backtick), + ("strikethrough", rules_inline.strikethrough.tokenize), + ("emphasis", rules_inline.emphasis.tokenize), + ("link", rules_inline.link), + ("image", rules_inline.image), + ("autolink", rules_inline.autolink), + ("html_inline", rules_inline.html_inline), + ("entity", rules_inline.entity), +] + +# Note `rule2` ruleset was created specifically for emphasis/strikethrough +# post-processing and may be changed in the future. +# +# Don't use this for anything except pairs (plugins working with `balance_pairs`). +# +RuleFuncInline2Type = Callable[[StateInline], None] +_rules2: list[tuple[str, RuleFuncInline2Type]] = [ + ("balance_pairs", rules_inline.link_pairs), + ("strikethrough", rules_inline.strikethrough.postProcess), + ("emphasis", rules_inline.emphasis.postProcess), + # rules for pairs separate '**' into its own text tokens, which may be left unused, + # rule below merges unused segments back with the rest of the text + ("fragments_join", rules_inline.fragments_join), +] + + +class ParserInline: + def __init__(self) -> None: + self.ruler = Ruler[RuleFuncInlineType]() + for name, rule in _rules: + self.ruler.push(name, rule) + # Second ruler used for post-processing (e.g. in emphasis-like rules) + self.ruler2 = Ruler[RuleFuncInline2Type]() + for name, rule2 in _rules2: + self.ruler2.push(name, rule2) + + def skipToken(self, state: StateInline) -> None: + """Skip single token by running all rules in validation mode; + returns `True` if any rule reported success + """ + ok = False + pos = state.pos + rules = self.ruler.getRules("") + maxNesting = state.md.options["maxNesting"] + cache = state.cache + + if pos in cache: + state.pos = cache[pos] + return + + if state.level < maxNesting: + for rule in rules: + # Increment state.level and decrement it later to limit recursion. + # It's harmless to do here, because no tokens are created. + # But ideally, we'd need a separate private state variable for this purpose. + state.level += 1 + ok = rule(state, True) + state.level -= 1 + if ok: + break + else: + # Too much nesting, just skip until the end of the paragraph. + # + # NOTE: this will cause links to behave incorrectly in the following case, + # when an amount of `[` is exactly equal to `maxNesting + 1`: + # + # [[[[[[[[[[[[[[[[[[[[[foo]() + # + # TODO: remove this workaround when CM standard will allow nested links + # (we can replace it by preventing links from being parsed in + # validation mode) + # + state.pos = state.posMax + + if not ok: + state.pos += 1 + cache[pos] = state.pos + + def tokenize(self, state: StateInline) -> None: + """Generate tokens for input range.""" + ok = False + rules = self.ruler.getRules("") + end = state.posMax + maxNesting = state.md.options["maxNesting"] + + while state.pos < end: + # Try all possible rules. + # On success, rule should: + # + # - update `state.pos` + # - update `state.tokens` + # - return true + + if state.level < maxNesting: + for rule in rules: + ok = rule(state, False) + if ok: + break + + if ok: + if state.pos >= end: + break + continue + + state.pending += state.src[state.pos] + state.pos += 1 + + if state.pending: + state.pushPending() + + def parse( + self, src: str, md: MarkdownIt, env: EnvType, tokens: list[Token] + ) -> list[Token]: + """Process input string and push inline tokens into `tokens`""" + state = StateInline(src, md, env, tokens) + self.tokenize(state) + rules2 = self.ruler2.getRules("") + for rule in rules2: + rule(state) + return state.tokens diff --git a/Scripts/Lib/site-packages/markdown_it/port.yaml b/Scripts/Lib/site-packages/markdown_it/port.yaml new file mode 100644 index 0000000..ce2dde9 --- /dev/null +++ b/Scripts/Lib/site-packages/markdown_it/port.yaml @@ -0,0 +1,48 @@ +- package: markdown-it/markdown-it + version: 14.1.0 + commit: 0fe7ccb4b7f30236fb05f623be6924961d296d3d + date: Mar 19, 2024 + notes: + - Rename variables that use python built-in names, e.g. + - `max` -> `maximum` + - `len` -> `length` + - `str` -> `string` + - | + Convert JS `for` loops to `while` loops + this is generally the main difference between the codes, + because in python you can't do e.g. `for {i=1;i PresetType: + config = commonmark.make() + config["components"]["core"]["rules"].append("linkify") + config["components"]["block"]["rules"].append("table") + config["components"]["inline"]["rules"].extend(["strikethrough", "linkify"]) + config["components"]["inline"]["rules2"].append("strikethrough") + config["options"]["linkify"] = True + config["options"]["html"] = True + return config diff --git a/Scripts/Lib/site-packages/markdown_it/presets/__pycache__/__init__.cpython-310.pyc b/Scripts/Lib/site-packages/markdown_it/presets/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2612175db449e4213c087a1475482c586ac3ed1e GIT binary patch literal 1256 zcmZ8h&2Aev5GGgLAFCEnq=AFr`~(&a4WZVD9r5c4EfD)<{O#GWQ<___3qE@`w>Ea#E;tx zZ0IqFI|U_Bi3Apj#!XTt7>SV}deo4TG-;VOS(#xZ(=tCtA{E&yB(j%DS%~}vnikVE zjBC?0rfs<0gb`TM3SKr`A`;)bo{=l(&L9Z(+CJ zTGMZ~6mH*{R<<7Y8~Oxl0mX>ud$@)1@|Y@5HLrKDhr8X0R?dS-HV_B^Ex)ACmKV?I zT4^t>YB$G2CV4!XGF6&-v3h7eU$y%*d&Al@1u=SCXl5V~4-06J2QGVO6X8Q*u zIEQY`zv8_&@jC8A{^Dip;OxnCHXIL`mA<#_os!3H#F9S&aleD|=rw+WenYwJ)_iXri9(P~@{#9YKq;bCi~;=<*iFvgF|ci4 z??7r}Wk_wWr7QD&r$V~Yrrw2gXjsTp3l3RM?sTophC|;hLvFfQL>I``H+o724hGV2 zpl-&yPPQUsL%jrWHmgm$R-3oT9zi|+zAR6x1vqPMdQpA-Eqkt3mfNd}EsfExTJ$?v zeXq=xUvn#}3+|x3bSaxob1$nGwN;&W6`ZOZ(BY&5itvqeRUD?sPNw|48^*-V8B?wD zjLo_$dk><22I4*iRU}9F2!9T82tR_aCpW`4i`Q68^H4C>@dTH$ZVCYz`5Ic*B)%sRz*!2kZdE6`%@4aB^@T57x!>AOIxS8X(i& rEA0lXfIb>?8#y){xdk4}Yh#2^oc){ccae@R{;d&onB2!Cxi|U;tOif` literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/markdown_it/presets/__pycache__/commonmark.cpython-310.pyc b/Scripts/Lib/site-packages/markdown_it/presets/__pycache__/commonmark.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d21cb088ad462f9bdf2f26a02e42d86b2d943bd4 GIT binary patch literal 1095 zcmY*Y&5qg_84mwl z2^>BFvTp-p5s6sLkc@joP#m#@qb*`7n|+&-gk>+HWq$qRQ{DGk_0)8j@hu&t!+LN+ zD|=p+>sDCI#CFS##ZKeFaLb)NKU%(94o1LJA@^7)>{{xuaF|M|FD?FJ{rnlGieaX? z#Y#KO72QaV8{H3DapmkqS)SpI)J=DRUC_Z%C@B=bz}6Yjan~9>?%MJd0z}K$mtRdG ztoH-=nc;3UssYXaR>;v)Ap04xkO7v!mrnbPMJziMEZ;?JejAH;l8PX~O?eym$!*L| z4~Q)e343rrkf(>MS8u?-)}N23u-)Ap?rwg#yZP?!=KJeHQnefDj-M?HQug#}#jO)+ z=hN2plH>rU6WcvGar;5<3>{i-eD=+#9k*nD6^yoX{; zaC_KoLkCVyCKtyLXV5G=?!kfTe6ILqsI*T*;LC(8HWa`&ydJ19);xktlLuSy+=o`V zM}|xuuCpl}?=O=8&Tvz}r3qzUBA*}I*O#yR?5D`Q8BG3Vf9}aewF1A5)FZ3j`=EX% zHinvgRj;*{wpxuHuRayJrPtK3>N&NJ8@vXbk~&_!Xp9(~t>9Hq2k%udrk(%-X} y<}EN>LG|;xX1b|sKO3Ep)`X#$l&_K9OOHX}=O6W&LEn5F!^vjA(&)5!l>7~S7*-ts literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/markdown_it/presets/__pycache__/default.cpython-310.pyc b/Scripts/Lib/site-packages/markdown_it/presets/__pycache__/default.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3038ee8a16de65f34d9396514ae9ca8013985eb8 GIT binary patch literal 636 zcmY*Wy^hmB5MHkxJ24juXpo?YD3Dy_j)Dpygg~N#fOM%WOV-9aiC12G&F&hKR4I4} zkirA-COpHI0ferir(zrq9n5Gx&FGt*pB*(G#{}i)m+$4xh>)*+@UQq7JV7&e5jaT+ z_c)baO;hR-?gL#?9`M2YAoY28PLgPQr)Ik1>RmGxcEVxFI%y}WwL&%K^nzlU#B=d$ z4F>Fd(}D{%*iJVEGXF_G*fTV9520^+RR4$pCw#CU3DPSM_dbvI6x$DH7aX&ncPEI4 z-Ttuqbl813>^^Qsk~OQ2tzepr(zs^p85k>?l?zH+%QTXrsl;-VUbCB4tu$*(&@Oz_ zDGMeYuKT1{olV1q23DCg?#tm4OR-KzrC5~`%_hDJ3Z=mf7E%?J3q^xUvJZg*$mdUkgDU^{RjCAvCvF!vV5+TG})}HAbToQ$+k@M>?Jc6 z^kfcoE18AtywIYxCc{^m5f-K`D=J*sWPfjx3wzcczuuf(-sZI3xS(bgggA@2g+P7k zq4_kV6g`hd!H@WM_)T9&a+U-x%5$!YJa>c63TbqI)FXMd${%lxgd0Ap74IZG_AoMi Kmw=qm8~$%usIzbY literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/markdown_it/presets/__pycache__/zero.cpython-310.pyc b/Scripts/Lib/site-packages/markdown_it/presets/__pycache__/zero.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..77d3c2678fee4c26a980ab33a9f9a5951aba85d2 GIT binary patch literal 870 zcmY*X&5G1O5KcOo%p|+(&*I5b*xSJFtcWKOSrzuAqp<5G1VT@`leE+6j@=!0WXLhVkpuGm^VjOp$Z@`On}5ZF%?YSJ z07IO_Aud7OtxP>WzP$duIMo~@8VSK?%6$@!9Cd!x! zJmZv1;+L8hEsqPS;u?z<^Ej8HU}dX1m@Hz=>W0&(mW1j_d-hw=*?Jn5udb3@B*skAg*Y8&$ z$D(X;Nsq>164iJyrP=^X>sO}c$&fQKXT>tvG0R4l3O5y1HhA4iLv=D*bfD+0NrIW8 zc&?MEO9%7{wn)N?l@$jycA#2L_1L$ekgA53tf(E#xXkA^U;=7T8ydPW*(=FJ5<&xU zU(5QPH`$wE$eYuw!A$AoS^?pj3Zr}c7^xx9N`k(~-LYr=Tq>$UaH_74V`PW2F-!_= zqg>XF6y4!Zj=Ir7{+J&+xt~s6-l3A zZK#URDZD&3G(F1|Ym83eRH~VwM-9&B&|00=Sj~yN5E(PaSEHwoS1^c^W@-Hz&uMqp zevFZaTu=`M2*Jul1OGC*J#u{%xc)EyXYft!19l3%9A+7jd6wBhYZ%w6o31|im(kVg YCIsy00Zc2r!b7(!6@c-b-NC;18xPt59{>OV literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/markdown_it/presets/commonmark.py b/Scripts/Lib/site-packages/markdown_it/presets/commonmark.py new file mode 100644 index 0000000..ed0de0f --- /dev/null +++ b/Scripts/Lib/site-packages/markdown_it/presets/commonmark.py @@ -0,0 +1,75 @@ +"""Commonmark default options. + +This differs to presets.default, +primarily in that it allows HTML and does not enable components: + +- block: table +- inline: strikethrough +""" + +from ..utils import PresetType + + +def make() -> PresetType: + return { + "options": { + "maxNesting": 20, # Internal protection, recursion limit + "html": True, # Enable HTML tags in source, + # this is just a shorthand for .enable(["html_inline", "html_block"]) + # used by the linkify rule: + "linkify": False, # autoconvert URL-like texts to links + # used by the replacements and smartquotes rules + # Enable some language-neutral replacements + quotes beautification + "typographer": False, + # used by the smartquotes rule: + # Double + single quotes replacement pairs, when typographer enabled, + # and smartquotes on. Could be either a String or an Array. + # + # For example, you can use '«»„“' for Russian, '„“‚‘' for German, + # and ['«\xA0', '\xA0»', '‹\xA0', '\xA0›'] for French (including nbsp). + "quotes": "\u201c\u201d\u2018\u2019", # /* “”‘’ */ + # Renderer specific; these options are used directly in the HTML renderer + "xhtmlOut": True, # Use '/' to close single tags (
) + "breaks": False, # Convert '\n' in paragraphs into
+ "langPrefix": "language-", # CSS language prefix for fenced blocks + # Highlighter function. Should return escaped HTML, + # or '' if the source string is not changed and should be escaped externally. + # If result starts with PresetType: + return { + "options": { + "maxNesting": 100, # Internal protection, recursion limit + "html": False, # Enable HTML tags in source + # this is just a shorthand for .disable(["html_inline", "html_block"]) + # used by the linkify rule: + "linkify": False, # autoconvert URL-like texts to links + # used by the replacements and smartquotes rules: + # Enable some language-neutral replacements + quotes beautification + "typographer": False, + # used by the smartquotes rule: + # Double + single quotes replacement pairs, when typographer enabled, + # and smartquotes on. Could be either a String or an Array. + # For example, you can use '«»„“' for Russian, '„“‚‘' for German, + # and ['«\xA0', '\xA0»', '‹\xA0', '\xA0›'] for French (including nbsp). + "quotes": "\u201c\u201d\u2018\u2019", # /* “”‘’ */ + # Renderer specific; these options are used directly in the HTML renderer + "xhtmlOut": False, # Use '/' to close single tags (
) + "breaks": False, # Convert '\n' in paragraphs into
+ "langPrefix": "language-", # CSS language prefix for fenced blocks + # Highlighter function. Should return escaped HTML, + # or '' if the source string is not changed and should be escaped externally. + # If result starts with PresetType: + return { + "options": { + "maxNesting": 20, # Internal protection, recursion limit + "html": False, # Enable HTML tags in source + # this is just a shorthand for .disable(["html_inline", "html_block"]) + # used by the linkify rule: + "linkify": False, # autoconvert URL-like texts to links + # used by the replacements and smartquotes rules: + # Enable some language-neutral replacements + quotes beautification + "typographer": False, + # used by the smartquotes rule: + # Double + single quotes replacement pairs, when typographer enabled, + # and smartquotes on. Could be either a String or an Array. + # For example, you can use '«»„“' for Russian, '„“‚‘' for German, + # and ['«\xA0', '\xA0»', '‹\xA0', '\xA0›'] for French (including nbsp). + "quotes": "\u201c\u201d\u2018\u2019", # /* “”‘’ */ + # Renderer specific; these options are used directly in the HTML renderer + "xhtmlOut": False, # Use '/' to close single tags (
) + "breaks": False, # Convert '\n' in paragraphs into
+ "langPrefix": "language-", # CSS language prefix for fenced blocks + # Highlighter function. Should return escaped HTML, + # or '' if the source string is not changed and should be escaped externally. + # If result starts with Any: ... + + +class RendererHTML(RendererProtocol): + """Contains render rules for tokens. Can be updated and extended. + + Example: + + Each rule is called as independent static function with fixed signature: + + :: + + class Renderer: + def token_type_name(self, tokens, idx, options, env) { + # ... + return renderedHTML + + :: + + class CustomRenderer(RendererHTML): + def strong_open(self, tokens, idx, options, env): + return '' + def strong_close(self, tokens, idx, options, env): + return '' + + md = MarkdownIt(renderer_cls=CustomRenderer) + + result = md.render(...) + + See https://github.com/markdown-it/markdown-it/blob/master/lib/renderer.js + for more details and examples. + """ + + __output__ = "html" + + def __init__(self, parser: Any = None): + self.rules = { + k: v + for k, v in inspect.getmembers(self, predicate=inspect.ismethod) + if not (k.startswith("render") or k.startswith("_")) + } + + def render( + self, tokens: Sequence[Token], options: OptionsDict, env: EnvType + ) -> str: + """Takes token stream and generates HTML. + + :param tokens: list on block tokens to render + :param options: params of parser instance + :param env: additional data from parsed input + + """ + result = "" + + for i, token in enumerate(tokens): + if token.type == "inline": + if token.children: + result += self.renderInline(token.children, options, env) + elif token.type in self.rules: + result += self.rules[token.type](tokens, i, options, env) + else: + result += self.renderToken(tokens, i, options, env) + + return result + + def renderInline( + self, tokens: Sequence[Token], options: OptionsDict, env: EnvType + ) -> str: + """The same as ``render``, but for single token of `inline` type. + + :param tokens: list on block tokens to render + :param options: params of parser instance + :param env: additional data from parsed input (references, for example) + """ + result = "" + + for i, token in enumerate(tokens): + if token.type in self.rules: + result += self.rules[token.type](tokens, i, options, env) + else: + result += self.renderToken(tokens, i, options, env) + + return result + + def renderToken( + self, + tokens: Sequence[Token], + idx: int, + options: OptionsDict, + env: EnvType, + ) -> str: + """Default token renderer. + + Can be overridden by custom function + + :param idx: token index to render + :param options: params of parser instance + """ + result = "" + needLf = False + token = tokens[idx] + + # Tight list paragraphs + if token.hidden: + return "" + + # Insert a newline between hidden paragraph and subsequent opening + # block-level tag. + # + # For example, here we should insert a newline before blockquote: + # - a + # > + # + if token.block and token.nesting != -1 and idx and tokens[idx - 1].hidden: + result += "\n" + + # Add token name, e.g. ``. + # + needLf = False + + result += ">\n" if needLf else ">" + + return result + + @staticmethod + def renderAttrs(token: Token) -> str: + """Render token attributes to string.""" + result = "" + + for key, value in token.attrItems(): + result += " " + escapeHtml(key) + '="' + escapeHtml(str(value)) + '"' + + return result + + def renderInlineAsText( + self, + tokens: Sequence[Token] | None, + options: OptionsDict, + env: EnvType, + ) -> str: + """Special kludge for image `alt` attributes to conform CommonMark spec. + + Don't try to use it! Spec requires to show `alt` content with stripped markup, + instead of simple escaping. + + :param tokens: list on block tokens to render + :param options: params of parser instance + :param env: additional data from parsed input + """ + result = "" + + for token in tokens or []: + if token.type == "text": + result += token.content + elif token.type == "image": + if token.children: + result += self.renderInlineAsText(token.children, options, env) + elif token.type == "softbreak": + result += "\n" + + return result + + ################################################### + + def code_inline( + self, tokens: Sequence[Token], idx: int, options: OptionsDict, env: EnvType + ) -> str: + token = tokens[idx] + return ( + "" + + escapeHtml(tokens[idx].content) + + "" + ) + + def code_block( + self, + tokens: Sequence[Token], + idx: int, + options: OptionsDict, + env: EnvType, + ) -> str: + token = tokens[idx] + + return ( + "" + + escapeHtml(tokens[idx].content) + + "\n" + ) + + def fence( + self, + tokens: Sequence[Token], + idx: int, + options: OptionsDict, + env: EnvType, + ) -> str: + token = tokens[idx] + info = unescapeAll(token.info).strip() if token.info else "" + langName = "" + langAttrs = "" + + if info: + arr = info.split(maxsplit=1) + langName = arr[0] + if len(arr) == 2: + langAttrs = arr[1] + + if options.highlight: + highlighted = options.highlight( + token.content, langName, langAttrs + ) or escapeHtml(token.content) + else: + highlighted = escapeHtml(token.content) + + if highlighted.startswith("" + + highlighted + + "\n" + ) + + return ( + "

"
+            + highlighted
+            + "
\n" + ) + + def image( + self, + tokens: Sequence[Token], + idx: int, + options: OptionsDict, + env: EnvType, + ) -> str: + token = tokens[idx] + + # "alt" attr MUST be set, even if empty. Because it's mandatory and + # should be placed on proper position for tests. + if token.children: + token.attrSet("alt", self.renderInlineAsText(token.children, options, env)) + else: + token.attrSet("alt", "") + + return self.renderToken(tokens, idx, options, env) + + def hardbreak( + self, tokens: Sequence[Token], idx: int, options: OptionsDict, env: EnvType + ) -> str: + return "
\n" if options.xhtmlOut else "
\n" + + def softbreak( + self, tokens: Sequence[Token], idx: int, options: OptionsDict, env: EnvType + ) -> str: + return ( + ("
\n" if options.xhtmlOut else "
\n") if options.breaks else "\n" + ) + + def text( + self, tokens: Sequence[Token], idx: int, options: OptionsDict, env: EnvType + ) -> str: + return escapeHtml(tokens[idx].content) + + def html_block( + self, tokens: Sequence[Token], idx: int, options: OptionsDict, env: EnvType + ) -> str: + return tokens[idx].content + + def html_inline( + self, tokens: Sequence[Token], idx: int, options: OptionsDict, env: EnvType + ) -> str: + return tokens[idx].content diff --git a/Scripts/Lib/site-packages/markdown_it/ruler.py b/Scripts/Lib/site-packages/markdown_it/ruler.py new file mode 100644 index 0000000..91ab580 --- /dev/null +++ b/Scripts/Lib/site-packages/markdown_it/ruler.py @@ -0,0 +1,275 @@ +""" +class Ruler + +Helper class, used by [[MarkdownIt#core]], [[MarkdownIt#block]] and +[[MarkdownIt#inline]] to manage sequences of functions (rules): + +- keep rules in defined order +- assign the name to each rule +- enable/disable rules +- add/replace rules +- allow assign rules to additional named chains (in the same) +- caching lists of active rules + +You will not need use this class directly until write plugins. For simple +rules control use [[MarkdownIt.disable]], [[MarkdownIt.enable]] and +[[MarkdownIt.use]]. +""" + +from __future__ import annotations + +from collections.abc import Iterable +from dataclasses import dataclass, field +from typing import TYPE_CHECKING, Generic, TypedDict, TypeVar +import warnings + +from .utils import EnvType + +if TYPE_CHECKING: + from markdown_it import MarkdownIt + + +class StateBase: + def __init__(self, src: str, md: MarkdownIt, env: EnvType): + self.src = src + self.env = env + self.md = md + + @property + def src(self) -> str: + return self._src + + @src.setter + def src(self, value: str) -> None: + self._src = value + self._srcCharCode: tuple[int, ...] | None = None + + @property + def srcCharCode(self) -> tuple[int, ...]: + warnings.warn( + "StateBase.srcCharCode is deprecated. Use StateBase.src instead.", + DeprecationWarning, + stacklevel=2, + ) + if self._srcCharCode is None: + self._srcCharCode = tuple(ord(c) for c in self._src) + return self._srcCharCode + + +class RuleOptionsType(TypedDict, total=False): + alt: list[str] + + +RuleFuncTv = TypeVar("RuleFuncTv") +"""A rule function, whose signature is dependent on the state type.""" + + +@dataclass(slots=True) +class Rule(Generic[RuleFuncTv]): + name: str + enabled: bool + fn: RuleFuncTv = field(repr=False) + alt: list[str] + + +class Ruler(Generic[RuleFuncTv]): + def __init__(self) -> None: + # List of added rules. + self.__rules__: list[Rule[RuleFuncTv]] = [] + # Cached rule chains. + # First level - chain name, '' for default. + # Second level - diginal anchor for fast filtering by charcodes. + self.__cache__: dict[str, list[RuleFuncTv]] | None = None + + def __find__(self, name: str) -> int: + """Find rule index by name""" + for i, rule in enumerate(self.__rules__): + if rule.name == name: + return i + return -1 + + def __compile__(self) -> None: + """Build rules lookup cache""" + chains = {""} + # collect unique names + for rule in self.__rules__: + if not rule.enabled: + continue + for name in rule.alt: + chains.add(name) + self.__cache__ = {} + for chain in chains: + self.__cache__[chain] = [] + for rule in self.__rules__: + if not rule.enabled: + continue + if chain and (chain not in rule.alt): + continue + self.__cache__[chain].append(rule.fn) + + def at( + self, ruleName: str, fn: RuleFuncTv, options: RuleOptionsType | None = None + ) -> None: + """Replace rule by name with new function & options. + + :param ruleName: rule name to replace. + :param fn: new rule function. + :param options: new rule options (not mandatory). + :raises: KeyError if name not found + """ + index = self.__find__(ruleName) + options = options or {} + if index == -1: + raise KeyError(f"Parser rule not found: {ruleName}") + self.__rules__[index].fn = fn + self.__rules__[index].alt = options.get("alt", []) + self.__cache__ = None + + def before( + self, + beforeName: str, + ruleName: str, + fn: RuleFuncTv, + options: RuleOptionsType | None = None, + ) -> None: + """Add new rule to chain before one with given name. + + :param beforeName: new rule will be added before this one. + :param ruleName: new rule will be added before this one. + :param fn: new rule function. + :param options: new rule options (not mandatory). + :raises: KeyError if name not found + """ + index = self.__find__(beforeName) + options = options or {} + if index == -1: + raise KeyError(f"Parser rule not found: {beforeName}") + self.__rules__.insert( + index, Rule[RuleFuncTv](ruleName, True, fn, options.get("alt", [])) + ) + self.__cache__ = None + + def after( + self, + afterName: str, + ruleName: str, + fn: RuleFuncTv, + options: RuleOptionsType | None = None, + ) -> None: + """Add new rule to chain after one with given name. + + :param afterName: new rule will be added after this one. + :param ruleName: new rule will be added after this one. + :param fn: new rule function. + :param options: new rule options (not mandatory). + :raises: KeyError if name not found + """ + index = self.__find__(afterName) + options = options or {} + if index == -1: + raise KeyError(f"Parser rule not found: {afterName}") + self.__rules__.insert( + index + 1, Rule[RuleFuncTv](ruleName, True, fn, options.get("alt", [])) + ) + self.__cache__ = None + + def push( + self, ruleName: str, fn: RuleFuncTv, options: RuleOptionsType | None = None + ) -> None: + """Push new rule to the end of chain. + + :param ruleName: new rule will be added to the end of chain. + :param fn: new rule function. + :param options: new rule options (not mandatory). + + """ + self.__rules__.append( + Rule[RuleFuncTv](ruleName, True, fn, (options or {}).get("alt", [])) + ) + self.__cache__ = None + + def enable( + self, names: str | Iterable[str], ignoreInvalid: bool = False + ) -> list[str]: + """Enable rules with given names. + + :param names: name or list of rule names to enable. + :param ignoreInvalid: ignore errors when rule not found + :raises: KeyError if name not found and not ignoreInvalid + :return: list of found rule names + """ + if isinstance(names, str): + names = [names] + result: list[str] = [] + for name in names: + idx = self.__find__(name) + if (idx < 0) and ignoreInvalid: + continue + if (idx < 0) and not ignoreInvalid: + raise KeyError(f"Rules manager: invalid rule name {name}") + self.__rules__[idx].enabled = True + result.append(name) + self.__cache__ = None + return result + + def enableOnly( + self, names: str | Iterable[str], ignoreInvalid: bool = False + ) -> list[str]: + """Enable rules with given names, and disable everything else. + + :param names: name or list of rule names to enable. + :param ignoreInvalid: ignore errors when rule not found + :raises: KeyError if name not found and not ignoreInvalid + :return: list of found rule names + """ + if isinstance(names, str): + names = [names] + for rule in self.__rules__: + rule.enabled = False + return self.enable(names, ignoreInvalid) + + def disable( + self, names: str | Iterable[str], ignoreInvalid: bool = False + ) -> list[str]: + """Disable rules with given names. + + :param names: name or list of rule names to enable. + :param ignoreInvalid: ignore errors when rule not found + :raises: KeyError if name not found and not ignoreInvalid + :return: list of found rule names + """ + if isinstance(names, str): + names = [names] + result = [] + for name in names: + idx = self.__find__(name) + if (idx < 0) and ignoreInvalid: + continue + if (idx < 0) and not ignoreInvalid: + raise KeyError(f"Rules manager: invalid rule name {name}") + self.__rules__[idx].enabled = False + result.append(name) + self.__cache__ = None + return result + + def getRules(self, chainName: str = "") -> list[RuleFuncTv]: + """Return array of active functions (rules) for given chain name. + It analyzes rules configuration, compiles caches if not exists and returns result. + + Default chain name is `''` (empty string). It can't be skipped. + That's done intentionally, to keep signature monomorphic for high speed. + + """ + if self.__cache__ is None: + self.__compile__() + assert self.__cache__ is not None + # Chain can be empty, if rules disabled. But we still have to return Array. + return self.__cache__.get(chainName, []) or [] + + def get_all_rules(self) -> list[str]: + """Return all available rule names.""" + return [r.name for r in self.__rules__] + + def get_active_rules(self) -> list[str]: + """Return the active rule names.""" + return [r.name for r in self.__rules__ if r.enabled] diff --git a/Scripts/Lib/site-packages/markdown_it/rules_block/__init__.py b/Scripts/Lib/site-packages/markdown_it/rules_block/__init__.py new file mode 100644 index 0000000..517da23 --- /dev/null +++ b/Scripts/Lib/site-packages/markdown_it/rules_block/__init__.py @@ -0,0 +1,27 @@ +__all__ = ( + "StateBlock", + "blockquote", + "code", + "fence", + "heading", + "hr", + "html_block", + "lheading", + "list_block", + "paragraph", + "reference", + "table", +) + +from .blockquote import blockquote +from .code import code +from .fence import fence +from .heading import heading +from .hr import hr +from .html_block import html_block +from .lheading import lheading +from .list import list_block +from .paragraph import paragraph +from .reference import reference +from .state_block import StateBlock +from .table import table diff --git a/Scripts/Lib/site-packages/markdown_it/rules_block/__pycache__/__init__.cpython-310.pyc b/Scripts/Lib/site-packages/markdown_it/rules_block/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9d82867227574dbeb3e1b640482d1d2a6a5ebaa5 GIT binary patch literal 677 zcmZXQyN=W_6ozxZXJ%_E+7z%9R0tuoHB2*GS&=MH;+;fuJPyYm!NQB|EAS>fgIh#F zMNft8ED{oqa{kYD{K+}8ZL7eJU*CRAT@(c0-Q?e4*Mhh9RS&j|0SU%%j35*t2}8#* zL?R-Q=LBLAlh|_#iAYG|IfGQBB=wv_CNh$FE+7{<$vu})h?10^E2u<8D$h04q9(QH z1{%?l)^iIRu^}7Fn|;u2yT(*|%{0FOIh;&&aPi?HH8;s1M{d$Pejd2VC(g$Cd^FL7 zrkb<>>OVCF{N1TwR{C+ZTo|$=vSl(Q@;i=Rl4^DU{xh^4=|XfJvJtP5tdXvft&y)$ ztWmDv`fktFYdp#tJKJ?zlT*q7DD`&lMrTInMQ26lL}xUKyD&N{I;S_1TDfklzkyDU zPW?5&E61+<{z6{$JN`)zATMM8;w61IACTdFPj96J)$cAR-rvk}VxJj~{d=Y~$EUYk zEMV3Be!zLrs<)?lHEaHCVZ(_Xx#|VO(8!8u0$i=vxTbVI&zjQb%e^UH3pv`o TH|}ogi7iRcY@6`^=PLXI+5w^J literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/markdown_it/rules_block/__pycache__/blockquote.cpython-310.pyc b/Scripts/Lib/site-packages/markdown_it/rules_block/__pycache__/blockquote.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3c90c5063584cdb3a10ae62981ac5fd193fc6a8f GIT binary patch literal 3193 zcmbtW&5Inz6|btU?&<0I*xA+Wmn_M`#+W7k$RS`Ogt25RCPW{JcZqQ`VVIq2?Y3s7 zd$zhK){1IEP)Nva3FN+e2?_ZFbo4PfB{eC$RfzGRx7e)X!} z@4fe{S08Dk5itDz_NOoRpS;A_7t}cabI^E~F`m5-K{3ULY{Wy(Nftv93gsv{bVf3i z(7DPRx+5?2IE%z_CGt;rSXIkvNwt11!$65`wzYCf_*=ZJ^^zpbdwHBD+1*nyRR(dk zo$Kv!uOFTAnQ9w@qMO6CKPcUdWbL7+tU}iL?Kp`_Crjn0({UeXlbU=ueeQxC*9GY%nn5C*C~vgdcpih{>X7znxpdcN6l0GgH%F z&atLrW)Zo?(tI3jTJT@ln6Zr!vw20&@;sAGX8SSUw!i+M@t}FUq-rO;Si$&KaY2EB zZp(0*tDAR>N$fzF5$UWlv#*sK6+j;GXBc6WW ztkzkvw#a@B_;1be|7(q`qekjfBS-u&T~x{XtV-6YO5p1k3&j6bC$E}ynk|g|!=h3s zhjW#JzTbTl&VSTO{g_y@Je*+Pn6ccR*9)+|n&)23Dh9g0OltB@f=s-c8ki2|=!guX5Npd?*iqKv ztcs|2+4kBwKA+>Fl4wlZuE#bayJD8$<2ubcR?~)Ad7u5bRcx9~gHc8(_pwC(J+QyQ zQC9~)#QUzHB?Q>6Q_7VIp&3K8!Ic=6Out*EiPd+*5L6P*x{yq z;?Uj`bzfNx%azI z`8(RhnX~hhUwz7}r*s~j(($V4oGXJf)6-}8g-d6OZaR*Vuysz+AEsHfwOM+%?|tyW ztq)6AMZ1%|urkDHc&GO;^mgy`^dJkpe0x8>pNAf_)NaICx1Xx0Yq3fv)BQ5|UZSFh zx3o@m=w-ENnS(S1;$@W8U1n-k^>5O{g($CXDl*EssQc}2OHA*IQKahKrf%n{#oBZ6la*>RRGT zmsrb69+xuCqtWk~{uWqzT7=g+cY%n~n5fRTztg=P@9LgD>~wc<4az!qCxfVSGfww= zk9t~l?jX-dU)_mD;~_%oZ1;6M&a)1zIvH?Z2Wf-eUX*oc?o|3o(v9;sY4)>e@w|Cf zj&F<)^##OG$D92KOuC7ydu$%NxQ6LY>e=o414qFaBDc|YOxY68BH^x8*^!^RtDYf{R!^DQMaqE0f;tgzls zN24@(W0J?iY`WfS_Le=J=Gk2v>-{ziB3=63ZqgeO&MM*4yxRgi_xBn(@UM?jg>rd^ RwzrG|!d#2GsDss}^KY+(3-AB{ literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/markdown_it/rules_block/__pycache__/code.cpython-310.pyc b/Scripts/Lib/site-packages/markdown_it/rules_block/__pycache__/code.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2b728540748a74d82cda813757cf38373bc15218 GIT binary patch literal 924 zcmYjQPiqu06i+glzuk(6wigSFRB%Dt3I(BvNNX)Ztzdf^2Ey#TxSj6o%ru#$wq$R9 zkX>(n6FevUiKKHb-35(3aHRvD^ub38WB{QIK1C40(ia|wz>dkFceS=xf$R^9 zDjWBoZ1;7YW>WX-6hOjY;~E2zqic$MK-=iJNgKIq-?px{avS2Nn!~)5tuIUH1W)IM zESuI-vYDzfPK?4@rMT){r>`YKWnR8E4^AV#u5sx}f^5P0?U+tAvvopSi|0 zY)sU1eBl@@QLP&noEK!~p09LP_HOInopERUd?h4?8zPYAE^u(cTR1ZhPaa0(;2U!0 zuM%Jj4#6rho(S-sobeGuIfM{FijJ<SRSYYMBdZe~lr6Wi zvbbH_@>?3645HRM{BUrv|FLyJ4yU7dIoIO9P3-4-e^NJ>EiWvdyq@aQI2g$eULA+S zV*IWIi>#kjm=6lhB&`R&vLTdfnP-^=7@efLiGxypzG;u!RAX6wBkDeCe_zBq$q}lu zqMAaowJi?wp-R$BSz7SAlLbQHSjYimtc&Qt~8~+Ob3u!|O7HXwx10l+EB85;rt8sEf kix083&R++@E%v~^30_Vrz?5IvwrQIrCjslRh&^)t09sJ=9smFU literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/markdown_it/rules_block/__pycache__/fence.cpython-310.pyc b/Scripts/Lib/site-packages/markdown_it/rules_block/__pycache__/fence.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a2541085d4f382191175fb0ab0c5f5d1e0d539e5 GIT binary patch literal 1414 zcmZWp&1)n@6tAzY{+OO|H_9en)+l%wPZBL zgc?tJ^Xxfu67Qac+ywuFK6nuiIeE`zebuu_z;5b&RlQg5z4}#E{eFPp`{(z+=hr?$ ze_7@BXJ@~Fp)C30$YSESr`q*(_B#Wj4s0 zZvfnbu?Iu{32_^Ai3K*uU_%UDI~cNEF@sKs!S5pA)bee#azJKQUU7pi9fQ|cy)VcJ z8As4DuMX0`;TDptOdAl^~Kdi59F>6<7QO-^a3r!3sm|HHNp8MM)v;(Ev{aH z4|F4hZv4Cu|F6*4c)xZtJ>#r#SGnEuw}lXV#UO9Hx9zJBnKSi=a7!#a=qQRqh}XA> z5Z;=u`le_4@c?XZ87y2_5kmL)nt}C>34q>(Q$#1>jDWmlJ2UJZUfc&PNR^he-D6o! z<>TEC^+&hH(`yP?7?KMX7I=84jyMnzojRm-x8{7IgDSqh8S z!1A+wr79H#cJZiArc$>oxA125QqNnKmd91(&18pp-MZ5XsTwY09lzevu~Vp(kbrHW`FL4o@-Yv$@6xV5}aR8r{3E9Ked zra4WO$?_MZ?!)}eS@d{(2vgI%T8i<*NAW>AQHeSq$46C_>+#_-ljA38HBT-QCC1Ma z4ac#2B#SzS8$2FORa!TC3|?cMHu7UAI!k6!k8MSwdR4}0^FS?gsW;tx(4EL9^|=aR zdw7J9u7PY}M&7{z4hX{`jDUDR84a=5Ndq##cRGu;65?SG6S_kJyh8{hFbnqA)|0#r zD1jIu(13b`Kx9G!xv9L%((NYBmFOMZNAt+T^G#rdr<~6U;)hy*MtD tLdLPOFHlQUI5IYY{&ZowM&2Ut*)`s0MJ1r@&n*tMeY8ACDj*-we*rL#ZTJ8H literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/markdown_it/rules_block/__pycache__/heading.cpython-310.pyc b/Scripts/Lib/site-packages/markdown_it/rules_block/__pycache__/heading.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a80c504d9edbbb48331c7778003c07ea85270737 GIT binary patch literal 1572 zcma)6-ESL35Z}Gq`>=g>(=;LpFIb8SSPCu=NJtezkg6?6X^?OP;$-P`zTMi_`?7Y= zG_f{M0n`Wnh~%yOC%p2yuLz_(@m?Ov%-K;RAtBb<*_rWgW_IRgw(54<1lC`_{xSQ_ zCFFM$ZY~>y&j_LF3t%`238&o3X<>yHMc&Ts(B_OgIV+sd0iDae+%3G&qeR#jzGz+2 zu+2C52EY9S3p?B%k-?qi?&q~Q>CZ&W({kE>e{a9P2YWai4z4i#fSOKRmQ@|sX;rGD zD{G}}r)pHo(L7GX6# z+_+NI3t1)%Y_1oU#E1O=6aN$9)Z~J4s)?rB()J~!smU`-(_K7mJh#ai1D+v&=4f)^ zXnINIJKP!}#?=h;u6DVd*=k=i?PQJ|;=i1od75$dF?d*dZ?NBzvcpL2oj#%je;n+; zBPD%K8ZVYyHeLvv9(OX@oap7hy%qn@n;JDT+QzGfMdFTo14_c_}kyX2h8m)Zv`4f#$fvE;|l`H7=^=qBL~2^!L`wxM`VV`w@w) z8g{RdNnR;&^%~aTj&Tpadi?m|*T&&uvY3YM@L!G3Fmo7HLzR%4ac;sbaBvUn=g7!%;t^D;{7dvcKrwJOoQb+w1{ zQ{%1qE?h)?17wqKS#8?380-z8%=W28do-YMzTUBXJm1KF@A!ZLT)=wtZHiWJS%~gg zTR>fk60_uc;QG2$*d42SwUBFy)^J!k86d&yG~6ICUKH^vi6YaEqNfXZkwg?peDsW$ zSJNppWEdn>QB>t{QKz|Deeh26-mMZ|zj{+qAA*69#*d;hF3`^w2ExlVpW+627X$d8 Z6cvZUeTrSGdO#QnEZ+*O021xl{{SZJnPC6` literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/markdown_it/rules_block/__pycache__/hr.cpython-310.pyc b/Scripts/Lib/site-packages/markdown_it/rules_block/__pycache__/hr.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6e64def1bde0448470788154845019c0371f9dab GIT binary patch literal 1161 zcmYilO^f72v?{55PItS=!XPRJ!9y?3?t+4_%Cft%uEOjnc7qrKF`cUEWI9PTuPW|L zlR4=RnK}AT1ph%@#lxJu&qZHlmSL)RuimToQSYndbQ%*}|Ni+;^%o=LZ_C_WR{9J< z{eXy*lyJ(OhNhIeoHb7CrY7q%XZ$unF*GVG^rIXJRd7S78Pl%-9C2k1j|Vgk|ek?>XB zh)x?Hgzlj$u^6|@79m9V8bQVASCb3M=|BcLID>nMX%FPY8R&cVbnUrM&Kc6o(&yel zF1&$WQuxTGy$ev{4-6&#Po#?((ZShcO6>lbSdBMiVBGz}`tUjXmBN?ymb>S{zy@za z;Fntu;jLyk_!}3NIvm2^s9IW!!QMHL4Z-N`t+jfNy!CQC>bP*iebmL4?qmFUgwe)4 zz#U$?=Mm;ePNKClMETy}TTlDsK0$6`t>)3u?tQGAfVx{J6+B5kQJ>y{Z@?CE?i%{w znjRRMU%ALHjZ*=P4VoJN@cUP`_I^;fS8*r?Rki>f}>sV{E$X|3{7a*?mb zR=NsG6MxrnarzQK0$9I>*~u_$+pEgBZLv-L7M=Cmc?>?vA+X4{5+bYaZly9oTb$Ny z-avkN&mMoCAJ!`<;4I6RQZ_0(>Ng^L zQOl~>6~MFCIKu*xrD(Se4qdh=q26khp;e}8Ee>!|zr1vO8jQcta@fI~>XXZ@k z4C&F=d}4w;=d#Rm6Et$Y#>Skj(R>V#jll4EvHZQIoZ5hI~D!O&voWA}gQt1MLj literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/markdown_it/rules_block/__pycache__/html_block.cpython-310.pyc b/Scripts/Lib/site-packages/markdown_it/rules_block/__pycache__/html_block.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6b158352336fa5c888d097f55da6cd19f9e337f6 GIT binary patch literal 1971 zcmaJ?Pj4GV6rb7u-q?@x{Zve+i_K|PGXV@#^&=W%96bZ_kwbK|OvDUnK?>F<_oB7R~aa1Un2)^Hc`R!~B z+ONWx{pP^<0wK&x7@-%4AcB1qU<+fROTJ`DSua~Mk%{6ffoiERCKJ`y0^QO<*NE;L zLC(ryM5U2Q=f>E|Q+ZS%29?i?V=2>f6P=i+a%RJF_>x6DVIm}u9viWS^Ie1>HJG=V_jhfTk*>f7r z!#BXJh+#G$0DUBU29@LLI&U+t7biVN6CS_vX%f?yvCF7iS>JxRZu4X-S*uhAx2yK% z|IFQL4%Fl7`x_erd1GU1pd452?SX7>Zw(B9k9Ib!)+OE=u~Y)#luAB2brhLUL-ovRuJUEM2EHHz}ByP`0FH>NL|EU!%Ff=E?ad0?BGHm z(iD+J|85_ki+!BKDzDZw8uNH`OK?Ie{KI^T0=m7$is3 zu{<<^#au^9OlJY`MPWgn0x`!5U`xb=D=}9e+<`Nq%nLiKXK~;=*)4dmdY9juX-`r` z3|`_Y6XnljAv6%FdF_;vBtr8)x2WY-x027d-B? zBSI(nEGZzV9`&*tnaUj+r!r@4CSJQ#Fj}u(>d<%rQ}GEH6Y+h!f;mHY8-WG_%mW_5a@DfJ+SLA)b^u3u|NLI+4oME%U;<|6KbE^^?sMy zkG$y29k`6x&s+|auQqAW^Wh%ZjqL5?;-pCiE@B0K(%*^#y=1_zs2I3}C0v$F z7%fV9Y=C88<4>(v1gs46viKEqLZP^?6CMjf%gD?$!6+*Uv2dkTmQvGkPWy22spBy5 z(5AW{bvjUOsl=$Y*p7lA3h!TUhcod&SjE`^Mwu$Wx$M=MFfe_4#7RRu%2LD0o^D8U zBTEATdhq_F=F`3U!C`H8r%_9l^T-P)MK$j@Gk*f$B{<9ub4J`1k&J2(5ukocR6f54 kqKJVxoCmJ*z;Ry717p%(Wwi`!mGLbY6ZTCt|3`7@A58`jp8x;= literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/markdown_it/rules_block/__pycache__/lheading.cpython-310.pyc b/Scripts/Lib/site-packages/markdown_it/rules_block/__pycache__/lheading.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..72131aeee808c2baf0560c62113a00a972f1bfe1 GIT binary patch literal 1573 zcmZ8h&2Jnv6t_K|&;7_I4NVG{@KMA{lyE>os-S{~QX!=Qb#t;7jb_*G?qugH_H5e( zz5{{To_c5fi@hwwMd6>-Q3&N%?jvq@Ru(R+Sh{`vX&dGbytKrsIN?T_iFApLHX z^&uu7g1tmEwMqk7u>5j9mLL$?`DHMD2={NKwvZHl_yTYV=@s zfewJwUw~Vp1?E^IjWyBM(#DW=MK$JR2UWI4C*;IBp_QYZh0U!cu3U{4j>bzY_c$FO zh;S>9TN;I~wl$d{`7=a#+FoJ>(uuF_TP7;lMckfIc~9G%drU0t9jFPMhX*gH{DB8m8>7=7Pruh~`4b>qo#Fo{miwBj zUsrWmY(h;<1p`i(bg{KWRoATBfog;|AkS^y;_dPkO<&+0=#iyWZRnQX2yenVbaG=t zK;CKMI=svM#@_|o?#j=}E?UJ*5Ljy){J7+z$_+r#6qyUx)4xGR`J@$y7uf zgu8pU)w^pX3G@f^i%3Qj85PsdFDx+h$tAvXi9ePtP%cb}G@W_O+E*}PUWly5)7pu% z#PlR$oom-P$(6YH2S)$Z+By94;ll@yYnzMFe8Nb|YkRcnYdKGZWZp!Sk3mwb6RU8X za}hRv7C=sr{_$BMm>a7HX;GdrM;+wztYrQunSGIQ@H1!hD3UY9oN_RYpMWkJy|$Db zv$mSW#lbX^YEViR7;R8QW7y5?YaWp@4@|~IO`CJjVy>pJ7NVULaOXvBrBPA4;~Yu} zZ_OJ|K0q|2ZGN|3P>d zk7OjzhT(CZCu(>!pNZl9IG;x6k>tZikpj%UW04jK{9uNIF;t;cLs&IbaVhRVoo3NQ zsG+F?&!1&sT<)7oQ>z==zwW8`inH3gR(wcBO@VD;N<18xk5KFo2X9&1mWK)MS=(Us zh@rNTtR7gqjgJEFVhSJmn_2`SwrctgB{xX`=;ypG=^` zS*!VBu5y&7n`__PHF%+Z~Y3tSvj5LmG1aRcSQoj}|2uib()?Dt= zvrAhxhG+_<*ChWztwRg+)<2?$p85yur3H!}bSQFb0i})md$Xi0JC~B!+4*>1^M3Em zyiIF0-@xySKmTL@Pj4E=-)V66N2~AQ$v#CR48dX}Fa#H7%!WMR%n+8aV{>Q)7BfQQ zxg9!3EO3PrTEY!I;f3C=BPzoG#0n~}&CZD`W_>+dBU-^gTNm?~ojav%U}Yh!LQ-|t z7frE<)tX=%Mz?hgn~e2ij<(ARKgu?8xiRYRgvV?;wUPJp@clU585DL#{i1@G% zSU57w$1>R={@Kq#$HQ|QPj-Mt84nG`R_V>?y=+W4`keX`^O=jjsW|%9&y2*kjNE$K zVFvww0dH*>PYlHczd>AfR`wywZkDUqowa`a0zYZNh^|?% zw@%pA6LzKR6wdZXeL2VqC*RnQcJsms%dwfsox=Yx5#hldDN`v;Vs#|#NxEnXbChO< zJM14s!|||ih7c3Vg757A!H{hboID9`Zmow0`A(dU#n$z2_wGg8vM--*^)}Nq&bHRa zgK+EpDBbTr>r1iqQ9sK=+1U(-qZrQJ+SrlND9^UQwUtGAcokp_`g>uvMXE&lB{MzVg(aHwV=>2gVhrlMwX+xo`!lY~sO^f-A^E#_Chw&F4_qfG8 z?&GoWmn$H71x4B{ZC;~TpaVaD9YsDdPm#2gDcG{1tbr|81qVWes|j3fS^<7$ZV^Hg zM>zu6W!Lbw29~@|)D=USn)k;4!E4K(XkLalVrRt=4zz9(=cDV&7Vcw129LJ1B$8^# z!AonVaWW`Z5hvcd4iQgwJ}TipmF^K9m17xLv}I!HgiUp9%8hDoYbfo z@;#a(G!X@Sz~y&O$EMI@QAUD}fmNf2Or25mbYu|zhy$y96DC?MFg{N!Kpje+g3LWi$ng z3J2tS`Tpw;U!+XhjP~~PAJ4R9KL<M2P$6aLpgOW~%<~DHf@CnB!_`Mjwq}8jB(UXGxXYRzlO_V% zer?W15MM1rR^9@wgOKOCH{&9XThL(TI8qfm(dbQ%&L8g0woxhR(z3?&eC_ zI0k%W%1?#4VdV3mYe3VSa^>&AyMT)e`i{&=b*lGw!dI1uscNs8z;aOFs+&?UVeN6t zz}n)ZrhL3xicRXUh~zFkY(HFnz9MQzY|_BknJkE!GJ1}xBXEt+xxA~KNmE-|hgFN{ zSqeSn;PCpIk5-T^lh$NOHPs@xnOp_UoN9uzt=ghK;Fz=3lE8zNRg$y}^xDRXflyyc zs-T+JRP&&6^&EH}t*WLTHA~6aKUH(Gtd^n0hQ!OlO-x8^Aq7{|3ZlWn>{a1n)KV+U z#sqf2D-E$Q^~%%_XMA%`x!}34?LC7q{B;g<=O^dU>PVPeKu<@})H^HWCvd)N=sklIy_w~o!LAE9O5A1Rh(Z5nImuiTO?a0d;^ObEB^As7 zr{@ffq)v`4@a`X8<-96^Xf>^=RXmP?Wlslb-7CcA6}Yhfwvp|pwg zl{R6Au$%m}2tT!Se3gEJ9N=1?Fhs>U;lh534)Xk8Kj)9`LW0f}ATo;%ctqp>MY&$) zFzEkHW7vC9H9jzY*_d=x2fKnaVIEqDHXpfnksLTVAv_%}r@2b; z*(o)^0*Xr7m5!;2msE8gzDj*VQfRtK*2OVXDJIQHZbB9#0B8R)n>(Ac6DHzHq+3QdZanmqr3cMdl<9?F;j9up)xA_W_wL`ld*?x6i*S3q7u2Gxx08ynEVKfj zgi~#pnLph7Tkw@Y&hD@u0L!p`Y( z3*0EXGaThlAty@6f4I9meR)RDLVc%oFTE^U7fp6u{Nt(sQ*5u+Rp(e zw@V(&s+$(oh^D2>7Zm#+*UdTyjbovdanK_jC~r_FmORc2-|;bf0kgiY9ld{9)wbzF zg9mvIt3yYNIVP<;4rz2aeMp?+Ew5=qBkNcmNv3s1+Q=@ghc|7DRiV*>E0fKF#w*!VVYbU=TV&L z$~&0TpQWW+CDpe@1(|UV4EQqhdcCAS40}EK4p!uMsG*OYGDUS^XKmxdOe;ErmoCzE feeS(GOa;>H7M*4pRs9||R)zU(yS>_e=W^|T$?WDC literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/markdown_it/rules_block/__pycache__/paragraph.cpython-310.pyc b/Scripts/Lib/site-packages/markdown_it/rules_block/__pycache__/paragraph.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d893445322757bd91f2538dcd76c4a0a46d4ae0b GIT binary patch literal 1270 zcmYjQ&5s*36t_K|&rPzlLKG;6RRxD2XgMGO6+)=(QdQc9s=ETonrbx3bCXHtYwd~X zu4Yc~ha^Y-6aEHY5fXdi&Vlkg>2B8}KR^5D_nY_SYB-Dtj(`66YjN8rL>8KfRfXnPoK1b63G9CYxi&cG5&iG{kI-R;BEP4uq9n& z_sI~k5n!HyZJo~EBFo{NwR_2ak6`A(?U4x2-nov?37*{OZw=6X*x&MP%;004Mw9b9 zm}RN5a(+->R_y-4C;GE%Q!z}m39s-A2lvX>^M?~Lx;jp(T9$^^#>>jw7L$nmx8N+V zw7htYV|>$iM?XG(eE8hBAgAlOU0Ii#NYx6eU&2czu8gyu zdmI@*NuZh~iShGlKF1Cdd;NRgxua|onGoxIgs4;|NRl!wWRj?Ti#Qn;h)*#UJzt-* cYvLn&C-}Cg03-a)_M*1oa1yWqi`X6Kf8A?cH2?qr literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/markdown_it/rules_block/__pycache__/reference.cpython-310.pyc b/Scripts/Lib/site-packages/markdown_it/rules_block/__pycache__/reference.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e6714531f6f8cc3d18f896eb30a0db38b5c4ac37 GIT binary patch literal 3290 zcmZ`*&2JmW72lm5E|<#>(X<>zj^hXkQiMPnr$yQnu2Ixh93z0Orj||{8U)1|ODisS z>Di@g8AG&y+H2s84+R{6I`q&>&{NTKdrAL*w!otBrSL%of*y*XsNqEYy;+g|s&_GO zzTUj=dGnHb-M8@l>x&25mtL`~f6(N~k9L2Imc{_W5_V(-mSDn(>>&%-&v2Q{->$Br*-S-)UicSS=i zV5cGMb*tSx08eY}fC09h-0yGq)M_H+`7AGo>H4VGmw78r)UX$Yx8+rNT`C#(<$+E3 zcJ8ldy-Z$+lKvnsr8Lef=u~z&jAib1Wh~6dO~XjWS?(&CjaA&|#P#S~L|;Z*MN5B= zoy?lr!q%3yHPg<1$+on$!?e9jy+i$yHQ^X@8c#~v77Qz{wx$^G+v*MBtP`%Q`7(?) zaMat6S9FQ6f5mXJoRxKX&z_WoHSq)kO|DA=OMRAkx~%ygn^bf~lm<*)Hs@h#jMp`v zcsD-7P8qXdR)M7M9^=-;7uMKT5zhMWKS5o)f?@8)Z{duGGj}yND>Hs~XZ#GsyU$U) z`yz@@(@D>34-#1E=jbZ~^oA}pTe9|;@L`AF89h8vH5M$ieK6y0v?ZPX_M8NNeUSvQ zoB6u3XRE)*_KgS6$nyvIpt@6=*2$W>wC_x+y1LUy|9#|*>U06~=Dt0t5$5!muI<}* z?9?&))twf3WK!4eq=9~+@Xj4utv)L;*1r3!%vk%*3#Il7se$u@nBB2&tUfI{WH@#t z`|(0{VeRutQ#W@Oac1`!UKZA_fy(ZTpDs=KEVgFef0~|dKBkxcbgtQ_8d?q<(EAj; z8b^I|att$ABX&g%<2vlpK)f6O0jKb@iPxE4>2Dy<=g(>N>-m}cGaDl2h~IsEjNt#J zKgXR^=Jfvp`uCrs|K~aVFQ1|RCHXWvq0544k8U6CT}!uM>4(PKB*USouUn!4OTBc{ zzQdFs(k*^TG|u6MX{)fYLMn` zw!R%+M?ROuydI|AKAw&4rg;jSRP}QQ8DBZXx4I>>HF?WC3W`#H&W0i=Z_8*TRT?ag zdMcH8Ck7wLGz;S%X_m8O5Y*={5AEhonyH|66Hk$V;KkA?NrT3mzy_%v)cU;`;>4ge zma0Sy9U0%uIax0+CnICJ+<{m*AC1%PoDU^lEz&vnQ<=f0y>SHfdZQ7Zu=b+zu%#*l z$XTjN;9CHBdDy!Z4#&gXi;pzSU5JSo2s~r_i?PUAe>fmgLY}}8MvFN<}UiWgi zsd{R+)7?mtDDA9`2eNY^OtyQsdrEY!^io9X%7z?{BG|IC-dEu$OFKB#NyAKj8!!K$ zwIn`qqectPXIlgwre*k834 zT+nT>2B6Eh!)*>J=wF=k@xhk^+y82D!NYnX3-JQZe@|6hj7U;w;m}DV^P?5lP&2e< zYbRaKnhYG73r;oWgJ;WWKo-aYOz%<6ZDK-tHoxWzjsFxop#O*;@``$&Jo+v`pYHtZ zqcEdXVXC4(Vt_nkO;81CHYlZdFQ>MtbsEA#&a@}UTT|?!`dLCHLs`sJO2R=svtm}9 z^dqeDozjjwEeqr=Q$u;Eeo#wwJ_pO#}zw-@qqlx%HLCaLw4 z;V_Bc8E0XXnw)CVs7Y->)zsa^tyEM<=M~uJGLA}x61*GthO*mLCuzqCQH1kNWQ4*6 pZ(`AKdqRGr2`Q0#=Z1-Zoqt5nQrZCUtVLGCbw2G_KR^A${{c=NMU(&l literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/markdown_it/rules_block/__pycache__/state_block.cpython-310.pyc b/Scripts/Lib/site-packages/markdown_it/rules_block/__pycache__/state_block.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..edd5d55557161637ca2c070af78350ed863e6970 GIT binary patch literal 5741 zcma)A&669&6`$_;&}byBg;{%dje&^`1mX1p!GJL~7%v74wnDN?2tt%HtDfDRl{Auj zMmDROC8=6cIixD5+)}ABIi!l5Q~3jO$|2_*=9pAct+s)AG0=J$FetyW%0Mm29< zcfam_@Ad2Vp>C<IF_;kkC9Q>+!4=Ie3^YuN2lXQnp8v^O=87tW`e zaD01LuN@JE6|GXdOT1KATJXZK8+&ok4WkNAORFEed$qCr*45>Au2tVmbJv5|mtOlW z�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 literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/markdown_it/rules_block/blockquote.py b/Scripts/Lib/site-packages/markdown_it/rules_block/blockquote.py new file mode 100644 index 0000000..0c9081b --- /dev/null +++ b/Scripts/Lib/site-packages/markdown_it/rules_block/blockquote.py @@ -0,0 +1,299 @@ +# Block quotes +from __future__ import annotations + +import logging + +from ..common.utils import isStrSpace +from .state_block import StateBlock + +LOGGER = logging.getLogger(__name__) + + +def blockquote(state: StateBlock, startLine: int, endLine: int, silent: bool) -> bool: + LOGGER.debug( + "entering blockquote: %s, %s, %s, %s", state, startLine, endLine, silent + ) + + oldLineMax = state.lineMax + pos = state.bMarks[startLine] + state.tShift[startLine] + max = state.eMarks[startLine] + + if state.is_code_block(startLine): + return False + + # check the block quote marker + try: + if state.src[pos] != ">": + return False + except IndexError: + return False + pos += 1 + + # we know that it's going to be a valid blockquote, + # so no point trying to find the end of it in silent mode + if silent: + return True + + # set offset past spaces and ">" + initial = offset = state.sCount[startLine] + 1 + + try: + second_char: str | None = state.src[pos] + except IndexError: + second_char = None + + # skip one optional space after '>' + if second_char == " ": + # ' > test ' + # ^ -- position start of line here: + pos += 1 + initial += 1 + offset += 1 + adjustTab = False + spaceAfterMarker = True + elif second_char == "\t": + spaceAfterMarker = True + + if (state.bsCount[startLine] + offset) % 4 == 3: + # ' >\t test ' + # ^ -- position start of line here (tab has width==1) + pos += 1 + initial += 1 + offset += 1 + adjustTab = False + else: + # ' >\t test ' + # ^ -- position start of line here + shift bsCount slightly + # to make extra space appear + adjustTab = True + + else: + spaceAfterMarker = False + + oldBMarks = [state.bMarks[startLine]] + state.bMarks[startLine] = pos + + while pos < max: + ch = state.src[pos] + + if isStrSpace(ch): + if ch == "\t": + offset += ( + 4 + - (offset + state.bsCount[startLine] + (1 if adjustTab else 0)) % 4 + ) + else: + offset += 1 + + else: + break + + pos += 1 + + oldBSCount = [state.bsCount[startLine]] + state.bsCount[startLine] = ( + state.sCount[startLine] + 1 + (1 if spaceAfterMarker else 0) + ) + + lastLineEmpty = pos >= max + + oldSCount = [state.sCount[startLine]] + state.sCount[startLine] = offset - initial + + oldTShift = [state.tShift[startLine]] + state.tShift[startLine] = pos - state.bMarks[startLine] + + terminatorRules = state.md.block.ruler.getRules("blockquote") + + oldParentType = state.parentType + state.parentType = "blockquote" + + # Search the end of the block + # + # Block ends with either: + # 1. an empty line outside: + # ``` + # > test + # + # ``` + # 2. an empty line inside: + # ``` + # > + # test + # ``` + # 3. another tag: + # ``` + # > test + # - - - + # ``` + + # for (nextLine = startLine + 1; nextLine < endLine; nextLine++) { + nextLine = startLine + 1 + while nextLine < endLine: + # check if it's outdented, i.e. it's inside list item and indented + # less than said list item: + # + # ``` + # 1. anything + # > current blockquote + # 2. checking this line + # ``` + isOutdented = state.sCount[nextLine] < state.blkIndent + + pos = state.bMarks[nextLine] + state.tShift[nextLine] + max = state.eMarks[nextLine] + + if pos >= max: + # Case 1: line is not inside the blockquote, and this line is empty. + break + + evaluatesTrue = state.src[pos] == ">" and not isOutdented + pos += 1 + if evaluatesTrue: + # This line is inside the blockquote. + + # set offset past spaces and ">" + initial = offset = state.sCount[nextLine] + 1 + + try: + next_char: str | None = state.src[pos] + except IndexError: + next_char = None + + # skip one optional space after '>' + if next_char == " ": + # ' > test ' + # ^ -- position start of line here: + pos += 1 + initial += 1 + offset += 1 + adjustTab = False + spaceAfterMarker = True + elif next_char == "\t": + spaceAfterMarker = True + + if (state.bsCount[nextLine] + offset) % 4 == 3: + # ' >\t test ' + # ^ -- position start of line here (tab has width==1) + pos += 1 + initial += 1 + offset += 1 + adjustTab = False + else: + # ' >\t test ' + # ^ -- position start of line here + shift bsCount slightly + # to make extra space appear + adjustTab = True + + else: + spaceAfterMarker = False + + oldBMarks.append(state.bMarks[nextLine]) + state.bMarks[nextLine] = pos + + while pos < max: + ch = state.src[pos] + + if isStrSpace(ch): + if ch == "\t": + offset += ( + 4 + - ( + offset + + state.bsCount[nextLine] + + (1 if adjustTab else 0) + ) + % 4 + ) + else: + offset += 1 + else: + break + + pos += 1 + + lastLineEmpty = pos >= max + + oldBSCount.append(state.bsCount[nextLine]) + state.bsCount[nextLine] = ( + state.sCount[nextLine] + 1 + (1 if spaceAfterMarker else 0) + ) + + oldSCount.append(state.sCount[nextLine]) + state.sCount[nextLine] = offset - initial + + oldTShift.append(state.tShift[nextLine]) + state.tShift[nextLine] = pos - state.bMarks[nextLine] + + nextLine += 1 + continue + + # Case 2: line is not inside the blockquote, and the last line was empty. + if lastLineEmpty: + break + + # Case 3: another tag found. + terminate = False + + for terminatorRule in terminatorRules: + if terminatorRule(state, nextLine, endLine, True): + terminate = True + break + + if terminate: + # Quirk to enforce "hard termination mode" for paragraphs; + # normally if you call `tokenize(state, startLine, nextLine)`, + # paragraphs will look below nextLine for paragraph continuation, + # but if blockquote is terminated by another tag, they shouldn't + state.lineMax = nextLine + + if state.blkIndent != 0: + # state.blkIndent was non-zero, we now set it to zero, + # so we need to re-calculate all offsets to appear as + # if indent wasn't changed + oldBMarks.append(state.bMarks[nextLine]) + oldBSCount.append(state.bsCount[nextLine]) + oldTShift.append(state.tShift[nextLine]) + oldSCount.append(state.sCount[nextLine]) + state.sCount[nextLine] -= state.blkIndent + + break + + oldBMarks.append(state.bMarks[nextLine]) + oldBSCount.append(state.bsCount[nextLine]) + oldTShift.append(state.tShift[nextLine]) + oldSCount.append(state.sCount[nextLine]) + + # A negative indentation means that this is a paragraph continuation + # + state.sCount[nextLine] = -1 + + nextLine += 1 + + oldIndent = state.blkIndent + state.blkIndent = 0 + + token = state.push("blockquote_open", "blockquote", 1) + token.markup = ">" + token.map = lines = [startLine, 0] + + state.md.block.tokenize(state, startLine, nextLine) + + token = state.push("blockquote_close", "blockquote", -1) + token.markup = ">" + + state.lineMax = oldLineMax + state.parentType = oldParentType + lines[1] = state.line + + # Restore original tShift; this might not be necessary since the parser + # has already been here, but just to make sure we can do that. + for i, item in enumerate(oldTShift): + state.bMarks[i + startLine] = oldBMarks[i] + state.tShift[i + startLine] = item + state.sCount[i + startLine] = oldSCount[i] + state.bsCount[i + startLine] = oldBSCount[i] + + state.blkIndent = oldIndent + + return True diff --git a/Scripts/Lib/site-packages/markdown_it/rules_block/code.py b/Scripts/Lib/site-packages/markdown_it/rules_block/code.py new file mode 100644 index 0000000..af8a41c --- /dev/null +++ b/Scripts/Lib/site-packages/markdown_it/rules_block/code.py @@ -0,0 +1,36 @@ +"""Code block (4 spaces padded).""" + +import logging + +from .state_block import StateBlock + +LOGGER = logging.getLogger(__name__) + + +def code(state: StateBlock, startLine: int, endLine: int, silent: bool) -> bool: + LOGGER.debug("entering code: %s, %s, %s, %s", state, startLine, endLine, silent) + + if not state.is_code_block(startLine): + return False + + last = nextLine = startLine + 1 + + while nextLine < endLine: + if state.isEmpty(nextLine): + nextLine += 1 + continue + + if state.is_code_block(nextLine): + nextLine += 1 + last = nextLine + continue + + break + + state.line = last + + token = state.push("code_block", "code", 0) + token.content = state.getLines(startLine, last, 4 + state.blkIndent, False) + "\n" + token.map = [startLine, state.line] + + return True diff --git a/Scripts/Lib/site-packages/markdown_it/rules_block/fence.py b/Scripts/Lib/site-packages/markdown_it/rules_block/fence.py new file mode 100644 index 0000000..263f1b8 --- /dev/null +++ b/Scripts/Lib/site-packages/markdown_it/rules_block/fence.py @@ -0,0 +1,101 @@ +# fences (``` lang, ~~~ lang) +import logging + +from .state_block import StateBlock + +LOGGER = logging.getLogger(__name__) + + +def fence(state: StateBlock, startLine: int, endLine: int, silent: bool) -> bool: + LOGGER.debug("entering fence: %s, %s, %s, %s", state, startLine, endLine, silent) + + haveEndMarker = False + pos = state.bMarks[startLine] + state.tShift[startLine] + maximum = state.eMarks[startLine] + + if state.is_code_block(startLine): + return False + + if pos + 3 > maximum: + return False + + marker = state.src[pos] + + if marker not in ("~", "`"): + return False + + # scan marker length + mem = pos + pos = state.skipCharsStr(pos, marker) + + length = pos - mem + + if length < 3: + return False + + markup = state.src[mem:pos] + params = state.src[pos:maximum] + + if marker == "`" and marker in params: + return False + + # Since start is found, we can report success here in validation mode + if silent: + return True + + # search end of block + nextLine = startLine + + while True: + nextLine += 1 + if nextLine >= endLine: + # unclosed block should be autoclosed by end of document. + # also block seems to be autoclosed by end of parent + break + + pos = mem = state.bMarks[nextLine] + state.tShift[nextLine] + maximum = state.eMarks[nextLine] + + if pos < maximum and state.sCount[nextLine] < state.blkIndent: + # non-empty line with negative indent should stop the list: + # - ``` + # test + break + + try: + if state.src[pos] != marker: + continue + except IndexError: + break + + if state.is_code_block(nextLine): + continue + + pos = state.skipCharsStr(pos, marker) + + # closing code fence must be at least as long as the opening one + if pos - mem < length: + continue + + # make sure tail has spaces only + pos = state.skipSpaces(pos) + + if pos < maximum: + continue + + haveEndMarker = True + # found! + break + + # If a fence has heading spaces, they should be removed from its inner block + length = state.sCount[startLine] + + state.line = nextLine + (1 if haveEndMarker else 0) + + token = state.push("fence", "code", 0) + token.info = params + token.content = state.getLines(startLine + 1, nextLine, length, True) + token.markup = markup + token.map = [startLine, state.line] + + return True diff --git a/Scripts/Lib/site-packages/markdown_it/rules_block/heading.py b/Scripts/Lib/site-packages/markdown_it/rules_block/heading.py new file mode 100644 index 0000000..afcf9ed --- /dev/null +++ b/Scripts/Lib/site-packages/markdown_it/rules_block/heading.py @@ -0,0 +1,69 @@ +"""Atex heading (#, ##, ...)""" + +from __future__ import annotations + +import logging + +from ..common.utils import isStrSpace +from .state_block import StateBlock + +LOGGER = logging.getLogger(__name__) + + +def heading(state: StateBlock, startLine: int, endLine: int, silent: bool) -> bool: + LOGGER.debug("entering heading: %s, %s, %s, %s", state, startLine, endLine, silent) + + pos = state.bMarks[startLine] + state.tShift[startLine] + maximum = state.eMarks[startLine] + + if state.is_code_block(startLine): + return False + + ch: str | None = state.src[pos] + + if ch != "#" or pos >= maximum: + return False + + # count heading level + level = 1 + pos += 1 + try: + ch = state.src[pos] + except IndexError: + ch = None + while ch == "#" and pos < maximum and level <= 6: + level += 1 + pos += 1 + try: + ch = state.src[pos] + except IndexError: + ch = None + + if level > 6 or (pos < maximum and not isStrSpace(ch)): + return False + + if silent: + return True + + # Let's cut tails like ' ### ' from the end of string + + maximum = state.skipSpacesBack(maximum, pos) + tmp = state.skipCharsStrBack(maximum, "#", pos) + if tmp > pos and isStrSpace(state.src[tmp - 1]): + maximum = tmp + + state.line = startLine + 1 + + token = state.push("heading_open", "h" + str(level), 1) + token.markup = "########"[:level] + token.map = [startLine, state.line] + + token = state.push("inline", "", 0) + token.content = state.src[pos:maximum].strip() + token.map = [startLine, state.line] + token.children = [] + + token = state.push("heading_close", "h" + str(level), -1) + token.markup = "########"[:level] + + return True diff --git a/Scripts/Lib/site-packages/markdown_it/rules_block/hr.py b/Scripts/Lib/site-packages/markdown_it/rules_block/hr.py new file mode 100644 index 0000000..fca7d79 --- /dev/null +++ b/Scripts/Lib/site-packages/markdown_it/rules_block/hr.py @@ -0,0 +1,56 @@ +"""Horizontal rule + +At least 3 of these characters on a line * - _ +""" + +import logging + +from ..common.utils import isStrSpace +from .state_block import StateBlock + +LOGGER = logging.getLogger(__name__) + + +def hr(state: StateBlock, startLine: int, endLine: int, silent: bool) -> bool: + LOGGER.debug("entering hr: %s, %s, %s, %s", state, startLine, endLine, silent) + + pos = state.bMarks[startLine] + state.tShift[startLine] + maximum = state.eMarks[startLine] + + if state.is_code_block(startLine): + return False + + try: + marker = state.src[pos] + except IndexError: + return False + pos += 1 + + # Check hr marker + if marker not in ("*", "-", "_"): + return False + + # markers can be mixed with spaces, but there should be at least 3 of them + + cnt = 1 + while pos < maximum: + ch = state.src[pos] + pos += 1 + if ch != marker and not isStrSpace(ch): + return False + if ch == marker: + cnt += 1 + + if cnt < 3: + return False + + if silent: + return True + + state.line = startLine + 1 + + token = state.push("hr", "hr", 0) + token.map = [startLine, state.line] + token.markup = marker * (cnt + 1) + + return True diff --git a/Scripts/Lib/site-packages/markdown_it/rules_block/html_block.py b/Scripts/Lib/site-packages/markdown_it/rules_block/html_block.py new file mode 100644 index 0000000..3d43f6e --- /dev/null +++ b/Scripts/Lib/site-packages/markdown_it/rules_block/html_block.py @@ -0,0 +1,90 @@ +# HTML block +from __future__ import annotations + +import logging +import re + +from ..common.html_blocks import block_names +from ..common.html_re import HTML_OPEN_CLOSE_TAG_STR +from .state_block import StateBlock + +LOGGER = logging.getLogger(__name__) + +# An array of opening and corresponding closing sequences for html tags, +# last argument defines whether it can terminate a paragraph or not +HTML_SEQUENCES: list[tuple[re.Pattern[str], re.Pattern[str], bool]] = [ + ( + re.compile(r"^<(script|pre|style|textarea)(?=(\s|>|$))", re.IGNORECASE), + re.compile(r"<\/(script|pre|style|textarea)>", re.IGNORECASE), + True, + ), + (re.compile(r"^"), True), + (re.compile(r"^<\?"), re.compile(r"\?>"), True), + (re.compile(r"^"), True), + (re.compile(r"^"), True), + ( + re.compile("^|$))", re.IGNORECASE), + re.compile(r"^$"), + True, + ), + (re.compile(HTML_OPEN_CLOSE_TAG_STR + "\\s*$"), re.compile(r"^$"), False), +] + + +def html_block(state: StateBlock, startLine: int, endLine: int, silent: bool) -> bool: + LOGGER.debug( + "entering html_block: %s, %s, %s, %s", state, startLine, endLine, silent + ) + pos = state.bMarks[startLine] + state.tShift[startLine] + maximum = state.eMarks[startLine] + + if state.is_code_block(startLine): + return False + + if not state.md.options.get("html", None): + return False + + if state.src[pos] != "<": + return False + + lineText = state.src[pos:maximum] + + html_seq = None + for HTML_SEQUENCE in HTML_SEQUENCES: + if HTML_SEQUENCE[0].search(lineText): + html_seq = HTML_SEQUENCE + break + + if not html_seq: + return False + + if silent: + # true if this sequence can be a terminator, false otherwise + return html_seq[2] + + nextLine = startLine + 1 + + # If we are here - we detected HTML block. + # Let's roll down till block end. + if not html_seq[1].search(lineText): + while nextLine < endLine: + if state.sCount[nextLine] < state.blkIndent: + break + + pos = state.bMarks[nextLine] + state.tShift[nextLine] + maximum = state.eMarks[nextLine] + lineText = state.src[pos:maximum] + + if html_seq[1].search(lineText): + if len(lineText) != 0: + nextLine += 1 + break + nextLine += 1 + + state.line = nextLine + + token = state.push("html_block", "", 0) + token.map = [startLine, nextLine] + token.content = state.getLines(startLine, nextLine, state.blkIndent, True) + + return True diff --git a/Scripts/Lib/site-packages/markdown_it/rules_block/lheading.py b/Scripts/Lib/site-packages/markdown_it/rules_block/lheading.py new file mode 100644 index 0000000..3522207 --- /dev/null +++ b/Scripts/Lib/site-packages/markdown_it/rules_block/lheading.py @@ -0,0 +1,86 @@ +# lheading (---, ==) +import logging + +from .state_block import StateBlock + +LOGGER = logging.getLogger(__name__) + + +def lheading(state: StateBlock, startLine: int, endLine: int, silent: bool) -> bool: + LOGGER.debug("entering lheading: %s, %s, %s, %s", state, startLine, endLine, silent) + + level = None + nextLine = startLine + 1 + ruler = state.md.block.ruler + terminatorRules = ruler.getRules("paragraph") + + if state.is_code_block(startLine): + return False + + oldParentType = state.parentType + state.parentType = "paragraph" # use paragraph to match terminatorRules + + # jump line-by-line until empty one or EOF + while nextLine < endLine and not state.isEmpty(nextLine): + # this would be a code block normally, but after paragraph + # it's considered a lazy continuation regardless of what's there + if state.sCount[nextLine] - state.blkIndent > 3: + nextLine += 1 + continue + + # Check for underline in setext header + if state.sCount[nextLine] >= state.blkIndent: + pos = state.bMarks[nextLine] + state.tShift[nextLine] + maximum = state.eMarks[nextLine] + + if pos < maximum: + marker = state.src[pos] + + if marker in ("-", "="): + pos = state.skipCharsStr(pos, marker) + pos = state.skipSpaces(pos) + + # /* = */ + if pos >= maximum: + level = 1 if marker == "=" else 2 + break + + # quirk for blockquotes, this line should already be checked by that rule + if state.sCount[nextLine] < 0: + nextLine += 1 + continue + + # Some tags can terminate paragraph without empty line. + terminate = False + for terminatorRule in terminatorRules: + if terminatorRule(state, nextLine, endLine, True): + terminate = True + break + if terminate: + break + + nextLine += 1 + + if not level: + # Didn't find valid underline + return False + + content = state.getLines(startLine, nextLine, state.blkIndent, False).strip() + + state.line = nextLine + 1 + + token = state.push("heading_open", "h" + str(level), 1) + token.markup = marker + token.map = [startLine, state.line] + + token = state.push("inline", "", 0) + token.content = content + token.map = [startLine, state.line - 1] + token.children = [] + + token = state.push("heading_close", "h" + str(level), -1) + token.markup = marker + + state.parentType = oldParentType + + return True diff --git a/Scripts/Lib/site-packages/markdown_it/rules_block/list.py b/Scripts/Lib/site-packages/markdown_it/rules_block/list.py new file mode 100644 index 0000000..d8070d7 --- /dev/null +++ b/Scripts/Lib/site-packages/markdown_it/rules_block/list.py @@ -0,0 +1,345 @@ +# Lists +import logging + +from ..common.utils import isStrSpace +from .state_block import StateBlock + +LOGGER = logging.getLogger(__name__) + + +# Search `[-+*][\n ]`, returns next pos after marker on success +# or -1 on fail. +def skipBulletListMarker(state: StateBlock, startLine: int) -> int: + pos = state.bMarks[startLine] + state.tShift[startLine] + maximum = state.eMarks[startLine] + + try: + marker = state.src[pos] + except IndexError: + return -1 + pos += 1 + + if marker not in ("*", "-", "+"): + return -1 + + if pos < maximum: + ch = state.src[pos] + + if not isStrSpace(ch): + # " -test " - is not a list item + return -1 + + return pos + + +# Search `\d+[.)][\n ]`, returns next pos after marker on success +# or -1 on fail. +def skipOrderedListMarker(state: StateBlock, startLine: int) -> int: + start = state.bMarks[startLine] + state.tShift[startLine] + pos = start + maximum = state.eMarks[startLine] + + # List marker should have at least 2 chars (digit + dot) + if pos + 1 >= maximum: + return -1 + + ch = state.src[pos] + pos += 1 + + ch_ord = ord(ch) + # /* 0 */ /* 9 */ + if ch_ord < 0x30 or ch_ord > 0x39: + return -1 + + while True: + # EOL -> fail + if pos >= maximum: + return -1 + + ch = state.src[pos] + pos += 1 + + # /* 0 */ /* 9 */ + ch_ord = ord(ch) + if ch_ord >= 0x30 and ch_ord <= 0x39: + # List marker should have no more than 9 digits + # (prevents integer overflow in browsers) + if pos - start >= 10: + return -1 + + continue + + # found valid marker + if ch in (")", "."): + break + + return -1 + + if pos < maximum: + ch = state.src[pos] + + if not isStrSpace(ch): + # " 1.test " - is not a list item + return -1 + + return pos + + +def markTightParagraphs(state: StateBlock, idx: int) -> None: + level = state.level + 2 + + i = idx + 2 + length = len(state.tokens) - 2 + while i < length: + if state.tokens[i].level == level and state.tokens[i].type == "paragraph_open": + state.tokens[i + 2].hidden = True + state.tokens[i].hidden = True + i += 2 + i += 1 + + +def list_block(state: StateBlock, startLine: int, endLine: int, silent: bool) -> bool: + LOGGER.debug("entering list: %s, %s, %s, %s", state, startLine, endLine, silent) + + isTerminatingParagraph = False + tight = True + + if state.is_code_block(startLine): + return False + + # Special case: + # - item 1 + # - item 2 + # - item 3 + # - item 4 + # - this one is a paragraph continuation + if ( + state.listIndent >= 0 + and state.sCount[startLine] - state.listIndent >= 4 + and state.sCount[startLine] < state.blkIndent + ): + return False + + # limit conditions when list can interrupt + # a paragraph (validation mode only) + # Next list item should still terminate previous list item + # + # This code can fail if plugins use blkIndent as well as lists, + # but I hope the spec gets fixed long before that happens. + # + if ( + silent + and state.parentType == "paragraph" + and state.sCount[startLine] >= state.blkIndent + ): + isTerminatingParagraph = True + + # Detect list type and position after marker + posAfterMarker = skipOrderedListMarker(state, startLine) + if posAfterMarker >= 0: + isOrdered = True + start = state.bMarks[startLine] + state.tShift[startLine] + markerValue = int(state.src[start : posAfterMarker - 1]) + + # If we're starting a new ordered list right after + # a paragraph, it should start with 1. + if isTerminatingParagraph and markerValue != 1: + return False + else: + posAfterMarker = skipBulletListMarker(state, startLine) + if posAfterMarker >= 0: + isOrdered = False + else: + return False + + # If we're starting a new unordered list right after + # a paragraph, first line should not be empty. + if ( + isTerminatingParagraph + and state.skipSpaces(posAfterMarker) >= state.eMarks[startLine] + ): + return False + + # We should terminate list on style change. Remember first one to compare. + markerChar = state.src[posAfterMarker - 1] + + # For validation mode we can terminate immediately + if silent: + return True + + # Start list + listTokIdx = len(state.tokens) + + if isOrdered: + token = state.push("ordered_list_open", "ol", 1) + if markerValue != 1: + token.attrs = {"start": markerValue} + + else: + token = state.push("bullet_list_open", "ul", 1) + + token.map = listLines = [startLine, 0] + token.markup = markerChar + + # + # Iterate list items + # + + nextLine = startLine + prevEmptyEnd = False + terminatorRules = state.md.block.ruler.getRules("list") + + oldParentType = state.parentType + state.parentType = "list" + + while nextLine < endLine: + pos = posAfterMarker + maximum = state.eMarks[nextLine] + + initial = offset = ( + state.sCount[nextLine] + + posAfterMarker + - (state.bMarks[startLine] + state.tShift[startLine]) + ) + + while pos < maximum: + ch = state.src[pos] + + if ch == "\t": + offset += 4 - (offset + state.bsCount[nextLine]) % 4 + elif ch == " ": + offset += 1 + else: + break + + pos += 1 + + contentStart = pos + + # trimming space in "- \n 3" case, indent is 1 here + indentAfterMarker = 1 if contentStart >= maximum else offset - initial + + # If we have more than 4 spaces, the indent is 1 + # (the rest is just indented code block) + if indentAfterMarker > 4: + indentAfterMarker = 1 + + # " - test" + # ^^^^^ - calculating total length of this thing + indent = initial + indentAfterMarker + + # Run subparser & write tokens + token = state.push("list_item_open", "li", 1) + token.markup = markerChar + token.map = itemLines = [startLine, 0] + if isOrdered: + token.info = state.src[start : posAfterMarker - 1] + + # change current state, then restore it after parser subcall + oldTight = state.tight + oldTShift = state.tShift[startLine] + oldSCount = state.sCount[startLine] + + # - example list + # ^ listIndent position will be here + # ^ blkIndent position will be here + # + oldListIndent = state.listIndent + state.listIndent = state.blkIndent + state.blkIndent = indent + + state.tight = True + state.tShift[startLine] = contentStart - state.bMarks[startLine] + state.sCount[startLine] = offset + + if contentStart >= maximum and state.isEmpty(startLine + 1): + # workaround for this case + # (list item is empty, list terminates before "foo"): + # ~~~~~~~~ + # - + # + # foo + # ~~~~~~~~ + state.line = min(state.line + 2, endLine) + else: + # NOTE in list.js this was: + # state.md.block.tokenize(state, startLine, endLine, True) + # but tokeniz does not take the final parameter + state.md.block.tokenize(state, startLine, endLine) + + # If any of list item is tight, mark list as tight + if (not state.tight) or prevEmptyEnd: + tight = False + + # Item become loose if finish with empty line, + # but we should filter last element, because it means list finish + prevEmptyEnd = (state.line - startLine) > 1 and state.isEmpty(state.line - 1) + + state.blkIndent = state.listIndent + state.listIndent = oldListIndent + state.tShift[startLine] = oldTShift + state.sCount[startLine] = oldSCount + state.tight = oldTight + + token = state.push("list_item_close", "li", -1) + token.markup = markerChar + + nextLine = startLine = state.line + itemLines[1] = nextLine + + if nextLine >= endLine: + break + + contentStart = state.bMarks[startLine] + + # + # Try to check if list is terminated or continued. + # + if state.sCount[nextLine] < state.blkIndent: + break + + if state.is_code_block(startLine): + break + + # fail if terminating block found + terminate = False + for terminatorRule in terminatorRules: + if terminatorRule(state, nextLine, endLine, True): + terminate = True + break + + if terminate: + break + + # fail if list has another type + if isOrdered: + posAfterMarker = skipOrderedListMarker(state, nextLine) + if posAfterMarker < 0: + break + start = state.bMarks[nextLine] + state.tShift[nextLine] + else: + posAfterMarker = skipBulletListMarker(state, nextLine) + if posAfterMarker < 0: + break + + if markerChar != state.src[posAfterMarker - 1]: + break + + # Finalize list + if isOrdered: + token = state.push("ordered_list_close", "ol", -1) + else: + token = state.push("bullet_list_close", "ul", -1) + + token.markup = markerChar + + listLines[1] = nextLine + state.line = nextLine + + state.parentType = oldParentType + + # mark paragraphs tight if needed + if tight: + markTightParagraphs(state, listTokIdx) + + return True diff --git a/Scripts/Lib/site-packages/markdown_it/rules_block/paragraph.py b/Scripts/Lib/site-packages/markdown_it/rules_block/paragraph.py new file mode 100644 index 0000000..30ba877 --- /dev/null +++ b/Scripts/Lib/site-packages/markdown_it/rules_block/paragraph.py @@ -0,0 +1,66 @@ +"""Paragraph.""" + +import logging + +from .state_block import StateBlock + +LOGGER = logging.getLogger(__name__) + + +def paragraph(state: StateBlock, startLine: int, endLine: int, silent: bool) -> bool: + LOGGER.debug( + "entering paragraph: %s, %s, %s, %s", state, startLine, endLine, silent + ) + + nextLine = startLine + 1 + ruler = state.md.block.ruler + terminatorRules = ruler.getRules("paragraph") + endLine = state.lineMax + + oldParentType = state.parentType + state.parentType = "paragraph" + + # jump line-by-line until empty one or EOF + while nextLine < endLine: + if state.isEmpty(nextLine): + break + # this would be a code block normally, but after paragraph + # it's considered a lazy continuation regardless of what's there + if state.sCount[nextLine] - state.blkIndent > 3: + nextLine += 1 + continue + + # quirk for blockquotes, this line should already be checked by that rule + if state.sCount[nextLine] < 0: + nextLine += 1 + continue + + # Some tags can terminate paragraph without empty line. + terminate = False + for terminatorRule in terminatorRules: + if terminatorRule(state, nextLine, endLine, True): + terminate = True + break + + if terminate: + break + + nextLine += 1 + + content = state.getLines(startLine, nextLine, state.blkIndent, False).strip() + + state.line = nextLine + + token = state.push("paragraph_open", "p", 1) + token.map = [startLine, state.line] + + token = state.push("inline", "", 0) + token.content = content + token.map = [startLine, state.line] + token.children = [] + + token = state.push("paragraph_close", "p", -1) + + state.parentType = oldParentType + + return True diff --git a/Scripts/Lib/site-packages/markdown_it/rules_block/reference.py b/Scripts/Lib/site-packages/markdown_it/rules_block/reference.py new file mode 100644 index 0000000..ad94d40 --- /dev/null +++ b/Scripts/Lib/site-packages/markdown_it/rules_block/reference.py @@ -0,0 +1,235 @@ +import logging + +from ..common.utils import charCodeAt, isSpace, normalizeReference +from .state_block import StateBlock + +LOGGER = logging.getLogger(__name__) + + +def reference(state: StateBlock, startLine: int, _endLine: int, silent: bool) -> bool: + LOGGER.debug( + "entering reference: %s, %s, %s, %s", state, startLine, _endLine, silent + ) + + pos = state.bMarks[startLine] + state.tShift[startLine] + maximum = state.eMarks[startLine] + nextLine = startLine + 1 + + if state.is_code_block(startLine): + return False + + if state.src[pos] != "[": + return False + + string = state.src[pos : maximum + 1] + + # string = state.getLines(startLine, nextLine, state.blkIndent, False).strip() + maximum = len(string) + + labelEnd = None + pos = 1 + while pos < maximum: + ch = charCodeAt(string, pos) + if ch == 0x5B: # /* [ */ + return False + elif ch == 0x5D: # /* ] */ + labelEnd = pos + break + elif ch == 0x0A: # /* \n */ + if (lineContent := getNextLine(state, nextLine)) is not None: + string += lineContent + maximum = len(string) + nextLine += 1 + elif ch == 0x5C: # /* \ */ + pos += 1 + if ( + pos < maximum + and charCodeAt(string, pos) == 0x0A + and (lineContent := getNextLine(state, nextLine)) is not None + ): + string += lineContent + maximum = len(string) + nextLine += 1 + pos += 1 + + if ( + labelEnd is None or labelEnd < 0 or charCodeAt(string, labelEnd + 1) != 0x3A + ): # /* : */ + return False + + # [label]: destination 'title' + # ^^^ skip optional whitespace here + pos = labelEnd + 2 + while pos < maximum: + ch = charCodeAt(string, pos) + if ch == 0x0A: + if (lineContent := getNextLine(state, nextLine)) is not None: + string += lineContent + maximum = len(string) + nextLine += 1 + elif isSpace(ch): + pass + else: + break + pos += 1 + + # [label]: destination 'title' + # ^^^^^^^^^^^ parse this + destRes = state.md.helpers.parseLinkDestination(string, pos, maximum) + if not destRes.ok: + return False + + href = state.md.normalizeLink(destRes.str) + if not state.md.validateLink(href): + return False + + pos = destRes.pos + + # save cursor state, we could require to rollback later + destEndPos = pos + destEndLineNo = nextLine + + # [label]: destination 'title' + # ^^^ skipping those spaces + start = pos + while pos < maximum: + ch = charCodeAt(string, pos) + if ch == 0x0A: + if (lineContent := getNextLine(state, nextLine)) is not None: + string += lineContent + maximum = len(string) + nextLine += 1 + elif isSpace(ch): + pass + else: + break + pos += 1 + + # [label]: destination 'title' + # ^^^^^^^ parse this + titleRes = state.md.helpers.parseLinkTitle(string, pos, maximum, None) + while titleRes.can_continue: + if (lineContent := getNextLine(state, nextLine)) is None: + break + string += lineContent + pos = maximum + maximum = len(string) + nextLine += 1 + titleRes = state.md.helpers.parseLinkTitle(string, pos, maximum, titleRes) + + if pos < maximum and start != pos and titleRes.ok: + title = titleRes.str + pos = titleRes.pos + else: + title = "" + pos = destEndPos + nextLine = destEndLineNo + + # skip trailing spaces until the rest of the line + while pos < maximum: + ch = charCodeAt(string, pos) + if not isSpace(ch): + break + pos += 1 + + if pos < maximum and charCodeAt(string, pos) != 0x0A and title: + # garbage at the end of the line after title, + # but it could still be a valid reference if we roll back + title = "" + pos = destEndPos + nextLine = destEndLineNo + while pos < maximum: + ch = charCodeAt(string, pos) + if not isSpace(ch): + break + pos += 1 + + if pos < maximum and charCodeAt(string, pos) != 0x0A: + # garbage at the end of the line + return False + + label = normalizeReference(string[1:labelEnd]) + if not label: + # CommonMark 0.20 disallows empty labels + return False + + # Reference can not terminate anything. This check is for safety only. + if silent: + return True + + if "references" not in state.env: + state.env["references"] = {} + + state.line = nextLine + + # note, this is not part of markdown-it JS, but is useful for renderers + if state.md.options.get("inline_definitions", False): + token = state.push("definition", "", 0) + token.meta = { + "id": label, + "title": title, + "url": href, + "label": string[1:labelEnd], + } + token.map = [startLine, state.line] + + if label not in state.env["references"]: + state.env["references"][label] = { + "title": title, + "href": href, + "map": [startLine, state.line], + } + else: + state.env.setdefault("duplicate_refs", []).append( + { + "title": title, + "href": href, + "label": label, + "map": [startLine, state.line], + } + ) + + return True + + +def getNextLine(state: StateBlock, nextLine: int) -> None | str: + endLine = state.lineMax + + if nextLine >= endLine or state.isEmpty(nextLine): + # empty line or end of input + return None + + isContinuation = False + + # this would be a code block normally, but after paragraph + # it's considered a lazy continuation regardless of what's there + if state.is_code_block(nextLine): + isContinuation = True + + # quirk for blockquotes, this line should already be checked by that rule + if state.sCount[nextLine] < 0: + isContinuation = True + + if not isContinuation: + terminatorRules = state.md.block.ruler.getRules("reference") + oldParentType = state.parentType + state.parentType = "reference" + + # Some tags can terminate paragraph without empty line. + terminate = False + for terminatorRule in terminatorRules: + if terminatorRule(state, nextLine, endLine, True): + terminate = True + break + + state.parentType = oldParentType + + if terminate: + # terminated by another block + return None + + pos = state.bMarks[nextLine] + state.tShift[nextLine] + maximum = state.eMarks[nextLine] + + # max + 1 explicitly includes the newline + return state.src[pos : maximum + 1] diff --git a/Scripts/Lib/site-packages/markdown_it/rules_block/state_block.py b/Scripts/Lib/site-packages/markdown_it/rules_block/state_block.py new file mode 100644 index 0000000..445ad26 --- /dev/null +++ b/Scripts/Lib/site-packages/markdown_it/rules_block/state_block.py @@ -0,0 +1,261 @@ +from __future__ import annotations + +from typing import TYPE_CHECKING, Literal + +from ..common.utils import isStrSpace +from ..ruler import StateBase +from ..token import Token +from ..utils import EnvType + +if TYPE_CHECKING: + from markdown_it.main import MarkdownIt + + +class StateBlock(StateBase): + def __init__( + self, src: str, md: MarkdownIt, env: EnvType, tokens: list[Token] + ) -> None: + self.src = src + + # link to parser instance + self.md = md + + self.env = env + + # + # Internal state variables + # + + self.tokens = tokens + + self.bMarks: list[int] = [] # line begin offsets for fast jumps + self.eMarks: list[int] = [] # line end offsets for fast jumps + # offsets of the first non-space characters (tabs not expanded) + self.tShift: list[int] = [] + self.sCount: list[int] = [] # indents for each line (tabs expanded) + + # An amount of virtual spaces (tabs expanded) between beginning + # of each line (bMarks) and real beginning of that line. + # + # It exists only as a hack because blockquotes override bMarks + # losing information in the process. + # + # It's used only when expanding tabs, you can think about it as + # an initial tab length, e.g. bsCount=21 applied to string `\t123` + # means first tab should be expanded to 4-21%4 === 3 spaces. + # + self.bsCount: list[int] = [] + + # block parser variables + self.blkIndent = 0 # required block content indent (for example, if we are + # inside a list, it would be positioned after list marker) + self.line = 0 # line index in src + self.lineMax = 0 # lines count + self.tight = False # loose/tight mode for lists + self.ddIndent = -1 # indent of the current dd block (-1 if there isn't any) + self.listIndent = -1 # indent of the current list block (-1 if there isn't any) + + # can be 'blockquote', 'list', 'root', 'paragraph' or 'reference' + # used in lists to determine if they interrupt a paragraph + self.parentType = "root" + + self.level = 0 + + # renderer + self.result = "" + + # Create caches + # Generate markers. + indent_found = False + + start = pos = indent = offset = 0 + length = len(self.src) + + for pos, character in enumerate(self.src): + if not indent_found: + if isStrSpace(character): + indent += 1 + + if character == "\t": + offset += 4 - offset % 4 + else: + offset += 1 + continue + else: + indent_found = True + + if character == "\n" or pos == length - 1: + if character != "\n": + pos += 1 + self.bMarks.append(start) + self.eMarks.append(pos) + self.tShift.append(indent) + self.sCount.append(offset) + self.bsCount.append(0) + + indent_found = False + indent = 0 + offset = 0 + start = pos + 1 + + # Push fake entry to simplify cache bounds checks + self.bMarks.append(length) + self.eMarks.append(length) + self.tShift.append(0) + self.sCount.append(0) + self.bsCount.append(0) + + self.lineMax = len(self.bMarks) - 1 # don't count last fake line + + # pre-check if code blocks are enabled, to speed up is_code_block method + self._code_enabled = "code" in self.md["block"].ruler.get_active_rules() + + def __repr__(self) -> str: + return ( + f"{self.__class__.__name__}" + f"(line={self.line},level={self.level},tokens={len(self.tokens)})" + ) + + def push(self, ttype: str, tag: str, nesting: Literal[-1, 0, 1]) -> Token: + """Push new token to "stream".""" + token = Token(ttype, tag, nesting) + token.block = True + if nesting < 0: + self.level -= 1 # closing tag + token.level = self.level + if nesting > 0: + self.level += 1 # opening tag + self.tokens.append(token) + return token + + def isEmpty(self, line: int) -> bool: + """.""" + return (self.bMarks[line] + self.tShift[line]) >= self.eMarks[line] + + def skipEmptyLines(self, from_pos: int) -> int: + """.""" + while from_pos < self.lineMax: + try: + if (self.bMarks[from_pos] + self.tShift[from_pos]) < self.eMarks[ + from_pos + ]: + break + except IndexError: + pass + from_pos += 1 + return from_pos + + def skipSpaces(self, pos: int) -> int: + """Skip spaces from given position.""" + while True: + try: + current = self.src[pos] + except IndexError: + break + if not isStrSpace(current): + break + pos += 1 + return pos + + def skipSpacesBack(self, pos: int, minimum: int) -> int: + """Skip spaces from given position in reverse.""" + if pos <= minimum: + return pos + while pos > minimum: + pos -= 1 + if not isStrSpace(self.src[pos]): + return pos + 1 + return pos + + def skipChars(self, pos: int, code: int) -> int: + """Skip character code from given position.""" + while True: + try: + current = self.srcCharCode[pos] + except IndexError: + break + if current != code: + break + pos += 1 + return pos + + def skipCharsStr(self, pos: int, ch: str) -> int: + """Skip character string from given position.""" + while True: + try: + current = self.src[pos] + except IndexError: + break + if current != ch: + break + pos += 1 + return pos + + def skipCharsBack(self, pos: int, code: int, minimum: int) -> int: + """Skip character code reverse from given position - 1.""" + if pos <= minimum: + return pos + while pos > minimum: + pos -= 1 + if code != self.srcCharCode[pos]: + return pos + 1 + return pos + + def skipCharsStrBack(self, pos: int, ch: str, minimum: int) -> int: + """Skip character string reverse from given position - 1.""" + if pos <= minimum: + return pos + while pos > minimum: + pos -= 1 + if ch != self.src[pos]: + return pos + 1 + return pos + + def getLines(self, begin: int, end: int, indent: int, keepLastLF: bool) -> str: + """Cut lines range from source.""" + line = begin + if begin >= end: + return "" + + queue = [""] * (end - begin) + + i = 1 + while line < end: + lineIndent = 0 + lineStart = first = self.bMarks[line] + last = ( + self.eMarks[line] + 1 + if line + 1 < end or keepLastLF + else self.eMarks[line] + ) + + while (first < last) and (lineIndent < indent): + ch = self.src[first] + if isStrSpace(ch): + if ch == "\t": + lineIndent += 4 - (lineIndent + self.bsCount[line]) % 4 + else: + lineIndent += 1 + elif first - lineStart < self.tShift[line]: + lineIndent += 1 + else: + break + first += 1 + + if lineIndent > indent: + # partially expanding tabs in code blocks, e.g '\t\tfoobar' + # with indent=2 becomes ' \tfoobar' + queue[i - 1] = (" " * (lineIndent - indent)) + self.src[first:last] + else: + queue[i - 1] = self.src[first:last] + + line += 1 + i += 1 + + return "".join(queue) + + def is_code_block(self, line: int) -> bool: + """Check if line is a code block, + i.e. the code block rule is enabled and text is indented by more than 3 spaces. + """ + return self._code_enabled and (self.sCount[line] - self.blkIndent) >= 4 diff --git a/Scripts/Lib/site-packages/markdown_it/rules_block/table.py b/Scripts/Lib/site-packages/markdown_it/rules_block/table.py new file mode 100644 index 0000000..c52553d --- /dev/null +++ b/Scripts/Lib/site-packages/markdown_it/rules_block/table.py @@ -0,0 +1,250 @@ +# GFM table, https://github.github.com/gfm/#tables-extension- +from __future__ import annotations + +import re + +from ..common.utils import charStrAt, isStrSpace +from .state_block import StateBlock + +headerLineRe = re.compile(r"^:?-+:?$") +enclosingPipesRe = re.compile(r"^\||\|$") + +# Limit the amount of empty autocompleted cells in a table, +# see https://github.com/markdown-it/markdown-it/issues/1000, +# Both pulldown-cmark and commonmark-hs limit the number of cells this way to ~200k. +# We set it to 65k, which can expand user input by a factor of x370 +# (256x256 square is 1.8kB expanded into 650kB). +MAX_AUTOCOMPLETED_CELLS = 0x10000 + + +def getLine(state: StateBlock, line: int) -> str: + pos = state.bMarks[line] + state.tShift[line] + maximum = state.eMarks[line] + + # return state.src.substr(pos, max - pos) + return state.src[pos:maximum] + + +def escapedSplit(string: str) -> list[str]: + result: list[str] = [] + pos = 0 + max = len(string) + isEscaped = False + lastPos = 0 + current = "" + ch = charStrAt(string, pos) + + while pos < max: + if ch == "|": + if not isEscaped: + # pipe separating cells, '|' + result.append(current + string[lastPos:pos]) + current = "" + lastPos = pos + 1 + else: + # escaped pipe, '\|' + current += string[lastPos : pos - 1] + lastPos = pos + + isEscaped = ch == "\\" + pos += 1 + + ch = charStrAt(string, pos) + + result.append(current + string[lastPos:]) + + return result + + +def table(state: StateBlock, startLine: int, endLine: int, silent: bool) -> bool: + tbodyLines = None + + # should have at least two lines + if startLine + 2 > endLine: + return False + + nextLine = startLine + 1 + + if state.sCount[nextLine] < state.blkIndent: + return False + + if state.is_code_block(nextLine): + return False + + # first character of the second line should be '|', '-', ':', + # and no other characters are allowed but spaces; + # basically, this is the equivalent of /^[-:|][-:|\s]*$/ regexp + + pos = state.bMarks[nextLine] + state.tShift[nextLine] + if pos >= state.eMarks[nextLine]: + return False + first_ch = state.src[pos] + pos += 1 + if first_ch not in ("|", "-", ":"): + return False + + if pos >= state.eMarks[nextLine]: + return False + second_ch = state.src[pos] + pos += 1 + if second_ch not in ("|", "-", ":") and not isStrSpace(second_ch): + return False + + # if first character is '-', then second character must not be a space + # (due to parsing ambiguity with list) + if first_ch == "-" and isStrSpace(second_ch): + return False + + while pos < state.eMarks[nextLine]: + ch = state.src[pos] + + if ch not in ("|", "-", ":") and not isStrSpace(ch): + return False + + pos += 1 + + lineText = getLine(state, startLine + 1) + + columns = lineText.split("|") + aligns = [] + for i in range(len(columns)): + t = columns[i].strip() + if not t: + # allow empty columns before and after table, but not in between columns; + # e.g. allow ` |---| `, disallow ` ---||--- ` + if i == 0 or i == len(columns) - 1: + continue + else: + return False + + if not headerLineRe.search(t): + return False + if charStrAt(t, len(t) - 1) == ":": + aligns.append("center" if charStrAt(t, 0) == ":" else "right") + elif charStrAt(t, 0) == ":": + aligns.append("left") + else: + aligns.append("") + + lineText = getLine(state, startLine).strip() + if "|" not in lineText: + return False + if state.is_code_block(startLine): + return False + columns = escapedSplit(lineText) + if columns and columns[0] == "": + columns.pop(0) + if columns and columns[-1] == "": + columns.pop() + + # header row will define an amount of columns in the entire table, + # and align row should be exactly the same (the rest of the rows can differ) + columnCount = len(columns) + if columnCount == 0 or columnCount != len(aligns): + return False + + if silent: + return True + + oldParentType = state.parentType + state.parentType = "table" + + # use 'blockquote' lists for termination because it's + # the most similar to tables + terminatorRules = state.md.block.ruler.getRules("blockquote") + + token = state.push("table_open", "table", 1) + token.map = tableLines = [startLine, 0] + + token = state.push("thead_open", "thead", 1) + token.map = [startLine, startLine + 1] + + token = state.push("tr_open", "tr", 1) + token.map = [startLine, startLine + 1] + + for i in range(len(columns)): + token = state.push("th_open", "th", 1) + if aligns[i]: + token.attrs = {"style": "text-align:" + aligns[i]} + + token = state.push("inline", "", 0) + # note in markdown-it this map was removed in v12.0.0 however, we keep it, + # since it is helpful to propagate to children tokens + token.map = [startLine, startLine + 1] + token.content = columns[i].strip() + token.children = [] + + token = state.push("th_close", "th", -1) + + token = state.push("tr_close", "tr", -1) + token = state.push("thead_close", "thead", -1) + + autocompleted_cells = 0 + nextLine = startLine + 2 + while nextLine < endLine: + if state.sCount[nextLine] < state.blkIndent: + break + + terminate = False + for i in range(len(terminatorRules)): + if terminatorRules[i](state, nextLine, endLine, True): + terminate = True + break + + if terminate: + break + lineText = getLine(state, nextLine).strip() + if not lineText: + break + if state.is_code_block(nextLine): + break + columns = escapedSplit(lineText) + if columns and columns[0] == "": + columns.pop(0) + if columns and columns[-1] == "": + columns.pop() + + # note: autocomplete count can be negative if user specifies more columns than header, + # but that does not affect intended use (which is limiting expansion) + autocompleted_cells += columnCount - len(columns) + if autocompleted_cells > MAX_AUTOCOMPLETED_CELLS: + break + + if nextLine == startLine + 2: + token = state.push("tbody_open", "tbody", 1) + token.map = tbodyLines = [startLine + 2, 0] + + token = state.push("tr_open", "tr", 1) + token.map = [nextLine, nextLine + 1] + + for i in range(columnCount): + token = state.push("td_open", "td", 1) + if aligns[i]: + token.attrs = {"style": "text-align:" + aligns[i]} + + token = state.push("inline", "", 0) + # note in markdown-it this map was removed in v12.0.0 however, we keep it, + # since it is helpful to propagate to children tokens + token.map = [nextLine, nextLine + 1] + try: + token.content = columns[i].strip() if columns[i] else "" + except IndexError: + token.content = "" + token.children = [] + + token = state.push("td_close", "td", -1) + + token = state.push("tr_close", "tr", -1) + + nextLine += 1 + + if tbodyLines: + token = state.push("tbody_close", "tbody", -1) + tbodyLines[1] = nextLine + + token = state.push("table_close", "table", -1) + + tableLines[1] = nextLine + state.parentType = oldParentType + state.line = nextLine + return True diff --git a/Scripts/Lib/site-packages/markdown_it/rules_core/__init__.py b/Scripts/Lib/site-packages/markdown_it/rules_core/__init__.py new file mode 100644 index 0000000..e7d7753 --- /dev/null +++ b/Scripts/Lib/site-packages/markdown_it/rules_core/__init__.py @@ -0,0 +1,19 @@ +__all__ = ( + "StateCore", + "block", + "inline", + "linkify", + "normalize", + "replace", + "smartquotes", + "text_join", +) + +from .block import block +from .inline import inline +from .linkify import linkify +from .normalize import normalize +from .replacements import replace +from .smartquotes import smartquotes +from .state_core import StateCore +from .text_join import text_join diff --git a/Scripts/Lib/site-packages/markdown_it/rules_core/__pycache__/__init__.cpython-310.pyc b/Scripts/Lib/site-packages/markdown_it/rules_core/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6b231150d1dbb4f2ae7a9f1f58bc9e0f3361c8df GIT binary patch literal 545 zcmYjNyN=W_6t$B~UNb8pzJPWLSPCkH5P}w_nXN2KmNzks$#pzjdjvC|z@P9Ze1ls= zLACu>*v?9Dqug_@t#fiu?A29IV%`1xefUlZ`IUzMtBAv!__{-EBVlBuV*%7qMrq5u2o%@&OWeTiqNjvxmW*3L-uUryF57do%LdGXom`A-Z- zwiHvI2;~CR0;>h;1)2pO1Z|vl+jVG!kN`qthpfk>#-t6Khp!todxyyflMCxz${>aq z0+Symw;u#IiKljdVK4bEE;)cbjr{ow@m}Ae#4{H+)`H`^)1>%YZ4dGyapWJQ^9rBb zC==6q#rFg1qjx;2xYJ%eJ<4H{pOoYAFHEETIt%Tu@dV1{Ev|*ov-UzfJDx-P%Gfbp Ty-usS$FWspv)<5u&m;O5X4{FB literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/markdown_it/rules_core/__pycache__/block.cpython-310.pyc b/Scripts/Lib/site-packages/markdown_it/rules_core/__pycache__/block.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1c3a7f83ff1e261a8cea97bbdf7bab44aa3e5a21 GIT binary patch literal 626 zcmYjPJ8#=C5GF;5mR+X^(8pFFtA-{WIu%7xG;8ClN9ch{E%eq zKk0AaT6FN#y;F}03gm$MbngdG_TXSfkpBGqz44TgUr~8XDJmb4-7$h9igu)@C8b0q zigiiPN``W(naULZlB$WyZ__eWd`XJwKEb4dhHPb9ZT46{YSX2cUY}afA#+g-9JJqp zS=2G&KgC>*e2VN!gdMpc@XAv~WA7XGouVb#(TXXi(sh*5H9^eK&hI8WdLQQ`%b1y8 zOz&o6Jj(ce5@YVu2Y-<*0&h&$7#+wSTM=Lg#k`z7SkJ7|5C;m(K^-QwHC`JZSTBc= z*PEtOpiSUD?&$)T!=Q~SlU{}Fyt8#1vO$8=fob!#NFa-)vN8Gxf#<0Gy)55}g}(B2 zXSYhcd0TyM&OySps8-f?PAs;q7M~isk>4aJaVDMDaJ16>(BTt`Wev^Xoxm*N8n0gu zvTo&CJJCyMmAy1o<4<7QX;;=LGc!r*F m{c<)QY^(tB*BB$l1s=f*bcFnUZxy!t5O3<@A?IXHU$TF94WC>9 literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/markdown_it/rules_core/__pycache__/inline.cpython-310.pyc b/Scripts/Lib/site-packages/markdown_it/rules_core/__pycache__/inline.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..da1093dc13dc2adfef0d36afd9e78275dc14be7a GIT binary patch literal 541 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 literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/markdown_it/rules_core/__pycache__/smartquotes.cpython-310.pyc b/Scripts/Lib/site-packages/markdown_it/rules_core/__pycache__/smartquotes.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7c975e2993528fc82044511bfa2656e914952325 GIT binary patch literal 3319 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 literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/markdown_it/rules_core/block.py b/Scripts/Lib/site-packages/markdown_it/rules_core/block.py new file mode 100644 index 0000000..a6c3bb8 --- /dev/null +++ b/Scripts/Lib/site-packages/markdown_it/rules_core/block.py @@ -0,0 +1,13 @@ +from ..token import Token +from .state_core import StateCore + + +def block(state: StateCore) -> None: + if state.inlineMode: + token = Token("inline", "", 0) + token.content = state.src + token.map = [0, 1] + token.children = [] + state.tokens.append(token) + else: + state.md.block.parse(state.src, state.md, state.env, state.tokens) diff --git a/Scripts/Lib/site-packages/markdown_it/rules_core/inline.py b/Scripts/Lib/site-packages/markdown_it/rules_core/inline.py new file mode 100644 index 0000000..c3fd0b5 --- /dev/null +++ b/Scripts/Lib/site-packages/markdown_it/rules_core/inline.py @@ -0,0 +1,10 @@ +from .state_core import StateCore + + +def inline(state: StateCore) -> None: + """Parse inlines""" + for token in state.tokens: + if token.type == "inline": + if token.children is None: + token.children = [] + state.md.inline.parse(token.content, state.md, state.env, token.children) diff --git a/Scripts/Lib/site-packages/markdown_it/rules_core/linkify.py b/Scripts/Lib/site-packages/markdown_it/rules_core/linkify.py new file mode 100644 index 0000000..efbc9d4 --- /dev/null +++ b/Scripts/Lib/site-packages/markdown_it/rules_core/linkify.py @@ -0,0 +1,149 @@ +from __future__ import annotations + +import re +from typing import Protocol + +from ..common.utils import arrayReplaceAt, isLinkClose, isLinkOpen +from ..token import Token +from .state_core import StateCore + +HTTP_RE = re.compile(r"^http://") +MAILTO_RE = re.compile(r"^mailto:") +TEST_MAILTO_RE = re.compile(r"^mailto:", flags=re.IGNORECASE) + + +def linkify(state: StateCore) -> None: + """Rule for identifying plain-text links.""" + if not state.md.options.linkify: + return + + if not state.md.linkify: + raise ModuleNotFoundError("Linkify enabled but not installed.") + + for inline_token in state.tokens: + if inline_token.type != "inline" or not state.md.linkify.pretest( + inline_token.content + ): + continue + + tokens = inline_token.children + + htmlLinkLevel = 0 + + # We scan from the end, to keep position when new tags added. + # Use reversed logic in links start/end match + assert tokens is not None + i = len(tokens) + while i >= 1: + i -= 1 + assert isinstance(tokens, list) + currentToken = tokens[i] + + # Skip content of markdown links + if currentToken.type == "link_close": + i -= 1 + while ( + tokens[i].level != currentToken.level + and tokens[i].type != "link_open" + ): + i -= 1 + continue + + # Skip content of html tag links + if currentToken.type == "html_inline": + if isLinkOpen(currentToken.content) and htmlLinkLevel > 0: + htmlLinkLevel -= 1 + if isLinkClose(currentToken.content): + htmlLinkLevel += 1 + if htmlLinkLevel > 0: + continue + + if currentToken.type == "text" and state.md.linkify.test( + currentToken.content + ): + text = currentToken.content + links: list[_LinkType] = state.md.linkify.match(text) or [] + + # Now split string to nodes + nodes = [] + level = currentToken.level + lastPos = 0 + + # forbid escape sequence at the start of the string, + # this avoids http\://example.com/ from being linkified as + # http://example.com/ + if ( + links + and links[0].index == 0 + and i > 0 + and tokens[i - 1].type == "text_special" + ): + links = links[1:] + + for link in links: + url = link.url + fullUrl = state.md.normalizeLink(url) + if not state.md.validateLink(fullUrl): + continue + + urlText = link.text + + # Linkifier might send raw hostnames like "example.com", where url + # starts with domain name. So we prepend http:// in those cases, + # and remove it afterwards. + if not link.schema: + urlText = HTTP_RE.sub( + "", state.md.normalizeLinkText("http://" + urlText) + ) + elif link.schema == "mailto:" and TEST_MAILTO_RE.search(urlText): + urlText = MAILTO_RE.sub( + "", state.md.normalizeLinkText("mailto:" + urlText) + ) + else: + urlText = state.md.normalizeLinkText(urlText) + + pos = link.index + + if pos > lastPos: + token = Token("text", "", 0) + token.content = text[lastPos:pos] + token.level = level + nodes.append(token) + + token = Token("link_open", "a", 1) + token.attrs = {"href": fullUrl} + token.level = level + level += 1 + token.markup = "linkify" + token.info = "auto" + nodes.append(token) + + token = Token("text", "", 0) + token.content = urlText + token.level = level + nodes.append(token) + + token = Token("link_close", "a", -1) + level -= 1 + token.level = level + token.markup = "linkify" + token.info = "auto" + nodes.append(token) + + lastPos = link.last_index + + if lastPos < len(text): + token = Token("text", "", 0) + token.content = text[lastPos:] + token.level = level + nodes.append(token) + + inline_token.children = tokens = arrayReplaceAt(tokens, i, nodes) + + +class _LinkType(Protocol): + url: str + text: str + index: int + last_index: int + schema: str | None diff --git a/Scripts/Lib/site-packages/markdown_it/rules_core/normalize.py b/Scripts/Lib/site-packages/markdown_it/rules_core/normalize.py new file mode 100644 index 0000000..3243924 --- /dev/null +++ b/Scripts/Lib/site-packages/markdown_it/rules_core/normalize.py @@ -0,0 +1,19 @@ +"""Normalize input string.""" + +import re + +from .state_core import StateCore + +# https://spec.commonmark.org/0.29/#line-ending +NEWLINES_RE = re.compile(r"\r\n?|\n") +NULL_RE = re.compile(r"\0") + + +def normalize(state: StateCore) -> None: + # Normalize newlines + string = NEWLINES_RE.sub("\n", state.src) + + # Replace NULL characters + string = NULL_RE.sub("\ufffd", string) + + state.src = string diff --git a/Scripts/Lib/site-packages/markdown_it/rules_core/replacements.py b/Scripts/Lib/site-packages/markdown_it/rules_core/replacements.py new file mode 100644 index 0000000..bcc9980 --- /dev/null +++ b/Scripts/Lib/site-packages/markdown_it/rules_core/replacements.py @@ -0,0 +1,127 @@ +"""Simple typographic replacements + +* ``(c)``, ``(C)`` → © +* ``(tm)``, ``(TM)`` → ™ +* ``(r)``, ``(R)`` → ® +* ``+-`` → ± +* ``...`` → … +* ``?....`` → ?.. +* ``!....`` → !.. +* ``????????`` → ??? +* ``!!!!!`` → !!! +* ``,,,`` → , +* ``--`` → &ndash +* ``---`` → &mdash +""" + +from __future__ import annotations + +import logging +import re + +from ..token import Token +from .state_core import StateCore + +LOGGER = logging.getLogger(__name__) + +# TODO: +# - fractionals 1/2, 1/4, 3/4 -> ½, ¼, ¾ +# - multiplication 2 x 4 -> 2 × 4 + +RARE_RE = re.compile(r"\+-|\.\.|\?\?\?\?|!!!!|,,|--") + +# Workaround for phantomjs - need regex without /g flag, +# or root check will fail every second time +# SCOPED_ABBR_TEST_RE = r"\((c|tm|r)\)" + +SCOPED_ABBR_RE = re.compile(r"\((c|tm|r)\)", flags=re.IGNORECASE) + +PLUS_MINUS_RE = re.compile(r"\+-") + +ELLIPSIS_RE = re.compile(r"\.{2,}") + +ELLIPSIS_QUESTION_EXCLAMATION_RE = re.compile(r"([?!])…") + +QUESTION_EXCLAMATION_RE = re.compile(r"([?!]){4,}") + +COMMA_RE = re.compile(r",{2,}") + +EM_DASH_RE = re.compile(r"(^|[^-])---(?=[^-]|$)", flags=re.MULTILINE) + +EN_DASH_RE = re.compile(r"(^|\s)--(?=\s|$)", flags=re.MULTILINE) + +EN_DASH_INDENT_RE = re.compile(r"(^|[^-\s])--(?=[^-\s]|$)", flags=re.MULTILINE) + + +SCOPED_ABBR = {"c": "©", "r": "®", "tm": "™"} + + +def replaceFn(match: re.Match[str]) -> str: + return SCOPED_ABBR[match.group(1).lower()] + + +def replace_scoped(inlineTokens: list[Token]) -> None: + inside_autolink = 0 + + for token in inlineTokens: + if token.type == "text" and not inside_autolink: + token.content = SCOPED_ABBR_RE.sub(replaceFn, token.content) + + if token.type == "link_open" and token.info == "auto": + inside_autolink -= 1 + + if token.type == "link_close" and token.info == "auto": + inside_autolink += 1 + + +def replace_rare(inlineTokens: list[Token]) -> None: + inside_autolink = 0 + + for token in inlineTokens: + if ( + token.type == "text" + and (not inside_autolink) + and RARE_RE.search(token.content) + ): + # +- -> ± + token.content = PLUS_MINUS_RE.sub("±", token.content) + + # .., ..., ....... -> … + token.content = ELLIPSIS_RE.sub("…", token.content) + + # but ?..... & !..... -> ?.. & !.. + token.content = ELLIPSIS_QUESTION_EXCLAMATION_RE.sub("\\1..", token.content) + token.content = QUESTION_EXCLAMATION_RE.sub("\\1\\1\\1", token.content) + + # ,, ,,, ,,,, -> , + token.content = COMMA_RE.sub(",", token.content) + + # em-dash + token.content = EM_DASH_RE.sub("\\1\u2014", token.content) + + # en-dash + token.content = EN_DASH_RE.sub("\\1\u2013", token.content) + token.content = EN_DASH_INDENT_RE.sub("\\1\u2013", token.content) + + if token.type == "link_open" and token.info == "auto": + inside_autolink -= 1 + + if token.type == "link_close" and token.info == "auto": + inside_autolink += 1 + + +def replace(state: StateCore) -> None: + if not state.md.options.typographer: + return + + for token in state.tokens: + if token.type != "inline": + continue + if token.children is None: + continue + + if SCOPED_ABBR_RE.search(token.content): + replace_scoped(token.children) + + if RARE_RE.search(token.content): + replace_rare(token.children) diff --git a/Scripts/Lib/site-packages/markdown_it/rules_core/smartquotes.py b/Scripts/Lib/site-packages/markdown_it/rules_core/smartquotes.py new file mode 100644 index 0000000..f9b8b45 --- /dev/null +++ b/Scripts/Lib/site-packages/markdown_it/rules_core/smartquotes.py @@ -0,0 +1,202 @@ +"""Convert straight quotation marks to typographic ones""" + +from __future__ import annotations + +import re +from typing import Any + +from ..common.utils import charCodeAt, isMdAsciiPunct, isPunctChar, isWhiteSpace +from ..token import Token +from .state_core import StateCore + +QUOTE_TEST_RE = re.compile(r"['\"]") +QUOTE_RE = re.compile(r"['\"]") +APOSTROPHE = "\u2019" # ’ + + +def replaceAt(string: str, index: int, ch: str) -> str: + # When the index is negative, the behavior is different from the js version. + # But basically, the index will not be negative. + assert index >= 0 + return string[:index] + ch + string[index + 1 :] + + +def process_inlines(tokens: list[Token], state: StateCore) -> None: + stack: list[dict[str, Any]] = [] + + for i, token in enumerate(tokens): + thisLevel = token.level + + j = 0 + for j in range(len(stack))[::-1]: + if stack[j]["level"] <= thisLevel: + break + else: + # When the loop is terminated without a "break". + # Subtract 1 to get the same index as the js version. + j -= 1 + + stack = stack[: j + 1] + + if token.type != "text": + continue + + text = token.content + pos = 0 + maximum = len(text) + + while pos < maximum: + goto_outer = False + lastIndex = pos + t = QUOTE_RE.search(text[lastIndex:]) + if not t: + break + + canOpen = canClose = True + pos = t.start(0) + lastIndex + 1 + isSingle = t.group(0) == "'" + + # Find previous character, + # default to space if it's the beginning of the line + lastChar: None | int = 0x20 + + if t.start(0) + lastIndex - 1 >= 0: + lastChar = charCodeAt(text, t.start(0) + lastIndex - 1) + else: + for j in range(i)[::-1]: + if tokens[j].type == "softbreak" or tokens[j].type == "hardbreak": + break + # should skip all tokens except 'text', 'html_inline' or 'code_inline' + if not tokens[j].content: + continue + + lastChar = charCodeAt(tokens[j].content, len(tokens[j].content) - 1) + break + + # Find next character, + # default to space if it's the end of the line + nextChar: None | int = 0x20 + + if pos < maximum: + nextChar = charCodeAt(text, pos) + else: + for j in range(i + 1, len(tokens)): + # nextChar defaults to 0x20 + if tokens[j].type == "softbreak" or tokens[j].type == "hardbreak": + break + # should skip all tokens except 'text', 'html_inline' or 'code_inline' + if not tokens[j].content: + continue + + nextChar = charCodeAt(tokens[j].content, 0) + break + + isLastPunctChar = lastChar is not None and ( + isMdAsciiPunct(lastChar) or isPunctChar(chr(lastChar)) + ) + isNextPunctChar = nextChar is not None and ( + isMdAsciiPunct(nextChar) or isPunctChar(chr(nextChar)) + ) + + isLastWhiteSpace = lastChar is not None and isWhiteSpace(lastChar) + isNextWhiteSpace = nextChar is not None and isWhiteSpace(nextChar) + + if isNextWhiteSpace: # noqa: SIM114 + canOpen = False + elif isNextPunctChar and not (isLastWhiteSpace or isLastPunctChar): + canOpen = False + + if isLastWhiteSpace: # noqa: SIM114 + canClose = False + elif isLastPunctChar and not (isNextWhiteSpace or isNextPunctChar): + canClose = False + + if nextChar == 0x22 and t.group(0) == '"': # 0x22: " # noqa: SIM102 + if ( + lastChar is not None and lastChar >= 0x30 and lastChar <= 0x39 + ): # 0x30: 0, 0x39: 9 + # special case: 1"" - count first quote as an inch + canClose = canOpen = False + + if canOpen and canClose: + # Replace quotes in the middle of punctuation sequence, but not + # in the middle of the words, i.e.: + # + # 1. foo " bar " baz - not replaced + # 2. foo-"-bar-"-baz - replaced + # 3. foo"bar"baz - not replaced + canOpen = isLastPunctChar + canClose = isNextPunctChar + + if not canOpen and not canClose: + # middle of word + if isSingle: + token.content = replaceAt( + token.content, t.start(0) + lastIndex, APOSTROPHE + ) + continue + + if canClose: + # this could be a closing quote, rewind the stack to get a match + for j in range(len(stack))[::-1]: + item = stack[j] + if stack[j]["level"] < thisLevel: + break + if item["single"] == isSingle and stack[j]["level"] == thisLevel: + item = stack[j] + + if isSingle: + openQuote = state.md.options.quotes[2] + closeQuote = state.md.options.quotes[3] + else: + openQuote = state.md.options.quotes[0] + closeQuote = state.md.options.quotes[1] + + # replace token.content *before* tokens[item.token].content, + # because, if they are pointing at the same token, replaceAt + # could mess up indices when quote length != 1 + token.content = replaceAt( + token.content, t.start(0) + lastIndex, closeQuote + ) + tokens[item["token"]].content = replaceAt( + tokens[item["token"]].content, item["pos"], openQuote + ) + + pos += len(closeQuote) - 1 + if item["token"] == i: + pos += len(openQuote) - 1 + + text = token.content + maximum = len(text) + + stack = stack[:j] + goto_outer = True + break + if goto_outer: + goto_outer = False + continue + + if canOpen: + stack.append( + { + "token": i, + "pos": t.start(0) + lastIndex, + "single": isSingle, + "level": thisLevel, + } + ) + elif canClose and isSingle: + token.content = replaceAt( + token.content, t.start(0) + lastIndex, APOSTROPHE + ) + + +def smartquotes(state: StateCore) -> None: + if not state.md.options.typographer: + return + + for token in state.tokens: + if token.type != "inline" or not QUOTE_RE.search(token.content): + continue + if token.children is not None: + process_inlines(token.children, state) diff --git a/Scripts/Lib/site-packages/markdown_it/rules_core/state_core.py b/Scripts/Lib/site-packages/markdown_it/rules_core/state_core.py new file mode 100644 index 0000000..a938041 --- /dev/null +++ b/Scripts/Lib/site-packages/markdown_it/rules_core/state_core.py @@ -0,0 +1,25 @@ +from __future__ import annotations + +from typing import TYPE_CHECKING + +from ..ruler import StateBase +from ..token import Token +from ..utils import EnvType + +if TYPE_CHECKING: + from markdown_it import MarkdownIt + + +class StateCore(StateBase): + def __init__( + self, + src: str, + md: MarkdownIt, + env: EnvType, + tokens: list[Token] | None = None, + ) -> None: + self.src = src + self.md = md # link to parser instance + self.env = env + self.tokens: list[Token] = tokens or [] + self.inlineMode = False diff --git a/Scripts/Lib/site-packages/markdown_it/rules_core/text_join.py b/Scripts/Lib/site-packages/markdown_it/rules_core/text_join.py new file mode 100644 index 0000000..5379f6d --- /dev/null +++ b/Scripts/Lib/site-packages/markdown_it/rules_core/text_join.py @@ -0,0 +1,35 @@ +"""Join raw text tokens with the rest of the text + +This is set as a separate rule to provide an opportunity for plugins +to run text replacements after text join, but before escape join. + +For example, `\\:)` shouldn't be replaced with an emoji. +""" + +from __future__ import annotations + +from ..token import Token +from .state_core import StateCore + + +def text_join(state: StateCore) -> None: + """Join raw text for escape sequences (`text_special`) tokens with the rest of the text""" + + for inline_token in state.tokens[:]: + if inline_token.type != "inline": + continue + + # convert text_special to text and join all adjacent text nodes + new_tokens: list[Token] = [] + for child_token in inline_token.children or []: + if child_token.type == "text_special": + child_token.type = "text" + if ( + child_token.type == "text" + and new_tokens + and new_tokens[-1].type == "text" + ): + new_tokens[-1].content += child_token.content + else: + new_tokens.append(child_token) + inline_token.children = new_tokens diff --git a/Scripts/Lib/site-packages/markdown_it/rules_inline/__init__.py b/Scripts/Lib/site-packages/markdown_it/rules_inline/__init__.py new file mode 100644 index 0000000..d82ef8f --- /dev/null +++ b/Scripts/Lib/site-packages/markdown_it/rules_inline/__init__.py @@ -0,0 +1,31 @@ +__all__ = ( + "StateInline", + "autolink", + "backtick", + "emphasis", + "entity", + "escape", + "fragments_join", + "html_inline", + "image", + "link", + "link_pairs", + "linkify", + "newline", + "strikethrough", + "text", +) +from . import emphasis, strikethrough +from .autolink import autolink +from .backticks import backtick +from .balance_pairs import link_pairs +from .entity import entity +from .escape import escape +from .fragments_join import fragments_join +from .html_inline import html_inline +from .image import image +from .link import link +from .linkify import linkify +from .newline import newline +from .state_inline import StateInline +from .text import text diff --git a/Scripts/Lib/site-packages/markdown_it/rules_inline/__pycache__/__init__.cpython-310.pyc b/Scripts/Lib/site-packages/markdown_it/rules_inline/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2739fd0e3d177bcc2ebe6725cbfdbf299d46f603 GIT binary patch literal 806 zcmZvZzmL-}6vvY`ZGJcHl^L;ifMZ}n2q88k=+c|4NS2%UE~a);J-fOq;vZsX;7{Oh z@QN6i*qL~C4#9wN(Yqch86etjg*>n(Pmk;AF2pFX2+ z#U2=(YkD;dQrFwlf!D9a(6J8;+WH;ShQp&PoRY-c^{xSNG`hxHwHAgyKH?y861r9l u4()K;Q(-RQB)Pu#aY+$`q4de|Y?BviXz}AqXHGxF5CzLs5&r*KhQ9%3XvPQt literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/markdown_it/rules_inline/__pycache__/autolink.cpython-310.pyc b/Scripts/Lib/site-packages/markdown_it/rules_inline/__pycache__/autolink.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..beeac8113355f861cb701963c306cc2169171c40 GIT binary patch literal 1482 zcmc&!Pj4GV6rY)${bPIMCapw7C8Smq$Tqd(P((!(lBTFg5soWi_p)8bY&;XZc>lPw zyWl!&E`Zc;L2~3P@Ci8a0fr;ukP|l!xs*5CKvE8HWLER`y*Kao{>{@Q3ky{Q>-V32 z8!cG~{i=k^%K+g%?DPQ;h8PZ!ix^>Ah$G?>j5s>h7(Kx*Ejb-Hof(`klN-$9#-YI~ ztoki=O@_P3shxr!)H%gK9V~0z%+L6490oC;J>Oq>;x}eH4Y$?!pn3DnTW`JXy>olj zTl;W(fAHB+G5@;JU%h`}(qGx$xR4tCqt>1G*XI|SzOxM$Uh|UXzY)%D=hp1*-%YoI4{T0sS2^q#UK1s&_+jdP0 zTAk^@H=Z`1UMs!A-7EwCJMca?GVPca#tCL9$KpAh>&J$Y=Vr;9g?WP0cIgMFM+G{z zn88fAU2SeLt1tsxSc3|y0Ijkr&{}CzV>Vk*Hl-I^d4#it@~jT{D<%FF6otC8dSQHn z+2S&~hX@)Vrgc$vy(V^pYx0(u_|tiG-Sdw^{;*VUqIG7qCv1r zDd$~)edJGrD32r=j--~0&@~V9FnlaRsb|TU$3Gx(1MJTVcf;#I1gJP?UhBOQXG{|^k;t$9E=REaP zMJ)L$9t7E%$U~kEg7QIG`>XrS$um)d6l~b(0T2V%3B?96Fd-JUFvV43fyTlFlRvK7 zbz);1w3O6w6&vu?fvbbPfnNi=I$8YJb4tp1jwOlUu3bJ1=Sc|-;;SY{6L=@Yb&$k0 orJ@JWg%Vb_>k_%Cj;+loVNl$bnw_)`#KJbAgkbujs$JLq1c9o70RR91 literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/markdown_it/rules_inline/__pycache__/backticks.cpython-310.pyc b/Scripts/Lib/site-packages/markdown_it/rules_inline/__pycache__/backticks.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ca1bbf2aba72b0312949f2fee8152d894c5ffc5b GIT binary patch literal 1312 zcmah}y>H}16rV5KWAA1O6h}Y;wxD2zxKJP+LMMbkhlF$&ijDZN42$C#b{+59do#1j zhsL5fXzy>>l>8@1*HB$CB`1nhR5XzwyzwTd6els(Jil-M-kaxXwzd)k>#yJboc$dk z^vnx4R|vuVBOazjMPzEBB!H=QfBL11Bp}=D_ zO3on~?VV$wBkX!(lN=dv~~RMMhVoP2FcokKBLB`0EmRf*$XJaKTv&6CrsofjC1f*-97g+VM^MyRW zK<+j$)CP}m8-kXpZ-55t(1uVvv9!XV!TL*!7&?q>a0d}Ii8=|{u#=DoJT8XXsO2#_ zjeYht7ufPM(nepSI%dekCk;ma`4&BVdW38w=&PvZmUrkMcZhgbDN&Ct?<#zuRsRGr z(GF^38{4oV>UY5R#G-W~LJ^rq@fo^EZqZ~@FZAFru<>2=@H-KJmH~=C{;x};-rfcN;dAAW zUiqQfPkTip2H z*HWbMbB&`@Xv8~e2Xq5?80Lgff?vUX z;K?N?8y`+NVPpU?J2)Za6868_l>Df*pbY?vMSg*6$Mpe=jgnU6_QQH7QYK1C<0;*I*(?cR5nMIcCnP#0`+uIp$ zzcd!0BF?>X15VIi(IZFBR&NNYIdMT83UqnTPTEr8-I;mc@6DSxZ_1SwpTPI~&%aIn zSR>?DL|*(XKt3RZ>I(n}5)nZKo6(#_j1pl9KC^Nj@!XDVz=xtQg0Fexh!bK(3;=S) z>Mj|r-95jZ%#tFN;XKKd6k$3^RFYOw>F|v=&xG-rP*&+E%nJC=vOf)c+8-z78BiH5YW3WTa*lVE1Tk308Aq)%HHA9e`cq8f!}K zQ`IxnxSOQ*jPo6&>w8K;!|+XVz>Igmrk36^Hb9WRQ)FtXw~bqK#A~GT`2_)TF;Z;3 zZCt_6liIzp1~@b9CRIE8MA$!2(^|Vox^y+bgFqZT!;ORfPZ9K3 z`^K;P#y7nwSC1hwA7la(97m_V1fGLb!8gbSkiU@u*HMpPb_JUf^+>q&3ShRr-+Fxj zFvbh==oMs`YH3H9rGGq*2zZuyAUx1t(T|J|I9Crb3XBbMlRU{r_a|&*#~j z|0P(LLGW~R2Hgqk4XgwlBmeI9rBa15Nhe`Bmqk|Whccf}5}oO@vurBEJW*4r!s}Tf z!UV7?ouE)UD>bfAc;|K$7WCoM<#MU;zKxti0GBEN`2VIu6uPw6vPNEG&1BIy$sF8^ z#_9Yuc6)ys2YCC{q_NSTY&gc)SRgoBRSueWVTx9e3|Dcxtg13^+&sCR<%>M(O=KdZ zx-4!-!7S0$9^OgB?1M!<*HN#viu}guz$nPG;%aLR<$9fA1Xl}r>&gqf#_4#GpXsYY zT*1Ud9(ws0Z2v^mCPen+tLVM)j=Wug^@SL}^=|x0c1MneM5e!ii8D?)^C-7qg`ZD7>a&5%mH}f=Id^E_IKXGr zcLvmB>y$5t95jFyup!WgXu)SoPT6t|bOMY0gM-_gt=ns0eF(A+bEtzJI79pw?;YlQ zPfvr6$A{mlS0I!WOX&E+&c$K0-Rl|vh8&QZRuot0T&!XSY1Tb#;?T*AW$;#S!7a3) z7jVPX>(E2^O`=|JWw~IR1f`87Ea*l@8v3Lla1&sRcvr=3L3LHkn|{~C<6KsW8bBOv zsIADz?&|MVq^`r%@N}URloZUJ0v1491?n{NeRvk8-LZTDxIPJ!11S#}9swkjLW=3| zZ}l25c1BKTA5+oAgr}x@IN^&o;xF)@Q@zHGV^OAY-1u>PeF4vdjAMmQLlm^n%2Ayt k%y0X|bbCUlU9c~O?On`E0R{Fx9*{=YoWR*L-x}Qd7uEXU!~g&Q literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/markdown_it/rules_inline/__pycache__/emphasis.cpython-310.pyc b/Scripts/Lib/site-packages/markdown_it/rules_inline/__pycache__/emphasis.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fdb4b749cd75635f94e2095d04709eb0d9ebdcf3 GIT binary patch literal 2153 zcmZuy&5ImG6tAlOn4X^5kF0UCD@0li=!BREiUyG&8iYU`gbfJo#I`e4&h*Yq_vBSg zVwN6I)~g3^o+JSg{7dxW!E0T`!=5}F)c9V_>^ceQrmJ4PdhhqD-d9&^Yca#;&tLu+ zzTRf+cUr7I9xmQxjO!~%NGAE1O?b*VlR|o9G4WDw;-@~YpOH-&f9>RbqEt4}w15Dm zY^aN|DvkATRn^#rpv(-)z97`))4;if-}`jr?~$n4KAQ_1c`bI?+^adXCEsJUC&e8O zTaIS;NrHIZNIVd8-*~mZ?;rB3?B=<7P_z4i^kpE!2i`oay*kW7lyBUROw+`*cgRWF zw2;?6vmEzpKPGyTTHNw$rxSIKDc(R)Cx?Z^8PTHFo~%~s=ScorA%@ulY%&jJa$22WDskhiyGoO6ylsRob9GuC%(*?QB?YT50QP=%=yn=cNmhwgKej zK*6T7Go9(7ZSw{Dp);t{2mv!Pm^O)WMmr4%>A)07 z7kezhq=alN^Yphbd2up?e(FU8r?&!p2qxpb(;4_`9SF&`AJrH%d9Y$U^Z4d zD_l-qLe*ie3w?2V&qnSt#es_OEcyZtp@_LJd>-MqCDz3{5AhZF`Miy@Pw&I<(PqmR z@FFU}b99Xjis2_GRdCb#-KtcNWjC3iLU7srBL>#6nq$WC9m;Vb#VCN^>f=oJ_BrOW z2WM-dd`Ah%FQe>j%;J3^gOPxjQSX??iHlX@J1oEYl&}bWm+cFu!OyUfc#Kav{0W|i zJdgC2e6od_h(dLRJA^V1j8D3U9BYd02c(0x8+8Ds3`?w|x`A~Tz)VKCYT~LPIgSzX zzN*7IJi|(kb0fpXgJbMa5PymCt!$xQ8+QohyA_mRiSol!Q3CiG@#sYV-ySiu_=LN1 zAL1W-aAn3w=vcBnY?)Z)Yh71>t`v_l4B*ju9AF)Xw51JH#4q=GRU*RGG_Nkj4Kh*e7 z%Hd61U^!63=ZAvREUf3+9u0)npVdLvLTfF=z@J+@D=gqKeC&(XfWqVKdEH?nb-eLlnA zsLC=Re^R1hS6p^F*SX!lchRUQ1nxj9;ZKO?av*wVQc3KSS13rD`gB`tir9;j^~?VO DceeqNg77FZvtiT6)l_w;l|^eP=C0C_Qyxo|$<+pLyq|gel=?KaeH+d;a}p=5_!W#eI>nhJwtYR)(L^t{(PY-j( zzt7`L>5W+a5GFBe8;dg|U*apLdRK*tA7@FN@#*%no$cM-ukKBrgnRuvdtW^LY5$YY zXT_7%_U^3JxsKUmS>JX;v z1BU{=L^A@2XBHqS$QBfDXo)pOx~PBx-b95pw8hQxTv`|zSkWO7uatF8ulyML1$-Bn zq8Sycz_MS^bDLQUJhKa%*<0w`Ss>8w9e4=`C#G^P& zG>YF|f`wCd)Y)lkLtCR<`VPQJIMJ3Ak#>)cA0D3`JnB7e!;|w+L<4QV5cznd?IeHA zg|phB}i%^^e zz0*8TWY8H8dGJk~55j3ESa1?b#l?rGJRK#_#6dR_@kq%4yaE|3zBdY^Vfcc}z|dy- z>#P^6+hUw>*^A5HbNi}Tw?=1T0|m!$H8m03UyJfI&9hr&BKYTJm3(g{9jiEzWsS>f`(F7Q zSL8$mn3&q9Blw)!J$~5v?s5C@pxYMjfku2_)bu%2rc79t@EzDT>gtzi&fvliO!vqp PKou@!$Tmq6zi<5m43Aaq literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/markdown_it/rules_inline/__pycache__/escape.cpython-310.pyc b/Scripts/Lib/site-packages/markdown_it/rules_inline/__pycache__/escape.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..376f87744aa8007ca9bb0d593cddc11679d0e288 GIT binary patch literal 1274 zcma)6OOM<{5bkQXALH?EAP2%q9EL{{CXihSNRdKV5<(Cwkx``ClW{O!cPC@UkD=QG zn~jG{xO3$Q;>17UC!hw21LCkJ?kyy!_RgZ@MqB;4x~i+{>#nk!jg64t`0M9CXOBEW z{;-QD2kOWToN5<=lbCSew1kSr6bN@XE1inP3}sg^?g^Ls!oBbDfDgW5u{R?;{1IZG z52s`t9bE|T$|e^|jfBdxh2W!nmPs|rYCb}NA4rkSRd`G>*%)+KsA(&wi!2w%aH1Mc z+pHCPby?IxyUH%Kr;1Y4t@fm7m$J^S_vwgGaB<$ksdh0)M?NPjiU=zQk#=+o&op=B z8BV99qujY_?X+{|uH5Q%>s>3>IvslqE4O2u&8eJppmsX)J>xF-xc`F#Px}+OcbZ}4 zwQlD<26gj`y{B>zbro}wl<)wvpJwtqmk%(1hwpF>_(opm2y!AQ_q*(Ri>w0V6d{{NJ4+d%T6bnwzOgz@0N+G=_rk5NnZ3-Svg#Xr9ykl(EIJ0Wq@io-Tl z3y~LDsfqSZ+GH{gwX>=FA4z;6XuAN45%@#{FleXeINN-PX-MoAI1MTNc-C{?? zUX{uDa-msK-*3i|w4ESrOUq5`;aAyVQ7x<3$!BlIK0<0^(tH+&>juUCv(_utdc|5} zzmdfQRBN|w=A!LtqfOZ!NVs+ z|32#O2qS7p4cySMGVq##v4O7*Trlvif%go2YTz>ioq>x6UNrEMf$JK!Wq^JLUNP{h zfn5!k44gOcvVm&`b_`rL@Q#5`47_gOo`y%0aiIM)7i}X3(-?tWOsw2K#CwOislrc-OKLD5a4CRS&M6l5{6VZ zTi7}D=VAH|eSp3|FS-^vB$wU`B%2`>BU###Je-;DoB4)vbM4xM(faT27v(=0WB&%@ z!zIZ0fiCwY-89p@Vl|(0&U6A?r&^o}o#~z5#XQmCh|NYXIR(ym|M8Jm9v<7uSm-ks zjD82fcW4ib5VKvx$^y$Hx*Q{q<{R$Wnw|0A_$JX@uuZxV>vWy07-HC8r?=P{dC2}^ z&2{oE+we8tdKT&SSBw$37h>**m~F1m=_)*y_SG*bJM9&bt z$n2D=6RQ+Yw+!(q91U(_&De~}CmN$XJs%F3>l zzFC2FQk{B033Xd4XUMc#I*(=rzQm?mma=V}Z?P%BIb)X(B1jFm1gZ3yD!_W_;hC4V z(cq-9zLAY3CjlYs6{;$_ibf?>RSlf7f~QcqNklp>iIlz;0)fH{`2-5pIUpqC4JBQ? zFHS>cY7^?M6|MlCymNB$)m^!`E1#d7%p#ydkRE{;wNy^}5)8`b+)4+n!ca)8cIbXz z9+zO>6JS??1Vc#}!APs8)D+ou1PguMu>hLDsn0=%bBe#J#Y{FR!?_$%Bh(;F3zkGY zD5@riDZN@!59g&RN&<6^xM(tiJ|uuM8fN=3{be}Z7*2UFLIa1hoj$F=_B%r-^N|JT z3A4{)Iz?Ty(2t77dK%Fz!!!VV6aYrGdS>db?nTid_M%eG|H<$M`TqZP{vbaje5$b1 z`MqxzKba>;W62lCO;fr2uv&-!$oWx$ru8nTtlZJ0_F7e} z)Dm1CCZ=f)3*!%h%x+=gn|yGJYFSf>ZgJKayWd{)*RO7cSJ{0{H!+#;aWdx9bj)}8 zl#luKG`XB4$(v8o2mdx#f!_zQT_E3OpQdjC_K#nQ literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/markdown_it/rules_inline/__pycache__/html_inline.cpython-310.pyc b/Scripts/Lib/site-packages/markdown_it/rules_inline/__pycache__/html_inline.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9298365a090c5315d83000ba87370d1fb887220b GIT binary patch literal 1182 zcmYjRON$&g5Z0?T@7Z-Qti6!LIZnXdU;+ujB#up9useb5oSKHA-BNaX`k_YBIBU~G z4r~99-J}1Be}k?ehdJdwi48#zu zeK9&mlktW?>Irs(pJ!*M^V#=5&42r0LfjxXr+HmGFO`w5zf*o~WWB-r@N=75`Ac2q zwR9v~IIg8#={ocN56h?a`#EfL51@rBJVR^TVnK>X4d6`+3}vwC<^lLOsfX79@6d$k z4hW8vnI3`=VEbqMO){02HY?RiBwu_vKh0n0RKH5*Go?zCOjm_Wp5GF9jtl*HZo5`25g!ZUHAQrh~5od^Ic?1?4XUVhhT#|N8wz{=Oa6A`EqoH zwP+DT%L5U81>DXL?BU)H*>?7?gFR^IcCHYQL?7rLOda!m{c($*Xg@JJ0+`S({%niC z+u{>9xYc%tHsD3G$sI= zW@Q$R0y8eU&}!AVPNr%LL}|}r+=EdrPUTBkY6|+KqYvSw?|3){aGff>%&S$k8_TFl zEo60Q9Ppu{ zOjVVtAB84p87>kJ_r{gYOA~6`6+R48w;xgMe;JPEwRP+Td=a4=A@8jk!{_7+b=@bG W5-{!GdJ>HP84d9v9^#MaG5-%KF&^sx literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/markdown_it/rules_inline/__pycache__/image.cpython-310.pyc b/Scripts/Lib/site-packages/markdown_it/rules_inline/__pycache__/image.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7f15f3cd26a7f2fff4a1b0880190b56d7881e170 GIT binary patch literal 2051 zcmZWqOOG2x5T5RNdOY@eH=FEkP9QkM5=l5jLO~Ir@Dft8LU<2ouw>1;d)Kp`htoX{ zNz|5*0!O4=5C=fAk0^*s{scdO(;S01ga~m(E0Fkl#@=kgSgx+FuBxxPs=GRGwR{8L zU%&i5y4W#{-}L14XJYb>VGwy83^N!>jFg0g7>qJAp{W^~sTEq)+)C`!2_5h@a}qc8 zLJ#~J3s~z*D{QcK&**lZXzyK8Hlr-di>Qe6Og^DnMoT}Iy+ZUR(U6xLSuWBjiSO}G z_yHF@8**6Ld-<4WPsq|o4-WW8SrTWww56U14@;#Za}?TyuYZk zVa}V%ToCaMWWdkrENL%Qtm0AaWyd&)MK92^d05a`bAsO`vi7~hc$PM`I@506rHtH3)=lt(YIIt1XHzG3uB-Vz5MApZ|y^4 zwg!oL)S0iVw&t{7wYI>$RmOaSwQ);boPmxq8DX98sp<^QsI>=V@-;KSZ^EiGII9Be z>^s$&pJOc*EGVq?+0a|Z5_mY;W*gU#7oBH?3=If7gATB{TN=mYvv2(6S~C+eWQ=bg_8Kkq#OETb?0SijW8+gA}$hK@;HqSd1=P!A^L?W#V|CZqzD69 zA}v;Csm^?t&|s0cU?5#Qs~Ytwlz5e5;}Rp zKF(!nrqP|yuTp^iD2mXl`1dm=cA!_%Au!P_MNyi9OR=ei;10wqnsW->Vv)pZ{Lv5> zAw9kuzS-a9cZy+>Pg(!F6v#1dn?6RZQN_O7 zb?SQQr>QPlQ*(hPn(O+dKNuWL@ksH(KbNoBsiPW(hR_ literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/markdown_it/rules_inline/__pycache__/link.cpython-310.pyc b/Scripts/Lib/site-packages/markdown_it/rules_inline/__pycache__/link.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..02d4b748e31b139a04225f09d524a7d5a13a9eff GIT binary patch literal 1909 zcmZ8iyN}#N7@rxBy*}?Vm&@fr0R@6wK@uSZ2t^1%07beSh&?HiS;=yCCOO~wv6=B6 zm<YK#5YL6uT%59e)G`b;@Z`giaJxG$$nZjd%A*;*~$o%=h?xulcrUw*!Lbuiu{S z{nR7mce{E1@v!*_uYMOq5J6Lt(U4{=WRwUdoYcv9$g$><3s<_rlkRO#G=%>x4?VHg zCtJZ0gYp(LL8AMm>W|~0H0ybxvN%od%dg~ZsboHsN7RZ@)9jaVDX-^gl1t-iyD^?l zQkj>=Q?i_>d}uAM9{5dMyr1CJ*Btmsrwp$n$dp%PpG;j)I`!&xL$Ilj6|=kZL^vZy zy&`y@*u8MilIa>&&OV<(t3G3MXBt$2@J2*ksU?G2u30rJd-f-!Sk;8B#)zpu1&95n zaNi@-l|;0Xn6^rYpbr3HBxihSbAf>Kmn!jr(L!8ePt|f zwuW^uN6huES+O})-{TDUxy=K#U}fR!lZBP@JrO(SLfvf>**5f>0R>@)~}1G^|O_ZScC09>RPRG=|7_C3lTt~ zeL&UUi~QIM;QaLyJ!iz~J+x5ERrYKxn{#F>f;zg8c(v9*4Bs(igRlI_*HCGz+06NB zRq;nuzg^3NyO1wC6@N(U{%VWhJehSXE(j1hRR_|aS3rz#E6`URf!;tBI--TIQ&I4L ztk7iD>Cbew&(~KmF)^tFrig9I#oIFGpo9@bebthAb0dV^5}IsdU&G$4bj>Sl+gl zl)e1n#>wF|smmmf%cRH+D@I}aWVBcn*eg}oI>4+Em?ZY-IfJ{_YvaiLKw)qY9#zOsqvDgWj^yy?6B26|{j6(4Idi`lG)CNo#Hrz9glG+lRd5iip zQEz~Ed>DQ(*pY`N@;ecOEAK?x$t@MDdxL1VC{jJxnT+J%a|^& zjZyN~TRd09dyLb7ZBXCg)MuNFdp`GRKzo!?pZfp!9;Epuq&u{Q6VCVx{7v8TJnHlR zbv8ZDeCDx$b9#aKuoXZ%0FLi?yaSwdW_2v0Pd(4BJ1n3cYteHKWLXFD9ayk3>LQ%p z*=mHXVUcA;erZxBsjgeC?hM<@NYFB9W&dvszlD_6igoUvBX3%^e>E!vGWDVTU(>cB JdVs#*{0Fws^X32m literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/markdown_it/rules_inline/__pycache__/linkify.cpython-310.pyc b/Scripts/Lib/site-packages/markdown_it/rules_inline/__pycache__/linkify.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9fe7a54a8eb5b3a5129963ab8fd83e3ada4077be GIT binary patch literal 1466 zcmY*ZOK%%D5GJ`VX(cOm9NTHogHQyimBLmI1&X@w8cG_#Rs+kYjgswJq^z}8%LU1G zZFSW{-Tn{x*q-_``WtvHdhn@tqis4|+knFbXNU9n=D`8^!h(-r{r$&Zqu*SF{xpZ% z3uNd^*wPS+0z@$-2@Wu|sGX3B6<8QCJh!RC@R4&)0++hXq8{^Tg?U4lR;mB99aJdk zp;m4B{tLkeOv+{wr(;9MtT|FDlUwaJJBcP)!Zx`$Y+pb))V;t!TUgh6DpKru3QlbL zX#I<=*Tu`%(Z=-2#>bl1PSjmPAn|TVDmN1GnL$^Tc@;eUb8MrTEuWPU?Rky5=XmCT24c_aSJ-Ny zaL(|3M616*oYKRU-<2NjQDf#6-uw;)B;derzF2s`S4w`VsGMVYT-sv!JIH)my~3*@ zgI1u>FVOrhtEG|K-yE zEiW6o2JyTzd{f0oh@jA+_h3F&rjPdWgf)j;G-C?477tJ3^st#FQJiilcA~E4X7i~q zlQDg72c`&YnkIH;Nt40*;< zjU#Q31RHA4$N*5=QLebQO-PLbzcd{rT(XNdu=ZQ`12Uo7 z(3nJOFbX3TLPbJp3x-)+xkzB3r4n%#ETmjaq9mR&(~Y2h3_OL&Hz#dpxg2RHQc6JV zNhHR3rtLT#@?hyLzkO4wH{hv)wzqs?Lq)r!?En4K?MVtI%yNkwxJOmq~t&=)%Hd)0D z;)BG6e*?DR9)M+u-l}RZ3@IOkp(cU__43uZPDPmEGhLlz@Ca%D`Lph~d!6mCdL6N5 lH1+|spoA%Vb&Ir&y7K9y9HY<8uuJn;*{DM5q+va<{s;9Ao7eyV literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/markdown_it/rules_inline/__pycache__/newline.cpython-310.pyc b/Scripts/Lib/site-packages/markdown_it/rules_inline/__pycache__/newline.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..53b19a44c0356ce9b4b903ea6e43138c5a41cec4 GIT binary patch literal 996 zcmaJ=J8u&~5Z=eV>^M;iGfdq;W3J)P65evytiqlD_^X)pm+*7;jyf{~Z zj(?B_O8yDIVOvDuiat%4y*N>5vet}d=9?MM>&nH&HiGx}*PrnN8=>Dux%(VYc7WtI zFot}@Fe4exiBEFsQ;Zm8R%Ye4Z-Z=en>pNJE_X%_^H}SP<-4psK;4D2#ZRJ)IhS%{ zv%T4y5y;mix)qNjF;L>Q((OcoFsP!K&#*zUUKprI@ef6o6kOZVDB6)p#tWq#!PP_* zu}O6EOtsJjdJ80XAW4l5(UbtkHF*TJr&M$p86ahB^c*v~hNcu`YiiY4PHX5UwZ)OL z4PMi8!t9iYBd}Ajk8bQHZjOx%23hRdZhZFVKA_$D>>KRGy*~1t`A3Fo`zushqY$e4 z?l71ovwpywi`8qKdH><9Tik8@Z}plm`rPzRYAZ$JLIHj~g>x(}?nC7_h(RH`-dkVe z_IqK$KxaVc5^wk|SQ#4%9;KQL#q0{6-;(7>HMYI3r)gD6O{Iu6g>? z`YimI3`HbPgK)1bGa2+JDG%NxSW~>+=ePIcaST hp}!_WGl)BE#lYUnykt=JEA#0{5156PNe4fs{{YL7{iy%| literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/markdown_it/rules_inline/__pycache__/state_inline.cpython-310.pyc b/Scripts/Lib/site-packages/markdown_it/rules_inline/__pycache__/state_inline.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7adc14b1bb57c8779ec01f84179900a530293f92 GIT binary patch literal 3953 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 literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/markdown_it/rules_inline/__pycache__/strikethrough.cpython-310.pyc b/Scripts/Lib/site-packages/markdown_it/rules_inline/__pycache__/strikethrough.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1702304335416b8b9eb212e4e4079a4b64d28d1e GIT binary patch literal 2336 zcmaJ@OOG2x5bo~jnQ4!`juV!=1ksR$gGC-hL<$Naig-yYkrmQLL<~mO#NDiCZO=H} zW0GCQE1_^gf&;%`_mBg>f&&+RLm%LPIP3`taX@=uscL&y4hY7YnwskB>h7xgzHza% z6cM<7`|;QQHw{95!I#C$gO@vmP;(m;NhBST5ltv1l1XpKMqc8Lc*5cRIa!m@mpt+1 zvTVv@pat@I*^yQAw9Ja!>`}BaTYE_UR8 zQ1Tn(Fsiv(5e|FA-Q6IJbYZuU(#F=xN^X=cW0m&$@hH^;rQ_7ZX>8Ou)sVWlRFBKJ zECwpS6sNh2Qz_#NEwMaIc|6Qa`QAR=zPE?jv>fMHqOmp_TVU@1u6AI9*$Os*I;@v{ z>$|wtQ@OOf7^~d+yid^z#ZWtp{t_z%67F0g<}6P*Ow9E!Gw~z>S7D1^Y#pmi78ch|A_mx;6E29HrTJ zM85>u{ujy3&MKS|B1~lG)$85&vj;lWo1N}GXfD%PoeWgxt*q#$Td9_vyQzULjPI$@ zcnC@Dto3v@E=>n!bqsXv<#E~@r0dFbFhjC1M8zubNV416B5QF|B482aj8g%3lLhW6Sd)SVc0rpo0-d?L0Z)#z6c90GW`Iabyy)Ac0Gl_|4)J#na>jP+^sItv1^J8suzu)=mq>O<(ByN+Ir4M*wY zY&03^7>6Q30O&ex4z~>lwwXAOfg4?5h4KSk^pr8LfyI0X0y^IHx1bSpIXjXK zz`)^eQD64h!7^iiwYXs7XWkYt{~XLbcOX0g7-|7d8h_}^5W0sPc6i}e1V0h3m`+hnc#B)OU2N^r2)(Xg`x5(foew3B{ z7^-Kk%-9*L;~HeO?c4f{CA%X9B3>gfLY}IgeWAFrxvV(@#gj%%z)YrgawH?eB!n`|r)|h>b#N)JQ z#@$IS9*w^YTAMG-ce9*T*r?n6bOK+0)$MBhVkHgtH(^e-?&IP9GRz3kB>^|I(2eeZ bt|i5-Q6Yh-Z)2wz#7~2^SmZ^Qns5FMx&D z^#*|x4sGIH&fo#3+-cK}<2gVYgtKqpF+rLIUJ%f9MRA@SQ||KOIXeTd#7n~AWl_dx z`Pk(ZK5@>x3Wq~doxH%)N$mmcMkUqR15?b_6!UyJh1S^!n%cL z7T#Om!(oQ#S3*!nEg7F7V=JAbh>R6$3Ki@+||m*DqqD~Y<9z_6`ly?cS70X>Bl69^_J|lg$m+a$t{hy zJ?fsC*#J+v;uS2q6kY=uHs}0Drc!kpcZm=gCt- zN#JI=0pS#-cWN){)uM5_sWL9YLD;|K=_(P*s9_u>qnxzVrq~q;kCT&XL9QV^xt_tj z4DKU%H~&-MUti=3#tqA~+CopwAh_VdG@XVDWx(hHxRg=3iGk{bDIfQeNM{|Bi@4)W z=AvCmE*;#G%Lt|rg;4{a%Ii?$-3gM_@{&F~!s`6EYb^42l2a+|bW)CO+|7OtbpxS9 ON-)VvWp;ZO7T6yHWct(q literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/markdown_it/rules_inline/autolink.py b/Scripts/Lib/site-packages/markdown_it/rules_inline/autolink.py new file mode 100644 index 0000000..6546e25 --- /dev/null +++ b/Scripts/Lib/site-packages/markdown_it/rules_inline/autolink.py @@ -0,0 +1,77 @@ +# Process autolinks '' +import re + +from .state_inline import StateInline + +EMAIL_RE = re.compile( + r"^([a-zA-Z0-9.!#$%&\'*+\/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*)$" +) +AUTOLINK_RE = re.compile(r"^([a-zA-Z][a-zA-Z0-9+.\-]{1,31}):([^<>\x00-\x20]*)$") + + +def autolink(state: StateInline, silent: bool) -> bool: + pos = state.pos + + if state.src[pos] != "<": + return False + + start = state.pos + maximum = state.posMax + + while True: + pos += 1 + if pos >= maximum: + return False + + ch = state.src[pos] + + if ch == "<": + return False + if ch == ">": + break + + url = state.src[start + 1 : pos] + + if AUTOLINK_RE.search(url) is not None: + fullUrl = state.md.normalizeLink(url) + if not state.md.validateLink(fullUrl): + return False + + if not silent: + token = state.push("link_open", "a", 1) + token.attrs = {"href": fullUrl} + token.markup = "autolink" + token.info = "auto" + + token = state.push("text", "", 0) + token.content = state.md.normalizeLinkText(url) + + token = state.push("link_close", "a", -1) + token.markup = "autolink" + token.info = "auto" + + state.pos += len(url) + 2 + return True + + if EMAIL_RE.search(url) is not None: + fullUrl = state.md.normalizeLink("mailto:" + url) + if not state.md.validateLink(fullUrl): + return False + + if not silent: + token = state.push("link_open", "a", 1) + token.attrs = {"href": fullUrl} + token.markup = "autolink" + token.info = "auto" + + token = state.push("text", "", 0) + token.content = state.md.normalizeLinkText(url) + + token = state.push("link_close", "a", -1) + token.markup = "autolink" + token.info = "auto" + + state.pos += len(url) + 2 + return True + + return False diff --git a/Scripts/Lib/site-packages/markdown_it/rules_inline/backticks.py b/Scripts/Lib/site-packages/markdown_it/rules_inline/backticks.py new file mode 100644 index 0000000..fc60d6b --- /dev/null +++ b/Scripts/Lib/site-packages/markdown_it/rules_inline/backticks.py @@ -0,0 +1,72 @@ +# Parse backticks +import re + +from .state_inline import StateInline + +regex = re.compile("^ (.+) $") + + +def backtick(state: StateInline, silent: bool) -> bool: + pos = state.pos + + if state.src[pos] != "`": + return False + + start = pos + pos += 1 + maximum = state.posMax + + # scan marker length + while pos < maximum and (state.src[pos] == "`"): + pos += 1 + + marker = state.src[start:pos] + openerLength = len(marker) + + if state.backticksScanned and state.backticks.get(openerLength, 0) <= start: + if not silent: + state.pending += marker + state.pos += openerLength + return True + + matchStart = matchEnd = pos + + # Nothing found in the cache, scan until the end of the line (or until marker is found) + while True: + try: + matchStart = state.src.index("`", matchEnd) + except ValueError: + break + matchEnd = matchStart + 1 + + # scan marker length + while matchEnd < maximum and (state.src[matchEnd] == "`"): + matchEnd += 1 + + closerLength = matchEnd - matchStart + + if closerLength == openerLength: + # Found matching closer length. + if not silent: + token = state.push("code_inline", "code", 0) + token.markup = marker + token.content = state.src[pos:matchStart].replace("\n", " ") + if ( + token.content.startswith(" ") + and token.content.endswith(" ") + and len(token.content.strip()) > 0 + ): + token.content = token.content[1:-1] + state.pos = matchEnd + return True + + # Some different length found, put it in cache as upper limit of where closer can be found + state.backticks[closerLength] = matchStart + + # Scanned through the end, didn't find anything + state.backticksScanned = True + + if not silent: + state.pending += marker + state.pos += openerLength + return True diff --git a/Scripts/Lib/site-packages/markdown_it/rules_inline/balance_pairs.py b/Scripts/Lib/site-packages/markdown_it/rules_inline/balance_pairs.py new file mode 100644 index 0000000..9c63b27 --- /dev/null +++ b/Scripts/Lib/site-packages/markdown_it/rules_inline/balance_pairs.py @@ -0,0 +1,138 @@ +"""Balance paired characters (*, _, etc) in inline tokens.""" + +from __future__ import annotations + +from .state_inline import Delimiter, StateInline + + +def processDelimiters(state: StateInline, delimiters: list[Delimiter]) -> None: + """For each opening emphasis-like marker find a matching closing one.""" + if not delimiters: + return + + openersBottom = {} + maximum = len(delimiters) + + # headerIdx is the first delimiter of the current (where closer is) delimiter run + headerIdx = 0 + lastTokenIdx = -2 # needs any value lower than -1 + jumps: list[int] = [] + closerIdx = 0 + while closerIdx < maximum: + closer = delimiters[closerIdx] + + jumps.append(0) + + # markers belong to same delimiter run if: + # - they have adjacent tokens + # - AND markers are the same + # + if ( + delimiters[headerIdx].marker != closer.marker + or lastTokenIdx != closer.token - 1 + ): + headerIdx = closerIdx + lastTokenIdx = closer.token + + # Length is only used for emphasis-specific "rule of 3", + # if it's not defined (in strikethrough or 3rd party plugins), + # we can default it to 0 to disable those checks. + # + closer.length = closer.length or 0 + + if not closer.close: + closerIdx += 1 + continue + + # Previously calculated lower bounds (previous fails) + # for each marker, each delimiter length modulo 3, + # and for whether this closer can be an opener; + # https://github.com/commonmark/cmark/commit/34250e12ccebdc6372b8b49c44fab57c72443460 + if closer.marker not in openersBottom: + openersBottom[closer.marker] = [-1, -1, -1, -1, -1, -1] + + minOpenerIdx = openersBottom[closer.marker][ + (3 if closer.open else 0) + (closer.length % 3) + ] + + openerIdx = headerIdx - jumps[headerIdx] - 1 + + newMinOpenerIdx = openerIdx + + while openerIdx > minOpenerIdx: + opener = delimiters[openerIdx] + + if opener.marker != closer.marker: + openerIdx -= jumps[openerIdx] + 1 + continue + + if opener.open and opener.end < 0: + isOddMatch = False + + # from spec: + # + # If one of the delimiters can both open and close emphasis, then the + # sum of the lengths of the delimiter runs containing the opening and + # closing delimiters must not be a multiple of 3 unless both lengths + # are multiples of 3. + # + if ( + (opener.close or closer.open) + and ((opener.length + closer.length) % 3 == 0) + and (opener.length % 3 != 0 or closer.length % 3 != 0) + ): + isOddMatch = True + + if not isOddMatch: + # If previous delimiter cannot be an opener, we can safely skip + # the entire sequence in future checks. This is required to make + # sure algorithm has linear complexity (see *_*_*_*_*_... case). + # + if openerIdx > 0 and not delimiters[openerIdx - 1].open: + lastJump = jumps[openerIdx - 1] + 1 + else: + lastJump = 0 + + jumps[closerIdx] = closerIdx - openerIdx + lastJump + jumps[openerIdx] = lastJump + + closer.open = False + opener.end = closerIdx + opener.close = False + newMinOpenerIdx = -1 + + # treat next token as start of run, + # it optimizes skips in **<...>**a**<...>** pathological case + lastTokenIdx = -2 + + break + + openerIdx -= jumps[openerIdx] + 1 + + if newMinOpenerIdx != -1: + # If match for this delimiter run failed, we want to set lower bound for + # future lookups. This is required to make sure algorithm has linear + # complexity. + # + # See details here: + # https:#github.com/commonmark/cmark/issues/178#issuecomment-270417442 + # + openersBottom[closer.marker][ + (3 if closer.open else 0) + ((closer.length or 0) % 3) + ] = newMinOpenerIdx + + closerIdx += 1 + + +def link_pairs(state: StateInline) -> None: + tokens_meta = state.tokens_meta + maximum = len(state.tokens_meta) + + processDelimiters(state, state.delimiters) + + curr = 0 + while curr < maximum: + curr_meta = tokens_meta[curr] + if curr_meta and "delimiters" in curr_meta: + processDelimiters(state, curr_meta["delimiters"]) + curr += 1 diff --git a/Scripts/Lib/site-packages/markdown_it/rules_inline/emphasis.py b/Scripts/Lib/site-packages/markdown_it/rules_inline/emphasis.py new file mode 100644 index 0000000..9a98f9e --- /dev/null +++ b/Scripts/Lib/site-packages/markdown_it/rules_inline/emphasis.py @@ -0,0 +1,102 @@ +# Process *this* and _that_ +# +from __future__ import annotations + +from .state_inline import Delimiter, StateInline + + +def tokenize(state: StateInline, silent: bool) -> bool: + """Insert each marker as a separate text token, and add it to delimiter list""" + start = state.pos + marker = state.src[start] + + if silent: + return False + + if marker not in ("_", "*"): + return False + + scanned = state.scanDelims(state.pos, marker == "*") + + for _ in range(scanned.length): + token = state.push("text", "", 0) + token.content = marker + state.delimiters.append( + Delimiter( + marker=ord(marker), + length=scanned.length, + token=len(state.tokens) - 1, + end=-1, + open=scanned.can_open, + close=scanned.can_close, + ) + ) + + state.pos += scanned.length + + return True + + +def _postProcess(state: StateInline, delimiters: list[Delimiter]) -> None: + i = len(delimiters) - 1 + while i >= 0: + startDelim = delimiters[i] + + # /* _ */ /* * */ + if startDelim.marker != 0x5F and startDelim.marker != 0x2A: + i -= 1 + continue + + # Process only opening markers + if startDelim.end == -1: + i -= 1 + continue + + endDelim = delimiters[startDelim.end] + + # If the previous delimiter has the same marker and is adjacent to this one, + # merge those into one strong delimiter. + # + # `whatever` -> `whatever` + # + isStrong = ( + i > 0 + and delimiters[i - 1].end == startDelim.end + 1 + # check that first two markers match and adjacent + and delimiters[i - 1].marker == startDelim.marker + and delimiters[i - 1].token == startDelim.token - 1 + # check that last two markers are adjacent (we can safely assume they match) + and delimiters[startDelim.end + 1].token == endDelim.token + 1 + ) + + ch = chr(startDelim.marker) + + token = state.tokens[startDelim.token] + token.type = "strong_open" if isStrong else "em_open" + token.tag = "strong" if isStrong else "em" + token.nesting = 1 + token.markup = ch + ch if isStrong else ch + token.content = "" + + token = state.tokens[endDelim.token] + token.type = "strong_close" if isStrong else "em_close" + token.tag = "strong" if isStrong else "em" + token.nesting = -1 + token.markup = ch + ch if isStrong else ch + token.content = "" + + if isStrong: + state.tokens[delimiters[i - 1].token].content = "" + state.tokens[delimiters[startDelim.end + 1].token].content = "" + i -= 1 + + i -= 1 + + +def postProcess(state: StateInline) -> None: + """Walk through delimiter list and replace text tokens with tags.""" + _postProcess(state, state.delimiters) + + for token in state.tokens_meta: + if token and "delimiters" in token: + _postProcess(state, token["delimiters"]) diff --git a/Scripts/Lib/site-packages/markdown_it/rules_inline/entity.py b/Scripts/Lib/site-packages/markdown_it/rules_inline/entity.py new file mode 100644 index 0000000..ec9d396 --- /dev/null +++ b/Scripts/Lib/site-packages/markdown_it/rules_inline/entity.py @@ -0,0 +1,53 @@ +# Process html entity - {, ¯, ", ... +import re + +from ..common.entities import entities +from ..common.utils import fromCodePoint, isValidEntityCode +from .state_inline import StateInline + +DIGITAL_RE = re.compile(r"^&#((?:x[a-f0-9]{1,6}|[0-9]{1,7}));", re.IGNORECASE) +NAMED_RE = re.compile(r"^&([a-z][a-z0-9]{1,31});", re.IGNORECASE) + + +def entity(state: StateInline, silent: bool) -> bool: + pos = state.pos + maximum = state.posMax + + if state.src[pos] != "&": + return False + + if pos + 1 >= maximum: + return False + + if state.src[pos + 1] == "#": + if match := DIGITAL_RE.search(state.src[pos:]): + if not silent: + match1 = match.group(1) + code = ( + int(match1[1:], 16) if match1[0].lower() == "x" else int(match1, 10) + ) + + token = state.push("text_special", "", 0) + token.content = ( + fromCodePoint(code) + if isValidEntityCode(code) + else fromCodePoint(0xFFFD) + ) + token.markup = match.group(0) + token.info = "entity" + + state.pos += len(match.group(0)) + return True + + else: + if (match := NAMED_RE.search(state.src[pos:])) and match.group(1) in entities: + if not silent: + token = state.push("text_special", "", 0) + token.content = entities[match.group(1)] + token.markup = match.group(0) + token.info = "entity" + + state.pos += len(match.group(0)) + return True + + return False diff --git a/Scripts/Lib/site-packages/markdown_it/rules_inline/escape.py b/Scripts/Lib/site-packages/markdown_it/rules_inline/escape.py new file mode 100644 index 0000000..0fca6c8 --- /dev/null +++ b/Scripts/Lib/site-packages/markdown_it/rules_inline/escape.py @@ -0,0 +1,93 @@ +""" +Process escaped chars and hardbreaks +""" + +from ..common.utils import isStrSpace +from .state_inline import StateInline + + +def escape(state: StateInline, silent: bool) -> bool: + """Process escaped chars and hardbreaks.""" + pos = state.pos + maximum = state.posMax + + if state.src[pos] != "\\": + return False + + pos += 1 + + # '\' at the end of the inline block + if pos >= maximum: + return False + + ch1 = state.src[pos] + ch1_ord = ord(ch1) + if ch1 == "\n": + if not silent: + state.push("hardbreak", "br", 0) + pos += 1 + # skip leading whitespaces from next line + while pos < maximum: + ch = state.src[pos] + if not isStrSpace(ch): + break + pos += 1 + + state.pos = pos + return True + + escapedStr = state.src[pos] + + if ch1_ord >= 0xD800 and ch1_ord <= 0xDBFF and pos + 1 < maximum: + ch2 = state.src[pos + 1] + ch2_ord = ord(ch2) + if ch2_ord >= 0xDC00 and ch2_ord <= 0xDFFF: + escapedStr += ch2 + pos += 1 + + origStr = "\\" + escapedStr + + if not silent: + token = state.push("text_special", "", 0) + token.content = escapedStr if ch1 in _ESCAPED else origStr + token.markup = origStr + token.info = "escape" + + state.pos = pos + 1 + return True + + +_ESCAPED = { + "!", + '"', + "#", + "$", + "%", + "&", + "'", + "(", + ")", + "*", + "+", + ",", + "-", + ".", + "/", + ":", + ";", + "<", + "=", + ">", + "?", + "@", + "[", + "\\", + "]", + "^", + "_", + "`", + "{", + "|", + "}", + "~", +} diff --git a/Scripts/Lib/site-packages/markdown_it/rules_inline/fragments_join.py b/Scripts/Lib/site-packages/markdown_it/rules_inline/fragments_join.py new file mode 100644 index 0000000..f795c13 --- /dev/null +++ b/Scripts/Lib/site-packages/markdown_it/rules_inline/fragments_join.py @@ -0,0 +1,43 @@ +from .state_inline import StateInline + + +def fragments_join(state: StateInline) -> None: + """ + Clean up tokens after emphasis and strikethrough postprocessing: + merge adjacent text nodes into one and re-calculate all token levels + + This is necessary because initially emphasis delimiter markers (``*, _, ~``) + are treated as their own separate text tokens. Then emphasis rule either + leaves them as text (needed to merge with adjacent text) or turns them + into opening/closing tags (which messes up levels inside). + """ + level = 0 + maximum = len(state.tokens) + + curr = last = 0 + while curr < maximum: + # re-calculate levels after emphasis/strikethrough turns some text nodes + # into opening/closing tags + if state.tokens[curr].nesting < 0: + level -= 1 # closing tag + state.tokens[curr].level = level + if state.tokens[curr].nesting > 0: + level += 1 # opening tag + + if ( + state.tokens[curr].type == "text" + and curr + 1 < maximum + and state.tokens[curr + 1].type == "text" + ): + # collapse two adjacent text nodes + state.tokens[curr + 1].content = ( + state.tokens[curr].content + state.tokens[curr + 1].content + ) + else: + if curr != last: + state.tokens[last] = state.tokens[curr] + last += 1 + curr += 1 + + if curr != last: + del state.tokens[last:] diff --git a/Scripts/Lib/site-packages/markdown_it/rules_inline/html_inline.py b/Scripts/Lib/site-packages/markdown_it/rules_inline/html_inline.py new file mode 100644 index 0000000..9065e1d --- /dev/null +++ b/Scripts/Lib/site-packages/markdown_it/rules_inline/html_inline.py @@ -0,0 +1,43 @@ +# Process html tags +from ..common.html_re import HTML_TAG_RE +from ..common.utils import isLinkClose, isLinkOpen +from .state_inline import StateInline + + +def isLetter(ch: int) -> bool: + lc = ch | 0x20 # to lower case + # /* a */ and /* z */ + return (lc >= 0x61) and (lc <= 0x7A) + + +def html_inline(state: StateInline, silent: bool) -> bool: + pos = state.pos + + if not state.md.options.get("html", None): + return False + + # Check start + maximum = state.posMax + if state.src[pos] != "<" or pos + 2 >= maximum: + return False + + # Quick fail on second char + ch = state.src[pos + 1] + if ch not in ("!", "?", "/") and not isLetter(ord(ch)): # /* / */ + return False + + match = HTML_TAG_RE.search(state.src[pos:]) + if not match: + return False + + if not silent: + token = state.push("html_inline", "", 0) + token.content = state.src[pos : pos + len(match.group(0))] + + if isLinkOpen(token.content): + state.linkLevel += 1 + if isLinkClose(token.content): + state.linkLevel -= 1 + + state.pos += len(match.group(0)) + return True diff --git a/Scripts/Lib/site-packages/markdown_it/rules_inline/image.py b/Scripts/Lib/site-packages/markdown_it/rules_inline/image.py new file mode 100644 index 0000000..005105b --- /dev/null +++ b/Scripts/Lib/site-packages/markdown_it/rules_inline/image.py @@ -0,0 +1,148 @@ +# Process ![image]( "title") +from __future__ import annotations + +from ..common.utils import isStrSpace, normalizeReference +from ..token import Token +from .state_inline import StateInline + + +def image(state: StateInline, silent: bool) -> bool: + label = None + href = "" + oldPos = state.pos + max = state.posMax + + if state.src[state.pos] != "!": + return False + + if state.pos + 1 < state.posMax and state.src[state.pos + 1] != "[": + return False + + labelStart = state.pos + 2 + labelEnd = state.md.helpers.parseLinkLabel(state, state.pos + 1, False) + + # parser failed to find ']', so it's not a valid link + if labelEnd < 0: + return False + + pos = labelEnd + 1 + + if pos < max and state.src[pos] == "(": + # + # Inline link + # + + # [link]( "title" ) + # ^^ skipping these spaces + pos += 1 + while pos < max: + ch = state.src[pos] + if not isStrSpace(ch) and ch != "\n": + break + pos += 1 + + if pos >= max: + return False + + # [link]( "title" ) + # ^^^^^^ parsing link destination + start = pos + res = state.md.helpers.parseLinkDestination(state.src, pos, state.posMax) + if res.ok: + href = state.md.normalizeLink(res.str) + if state.md.validateLink(href): + pos = res.pos + else: + href = "" + + # [link]( "title" ) + # ^^ skipping these spaces + start = pos + while pos < max: + ch = state.src[pos] + if not isStrSpace(ch) and ch != "\n": + break + pos += 1 + + # [link]( "title" ) + # ^^^^^^^ parsing link title + res = state.md.helpers.parseLinkTitle(state.src, pos, state.posMax, None) + if pos < max and start != pos and res.ok: + title = res.str + pos = res.pos + + # [link]( "title" ) + # ^^ skipping these spaces + while pos < max: + ch = state.src[pos] + if not isStrSpace(ch) and ch != "\n": + break + pos += 1 + else: + title = "" + + if pos >= max or state.src[pos] != ")": + state.pos = oldPos + return False + + pos += 1 + + else: + # + # Link reference + # + if "references" not in state.env: + return False + + # /* [ */ + if pos < max and state.src[pos] == "[": + start = pos + 1 + pos = state.md.helpers.parseLinkLabel(state, pos) + if pos >= 0: + label = state.src[start:pos] + pos += 1 + else: + pos = labelEnd + 1 + else: + pos = labelEnd + 1 + + # covers label == '' and label == undefined + # (collapsed reference link and shortcut reference link respectively) + if not label: + label = state.src[labelStart:labelEnd] + + label = normalizeReference(label) + + ref = state.env["references"].get(label, None) + if not ref: + state.pos = oldPos + return False + + href = ref["href"] + title = ref["title"] + + # + # We found the end of the link, and know for a fact it's a valid link + # so all that's left to do is to call tokenizer. + # + if not silent: + content = state.src[labelStart:labelEnd] + + tokens: list[Token] = [] + state.md.inline.parse(content, state.md, state.env, tokens) + + token = state.push("image", "img", 0) + token.attrs = {"src": href, "alt": ""} + token.children = tokens or None + token.content = content + + if title: + token.attrSet("title", title) + + # note, this is not part of markdown-it JS, but is useful for renderers + if label and state.md.options.get("store_labels", False): + token.meta["label"] = label + + state.pos = pos + state.posMax = max + return True diff --git a/Scripts/Lib/site-packages/markdown_it/rules_inline/link.py b/Scripts/Lib/site-packages/markdown_it/rules_inline/link.py new file mode 100644 index 0000000..2e92c7d --- /dev/null +++ b/Scripts/Lib/site-packages/markdown_it/rules_inline/link.py @@ -0,0 +1,149 @@ +# Process [link]( "stuff") + +from ..common.utils import isStrSpace, normalizeReference +from .state_inline import StateInline + + +def link(state: StateInline, silent: bool) -> bool: + href = "" + title = "" + label = None + oldPos = state.pos + maximum = state.posMax + start = state.pos + parseReference = True + + if state.src[state.pos] != "[": + return False + + labelStart = state.pos + 1 + labelEnd = state.md.helpers.parseLinkLabel(state, state.pos, True) + + # parser failed to find ']', so it's not a valid link + if labelEnd < 0: + return False + + pos = labelEnd + 1 + + if pos < maximum and state.src[pos] == "(": + # + # Inline link + # + + # might have found a valid shortcut link, disable reference parsing + parseReference = False + + # [link]( "title" ) + # ^^ skipping these spaces + pos += 1 + while pos < maximum: + ch = state.src[pos] + if not isStrSpace(ch) and ch != "\n": + break + pos += 1 + + if pos >= maximum: + return False + + # [link]( "title" ) + # ^^^^^^ parsing link destination + start = pos + res = state.md.helpers.parseLinkDestination(state.src, pos, state.posMax) + if res.ok: + href = state.md.normalizeLink(res.str) + if state.md.validateLink(href): + pos = res.pos + else: + href = "" + + # [link]( "title" ) + # ^^ skipping these spaces + start = pos + while pos < maximum: + ch = state.src[pos] + if not isStrSpace(ch) and ch != "\n": + break + pos += 1 + + # [link]( "title" ) + # ^^^^^^^ parsing link title + res = state.md.helpers.parseLinkTitle(state.src, pos, state.posMax) + if pos < maximum and start != pos and res.ok: + title = res.str + pos = res.pos + + # [link]( "title" ) + # ^^ skipping these spaces + while pos < maximum: + ch = state.src[pos] + if not isStrSpace(ch) and ch != "\n": + break + pos += 1 + + if pos >= maximum or state.src[pos] != ")": + # parsing a valid shortcut link failed, fallback to reference + parseReference = True + + pos += 1 + + if parseReference: + # + # Link reference + # + if "references" not in state.env: + return False + + if pos < maximum and state.src[pos] == "[": + start = pos + 1 + pos = state.md.helpers.parseLinkLabel(state, pos) + if pos >= 0: + label = state.src[start:pos] + pos += 1 + else: + pos = labelEnd + 1 + + else: + pos = labelEnd + 1 + + # covers label == '' and label == undefined + # (collapsed reference link and shortcut reference link respectively) + if not label: + label = state.src[labelStart:labelEnd] + + label = normalizeReference(label) + + ref = state.env["references"].get(label, None) + if not ref: + state.pos = oldPos + return False + + href = ref["href"] + title = ref["title"] + + # + # We found the end of the link, and know for a fact it's a valid link + # so all that's left to do is to call tokenizer. + # + if not silent: + state.pos = labelStart + state.posMax = labelEnd + + token = state.push("link_open", "a", 1) + token.attrs = {"href": href} + + if title: + token.attrSet("title", title) + + # note, this is not part of markdown-it JS, but is useful for renderers + if label and state.md.options.get("store_labels", False): + token.meta["label"] = label + + state.linkLevel += 1 + state.md.inline.tokenize(state) + state.linkLevel -= 1 + + token = state.push("link_close", "a", -1) + + state.pos = pos + state.posMax = maximum + return True diff --git a/Scripts/Lib/site-packages/markdown_it/rules_inline/linkify.py b/Scripts/Lib/site-packages/markdown_it/rules_inline/linkify.py new file mode 100644 index 0000000..3669396 --- /dev/null +++ b/Scripts/Lib/site-packages/markdown_it/rules_inline/linkify.py @@ -0,0 +1,62 @@ +"""Process links like https://example.org/""" + +import re + +from .state_inline import StateInline + +# RFC3986: scheme = ALPHA *( ALPHA / DIGIT / "+" / "-" / "." ) +SCHEME_RE = re.compile(r"(?:^|[^a-z0-9.+-])([a-z][a-z0-9.+-]*)$", re.IGNORECASE) + + +def linkify(state: StateInline, silent: bool) -> bool: + """Rule for identifying plain-text links.""" + if not state.md.options.linkify: + return False + if state.linkLevel > 0: + return False + if not state.md.linkify: + raise ModuleNotFoundError("Linkify enabled but not installed.") + + pos = state.pos + maximum = state.posMax + + if ( + (pos + 3) > maximum + or state.src[pos] != ":" + or state.src[pos + 1] != "/" + or state.src[pos + 2] != "/" + ): + return False + + if not (match := SCHEME_RE.search(state.pending)): + return False + + proto = match.group(1) + if not (link := state.md.linkify.match_at_start(state.src[pos - len(proto) :])): + return False + url: str = link.url + + # disallow '*' at the end of the link (conflicts with emphasis) + url = url.rstrip("*") + + full_url = state.md.normalizeLink(url) + if not state.md.validateLink(full_url): + return False + + if not silent: + state.pending = state.pending[: -len(proto)] + + token = state.push("link_open", "a", 1) + token.attrs = {"href": full_url} + token.markup = "linkify" + token.info = "auto" + + token = state.push("text", "", 0) + token.content = state.md.normalizeLinkText(url) + + token = state.push("link_close", "a", -1) + token.markup = "linkify" + token.info = "auto" + + state.pos += len(url) - len(proto) + return True diff --git a/Scripts/Lib/site-packages/markdown_it/rules_inline/newline.py b/Scripts/Lib/site-packages/markdown_it/rules_inline/newline.py new file mode 100644 index 0000000..d05ee6d --- /dev/null +++ b/Scripts/Lib/site-packages/markdown_it/rules_inline/newline.py @@ -0,0 +1,44 @@ +"""Proceess '\n'.""" + +from ..common.utils import charStrAt, isStrSpace +from .state_inline import StateInline + + +def newline(state: StateInline, silent: bool) -> bool: + pos = state.pos + + if state.src[pos] != "\n": + return False + + pmax = len(state.pending) - 1 + maximum = state.posMax + + # ' \n' -> hardbreak + # Lookup in pending chars is bad practice! Don't copy to other rules! + # Pending string is stored in concat mode, indexed lookups will cause + # conversion to flat mode. + if not silent: + if pmax >= 0 and charStrAt(state.pending, pmax) == " ": + if pmax >= 1 and charStrAt(state.pending, pmax - 1) == " ": + # Find whitespaces tail of pending chars. + ws = pmax - 1 + while ws >= 1 and charStrAt(state.pending, ws - 1) == " ": + ws -= 1 + state.pending = state.pending[:ws] + + state.push("hardbreak", "br", 0) + else: + state.pending = state.pending[:-1] + state.push("softbreak", "br", 0) + + else: + state.push("softbreak", "br", 0) + + pos += 1 + + # skip heading spaces for next line + while pos < maximum and isStrSpace(state.src[pos]): + pos += 1 + + state.pos = pos + return True diff --git a/Scripts/Lib/site-packages/markdown_it/rules_inline/state_inline.py b/Scripts/Lib/site-packages/markdown_it/rules_inline/state_inline.py new file mode 100644 index 0000000..50dc412 --- /dev/null +++ b/Scripts/Lib/site-packages/markdown_it/rules_inline/state_inline.py @@ -0,0 +1,165 @@ +from __future__ import annotations + +from collections import namedtuple +from dataclasses import dataclass +from typing import TYPE_CHECKING, Any, Literal + +from ..common.utils import isMdAsciiPunct, isPunctChar, isWhiteSpace +from ..ruler import StateBase +from ..token import Token +from ..utils import EnvType + +if TYPE_CHECKING: + from markdown_it import MarkdownIt + + +@dataclass(slots=True) +class Delimiter: + # Char code of the starting marker (number). + marker: int + + # Total length of these series of delimiters. + length: int + + # A position of the token this delimiter corresponds to. + token: int + + # If this delimiter is matched as a valid opener, `end` will be + # equal to its position, otherwise it's `-1`. + end: int + + # Boolean flags that determine if this delimiter could open or close + # an emphasis. + open: bool + close: bool + + level: bool | None = None + + +Scanned = namedtuple("Scanned", ["can_open", "can_close", "length"]) + + +class StateInline(StateBase): + def __init__( + self, src: str, md: MarkdownIt, env: EnvType, outTokens: list[Token] + ) -> None: + self.src = src + self.env = env + self.md = md + self.tokens = outTokens + self.tokens_meta: list[dict[str, Any] | None] = [None] * len(outTokens) + + self.pos = 0 + self.posMax = len(self.src) + self.level = 0 + self.pending = "" + self.pendingLevel = 0 + + # Stores { start: end } pairs. Useful for backtrack + # optimization of pairs parse (emphasis, strikes). + self.cache: dict[int, int] = {} + + # List of emphasis-like delimiters for current tag + self.delimiters: list[Delimiter] = [] + + # Stack of delimiter lists for upper level tags + self._prev_delimiters: list[list[Delimiter]] = [] + + # backticklength => last seen position + self.backticks: dict[int, int] = {} + self.backticksScanned = False + + # Counter used to disable inline linkify-it execution + # inside and markdown links + self.linkLevel = 0 + + def __repr__(self) -> str: + return ( + f"{self.__class__.__name__}" + f"(pos=[{self.pos} of {self.posMax}], token={len(self.tokens)})" + ) + + def pushPending(self) -> Token: + token = Token("text", "", 0) + token.content = self.pending + token.level = self.pendingLevel + self.tokens.append(token) + self.pending = "" + return token + + def push(self, ttype: str, tag: str, nesting: Literal[-1, 0, 1]) -> Token: + """Push new token to "stream". + If pending text exists - flush it as text token + """ + if self.pending: + self.pushPending() + + token = Token(ttype, tag, nesting) + token_meta = None + + if nesting < 0: + # closing tag + self.level -= 1 + self.delimiters = self._prev_delimiters.pop() + + token.level = self.level + + if nesting > 0: + # opening tag + self.level += 1 + self._prev_delimiters.append(self.delimiters) + self.delimiters = [] + token_meta = {"delimiters": self.delimiters} + + self.pendingLevel = self.level + self.tokens.append(token) + self.tokens_meta.append(token_meta) + return token + + def scanDelims(self, start: int, canSplitWord: bool) -> Scanned: + """ + Scan a sequence of emphasis-like markers, and determine whether + it can start an emphasis sequence or end an emphasis sequence. + + - start - position to scan from (it should point at a valid marker); + - canSplitWord - determine if these markers can be found inside a word + + """ + pos = start + maximum = self.posMax + marker = self.src[start] + + # treat beginning of the line as a whitespace + lastChar = self.src[start - 1] if start > 0 else " " + + while pos < maximum and self.src[pos] == marker: + pos += 1 + + count = pos - start + + # treat end of the line as a whitespace + nextChar = self.src[pos] if pos < maximum else " " + + isLastPunctChar = isMdAsciiPunct(ord(lastChar)) or isPunctChar(lastChar) + isNextPunctChar = isMdAsciiPunct(ord(nextChar)) or isPunctChar(nextChar) + + isLastWhiteSpace = isWhiteSpace(ord(lastChar)) + isNextWhiteSpace = isWhiteSpace(ord(nextChar)) + + left_flanking = not ( + isNextWhiteSpace + or (isNextPunctChar and not (isLastWhiteSpace or isLastPunctChar)) + ) + right_flanking = not ( + isLastWhiteSpace + or (isLastPunctChar and not (isNextWhiteSpace or isNextPunctChar)) + ) + + can_open = left_flanking and ( + canSplitWord or (not right_flanking) or isLastPunctChar + ) + can_close = right_flanking and ( + canSplitWord or (not left_flanking) or isNextPunctChar + ) + + return Scanned(can_open, can_close, count) diff --git a/Scripts/Lib/site-packages/markdown_it/rules_inline/strikethrough.py b/Scripts/Lib/site-packages/markdown_it/rules_inline/strikethrough.py new file mode 100644 index 0000000..ec81628 --- /dev/null +++ b/Scripts/Lib/site-packages/markdown_it/rules_inline/strikethrough.py @@ -0,0 +1,127 @@ +# ~~strike through~~ +from __future__ import annotations + +from .state_inline import Delimiter, StateInline + + +def tokenize(state: StateInline, silent: bool) -> bool: + """Insert each marker as a separate text token, and add it to delimiter list""" + start = state.pos + ch = state.src[start] + + if silent: + return False + + if ch != "~": + return False + + scanned = state.scanDelims(state.pos, True) + length = scanned.length + + if length < 2: + return False + + if length % 2: + token = state.push("text", "", 0) + token.content = ch + length -= 1 + + i = 0 + while i < length: + token = state.push("text", "", 0) + token.content = ch + ch + state.delimiters.append( + Delimiter( + marker=ord(ch), + length=0, # disable "rule of 3" length checks meant for emphasis + token=len(state.tokens) - 1, + end=-1, + open=scanned.can_open, + close=scanned.can_close, + ) + ) + + i += 2 + + state.pos += scanned.length + + return True + + +def _postProcess(state: StateInline, delimiters: list[Delimiter]) -> None: + loneMarkers = [] + maximum = len(delimiters) + + i = 0 + while i < maximum: + startDelim = delimiters[i] + + if startDelim.marker != 0x7E: # /* ~ */ + i += 1 + continue + + if startDelim.end == -1: + i += 1 + continue + + endDelim = delimiters[startDelim.end] + + token = state.tokens[startDelim.token] + token.type = "s_open" + token.tag = "s" + token.nesting = 1 + token.markup = "~~" + token.content = "" + + token = state.tokens[endDelim.token] + token.type = "s_close" + token.tag = "s" + token.nesting = -1 + token.markup = "~~" + token.content = "" + + if ( + state.tokens[endDelim.token - 1].type == "text" + and state.tokens[endDelim.token - 1].content == "~" + ): + loneMarkers.append(endDelim.token - 1) + + i += 1 + + # If a marker sequence has an odd number of characters, it's split + # like this: `~~~~~` -> `~` + `~~` + `~~`, leaving one marker at the + # start of the sequence. + # + # So, we have to move all those markers after subsequent s_close tags. + # + while loneMarkers: + i = loneMarkers.pop() + j = i + 1 + + while (j < len(state.tokens)) and (state.tokens[j].type == "s_close"): + j += 1 + + j -= 1 + + if i != j: + token = state.tokens[j] + state.tokens[j] = state.tokens[i] + state.tokens[i] = token + + +def postProcess(state: StateInline) -> None: + """Walk through delimiter list and replace text tokens with tags.""" + tokens_meta = state.tokens_meta + maximum = len(state.tokens_meta) + _postProcess(state, state.delimiters) + + curr = 0 + while curr < maximum: + try: + curr_meta = tokens_meta[curr] + except IndexError: + pass + else: + if curr_meta and "delimiters" in curr_meta: + _postProcess(state, curr_meta["delimiters"]) + curr += 1 diff --git a/Scripts/Lib/site-packages/markdown_it/rules_inline/text.py b/Scripts/Lib/site-packages/markdown_it/rules_inline/text.py new file mode 100644 index 0000000..18b2fcc --- /dev/null +++ b/Scripts/Lib/site-packages/markdown_it/rules_inline/text.py @@ -0,0 +1,62 @@ +import functools +import re + +# Skip text characters for text token, place those to pending buffer +# and increment current pos +from .state_inline import StateInline + +# Rule to skip pure text +# '{}$%@~+=:' reserved for extensions + +# !!!! Don't confuse with "Markdown ASCII Punctuation" chars +# http://spec.commonmark.org/0.15/#ascii-punctuation-character + + +_TerminatorChars = { + "\n", + "!", + "#", + "$", + "%", + "&", + "*", + "+", + "-", + ":", + "<", + "=", + ">", + "@", + "[", + "\\", + "]", + "^", + "_", + "`", + "{", + "}", + "~", +} + + +@functools.cache +def _terminator_char_regex() -> re.Pattern[str]: + return re.compile("[" + re.escape("".join(_TerminatorChars)) + "]") + + +def text(state: StateInline, silent: bool) -> bool: + pos = state.pos + posMax = state.posMax + + terminator_char = _terminator_char_regex().search(state.src, pos) + pos = terminator_char.start() if terminator_char else posMax + + if pos == state.pos: + return False + + if not silent: + state.pending += state.src[state.pos : pos] + + state.pos = pos + + return True diff --git a/Scripts/Lib/site-packages/markdown_it/token.py b/Scripts/Lib/site-packages/markdown_it/token.py new file mode 100644 index 0000000..d6d0b45 --- /dev/null +++ b/Scripts/Lib/site-packages/markdown_it/token.py @@ -0,0 +1,178 @@ +from __future__ import annotations + +from collections.abc import Callable, MutableMapping +import dataclasses as dc +from typing import Any, Literal +import warnings + + +def convert_attrs(value: Any) -> Any: + """Convert Token.attrs set as ``None`` or ``[[key, value], ...]`` to a dict. + + This improves compatibility with upstream markdown-it. + """ + if not value: + return {} + if isinstance(value, list): + return dict(value) + return value + + +@dc.dataclass(slots=True) +class Token: + type: str + """Type of the token (string, e.g. "paragraph_open")""" + + tag: str + """HTML tag name, e.g. 'p'""" + + nesting: Literal[-1, 0, 1] + """Level change (number in {-1, 0, 1} set), where: + - `1` means the tag is opening + - `0` means the tag is self-closing + - `-1` means the tag is closing + """ + + attrs: dict[str, str | int | float] = dc.field(default_factory=dict) + """HTML attributes. + Note this differs from the upstream "list of lists" format, + although than an instance can still be initialised with this format. + """ + + map: list[int] | None = None + """Source map info. Format: `[ line_begin, line_end ]`""" + + level: int = 0 + """Nesting level, the same as `state.level`""" + + children: list[Token] | None = None + """Array of child nodes (inline and img tokens).""" + + content: str = "" + """Inner content, in the case of a self-closing tag (code, html, fence, etc.),""" + + markup: str = "" + """'*' or '_' for emphasis, fence string for fence, etc.""" + + info: str = "" + """Additional information: + - Info string for "fence" tokens + - The value "auto" for autolink "link_open" and "link_close" tokens + - The string value of the item marker for ordered-list "list_item_open" tokens + """ + + meta: dict[Any, Any] = dc.field(default_factory=dict) + """A place for plugins to store any arbitrary data""" + + block: bool = False + """True for block-level tokens, false for inline tokens. + Used in renderer to calculate line breaks + """ + + hidden: bool = False + """If true, ignore this element when rendering. + Used for tight lists to hide paragraphs. + """ + + def __post_init__(self) -> None: + self.attrs = convert_attrs(self.attrs) + + def attrIndex(self, name: str) -> int: + warnings.warn( # noqa: B028 + "Token.attrIndex should not be used, since Token.attrs is a dictionary", + UserWarning, + ) + if name not in self.attrs: + return -1 + return list(self.attrs.keys()).index(name) + + def attrItems(self) -> list[tuple[str, str | int | float]]: + """Get (key, value) list of attrs.""" + return list(self.attrs.items()) + + def attrPush(self, attrData: tuple[str, str | int | float]) -> None: + """Add `[ name, value ]` attribute to list. Init attrs if necessary.""" + name, value = attrData + self.attrSet(name, value) + + def attrSet(self, name: str, value: str | int | float) -> None: + """Set `name` attribute to `value`. Override old value if exists.""" + self.attrs[name] = value + + def attrGet(self, name: str) -> None | str | int | float: + """Get the value of attribute `name`, or null if it does not exist.""" + return self.attrs.get(name, None) + + def attrJoin(self, name: str, value: str) -> None: + """Join value to existing attribute via space. + Or create new attribute if not exists. + Useful to operate with token classes. + """ + if name in self.attrs: + current = self.attrs[name] + if not isinstance(current, str): + raise TypeError( + f"existing attr 'name' is not a str: {self.attrs[name]}" + ) + self.attrs[name] = f"{current} {value}" + else: + self.attrs[name] = value + + def copy(self, **changes: Any) -> Token: + """Return a shallow copy of the instance.""" + return dc.replace(self, **changes) + + def as_dict( + self, + *, + children: bool = True, + as_upstream: bool = True, + meta_serializer: Callable[[dict[Any, Any]], Any] | None = None, + filter: Callable[[str, Any], bool] | None = None, + dict_factory: Callable[..., MutableMapping[str, Any]] = dict, + ) -> MutableMapping[str, Any]: + """Return the token as a dictionary. + + :param children: Also convert children to dicts + :param as_upstream: Ensure the output dictionary is equal to that created by markdown-it + For example, attrs are converted to null or lists + :param meta_serializer: hook for serializing ``Token.meta`` + :param filter: A callable whose return code determines whether an + attribute or element is included (``True``) or dropped (``False``). + Is called with the (key, value) pair. + :param dict_factory: A callable to produce dictionaries from. + For example, to produce ordered dictionaries instead of normal Python + dictionaries, pass in ``collections.OrderedDict``. + + """ + mapping = dict_factory((f.name, getattr(self, f.name)) for f in dc.fields(self)) + if filter: + mapping = dict_factory((k, v) for k, v in mapping.items() if filter(k, v)) + if as_upstream and "attrs" in mapping: + mapping["attrs"] = ( + None + if not mapping["attrs"] + else [[k, v] for k, v in mapping["attrs"].items()] + ) + if meta_serializer and "meta" in mapping: + mapping["meta"] = meta_serializer(mapping["meta"]) + if children and mapping.get("children", None): + mapping["children"] = [ + child.as_dict( + children=children, + filter=filter, + dict_factory=dict_factory, + as_upstream=as_upstream, + meta_serializer=meta_serializer, + ) + for child in mapping["children"] + ] + return mapping + + @classmethod + def from_dict(cls, dct: MutableMapping[str, Any]) -> Token: + """Convert a dict to a Token.""" + token = cls(**dct) + if token.children: + token.children = [cls.from_dict(c) for c in token.children] # type: ignore[arg-type] + return token diff --git a/Scripts/Lib/site-packages/markdown_it/tree.py b/Scripts/Lib/site-packages/markdown_it/tree.py new file mode 100644 index 0000000..5369157 --- /dev/null +++ b/Scripts/Lib/site-packages/markdown_it/tree.py @@ -0,0 +1,333 @@ +"""A tree representation of a linear markdown-it token stream. + +This module is not part of upstream JavaScript markdown-it. +""" + +from __future__ import annotations + +from collections.abc import Generator, Sequence +import textwrap +from typing import Any, NamedTuple, TypeVar, overload + +from .token import Token + + +class _NesterTokens(NamedTuple): + opening: Token + closing: Token + + +_NodeType = TypeVar("_NodeType", bound="SyntaxTreeNode") + + +class SyntaxTreeNode: + """A Markdown syntax tree node. + + A class that can be used to construct a tree representation of a linear + `markdown-it-py` token stream. + + Each node in the tree represents either: + - root of the Markdown document + - a single unnested `Token` + - a `Token` "_open" and "_close" token pair, and the tokens nested in + between + """ + + def __init__( + self, tokens: Sequence[Token] = (), *, create_root: bool = True + ) -> None: + """Initialize a `SyntaxTreeNode` from a token stream. + + If `create_root` is True, create a root node for the document. + """ + # Only nodes representing an unnested token have self.token + self.token: Token | None = None + + # Only containers have nester tokens + self.nester_tokens: _NesterTokens | None = None + + # Root node does not have self.parent + self._parent: Any = None + + # Empty list unless a non-empty container, or unnested token that has + # children (i.e. inline or img) + self._children: list[Any] = [] + + if create_root: + self._set_children_from_tokens(tokens) + return + + if not tokens: + raise ValueError( + "Can only create root from empty token sequence." + " Set `create_root=True`." + ) + elif len(tokens) == 1: + inline_token = tokens[0] + if inline_token.nesting: + raise ValueError( + "Unequal nesting level at the start and end of token stream." + ) + self.token = inline_token + if inline_token.children: + self._set_children_from_tokens(inline_token.children) + else: + self.nester_tokens = _NesterTokens(tokens[0], tokens[-1]) + self._set_children_from_tokens(tokens[1:-1]) + + def __repr__(self) -> str: + return f"{type(self).__name__}({self.type})" + + @overload + def __getitem__(self: _NodeType, item: int) -> _NodeType: ... + + @overload + def __getitem__(self: _NodeType, item: slice) -> list[_NodeType]: ... + + def __getitem__(self: _NodeType, item: int | slice) -> _NodeType | list[_NodeType]: + return self.children[item] + + def to_tokens(self: _NodeType) -> list[Token]: + """Recover the linear token stream.""" + + def recursive_collect_tokens(node: _NodeType, token_list: list[Token]) -> None: + if node.type == "root": + for child in node.children: + recursive_collect_tokens(child, token_list) + elif node.token: + token_list.append(node.token) + else: + assert node.nester_tokens + token_list.append(node.nester_tokens.opening) + for child in node.children: + recursive_collect_tokens(child, token_list) + token_list.append(node.nester_tokens.closing) + + tokens: list[Token] = [] + recursive_collect_tokens(self, tokens) + return tokens + + @property + def children(self: _NodeType) -> list[_NodeType]: + return self._children + + @children.setter + def children(self: _NodeType, value: list[_NodeType]) -> None: + self._children = value + + @property + def parent(self: _NodeType) -> _NodeType | None: + return self._parent # type: ignore + + @parent.setter + def parent(self: _NodeType, value: _NodeType | None) -> None: + self._parent = value + + @property + def is_root(self) -> bool: + """Is the node a special root node?""" + return not (self.token or self.nester_tokens) + + @property + def is_nested(self) -> bool: + """Is this node nested?. + + Returns `True` if the node represents a `Token` pair and tokens in the + sequence between them, where `Token.nesting` of the first `Token` in + the pair is 1 and nesting of the other `Token` is -1. + """ + return bool(self.nester_tokens) + + @property + def siblings(self: _NodeType) -> Sequence[_NodeType]: + """Get siblings of the node. + + Gets the whole group of siblings, including self. + """ + if not self.parent: + return [self] + return self.parent.children + + @property + def type(self) -> str: + """Get a string type of the represented syntax. + + - "root" for root nodes + - `Token.type` if the node represents an unnested token + - `Token.type` of the opening token, with "_open" suffix stripped, if + the node represents a nester token pair + """ + if self.is_root: + return "root" + if self.token: + return self.token.type + assert self.nester_tokens + return self.nester_tokens.opening.type.removesuffix("_open") + + @property + def next_sibling(self: _NodeType) -> _NodeType | None: + """Get the next node in the sequence of siblings. + + Returns `None` if this is the last sibling. + """ + self_index = self.siblings.index(self) + if self_index + 1 < len(self.siblings): + return self.siblings[self_index + 1] + return None + + @property + def previous_sibling(self: _NodeType) -> _NodeType | None: + """Get the previous node in the sequence of siblings. + + Returns `None` if this is the first sibling. + """ + self_index = self.siblings.index(self) + if self_index - 1 >= 0: + return self.siblings[self_index - 1] + return None + + def _add_child( + self, + tokens: Sequence[Token], + ) -> None: + """Make a child node for `self`.""" + child = type(self)(tokens, create_root=False) + child.parent = self + self.children.append(child) + + def _set_children_from_tokens(self, tokens: Sequence[Token]) -> None: + """Convert the token stream to a tree structure and set the resulting + nodes as children of `self`.""" + reversed_tokens = list(reversed(tokens)) + while reversed_tokens: + token = reversed_tokens.pop() + + if not token.nesting: + self._add_child([token]) + continue + if token.nesting != 1: + raise ValueError("Invalid token nesting") + + nested_tokens = [token] + nesting = 1 + while reversed_tokens and nesting: + token = reversed_tokens.pop() + nested_tokens.append(token) + nesting += token.nesting + if nesting: + raise ValueError(f"unclosed tokens starting {nested_tokens[0]}") + + self._add_child(nested_tokens) + + def pretty( + self, *, indent: int = 2, show_text: bool = False, _current: int = 0 + ) -> str: + """Create an XML style string of the tree.""" + prefix = " " * _current + text = prefix + f"<{self.type}" + if not self.is_root and self.attrs: + text += " " + " ".join(f"{k}={v!r}" for k, v in self.attrs.items()) + text += ">" + if ( + show_text + and not self.is_root + and self.type in ("text", "text_special") + and self.content + ): + text += "\n" + textwrap.indent(self.content, prefix + " " * indent) + for child in self.children: + text += "\n" + child.pretty( + indent=indent, show_text=show_text, _current=_current + indent + ) + return text + + def walk( + self: _NodeType, *, include_self: bool = True + ) -> Generator[_NodeType, None, None]: + """Recursively yield all descendant nodes in the tree starting at self. + + The order mimics the order of the underlying linear token + stream (i.e. depth first). + """ + if include_self: + yield self + for child in self.children: + yield from child.walk(include_self=True) + + # NOTE: + # The values of the properties defined below directly map to properties + # of the underlying `Token`s. A root node does not translate to a `Token` + # object, so calling these property getters on a root node will raise an + # `AttributeError`. + # + # There is no mapping for `Token.nesting` because the `is_nested` property + # provides that data, and can be called on any node type, including root. + + def _attribute_token(self) -> Token: + """Return the `Token` that is used as the data source for the + properties defined below.""" + if self.token: + return self.token + if self.nester_tokens: + return self.nester_tokens.opening + raise AttributeError("Root node does not have the accessed attribute") + + @property + def tag(self) -> str: + """html tag name, e.g. \"p\" """ + return self._attribute_token().tag + + @property + def attrs(self) -> dict[str, str | int | float]: + """Html attributes.""" + return self._attribute_token().attrs + + def attrGet(self, name: str) -> None | str | int | float: + """Get the value of attribute `name`, or null if it does not exist.""" + return self._attribute_token().attrGet(name) + + @property + def map(self) -> tuple[int, int] | None: + """Source map info. Format: `tuple[ line_begin, line_end ]`""" + map_ = self._attribute_token().map + if map_: + # Type ignore because `Token`s attribute types are not perfect + return tuple(map_) # type: ignore + return None + + @property + def level(self) -> int: + """nesting level, the same as `state.level`""" + return self._attribute_token().level + + @property + def content(self) -> str: + """In a case of self-closing tag (code, html, fence, etc.), it + has contents of this tag.""" + return self._attribute_token().content + + @property + def markup(self) -> str: + """'*' or '_' for emphasis, fence string for fence, etc.""" + return self._attribute_token().markup + + @property + def info(self) -> str: + """fence infostring""" + return self._attribute_token().info + + @property + def meta(self) -> dict[Any, Any]: + """A place for plugins to store an arbitrary data.""" + return self._attribute_token().meta + + @property + def block(self) -> bool: + """True for block-level tokens, false for inline tokens.""" + return self._attribute_token().block + + @property + def hidden(self) -> bool: + """If it's true, ignore this element when rendering. + Used for tight lists to hide paragraphs.""" + return self._attribute_token().hidden diff --git a/Scripts/Lib/site-packages/markdown_it/utils.py b/Scripts/Lib/site-packages/markdown_it/utils.py new file mode 100644 index 0000000..2571a15 --- /dev/null +++ b/Scripts/Lib/site-packages/markdown_it/utils.py @@ -0,0 +1,186 @@ +from __future__ import annotations + +from collections.abc import Callable, Iterable, MutableMapping +from collections.abc import MutableMapping as MutableMappingABC +from pathlib import Path +from typing import TYPE_CHECKING, Any, TypedDict, cast + +if TYPE_CHECKING: + from typing_extensions import NotRequired + + +EnvType = MutableMapping[str, Any] # note: could use TypeAlias in python 3.10 +"""Type for the environment sandbox used in parsing and rendering, +which stores mutable variables for use by plugins and rules. +""" + + +class OptionsType(TypedDict): + """Options for parsing.""" + + maxNesting: int + """Internal protection, recursion limit.""" + html: bool + """Enable HTML tags in source.""" + linkify: bool + """Enable autoconversion of URL-like texts to links.""" + typographer: bool + """Enable smartquotes and replacements.""" + quotes: str + """Quote characters.""" + xhtmlOut: bool + """Use '/' to close single tags (
).""" + breaks: bool + """Convert newlines in paragraphs into
.""" + langPrefix: str + """CSS language prefix for fenced blocks.""" + highlight: Callable[[str, str, str], str] | None + """Highlighter function: (content, lang, attrs) -> str.""" + store_labels: NotRequired[bool] + """Store link label in link/image token's metadata (under Token.meta['label']). + + This is a Python only option, and is intended for the use of round-trip parsing. + """ + + +class PresetType(TypedDict): + """Preset configuration for markdown-it.""" + + options: OptionsType + """Options for parsing.""" + components: MutableMapping[str, MutableMapping[str, list[str]]] + """Components for parsing and rendering.""" + + +class OptionsDict(MutableMappingABC): # type: ignore + """A dictionary, with attribute access to core markdownit configuration options.""" + + # Note: ideally we would probably just remove attribute access entirely, + # but we keep it for backwards compatibility. + + def __init__(self, options: OptionsType) -> None: + self._options = cast(OptionsType, dict(options)) + + def __getitem__(self, key: str) -> Any: + return self._options[key] # type: ignore[literal-required] + + def __setitem__(self, key: str, value: Any) -> None: + self._options[key] = value # type: ignore[literal-required] + + def __delitem__(self, key: str) -> None: + del self._options[key] # type: ignore + + def __iter__(self) -> Iterable[str]: # type: ignore + return iter(self._options) + + def __len__(self) -> int: + return len(self._options) + + def __repr__(self) -> str: + return repr(self._options) + + def __str__(self) -> str: + return str(self._options) + + @property + def maxNesting(self) -> int: + """Internal protection, recursion limit.""" + return self._options["maxNesting"] + + @maxNesting.setter + def maxNesting(self, value: int) -> None: + self._options["maxNesting"] = value + + @property + def html(self) -> bool: + """Enable HTML tags in source.""" + return self._options["html"] + + @html.setter + def html(self, value: bool) -> None: + self._options["html"] = value + + @property + def linkify(self) -> bool: + """Enable autoconversion of URL-like texts to links.""" + return self._options["linkify"] + + @linkify.setter + def linkify(self, value: bool) -> None: + self._options["linkify"] = value + + @property + def typographer(self) -> bool: + """Enable smartquotes and replacements.""" + return self._options["typographer"] + + @typographer.setter + def typographer(self, value: bool) -> None: + self._options["typographer"] = value + + @property + def quotes(self) -> str: + """Quote characters.""" + return self._options["quotes"] + + @quotes.setter + def quotes(self, value: str) -> None: + self._options["quotes"] = value + + @property + def xhtmlOut(self) -> bool: + """Use '/' to close single tags (
).""" + return self._options["xhtmlOut"] + + @xhtmlOut.setter + def xhtmlOut(self, value: bool) -> None: + self._options["xhtmlOut"] = value + + @property + def breaks(self) -> bool: + """Convert newlines in paragraphs into
.""" + return self._options["breaks"] + + @breaks.setter + def breaks(self, value: bool) -> None: + self._options["breaks"] = value + + @property + def langPrefix(self) -> str: + """CSS language prefix for fenced blocks.""" + return self._options["langPrefix"] + + @langPrefix.setter + def langPrefix(self, value: str) -> None: + self._options["langPrefix"] = value + + @property + def highlight(self) -> Callable[[str, str, str], str] | None: + """Highlighter function: (content, langName, langAttrs) -> escaped HTML.""" + return self._options["highlight"] + + @highlight.setter + def highlight(self, value: Callable[[str, str, str], str] | None) -> None: + self._options["highlight"] = value + + +def read_fixture_file(path: str | Path) -> list[list[Any]]: + text = Path(path).read_text(encoding="utf-8") + tests = [] + section = 0 + last_pos = 0 + lines = text.splitlines(keepends=True) + for i in range(len(lines)): + if lines[i].rstrip() == ".": + if section == 0: + tests.append([i, lines[i - 1].strip()]) + section = 1 + elif section == 1: + tests[-1].append("".join(lines[last_pos + 1 : i])) + section = 2 + elif section == 2: + tests[-1].append("".join(lines[last_pos + 1 : i])) + section = 0 + + last_pos = i + return tests diff --git a/Scripts/Lib/site-packages/markdown_it_py-4.0.0.dist-info/INSTALLER b/Scripts/Lib/site-packages/markdown_it_py-4.0.0.dist-info/INSTALLER new file mode 100644 index 0000000..a1b589e --- /dev/null +++ b/Scripts/Lib/site-packages/markdown_it_py-4.0.0.dist-info/INSTALLER @@ -0,0 +1 @@ +pip diff --git a/Scripts/Lib/site-packages/markdown_it_py-4.0.0.dist-info/METADATA b/Scripts/Lib/site-packages/markdown_it_py-4.0.0.dist-info/METADATA new file mode 100644 index 0000000..0f2b466 --- /dev/null +++ b/Scripts/Lib/site-packages/markdown_it_py-4.0.0.dist-info/METADATA @@ -0,0 +1,219 @@ +Metadata-Version: 2.4 +Name: markdown-it-py +Version: 4.0.0 +Summary: Python port of markdown-it. Markdown parsing, done right! +Keywords: markdown,lexer,parser,commonmark,markdown-it +Author-email: Chris Sewell +Requires-Python: >=3.10 +Description-Content-Type: text/markdown +Classifier: Development Status :: 5 - Production/Stable +Classifier: Intended Audience :: Developers +Classifier: License :: OSI Approved :: MIT License +Classifier: Programming Language :: Python :: 3 +Classifier: Programming Language :: Python :: 3.10 +Classifier: Programming Language :: Python :: 3.11 +Classifier: Programming Language :: Python :: 3.12 +Classifier: Programming Language :: Python :: 3.13 +Classifier: Programming Language :: Python :: Implementation :: CPython +Classifier: Programming Language :: Python :: Implementation :: PyPy +Classifier: Topic :: Software Development :: Libraries :: Python Modules +Classifier: Topic :: Text Processing :: Markup +License-File: LICENSE +License-File: LICENSE.markdown-it +Requires-Dist: mdurl~=0.1 +Requires-Dist: psutil ; extra == "benchmarking" +Requires-Dist: pytest ; extra == "benchmarking" +Requires-Dist: pytest-benchmark ; extra == "benchmarking" +Requires-Dist: commonmark~=0.9 ; extra == "compare" +Requires-Dist: markdown~=3.4 ; extra == "compare" +Requires-Dist: mistletoe~=1.0 ; extra == "compare" +Requires-Dist: mistune~=3.0 ; extra == "compare" +Requires-Dist: panflute~=2.3 ; extra == "compare" +Requires-Dist: markdown-it-pyrs ; extra == "compare" +Requires-Dist: linkify-it-py>=1,<3 ; extra == "linkify" +Requires-Dist: mdit-py-plugins>=0.5.0 ; extra == "plugins" +Requires-Dist: gprof2dot ; extra == "profiling" +Requires-Dist: mdit-py-plugins>=0.5.0 ; extra == "rtd" +Requires-Dist: myst-parser ; extra == "rtd" +Requires-Dist: pyyaml ; extra == "rtd" +Requires-Dist: sphinx ; extra == "rtd" +Requires-Dist: sphinx-copybutton ; extra == "rtd" +Requires-Dist: sphinx-design ; extra == "rtd" +Requires-Dist: sphinx-book-theme~=1.0 ; extra == "rtd" +Requires-Dist: jupyter_sphinx ; extra == "rtd" +Requires-Dist: ipykernel ; extra == "rtd" +Requires-Dist: coverage ; extra == "testing" +Requires-Dist: pytest ; extra == "testing" +Requires-Dist: pytest-cov ; extra == "testing" +Requires-Dist: pytest-regressions ; extra == "testing" +Requires-Dist: requests ; extra == "testing" +Project-URL: Documentation, https://markdown-it-py.readthedocs.io +Project-URL: Homepage, https://github.com/executablebooks/markdown-it-py +Provides-Extra: benchmarking +Provides-Extra: compare +Provides-Extra: linkify +Provides-Extra: plugins +Provides-Extra: profiling +Provides-Extra: rtd +Provides-Extra: testing + +# markdown-it-py + +[![Github-CI][github-ci]][github-link] +[![Coverage Status][codecov-badge]][codecov-link] +[![PyPI][pypi-badge]][pypi-link] +[![Conda][conda-badge]][conda-link] +[![PyPI - Downloads][install-badge]][install-link] + +

+ markdown-it-py icon +

+ +> Markdown parser done right. + +- Follows the __[CommonMark spec](http://spec.commonmark.org/)__ for baseline parsing +- Configurable syntax: you can add new rules and even replace existing ones. +- Pluggable: Adds syntax extensions to extend the parser (see the [plugin list][md-plugins]). +- High speed (see our [benchmarking tests][md-performance]) +- Easy to configure for [security][md-security] +- Member of [Google's Assured Open Source Software](https://cloud.google.com/assured-open-source-software/docs/supported-packages) + +This is a Python port of [markdown-it], and some of its associated plugins. +For more details see: . + +For details on [markdown-it] itself, see: + +- The __[Live demo](https://markdown-it.github.io)__ +- [The markdown-it README][markdown-it-readme] + +**See also:** [markdown-it-pyrs](https://github.com/chrisjsewell/markdown-it-pyrs) for an experimental Rust binding, +for even more speed! + +## Installation + +### PIP + +```bash +pip install markdown-it-py[plugins] +``` + +or with extras + +```bash +pip install markdown-it-py[linkify,plugins] +``` + +### Conda + +```bash +conda install -c conda-forge markdown-it-py +``` + +or with extras + +```bash +conda install -c conda-forge markdown-it-py linkify-it-py mdit-py-plugins +``` + +## Usage + +### Python API Usage + +Render markdown to HTML with markdown-it-py and a custom configuration +with and without plugins and features: + +```python +from markdown_it import MarkdownIt +from mdit_py_plugins.front_matter import front_matter_plugin +from mdit_py_plugins.footnote import footnote_plugin + +md = ( + MarkdownIt('commonmark', {'breaks':True,'html':True}) + .use(front_matter_plugin) + .use(footnote_plugin) + .enable('table') +) +text = (""" +--- +a: 1 +--- + +a | b +- | - +1 | 2 + +A footnote [^1] + +[^1]: some details +""") +tokens = md.parse(text) +html_text = md.render(text) + +## To export the html to a file, uncomment the lines below: +# from pathlib import Path +# Path("output.html").write_text(html_text) +``` + +### Command-line Usage + +Render markdown to HTML with markdown-it-py from the +command-line: + +```console +usage: markdown-it [-h] [-v] [filenames [filenames ...]] + +Parse one or more markdown files, convert each to HTML, and print to stdout + +positional arguments: + filenames specify an optional list of files to convert + +optional arguments: + -h, --help show this help message and exit + -v, --version show program's version number and exit + +Interactive: + + $ markdown-it + markdown-it-py [version 0.0.0] (interactive) + Type Ctrl-D to complete input, or Ctrl-C to exit. + >>> # Example + ... > markdown *input* + ... +

Example

+
+

markdown input

+
+ +Batch: + + $ markdown-it README.md README.footer.md > index.html + +``` + +## References / Thanks + +Big thanks to the authors of [markdown-it]: + +- Alex Kocharin [github/rlidwka](https://github.com/rlidwka) +- Vitaly Puzrin [github/puzrin](https://github.com/puzrin) + +Also [John MacFarlane](https://github.com/jgm) for his work on the CommonMark spec and reference implementations. + +[github-ci]: https://github.com/executablebooks/markdown-it-py/actions/workflows/tests.yml/badge.svg?branch=master +[github-link]: https://github.com/executablebooks/markdown-it-py +[pypi-badge]: https://img.shields.io/pypi/v/markdown-it-py.svg +[pypi-link]: https://pypi.org/project/markdown-it-py +[conda-badge]: https://anaconda.org/conda-forge/markdown-it-py/badges/version.svg +[conda-link]: https://anaconda.org/conda-forge/markdown-it-py +[codecov-badge]: https://codecov.io/gh/executablebooks/markdown-it-py/branch/master/graph/badge.svg +[codecov-link]: https://codecov.io/gh/executablebooks/markdown-it-py +[install-badge]: https://img.shields.io/pypi/dw/markdown-it-py?label=pypi%20installs +[install-link]: https://pypistats.org/packages/markdown-it-py + +[CommonMark spec]: http://spec.commonmark.org/ +[markdown-it]: https://github.com/markdown-it/markdown-it +[markdown-it-readme]: https://github.com/markdown-it/markdown-it/blob/master/README.md +[md-security]: https://markdown-it-py.readthedocs.io/en/latest/security.html +[md-performance]: https://markdown-it-py.readthedocs.io/en/latest/performance.html +[md-plugins]: https://markdown-it-py.readthedocs.io/en/latest/plugins.html + diff --git a/Scripts/Lib/site-packages/markdown_it_py-4.0.0.dist-info/RECORD b/Scripts/Lib/site-packages/markdown_it_py-4.0.0.dist-info/RECORD new file mode 100644 index 0000000..2e54ade --- /dev/null +++ b/Scripts/Lib/site-packages/markdown_it_py-4.0.0.dist-info/RECORD @@ -0,0 +1,142 @@ +../../Scripts/markdown-it.exe,sha256=1YhP5O2owmiW1J-uaeKDxMexuBy6SdXo7d1wATnwkjU,106400 +markdown_it/__init__.py,sha256=R7fMvDxageYJ4Q6doBcimogy1ctcV1eBuCFu5Pr8bbA,114 +markdown_it/__pycache__/__init__.cpython-310.pyc,, +markdown_it/__pycache__/_compat.cpython-310.pyc,, +markdown_it/__pycache__/_punycode.cpython-310.pyc,, +markdown_it/__pycache__/main.cpython-310.pyc,, +markdown_it/__pycache__/parser_block.cpython-310.pyc,, +markdown_it/__pycache__/parser_core.cpython-310.pyc,, +markdown_it/__pycache__/parser_inline.cpython-310.pyc,, +markdown_it/__pycache__/renderer.cpython-310.pyc,, +markdown_it/__pycache__/ruler.cpython-310.pyc,, +markdown_it/__pycache__/token.cpython-310.pyc,, +markdown_it/__pycache__/tree.cpython-310.pyc,, +markdown_it/__pycache__/utils.cpython-310.pyc,, +markdown_it/_compat.py,sha256=U4S_2y3zgLZVfMenHRaJFBW8yqh2mUBuI291LGQVOJ8,35 +markdown_it/_punycode.py,sha256=JvSOZJ4VKr58z7unFGM0KhfTxqHMk2w8gglxae2QszM,2373 +markdown_it/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +markdown_it/cli/__pycache__/__init__.cpython-310.pyc,, +markdown_it/cli/__pycache__/parse.cpython-310.pyc,, +markdown_it/cli/parse.py,sha256=Un3N7fyGHhZAQouGVnRx-WZcpKwEK2OF08rzVAEBie8,2881 +markdown_it/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +markdown_it/common/__pycache__/__init__.cpython-310.pyc,, +markdown_it/common/__pycache__/entities.cpython-310.pyc,, +markdown_it/common/__pycache__/html_blocks.cpython-310.pyc,, +markdown_it/common/__pycache__/html_re.cpython-310.pyc,, +markdown_it/common/__pycache__/normalize_url.cpython-310.pyc,, +markdown_it/common/__pycache__/utils.cpython-310.pyc,, +markdown_it/common/entities.py,sha256=EYRCmUL7ZU1FRGLSXQlPx356lY8EUBdFyx96eSGc6d0,157 +markdown_it/common/html_blocks.py,sha256=QXbUDMoN9lXLgYFk2DBYllnLiFukL6dHn2X98Y6Wews,986 +markdown_it/common/html_re.py,sha256=FggAEv9IL8gHQqsGTkHcf333rTojwG0DQJMH9oVu0fU,926 +markdown_it/common/normalize_url.py,sha256=avOXnLd9xw5jU1q5PLftjAM9pvGx8l9QDEkmZSyrMgg,2568 +markdown_it/common/utils.py,sha256=pMgvMOE3ZW-BdJ7HfuzlXNKyD1Ivk7jHErc2J_B8J5M,8734 +markdown_it/helpers/__init__.py,sha256=YH2z7dS0WUc_9l51MWPvrLtFoBPh4JLGw58OuhGRCK0,253 +markdown_it/helpers/__pycache__/__init__.cpython-310.pyc,, +markdown_it/helpers/__pycache__/parse_link_destination.cpython-310.pyc,, +markdown_it/helpers/__pycache__/parse_link_label.cpython-310.pyc,, +markdown_it/helpers/__pycache__/parse_link_title.cpython-310.pyc,, +markdown_it/helpers/parse_link_destination.py,sha256=u-xxWVP3g1s7C1bQuQItiYyDrYoYHJzXaZXPgr-o6mY,1906 +markdown_it/helpers/parse_link_label.py,sha256=PIHG6ZMm3BUw0a2m17lCGqNrl3vaz911tuoGviWD3I4,1037 +markdown_it/helpers/parse_link_title.py,sha256=jkLoYQMKNeX9bvWQHkaSroiEo27HylkEUNmj8xBRlp4,2273 +markdown_it/main.py,sha256=vzuT23LJyKrPKNyHKKAbOHkNWpwIldOGUM-IGsv2DHM,12732 +markdown_it/parser_block.py,sha256=-MyugXB63Te71s4NcSQZiK5bE6BHkdFyZv_bviuatdI,3939 +markdown_it/parser_core.py,sha256=SRmJjqe8dC6GWzEARpWba59cBmxjCr3Gsg8h29O8sQk,1016 +markdown_it/parser_inline.py,sha256=y0jCig8CJxQO7hBz0ZY3sGvPlAKTohOwIgaqnlSaS5A,5024 +markdown_it/port.yaml,sha256=jt_rdwOnfocOV5nc35revTybAAQMIp_-1fla_527sVE,2447 +markdown_it/presets/__init__.py,sha256=22vFtwJEY7iqFRtgVZ-pJthcetfpr1Oig8XOF9x1328,970 +markdown_it/presets/__pycache__/__init__.cpython-310.pyc,, +markdown_it/presets/__pycache__/commonmark.cpython-310.pyc,, +markdown_it/presets/__pycache__/default.cpython-310.pyc,, +markdown_it/presets/__pycache__/zero.cpython-310.pyc,, +markdown_it/presets/commonmark.py,sha256=ygfb0R7WQ_ZoyQP3df-B0EnYMqNXCVOSw9SAdMjsGow,2869 +markdown_it/presets/default.py,sha256=FfKVUI0HH3M-_qy6RwotLStdC4PAaAxE7Dq0_KQtRtc,1811 +markdown_it/presets/zero.py,sha256=okXWTBEI-2nmwx5XKeCjxInRf65oC11gahtRl-QNtHM,2113 +markdown_it/py.typed,sha256=8PjyZ1aVoQpRVvt71muvuq5qE-jTFZkK-GLHkhdebmc,26 +markdown_it/renderer.py,sha256=Lzr0glqd5oxFL10DOfjjW8kg4Gp41idQ4viEQaE47oA,9947 +markdown_it/ruler.py,sha256=eMAtWGRAfSM33aiJed0k5923BEkuMVsMq1ct8vU-ql4,9142 +markdown_it/rules_block/__init__.py,sha256=SQpg0ocmsHeILPAWRHhzgLgJMKIcNkQyELH13o_6Ktc,553 +markdown_it/rules_block/__pycache__/__init__.cpython-310.pyc,, +markdown_it/rules_block/__pycache__/blockquote.cpython-310.pyc,, +markdown_it/rules_block/__pycache__/code.cpython-310.pyc,, +markdown_it/rules_block/__pycache__/fence.cpython-310.pyc,, +markdown_it/rules_block/__pycache__/heading.cpython-310.pyc,, +markdown_it/rules_block/__pycache__/hr.cpython-310.pyc,, +markdown_it/rules_block/__pycache__/html_block.cpython-310.pyc,, +markdown_it/rules_block/__pycache__/lheading.cpython-310.pyc,, +markdown_it/rules_block/__pycache__/list.cpython-310.pyc,, +markdown_it/rules_block/__pycache__/paragraph.cpython-310.pyc,, +markdown_it/rules_block/__pycache__/reference.cpython-310.pyc,, +markdown_it/rules_block/__pycache__/state_block.cpython-310.pyc,, +markdown_it/rules_block/__pycache__/table.cpython-310.pyc,, +markdown_it/rules_block/blockquote.py,sha256=7uymS36dcrned3DsIaRcqcbFU1NlymhvsZpEXTD3_n8,8887 +markdown_it/rules_block/code.py,sha256=iTAxv0U1-MDhz88M1m1pi2vzOhEMSEROsXMo2Qq--kU,860 +markdown_it/rules_block/fence.py,sha256=BJgU-PqZ4vAlCqGcrc8UtdLpJJyMeRWN-G-Op-zxrMc,2537 +markdown_it/rules_block/heading.py,sha256=4Lh15rwoVsQjE1hVhpbhidQ0k9xKHihgjAeYSbwgO5k,1745 +markdown_it/rules_block/hr.py,sha256=QCoY5kImaQRvF7PyP8OoWft6A8JVH1v6MN-0HR9Ikpg,1227 +markdown_it/rules_block/html_block.py,sha256=wA8pb34LtZr1BkIATgGKQBIGX5jQNOkwZl9UGEqvb5M,2721 +markdown_it/rules_block/lheading.py,sha256=fWoEuUo7S2svr5UMKmyQMkh0hheYAHg2gMM266Mogs4,2625 +markdown_it/rules_block/list.py,sha256=gIodkAJFyOIyKCZCj5lAlL7jIj5kAzrDb-K-2MFNplY,9668 +markdown_it/rules_block/paragraph.py,sha256=9pmCwA7eMu4LBdV4fWKzC4EdwaOoaGw2kfeYSQiLye8,1819 +markdown_it/rules_block/reference.py,sha256=ue1qZbUaUP0GIvwTjh6nD1UtCij8uwsIMuYW1xBkckc,6983 +markdown_it/rules_block/state_block.py,sha256=HowsQyy5hGUibH4HRZWKfLIlXeDUnuWL7kpF0-rSwoM,8422 +markdown_it/rules_block/table.py,sha256=8nMd9ONGOffER7BXmc9kbbhxkLjtpX79dVLR0iatGnM,7682 +markdown_it/rules_core/__init__.py,sha256=QFGBe9TUjnRQJDU7xY4SQYpxyTHNwg8beTSwXpNGRjE,394 +markdown_it/rules_core/__pycache__/__init__.cpython-310.pyc,, +markdown_it/rules_core/__pycache__/block.cpython-310.pyc,, +markdown_it/rules_core/__pycache__/inline.cpython-310.pyc,, +markdown_it/rules_core/__pycache__/linkify.cpython-310.pyc,, +markdown_it/rules_core/__pycache__/normalize.cpython-310.pyc,, +markdown_it/rules_core/__pycache__/replacements.cpython-310.pyc,, +markdown_it/rules_core/__pycache__/smartquotes.cpython-310.pyc,, +markdown_it/rules_core/__pycache__/state_core.cpython-310.pyc,, +markdown_it/rules_core/__pycache__/text_join.cpython-310.pyc,, +markdown_it/rules_core/block.py,sha256=0_JY1CUy-H2OooFtIEZAACtuoGUMohgxo4Z6A_UinSg,372 +markdown_it/rules_core/inline.py,sha256=9oWmeBhJHE7x47oJcN9yp6UsAZtrEY_A-VmfoMvKld4,325 +markdown_it/rules_core/linkify.py,sha256=mjQqpk_lHLh2Nxw4UFaLxa47Fgi-OHnmDamlgXnhmv0,5141 +markdown_it/rules_core/normalize.py,sha256=AJm4femtFJ_QBnM0dzh0UNqTTJk9K6KMtwRPaioZFqM,403 +markdown_it/rules_core/replacements.py,sha256=CH75mie-tdzdLKQtMBuCTcXAl1ijegdZGfbV_Vk7st0,3471 +markdown_it/rules_core/smartquotes.py,sha256=izK9fSyuTzA-zAUGkRkz9KwwCQWo40iRqcCKqOhFbEE,7443 +markdown_it/rules_core/state_core.py,sha256=HqWZCUr5fW7xG6jeQZDdO0hE9hxxyl3_-bawgOy57HY,570 +markdown_it/rules_core/text_join.py,sha256=rLXxNuLh_es5RvH31GsXi7en8bMNO9UJ5nbJMDBPltY,1173 +markdown_it/rules_inline/__init__.py,sha256=qqHZk6-YE8Rc12q6PxvVKBaxv2wmZeeo45H1XMR_Vxs,696 +markdown_it/rules_inline/__pycache__/__init__.cpython-310.pyc,, +markdown_it/rules_inline/__pycache__/autolink.cpython-310.pyc,, +markdown_it/rules_inline/__pycache__/backticks.cpython-310.pyc,, +markdown_it/rules_inline/__pycache__/balance_pairs.cpython-310.pyc,, +markdown_it/rules_inline/__pycache__/emphasis.cpython-310.pyc,, +markdown_it/rules_inline/__pycache__/entity.cpython-310.pyc,, +markdown_it/rules_inline/__pycache__/escape.cpython-310.pyc,, +markdown_it/rules_inline/__pycache__/fragments_join.cpython-310.pyc,, +markdown_it/rules_inline/__pycache__/html_inline.cpython-310.pyc,, +markdown_it/rules_inline/__pycache__/image.cpython-310.pyc,, +markdown_it/rules_inline/__pycache__/link.cpython-310.pyc,, +markdown_it/rules_inline/__pycache__/linkify.cpython-310.pyc,, +markdown_it/rules_inline/__pycache__/newline.cpython-310.pyc,, +markdown_it/rules_inline/__pycache__/state_inline.cpython-310.pyc,, +markdown_it/rules_inline/__pycache__/strikethrough.cpython-310.pyc,, +markdown_it/rules_inline/__pycache__/text.cpython-310.pyc,, +markdown_it/rules_inline/autolink.py,sha256=pPoqJY8i99VtFn7KgUzMackMeq1hytzioVvWs-VQPRo,2065 +markdown_it/rules_inline/backticks.py,sha256=J7bezjjNxiXlKqvHc0fJkHZwH7-2nBsXVjcKydk8E4M,2037 +markdown_it/rules_inline/balance_pairs.py,sha256=5zgBiGidqdiWmt7Io_cuZOYh5EFEfXrYRce8RXg5m7o,4852 +markdown_it/rules_inline/emphasis.py,sha256=7aDLZx0Jlekuvbu3uEUTDhJp00Z0Pj6g4C3-VLhI8Co,3123 +markdown_it/rules_inline/entity.py,sha256=CE8AIGMi5isEa24RNseo0wRmTTaj5YLbgTFdDmBesAU,1651 +markdown_it/rules_inline/escape.py,sha256=KGulwrP5FnqZM7GXY8lf7pyVv0YkR59taZDeHb5cmKg,1659 +markdown_it/rules_inline/fragments_join.py,sha256=_3JbwWYJz74gRHeZk6T8edVJT2IVSsi7FfmJJlieQlA,1493 +markdown_it/rules_inline/html_inline.py,sha256=SBg6HR0HRqCdrkkec0dfOYuQdAqyfeLRFLeQggtgjvg,1130 +markdown_it/rules_inline/image.py,sha256=Wbsg7jgnOtKXIwXGNJOlG7ORThkMkBVolxItC0ph6C0,4141 +markdown_it/rules_inline/link.py,sha256=2oD-fAdB0xyxDRtZLTjzLeWbzJ1k9bbPVQmohb58RuI,4258 +markdown_it/rules_inline/linkify.py,sha256=ifH6sb5wE8PGMWEw9Sr4x0DhMVfNOEBCfFSwKll2O-s,1706 +markdown_it/rules_inline/newline.py,sha256=329r0V3aDjzNtJcvzA3lsFYjzgBrShLAV5uf9hwQL_M,1297 +markdown_it/rules_inline/state_inline.py,sha256=d-menFzbz5FDy1JNgGBF-BASasnVI-9RuOxWz9PnKn4,5003 +markdown_it/rules_inline/strikethrough.py,sha256=pwcPlyhkh5pqFVxRCSrdW5dNCIOtU4eDit7TVDTPIVA,3214 +markdown_it/rules_inline/text.py,sha256=FQqaQRUqbnMLO9ZSWPWQUMEKH6JqWSSSmlZ5Ii9P48o,1119 +markdown_it/token.py,sha256=cWrt9kodfPdizHq_tYrzyIZNtJYNMN1813DPNlunwTg,6381 +markdown_it/tree.py,sha256=56Cdbwu2Aiks7kNYqO_fQZWpPb_n48CUllzjQQfgu1Y,11111 +markdown_it/utils.py,sha256=lVLeX7Af3GaNFfxmMgUbsn5p7cXbwhLq7RSf56UWuRE,5687 +markdown_it_py-4.0.0.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +markdown_it_py-4.0.0.dist-info/METADATA,sha256=6fyqHi2vP5bYQKCfuqo5T-qt83o22Ip7a2tnJIfGW_s,7288 +markdown_it_py-4.0.0.dist-info/RECORD,, +markdown_it_py-4.0.0.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82 +markdown_it_py-4.0.0.dist-info/entry_points.txt,sha256=T81l7fHQ3pllpQ4wUtQK6a8g_p6wxQbnjKVHCk2WMG4,58 +markdown_it_py-4.0.0.dist-info/licenses/LICENSE,sha256=SiJg1uLND1oVGh6G2_59PtVSseK-q_mUHBulxJy85IQ,1078 +markdown_it_py-4.0.0.dist-info/licenses/LICENSE.markdown-it,sha256=eSxIxahJoV_fnjfovPnm0d0TsytGxkKnSKCkapkZ1HM,1073 diff --git a/Scripts/Lib/site-packages/markdown_it_py-4.0.0.dist-info/WHEEL b/Scripts/Lib/site-packages/markdown_it_py-4.0.0.dist-info/WHEEL new file mode 100644 index 0000000..d8b9936 --- /dev/null +++ b/Scripts/Lib/site-packages/markdown_it_py-4.0.0.dist-info/WHEEL @@ -0,0 +1,4 @@ +Wheel-Version: 1.0 +Generator: flit 3.12.0 +Root-Is-Purelib: true +Tag: py3-none-any diff --git a/Scripts/Lib/site-packages/markdown_it_py-4.0.0.dist-info/entry_points.txt b/Scripts/Lib/site-packages/markdown_it_py-4.0.0.dist-info/entry_points.txt new file mode 100644 index 0000000..7d829cd --- /dev/null +++ b/Scripts/Lib/site-packages/markdown_it_py-4.0.0.dist-info/entry_points.txt @@ -0,0 +1,3 @@ +[console_scripts] +markdown-it=markdown_it.cli.parse:main + diff --git a/Scripts/Lib/site-packages/markdown_it_py-4.0.0.dist-info/licenses/LICENSE b/Scripts/Lib/site-packages/markdown_it_py-4.0.0.dist-info/licenses/LICENSE new file mode 100644 index 0000000..582ddf5 --- /dev/null +++ b/Scripts/Lib/site-packages/markdown_it_py-4.0.0.dist-info/licenses/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2020 ExecutableBookProject + +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/Scripts/Lib/site-packages/markdown_it_py-4.0.0.dist-info/licenses/LICENSE.markdown-it b/Scripts/Lib/site-packages/markdown_it_py-4.0.0.dist-info/licenses/LICENSE.markdown-it new file mode 100644 index 0000000..7ffa058 --- /dev/null +++ b/Scripts/Lib/site-packages/markdown_it_py-4.0.0.dist-info/licenses/LICENSE.markdown-it @@ -0,0 +1,22 @@ +Copyright (c) 2014 Vitaly Puzrin, Alex Kocharin. + +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/Scripts/Lib/site-packages/mdurl-0.1.2.dist-info/INSTALLER b/Scripts/Lib/site-packages/mdurl-0.1.2.dist-info/INSTALLER new file mode 100644 index 0000000..a1b589e --- /dev/null +++ b/Scripts/Lib/site-packages/mdurl-0.1.2.dist-info/INSTALLER @@ -0,0 +1 @@ +pip diff --git a/Scripts/Lib/site-packages/mdurl-0.1.2.dist-info/LICENSE b/Scripts/Lib/site-packages/mdurl-0.1.2.dist-info/LICENSE new file mode 100644 index 0000000..2a920c5 --- /dev/null +++ b/Scripts/Lib/site-packages/mdurl-0.1.2.dist-info/LICENSE @@ -0,0 +1,46 @@ +Copyright (c) 2015 Vitaly Puzrin, Alex Kocharin. +Copyright (c) 2021 Taneli Hukkinen + +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. + +-------------------------------------------------------------------------------- + +.parse() is based on Joyent's node.js `url` code: + +Copyright Joyent, Inc. and other Node contributors. All rights reserved. +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/Scripts/Lib/site-packages/mdurl-0.1.2.dist-info/METADATA b/Scripts/Lib/site-packages/mdurl-0.1.2.dist-info/METADATA new file mode 100644 index 0000000..b4670e8 --- /dev/null +++ b/Scripts/Lib/site-packages/mdurl-0.1.2.dist-info/METADATA @@ -0,0 +1,32 @@ +Metadata-Version: 2.1 +Name: mdurl +Version: 0.1.2 +Summary: Markdown URL utilities +Keywords: markdown,commonmark +Author-email: Taneli Hukkinen +Requires-Python: >=3.7 +Description-Content-Type: text/markdown +Classifier: License :: OSI Approved :: MIT License +Classifier: Operating System :: MacOS +Classifier: Operating System :: Microsoft :: Windows +Classifier: Operating System :: POSIX :: Linux +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 :: Implementation :: CPython +Classifier: Programming Language :: Python :: Implementation :: PyPy +Classifier: Topic :: Software Development :: Libraries :: Python Modules +Classifier: Typing :: Typed +Project-URL: Homepage, https://github.com/executablebooks/mdurl + +# mdurl + +[![Build Status](https://github.com/executablebooks/mdurl/workflows/Tests/badge.svg?branch=master)](https://github.com/executablebooks/mdurl/actions?query=workflow%3ATests+branch%3Amaster+event%3Apush) +[![codecov.io](https://codecov.io/gh/executablebooks/mdurl/branch/master/graph/badge.svg)](https://codecov.io/gh/executablebooks/mdurl) +[![PyPI version](https://img.shields.io/pypi/v/mdurl)](https://pypi.org/project/mdurl) + +This is a Python port of the JavaScript [mdurl](https://www.npmjs.com/package/mdurl) package. +See the [upstream README.md file](https://github.com/markdown-it/mdurl/blob/master/README.md) for API documentation. + diff --git a/Scripts/Lib/site-packages/mdurl-0.1.2.dist-info/RECORD b/Scripts/Lib/site-packages/mdurl-0.1.2.dist-info/RECORD new file mode 100644 index 0000000..3bd37c4 --- /dev/null +++ b/Scripts/Lib/site-packages/mdurl-0.1.2.dist-info/RECORD @@ -0,0 +1,18 @@ +mdurl-0.1.2.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +mdurl-0.1.2.dist-info/LICENSE,sha256=fGBd9uKGZ6lgMRjpgnT2SknOPu0NJvzM6VNKNF4O-VU,2338 +mdurl-0.1.2.dist-info/METADATA,sha256=tTsp1I9Jk2cFP9o8gefOJ9JVg4Drv4PmYCOwLrfd0l0,1638 +mdurl-0.1.2.dist-info/RECORD,, +mdurl-0.1.2.dist-info/WHEEL,sha256=4TfKIB_xu-04bc2iKz6_zFt-gEFEEDU_31HGhqzOCE8,81 +mdurl/__init__.py,sha256=1vpE89NyXniIRZNC_4f6BPm3Ub4bPntjfyyhLRR7opU,547 +mdurl/__pycache__/__init__.cpython-310.pyc,, +mdurl/__pycache__/_decode.cpython-310.pyc,, +mdurl/__pycache__/_encode.cpython-310.pyc,, +mdurl/__pycache__/_format.cpython-310.pyc,, +mdurl/__pycache__/_parse.cpython-310.pyc,, +mdurl/__pycache__/_url.cpython-310.pyc,, +mdurl/_decode.py,sha256=3Q_gDQqU__TvDbu7x-b9LjbVl4QWy5g_qFwljcuvN_Y,3004 +mdurl/_encode.py,sha256=goJLUFt1h4rVZNqqm9t15Nw2W-bFXYQEy3aR01ImWvs,2602 +mdurl/_format.py,sha256=xZct0mdePXA0H3kAqxjGtlB5O86G35DAYMGkA44CmB4,626 +mdurl/_parse.py,sha256=ezZSkM2_4NQ2Zx047sEdcJG7NYQRFHiZK7Y8INHFzwY,11374 +mdurl/_url.py,sha256=5kQnRQN2A_G4svLnRzZcG0bfoD9AbBrYDXousDHZ3z0,284 +mdurl/py.typed,sha256=8PjyZ1aVoQpRVvt71muvuq5qE-jTFZkK-GLHkhdebmc,26 diff --git a/Scripts/Lib/site-packages/mdurl-0.1.2.dist-info/WHEEL b/Scripts/Lib/site-packages/mdurl-0.1.2.dist-info/WHEEL new file mode 100644 index 0000000..668ba4d --- /dev/null +++ b/Scripts/Lib/site-packages/mdurl-0.1.2.dist-info/WHEEL @@ -0,0 +1,4 @@ +Wheel-Version: 1.0 +Generator: flit 3.7.1 +Root-Is-Purelib: true +Tag: py3-none-any diff --git a/Scripts/Lib/site-packages/mdurl/__init__.py b/Scripts/Lib/site-packages/mdurl/__init__.py new file mode 100644 index 0000000..cdbb640 --- /dev/null +++ b/Scripts/Lib/site-packages/mdurl/__init__.py @@ -0,0 +1,18 @@ +__all__ = ( + "decode", + "DECODE_DEFAULT_CHARS", + "DECODE_COMPONENT_CHARS", + "encode", + "ENCODE_DEFAULT_CHARS", + "ENCODE_COMPONENT_CHARS", + "format", + "parse", + "URL", +) +__version__ = "0.1.2" # DO NOT EDIT THIS LINE MANUALLY. LET bump2version UTILITY DO IT + +from mdurl._decode import DECODE_COMPONENT_CHARS, DECODE_DEFAULT_CHARS, decode +from mdurl._encode import ENCODE_COMPONENT_CHARS, ENCODE_DEFAULT_CHARS, encode +from mdurl._format import format +from mdurl._parse import url_parse as parse +from mdurl._url import URL diff --git a/Scripts/Lib/site-packages/mdurl/__pycache__/__init__.cpython-310.pyc b/Scripts/Lib/site-packages/mdurl/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..497be38a73025de3ee8b896247e2eb31594c9efe GIT binary patch literal 637 zcmZvY&2AGh5XZgQ?`+ZrDdLR8DF;G9oDf1S$s!Kv1~sXKEK8P&4PDiaSM~Wo+B8G7QEQ@#|QkaSiW+I2VXEE=K0v6s+_&^Ndf%j8>C`NE({cHs$`6M?9 zWgAJE8PChva$e$j`TFF1vBtAECub{je@|!2)3?j2tbXx?ZM&?p`d`+b{*(1VDnVKk zH$-V>!t=Amb$m2^GJX2Pwh1Po3hky`^D5{-;{4c|$bmqmelz(_aqOS5EVrzh+%qZ0 zgma8df$=A%bS<|S!=a$|@)UQC{v~l2?HW>l>fJ@V!o4^g?BDb1s&KVs*1-OrTQOhJ z7oZMY(3#sBK1UV%+-|tsQFQbSFY5P-s4IlmQgV%|-6cb>YI#AfiK6I~=$5GmYbF{_ zT835|RX43hHVf&xWse%Nxg;N%MqczW#`U&tF`hP8CVL?y-EsEPeW7;h5r~R$ZyXHl H90flC=DMZ$ literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/mdurl/__pycache__/_decode.cpython-310.pyc b/Scripts/Lib/site-packages/mdurl/__pycache__/_decode.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4ab62ba89a3020885a7b8a6dc24c4ec7dd5522b8 GIT binary patch literal 2333 zcmbUjO>Y}TbY{Q2c5KHDZqtMc710*lHvOU!q6yHFn1a+gsA+}RI$CXZCiW&9+nF8H zCafi-6mFF&enE2NKY+>&@)!1mgg96n;D~x4yf^Cvrv(mdvTxtKH}Ct+8@CIE9D(Q8 zAAf0nJ3`3MxEOv6SX?KBMhuX9gb_wVvPK!INoK+{9hF`405%ycpV zacpMsEX&Lgc8uj&;gR9wxV22#I2&c9N2W8vjEVICu_aiCJpA3UYVT+4No^ij;xa)g< zlP4Me&=0$eCpzp)EWu@0w4N3Ab)xj5Pto$=G2v^$JBz`81xQRJ`HTo#0yaSwNQ3lf zOmQ_sBxQ7q&XL8Do+h#)1?&~ zTa-ciz69!aW`~RuW~Qrg64Th2A?v4N3hA+G{V%|qXY_PJFZDG*`+x53?Nw}n9w(;o zS`CQOZ$gw_r^8z;(L>%!^tJ%3$sZ9@tZDY?HeK{&`Q&} zRX^k#)Hj+|<%fT`&Spn=v#{k&WriNzIJifG~ z<>^^ii|G}0$sN7jtK#d^tkafDENj=sWeXR9#X{?w`i*=~0v0^d( zu>sjNY85Kb=;r7fr|)}H%a^9!Ui|z@uW}AL&|D6^MpVh9rnAf4mM<|2Nv7io8F*n* z7Q7R>$Z#J75>lypPZQX7-K8Y=(aqZYo$Bn3g=)nRC%}xVfimc14`fy9Q!oj85-ZKp ztAIxsm`#hcOvNeWnQNZ(o6l^)FWg2<={l4SIMu|4S2gn2kf@k!lO587H1u?)^$bZ> z! zFnd)K>!~Da6zcIJ1n0$KJHTg1v3*C<~vER>2_B+-OjO zf3eO+(DJ9GMIR_1(f%Pn@}M;XT6cj87L^~n|L(_tQ&1ijhdj&(R{eOHO$Q)78j15JT`#TzC=^!4p%I!yo ztNr-m+%k-&f2c?iEAoVHTt0~Lr9&|mpNmmvW#sQyDeboCNQ^W8Xiea$6*z$V3h0QH zkcRhD|0e|BBfx!qJOy0@zdij9{`ke3r>>Q%5N%Nz5vO6VI&*Ns`8r-KQ8$!g997UT z(Uva5d&S9mVdyGlj<)nByjPz)V zLHO?3`aXRUxWyMZCqQBnG@R8+idP(xvSFCoKN!=>E({|~roapeoD~8ySh3O(rKr#G zkp_Gf{TUR%nW>~wdBrazITwZ@+_cIXOO-MZ_}et6@~f^%#@ot?k^@qDdX8_?4mZ`5^%ekgz;yckr;RBS_e#v4tj hiE7WRwOKdh?_#e-WdKEj*9%@W23#~by;v?l5Z~SV<8yLO+{z>|v@{I_aQ~!zKtgImXc{LFsdZ89@^CmhU2eDb$!DLl zcdpXtjEYjeKpugI_7U+#_y}l0;-TUp;v4jVFmva&p=a;x%)xLTJ1X%mcy+ry=Q6hf?HO$oiV2WxN*ZeZw*OrepRCP9f9jq17)s zQuo44-R~ zTJ;!xs!=uV4F*x-B|$WZLA07;ZzKl3sA;O?#eNXDp-2)TV`cK76C|-JcEx_qg1xaf ziV|^9xq0o28@E3C{PKrauDUB1zq|DDC$$d_im&;D3J?6`+c=R|7Q-OUxSbtk!%h(w zuJ8F>p$cN(4@X=m4eXRDMKY3um!(%8;p`osqTiEGhu(s=f#LiSn3N>s5s_8`T$MCQ zhm2`TQCcMl<@Au&$)Klllei7D+HsJGt3%K4c^whA`+OwBYitSzleV$}CTZsk`n@=HOKwAK<$*uV;0qPmdV6EZU8~tYl(g;?79<>GR_iR|Z z2zx#NYdtMg$;9f-=v2>;KY`VBk7hl}M$nQW-{zCExihmMvP+Z>JTD}ecdddg^7F@C(=;9hrN!Mm{SC=6PU}z z+eb3vBGsFBB*BlC=7+4y#*`Yt}nBg zW)VObBtBgkc*=&N4};y6p(kS@3#h-0qyogLY&JIT)i>Sx=GOXyJ1uwPtM&U$XKte1 zxOeyKdyUP;M4w-Ov#xvU9Rh#wO2`g+DwcSW$t*{#)qccBp;$xYW5i;H*sKEKgs?(j PZ8l}F^X!DtvnT%nxCzMs literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/mdurl/__pycache__/_format.cpython-310.pyc b/Scripts/Lib/site-packages/mdurl/__pycache__/_format.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..47ce539cc32973c8cefeec335a5d02786855d80b GIT binary patch literal 767 zcmYjP&2G~`5Z=GoX_^Ft3aP|}YYsF$@FP_SMMM=vlz?bK!Wdagc3Y>lz1Hj+(W=~d z8SXp;&)_TKfOvzPm^Cf(tTdW$cIMmJnK6SwkD&bd@hb&J$WIU2!Vydfq4oh9iYS_q zoJN#-n`JEL5vN3R*g(uPk$0jF-mR;yTKg)ZK=lsDxc}QTj%mFvi^4eRmZq=>2Z!%o z?IyFm-P!YJ^QY+GZ(i@$yn+k_Ce#6FS3yy8>tI1W$E9GQ#1}U6g?&du(J%CZUXT+~ zhKfEUmx#hO#R}T;Fu09TOz{!f~tuzeSD`c)~Q5tXK zO2ymvlKtgJkZ=|!hsI!+jezG*FJeQ#27t%TncMf%4X42{SU;)e0*%-58yL9?) zDHo^mSlc*PIIu}_WFVJrt30cNf94v#YBx~{I%GHKCcVx!*pO|qA@xTv7~$o7EShqg zi9>)M2vLp0x|bwJ70zELiQi28kUJ}v#WDEFN4@6Rt>kK18nWi6Ep^MMbsyzMRhfS5 QH^};J?~^_gtWSshFHCQ}i~s-t literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/mdurl/__pycache__/_parse.cpython-310.pyc b/Scripts/Lib/site-packages/mdurl/__pycache__/_parse.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3478ae25ed6f369e3c907e95ce16b128c9c15575 GIT binary patch literal 4123 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 Mx49AR^U=ls0U3z(asU7T literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/mdurl/__pycache__/_url.cpython-310.pyc b/Scripts/Lib/site-packages/mdurl/__pycache__/_url.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e60fffa4629d47ae9154db71fc94a1c1e822b2b1 GIT binary patch literal 615 zcmYjP&2H2%5Vm7)8q!o1h$Dx+t^_RyPE}P^T)31R==Ks>vfS7-QJpyTkJPQW!OQeb z`V77z4v074#CRKtohb8tUuNu?v11MnN(A=j=~wp#BlI(gU85k*5yI{*5Q!w#Xuu7| ziDx<+NJB9Cgd~yl2a;5g@1&t}afw#>@3hYf$9*x5#tYw@(Sa;$F(|nXlU8lY*fj#; zJXNcKDAZtyn(PXyDk8H}r~*gYeuk3QIhDi&r*kx<`$vXzCnCrcIH;MLE+$hHe8LU3$;Etw^P1l*j z>t2B?QGs`#3UA}}YLTY+8ho%Yh0P!}=6*Bvw9We8`!h=$#^UsO_A~gEkV}Os IRAsNpKiof`)c^nh literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/mdurl/_decode.py b/Scripts/Lib/site-packages/mdurl/_decode.py new file mode 100644 index 0000000..9b50a2d --- /dev/null +++ b/Scripts/Lib/site-packages/mdurl/_decode.py @@ -0,0 +1,104 @@ +from __future__ import annotations + +from collections.abc import Sequence +import functools +import re + +DECODE_DEFAULT_CHARS = ";/?:@&=+$,#" +DECODE_COMPONENT_CHARS = "" + +decode_cache: dict[str, list[str]] = {} + + +def get_decode_cache(exclude: str) -> Sequence[str]: + if exclude in decode_cache: + return decode_cache[exclude] + + cache: list[str] = [] + decode_cache[exclude] = cache + + for i in range(128): + ch = chr(i) + cache.append(ch) + + for i in range(len(exclude)): + ch_code = ord(exclude[i]) + cache[ch_code] = "%" + ("0" + hex(ch_code)[2:].upper())[-2:] + + return cache + + +# Decode percent-encoded string. +# +def decode(string: str, exclude: str = DECODE_DEFAULT_CHARS) -> str: + cache = get_decode_cache(exclude) + repl_func = functools.partial(repl_func_with_cache, cache=cache) + return re.sub(r"(%[a-f0-9]{2})+", repl_func, string, flags=re.IGNORECASE) + + +def repl_func_with_cache(match: re.Match, cache: Sequence[str]) -> str: + seq = match.group() + result = "" + + i = 0 + l = len(seq) # noqa: E741 + while i < l: + b1 = int(seq[i + 1 : i + 3], 16) + + if b1 < 0x80: + result += cache[b1] + i += 3 # emulate JS for loop statement3 + continue + + if (b1 & 0xE0) == 0xC0 and (i + 3 < l): + # 110xxxxx 10xxxxxx + b2 = int(seq[i + 4 : i + 6], 16) + + if (b2 & 0xC0) == 0x80: + all_bytes = bytes((b1, b2)) + try: + result += all_bytes.decode() + except UnicodeDecodeError: + result += "\ufffd" * 2 + + i += 3 + i += 3 # emulate JS for loop statement3 + continue + + if (b1 & 0xF0) == 0xE0 and (i + 6 < l): + # 1110xxxx 10xxxxxx 10xxxxxx + b2 = int(seq[i + 4 : i + 6], 16) + b3 = int(seq[i + 7 : i + 9], 16) + + if (b2 & 0xC0) == 0x80 and (b3 & 0xC0) == 0x80: + all_bytes = bytes((b1, b2, b3)) + try: + result += all_bytes.decode() + except UnicodeDecodeError: + result += "\ufffd" * 3 + + i += 6 + i += 3 # emulate JS for loop statement3 + continue + + if (b1 & 0xF8) == 0xF0 and (i + 9 < l): + # 111110xx 10xxxxxx 10xxxxxx 10xxxxxx + b2 = int(seq[i + 4 : i + 6], 16) + b3 = int(seq[i + 7 : i + 9], 16) + b4 = int(seq[i + 10 : i + 12], 16) + + if (b2 & 0xC0) == 0x80 and (b3 & 0xC0) == 0x80 and (b4 & 0xC0) == 0x80: + all_bytes = bytes((b1, b2, b3, b4)) + try: + result += all_bytes.decode() + except UnicodeDecodeError: + result += "\ufffd" * 4 + + i += 9 + i += 3 # emulate JS for loop statement3 + continue + + result += "\ufffd" + i += 3 # emulate JS for loop statement3 + + return result diff --git a/Scripts/Lib/site-packages/mdurl/_encode.py b/Scripts/Lib/site-packages/mdurl/_encode.py new file mode 100644 index 0000000..bc2e5b9 --- /dev/null +++ b/Scripts/Lib/site-packages/mdurl/_encode.py @@ -0,0 +1,85 @@ +from __future__ import annotations + +from collections.abc import Sequence +from string import ascii_letters, digits, hexdigits +from urllib.parse import quote as encode_uri_component + +ASCII_LETTERS_AND_DIGITS = ascii_letters + digits + +ENCODE_DEFAULT_CHARS = ";/?:@&=+$,-_.!~*'()#" +ENCODE_COMPONENT_CHARS = "-_.!~*'()" + +encode_cache: dict[str, list[str]] = {} + + +# Create a lookup array where anything but characters in `chars` string +# and alphanumeric chars is percent-encoded. +def get_encode_cache(exclude: str) -> Sequence[str]: + if exclude in encode_cache: + return encode_cache[exclude] + + cache: list[str] = [] + encode_cache[exclude] = cache + + for i in range(128): + ch = chr(i) + + if ch in ASCII_LETTERS_AND_DIGITS: + # always allow unencoded alphanumeric characters + cache.append(ch) + else: + cache.append("%" + ("0" + hex(i)[2:].upper())[-2:]) + + for i in range(len(exclude)): + cache[ord(exclude[i])] = exclude[i] + + return cache + + +# Encode unsafe characters with percent-encoding, skipping already +# encoded sequences. +# +# - string - string to encode +# - exclude - list of characters to ignore (in addition to a-zA-Z0-9) +# - keepEscaped - don't encode '%' in a correct escape sequence (default: true) +def encode( + string: str, exclude: str = ENCODE_DEFAULT_CHARS, *, keep_escaped: bool = True +) -> str: + result = "" + + cache = get_encode_cache(exclude) + + l = len(string) # noqa: E741 + i = 0 + while i < l: + code = ord(string[i]) + + # % + if keep_escaped and code == 0x25 and i + 2 < l: + if all(c in hexdigits for c in string[i + 1 : i + 3]): + result += string[i : i + 3] + i += 2 + i += 1 # JS for loop statement3 + continue + + if code < 128: + result += cache[code] + i += 1 # JS for loop statement3 + continue + + if code >= 0xD800 and code <= 0xDFFF: + if code >= 0xD800 and code <= 0xDBFF and i + 1 < l: + next_code = ord(string[i + 1]) + if next_code >= 0xDC00 and next_code <= 0xDFFF: + result += encode_uri_component(string[i] + string[i + 1]) + i += 1 + i += 1 # JS for loop statement3 + continue + result += "%EF%BF%BD" + i += 1 # JS for loop statement3 + continue + + result += encode_uri_component(string[i]) + i += 1 # JS for loop statement3 + + return result diff --git a/Scripts/Lib/site-packages/mdurl/_format.py b/Scripts/Lib/site-packages/mdurl/_format.py new file mode 100644 index 0000000..12524ca --- /dev/null +++ b/Scripts/Lib/site-packages/mdurl/_format.py @@ -0,0 +1,27 @@ +from __future__ import annotations + +from typing import TYPE_CHECKING + +if TYPE_CHECKING: + from mdurl._url import URL + + +def format(url: URL) -> str: # noqa: A001 + result = "" + + result += url.protocol or "" + result += "//" if url.slashes else "" + result += url.auth + "@" if url.auth else "" + + if url.hostname and ":" in url.hostname: + # ipv6 address + result += "[" + url.hostname + "]" + else: + result += url.hostname or "" + + result += ":" + url.port if url.port else "" + result += url.pathname or "" + result += url.search or "" + result += url.hash or "" + + return result diff --git a/Scripts/Lib/site-packages/mdurl/_parse.py b/Scripts/Lib/site-packages/mdurl/_parse.py new file mode 100644 index 0000000..ffeeac7 --- /dev/null +++ b/Scripts/Lib/site-packages/mdurl/_parse.py @@ -0,0 +1,304 @@ +# Copyright Joyent, Inc. and other Node contributors. +# +# 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. + + +# Changes from joyent/node: +# +# 1. No leading slash in paths, +# e.g. in `url.parse('http://foo?bar')` pathname is ``, not `/` +# +# 2. Backslashes are not replaced with slashes, +# so `http:\\example.org\` is treated like a relative path +# +# 3. Trailing colon is treated like a part of the path, +# i.e. in `http://example.org:foo` pathname is `:foo` +# +# 4. Nothing is URL-encoded in the resulting object, +# (in joyent/node some chars in auth and paths are encoded) +# +# 5. `url.parse()` does not have `parseQueryString` argument +# +# 6. Removed extraneous result properties: `host`, `path`, `query`, etc., +# which can be constructed using other parts of the url. + +from __future__ import annotations + +from collections import defaultdict +import re + +from mdurl._url import URL + +# Reference: RFC 3986, RFC 1808, RFC 2396 + +# define these here so at least they only have to be +# compiled once on the first module load. +PROTOCOL_PATTERN = re.compile(r"^([a-z0-9.+-]+:)", flags=re.IGNORECASE) +PORT_PATTERN = re.compile(r":[0-9]*$") + +# Special case for a simple path URL +SIMPLE_PATH_PATTERN = re.compile(r"^(//?(?!/)[^?\s]*)(\?[^\s]*)?$") + +# RFC 2396: characters reserved for delimiting URLs. +# We actually just auto-escape these. +DELIMS = ("<", ">", '"', "`", " ", "\r", "\n", "\t") + +# RFC 2396: characters not allowed for various reasons. +UNWISE = ("{", "}", "|", "\\", "^", "`") + DELIMS + +# Allowed by RFCs, but cause of XSS attacks. Always escape these. +AUTO_ESCAPE = ("'",) + UNWISE +# Characters that are never ever allowed in a hostname. +# Note that any invalid chars are also handled, but these +# are the ones that are *expected* to be seen, so we fast-path +# them. +NON_HOST_CHARS = ("%", "/", "?", ";", "#") + AUTO_ESCAPE +HOST_ENDING_CHARS = ("/", "?", "#") +HOSTNAME_MAX_LEN = 255 +HOSTNAME_PART_PATTERN = re.compile(r"^[+a-z0-9A-Z_-]{0,63}$") +HOSTNAME_PART_START = re.compile(r"^([+a-z0-9A-Z_-]{0,63})(.*)$") +# protocols that can allow "unsafe" and "unwise" chars. + +# protocols that never have a hostname. +HOSTLESS_PROTOCOL = defaultdict( + bool, + { + "javascript": True, + "javascript:": True, + }, +) +# protocols that always contain a // bit. +SLASHED_PROTOCOL = defaultdict( + bool, + { + "http": True, + "https": True, + "ftp": True, + "gopher": True, + "file": True, + "http:": True, + "https:": True, + "ftp:": True, + "gopher:": True, + "file:": True, + }, +) + + +class MutableURL: + def __init__(self) -> None: + self.protocol: str | None = None + self.slashes: bool = False + self.auth: str | None = None + self.port: str | None = None + self.hostname: str | None = None + self.hash: str | None = None + self.search: str | None = None + self.pathname: str | None = None + + def parse(self, url: str, slashes_denote_host: bool) -> "MutableURL": + lower_proto = "" + slashes = False + rest = url + + # trim before proceeding. + # This is to support parse stuff like " http://foo.com \n" + rest = rest.strip() + + if not slashes_denote_host and len(url.split("#")) == 1: + # Try fast path regexp + simple_path = SIMPLE_PATH_PATTERN.match(rest) + if simple_path: + self.pathname = simple_path.group(1) + if simple_path.group(2): + self.search = simple_path.group(2) + return self + + proto = "" + proto_match = PROTOCOL_PATTERN.match(rest) + if proto_match: + proto = proto_match.group() + lower_proto = proto.lower() + self.protocol = proto + rest = rest[len(proto) :] + + # figure out if it's got a host + # user@server is *always* interpreted as a hostname, and url + # resolution will treat //foo/bar as host=foo,path=bar because that's + # how the browser resolves relative URLs. + if slashes_denote_host or proto or re.search(r"^//[^@/]+@[^@/]+", rest): + slashes = rest.startswith("//") + if slashes and not (proto and HOSTLESS_PROTOCOL[proto]): + rest = rest[2:] + self.slashes = True + + if not HOSTLESS_PROTOCOL[proto] and ( + slashes or (proto and not SLASHED_PROTOCOL[proto]) + ): + + # there's a hostname. + # the first instance of /, ?, ;, or # ends the host. + # + # If there is an @ in the hostname, then non-host chars *are* allowed + # to the left of the last @ sign, unless some host-ending character + # comes *before* the @-sign. + # URLs are obnoxious. + # + # ex: + # http://a@b@c/ => user:a@b host:c + # http://a@b?@c => user:a host:c path:/?@c + + # v0.12 TODO(isaacs): This is not quite how Chrome does things. + # Review our test case against browsers more comprehensively. + + # find the first instance of any hostEndingChars + host_end = -1 + for i in range(len(HOST_ENDING_CHARS)): + hec = rest.find(HOST_ENDING_CHARS[i]) + if hec != -1 and (host_end == -1 or hec < host_end): + host_end = hec + + # at this point, either we have an explicit point where the + # auth portion cannot go past, or the last @ char is the decider. + if host_end == -1: + # atSign can be anywhere. + at_sign = rest.rfind("@") + else: + # atSign must be in auth portion. + # http://a@b/c@d => host:b auth:a path:/c@d + at_sign = rest.rfind("@", 0, host_end + 1) + + # Now we have a portion which is definitely the auth. + # Pull that off. + if at_sign != -1: + auth = rest[:at_sign] + rest = rest[at_sign + 1 :] + self.auth = auth + + # the host is the remaining to the left of the first non-host char + host_end = -1 + for i in range(len(NON_HOST_CHARS)): + hec = rest.find(NON_HOST_CHARS[i]) + if hec != -1 and (host_end == -1 or hec < host_end): + host_end = hec + # if we still have not hit it, then the entire thing is a host. + if host_end == -1: + host_end = len(rest) + + if host_end > 0 and rest[host_end - 1] == ":": + host_end -= 1 + host = rest[:host_end] + rest = rest[host_end:] + + # pull out port. + self.parse_host(host) + + # we've indicated that there is a hostname, + # so even if it's empty, it has to be present. + self.hostname = self.hostname or "" + + # if hostname begins with [ and ends with ] + # assume that it's an IPv6 address. + ipv6_hostname = self.hostname.startswith("[") and self.hostname.endswith( + "]" + ) + + # validate a little. + if not ipv6_hostname: + hostparts = self.hostname.split(".") + l = len(hostparts) # noqa: E741 + i = 0 + while i < l: + part = hostparts[i] + if not part: + i += 1 # emulate statement3 in JS for loop + continue + if not HOSTNAME_PART_PATTERN.search(part): + newpart = "" + k = len(part) + j = 0 + while j < k: + if ord(part[j]) > 127: + # we replace non-ASCII char with a temporary placeholder + # we need this to make sure size of hostname is not + # broken by replacing non-ASCII by nothing + newpart += "x" + else: + newpart += part[j] + j += 1 # emulate statement3 in JS for loop + + # we test again with ASCII char only + if not HOSTNAME_PART_PATTERN.search(newpart): + valid_parts = hostparts[:i] + not_host = hostparts[i + 1 :] + bit = HOSTNAME_PART_START.search(part) + if bit: + valid_parts.append(bit.group(1)) + not_host.insert(0, bit.group(2)) + if not_host: + rest = ".".join(not_host) + rest + self.hostname = ".".join(valid_parts) + break + i += 1 # emulate statement3 in JS for loop + + if len(self.hostname) > HOSTNAME_MAX_LEN: + self.hostname = "" + + # strip [ and ] from the hostname + # the host field still retains them, though + if ipv6_hostname: + self.hostname = self.hostname[1:-1] + + # chop off from the tail first. + hash = rest.find("#") # noqa: A001 + if hash != -1: + # got a fragment string. + self.hash = rest[hash:] + rest = rest[:hash] + qm = rest.find("?") + if qm != -1: + self.search = rest[qm:] + rest = rest[:qm] + if rest: + self.pathname = rest + if SLASHED_PROTOCOL[lower_proto] and self.hostname and not self.pathname: + self.pathname = "" + + return self + + def parse_host(self, host: str) -> None: + port_match = PORT_PATTERN.search(host) + if port_match: + port = port_match.group() + if port != ":": + self.port = port[1:] + host = host[: -len(port)] + if host: + self.hostname = host + + +def url_parse(url: URL | str, *, slashes_denote_host: bool = False) -> URL: + if isinstance(url, URL): + return url + u = MutableURL() + u.parse(url, slashes_denote_host) + return URL( + u.protocol, u.slashes, u.auth, u.port, u.hostname, u.hash, u.search, u.pathname + ) diff --git a/Scripts/Lib/site-packages/mdurl/_url.py b/Scripts/Lib/site-packages/mdurl/_url.py new file mode 100644 index 0000000..f866e7a --- /dev/null +++ b/Scripts/Lib/site-packages/mdurl/_url.py @@ -0,0 +1,14 @@ +from __future__ import annotations + +from typing import NamedTuple + + +class URL(NamedTuple): + protocol: str | None + slashes: bool + auth: str | None + port: str | None + hostname: str | None + hash: str | None # noqa: A003 + search: str | None + pathname: str | None diff --git a/Scripts/Lib/site-packages/mdurl/py.typed b/Scripts/Lib/site-packages/mdurl/py.typed new file mode 100644 index 0000000..7632ecf --- /dev/null +++ b/Scripts/Lib/site-packages/mdurl/py.typed @@ -0,0 +1 @@ +# Marker file for PEP 561 diff --git a/Scripts/Lib/site-packages/pip-21.2.3.dist-info/INSTALLER b/Scripts/Lib/site-packages/pip-21.2.3.dist-info/INSTALLER new file mode 100644 index 0000000..a1b589e --- /dev/null +++ b/Scripts/Lib/site-packages/pip-21.2.3.dist-info/INSTALLER @@ -0,0 +1 @@ +pip diff --git a/Scripts/Lib/site-packages/pip-21.2.3.dist-info/LICENSE.txt b/Scripts/Lib/site-packages/pip-21.2.3.dist-info/LICENSE.txt new file mode 100644 index 0000000..00addc2 --- /dev/null +++ b/Scripts/Lib/site-packages/pip-21.2.3.dist-info/LICENSE.txt @@ -0,0 +1,20 @@ +Copyright (c) 2008-2021 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/Scripts/Lib/site-packages/pip-21.2.3.dist-info/METADATA b/Scripts/Lib/site-packages/pip-21.2.3.dist-info/METADATA new file mode 100644 index 0000000..58e30d9 --- /dev/null +++ b/Scripts/Lib/site-packages/pip-21.2.3.dist-info/METADATA @@ -0,0 +1,92 @@ +Metadata-Version: 2.1 +Name: pip +Version: 21.2.3 +Summary: The PyPA recommended tool for installing Python packages. +Home-page: https://pip.pypa.io/ +Author: The pip developers +Author-email: distutils-sig@python.org +License: MIT +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/ +Platform: UNKNOWN +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.6 +Classifier: Programming Language :: Python :: 3.7 +Classifier: Programming Language :: Python :: 3.8 +Classifier: Programming Language :: Python :: 3.9 +Classifier: Programming Language :: Python :: Implementation :: CPython +Classifier: Programming Language :: Python :: Implementation :: PyPy +Requires-Python: >=3.6 +License-File: LICENSE.txt + +pip - The Python Package Installer +================================== + +.. image:: https://img.shields.io/pypi/v/pip.svg + :target: https://pypi.org/project/pip/ + +.. image:: https://readthedocs.org/projects/pip/badge/?version=latest + :target: https://pip.pypa.io/en/latest + +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`_ + +In pip 20.3, we've `made a big improvement to the heart of pip`_; `learn more`_. We want your input, so `sign up for our user experience research studies`_ to help us do it right. + +**Note**: pip 21.0, in January 2021, removed Python 2 support, per pip's `Python 2 support policy`_. Please migrate to Python 3. + +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 mailing list`_ +* `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 +.. _made a big improvement to the heart of pip: https://pyfound.blogspot.com/2020/11/pip-20-3-new-resolver.html +.. _learn more: https://pip.pypa.io/en/latest/user_guide/#changes-to-the-pip-dependency-resolver-in-20-3-2020 +.. _sign up for our user experience research studies: https://pyfound.blogspot.com/2020/03/new-pip-resolver-to-roll-out-this-year.html +.. _Python 2 support policy: https://pip.pypa.io/en/latest/development/release-process/#python-2-support +.. _Issue tracking: https://github.com/pypa/pip/issues +.. _Discourse channel: https://discuss.python.org/c/packaging +.. _Development mailing list: https://mail.python.org/mailman3/lists/distutils-sig.python.org/ +.. _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/Scripts/Lib/site-packages/pip-21.2.3.dist-info/RECORD b/Scripts/Lib/site-packages/pip-21.2.3.dist-info/RECORD new file mode 100644 index 0000000..05cd1d3 --- /dev/null +++ b/Scripts/Lib/site-packages/pip-21.2.3.dist-info/RECORD @@ -0,0 +1,795 @@ +../../Scripts/pip.exe,sha256=zSNN793Q9sPH3re805pJ2d3f698jz0XHnKuVstoTAKQ,106401 +../../Scripts/pip3.10.exe,sha256=zSNN793Q9sPH3re805pJ2d3f698jz0XHnKuVstoTAKQ,106401 +../../Scripts/pip3.exe,sha256=zSNN793Q9sPH3re805pJ2d3f698jz0XHnKuVstoTAKQ,106401 +pip-21.2.3.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +pip-21.2.3.dist-info/LICENSE.txt,sha256=gJDJthjxG8mDPXZg96yUjnIt4bce2hULfec5mrfNnmI,1110 +pip-21.2.3.dist-info/METADATA,sha256=BA4M-MqDkwwNoSPm1cVEoleu3sEr_iN4HbpM3cjr6rI,4165 +pip-21.2.3.dist-info/RECORD,, +pip-21.2.3.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip-21.2.3.dist-info/WHEEL,sha256=OqRkF0eY5GHssMorFjlbTIq072vpHpF60fIQA6lS9xA,92 +pip-21.2.3.dist-info/entry_points.txt,sha256=HtfDOwpUlr9s73jqLQ6wF9V0_0qvUXJwCBz7Vwx0Ue0,125 +pip-21.2.3.dist-info/top_level.txt,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +pip/__init__.py,sha256=qXU49Q5cd1uydhWo2AnReaOxEtM0o8t5EP9EvhtRCN8,370 +pip/__main__.py,sha256=8mTMucDffyV05KR_fXWM2p1JQEnHPu1-CWjbthYHYis,1229 +pip/__pycache__/__init__.cpython-310.pyc,, +pip/__pycache__/__main__.cpython-310.pyc,, +pip/_internal/__init__.py,sha256=OLxitHt9NAlSaObDjAlRSYUkAftIjV9sUpv1yIZDO4E,592 +pip/_internal/__pycache__/__init__.cpython-310.pyc,, +pip/_internal/__pycache__/build_env.cpython-310.pyc,, +pip/_internal/__pycache__/cache.cpython-310.pyc,, +pip/_internal/__pycache__/configuration.cpython-310.pyc,, +pip/_internal/__pycache__/exceptions.cpython-310.pyc,, +pip/_internal/__pycache__/main.cpython-310.pyc,, +pip/_internal/__pycache__/pyproject.cpython-310.pyc,, +pip/_internal/__pycache__/self_outdated_check.cpython-310.pyc,, +pip/_internal/__pycache__/wheel_builder.cpython-310.pyc,, +pip/_internal/build_env.py,sha256=YMIinJTDdKm_x5JC8IjJZp-_Zw42kBm6fkiWprBi-Hk,10415 +pip/_internal/cache.py,sha256=bjyh33eOAq6kX1kPk84Oxb_JXazpP6izVZipJLq0eJI,10245 +pip/_internal/cli/__init__.py,sha256=9gMw_A_StJXzDh2Rhxil6bd8tFP-ZR719Q1pINHAw5I,136 +pip/_internal/cli/__pycache__/__init__.cpython-310.pyc,, +pip/_internal/cli/__pycache__/autocompletion.cpython-310.pyc,, +pip/_internal/cli/__pycache__/base_command.cpython-310.pyc,, +pip/_internal/cli/__pycache__/cmdoptions.cpython-310.pyc,, +pip/_internal/cli/__pycache__/command_context.cpython-310.pyc,, +pip/_internal/cli/__pycache__/main.cpython-310.pyc,, +pip/_internal/cli/__pycache__/main_parser.cpython-310.pyc,, +pip/_internal/cli/__pycache__/parser.cpython-310.pyc,, +pip/_internal/cli/__pycache__/progress_bars.cpython-310.pyc,, +pip/_internal/cli/__pycache__/req_command.cpython-310.pyc,, +pip/_internal/cli/__pycache__/spinners.cpython-310.pyc,, +pip/_internal/cli/__pycache__/status_codes.cpython-310.pyc,, +pip/_internal/cli/autocompletion.py,sha256=_d6Ugrj-KQOCoDgDscSr_238-RcwedXzpLmW8F_L_uc,6562 +pip/_internal/cli/base_command.py,sha256=mZH7AMA9tBoiYEysFx9l3Pe_h23mnNZy8K8M_ZhsRSs,7810 +pip/_internal/cli/cmdoptions.py,sha256=Kalu7Z2ZAvySgOOIo4e_Ah3Vv8HDmGhLQlkDysI-ihw,29292 +pip/_internal/cli/command_context.py,sha256=ocjEqsuP6pFF98N_ljRyLToYLm5fBgMaZicVjMy_f0Y,787 +pip/_internal/cli/main.py,sha256=D6DAuHgfr4na5SuEbtLyx1FlZhcGHIB9BltXsjrrKsA,2542 +pip/_internal/cli/main_parser.py,sha256=rusU-JYOLpcJ8cFXWiPvuDoNpTptRlndY3WyBh2UXq4,2701 +pip/_internal/cli/parser.py,sha256=0eTD4_7ucvjv_VnZajerOhzHUAIOju5KDlQM0rv5VP4,11080 +pip/_internal/cli/progress_bars.py,sha256=-bhkKHcjsZ0tWdf-DH9eGHsJuGedVPih8E0vV2_rJXg,8550 +pip/_internal/cli/req_command.py,sha256=_9w-fMnI0j8bey7mryr-iLxjCoUT_jIU3lkNp2PQJVU,17001 +pip/_internal/cli/spinners.py,sha256=rQJtl8c9JiMpOCsOk-YRFYtWdhiFoFectJuryMM-jn4,5233 +pip/_internal/cli/status_codes.py,sha256=1xaB32lG8Nf1nMl_6e0yy5z2Iyvv81OTUpuHwXgGsfU,122 +pip/_internal/commands/__init__.py,sha256=LoscneenHTO4OCqGIah4KtHyPNURU6F7bUeGRjbcr_k,3888 +pip/_internal/commands/__pycache__/__init__.cpython-310.pyc,, +pip/_internal/commands/__pycache__/cache.cpython-310.pyc,, +pip/_internal/commands/__pycache__/check.cpython-310.pyc,, +pip/_internal/commands/__pycache__/completion.cpython-310.pyc,, +pip/_internal/commands/__pycache__/configuration.cpython-310.pyc,, +pip/_internal/commands/__pycache__/debug.cpython-310.pyc,, +pip/_internal/commands/__pycache__/download.cpython-310.pyc,, +pip/_internal/commands/__pycache__/freeze.cpython-310.pyc,, +pip/_internal/commands/__pycache__/hash.cpython-310.pyc,, +pip/_internal/commands/__pycache__/help.cpython-310.pyc,, +pip/_internal/commands/__pycache__/index.cpython-310.pyc,, +pip/_internal/commands/__pycache__/install.cpython-310.pyc,, +pip/_internal/commands/__pycache__/list.cpython-310.pyc,, +pip/_internal/commands/__pycache__/search.cpython-310.pyc,, +pip/_internal/commands/__pycache__/show.cpython-310.pyc,, +pip/_internal/commands/__pycache__/uninstall.cpython-310.pyc,, +pip/_internal/commands/__pycache__/wheel.cpython-310.pyc,, +pip/_internal/commands/cache.py,sha256=XqHqGkiyZ6A0Vf0oIGJhWiNY4k9JIC0nlNmooiaCtuo,7453 +pip/_internal/commands/check.py,sha256=FZ7IHeRkwnWkwgdaMI1AjFPcI4xrPK4_4jODp8aDyiA,1617 +pip/_internal/commands/completion.py,sha256=RXEru4uYaBfUUtZJ2bLE7s6FJUe9t1BAVSUQ8wPzW0o,3005 +pip/_internal/commands/configuration.py,sha256=1Fr4QLwdu1OcBL_FZQh6uY3i7i38qI70OJGG-JhoUuI,9228 +pip/_internal/commands/debug.py,sha256=Bb2Lxzn7XEQRYgBYOZbuK3EYeLphKHo8Gubg_EZ6JnU,6851 +pip/_internal/commands/download.py,sha256=sT3gInhPvMyhuZ-rVBf1OlpLzh52J0hStM57_CPdvCA,5088 +pip/_internal/commands/freeze.py,sha256=xzVjiTJT5DBJceJPNnAYyCF4oGITyuSpfsfkSKR70Fg,2869 +pip/_internal/commands/hash.py,sha256=XoLZ3Hx_b72asRLGOe1WXSvJ6ClwSFhn-aFPgbcB9Zk,1719 +pip/_internal/commands/help.py,sha256=zV8LmdIbJOnVOIZTz1TwlNWQZQLEWZnJGwXSSh9SSEw,1173 +pip/_internal/commands/index.py,sha256=qTchSIS-zCEiJCrZ9X-o5_93kMYCSVZDRTmeY_fhOOE,4920 +pip/_internal/commands/install.py,sha256=oj_4a73RMGXgmFQV1jUZEZTnvnZw5kkT6pA3naYj3PA,28243 +pip/_internal/commands/list.py,sha256=1K-dhUMEs8akjPE16n5Eq9GsalONKkS7bvWwSCNzQe8,12090 +pip/_internal/commands/search.py,sha256=Dtebo30wNJJ0Blr5MkmiET1wIuNioxzoH8vR82ma7Tc,5707 +pip/_internal/commands/show.py,sha256=G-ak6SZS-H2MJqQI89D2x4TLd8l9amVYhtaa5dhCFeE,8208 +pip/_internal/commands/uninstall.py,sha256=sTUTiJSTp0NKeFHUBJHD3f-fSVPGFjBY6go_DhpvC0Q,3580 +pip/_internal/commands/wheel.py,sha256=dIRE7v6g9HTpTw0nsOG2HHoG0uvwrWV5-xyp0kuJdhU,6365 +pip/_internal/configuration.py,sha256=g_C1ByxxCGrYfY26B-X8v-3mbUwzlXdj9EKwDs-0kH0,14128 +pip/_internal/distributions/__init__.py,sha256=99Rzk077wS5wGire_mchcAjtJG9vbwTLPXZKLWrh_D4,879 +pip/_internal/distributions/__pycache__/__init__.cpython-310.pyc,, +pip/_internal/distributions/__pycache__/base.cpython-310.pyc,, +pip/_internal/distributions/__pycache__/installed.cpython-310.pyc,, +pip/_internal/distributions/__pycache__/sdist.cpython-310.pyc,, +pip/_internal/distributions/__pycache__/wheel.cpython-310.pyc,, +pip/_internal/distributions/base.py,sha256=VCEqCFm36o5SSpu3esHmM055Wv5TOxGFLXtxpY8m-L8,1244 +pip/_internal/distributions/installed.py,sha256=UZU2Q4-jcAaPexNZzqk5YXhols1jTjyh4xAA0ZQ_A8g,667 +pip/_internal/distributions/sdist.py,sha256=5OpYaS51ll8tqsZC-h86ij62RQkid3YZEOqUXCRq8TA,3957 +pip/_internal/distributions/wheel.py,sha256=8lzZqqpA5oUUHANOZlf0qcKLIunsJ3K821VP29hLYdg,1217 +pip/_internal/exceptions.py,sha256=yiMEmKFvLIPNGaLCQxxtnacfNhUisQayQ4XiqPuRLZU,13567 +pip/_internal/index/__init__.py,sha256=x0ifDyFChwwQC4V_eHBFF1fvzLwbXRYG3nq15-Axy24,32 +pip/_internal/index/__pycache__/__init__.cpython-310.pyc,, +pip/_internal/index/__pycache__/collector.cpython-310.pyc,, +pip/_internal/index/__pycache__/package_finder.cpython-310.pyc,, +pip/_internal/index/__pycache__/sources.cpython-310.pyc,, +pip/_internal/index/collector.py,sha256=pB-NFZkI-KjQnhTBo7JzArphtu6OVJ52WVQlFQrSbFU,18179 +pip/_internal/index/package_finder.py,sha256=k7qar-7Lw778ODq0iB-ETXjof-MUhRh4YHXsVNjl6eo,37120 +pip/_internal/index/sources.py,sha256=SW2LlD5eAF2Rj74TbpEUNjADU9UH-K76oqgJFNtDlWc,6781 +pip/_internal/locations/__init__.py,sha256=bReITFXFSX786ngLRJhXhsb1npYOw8YbpOuOngrQUik,11584 +pip/_internal/locations/__pycache__/__init__.cpython-310.pyc,, +pip/_internal/locations/__pycache__/_distutils.cpython-310.pyc,, +pip/_internal/locations/__pycache__/_sysconfig.cpython-310.pyc,, +pip/_internal/locations/__pycache__/base.cpython-310.pyc,, +pip/_internal/locations/_distutils.py,sha256=OUPuNiGJP2vmiYgwdAR-ZQryj_2yANs9DebSm4afDZU,6040 +pip/_internal/locations/_sysconfig.py,sha256=sJJD4PQujUcLAaKiOeXYsILmQb0-hjznP79PzKPiA4Q,8137 +pip/_internal/locations/base.py,sha256=KMpxtATY6iOshQ3AimpymGTy81zK-pM1CWPemJQ0mj4,1631 +pip/_internal/main.py,sha256=yXF5_lVS3QQTxrbbvNk31juR2E1_16H1iu-xuXAod9o,364 +pip/_internal/metadata/__init__.py,sha256=p3NvOGG_3quhV9bOlDPvWSAEByPsdn63cO4FrsFubM0,1624 +pip/_internal/metadata/__pycache__/__init__.cpython-310.pyc,, +pip/_internal/metadata/__pycache__/base.cpython-310.pyc,, +pip/_internal/metadata/__pycache__/pkg_resources.cpython-310.pyc,, +pip/_internal/metadata/base.py,sha256=dCfs9XIcicyYSoFtVtzq6rFvduUYNdV6U_EDDlG4yJ0,8170 +pip/_internal/metadata/pkg_resources.py,sha256=azUoAkvyF-h80pORd0czY4-fWUIRe_z3i2qNHuKiSjE,5353 +pip/_internal/models/__init__.py,sha256=j2kiRfNTH6h5JVP5yO_N2Yn0DqiNzJUtaPjHe2xMcgg,65 +pip/_internal/models/__pycache__/__init__.cpython-310.pyc,, +pip/_internal/models/__pycache__/candidate.cpython-310.pyc,, +pip/_internal/models/__pycache__/direct_url.cpython-310.pyc,, +pip/_internal/models/__pycache__/format_control.cpython-310.pyc,, +pip/_internal/models/__pycache__/index.cpython-310.pyc,, +pip/_internal/models/__pycache__/link.cpython-310.pyc,, +pip/_internal/models/__pycache__/scheme.cpython-310.pyc,, +pip/_internal/models/__pycache__/search_scope.cpython-310.pyc,, +pip/_internal/models/__pycache__/selection_prefs.cpython-310.pyc,, +pip/_internal/models/__pycache__/target_python.cpython-310.pyc,, +pip/_internal/models/__pycache__/wheel.cpython-310.pyc,, +pip/_internal/models/candidate.py,sha256=L4nKS2HIgdOfbylU-2MIO2APVWEWueJpHu_gcwO0iH4,977 +pip/_internal/models/direct_url.py,sha256=36n2ed5kddmPLhNLh4b1GzGr36dUdSgl23Xrbcxd_ck,6482 +pip/_internal/models/format_control.py,sha256=PZ5PExPrxArZWzzPFATSj6W07UqvxjtrMBgFNAUxae4,2641 +pip/_internal/models/index.py,sha256=vqgOrXoZqQW4AA928wBmEGjKbxjeb-_NALLGZH0kMXY,1090 +pip/_internal/models/link.py,sha256=SrRPbWmpzWh1LfQd-eurbYAuMvOvpD5fzMvNDlRFpQ8,10227 +pip/_internal/models/scheme.py,sha256=moDcYk85amZUkf6Je5TDvXh4xMHxsSgf8rkD1ykpQhU,769 +pip/_internal/models/search_scope.py,sha256=D_Q6xSo1dTjSRljshHz_xVe4vXXivl2H7_rtj0dSHpU,4600 +pip/_internal/models/selection_prefs.py,sha256=0DZIWNPT8q2EiuqZCAQxczCoVnbs9_C4zugNfhNnvaw,1923 +pip/_internal/models/target_python.py,sha256=NUm2Ua7qbJHFK0UzKAlfHixudx4-FgmAFKPKf3B2RyU,3981 +pip/_internal/models/wheel.py,sha256=NLmn_y8dVc5vfTcAYw3EfS692hAF9MPPMDr5wTBu_4E,3633 +pip/_internal/network/__init__.py,sha256=IEtuAPVGqBTS0C7M0KJ95xqGcA76coOc2AsDcgIBP-8,52 +pip/_internal/network/__pycache__/__init__.cpython-310.pyc,, +pip/_internal/network/__pycache__/auth.cpython-310.pyc,, +pip/_internal/network/__pycache__/cache.cpython-310.pyc,, +pip/_internal/network/__pycache__/download.cpython-310.pyc,, +pip/_internal/network/__pycache__/lazy_wheel.cpython-310.pyc,, +pip/_internal/network/__pycache__/session.cpython-310.pyc,, +pip/_internal/network/__pycache__/utils.cpython-310.pyc,, +pip/_internal/network/__pycache__/xmlrpc.cpython-310.pyc,, +pip/_internal/network/auth.py,sha256=820jI8SAsVfNnfoOfxfH7HaGVFtYX_M8vsHEtiHCS14,11961 +pip/_internal/network/cache.py,sha256=KfaWDbALIGsUnP4qi1MfvKSpCJ0vlC5lviELSTNKLtQ,2169 +pip/_internal/network/download.py,sha256=-EnS83XhpNVRsfB107nYU-OPZsHd29QQdG6lNokemAk,6200 +pip/_internal/network/lazy_wheel.py,sha256=LFVwrv2nHpwr0pl17i-3sbEAedJjraaLdRTFRfS23vo,7825 +pip/_internal/network/session.py,sha256=9KBZpMGrtEmek4iPgpZiLEBgyxQ6bPH3yUUxNbEEQ54,17036 +pip/_internal/network/utils.py,sha256=K4d2srYGzR_tz5vVBbKFC7rBWA-G_DqqX9io2flIrI0,4155 +pip/_internal/network/xmlrpc.py,sha256=oFCngChTOtIVcc55ExwdX1HJcPvL-6PKMNl5ok6nMQk,1851 +pip/_internal/operations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/operations/__pycache__/__init__.cpython-310.pyc,, +pip/_internal/operations/__pycache__/check.cpython-310.pyc,, +pip/_internal/operations/__pycache__/freeze.cpython-310.pyc,, +pip/_internal/operations/__pycache__/prepare.cpython-310.pyc,, +pip/_internal/operations/build/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/operations/build/__pycache__/__init__.cpython-310.pyc,, +pip/_internal/operations/build/__pycache__/metadata.cpython-310.pyc,, +pip/_internal/operations/build/__pycache__/metadata_legacy.cpython-310.pyc,, +pip/_internal/operations/build/__pycache__/wheel.cpython-310.pyc,, +pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-310.pyc,, +pip/_internal/operations/build/metadata.py,sha256=-06VLFRgwxsIuqHL_56NxXdn7TQuZHeaL4RYXDnjB18,1200 +pip/_internal/operations/build/metadata_legacy.py,sha256=1V8i8VVGUF7GauyS_KPEhcl7dIwrocD6lyT5kWvXkBA,1991 +pip/_internal/operations/build/wheel.py,sha256=r2IKZgek1REUjP4xA0RLEG5O1-HsPZtzfy7q7W3_nhQ,1144 +pip/_internal/operations/build/wheel_legacy.py,sha256=4ddx179dnTTHJertW50M6869gchuyrNEdYcyWe4w5Yg,3337 +pip/_internal/operations/check.py,sha256=eCLrRScb_ZJDxTK9rMjU5kbLuu1xRngdoLxATNPuPQE,5448 +pip/_internal/operations/freeze.py,sha256=WEglEwdf9rD9M6jGzMyRVhiN-WF8p-hhiHGnwsWlDDc,10833 +pip/_internal/operations/install/__init__.py,sha256=Zug2xxRJjeI2LdVd45iwmeavUBYXA4ltbhFFwc4BEOg,53 +pip/_internal/operations/install/__pycache__/__init__.cpython-310.pyc,, +pip/_internal/operations/install/__pycache__/editable_legacy.cpython-310.pyc,, +pip/_internal/operations/install/__pycache__/legacy.cpython-310.pyc,, +pip/_internal/operations/install/__pycache__/wheel.cpython-310.pyc,, +pip/_internal/operations/install/editable_legacy.py,sha256=FhvBds_MF_Flabnylh6EVwCD3mFDxa-RmdKq3jl5JGM,1443 +pip/_internal/operations/install/legacy.py,sha256=xyGakzR-Xnfa9H37-OzT6cKH-AQMsctBkFxfUr3jlvw,4537 +pip/_internal/operations/install/wheel.py,sha256=oV6IB77355YCaI_ta4mqWXyHlkQF8OqBRZAdq8jpQYs,30269 +pip/_internal/operations/prepare.py,sha256=QB3-cmVD1agyO6_B9oiRs9HCQyyDMHF9pLTboLtufxo,25503 +pip/_internal/pyproject.py,sha256=DQoqc7F3HyFBO7fG82HOPsdP-GfEzfuqTUGOG0v2E1c,7246 +pip/_internal/req/__init__.py,sha256=5eiQnk8IiwtrWHU4r1ttcLy545MCrUdg5eRRq7_ZNz0,2925 +pip/_internal/req/__pycache__/__init__.cpython-310.pyc,, +pip/_internal/req/__pycache__/constructors.cpython-310.pyc,, +pip/_internal/req/__pycache__/req_file.cpython-310.pyc,, +pip/_internal/req/__pycache__/req_install.cpython-310.pyc,, +pip/_internal/req/__pycache__/req_set.cpython-310.pyc,, +pip/_internal/req/__pycache__/req_tracker.cpython-310.pyc,, +pip/_internal/req/__pycache__/req_uninstall.cpython-310.pyc,, +pip/_internal/req/constructors.py,sha256=Izde_5pbxkMzDWN-khLufzKKpC0uaGNTPRO9ShWrud8,16300 +pip/_internal/req/req_file.py,sha256=RN04-oHRNn5xECciUcs0Gh3LxA1RdlVw1X6wbVs0r7k,17936 +pip/_internal/req/req_install.py,sha256=gIGZ3t9QzqCBoeL04my4DIuqM86j0i5nId6iwZIGYzQ,32517 +pip/_internal/req/req_set.py,sha256=yeKmy9-oH5tW2Oe7SHobrp9btcDBZ3DxdFJ3HqAKQ44,7762 +pip/_internal/req/req_tracker.py,sha256=tFN50kuTTWwpY0WJkPK6QCPUZePmUhaBbuKVSgkWl1A,4312 +pip/_internal/req/req_uninstall.py,sha256=T6n_Pgpljq30LLQ81Qs4kpPoxSuJUkUvbvG9b697rGs,24450 +pip/_internal/resolution/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/resolution/__pycache__/__init__.cpython-310.pyc,, +pip/_internal/resolution/__pycache__/base.cpython-310.pyc,, +pip/_internal/resolution/base.py,sha256=qMuP4GV1NJU-81E3gUKzczQxzS-f_SWF0Dk59YVrH9A,575 +pip/_internal/resolution/legacy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/resolution/legacy/__pycache__/__init__.cpython-310.pyc,, +pip/_internal/resolution/legacy/__pycache__/resolver.cpython-310.pyc,, +pip/_internal/resolution/legacy/resolver.py,sha256=6nUm1wcBGRT58gUOu0-B0TE354XrCx_dexslaFtlDis,18005 +pip/_internal/resolution/resolvelib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-310.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/base.cpython-310.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-310.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-310.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-310.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-310.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-310.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-310.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-310.pyc,, +pip/_internal/resolution/resolvelib/base.py,sha256=IWvd3KNMJtIqDLcqeUuGV4MbimM83JOofBKwggVYxzI,5434 +pip/_internal/resolution/resolvelib/candidates.py,sha256=a8-csKtuj_Bz8UeYgk2cz8mP1EOObTyXsZrCO8wq2Tc,19397 +pip/_internal/resolution/resolvelib/factory.py,sha256=clwGzM3_u3SReBwOOG9sAvcdd2pNqk03T5qrCyryeB4,27559 +pip/_internal/resolution/resolvelib/found_candidates.py,sha256=9kFfU_ZFugtCMaCIez6UYrG4hyfqwDaQYxP9db9XQvE,5427 +pip/_internal/resolution/resolvelib/provider.py,sha256=qXB9l3kjEca0orqTS2e6TGaWHJIn537kEqJYClBIShQ,8617 +pip/_internal/resolution/resolvelib/reporter.py,sha256=AwjzTX3LytVk9wuVS1LdJAk1V2kPhEdn1dE7MfrPwLM,2669 +pip/_internal/resolution/resolvelib/requirements.py,sha256=FKE-HcZmsljRrcLpr545XprOOqDd09149GjjF8AfTiw,5621 +pip/_internal/resolution/resolvelib/resolver.py,sha256=Bmwfy5pO8cLzI-13YMgWEAWwFlpjLKdKeCBHMrdWyWM,10795 +pip/_internal/self_outdated_check.py,sha256=cNOjZkFVtwJmftBZt34cH2j9SJ5Gd4vSbJY8FBYM6tg,6671 +pip/_internal/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/utils/__pycache__/__init__.cpython-310.pyc,, +pip/_internal/utils/__pycache__/_log.cpython-310.pyc,, +pip/_internal/utils/__pycache__/appdirs.cpython-310.pyc,, +pip/_internal/utils/__pycache__/compat.cpython-310.pyc,, +pip/_internal/utils/__pycache__/compatibility_tags.cpython-310.pyc,, +pip/_internal/utils/__pycache__/datetime.cpython-310.pyc,, +pip/_internal/utils/__pycache__/deprecation.cpython-310.pyc,, +pip/_internal/utils/__pycache__/direct_url_helpers.cpython-310.pyc,, +pip/_internal/utils/__pycache__/distutils_args.cpython-310.pyc,, +pip/_internal/utils/__pycache__/encoding.cpython-310.pyc,, +pip/_internal/utils/__pycache__/entrypoints.cpython-310.pyc,, +pip/_internal/utils/__pycache__/filesystem.cpython-310.pyc,, +pip/_internal/utils/__pycache__/filetypes.cpython-310.pyc,, +pip/_internal/utils/__pycache__/glibc.cpython-310.pyc,, +pip/_internal/utils/__pycache__/hashes.cpython-310.pyc,, +pip/_internal/utils/__pycache__/inject_securetransport.cpython-310.pyc,, +pip/_internal/utils/__pycache__/logging.cpython-310.pyc,, +pip/_internal/utils/__pycache__/misc.cpython-310.pyc,, +pip/_internal/utils/__pycache__/models.cpython-310.pyc,, +pip/_internal/utils/__pycache__/packaging.cpython-310.pyc,, +pip/_internal/utils/__pycache__/parallel.cpython-310.pyc,, +pip/_internal/utils/__pycache__/pkg_resources.cpython-310.pyc,, +pip/_internal/utils/__pycache__/setuptools_build.cpython-310.pyc,, +pip/_internal/utils/__pycache__/subprocess.cpython-310.pyc,, +pip/_internal/utils/__pycache__/temp_dir.cpython-310.pyc,, +pip/_internal/utils/__pycache__/unpacking.cpython-310.pyc,, +pip/_internal/utils/__pycache__/urls.cpython-310.pyc,, +pip/_internal/utils/__pycache__/virtualenv.cpython-310.pyc,, +pip/_internal/utils/__pycache__/wheel.cpython-310.pyc,, +pip/_internal/utils/_log.py,sha256=t0zjUNjMLPYna4ZbL0MJB8wrxGdFvC8JsPs7f3UUdz0,1053 +pip/_internal/utils/appdirs.py,sha256=JKsp6Dlfk0BjBfni2Geq_uzpSycc8pV0Ap5A5qAwhag,1220 +pip/_internal/utils/compat.py,sha256=U1ofuQpRkcmWNtCsZccTK_24YsauhWl0KPDMnC69adM,1947 +pip/_internal/utils/compatibility_tags.py,sha256=f0RJ5Wb3Jj2T5z57i0RPLyoWNtqYvymealy3aUucrVU,5622 +pip/_internal/utils/datetime.py,sha256=NhzGBwpDdc5W1hX7-ynGHSFH5T8srUUPpFw6zOORiMM,253 +pip/_internal/utils/deprecation.py,sha256=onEDau8zZyztsQf5HjhHTckTChbXIIdOWRh_Ugz1PSQ,3304 +pip/_internal/utils/direct_url_helpers.py,sha256=7xVyieLJtD1SmB1xsNhIPsYBGIDK7AZGQUtfZyRi0tQ,3073 +pip/_internal/utils/distutils_args.py,sha256=fw5ZrUBHRy2IWgLciAKUl7RA4Ryu6jWL-M9LNv90V2k,1291 +pip/_internal/utils/encoding.py,sha256=3Hr_T_shHHq5EJmQg7sUCeNY37pvmxEmQay6aPsK_4o,1205 +pip/_internal/utils/entrypoints.py,sha256=Iq8laJFPEcErDlGcPIshG_-VrUmfwLB3_nLWlT1EIKI,1082 +pip/_internal/utils/filesystem.py,sha256=8UhURyTKl2R1l9TAnYXuULsGNNMkH9IBPHAoRy4QEaU,6075 +pip/_internal/utils/filetypes.py,sha256=0VA-FQmevfgw7_9OAe7YXjxB3DcYUxpUypVKERWlU_I,789 +pip/_internal/utils/glibc.py,sha256=6i1vPIDuLfV3vKQeFe2oUa9QjSHGVlOkvysujEldOEE,3262 +pip/_internal/utils/hashes.py,sha256=dV10-3U4kcopR-XrArkX6vFSiLS9uNOhPbrv8olu8Qw,5332 +pip/_internal/utils/inject_securetransport.py,sha256=Wa89Vhq5SdlBGreg8wdE40iDJGTouYEyFuugMrOVUI0,846 +pip/_internal/utils/logging.py,sha256=cRHg2gUYXEUknl_WzZ2Zdxxah485Gr69wl8TpymaAHc,12735 +pip/_internal/utils/misc.py,sha256=Zt509grPCYtfQEI16CHULTX9nW8eRXbBucPQQasuOYk,24472 +pip/_internal/utils/models.py,sha256=89bZ42cL0YJUmV9GCaFLfs4ZiG_cDW1udAHc6UTCI2c,1376 +pip/_internal/utils/packaging.py,sha256=xTyBldqCDRn0_v9CQizadbHd3ZUTgjXeElTxrJW_JKo,2989 +pip/_internal/utils/parallel.py,sha256=7IFve8sBfphARNXprnhhuSyzlxfdDWaMP3LTFwCUL9c,3325 +pip/_internal/utils/pkg_resources.py,sha256=bkYDe05U5fph4t8TO-q06fpHQwuzookJqP0MokucHWg,1146 +pip/_internal/utils/setuptools_build.py,sha256=tO48Mgcb28GJf3zmkQlzBvsRR-2hdrpm1dipXFBkyaE,5220 +pip/_internal/utils/subprocess.py,sha256=0GB0g9r2muHAnljX2s_sX-x805eWWoDtdN_9JcCwKu8,10324 +pip/_internal/utils/temp_dir.py,sha256=gFwfsfEtM-y5Lb9ZqpbP1wy_K3o-vUPsMouAFQCy7mg,8210 +pip/_internal/utils/unpacking.py,sha256=klIaodkk3_rIg-VjN2s-PQFPfGXaVhOWpOwd46T7bHo,9317 +pip/_internal/utils/urls.py,sha256=pJQSXBv1vKtBFr9KPbSMYA5lY7-G9rjLHq0A8plI7yo,1863 +pip/_internal/utils/virtualenv.py,sha256=3JeTdc_O-2uZbfn7EmQKLyXurWKD3nKSEi856ZZWSC4,3675 +pip/_internal/utils/wheel.py,sha256=xeIImmT3FJfVBPv3J4jxsHJy2wLinnJXAsZOcrrMSAM,6479 +pip/_internal/vcs/__init__.py,sha256=6ZAbu6NoqDWJjYPWCtn8PaZjulAEgs-R0Xngq2Z174Q,611 +pip/_internal/vcs/__pycache__/__init__.cpython-310.pyc,, +pip/_internal/vcs/__pycache__/bazaar.cpython-310.pyc,, +pip/_internal/vcs/__pycache__/git.cpython-310.pyc,, +pip/_internal/vcs/__pycache__/mercurial.cpython-310.pyc,, +pip/_internal/vcs/__pycache__/subversion.cpython-310.pyc,, +pip/_internal/vcs/__pycache__/versioncontrol.cpython-310.pyc,, +pip/_internal/vcs/bazaar.py,sha256=6_3dygJ3x0TrnlsMx2-sokvNKpk-6EfH2zsMgAmLj4o,3058 +pip/_internal/vcs/git.py,sha256=vYxXxg4M6YIUxNQCswMJJ2ZiBkb4capqTziRrATcp0E,17853 +pip/_internal/vcs/mercurial.py,sha256=jrfkmZF7SLOwxrJroz-NjvTTMCvaWl8BnZATPdu1CsE,5234 +pip/_internal/vcs/subversion.py,sha256=Oy4kcrNGmimnatKWHGKtED-0Da6bjfuc2DtsnitUam0,12195 +pip/_internal/vcs/versioncontrol.py,sha256=7w9WNAlFXQj5pRlWA-3jA8XUwn1VSxbNfmWvI-aY2p0,23998 +pip/_internal/wheel_builder.py,sha256=3bibo47mjXw7rRChRqudDQObp5JynLQ5uZ8x81PtBq8,12100 +pip/_vendor/__init__.py,sha256=3sjRJDFysoLez0JAFlt8jJA0FUzWVPkt9AlJlcuNsC0,4814 +pip/_vendor/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/__pycache__/appdirs.cpython-310.pyc,, +pip/_vendor/__pycache__/distro.cpython-310.pyc,, +pip/_vendor/__pycache__/pyparsing.cpython-310.pyc,, +pip/_vendor/__pycache__/six.cpython-310.pyc,, +pip/_vendor/appdirs.py,sha256=Od1rs7d0yMmHLUc0FQn2DleIUbC--EEmM-UtXvFqAjM,26540 +pip/_vendor/cachecontrol/__init__.py,sha256=SR74BEsga7Z2I6-CH8doh2Oq_vH0GG7RCwjJg7TntdI,313 +pip/_vendor/cachecontrol/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-310.pyc,, +pip/_vendor/cachecontrol/__pycache__/adapter.cpython-310.pyc,, +pip/_vendor/cachecontrol/__pycache__/cache.cpython-310.pyc,, +pip/_vendor/cachecontrol/__pycache__/compat.cpython-310.pyc,, +pip/_vendor/cachecontrol/__pycache__/controller.cpython-310.pyc,, +pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-310.pyc,, +pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-310.pyc,, +pip/_vendor/cachecontrol/__pycache__/serialize.cpython-310.pyc,, +pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-310.pyc,, +pip/_vendor/cachecontrol/_cmd.py,sha256=KIO6PIJoXmNr5RGS2pZjDum1-40oR4fw5kE0LguxrY4,1352 +pip/_vendor/cachecontrol/adapter.py,sha256=FBRrYfpkXaH8hKogEgw6wYCScnL2SJFDZlHBNF0EvLE,5015 +pip/_vendor/cachecontrol/cache.py,sha256=gCo5R0D__iptJ49dUfxwWfu2Lc2OjpDs-MERy2hTpK8,844 +pip/_vendor/cachecontrol/caches/__init__.py,sha256=rN8Ox5dd2ucPtgkybgz77XfTTUL4HFTO2-n2ACK2q3E,88 +pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-310.pyc,, +pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-310.pyc,, +pip/_vendor/cachecontrol/caches/file_cache.py,sha256=tw35e4ZnOsxqrlZ2fQ2VYz2FlUlCbFMerNu2tPwtRHY,4299 +pip/_vendor/cachecontrol/caches/redis_cache.py,sha256=hFJ_J9MCUTjblJCBT_cV_glP--2toqHDCKLRGUIHSOQ,889 +pip/_vendor/cachecontrol/compat.py,sha256=3BisP29GBHAo0QxUrbpBsMeXSp8YzKQcGHwEW7VYU2U,724 +pip/_vendor/cachecontrol/controller.py,sha256=fTDK1V7NjpnU1hwfMboX4Vyh73-uWgL6QkghtvvyTrY,14525 +pip/_vendor/cachecontrol/filewrapper.py,sha256=YsK9ISeZg26n-rS0z7MdEcMTyQ9gW_fLb6zIRJvE2rg,2613 +pip/_vendor/cachecontrol/heuristics.py,sha256=yndlfXHJZ5u_TC1ECrV4fVl68OuWiXnDS0HPyscK1MM,4205 +pip/_vendor/cachecontrol/serialize.py,sha256=7Jq5PcVBH6RVI-qkKkQsV5yAiZCFQa7yFhvITw_DYsc,7279 +pip/_vendor/cachecontrol/wrapper.py,sha256=tKJnzRvbl7uJRxOChwlNLdJf9NR0QlnknQxgNzQW2kM,719 +pip/_vendor/certifi/__init__.py,sha256=mRf2Fl2WmJxc7O-Zob068lpqa3nlsU4215CXzbkoBBU,65 +pip/_vendor/certifi/__main__.py,sha256=4JJNpOgznsXzgISGReUBrJGB6Q4zJOlIV99WFE185fM,267 +pip/_vendor/certifi/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/certifi/__pycache__/__main__.cpython-310.pyc,, +pip/_vendor/certifi/__pycache__/core.cpython-310.pyc,, +pip/_vendor/certifi/cacert.pem,sha256=3i-hfE2K5o3CBKG2tYt6ehJWk2fP64o6Th83fHPoPp4,259465 +pip/_vendor/certifi/core.py,sha256=u1ccq2BcSYX_ZtX61r6UFpwbKCKxNavjrzse_QVQ_PI,2916 +pip/_vendor/chardet/__init__.py,sha256=yxky3TQpsr5YTFEf5XYv0O4wq2e1WSilELYZ9e2AEes,3354 +pip/_vendor/chardet/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/big5freq.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/big5prober.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/chardistribution.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/charsetprober.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/codingstatemachine.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/compat.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/cp949prober.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/enums.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/escprober.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/escsm.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/eucjpprober.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/euckrfreq.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/euckrprober.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/euctwfreq.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/euctwprober.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/gb2312freq.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/gb2312prober.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/hebrewprober.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/jisfreq.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/jpcntx.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/langbulgarianmodel.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/langgreekmodel.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/langhungarianmodel.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/langrussianmodel.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/langthaimodel.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/langturkishmodel.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/latin1prober.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/mbcharsetprober.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/mbcssm.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/sbcharsetprober.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/sbcsgroupprober.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/sjisprober.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/universaldetector.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/utf8prober.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/version.cpython-310.pyc,, +pip/_vendor/chardet/big5freq.py,sha256=dwRzRlsGp3Zgr1JQSSSwnxvyaZ7_q-5kuPfCVMuy4to,31640 +pip/_vendor/chardet/big5prober.py,sha256=TpmdoNfRtnQ7x9Q_p-a1CHaG-ok2mbisN5e9UHAtOiY,1804 +pip/_vendor/chardet/chardistribution.py,sha256=NzboAhfS6GODy_Tp6BkmUOL4NuxwTVfdVFcKA9bdUAo,9644 +pip/_vendor/chardet/charsetgroupprober.py,sha256=NPYh0Agp8UnrfqIls_qdbwszQ1mv9imGawGUCErFT6M,3946 +pip/_vendor/chardet/charsetprober.py,sha256=kk5-m0VdjqzbEhPRkBZ386R3fBQo3DxsBrdL-WFyk1o,5255 +pip/_vendor/chardet/cli/__init__.py,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2 +pip/_vendor/chardet/cli/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/chardet/cli/__pycache__/chardetect.cpython-310.pyc,, +pip/_vendor/chardet/cli/chardetect.py,sha256=535zsG4tA_x-_xPtEeDvn46QLib2nvF-5NT_nJdGgVs,2831 +pip/_vendor/chardet/codingstatemachine.py,sha256=qz9ZwK1q4mZ4s4zDRbyXu5KaGunYbk7g1Z7fqfb4mA4,3678 +pip/_vendor/chardet/compat.py,sha256=3j2eGvEAakISaIanHZ4wZutzfttNdRSdlo6RSjpyxsM,1236 +pip/_vendor/chardet/cp949prober.py,sha256=5NnMVUcel3jDY3w8ljD0cXyj2lcrvdagxOVE1jxl7xc,1904 +pip/_vendor/chardet/enums.py,sha256=3H_EIVP-VUYOdKqe2xmYdyooEDSLqS8sACMbn_3oejU,1737 +pip/_vendor/chardet/escprober.py,sha256=5MrTnVtZGEt3ssnY-lOXmOo3JY-CIqz9ruG3KjDpkbY,4051 +pip/_vendor/chardet/escsm.py,sha256=xQbwmM3Ieuskg-Aohyc6-bSfg3vsY0tx2TEKLDoVZGg,10756 +pip/_vendor/chardet/eucjpprober.py,sha256=PHumemJS19xMhDR4xPrsvxMfyBfsb297kVWmYz6zgy8,3841 +pip/_vendor/chardet/euckrfreq.py,sha256=MrLrIWMtlaDI0LYt-MM3MougBbLtSWHs6kvZx0VasIM,13741 +pip/_vendor/chardet/euckrprober.py,sha256=VbiOn7_id7mL9Q5GdeV0Ze3w5fG0nRCpUkEzeR-bnnY,1795 +pip/_vendor/chardet/euctwfreq.py,sha256=ZPBIHZDwNknGf7m6r4xGH8bX0W38qBpnTwVVv1QHw_M,32008 +pip/_vendor/chardet/euctwprober.py,sha256=hlUyGKUxzOPfBxCcyUcvRZSxgkLuvRoDU9wejp6YMiM,1793 +pip/_vendor/chardet/gb2312freq.py,sha256=aLHs-2GS8vmSM2ljyoWWgeVq_xRRcS_gN7ykpIiV43A,20998 +pip/_vendor/chardet/gb2312prober.py,sha256=msVbrDFcrJRE_XvsyETiqbTGfvdFhVIEZ2zBd-OENaE,1800 +pip/_vendor/chardet/hebrewprober.py,sha256=r81LqgKb24ZbvOmfi95MzItUxx7bkrjJR1ppkj5rvZw,14130 +pip/_vendor/chardet/jisfreq.py,sha256=vrqCR4CmwownBVXJ3Hh_gsfiDnIHOELbcNmTyC6Jx3w,26102 +pip/_vendor/chardet/jpcntx.py,sha256=Cn4cypo2y8CpqCan-zsdfYdEgXkRCnsqQoYaCu6FRjI,19876 +pip/_vendor/chardet/langbulgarianmodel.py,sha256=IuDOQ4uAe5spaYXt1F-2_496DFYd3J5lyLKKbVg-Nkw,110347 +pip/_vendor/chardet/langgreekmodel.py,sha256=cZRowhYjEUNYCevhuD5ZMHMiOIf3Pk1IpRixjTpRPB0,103969 +pip/_vendor/chardet/langhebrewmodel.py,sha256=p-xw_b2XvGVSIQFgQL91cVpS7u3vPpGJZ0udYxD07Do,103159 +pip/_vendor/chardet/langhungarianmodel.py,sha256=EKIZs5Z8Y-l6ORDcBzE9htOMMnAnr2j6Wb1PFRBMVxM,107148 +pip/_vendor/chardet/langrussianmodel.py,sha256=TFH-3rTFzbCBF15oasmoqf92FKBnwWY_HaN2ptl5WVo,136898 +pip/_vendor/chardet/langthaimodel.py,sha256=rTzLQ2x_RjQEzZfIksCR--SCFQyuP5eCtQpqxyl5-x8,107695 +pip/_vendor/chardet/langturkishmodel.py,sha256=fWI_tafe_UQ24gdOGqOWy1tnEY2jxKHoi4ueoT3rrrc,100329 +pip/_vendor/chardet/latin1prober.py,sha256=s1SFkEFY2NGe2_9bgX2MhOmyM_U_qSd_jVSdkdSgZxs,5515 +pip/_vendor/chardet/mbcharsetprober.py,sha256=hzFVD-brxTAVLnTAkDqa1ztd6RwGGwb5oAdvhj1-lE8,3504 +pip/_vendor/chardet/mbcsgroupprober.py,sha256=DlT-X7KRUl5y3SWJNqF1NXqvkjVc47jPKjJ2j4KVs3A,2066 +pip/_vendor/chardet/mbcssm.py,sha256=LGUDh1VB61rWsZB4QlJBzaCjI2PUEUgbBc91gPlX4DQ,26053 +pip/_vendor/chardet/metadata/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/chardet/metadata/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/chardet/metadata/__pycache__/languages.cpython-310.pyc,, +pip/_vendor/chardet/metadata/languages.py,sha256=pGf_EnapgynSUCViRjUcwEi7AWw_bYPJFHCqerAFSbQ,19784 +pip/_vendor/chardet/sbcharsetprober.py,sha256=VPAZ5z-o8ixIIfEGTScLVXeQxkd3Zqi1eceerr0rb78,6281 +pip/_vendor/chardet/sbcsgroupprober.py,sha256=p8XICsXYXOF78Anypfvdne8K_0p8qFC-SUF5nwD1fo4,4392 +pip/_vendor/chardet/sjisprober.py,sha256=1WGev_SSHpa7AVXmM0DIONl1OvyKc8mdydUNaKtGGNI,3866 +pip/_vendor/chardet/universaldetector.py,sha256=C3ryFrDZ9JuroNMdYwgDa2_zAYJlWuPHyHLX5WtCY-g,12789 +pip/_vendor/chardet/utf8prober.py,sha256=rGwn69WfIvmibp0sWvYuH_TPoXs7zzwKHTX79Ojbr9o,2848 +pip/_vendor/chardet/version.py,sha256=LCY3oiBIflXJGeBYm7ly2aw6P9n272rhp3t7qz3oOHo,251 +pip/_vendor/colorama/__init__.py,sha256=besK61Glmusp-wZ1wjjSlsPKEY_6zndaeulh1FkVStw,245 +pip/_vendor/colorama/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/colorama/__pycache__/ansi.cpython-310.pyc,, +pip/_vendor/colorama/__pycache__/ansitowin32.cpython-310.pyc,, +pip/_vendor/colorama/__pycache__/initialise.cpython-310.pyc,, +pip/_vendor/colorama/__pycache__/win32.cpython-310.pyc,, +pip/_vendor/colorama/__pycache__/winterm.cpython-310.pyc,, +pip/_vendor/colorama/ansi.py,sha256=121ZIWJSdXR76TcqKXusVZQRgyb0AIlRnf5EW6oSGlQ,2624 +pip/_vendor/colorama/ansitowin32.py,sha256=bZByVMjpiUp-LSAK21KNvCh63UN9CPkXdHFPUsq20kA,10775 +pip/_vendor/colorama/initialise.py,sha256=J92wwYPAAEgdlAyw-ady4JJxl1j9UmXPodi0HicWDwg,1995 +pip/_vendor/colorama/win32.py,sha256=fI0Ani_DO_cYDAbHz_a0BsMbDKHCA1-P3PGcj0eDCmA,5556 +pip/_vendor/colorama/winterm.py,sha256=Zurpa5AEwarU62JTuERX53gGelEWH5SBUiAXN4CxMtA,6607 +pip/_vendor/distlib/__init__.py,sha256=iP0jP2IxDeV5bLyzuna9JsdxOw2AO-VqAMXslthb-oQ,604 +pip/_vendor/distlib/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/distlib/__pycache__/compat.cpython-310.pyc,, +pip/_vendor/distlib/__pycache__/database.cpython-310.pyc,, +pip/_vendor/distlib/__pycache__/index.cpython-310.pyc,, +pip/_vendor/distlib/__pycache__/locators.cpython-310.pyc,, +pip/_vendor/distlib/__pycache__/manifest.cpython-310.pyc,, +pip/_vendor/distlib/__pycache__/markers.cpython-310.pyc,, +pip/_vendor/distlib/__pycache__/metadata.cpython-310.pyc,, +pip/_vendor/distlib/__pycache__/resources.cpython-310.pyc,, +pip/_vendor/distlib/__pycache__/scripts.cpython-310.pyc,, +pip/_vendor/distlib/__pycache__/util.cpython-310.pyc,, +pip/_vendor/distlib/__pycache__/version.cpython-310.pyc,, +pip/_vendor/distlib/__pycache__/wheel.cpython-310.pyc,, +pip/_vendor/distlib/_backport/__init__.py,sha256=XkACqtjaFfFn1QQBFDNxSqhMva0LqXeeh6H3fVwwLQ4,280 +pip/_vendor/distlib/_backport/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/distlib/_backport/__pycache__/misc.cpython-310.pyc,, +pip/_vendor/distlib/_backport/__pycache__/shutil.cpython-310.pyc,, +pip/_vendor/distlib/_backport/__pycache__/sysconfig.cpython-310.pyc,, +pip/_vendor/distlib/_backport/__pycache__/tarfile.cpython-310.pyc,, +pip/_vendor/distlib/_backport/misc.py,sha256=focjmI7975W3LgEtiNC99lvxohfZdsNSLTakOcPNShs,1012 +pip/_vendor/distlib/_backport/shutil.py,sha256=h-yIttFtLq-_LKn5lLn4beHXzRwcmo2wEg4UKU7hX6E,26471 +pip/_vendor/distlib/_backport/sysconfig.cfg,sha256=LoipPkR2PfCKC7JUQBGxp6OFVlWIiWBXT-rNuzv8acU,2701 +pip/_vendor/distlib/_backport/sysconfig.py,sha256=qV5ZK6YVkHS-gUFacIT2TpFBw7bZJFH3DYa8PbT6O54,27640 +pip/_vendor/distlib/_backport/tarfile.py,sha256=fzwGLsCdTmO8uzoHjyjSgu4-srrDQEAcw4jNKUfvQH0,95235 +pip/_vendor/distlib/compat.py,sha256=Z8PBQ-ZPCJuRvzs5rtHuzceFOB8iYV8HHjAGrW3SQ8s,42528 +pip/_vendor/distlib/database.py,sha256=m_LtL3siDUdcSvftoTnXcjhUJA-WZhDwTvHO7rg72SA,52398 +pip/_vendor/distlib/index.py,sha256=LMZK2uX_oH2SNgPQ_lnnoJFFx6X5ByY-LBP8qgUTuC0,21248 +pip/_vendor/distlib/locators.py,sha256=mefGpRbPPG1Bl-UhNUquwBQR50J8uL0x2CSG-c5mbJs,53265 +pip/_vendor/distlib/manifest.py,sha256=0TlGw5ZyFp8wxr_GJz7tAAXGYwUJvceMIOsh9ydAXpM,15204 +pip/_vendor/distlib/markers.py,sha256=lTFISO7AcGHoYk2AQx_VFrjDltOFAg5YnPTvBGnOZtE,4474 +pip/_vendor/distlib/metadata.py,sha256=tCLNLfWfC-lQacX4bY-mBTKPgJZTiowKnLX2HWUcQeE,40167 +pip/_vendor/distlib/resources.py,sha256=DMriFf8j-5IXduPHW0YPnx50jQIbaOlvTQkPcdN5r88,11178 +pip/_vendor/distlib/scripts.py,sha256=-jtzATPNKOj8VpnxJUh1aXdUUkNpXiop-bOwsojbwWA,17671 +pip/_vendor/distlib/t32.exe,sha256=NS3xBCVAld35JVFNmb-1QRyVtThukMrwZVeXn4LhaEQ,96768 +pip/_vendor/distlib/t64.exe,sha256=oAqHes78rUWVM0OtVqIhUvequl_PKhAhXYQWnUf7zR0,105984 +pip/_vendor/distlib/util.py,sha256=w5nS2W71eWhilj69cZbERp6NR5rV1p_yIUbkwpvtqu4,69523 +pip/_vendor/distlib/version.py,sha256=cI1oZGIqY11EQn5P-jI_OqQml7jIxLFS52syBFIpXNU,24247 +pip/_vendor/distlib/w32.exe,sha256=lJtnZdeUxTZWya_EW5DZos_K5rswRECGspIl8ZJCIXs,90112 +pip/_vendor/distlib/w64.exe,sha256=0aRzoN2BO9NWW4ENy4_4vHkHR4qZTFZNVSAJJYlODTI,99840 +pip/_vendor/distlib/wheel.py,sha256=NNoICc3pe4uSF-gHpmqgGwQs3Q-0dnn5418JHS1ZI6c,44118 +pip/_vendor/distro.py,sha256=ni3ahks9qSr3P1FMur9zTPEF_xcAdaHW8iWZWqwB5mU,44858 +pip/_vendor/html5lib/__init__.py,sha256=Bmlpvs5dN2GoaWRAvN2UZ1yF_p7xb2zROelA0QxBKis,1195 +pip/_vendor/html5lib/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/html5lib/__pycache__/_ihatexml.cpython-310.pyc,, +pip/_vendor/html5lib/__pycache__/_inputstream.cpython-310.pyc,, +pip/_vendor/html5lib/__pycache__/_tokenizer.cpython-310.pyc,, +pip/_vendor/html5lib/__pycache__/_utils.cpython-310.pyc,, +pip/_vendor/html5lib/__pycache__/constants.cpython-310.pyc,, +pip/_vendor/html5lib/__pycache__/html5parser.cpython-310.pyc,, +pip/_vendor/html5lib/__pycache__/serializer.cpython-310.pyc,, +pip/_vendor/html5lib/_ihatexml.py,sha256=IyMKE35pNPCYYGs290_oSUhWXF1BQZsbVcXBzGuFvl4,17017 +pip/_vendor/html5lib/_inputstream.py,sha256=EA6Wj46jxuK6544Vnk9YOjIpFwGbfJW0Ar2cMH1H0VU,33271 +pip/_vendor/html5lib/_tokenizer.py,sha256=BUDNWZENVB0oFBiKR49sZsqQU4rzLLa13-byISlYRfA,78775 +pip/_vendor/html5lib/_trie/__init__.py,sha256=kfSo27BaU64El8U7bg4ugLmI3Ksywu54xE6BlhVgggA,114 +pip/_vendor/html5lib/_trie/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/html5lib/_trie/__pycache__/_base.cpython-310.pyc,, +pip/_vendor/html5lib/_trie/__pycache__/py.cpython-310.pyc,, +pip/_vendor/html5lib/_trie/_base.py,sha256=LTpLNz1pn7LAcfn2TFvRp4moVPbFTkkbhzjPKUrvGes,1053 +pip/_vendor/html5lib/_trie/py.py,sha256=LmuYcbypKw-aMLcT0-IY6WewATGzg1QRkmyd8hTBQeY,1842 +pip/_vendor/html5lib/_utils.py,sha256=dLFxoZDTv5r38HOIHy45uxWwUY7VhLgbEFWNQw6Wppo,5090 +pip/_vendor/html5lib/constants.py,sha256=P9n6_ScDgAFkst0YfKaB-yaAlxVtUS9uMn5Lh8ywbQo,86410 +pip/_vendor/html5lib/filters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/html5lib/filters/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/html5lib/filters/__pycache__/alphabeticalattributes.cpython-310.pyc,, +pip/_vendor/html5lib/filters/__pycache__/base.cpython-310.pyc,, +pip/_vendor/html5lib/filters/__pycache__/inject_meta_charset.cpython-310.pyc,, +pip/_vendor/html5lib/filters/__pycache__/lint.cpython-310.pyc,, +pip/_vendor/html5lib/filters/__pycache__/optionaltags.cpython-310.pyc,, +pip/_vendor/html5lib/filters/__pycache__/sanitizer.cpython-310.pyc,, +pip/_vendor/html5lib/filters/__pycache__/whitespace.cpython-310.pyc,, +pip/_vendor/html5lib/filters/alphabeticalattributes.py,sha256=0TV6VWJzhNkcLFiR7BNZUJsTJgAEEyZ02in6-PuL2gU,948 +pip/_vendor/html5lib/filters/base.py,sha256=6D2t423hbOLtjnvAAOrs1mWX1vsabMLBrWQF67ITPho,298 +pip/_vendor/html5lib/filters/inject_meta_charset.py,sha256=J-W5X3LyosH1sUipiHU1x-2ocd7g9JSudpIek_QlCUU,3018 +pip/_vendor/html5lib/filters/lint.py,sha256=O6sK29HXXW02Nv-EIEOfGvdQMuXxWvBePu2sQ2ecbJc,3736 +pip/_vendor/html5lib/filters/optionaltags.py,sha256=IVHcJ35kr6_MYBqahFMIK-Gel-ALLUk6Wk9X-or_yXk,10795 +pip/_vendor/html5lib/filters/sanitizer.py,sha256=uwT0HNJHjnw3Omf2LpmvfoVdIgAWb9_3VrMcWD1es_M,27813 +pip/_vendor/html5lib/filters/whitespace.py,sha256=bCC0mMQZicbq8HCg67pip_oScN5Fz_KkkvldfE137Kw,1252 +pip/_vendor/html5lib/html5parser.py,sha256=2xGZMaUvdkuuswAmpkazK1CXHT_y3-XTy4lS71PYUuU,119981 +pip/_vendor/html5lib/serializer.py,sha256=vMivcnRcQxjCSTrbMFdevLMhJ2HbF0cfv_CkroTODZM,16168 +pip/_vendor/html5lib/treeadapters/__init__.py,sha256=76InX2oJAx-C4rGAJziZsoE_CHI8_3thl6TeMgP-ypk,709 +pip/_vendor/html5lib/treeadapters/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/html5lib/treeadapters/__pycache__/genshi.cpython-310.pyc,, +pip/_vendor/html5lib/treeadapters/__pycache__/sax.cpython-310.pyc,, +pip/_vendor/html5lib/treeadapters/genshi.py,sha256=nQHNa4Hu0IMpu4bqHbJJS3_Cd1pKXgDO1pgMZ6gADDg,1769 +pip/_vendor/html5lib/treeadapters/sax.py,sha256=PAmV6NG9BSpfMHUY72bDbXwAe6Q2tPn1BC2yAD-K1G0,1826 +pip/_vendor/html5lib/treebuilders/__init__.py,sha256=zfrXDjeqDo2M7cJFax6hRJs70Az4pfHFiZbuLOZ9YE4,3680 +pip/_vendor/html5lib/treebuilders/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/html5lib/treebuilders/__pycache__/base.cpython-310.pyc,, +pip/_vendor/html5lib/treebuilders/__pycache__/dom.cpython-310.pyc,, +pip/_vendor/html5lib/treebuilders/__pycache__/etree.cpython-310.pyc,, +pip/_vendor/html5lib/treebuilders/__pycache__/etree_lxml.cpython-310.pyc,, +pip/_vendor/html5lib/treebuilders/base.py,sha256=Yao9LOJd-4KaLEx-3ysqRkAkhv1YaDqhTksvX6nuQyY,14982 +pip/_vendor/html5lib/treebuilders/dom.py,sha256=QWkBtUprtDosTiTFlIY6QpgKwk2-pD0AV84qVTNgiLo,9164 +pip/_vendor/html5lib/treebuilders/etree.py,sha256=k-LHrme562Hd5GmIi87r1_vfF25MtURGPurT3mAp8sY,13179 +pip/_vendor/html5lib/treebuilders/etree_lxml.py,sha256=CviyyGjvv2TwN-m47DC8DFWdx0Gt-atRw9jMTv4v8-Q,15158 +pip/_vendor/html5lib/treewalkers/__init__.py,sha256=buyxCJb9LFfJ_1ZIMdc-Do1zV93Uw-7L942o2H-Swy0,5873 +pip/_vendor/html5lib/treewalkers/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/html5lib/treewalkers/__pycache__/base.cpython-310.pyc,, +pip/_vendor/html5lib/treewalkers/__pycache__/dom.cpython-310.pyc,, +pip/_vendor/html5lib/treewalkers/__pycache__/etree.cpython-310.pyc,, +pip/_vendor/html5lib/treewalkers/__pycache__/etree_lxml.cpython-310.pyc,, +pip/_vendor/html5lib/treewalkers/__pycache__/genshi.cpython-310.pyc,, +pip/_vendor/html5lib/treewalkers/base.py,sha256=g-cLq7VStBtpZZZ1v_Tbwp3GhJjQ2oG5njgeHVhAaXE,7728 +pip/_vendor/html5lib/treewalkers/dom.py,sha256=fBJht3gn5a6y1WN2KE9gsUru158yTQ0KikT3vOM7Xc4,1456 +pip/_vendor/html5lib/treewalkers/etree.py,sha256=VtcKOS13qy9nv2PAaYoB1j9V1Z8n9o0AEA9KoGAgYOg,4682 +pip/_vendor/html5lib/treewalkers/etree_lxml.py,sha256=u9X06RqSrHanDb0qGI-v8I99-PqzOzmnpZOspHHz_Io,6572 +pip/_vendor/html5lib/treewalkers/genshi.py,sha256=P_2Tnc2GkbWJfuodXN9oYIg6kN9E26aWXXe9iL0_eX4,2378 +pip/_vendor/idna/__init__.py,sha256=aHTBHXXun6n0ecdus8ToBvhs-4Ziin24HuNbJ9ZXE3o,893 +pip/_vendor/idna/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/idna/__pycache__/codec.cpython-310.pyc,, +pip/_vendor/idna/__pycache__/compat.cpython-310.pyc,, +pip/_vendor/idna/__pycache__/core.cpython-310.pyc,, +pip/_vendor/idna/__pycache__/idnadata.cpython-310.pyc,, +pip/_vendor/idna/__pycache__/intranges.cpython-310.pyc,, +pip/_vendor/idna/__pycache__/package_data.cpython-310.pyc,, +pip/_vendor/idna/__pycache__/uts46data.cpython-310.pyc,, +pip/_vendor/idna/codec.py,sha256=LtpT6KflQ-NkZZXgLc0_ADLiShhKuC__nz_JmYyLnXs,3570 +pip/_vendor/idna/compat.py,sha256=Y-t409G3-dxunv_cSx0zrDjJkOKtC60ALLuqSknryXc,376 +pip/_vendor/idna/core.py,sha256=PWa20xVmQMBN8zgaBNXGNKCbQHOdnqKEpdcWCxXTidw,13235 +pip/_vendor/idna/idnadata.py,sha256=z3JZKnxitScqic6U-cO3rM_SmC2P0-UjUHEDnGv1xsQ,44400 +pip/_vendor/idna/intranges.py,sha256=Ipf6IPZDhD56FppDz_tjl_1YWzzh_viPiEBBp_nSQ8k,1991 +pip/_vendor/idna/package_data.py,sha256=MMuW8HkL_d3g6tkyzl7kIEN-fg9uyv6YDmk_v_jjL3U,23 +pip/_vendor/idna/uts46data.py,sha256=l_0BwSDthDPKq_AX35avb7jnXUgPEKgjf816traOf8s,210287 +pip/_vendor/msgpack/__init__.py,sha256=OhoFouHD7wOYMP2PN-Hlyk9RAZw39V-iPTDRsmkoIns,1172 +pip/_vendor/msgpack/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/msgpack/__pycache__/_version.cpython-310.pyc,, +pip/_vendor/msgpack/__pycache__/exceptions.cpython-310.pyc,, +pip/_vendor/msgpack/__pycache__/ext.cpython-310.pyc,, +pip/_vendor/msgpack/__pycache__/fallback.cpython-310.pyc,, +pip/_vendor/msgpack/_version.py,sha256=qcv5IclQy1PSvtCYDvZyjaUSFWdHPIRzdGjv3YwkKCs,21 +pip/_vendor/msgpack/exceptions.py,sha256=2fCtczricqQgdT3NtW6cTqmZn3WA7GQtmlPuT-NhLyM,1129 +pip/_vendor/msgpack/ext.py,sha256=3Xznjz11nxxfQJe50uLzKDznWOvxOBxWSZ833DL_DDs,6281 +pip/_vendor/msgpack/fallback.py,sha256=ZaNwBMO2hh9WrqHnYqdHJaCv8zzPMnva9YhD5yInTpM,39113 +pip/_vendor/packaging/__about__.py,sha256=eoW72tGZd0YfLOf_tDScx_kjG1SFtdXMg79yNoJrxg4,687 +pip/_vendor/packaging/__init__.py,sha256=Rtl7XZgdQyDFurOf4u9TWH8UM8-Y6pNC9mfN1QP5NZY,522 +pip/_vendor/packaging/__pycache__/__about__.cpython-310.pyc,, +pip/_vendor/packaging/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/packaging/__pycache__/_manylinux.cpython-310.pyc,, +pip/_vendor/packaging/__pycache__/_musllinux.cpython-310.pyc,, +pip/_vendor/packaging/__pycache__/_structures.cpython-310.pyc,, +pip/_vendor/packaging/__pycache__/markers.cpython-310.pyc,, +pip/_vendor/packaging/__pycache__/requirements.cpython-310.pyc,, +pip/_vendor/packaging/__pycache__/specifiers.cpython-310.pyc,, +pip/_vendor/packaging/__pycache__/tags.cpython-310.pyc,, +pip/_vendor/packaging/__pycache__/utils.cpython-310.pyc,, +pip/_vendor/packaging/__pycache__/version.cpython-310.pyc,, +pip/_vendor/packaging/_manylinux.py,sha256=qLGjZQVH7CwWE2jjOIyE2f4hektTsbtFc7UxfRCQzMI,11789 +pip/_vendor/packaging/_musllinux.py,sha256=Eq-8bd_ZnxcxPEZ-N4TTl7_HATTosVSmxMhZidXvg5g,4514 +pip/_vendor/packaging/_structures.py,sha256=9-rULC3_oZTgVRl9Furm3bFZe7xVsZeGiway_piR3c0,1696 +pip/_vendor/packaging/markers.py,sha256=nTk-tDQYPWjSMZSUIwGVaIvY3NbYmtQQLSXvAgBBxL8,8791 +pip/_vendor/packaging/requirements.py,sha256=PKbV9AWRNnqd0jGBMi83GPyS3hAUmx8IMxjQSJEBXsY,4822 +pip/_vendor/packaging/specifiers.py,sha256=HeDND7swHCqUzD9mKLuvXwBp8Rl-sBdWoA9okxul8cA,31792 +pip/_vendor/packaging/tags.py,sha256=aUZfcmH14rf5DAwYCHHjx5Z9zWnPAYqm9QKJf0yEkRk,16198 +pip/_vendor/packaging/utils.py,sha256=wl4SX90PE-_rF8s24QsN30N9afxY8BX42yKBmwI3wtU,4336 +pip/_vendor/packaging/version.py,sha256=CfhEcnRcBUAgA2viaZV9i5f84V0goapf5vSGgg3Yxl0,15169 +pip/_vendor/pep517/__init__.py,sha256=_xFPzQ0RNMbFs0cvD091C2aMOneiq-cTNfGj9uSTc3k,136 +pip/_vendor/pep517/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/pep517/__pycache__/build.cpython-310.pyc,, +pip/_vendor/pep517/__pycache__/check.cpython-310.pyc,, +pip/_vendor/pep517/__pycache__/colorlog.cpython-310.pyc,, +pip/_vendor/pep517/__pycache__/compat.cpython-310.pyc,, +pip/_vendor/pep517/__pycache__/dirtools.cpython-310.pyc,, +pip/_vendor/pep517/__pycache__/envbuild.cpython-310.pyc,, +pip/_vendor/pep517/__pycache__/meta.cpython-310.pyc,, +pip/_vendor/pep517/__pycache__/wrappers.cpython-310.pyc,, +pip/_vendor/pep517/build.py,sha256=MDBFdwDA7ygdOFkHRZDA2vmbLuM5vIg3PYnHAszhMz8,3596 +pip/_vendor/pep517/check.py,sha256=FwTS6MXy67e7MCC3QPsN4g7sou0Pg1FkXxMBLimFJQ4,6303 +pip/_vendor/pep517/colorlog.py,sha256=uOdcoDYZ0ocKGRPPs5JgvpLYVDIfoEVvoMpc43ICQFU,4213 +pip/_vendor/pep517/compat.py,sha256=BmdEmQQW3XQqBjgDov0EWT-q1V-ECANNzDp692gUTdg,1113 +pip/_vendor/pep517/dirtools.py,sha256=hrSzAJOGDo3tXdtCbgJ6LqoLhPVJn6JGmekz1ofLi6o,1173 +pip/_vendor/pep517/envbuild.py,sha256=D8XnGq1CZKAuIAMZQxpJQrvDwkjKRzKotHAOpr_AF1M,6283 +pip/_vendor/pep517/in_process/__init__.py,sha256=IZ3Qr3CBsGM77dePRWUxnF9FADyAi0imlDLX5MWGPz8,580 +pip/_vendor/pep517/in_process/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/pep517/in_process/__pycache__/_in_process.cpython-310.pyc,, +pip/_vendor/pep517/in_process/_in_process.py,sha256=MW1-Z-5WuMGVy0cdY3-kgSr2rEO7bIYDlhgMuMHciEw,11182 +pip/_vendor/pep517/meta.py,sha256=ZkHYB0YHt4FDuSE5NdFuVsat3xfZ6LgW6VS6d4D6vIQ,2555 +pip/_vendor/pep517/wrappers.py,sha256=mgBTFXDKJtKluWpQ7VMZda49ZUzFGSNu5d_PYJLoor0,13629 +pip/_vendor/pkg_resources/__init__.py,sha256=zeMvnKzGEcWISjTwy6YtFKWamTFJdwBwYjBAFUoyf7A,111573 +pip/_vendor/pkg_resources/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/pkg_resources/__pycache__/py31compat.cpython-310.pyc,, +pip/_vendor/pkg_resources/py31compat.py,sha256=tzQGe-w8g7GEXb6Ozw2-v8ZHaIygADmw0LAgriYzPAc,585 +pip/_vendor/progress/__init__.py,sha256=YTntFxK5CZDfVAa1b77EbNkWljGqvyM72YKRTHaHap8,5034 +pip/_vendor/progress/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/progress/__pycache__/bar.cpython-310.pyc,, +pip/_vendor/progress/__pycache__/counter.cpython-310.pyc,, +pip/_vendor/progress/__pycache__/spinner.cpython-310.pyc,, +pip/_vendor/progress/bar.py,sha256=evFQod41y2bMU60teK16uV-A5F4yVUehab8dtCiXj1E,2945 +pip/_vendor/progress/counter.py,sha256=c8AdstUGrFQvIQbvtHjjXxZx6LCflrY-a7DVM6IYTBs,1413 +pip/_vendor/progress/spinner.py,sha256=zLcx2RFinPfM6UwveJJrcJ8YABE3aLCAKqQFVD3pHow,1423 +pip/_vendor/pyparsing.py,sha256=lD3A8iEK1JYvnNDP00Cgve4vZjwEFonCvrpo7mEl3Q8,280501 +pip/_vendor/requests/__init__.py,sha256=IPdrlLH8zOpx45fFKwMSH9HT_d9wfwdjjoka0HEY9ps,5267 +pip/_vendor/requests/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/requests/__pycache__/__version__.cpython-310.pyc,, +pip/_vendor/requests/__pycache__/_internal_utils.cpython-310.pyc,, +pip/_vendor/requests/__pycache__/adapters.cpython-310.pyc,, +pip/_vendor/requests/__pycache__/api.cpython-310.pyc,, +pip/_vendor/requests/__pycache__/auth.cpython-310.pyc,, +pip/_vendor/requests/__pycache__/certs.cpython-310.pyc,, +pip/_vendor/requests/__pycache__/compat.cpython-310.pyc,, +pip/_vendor/requests/__pycache__/cookies.cpython-310.pyc,, +pip/_vendor/requests/__pycache__/exceptions.cpython-310.pyc,, +pip/_vendor/requests/__pycache__/help.cpython-310.pyc,, +pip/_vendor/requests/__pycache__/hooks.cpython-310.pyc,, +pip/_vendor/requests/__pycache__/models.cpython-310.pyc,, +pip/_vendor/requests/__pycache__/packages.cpython-310.pyc,, +pip/_vendor/requests/__pycache__/sessions.cpython-310.pyc,, +pip/_vendor/requests/__pycache__/status_codes.cpython-310.pyc,, +pip/_vendor/requests/__pycache__/structures.cpython-310.pyc,, +pip/_vendor/requests/__pycache__/utils.cpython-310.pyc,, +pip/_vendor/requests/__version__.py,sha256=SKjnGRNIWoxDQR1pAkRW3fen6mAXw7MruEBPlqvEjuE,455 +pip/_vendor/requests/_internal_utils.py,sha256=zDALdxFfs4pAp4CME_TTw2rGyYR2EGBpSehYHgfn8o0,1138 +pip/_vendor/requests/adapters.py,sha256=v-nXh1zlxNzGQWQicaDrnsMmus75p2c99GPOtPl-6uw,22081 +pip/_vendor/requests/api.py,sha256=IPHU2zrGr6hURdheImh9lqurXPhQlv4PFOkjik6dmSQ,6561 +pip/_vendor/requests/auth.py,sha256=xe7s91xl3ENjQgRlZP3-2KsACnXYHAiLOuHLDw6nyyQ,10512 +pip/_vendor/requests/certs.py,sha256=fFBPJjnP90gWELetFYPbzrsfZgSZopej7XhlkrnVVec,483 +pip/_vendor/requests/compat.py,sha256=xfkhI1O0M1RPT9n92GEeoalPuBOYMsdApi7TONmwWD8,2121 +pip/_vendor/requests/cookies.py,sha256=PIxSKntoUn6l2irwR-CBMgm0scK8s-6yUZzwoCVIAdo,18979 +pip/_vendor/requests/exceptions.py,sha256=-_Uvqm89mT79nPWoxlf_NF7JawnsfHcJdAeIipOiAQg,3377 +pip/_vendor/requests/help.py,sha256=HQ9KRPaFWwmEYS46TnLTyaGYXGNv-G3RQyO9yUfa7Gg,4104 +pip/_vendor/requests/hooks.py,sha256=LAWGUHI8SB52PkhFYbwyPcT6mWsjuVJeeZpM0RUTADc,791 +pip/_vendor/requests/models.py,sha256=eBTofFVVYXXqpuqkMrPzRNYKJfuICHhw5bPn6bi-lEI,35890 +pip/_vendor/requests/packages.py,sha256=ry2VlKGoCDdr8ZJyNCXxDcAF1HfENfmoylCK-_VzXh0,711 +pip/_vendor/requests/sessions.py,sha256=xn0NHgjfsCdvZoi11vUDP8zS0LPM0sVuZP_6qYNC7kw,30949 +pip/_vendor/requests/status_codes.py,sha256=ef_TQlJHa44J6_nrl_hTw6h7I-oZS8qg2MHCu9YyzYY,4311 +pip/_vendor/requests/structures.py,sha256=ssrNLrH8XELX89hk4yRQYEVeHnbopq1HAJBfgu38bi8,3110 +pip/_vendor/requests/utils.py,sha256=dZh-kGRO-A8sLHdHp_hcS_5u4syIDRRE2T-un0s4HwM,32407 +pip/_vendor/resolvelib/__init__.py,sha256=g_NlynQjt3xlCb_JRtRIrV6Y-zBYSkQMxH4NtoC4Axc,563 +pip/_vendor/resolvelib/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/resolvelib/__pycache__/providers.cpython-310.pyc,, +pip/_vendor/resolvelib/__pycache__/reporters.cpython-310.pyc,, +pip/_vendor/resolvelib/__pycache__/resolvers.cpython-310.pyc,, +pip/_vendor/resolvelib/__pycache__/structs.cpython-310.pyc,, +pip/_vendor/resolvelib/compat/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/resolvelib/compat/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/resolvelib/compat/__pycache__/collections_abc.cpython-310.pyc,, +pip/_vendor/resolvelib/compat/collections_abc.py,sha256=RCp_gXYFZUg2DF2iUPTTD-XSpBTia4xEuJhjbXNzQyM,162 +pip/_vendor/resolvelib/providers.py,sha256=4rEMGvu_xM5qx42oiIeMwgfwsrd1vCUZusmbfvMknWg,5762 +pip/_vendor/resolvelib/reporters.py,sha256=Yi7l5VMEKyhL20KIEglPukQHWJHkweV4e4amcJs-4yk,1401 +pip/_vendor/resolvelib/resolvers.py,sha256=nlrz0Zql6opJgYgnBoFg3FwG_Z9lGp8rAi7hooQ33E8,17698 +pip/_vendor/resolvelib/structs.py,sha256=8HTLTjfJCdDs2FBt3EqaNiFbn0oelLG9OQK9htCvBpE,4959 +pip/_vendor/six.py,sha256=MB08ff_RApHF8XMk2vSx581-xTyX6sf_pQOtz6j1BZU,35547 +pip/_vendor/tenacity/__init__.py,sha256=YfrArVagvtYH5gcjBOlOQ2u6dx2C2N4X1x0DOUBXv5Y,18774 +pip/_vendor/tenacity/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/tenacity/__pycache__/_asyncio.cpython-310.pyc,, +pip/_vendor/tenacity/__pycache__/_utils.cpython-310.pyc,, +pip/_vendor/tenacity/__pycache__/after.cpython-310.pyc,, +pip/_vendor/tenacity/__pycache__/before.cpython-310.pyc,, +pip/_vendor/tenacity/__pycache__/before_sleep.cpython-310.pyc,, +pip/_vendor/tenacity/__pycache__/nap.cpython-310.pyc,, +pip/_vendor/tenacity/__pycache__/retry.cpython-310.pyc,, +pip/_vendor/tenacity/__pycache__/stop.cpython-310.pyc,, +pip/_vendor/tenacity/__pycache__/tornadoweb.cpython-310.pyc,, +pip/_vendor/tenacity/__pycache__/wait.cpython-310.pyc,, +pip/_vendor/tenacity/_asyncio.py,sha256=jZcrONVfckAiLERCKTxI9DJ_Aeq4fquZj9G7Vr1_I7s,3406 +pip/_vendor/tenacity/_utils.py,sha256=J2-zhV7bDTTuye-U8jtimO7lN1x70_a23qAdKniuzSE,2012 +pip/_vendor/tenacity/after.py,sha256=mJq5ygM_NzL69Bx63RbI24IU5KgGHqmwl3AbQXiTCTc,1542 +pip/_vendor/tenacity/before.py,sha256=RmWTv09-aU_3kFVRJw6PX3dp74ZZqnRD1UZUoCWw5XY,1417 +pip/_vendor/tenacity/before_sleep.py,sha256=gSQPoPHevxpluUv0ASzd2Z4AOfq8Q8Y7XOns32cL4n8,1966 +pip/_vendor/tenacity/nap.py,sha256=5DH1ui6-d3X4ZsQCRKJhY5jaQ0NdYZ2AEqt7Svt5VFM,1426 +pip/_vendor/tenacity/retry.py,sha256=VsJQ9DcYTMr0ZeV43yhQfBDDJD1y5av52TJ0OSwvqLw,6858 +pip/_vendor/tenacity/stop.py,sha256=lVnfBu2fzvqVtsL-HH8o1m_HborN7zLnlXBWa2UzM-A,2886 +pip/_vendor/tenacity/tornadoweb.py,sha256=2wGpfDdTztK9Sk74ARv8prohTReTQzst9a1m1qo5bBs,2204 +pip/_vendor/tenacity/wait.py,sha256=t16nLHioncGDdKA6ETwTNzABC-RrZiR-7HS1pXikVsg,6882 +pip/_vendor/tomli/__init__.py,sha256=fUFJngh-LwLWqbgw4Vc7wvxnfTdrIK8Nc7wvydyxOjw,236 +pip/_vendor/tomli/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/tomli/__pycache__/_parser.cpython-310.pyc,, +pip/_vendor/tomli/__pycache__/_re.cpython-310.pyc,, +pip/_vendor/tomli/_parser.py,sha256=946C00VAWqHjKSueGK44YSAU_Ufwg4LQmvd8yqta2dg,23118 +pip/_vendor/tomli/_re.py,sha256=tGGogP0HJnQDBSITAPldXRB5TLQeaC069FBzxVOOy5k,2764 +pip/_vendor/urllib3/__init__.py,sha256=FzLqycdKhCzSxjYOPTX50D3qf0lTCe6UgfZdwT-Li7o,2848 +pip/_vendor/urllib3/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/urllib3/__pycache__/_collections.cpython-310.pyc,, +pip/_vendor/urllib3/__pycache__/_version.cpython-310.pyc,, +pip/_vendor/urllib3/__pycache__/connection.cpython-310.pyc,, +pip/_vendor/urllib3/__pycache__/connectionpool.cpython-310.pyc,, +pip/_vendor/urllib3/__pycache__/exceptions.cpython-310.pyc,, +pip/_vendor/urllib3/__pycache__/fields.cpython-310.pyc,, +pip/_vendor/urllib3/__pycache__/filepost.cpython-310.pyc,, +pip/_vendor/urllib3/__pycache__/poolmanager.cpython-310.pyc,, +pip/_vendor/urllib3/__pycache__/request.cpython-310.pyc,, +pip/_vendor/urllib3/__pycache__/response.cpython-310.pyc,, +pip/_vendor/urllib3/_collections.py,sha256=RQtWWhudTDETvb2BCVqih1QTpXS2Q5HSf77UJY5ditA,11148 +pip/_vendor/urllib3/_version.py,sha256=Cs83ZyfrMWqd18tvuyiZ-SW91-r7-fsCZ-S3EnE-7Vk,65 +pip/_vendor/urllib3/connection.py,sha256=ml6ucQ9HfP5eR3t_x7Qpgkke62PF92i-b_XYrIUdZeI,19293 +pip/_vendor/urllib3/connectionpool.py,sha256=itteZaSObupTC6p-6YYcI3KTQdLwgQxlS01w_hOoQqA,38198 +pip/_vendor/urllib3/contrib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-310.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-310.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-310.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-310.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-310.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-310.pyc,, +pip/_vendor/urllib3/contrib/_appengine_environ.py,sha256=POYJSeNWacJYwXQdv0If3v56lcoiHuL6MQE8pwG1Yoc,993 +pip/_vendor/urllib3/contrib/_securetransport/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-310.pyc,, +pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-310.pyc,, +pip/_vendor/urllib3/contrib/_securetransport/bindings.py,sha256=jreOmmwBW-Cio0m7I_OjmP028nqgrGuo_oB2f7Gir3s,18168 +pip/_vendor/urllib3/contrib/_securetransport/low_level.py,sha256=0KKeznz3h0z-SBDbCtGorDfgCgiZ30VQOqkX5ZgaPBY,14304 +pip/_vendor/urllib3/contrib/appengine.py,sha256=nlIR6iWZ0A1cV9X4dYwdx7H1F1tqGE7ai9QCfJ7ntFo,11348 +pip/_vendor/urllib3/contrib/ntlmpool.py,sha256=JCCrvNQpXdL3eb_D4AoviNnl71nYhSX2r-hG9N-dPf4,4668 +pip/_vendor/urllib3/contrib/pyopenssl.py,sha256=093d4DdfHcz0h8KcEg-D9fQEUtXaVLENmOkzOqNQ5eU,17402 +pip/_vendor/urllib3/contrib/securetransport.py,sha256=ozB5tLGYiVgN2NLx9vvzVxjdtY9nNj9mBxGsCYTwEGI,35356 +pip/_vendor/urllib3/contrib/socks.py,sha256=RqYih4HGeICnKzmYnG3MMo2xMlCdwb1bAdEuo6zCA_Y,7313 +pip/_vendor/urllib3/exceptions.py,sha256=QDT9xy1fNxui5aS7dMabeb1gokQOQ-zOT7XiDp-O5Qo,8540 +pip/_vendor/urllib3/fields.py,sha256=0KSfpuXxzXUMLkI2npM9siWOqCJO1H4wCiJN6neVmlA,8853 +pip/_vendor/urllib3/filepost.py,sha256=BVkEES0YAO9tFwXGBj1mD9yO92pRwk4pX5Q6cO5IRb8,2538 +pip/_vendor/urllib3/packages/__init__.py,sha256=FsOIVHqBFBlT3XxZnaD5y2yq0mvtVwmY4kut3GEfcBI,113 +pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/urllib3/packages/__pycache__/six.cpython-310.pyc,, +pip/_vendor/urllib3/packages/backports/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-310.pyc,, +pip/_vendor/urllib3/packages/backports/makefile.py,sha256=DREmQjGcs2LoVH_Q3hrggClhTNdcI5Y3GJglsuihjAM,1468 +pip/_vendor/urllib3/packages/six.py,sha256=dUImuFN7dZON9oeQQqHjXdwH3n2Oxr9148Ns4K4Y2xg,35743 +pip/_vendor/urllib3/packages/ssl_match_hostname/__init__.py,sha256=d-Tyw37qbvVdcjcVF4WLYiM7AXaOpIg386C2P2uB5Ks,951 +pip/_vendor/urllib3/packages/ssl_match_hostname/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/urllib3/packages/ssl_match_hostname/__pycache__/_implementation.cpython-310.pyc,, +pip/_vendor/urllib3/packages/ssl_match_hostname/_implementation.py,sha256=WXs1yNtk9PsYVmeTJQAcqeAm81zbzeabEWWf-xRJSAo,5839 +pip/_vendor/urllib3/poolmanager.py,sha256=blNTYqVqFg9zUGncVtyXk1HQsTxKO1Cy9hfGVLAGvhM,20299 +pip/_vendor/urllib3/request.py,sha256=Fe4bQCUhum8qh3t1dihpSsQwdyfd5nB44cNX8566DmM,6155 +pip/_vendor/urllib3/response.py,sha256=LjfUJBUhwPrJTrGgNI3WoySUizNEPd1Xiv71YxE2J7Y,29024 +pip/_vendor/urllib3/util/__init__.py,sha256=UV_J7p9b29cJXXQ6wTvBZppJDLUeKQ6mcv0v1ptl13c,1204 +pip/_vendor/urllib3/util/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/urllib3/util/__pycache__/connection.cpython-310.pyc,, +pip/_vendor/urllib3/util/__pycache__/proxy.cpython-310.pyc,, +pip/_vendor/urllib3/util/__pycache__/queue.cpython-310.pyc,, +pip/_vendor/urllib3/util/__pycache__/request.cpython-310.pyc,, +pip/_vendor/urllib3/util/__pycache__/response.cpython-310.pyc,, +pip/_vendor/urllib3/util/__pycache__/retry.cpython-310.pyc,, +pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-310.pyc,, +pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-310.pyc,, +pip/_vendor/urllib3/util/__pycache__/timeout.cpython-310.pyc,, +pip/_vendor/urllib3/util/__pycache__/url.cpython-310.pyc,, +pip/_vendor/urllib3/util/__pycache__/wait.cpython-310.pyc,, +pip/_vendor/urllib3/util/connection.py,sha256=hoiT3Z-vROOSOB-4JrFyRKzF67xYt-ZTFMTiYj1yd6Q,5070 +pip/_vendor/urllib3/util/proxy.py,sha256=xMGYpCWlY1Obf1nod_fhOG3rk3NTUM2q_BJmj6B_NmU,1660 +pip/_vendor/urllib3/util/queue.py,sha256=mY2d0cfoJG51UEKZwk_sJMwYraofNfQWq7Larj9xh_o,520 +pip/_vendor/urllib3/util/request.py,sha256=O-NJTFysuN_wgY33pne8xA1P35qv3R7uh67ER9zwqYM,4266 +pip/_vendor/urllib3/util/response.py,sha256=685vBStgxTo8u3KoOilR6Kuh7IGPZr7TmzrP9awEtqU,3617 +pip/_vendor/urllib3/util/retry.py,sha256=6xS4OYGWN2gz8kX34RH6ly7Uc6YcfCb2Z3V0QMdHpys,21993 +pip/_vendor/urllib3/util/ssl_.py,sha256=WILvlnNl3FxrO1-AuSJzGBuFTLCNIfkzRbhNvIuxseU,17672 +pip/_vendor/urllib3/util/ssltransport.py,sha256=r8zXGD19jRdpYPlAt9wR-mBg9aVRIB3UkV1GiT5uENQ,7152 +pip/_vendor/urllib3/util/timeout.py,sha256=Ym2WjTspeYp4fzcCYGTQ5aSU1neVSMHXBAgDp1rcETw,10271 +pip/_vendor/urllib3/util/url.py,sha256=3MdcqSYaGz4A2FIwYwe4KclwnrTn6ZdEG1-sUoCniUo,14479 +pip/_vendor/urllib3/util/wait.py,sha256=qk2qJQNb3FjhOm9lKJtpByhnsLWRVapWdhW_NLr7Eog,5557 +pip/_vendor/vendor.txt,sha256=gryMWlplkGEQkjoFzG1xYAfARSAghGWVWX-fGObCxOw,386 +pip/_vendor/webencodings/__init__.py,sha256=kG5cBDbIrAtrrdU-h1iSPVYq10ayTFldU1CTRcb1ym4,10921 +pip/_vendor/webencodings/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/webencodings/__pycache__/labels.cpython-310.pyc,, +pip/_vendor/webencodings/__pycache__/mklabels.cpython-310.pyc,, +pip/_vendor/webencodings/__pycache__/tests.cpython-310.pyc,, +pip/_vendor/webencodings/__pycache__/x_user_defined.cpython-310.pyc,, +pip/_vendor/webencodings/labels.py,sha256=e9gPVTA1XNYalJMVVX7lXvb52Kurc4UdnXFJDPcBXFE,9210 +pip/_vendor/webencodings/mklabels.py,sha256=tyhoDDc-TC6kjJY25Qn5TlsyMs2_IyPf_rfh4L6nSrg,1364 +pip/_vendor/webencodings/tests.py,sha256=7J6TdufKEml8sQSWcYEsl-e73QXtPmsIHF6pPT0sq08,6716 +pip/_vendor/webencodings/x_user_defined.py,sha256=CMn5bx2ccJ4y3Bsqf3xC24bYO4ONC3ZY_lv5vrqhKAY,4632 +pip/py.typed,sha256=9_aEgAx4lyfhJKT_8nv7mk-FpX3Mdtn8cV5Fw11xicg,290 diff --git a/Scripts/Lib/site-packages/pip-21.2.3.dist-info/REQUESTED b/Scripts/Lib/site-packages/pip-21.2.3.dist-info/REQUESTED new file mode 100644 index 0000000..e69de29 diff --git a/Scripts/Lib/site-packages/pip-21.2.3.dist-info/WHEEL b/Scripts/Lib/site-packages/pip-21.2.3.dist-info/WHEEL new file mode 100644 index 0000000..385faab --- /dev/null +++ b/Scripts/Lib/site-packages/pip-21.2.3.dist-info/WHEEL @@ -0,0 +1,5 @@ +Wheel-Version: 1.0 +Generator: bdist_wheel (0.36.2) +Root-Is-Purelib: true +Tag: py3-none-any + diff --git a/Scripts/Lib/site-packages/pip-21.2.3.dist-info/entry_points.txt b/Scripts/Lib/site-packages/pip-21.2.3.dist-info/entry_points.txt new file mode 100644 index 0000000..d48bd8a --- /dev/null +++ b/Scripts/Lib/site-packages/pip-21.2.3.dist-info/entry_points.txt @@ -0,0 +1,5 @@ +[console_scripts] +pip = pip._internal.cli.main:main +pip3 = pip._internal.cli.main:main +pip3.8 = pip._internal.cli.main:main + diff --git a/Scripts/Lib/site-packages/pip-21.2.3.dist-info/top_level.txt b/Scripts/Lib/site-packages/pip-21.2.3.dist-info/top_level.txt new file mode 100644 index 0000000..a1b589e --- /dev/null +++ b/Scripts/Lib/site-packages/pip-21.2.3.dist-info/top_level.txt @@ -0,0 +1 @@ +pip diff --git a/Scripts/Lib/site-packages/pip/__init__.py b/Scripts/Lib/site-packages/pip/__init__.py new file mode 100644 index 0000000..3d8dd5c --- /dev/null +++ b/Scripts/Lib/site-packages/pip/__init__.py @@ -0,0 +1,13 @@ +from typing import List, Optional + +__version__ = "21.2.3" + + +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/Scripts/Lib/site-packages/pip/__main__.py b/Scripts/Lib/site-packages/pip/__main__.py new file mode 100644 index 0000000..fe34a7b --- /dev/null +++ b/Scripts/Lib/site-packages/pip/__main__.py @@ -0,0 +1,31 @@ +import os +import sys +import warnings + +# 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__": + # Work around the error reported in #9540, pending a proper fix. + # Note: It is essential the warning filter is set *before* importing + # pip, as the deprecation happens at import time, not runtime. + warnings.filterwarnings( + "ignore", category=DeprecationWarning, module=".*packaging\\.version" + ) + from pip._internal.cli.main import main as _main + + sys.exit(_main()) diff --git a/Scripts/Lib/site-packages/pip/__pycache__/__init__.cpython-310.pyc b/Scripts/Lib/site-packages/pip/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..cb546157e66026b908e53f6ecad1f1ae198e08d5 GIT binary patch literal 653 zcmYk4&2H2%5PWdfe-w4yzy=XwTUYr^yIs~!mh1K>h3Ul6y%Cu-|5Lh{FJ!X@MAbCxp zQYn1}DinCBYrH2AKy19Xc$DXB?Kj;jt4x#I-pZV6<{GgB%pcF59A?`>p`~ofhqOF* z(pqqH>cbrh&B}k6S?8&C2Ca9!HMEOv9FiiJ(6sfxF_)76XT3Zs=J3&1wdqvxU{)UM zm6NV7%7rmC7W3{5ikI4KuI^Y+R)N~XeJiUoxdto(dr3sv zmt|)AA!(#;0|f?#o1-*x;g?MLe7ZA?eQ$NUcHv!IOlG)ImLI?&y=qwwF?u(|bdPPy b7W|so4e{yI#;C4_XQ4Y7&bh^sNW^~u^7gQb literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/__pycache__/__main__.cpython-310.pyc b/Scripts/Lib/site-packages/pip/__pycache__/__main__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d681d27bde7e69b972a6c380223352489fedb927 GIT binary patch literal 614 zcmYjN&1w`u5bo~z**4kTLZ_`+%8W)k1nu*e@AI!AA>X>-e~U19h0lFN zr--5@Nw+^uX&dv0@8mp8-K^aN~JPTbc$v z@0KDEv<#U$DnRBju(Mqi!cavj{t(b^=Aaxc$LSt&=w=`GuKUi4&QR5iO!yB}NT!~6 zo@Gm^t1R=eE-GW;>L7Vk%X}dVT@@lZ2kW${Cd~6(Hc%M5_VLoFRS6U7!>)F6+cV>Q z;MUIb3u!AXbUv(QGxu=;O@5(#P@CHCX4$qg;JAU(wvtQe6rAd^gJNAduuX?_8AQgI zX~6z#dgl$)7ElOEdbgeA4{Kc~nXZsm$uh}Hoph?~05|keznu@^Qa7K7y^C1yeii8p zF@?(}FU?Acr_Zxv{oYEu7TJk0r4!TD0>o===JHBfCEiMh{U4sdvM%uqVwPK7H%?%c zaJqrVH;XxeYM%VPX;QB}KiXdFCB@n90Xj}N<@7KfQXU>eW6D_=#x(vt4E9<0^AC{6 Bxf%cf literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/__init__.py b/Scripts/Lib/site-packages/pip/_internal/__init__.py new file mode 100644 index 0000000..6afb5c6 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/__init__.py @@ -0,0 +1,19 @@ +from typing import List, Optional + +import pip._internal.utils.inject_securetransport # noqa +from pip._internal.utils import _log + +# init_logging() must be called before any call to logging.getLogger() +# which happens at import of most modules. +_log.init_logging() + + +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/Scripts/Lib/site-packages/pip/_internal/__pycache__/__init__.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b231650fb28e5c2a80075a4c3f8edd28bcc4aaee GIT binary patch literal 774 zcmZuv&2H2%5Vn(Snr>SO2`)Y1>mo=vR01l55J;TLg4CX(NRb;)cTJtxwH;uqa)ReT zaO53$0G`2D#DQ1f#CVHP4;^JDGyeO&`E0$jGbL!>fBag$P6+uKi>o%l;wid2z#xdA ziuAOmeNrbh)`?2%4F9Q`^m(0A0{NGXuLS1`kwF3!ie0ix!~`}^GLegoPm_8ol0!1v z{Ea7)SrW1X>3k?&887v~)qF-n)+)US8Mg};atnU6Lr3HCe}+s+^yldA76w6)2{QXY zDY>8*A`6Q%ym{8@0ee5&w9RM&P%1(F)#}! zU}5Owu$VG5>C5Rld4Wf8A><`rCcty4++F4X*wTCB_N!_k{c=1mJKa}iWq4(zsibow zxaz^)qle}CARBwac8m6%<;H-Wqa3$!Y1zubgGDvU5$U)R25(nJ)qP+@yb0$<4jAwufB4JoR#hF{BZ bCBzpVipRYcqk<<Yb@()Z4Dw>Yc4-@is%JnXBe>TEhzS&9Um3Drdq%bG$mP%63?6PE;qF zrD~};S)FW7Ri~QM)#>I;b*4F6oo&ul=hV1tc%pf-dQz30aK3q}dP%e4_eE<)lXPW1#=XA}V;6DKFrLfXmtS+K%^q%#f+taJhzpk-KHub*7rgn|$3%=fXkxl!P z{@3QUb%V{Y+4rqoz4{VH&9M_0bpoSaM(reb^!=dA~! z?|CQ};+7wIq7_7u&&#G9Q#gXWFj$k5s>1#C;J(j1w1|HHHuq7(^a&c_9~=@j)oWqs ziS4x(kL$h=Wdo%7&DIs*QU?_~ay&tm1>D;TBBsvbCXS)D;a^4F=XE;1;h%xZWjtaA zz}LX_TFUY7Yv6bj_hrefcT?e6r@@0Cl{0u=!y_&Obo7qqf$;(L#7NAB#f&Y37nu=3 zFwhH;_}E~X4-96{YZ#SD?2f)mY3EWf*2S+6w zgLSvYh0KaN4_b-9{aSSMG9&zCyTwf)BaK){E2=epnOzGa4=2K>solZZQjLzz5`MVO zA4Bse8i#7oKIhf*tIPiVq#nlGZ1uUXdDnwAUgJBf-bx&YVs&|Y%U^vph&OBP8fUBD ztO+oZOE&=I{MFkjLaUgyDuTqXw9>N|tF55*tQSNW4c>ZIaWh@*Vrz#uCWwN>^UeSR zF$G{7wr=Pp-O;Tt4b%RjXthiID_9&1UdFv(CQ;~lGVgiKm~9i^$%5zI*{+3Y4}Ti# zDcXiWnc7YP5b1*SpQ9BF)go<W;#}{)X8)*y~z&t1`bnu+Mc0n zcP{=mcC|E1+ckA9a-P@3TlaJwxaiv3c={L^EWc+EhQp%?Ta1r}$5UH*to@I#aUYlK z*4zb=)FM_3oM*dx-AfHz)%PvylxV^35M0T zIY(2tQ{mfDM0ySjE~-_oCGNc-4Ba(9)ry!AMA#Wk{6Onq&8WYY;wE=UQKaiEw~Gh( zR?WK||U2%*3sJ<^WuklOo~Jsa_H^eJs#y38~+c`qR>+HKt{j zWDQazt(zot1zIMI>q=?MEcc+npl;ezy|yb0pdJqHR2#b&yJ9V zyQv0+D6Gda3#8~=Wwsi$u2LbxH^O)g3YbHzCHm_q| z(rl@1vxFU1llIoV8s8AoXs^pmeG}H?h(O3WudXiIJ2*8uqD5dT766QQOIgRt>y}DPwB>k(+{T1h5zB#F^q)d&~F^I%Xq{Zz=4K^c7<#}%UaB08N4&hW?8&# z=CB;zS(ayGcsqWM75qFKXGJ#QkNNp|jg|ZYn?&0bn_e&MTiFuS_FGQ<-WCr=^f%8V$lJ^rL4vLmQbu&hljNPOZA4P5$gzu6LdnNHO&pTpUT#nIL%vI07=%VfX^OEuNH1!3 zuK>L8oB(C>XmL*ZUgj=r_>q6V#V_4LRgh0? zylZKOG4~+Cn1$vhoK1EzE?ChQJ>c)!YSG`g+`KUHV7m&7e?hYq^TdtCIhSSu?ub

FC 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 bFxTMDYgF)8M+q$7UaHjF^^ca8)`I^9riH+H literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/__pycache__/configuration.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/__pycache__/configuration.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1bef70c9b0993810bc4fa28bdc88058b52c8e2a1 GIT binary patch literal 10743 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 DkL23x literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/__pycache__/exceptions.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/__pycache__/exceptions.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..592736151f4c169209d6a4b90b4d23246097016b GIT binary patch literal 15315 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 literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/__pycache__/main.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/__pycache__/main.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0df6b2151e793342a050b6668c59b7d8a76854d0 GIT binary patch literal 598 zcmYjP!EV$r5Vfx5LQ*c{m6ucqDM`Se9+_ILh zd7G^>&h#BU)A={Pp6Tq2Ef45VT9Vh>n8 zKYsb5n1Dj+Y01a==2KAKL#U|n$8@yVm@Yz~zKfpdU;$kWgLjn0kf$OVkP5qf@Pmaz z%KdBCC$fUiv9_+)^4am`)NF$agWRl~vnZ?n0_0oc8g-?DmLC+-9byHow<>}>+fPDL zl|&QasaN%d+5yT${)SQ6D$^By81v*LGMLQ0!+93&CThG|=Ho#eJPj_SR|@F^OnVd0 YTV_rha}WIhJ@(9N(L=w&qK*6BP?qIjb0`gtW`^(Y@4b2R zEZXg+1<&99{;zTWs%8BX7psp8iyy(OW-u^|k;EF{ubq(89@qruPU58Qz)fp|T3R2} z&7PYyQg7gyc`aE>n}cTB8nn#1p7?2d(1v+~d9STOhpn+D{H}AGwe~FL|A`#ggA1(9 zIUT-m%)*p2J;@W^bxP;Q*|c;Y#!8po=edqW7A8Pc(;`jcu3c_C z$PU6JW?%3ZlUVYUXS!^yEP(dngG}i#NkZiQOiCdmg31;T&K-Dv0 z#7jqM30rpWM(M_yr+>C&2Sj`=2iwCwf2pHHOxW9t2D?>RQ22X@Y)UZE!&WAg( z7>Bb^vfj@Tl?gVT|k;1+kmLu zpLNc>z?6WDv4tw#Jk;aT-4}5Nwp^KH2mxn-5)&EmfI+52TFB|U7G6rj=R8=73{cD^ z(5o=c9a~<3pK@bo5-05O6i`p^a~;Ns>bj*Ts|-|SV;7ZWtgJ<29z8Gp#o9=V(4W%> zQ9@(-F1su-A zk`pWfdr$zF{|6iFz+IwVAth_i*H{NM68T%*DAxA9!eQ&|!dEtG0m{x5Yu?mrMe~TL z-!CaHE-9M#t!E$3TeG@u7Of-j{;BoikFKR#)4x_oEO|D-gVr%QxA&}hr|^y4|6r}TU)etIXuoI{e$gq~M=s>whrz^QMQXNJnwP zd(9?==TRu3sKL2Y+h&b>69t*Z^B>&&A>E=s4V4iAo04KCamX%4AAR$FIcocKiTMAg(92lFo=tDT(SSYC& zRZdkkVpDySdrL8jL&1iF1FpPZfFXinV~|<0g0}&dd|-V7Ae!ky_u@!lQKyG|Qv$?G zAn3J`kV_#;3@GJT;Q_;3NDY8>s|b7n2Fh#&euR<6BalngSWFUz0WlsYd@qcqG!hK- zK>_%L3W%;ejNyAo&Be6Tdu=&G3s&q^bR-&9?t-Gu)ja^jj3D8)Y;jC z`>_gl6ZrBChl0ima4>zqHl_$(YLp4CXeKlrhhRmBz)W(;z9(O|E6EE7X1o8l=+kqg zKx_r*LKYsHS97rCoxsmFjCPIJ_uWr#-RRwhJHK`~<~*5IhM7-2BP@VQ5pD-Tm4`vl zwdIF!Nk|IA?DJQP+k6gwq5kCoJ}WwacevtzB%m>v(!*Gf7uen2rmrLqmB{8s^z2!T zFrm23Rn#}B2FyA5s11_mKK2%=sW$21IF7~`gfz@ph!-nDfF;rJLyyx~SY6gDy|bI| zlLb;RXd%UJ0`Y{V1EQ{avrpg05{V3MVJLlJcA5sOM-iO;o}5EIRq0zLY+HT{G5t0S zWj$6{t4mkpJd@avKraJDy>#}tmTQIticK17)1pWZIU6`&$Jbpin`gDWJZnfyMJ+uO zc_@vhLok)DYy;M3T}HWvOG8$Y5kQq!oYescssm7VOkE40=P+HKiCfuPDGw5RSNRbR z-^Bs@rIqIE5_)u|)Tlr@^%@5Ms!v?ILws`e#J64B^L%2%pLV43yoi*<=BuphX%2ZH9au!UCcb?EUeEEoPR+0V5Af&Q$N&HU literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f5e2ba0fc9bac4cb7c8ee44d921b92180a647186 GIT binary patch literal 4376 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 None + self.path = path + self.setup = False + self.bin_dir = get_paths( + 'nt' if os.name == 'nt' else 'posix_prefix', + vars={'base': path, 'platbase': path} + )['scripts'] + self.lib_dirs = get_prefixed_libs(path) + + +@contextlib.contextmanager +def _create_standalone_pip() -> Iterator[str]: + """Create a "standalone pip" zip file. + + The zip file's content is identical to the currently-running pip. + It will be used to install requirements into the build environment. + """ + source = pathlib.Path(pip_location).resolve().parent + + # Return the current instance if `source` is not a directory. We can't build + # a zip from this, and it likely means the instance is already standalone. + if not source.is_dir(): + yield str(source) + return + + with TempDirectory(kind="standalone-pip") as tmp_dir: + pip_zip = os.path.join(tmp_dir.path, "__env_pip__.zip") + kwargs = {} + if sys.version_info >= (3, 8): + kwargs["strict_timestamps"] = False + with zipfile.ZipFile(pip_zip, "w", **kwargs) as zf: + for child in source.rglob("*"): + zf.write(child, child.relative_to(source.parent).as_posix()) + yield os.path.join(pip_zip, "pip") + + +class BuildEnvironment: + """Creates and manages an isolated environment to install build deps + """ + + def __init__(self): + # type: () -> 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 = [] # type: List[str] + self._lib_dirs = [] # type: 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 = { + os.path.normcase(site) for site in (get_purelib(), get_platlib()) + } + 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') 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): + # type: () -> 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, # type: Optional[Type[BaseException]] + exc_val, # type: Optional[BaseException] + exc_tb # type: Optional[TracebackType] + ): + # type: (...) -> 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): + # type: (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) + for req_str in reqs: + req = Requirement(req_str) + 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 dist.version not in req.specifier: + conflicting.add((installed_req_str, req_str)) + # FIXME: Consider direct URL? + return conflicting, missing + + def install_requirements( + self, + finder, # type: PackageFinder + requirements, # type: Iterable[str] + prefix_as_string, # type: str + message # type: str + ): + # type: (...) -> None + prefix = self._prefixes[prefix_as_string] + assert not prefix.setup + prefix.setup = True + if not requirements: + return + with contextlib.ExitStack() as ctx: + # TODO: Remove this block when dropping 3.6 support. Python 3.6 + # lacks importlib.resources and pep517 has issues loading files in + # a zip, so we fallback to the "old" method by adding the current + # pip directory to the child process's sys.path. + if sys.version_info < (3, 7): + pip_runnable = os.path.dirname(pip_location) + else: + pip_runnable = ctx.enter_context(_create_standalone_pip()) + self._install_requirements( + pip_runnable, + finder, + requirements, + prefix, + message, + ) + + @staticmethod + def _install_requirements( + pip_runnable: str, + finder: "PackageFinder", + requirements: Iterable[str], + prefix: _Prefix, + message: str, + ) -> None: + args = [ + sys.executable, pip_runnable, 'install', + '--ignore-installed', '--no-user', '--prefix', prefix.path, + '--no-warn-script-location', + ] # type: List[str] + 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(message) as spinner: + call_subprocess(args, spinner=spinner, extra_environ=extra_environ) + + +class NoOpBuildEnvironment(BuildEnvironment): + """A no-op drop-in replacement for BuildEnvironment + """ + + def __init__(self): + # type: () -> None + pass + + def __enter__(self): + # type: () -> None + pass + + def __exit__( + self, + exc_type, # type: Optional[Type[BaseException]] + exc_val, # type: Optional[BaseException] + exc_tb # type: Optional[TracebackType] + ): + # type: (...) -> None + pass + + def cleanup(self): + # type: () -> None + pass + + def install_requirements( + self, + finder, # type: PackageFinder + requirements, # type: Iterable[str] + prefix_as_string, # type: str + message # type: str + ): + # type: (...) -> None + raise NotImplementedError() diff --git a/Scripts/Lib/site-packages/pip/_internal/cache.py b/Scripts/Lib/site-packages/pip/_internal/cache.py new file mode 100644 index 0000000..7ef51b9 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/cache.py @@ -0,0 +1,287 @@ +"""Cache Management +""" + +import hashlib +import json +import logging +import os +from typing import Any, Dict, List, Optional, Set + +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.format_control import FormatControl +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__) + + +def _hash_dict(d): + # type: (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. + :param format_control: An object of FormatControl class to limit + binaries being read from the cache. + :param allowed_formats: which formats of files the cache should store. + ('binary' and 'source' are the only allowed values) + """ + + def __init__(self, cache_dir, format_control, allowed_formats): + # type: (str, FormatControl, Set[str]) -> None + super().__init__() + assert not cache_dir or os.path.isabs(cache_dir) + self.cache_dir = cache_dir or None + self.format_control = format_control + self.allowed_formats = allowed_formats + + _valid_formats = {"source", "binary"} + assert self.allowed_formats.union(_valid_formats) == _valid_formats + + def _get_cache_path_parts(self, link): + # type: (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, canonical_package_name): + # type: (Link, str) -> List[Any] + can_not_cache = ( + not self.cache_dir or + not canonical_package_name or + not link + ) + if can_not_cache: + return [] + + formats = self.format_control.get_allowed_formats( + canonical_package_name + ) + if not self.allowed_formats.intersection(formats): + return [] + + candidates = [] + path = self.get_path_for_link(link) + if os.path.isdir(path): + for candidate in os.listdir(path): + candidates.append((candidate, path)) + return candidates + + def get_path_for_link(self, link): + # type: (Link) -> str + """Return a directory to store cached items in for link. + """ + raise NotImplementedError() + + def get( + self, + link, # type: Link + package_name, # type: Optional[str] + supported_tags, # type: List[Tag] + ): + # type: (...) -> 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, format_control): + # type: (str, FormatControl) -> None + super().__init__(cache_dir, format_control, {"binary"}) + + def get_path_for_link(self, link): + # type: (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, # type: Link + package_name, # type: Optional[str] + supported_tags, # type: List[Tag] + ): + # type: (...) -> 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, format_control): + # type: (FormatControl) -> None + self._temp_dir = TempDirectory( + kind=tempdir_kinds.EPHEM_WHEEL_CACHE, + globally_managed=True, + ) + + super().__init__(self._temp_dir.path, format_control) + + +class CacheEntry: + def __init__( + self, + link, # type: Link + persistent, # type: bool + ): + self.link = link + self.persistent = persistent + + +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, format_control): + # type: (str, FormatControl) -> None + super().__init__(cache_dir, format_control, {'binary'}) + self._wheel_cache = SimpleWheelCache(cache_dir, format_control) + self._ephem_cache = EphemWheelCache(format_control) + + def get_path_for_link(self, link): + # type: (Link) -> str + return self._wheel_cache.get_path_for_link(link) + + def get_ephem_path_for_link(self, link): + # type: (Link) -> str + return self._ephem_cache.get_path_for_link(link) + + def get( + self, + link, # type: Link + package_name, # type: Optional[str] + supported_tags, # type: List[Tag] + ): + # type: (...) -> 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, # type: Link + package_name, # type: Optional[str] + supported_tags, # type: List[Tag] + ): + # type: (...) -> 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 diff --git a/Scripts/Lib/site-packages/pip/_internal/cli/__init__.py b/Scripts/Lib/site-packages/pip/_internal/cli/__init__.py new file mode 100644 index 0000000..e589bb9 --- /dev/null +++ b/Scripts/Lib/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/Scripts/Lib/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c1162cfbc0a86ee6c4de9cf46b49afa0b56c5bd1 GIT binary patch literal 293 zcmYjMu}%Xq49#`nRH^@v4RwHHU_uBX78bbWI#rP(H*s65xg<(*673i8EBpf=z&CV7 z`~(xeilI-kt!K;6&tW#33dZNx&-R_`_ejoBF?r<3H76^U!d9J_PY%!Bu!>-Iut8~p zFF>CBMuKxPtYxHlnYrKh;H`AzQIap1)?iR3bWqUp*y6OESH}yjZ7^DYh&16Vr}R54 z?^KI##keq7b#tp`NSDi@|OIEz4G8Me~ lH=7lEYxK#D2iF)!jb=(k>+85b*7tp|gTsgM@jTk8#UCH2T2cT2 literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..eee0d37d2564f57f8016d2b956b71b5135215d92 GIT binary patch literal 5194 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 literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e7cf41c69940c499041e66ededb2637b26bd6bea GIT binary patch literal 6000 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 WD|#JoJ6|bMuMWMW2c~b#n*R^HI(a1k literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..32fd9777b290e4c1ea2397cf6345f484acc9c3db GIT binary patch literal 22361 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 S{QJtb7ZcaET737q7ymC7;QmVh literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..053d00f66a121b41ccce95e66b61fdf30060a018 GIT binary patch literal 1327 zcmZux-HsGR6h2k`Gd<1Bu(B&kAOyMV3t3IPGR7D-Vjwa%JAu&Yq%68>p{4(<>Ve(K zUZ}GPSHxF->G^R5#;s3^;!M?T^RX9>DLk z*&IG@zQWhuL{Oku2^C9O#Z%5`&r7fJQ@;w*pbFEFfew|Yd=EIhsp&Fck8Z3Dl zsc0XP;h$&+67Ggy9~RwyC-Wz6k~ejy54%d%@{u-)=O%l-qLK)wL>V&a z#{ZGMX3n>|JivJ_#%8kOCZ7OB2A(^Xr_PG|eMDca6vsFm5G(;v53F|3l!+M?aX!0>b}%iX*zcJrQ< zb(A;SBQwH4Bg#EQh*`)+Y;olb_HL|`{U3XzO{KNpA^e0~eGewQ13$ABf3UcY686hE zYQ}rW>V2Gje3l-Adh#jQ%g-1?IfDoNSB`AsnSDC>X5FuzLE=qkw-Ro~=*vt9&J%3E zfgN1A(Pk~^s3kG~G3FuXEW+pNKe5OEzThpcot5jRy4yOfsc22}v{2gQRNVDg_s$*) z>_r61-v*RF<^7T$vsVl|hfNdjZPae8sV?h6U_x7{YDoW`T+9b3`w(ACwh;RvMc$7NTm@yrlI=h#%&%?7ysfz|aLS0m1tO-0F`7{~2_>{*I+nZQhd30fS)E4!l-rveSHDd3X dEN-}36?s+P=!-s+FX{GLYQQbnL252|{{qEdIr#tp literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/cli/__pycache__/main.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/cli/__pycache__/main.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..810adf264e044352b256e67997f9c9eeb116f1a6 GIT binary patch literal 1391 zcmZWoTW=gS6t+Fry=Ie?kZ{uoRKY%E!vjwhLX@fxNK0C!l`2LfjizI>nbdQ^_BPqo zZiQ5M~aXlDx5v*T+{p0k{4nn_~ z%k|~KD_mxX~wEwLa zzfQ>mG#)Oa`=Tf_v52y!;YFUQqOKxVDY0nkqEeIY3-|+cJSN(m7Eb=V9Vd(SOKDQBzg*+89dQ<h=b2M^Ej`EQXxUNy z%|P|fhSa$v#;Q7i4E?jM1%(_gW}CVzx7FJy?lad$0cxVCofW3uiabTs|DLS9 zmABblK{e2s;P{0BVHw;#Ik|UoE7E9r^Yd9%i=vuE%pe%ul+pPqt0KviGE!dW8E4Dx z;b9?b4!D~ZgfICU+K~%sfqp7Nh^_aEN~(x-zX3I>_SI%z!Bmh4jrEmG6HS~_8tzuA%Bx#2aoVR0sfzn(bTz#rfPGyrh13pX(|B3~^UBOylO7)b=xOkP$qfodk#-W$9@+b8|@ z|IJL%seOyWwo&i>$EJOtvTeiut4hF}*(WY-_v77H)pJ#F*^WuU_G#XF0*JJlQ=vZ1u{olyO?xH>xmOxBwgyzOV=#W zy7W@R@8WCLu0wjH4HlOP-m?1h)@C0o=RqcX->*YX0Q=VE^U;>ZZ`bdD84Z( z)mz_IB+&=lqr1t7N$~|`)%}v^iIkMXqHbE|IUFuxlBH5z98wvJEYDcNYDHAhRWkqj(Cx3w@x1$7@ge> z7=i(jCbtqDTf~+asPojFShY2^Pb_3f=NS0dmEP2s-hNP9CwPKjwpF7O1o?7dwoSYt zB0dS8SaNRKIkE0p$LNYR!K5|q*7yYM<6dn+hUUiaZJ28dlZobj;(Q`Z+Q92uBHVcJ z<@k;E+ZA{muFV3q9)35=#>4x{8?tgIVSQJ*BasZLnokIc_aOXnW29P81Wg{4QzSW6 zj^1rsSt$bdPaho@7seJ0u?%Dgen0FEz}pF~5wV^*1l4%odS*Shf5PAEdcz9e{qQ9U zA#uJKL4NsB-&T0#4!-~!sLt%ZaaQb>zgYZDP`*5jJ{oM&Lz%L2Lj~`?^92O4Z z?XqNIusJ%QgU_;ZFBvDC48BSP6i~QLb0}y@2U{u6Dk%oAY9KO6Z&yir0B(x`#A_8! z0_!4St0~J?&s4@rb)?#B45}LLRIT6AP6j|c%fkz=yjSC!uUFH`8Y|O;iFII37b?`= z?9X!@DDG)82Si;XnMigRZH^Ze)G8%$!iR$EHlzGm^>Rl`i+OTDXUU0&yc|`kJER5W z37d%vI)zR4W*SHP!gbv$7rf4ea`wxtP;-O|6A{1$gx;Is08mos4FuPon!q>Yx)wV? z7Gan)V;duk95cMX0zbe#yNx`%ZF@NQyW=>}4YVi!D;6C(9RmZR-+__Vu?4U|Qz-Ql z1Vw`ADqOx+so0}KF8Mgk!DjWi83$ZDJ4u5E&#!QlhUKaj23K86OXdDydU zfM}oEYP*S3J96$3;*sps&M}&}1T@b8j?e8Ons~L#w`yqC7fqm5yXi@$8bZCHEslipge2t%dhBBk`BbPH3MhjTXp`;C*P4>Btyz-K&q6OhC5co}_;WRHF(SE?+)w*}I4ti%(RI_HGTKWz# zWrC^zI(lrHfjb;gA(WkqVWTw{)lfZCFAMI;I=`@)z|bZO>zGR zK6Uw=&FmL*CQ|2ip@%7L{$nO~>fH25W=yQ)89++owgESIkuU~cXxKpVBy literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/cli/__pycache__/parser.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/cli/__pycache__/parser.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b207c2bc4c564e11cf9bf5ab5f1df64529700e1a GIT binary patch literal 9966 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 Qc(X9Obz}Bg-JLu7UwmH{RR910 literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c794bc4a62282f56df1b87f346833b93396d25fa GIT binary patch literal 7632 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

0JGp4F0WX#v)HlOw82Y*c`{0a>xUlX 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 CngVzL literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..36c8672a0d79ac56468f686cad83aeefbcea26e2 GIT binary patch literal 372 zcmYk2%}T>S6on^k`hys7A?U(|+b*;&T#1PNi5P4rl1VBI1H+gZ?9j9mG83?UBj3RX z@ENid7kvd+POJ;><$jj~=WyXF&)WmG-ao$P8@oSi@xL4^Ztdt33l1>g4t970H+T~_ zxr<%i!Y$rLpx4=22iVquZKFoBhFjyv0`}Tf2PLDCk5JX}qbQ6jFM$s*e1dc*4`)FX zCxeL(XB37py$cgKu8toge-?xZqQfMZjOjRt{`?0pq|-q>y7$q}`vwZnp8Cc28eb78 zUQL>*l9P)|I+4!>E7pX@N@beBav{i2syW-Rf|DuJMii&9Smqfsf}pgJxzWU?h?Yj2 zt3;}pJuYJ4Kt;tsp3MP=j*C_y;Qu+#7+GSy>H 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) + + subcommand = create_command(subcommand_name) + + for opt in subcommand.parser.option_list_all: + if opt.help != optparse.SUPPRESS_HELP: + for opt_str in opt._long_opts + opt._short_opts: + options.append((opt_str, opt.nargs)) + + # 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`)i + :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/Scripts/Lib/site-packages/pip/_internal/cli/base_command.py b/Scripts/Lib/site-packages/pip/_internal/cli/base_command.py new file mode 100644 index 0000000..eea3830 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/cli/base_command.py @@ -0,0 +1,214 @@ +"""Base Command class, and related routines""" + +import logging +import logging.config +import optparse +import os +import sys +import traceback +from optparse import Values +from typing import Any, List, Optional, Tuple + +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, + InstallationError, + NetworkConnectionError, + PreviousBuildDirError, + UninstallationError, +) +from pip._internal.utils.deprecation import deprecated +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[Any]) -> int: + raise NotImplementedError + + def parse_args(self, args: List[str]) -> Tuple[Any, Any]: + # 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, + ) + + # 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 + + if getattr(options, "build_dir", None): + deprecated( + reason=( + "The -b/--build/--build-dir/--build-directory " + "option is deprecated and has no effect anymore." + ), + replacement=( + "use the TMPDIR/TEMP/TMP environment variable, " + "possibly combined with --no-clean" + ), + gone_in="21.3", + issue=8333, + ) + + if "2020-resolver" in options.features_enabled: + logger.warning( + "--use-feature=2020-resolver no longer has any effect, " + "since it is now the default dependency resolver in pip. " + "This will become an error in pip 21.0." + ) + + try: + status = self.run(options, args) + assert isinstance(status, int) + return status + 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 + finally: + self.handle_pip_version_check(options) diff --git a/Scripts/Lib/site-packages/pip/_internal/cli/cmdoptions.py b/Scripts/Lib/site-packages/pip/_internal/cli/cmdoptions.py new file mode 100644 index 0000000..b4f0f83 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/cli/cmdoptions.py @@ -0,0 +1,1009 @@ +""" +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 os +import textwrap +import warnings +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.cli.progress_bars import BAR_TYPES +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 + + +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_install_build_global( + options: Values, check_options: Optional[Values] = None +) -> None: + """Disable wheels if per-setup.py call options are set. + + :param options: The OptionParser options to update. + :param check_options: The options to check, if not supplied defaults to + options. + """ + if check_options is None: + check_options = options + + def getname(n: str) -> Optional[Any]: + return getattr(check_options, n, None) + + names = ["build_options", "global_options", "install_options"] + if any(map(getname, names)): + control = options.format_control + control.disallow_binaries() + warnings.warn( + "Disabling all use of wheels due to the use of --build-option " + "/ --global-option / --install-option.", + stacklevel=2, + ) + + +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 dist_restriction_set and not options.target_dir: + raise CommandError( + "Can not use any platform or abi specific options unless " + "installing via '--target'" + ) + + +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.", +) + +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, + # Run only if inside a virtualenv, bail if not. + "--require-virtualenv", + "--require-venv", + dest="require_venv", + action="store_true", + default=False, + help=SUPPRESS_HELP, +) + +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=list(BAR_TYPES.keys()), + default="on", + help=( + "Specify type of progress to be displayed [" + + "|".join(BAR_TYPES.keys()) + + "] (default: %default)" + ), +) + +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.", +) + +proxy: Callable[..., Option] = partial( + Option, + "--proxy", + dest="proxy", + type="str", + default="", + help="Specify a proxy in the form [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 = "invalid --python-version value: {!r}: {}".format( + value, + 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 older binary packages over newer source packages.", + ) + + +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.", +) + +build_dir: Callable[..., Option] = partial( + PipOption, + "-b", + "--build", + "--build-dir", + "--build-directory", + dest="build_dir", + type="path", + metavar="dir", + help=SUPPRESS_HELP, +) + +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.", +) + + +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) + + # 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, +) + +install_options: Callable[..., Option] = partial( + Option, + "--install-option", + dest="install_options", + action="append", + metavar="options", + help="Extra arguments to be supplied to the setup.py install " + 'command (use like --install-option="--install-scripts=/usr/local/' + 'bin"). Use multiple --install-option options to pass multiple ' + "options to setup.py install. If you are using an option with a " + "directory path, be sure to use absolute path.", +) + +build_options: Callable[..., Option] = partial( + Option, + "--build-option", + dest="build_options", + metavar="options", + action="append", + help="Extra arguments to be supplied to 'setup.py bdist_wheel'.", +) + +global_options: Callable[..., Option] = partial( + Option, + "--global-option", + dest="global_options", + action="append", + metavar="options", + help="Extra global options to be supplied to the setup.py " + "call before the install or bdist_wheel command.", +) + +no_clean: Callable[..., Option] = partial( + Option, + "--no-clean", + action="store_true", + default=False, + help="Don't clean up build directories.", +) + +pre: Callable[..., Option] = partial( + Option, + "--pre", + action="store_true", + default=False, + help="Include pre-release and development versions. By default, " + "pip only finds stable versions.", +) + +disable_pip_version_check: Callable[..., Option] = partial( + Option, + "--disable-pip-version-check", + dest="disable_pip_version_check", + action="store_true", + default=False, + help="Don't periodically check PyPI to determine whether a new version " + "of pip is available for download. Implied with --no-index.", +) + + +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( + "Arguments to {} must be a hash name " # noqa + "followed by a value, like --hash=sha256:" + "abcde...".format(opt_str) + ) + if algo not in STRONG_HASHES: + parser.error( + "Allowed hash algorithms for {} are {}.".format( # noqa + 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.", +) + + +use_new_feature: Callable[..., Option] = partial( + Option, + "--use-feature", + dest="features_enabled", + metavar="feature", + action="append", + default=[], + choices=["2020-resolver", "fast-deps", "in-tree-build"], + 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_, + isolated_mode, + require_virtualenv, + verbose, + version, + quiet, + log, + no_input, + 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/Scripts/Lib/site-packages/pip/_internal/cli/command_context.py b/Scripts/Lib/site-packages/pip/_internal/cli/command_context.py new file mode 100644 index 0000000..ed68322 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/cli/command_context.py @@ -0,0 +1,27 @@ +from contextlib import ExitStack, contextmanager +from typing import ContextManager, Iterator, 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) -> Iterator[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/Scripts/Lib/site-packages/pip/_internal/cli/main.py b/Scripts/Lib/site-packages/pip/_internal/cli/main.py new file mode 100644 index 0000000..0e31221 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/cli/main.py @@ -0,0 +1,70 @@ +"""Primary application entrypoint. +""" +import locale +import logging +import os +import sys +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:] + + # 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/Scripts/Lib/site-packages/pip/_internal/cli/main_parser.py b/Scripts/Lib/site-packages/pip/_internal/cli/main_parser.py new file mode 100644 index 0000000..3666ab0 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/cli/main_parser.py @@ -0,0 +1,87 @@ +"""A single place for constructing and exposing the main parser +""" + +import os +import sys +from typing import List, Tuple + +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 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) + + # --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/Scripts/Lib/site-packages/pip/_internal/cli/parser.py b/Scripts/Lib/site-packages/pip/_internal/cli/parser.py new file mode 100644 index 0000000..a1c99a8 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/cli/parser.py @@ -0,0 +1,292 @@ +"""Base option parser setup""" + +import logging +import optparse +import shutil +import sys +import textwrap +from contextlib import suppress +from typing import Any, Dict, Iterator, 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) -> Iterator[Tuple[str, Any]]: + # 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( + "{} is not a valid value for {} option, " # noqa + "please specify a boolean value like yes/no, " + "true/false or 1/0 instead.".format(val, key) + ) + 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( + "{} is not a valid value for {} option, " # noqa + "please instead specify either a non-negative integer " + "or a boolean value like yes/no or false/true " + "which is equivalent to 1/0.".format(val, key) + ) + 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/Scripts/Lib/site-packages/pip/_internal/cli/progress_bars.py b/Scripts/Lib/site-packages/pip/_internal/cli/progress_bars.py new file mode 100644 index 0000000..f3db295 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/cli/progress_bars.py @@ -0,0 +1,250 @@ +import itertools +import sys +from signal import SIGINT, default_int_handler, signal +from typing import Any + +from pip._vendor.progress.bar import Bar, FillingCirclesBar, IncrementalBar +from pip._vendor.progress.spinner import Spinner + +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.logging import get_indentation +from pip._internal.utils.misc import format_size + +try: + from pip._vendor import colorama +# Lots of different errors can come from this, including SystemError and +# ImportError. +except Exception: + colorama = None + + +def _select_progress_class(preferred: Bar, fallback: Bar) -> Bar: + encoding = getattr(preferred.file, "encoding", None) + + # If we don't know what encoding this file is in, then we'll just assume + # that it doesn't support unicode and use the ASCII bar. + if not encoding: + return fallback + + # Collect all of the possible characters we want to use with the preferred + # bar. + characters = [ + getattr(preferred, "empty_fill", ""), + getattr(preferred, "fill", ""), + ] + characters += list(getattr(preferred, "phases", [])) + + # Try to decode the characters we're using for the bar using the encoding + # of the given file, if this works then we'll assume that we can use the + # fancier bar and if not we'll fall back to the plaintext bar. + try: + "".join(characters).encode(encoding) + except UnicodeEncodeError: + return fallback + else: + return preferred + + +_BaseBar: Any = _select_progress_class(IncrementalBar, Bar) + + +class InterruptibleMixin: + """ + Helper to ensure that self.finish() gets called on keyboard interrupt. + + This allows downloads to be interrupted without leaving temporary state + (like hidden cursors) behind. + + This class is similar to the progress library's existing SigIntMixin + helper, but as of version 1.2, that helper has the following problems: + + 1. It calls sys.exit(). + 2. It discards the existing SIGINT handler completely. + 3. It leaves its own handler in place even after an uninterrupted finish, + which will have unexpected delayed effects if the user triggers an + unrelated keyboard interrupt some time after a progress-displaying + download has already completed, for example. + """ + + def __init__(self, *args: Any, **kwargs: Any) -> None: + """ + Save the original SIGINT handler for later. + """ + # https://github.com/python/mypy/issues/5887 + super().__init__(*args, **kwargs) # type: ignore + + self.original_handler = signal(SIGINT, self.handle_sigint) + + # If signal() returns None, the previous handler was not installed from + # Python, and we cannot restore it. This probably should not happen, + # but if it does, we must restore something sensible instead, at least. + # The least bad option should be Python's default SIGINT handler, which + # just raises KeyboardInterrupt. + if self.original_handler is None: + self.original_handler = default_int_handler + + def finish(self) -> None: + """ + Restore the original SIGINT handler after finishing. + + This should happen regardless of whether the progress display finishes + normally, or gets interrupted. + """ + super().finish() # type: ignore + signal(SIGINT, self.original_handler) + + def handle_sigint(self, signum, frame): # type: ignore + """ + Call self.finish() before delegating to the original SIGINT handler. + + This handler should only be in place while the progress display is + active. + """ + self.finish() + self.original_handler(signum, frame) + + +class SilentBar(Bar): + def update(self) -> None: + pass + + +class BlueEmojiBar(IncrementalBar): + + suffix = "%(percent)d%%" + bar_prefix = " " + bar_suffix = " " + phases = ("\U0001F539", "\U0001F537", "\U0001F535") + + +class DownloadProgressMixin: + def __init__(self, *args: Any, **kwargs: Any) -> None: + # https://github.com/python/mypy/issues/5887 + super().__init__(*args, **kwargs) # type: ignore + self.message: str = (" " * (get_indentation() + 2)) + self.message + + @property + def downloaded(self) -> str: + return format_size(self.index) # type: ignore + + @property + def download_speed(self) -> str: + # Avoid zero division errors... + if self.avg == 0.0: # type: ignore + return "..." + return format_size(1 / self.avg) + "/s" # type: ignore + + @property + def pretty_eta(self) -> str: + if self.eta: # type: ignore + return f"eta {self.eta_td}" # type: ignore + return "" + + def iter(self, it): # type: ignore + for x in it: + yield x + # B305 is incorrectly raised here + # https://github.com/PyCQA/flake8-bugbear/issues/59 + self.next(len(x)) # noqa: B305 + self.finish() + + +class WindowsMixin: + def __init__(self, *args: Any, **kwargs: Any) -> None: + # The Windows terminal does not support the hide/show cursor ANSI codes + # even with colorama. So we'll ensure that hide_cursor is False on + # Windows. + # This call needs to go before the super() call, so that hide_cursor + # is set in time. The base progress bar class writes the "hide cursor" + # code to the terminal in its init, so if we don't set this soon + # enough, we get a "hide" with no corresponding "show"... + if WINDOWS and self.hide_cursor: # type: ignore + self.hide_cursor = False + + # https://github.com/python/mypy/issues/5887 + super().__init__(*args, **kwargs) # type: ignore + + # Check if we are running on Windows and we have the colorama module, + # if we do then wrap our file with it. + if WINDOWS and colorama: + self.file = colorama.AnsiToWin32(self.file) # type: ignore + # The progress code expects to be able to call self.file.isatty() + # but the colorama.AnsiToWin32() object doesn't have that, so we'll + # add it. + self.file.isatty = lambda: self.file.wrapped.isatty() + # The progress code expects to be able to call self.file.flush() + # but the colorama.AnsiToWin32() object doesn't have that, so we'll + # add it. + self.file.flush = lambda: self.file.wrapped.flush() + + +class BaseDownloadProgressBar(WindowsMixin, InterruptibleMixin, DownloadProgressMixin): + + file = sys.stdout + message = "%(percent)d%%" + suffix = "%(downloaded)s %(download_speed)s %(pretty_eta)s" + + +class DefaultDownloadProgressBar(BaseDownloadProgressBar, _BaseBar): + pass + + +class DownloadSilentBar(BaseDownloadProgressBar, SilentBar): + pass + + +class DownloadBar(BaseDownloadProgressBar, Bar): + pass + + +class DownloadFillingCirclesBar(BaseDownloadProgressBar, FillingCirclesBar): + pass + + +class DownloadBlueEmojiProgressBar(BaseDownloadProgressBar, BlueEmojiBar): + pass + + +class DownloadProgressSpinner( + WindowsMixin, InterruptibleMixin, DownloadProgressMixin, Spinner +): + + file = sys.stdout + suffix = "%(downloaded)s %(download_speed)s" + + def next_phase(self) -> str: + if not hasattr(self, "_phaser"): + self._phaser = itertools.cycle(self.phases) + return next(self._phaser) + + def update(self) -> None: + message = self.message % self + phase = self.next_phase() + suffix = self.suffix % self + line = "".join( + [ + message, + " " if message else "", + phase, + " " if suffix else "", + suffix, + ] + ) + + self.writeln(line) + + +BAR_TYPES = { + "off": (DownloadSilentBar, DownloadSilentBar), + "on": (DefaultDownloadProgressBar, DownloadProgressSpinner), + "ascii": (DownloadBar, DownloadProgressSpinner), + "pretty": (DownloadFillingCirclesBar, DownloadProgressSpinner), + "emoji": (DownloadBlueEmojiProgressBar, DownloadProgressSpinner), +} + + +def DownloadProgressProvider(progress_bar, max=None): # type: ignore + if max is None or max == 0: + return BAR_TYPES[progress_bar][1]().iter + else: + return BAR_TYPES[progress_bar][0](max=max).iter diff --git a/Scripts/Lib/site-packages/pip/_internal/cli/req_command.py b/Scripts/Lib/site-packages/pip/_internal/cli/req_command.py new file mode 100644 index 0000000..4129bf7 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/cli/req_command.py @@ -0,0 +1,453 @@ +"""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 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.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.req.req_tracker import RequirementTracker +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 + +logger = logging.getLogger(__name__) + + +class SessionCommandMixin(CommandContextMixIn): + + """ + A class mixin for command classes needing _build_session(). + """ + + def __init__(self) -> None: + super().__init__() + self._session: Optional[PipSession] = None + + @classmethod + def _get_index_urls(cls, options: Values) -> Optional[List[str]]: + """Return a list of index urls from user-provided options.""" + index_urls = [] + if not getattr(options, "no_index", False): + url = getattr(options, "index_url", None) + if url: + index_urls.append(url) + urls = getattr(options, "extra_index_urls", None) + if urls: + index_urls.extend(urls) + # Return None rather than an empty list + return index_urls or None + + def get_default_session(self, options: Values) -> PipSession: + """Get a default-managed session.""" + if self._session is None: + self._session = self.enter_context(self._build_session(options)) + # there's no type annotation on requests.Session, so it's + # automatically ContextManager[Any] and self._session becomes Any, + # then https://github.com/python/mypy/issues/7696 kicks in + assert self._session is not None + return self._session + + def _build_session( + self, + options: Values, + retries: Optional[int] = None, + timeout: Optional[int] = None, + ) -> PipSession: + assert not options.cache_dir or os.path.isabs(options.cache_dir) + session = PipSession( + cache=( + os.path.join(options.cache_dir, "http") if options.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), + ) + + # 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 + + 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) + ) + 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 sys.platform == "darwin" or sys.platform == "linux": + 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 "2020-resolver" + + @classmethod + def make_requirement_preparer( + cls, + temp_build_dir: TempDirectory, + options: Values, + req_tracker: RequirementTracker, + session: PipSession, + finder: PackageFinder, + use_user_site: bool, + download_dir: Optional[str] = None, + ) -> 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 + + resolver_variant = cls.determine_resolver_variant(options) + if resolver_variant == "2020-resolver": + 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: + 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, + req_tracker=req_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, + in_tree_build="in-tree-build" in options.features_enabled, + ) + + @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 == "2020-resolver": + 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, + None, + isolated=options.isolated_mode, + use_pep517=options.use_pep517, + user_supplied=True, + ) + 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, + ) + 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, + ) + 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/Scripts/Lib/site-packages/pip/_internal/cli/spinners.py b/Scripts/Lib/site-packages/pip/_internal/cli/spinners.py new file mode 100644 index 0000000..1e313e1 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/cli/spinners.py @@ -0,0 +1,157 @@ +import contextlib +import itertools +import logging +import sys +import time +from typing import IO, Iterator + +from pip._vendor.progress import HIDE_CURSOR, SHOW_CURSOR + +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: 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) -> Iterator[SpinnerInterface]: + # 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") + + +@contextlib.contextmanager +def hidden_cursor(file: IO[str]) -> Iterator[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/Scripts/Lib/site-packages/pip/_internal/cli/status_codes.py b/Scripts/Lib/site-packages/pip/_internal/cli/status_codes.py new file mode 100644 index 0000000..5e29502 --- /dev/null +++ b/Scripts/Lib/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/Scripts/Lib/site-packages/pip/_internal/commands/__init__.py b/Scripts/Lib/site-packages/pip/_internal/commands/__init__.py new file mode 100644 index 0000000..8e94b38 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/commands/__init__.py @@ -0,0 +1,112 @@ +""" +Package containing all pip commands +""" + +import importlib +from collections import OrderedDict, namedtuple +from typing import Any, Dict, Optional + +from pip._internal.cli.base_command import Command + +CommandInfo = namedtuple('CommandInfo', 'module_path, class_name, summary') + +# The ordering matters for help display. +# Also, even though the module path starts with the same +# "pip._internal.commands" prefix in each case, we include the full path +# because it makes testing easier (specifically when modifying commands_dict +# in test setup / teardown by adding info for a FakeCommand class defined +# in a test-related module). +# Finally, we need to pass an iterable of pairs here rather than a dict +# so that the ordering won't be lost when using Python 2.7. +commands_dict: Dict[str, CommandInfo] = OrderedDict([ + ('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.', + )), + ('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/Scripts/Lib/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7f485f05c144f1492acc73ac9a8e976f43fe964e GIT binary patch literal 3120 zcmc&$Npl-T6rN3swRlOK#aSn0LrE-WgDixQ#3sZfv0dc^3YDs+#`9XzlxGp$J#nOx zPUg&sBZs7l3;%&zF8qeRQXKdT94KD*XoLgSnW>td`QCf|y*KZ@?w+_>EopfD^6T%N zt23JRn*@8WLkJ$=&APg#z0^Q!XrO};=nWm8W?+P7!wjv4rAxULQK1hJ)!-6bR_F?%MX1A)LRS%8gX?fZ zp__<4f{)>rLbnm!fxGaDLiZ4T3ishNg&rV!2#;V{p%p}*!(;eDqW0{r-l&iQsgiQb zSkTBcJh`XADyhPkBo9wXsg;Lk@ccWgF{7kUNs&|+w3Y>Hu#VDMFgCT?M*nOSV=sM0uS8p#)ZZkBd^|h6H%h4M@!t=EJBb zETt%}cex)&Zcx)jVL2rc<N6C*oFS-31pdpm{}Q_W^@NK z!5+S;1k;p8C-bylbYlxK`!X}mC=ZS$dpPqgN=TpdPfj3A)uQ@XnPpVh))U@MxIGGo zz?cz5HYMLCJ|!WEII~+Z4P9OrR^T(HsoGEoeadI4q`Q^PZbAI8u8_87^#GV`2xM=Kl5O3jY z$~~Hlz8G<-*O^%6R4uBT$}D4FNTI#a+gO!_99LN;%Ee?%PL$MQqU0lEJC7@*OFXW^ z#04(n#!tVJzLue7e$G8g`~cE$v9l#@FHY!t4UhfVaam_#e@dk&Kfy6$J&P~6mkwwgt#PojX8tP~ZOKEUfXG(ppPAS&nTeQ_oT+){X7QojAwieWY=5;Ah6`7g6}jbx zt6DXkgy{jYm9!_OM`=Z6MH*!uF8pVqp@&uyC?9G<8@G9xAdF*jf>4PG!ZG7LqIl(` zz0qP)s-wV}1M*<7`e9Rd&lP;C2nIyBU{E=R|GYKUcyjBVRQzq{fy+aCPh6NNV6F6XpXRFmmtX2#)@uC+~iaS=F$|l0UiaE?WrY&Z~!9xwVE4Eh4i30eo7S@Q~K`W69;vGWM`dQng z$7*I;BBh;9XJ?=OPtxfvIeA_>V19@@7tK<@2x?dbhl)`&rVYy|$}HSRL2XVH90y|0 zap;nqU-sf4z=(01VAMbfmAMgl-s|GhqcTZUE&!UB;(!0+1b%(X#cvx$M+?$Yu9@^} zOvb60aU3^_Vr)L?1O3Wss9^Sdi)tnHLB)G%*WH&HWIy1L*NWCG7P4ZL45MV}mTu_Q QUzYX%JP*G+ymGAaH(CklmH+?% literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/commands/__pycache__/cache.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/commands/__pycache__/cache.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4cda49f3c96229be5d97d17b9f045e7fa89eda29 GIT binary patch literal 6061 zcma)A&668P6`!6jjkJ)4(ECRXBIryvkmoZw&r2_%Zk>kuNZk!RJjTCGPK zxqIaGDq4!d=0a7@qzb6oJ?0Jh6?;%kG{R6kg9vSUw_Q&_kQoA zCoU9n27aIY_3yjq&l|?ys5AMq(YcNyKS9L}&LX3lK3SEaZ$@Uzs#=U_R%ExFs?&0- zuI{ra)ACG%8Lh0YbJd)t+tFMrU(M^b6BSy;YOyt6o!5OgDzz4>3$4ZKqV8v+Q>~@y z5;MZ3@bqI=UH-AbJ)V7H@NAfWY*o*2wrP}epMyK2QfA8iSrBzYSvHmRM*Be7?=)os za^^Tj&5ODwh<=p#EnKM>hyxi zUk07)DDq`y7@5kCDO&BPG6oks@EjJLc&f*vaOn_!6k48R}`i4C=xOyPV-G7+E}F z5E0lh`<9CAkeXu8eiM>OPU7uYm!dCn+-0*MdrysXNKNfxq^M}j*9TB&lUD)Z0 z#&}&2MSe30Tk@IN`b78cUF!r%5{mZg_wM1)ZGSuT1HTc)+kW_{BSIl)%Cwdo>{-utH8zit93W;fkL}Kypj9z@#zq7WM%JQ{4yIrX63Ir;_*Y4fBGfPvc z_@lKm!}{!+rd$ywUD2-80gus-+8)Xc6nOig|3UGJ`|(Ha5eEfJwLlPC9@}y1)-wal5hM z>t+6B9_|F)C@E`krvfND$_?s-F=g{mCMq+Sq%!s0xLFUSvUkI%Bj{vhTY2>suf?52 zs$9Tziu{ryLb7=M1o+HmB?oo!D$BY??w`ufEaj_4G zoHhE^Lnf~1QNZOWo8E-ZQWGpKHt&RRNK%rqx&@#){*vX0fC#BpuhDNG+!94%Vc!In8=XQrYot zZlq(Vazcu*g7m2Dy|@Wb%UC2K7g>hu%~L%~)HQ}0m=Q?qEJazTS!SxA#qskQ^nO$bWmQ%br_?L$R)5#ay78ug*1R2T5Xft2y@zo`(&rE*FB3n z_f2t0TdX~_IP{$Us8@C?;u7}PMySJt_!f03*@4@AjoR8#eVLLW(J3l45+3+KNilucE)$m6S za^&qg==7P)CdLtDIFv-gIE2Uhp>g*tJf68{!N}CIu*9*s_m(P@pd@t-)}d4E<Kl2qnlD7IrDVGffAm)RfJ>k zn5SLC5}Q%mvw7&0+AQof@~pJ+WEKP^Fv@xw5GC%0R+^h=kBAGP_JhQfc!jDNSiJ}u zT|!2w8JyPiwPrFKc4c>aHbI+Wt%R)-+-1^ivX4Xz46zFGMiQ`ik1B2LlsA?q^TrQp zXok7#pnZlS$wih}@5~g^$B}o+bf@@P!9s`!<_iaE9-2DOH7P+%1@&!=Ye6B0y-scI zsSwB!^R>gDdv6Yx*gwAVc~Dne-w;Z&q3DM=3d( zJqZQOzo2M5&g=xa=^hLot*ig_1KzJ_F}_MjU? zgONRT_psi zGJ-;{vXC_i^8DIA3Jr6DbgE2k**XOn153BGN1ekwN*JV%$|IjzMA-0F3#-qsx~u;3 z{BmJ6w|aWnUA8XRf@YUjQW)PrTY0$RrynzjS>+}N9mGt{ujX7`z}3z<|2Gl z5A`P(nL36n?RIW@PRc3WcIiMl%n-kzO2>GT!vttX;#A(XRO_!Z%#h2dJcGh-iLD^X Mq)RHCp}A!J7wS0miU0rr literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/commands/__pycache__/check.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/commands/__pycache__/check.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e9b97e8fad3d309c5c4f8167206637c29fca2fe6 GIT binary patch literal 1592 zcmZuxUys{F5a0FxI8N_+RHav-G7l9BYJCVHAt8i-P=U}9#HH?`7dufPK^>!jBdvCd9r#xt`sznyV47`O=5ufP4V_`yQxcO~pE z1BB0E^A!++2+mQc{g>$zSSp;4Hj*~vz36?SNMyqP;iFYFa==ytM|_X{ud zia|K&WIMlB9E1lLQS{=FUjG?~M_(i2klu4ddeq+N;Tr@`(9r!8&PU@Rme%7WZzvyX zQvae{O5-%+0@U`XDvG2epf?|!oqc~M?a8Cj=)q(Hn(OI;rsr{;r02<;#+(ZIZpvsP z=)NwVv8sr(l8YqIDS@EgCCk93YDC?LRAsQg0Iw}J0WcJWn4nN2IMj(28bqfiF{nlD zV?<2q%q(IN`?(SJhy(TXq&HGI?Xq5d{Ft(Aw)C$~_jk#1e~~<+ep(fEBC=^teL`zm z5?ZDi<-zKv>v!vJ&8oToV^xc+D)|#>?>K2BY|f>{sAyQ3>U#wYfbYQ`!R9Z32(&?w zw$|5%z^%T)z?*BUHNQen-dx+Q-a;);wYAfliUVzb-4i;&t=&3pk7&neV_tfJa z@b>m=KGx3XTBNVtb${)FCqx8KuXWr0#sbd|FWzfS{!MGaHrThqm>{q+HW(ve0&3=X z_5NM%!;jI6CSz3b_x#I6mM;8^`(-6wAs8?WHLdP%9Tv%zQ$b77`Ar+)FRNyYaAy{* z-WgZ^lvU@ne0hd4=l-l}N)ik$rVwKe5NSW7j04(CjSy4az-%DHfiyVHXUtO?1+wh# zbzV5A6L2f%G2GacOS{Op5@kQF%2}SJLJ1zcd`eRhmq|g{fePYYUHnoyz;~}?Uvaxc zqzCkBF(FYL?3(I3~*|Q9=G4Seee%guT<*nBbZbX*z0GcZ8`cn4hRGdN)l(Dx}3YMw}1XcDP h6df`O59xfmMfo!|KKuxXgFJkQJ?&6Y!_{u+{{kfPwv7M) literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/commands/__pycache__/completion.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/commands/__pycache__/completion.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1ecc7e2eb09d4097ff707b8842f6f95d9df3ccf2 GIT binary patch literal 3156 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 literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/commands/__pycache__/debug.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/commands/__pycache__/debug.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c5b4504fe218e12ea70769a789b0177cf3454e2c GIT binary patch literal 6712 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 SRYebso(VsQX8Q}QQ}%xW{__O@ literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/commands/__pycache__/hash.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/commands/__pycache__/hash.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fdb70c8d83626eb5f03206279defc680646a7159 GIT binary patch literal 2167 zcmZuy&2HO95ayB;Nl}vR{4`13G-cYjfPh#@fS!yrXzIF2fm8-8H$_ehF@8R#3 zru~JR`3KIluV9G@5UNpMkW{8rBmWxexy-{)?aG0&YTm&|A4ye z3T?n@vMak5ZPA67rhk=^p4MLc2fWm}ZKABFVNx;yocSac62A6&o~B_&+q$Z4Y;A3B zDZBT>`uaw%2Pds>A3ojO`fht8c>J*UShafFTbtcS)n)_b4bDOuM8h(BE>!c7$C3qk zDT`7@_>1$;dB*O;Dbp}ZkRjq5RQFA4_%+(37PY}=i#p84s960&jhf7bXk6L=NrToP znwDxj4#jZh_vn@D!2>(^Rpy1>5M*Ay3tW;%Vd52G^gJAZgh#{pfOXtTe|yLT^P({G zc9>TRM!myW4!zaY$~?}%oU{Eh<}78I6y9!}Fi++l&EdRYp$vBtR^1e5LWW5qI@NBp zyi)Ld;QgEzGR`yc%)5`K54=vNv#l)7WXZE`MCMY1d=u6>EU^Y;tnF!ggc7P#L+aF& z2CYp@YE5cVKP9Jx+OKSaTGqs-4r-t3*eQ^kdUvF+hNH&nYM2aisK+o>^|x$I$egp$ zEr@=ar*jd;25DIH@{D2jemNfLx4m{vnUo2s>}Z(B5fjP^BaBPgl+x&iY@+`7j)Xoc6yDg=E~@ zW@(XxlJ$ELkHM`zSoH;T>FTU2M8AlOJ3*X*b`~agqA3`}9c+V6aikh=;}FZ>h`0j8 zA|}yiuSp!Dzp-9lc1Bm{+Ojier|elXC^O^(5gBmB*;4}s^HUZ70Wf1-G_a%-BK1Av zln_mtJ#9?(YRAS{|3-V(JT|38$=Dnl(nflspTL0GUy=?qfZiP~t%x;u+Q?r5yCT|k zehqF`jeX-$3#S5>!`a z5z1jzp((kJhXyaR6=1|gASPLWY+1Skv`MTtraoGn&lBjjb&mbtZ8wz@1X-A}AW&`) zq&Y1UNf4zRJOES^N z0NP_iLj6t%RM0+#s!hzXiPha-{1N^pOwH6z3;?w;sht9l?`h)JAxQE43D((p+Zf&4 zs%D5M&oE5m0YG#*@~~bVrSqL`+frs;FhDBSGKqJTk+DNw2ltd!78FpS>O=NoY7ON* z4^Y{&Q3==vQ&p?x`&`bdbbSUF-GfyXxv9HQ+$I3Q{m(I%{&h@_^7b`;7k|%A^1&d^ z2K*-O96-Yq`Itmy$)f^gRh@1C96RT5>_kc2*$D*;X1L@gTD(UIMzAaesKK?;xl+?$|1|8K~O_ON!oXGJFzc=UO$T6nq#by>2C8+Y>E!NIf11l-Xw`b^4N zrsnXvIk0&OOMMI=P=q;(ERG|>t%!0G*_;Z8+rkyzeV`-!6QIPsR}|>@Kqt@}Ux}hw zzGJpMIjt|kQ;38owG7h*AvN0$!ofajWSxbNm+>b@+O3;5uPdb~lbOv?+ueBZYBbuNK)H^*n z$MW;u?wu<RYK4tQE;Js<$%HCMqxUg2`1-&F*&9Syf+DE4jkm zH+Xk;w`9{}5l-taECs9DaCb(+hvD9a-fr?{oa9w2WW|c{>XmW>ILMKKO#mHyU2$N;?gcN=O|v67nUcanMq#L~$aG=F&ItPGT=Dc~Y@bXgh-m zRGO43)9#YTZ%BRshu)k=pT&pbvQ3M++@@fUf0%4SUR z_#396p72PNO#za{lT_wSt7146tGpEt8E{;K+Y!+qRLHIZF)2MDMg zfGun}BWr{`Z2jXA58tvVeh<*I0!*#h?X}q*!?{CH*Gq=ll0*kdQr5gH1o)#QdD*eT zR1G^fNqC)tV|NNT>G$)js-;Mzc-iIfJQvluw2X9SkTp@Q)C2^UADWnvXAK^htqWkZ zR*Pw;z>Zow)({_9!97{@%B0m!J8kkRTcqE4XC8`te9Y9_sgve|r2pqns%34bU=F!Z tiwU{+-%R2%6^rXR%*;S$jrdT9VXwW%3!$EvYoN>sj?f4j;YWCj{0nd(WrzR( literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/commands/__pycache__/index.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/commands/__pycache__/index.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ac68252637ed0edab0676a70e8109805dc28195c GIT binary patch literal 4577 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 literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/commands/__pycache__/install.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/commands/__pycache__/install.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d5cc53bbf30875abfb547fe818c7d6aedb5c28bd GIT binary patch literal 17783 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 I=()%L8(S7ZT>t<8 literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/commands/__pycache__/list.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/commands/__pycache__/list.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f4e5c0fd97107f37f7bcf0ac8f67e134fe5803ae GIT binary patch literal 10083 zcmbta*^e7Xdhd(PCWpg0HM-^2F|ufDD0{J+0FG91G(MuWJk~;58}7(x^{{GYIMZZP z)lD4)l{h;FY-6Ep>>NOXeHbMh1j-+kf%l-0^|Vpc^?AU&P;w^RX2y^ z$cclH)5WT1Z3F(K0<#Czu&pt%6r**`D1hdc~IGIjxdcYL&fmYr>n5I96C`O?s2EUI?qLDQ`;F z?Qps^!yvQ#;(Y+;L%&~c3%<~yw)Y&1nzz%bh9pPnO z#P`xs?Wm@H*Nmgun$3=~V;@=GOYHan^AeyZ*hxTNX8KL7cIp?j`ztj)wcicGE{|)) zbn@2wH(vLbfAjU_x2~>C#myJCuv6QAWWT`{BD=G8$2!C>UKh& zT8$u1p6cmLBWOqMW+MojJ?^)I7RLnTMvF!A)flarYi-6KyeXn?XE|!Mf;I!Nc=HF# z%dg+OiE1T-zAi*0(4M^BY;P?`VaOXGg#b5###XS--)LeWQ8Uu%t3k|P1BIfw+9e9p zsdb+CynU}JqIQe76TCHllhX+3y&?D-7eqagQ@+vc+~jeLj+&WH#0d+VtA1x|Jx-k@ zSnY;E!qduq(M-4>b(2n)2AgUH9lzBLlV-9Zct9(d8z$ggE@;38ZSnBOMB`OF@fj3c zBf<8JA3)eWlUuyNjLRCg@oQezm<1*k(m9{TeGl_o2O)8Ct-TiYe*R|j9(R)s?y{j( zyV2?hM~L4-A>ez%VaL=ie`J= zy>o~5536OElU=CYxl?yg)KP~%yD`MS{qh9g-yWJop!9uI( z`z&hszBq>MOs9N5Xt$#zASTD?HX#vDHE|A|viRbj_sZ=RY)K=Gy6pB#-}bLJS4AKm z-u7=rQ5fG|>2C4cSDVpB&vjxzSn4Q2jBj_E zolAbR4Qyz~rG^sg_)-Y&)H@HwaZqp=Pwb#5YnJX5D!POokdPuUUM1B3K#@xb$plOtM)KYHTxy7g>or%;F^|cbQE9T9(iXpWv0FkRd*ao=H|kPnAuvY1wPBX+X*7 zSl-kalnjmKO^-ogZ~&dzhw@o=SQ?rm>?nHX_Ip?XV;^J30i9CRw4BUok{GAh zbHF&n3Xt;C=>*xAOz(S2vIycf+i?;=^O>7(^+muMVV9AZa@K@~hCG+-%r3-kAh=6= zkN28w(g)awC5*+}U>m7U90}@-1Pq9h%UivLOgGOhq_*HmSF~3e@JoY_ zff_M$8BhEIdivU?wy86n8O&rBD=_K@=16F11PX>pXk`QnW=ZJO2y`0kqH$;0 zTt4oOo)|mk6YYsUm}g$%9KxH{00vLNz$9V`JMq{az)u1fOknO1?rC<0on_}nV2i*z z%g(ds*@cmrEj2S}C?v+FjrA9w7>{)N-Emm0uRk&5T&jiLp*GXN?iW^i#!}QPFD>O3 zCN0M>?c7g9m%q_lkgU)92Aqd=wgYLv(<0+*0jzIoZSb&z(YiERx06IZg#nVXmvw~?N$|#mxZbltZp`6Wsq9^RryV|Ym3JACJ0$!NV!~S@qf@V0 zsl{MDMGdkiUZCPd6urXIQb+LK``4s?z^V(rB;fNP`!1ZU%lJJWMjdj8Zf1Dnx_k8@ zI^`ov^lIO_23PcST|sY~9ig`L(~Y3*Vq#RM=G7UryV0_BL8y+0K3++F#h^ygl59x}C%27)5w#-P)^K z^SUw=nR}`a(VG_4YU8vRs}Qnbg8KYZK*hqNoCGQfTtwgK!%aLk9+`>3P~S9}iI$aE z=rj8kvmP5Tl6LQ{LAivkTri-hX z{|zvt0)HCa_a6rBE$GN0)k5jRUS#GX23j>l)a^qlRoIr>;TEBRMiZ`hk#A8YT4*9FyX2|?ZHGMKZT>LgL<5?6{+b|7? zgS~4NBzt#zr%9D_c0BX#)C$CUe1I7PkNqS||4>iN9Sfcd9yKW> z_O|}WM1N77?wjyw@a!MaTgBJ3ZHYsE{v$0Z0ao7DHz)90!83`cif5{Ck`E{BM;LW; zTD;oVc4qoC0~ij7CcX#AYz}GDNV>QQ*jx@neO}c;(;)~(ai#a2chq6Z-S?oDpa`y!BIkMbN<=B4N~D zO7-?Q`%0JBd7D4zh%0|eW0AZYA1-LUGs8?0-FE%5bf@u^`rw5F6p_N*q)`@7tPdz+ zM3eEEahDWB#m)Gkgh9;^Z{sJ`**IC{%cKcdeCNtfXhdSYtr>>1XYcjSem!l2w{Z3< zONxDRiD`)(u&P#b6CA7d%($J8VfD6}o!Ua`pNW*8qh`)uR zA}zJGS2i8P))#c!C>s{koxV`}FYR4>ssdab%qkIx*DU&Bqkuq6ElndP@UEQ(-Ot_Lv zxy+}AAiT7gMObJ{0ktG^MlGNCJ~00p&o9XXLpb%aZtTMO?DZ}VFL9VHLs~>Ekn;Uh zPmf7a$T!^2j?+!#3gV}xvc$AW${deT5uoE|M1@UMm}Q#($k)w3Vp4~9RjlLf|NH(K zWBVsIFpSuwVvJ1MtiL6Ah~nS|<&yfW4H7MSFQQ^>&{e>GPVf$jgR9O5J+NvE=+b=B zc$qBeBtxIV$A7G?={PhQA31#qlaghPN>;vgQnD^!kPWhS(1`d}V75W9Hb#+ne7o^v9-@_@{!gt$L=jE5R_&fIzkd8Je?iZWa)=n42~tqKnLWRA?Kl0Q#-I<~#iY%2FSAHG5Rli8(}!6m<$U zq!D$LC~WHSr~!pXZvrQsY{o+oY3}DskP+6Dj*zrK3AN-enTLPD6DuCsdU>z+&MR>nIT++LUlNhaLO9}9*qtkh%{ZXr<1Ey8M zTM^ROdD_)PuJx&bgSw2khnxfLC=U0CH$V`1kraT~MNu(ry=qt{;&F1>aMHHnz%^TN z-gIc|{o4Oy&ym@vX5oBxoD$!|oPt;?j-tSt<*9-ZfDSb3Xz?l4$kHi!_?T)^DB7s~ z6P}oSvhiWXM6_Yx5V2<))4SE9M7Z&xv3us-Z!?5+c^3`kF*_VSKoS)WyK_J0k~JmX?$=DdSz@{%-$-9Urh?E z*e@W*R@kIpXB*kQyNiHA>lBo1#oa}zr8H*={057;J#F7rE(5M&gvRzXlR*%8kaw0;({bd?G4-kaq+B;5)I7opLk;0 zJ37ijQFg0VRi8$<=g0?gxHoHBUzY7zWE@6MPS0M5_#+G^{usppi6s9dC6Zzrb(&)o zr{ZL~1L>q-7bi)`;~T_mAEQkWsgw<=Sae3Im?w0HLaDvp3*Ve@_&9RpE42l23cunxDqJc~qdx-l+7#cvQ6ZL~N<#S9hFau%p|7DZ~}c1mz+22_x6h&xnRRFI*R zk}7C9LrdIe$$50p6BDk3J1on#^s;HZP4-kiMtS$xoUu6EHYoQt=pAcS^FEyUc8#-n z3qk0vF^{9r9<1}8VN`bo&5J`X?qtOps><}ssD~Dve~PHkf~EBTGb(gSqi9By*CBa- zhHOsTV#wmG!ve2sG6O^Qxe&uP(~S)s2q}o)*2P(9g2{^VZUyH&!V*go=BWD?=)x-$ zyKP#e51YspVN@G)UF+M>9)cCOWtNEAXsP$IvEuIoQWEcHedW%3tTZwg%X%gx)WQfh z)$U$Gv}LYQ9%Q2D%LL(a)P^xjWMVx#0J>z9ki&E}~Wxe@>`ZQFzlx zY_zf0gPU_{p{1?%ED9V`Q$+X2SN3DPihn23Vmb!eMGJ<*F)ZT*TmyX_W7@QgX(T_U zQI=&A#4!ZDB@-WwVHF_prwx)SK*uA9xj{nx!Alg(Z)!MBnsl6G`cG5}66aKiwhO4$ zIl^TA`LYc4k%=y#rf=Hfl6(u|445r@9n^}b89OC}FeI2(Qr?+>bD=DXvjR>EB9KCP zDH`H0sYaV8{)!3;$W$0x8Q*Z?$PlLF(f}Rz`RJuEAT6+Ns}m#n#0W$TP+n0Uc`b@s z$9MVm=%`gEl<15jz7c zOf-}YrM*|7Dj6a{?oQ??)8n{TtCPKEk*F&b#hZ2fr%D*hBfB>vG4lT(s5iotW%|pk52lYYjU*-AF zj1Hl2GJ})l?4{#L7e*0be*&^cVwN^!jz~T?h5Sd%S4^H$qS_= zB<8L|IuQ7g!%l4y6*S0ODFY&vl%#1$63b0|`7wA%uZI hBKwl=SM+&27NFCHQ!1O&ruI9={oG|Pkn4T^zX82LKZyVU literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/commands/__pycache__/search.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/commands/__pycache__/search.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..eec4595a1a1db98645e008afff16d9829f50b3e7 GIT binary patch literal 5378 zcmai2TW{RP73Pp!F83zuVp)>y*tBD}-Z)x2P0)+u28l08oXD~f$+<8x7z#(%=#01{s=X8*=#08!s%(Yhoe6hBmCND5&ZIl3 z%653DGv!Worrl{(uY@z5!|q{Ku7*cCN8O{UTnk_59CMGUay>lWaa>208{vu0N%y2G zkAyFFPPwO;CTg;eJs!ZmPP?a>_KwC!`Pc)EkBQUUhWjI-?fh7rdC1%*ddB$#dM3n# znA|qqm-s=^5Or}@oL$yuv>A<0iUuE>(Uwhqh)+E*-Iw{aILl}7PI9(v@x%NGT4yV) z!uX3cnxy$rF(O*XUl`;hYx86L_=A#rjyqW6teX2Q<~_krVutgaEojYCk4RJVO_tYg zNG_z{SAuqms`a5C_C(S&^Ty&QH?Mk^-@SVI{cH2@cRrX z)Ca;>rHm!&Q!66%xLEdkVd{zKULfPBBO=zKn7_XpK-;hBnyttQkd(>N5-0T(~+oluP{}`yei8px(iO>k6u6|1shA=t1SmZkL zk}zg8v>6vQZsIIU`G{J7IhGy4-wkj|k>3${IqBg*9d+V)(!#d>qRAJKspRo}_rlV=xSzJexW|{y zzvj&acO({E@)qMbOqS+*cg51BAYS$RzT`{S{UjCASrnaa=%-?7p)G@Mnk-?|Qi4O8 z?fUJz{)$MJx;*`yAk@|7KBjpdN>Sv#}Z{!l5&F&^OSQ(~hIm52D1mxZV?T z^Nm*jSk+O_>8^}doKIr~{^a(qz+!Gmk@jRX--e^xd#Fsua~W^aLXv4~+8X1G>)haG zs;?Qm#H}waMm^?EiI+*@p-xT)A7an<_1U0bo}DE?-_J`$X59K1rG~Hw*1K*GSqqGcX>$`*H{>+f}TKmT2<-y74rY~2LHrea$Q%1qWs}B1^6f!-rQpB8X_8XSz zTSlhsu*}HVLwyTJpPAci3$bR)N)0;thnhT|T07;3h(0saYGMRyMrO)pT3OK2 zDwJZ*_nX%PIJaoUkz&0Uz;im-O^;lYbEdEmM**kVDo&K;BQT^+08{cd0-mlmYqEhI z=2jt%Zt`B_J-pQb$8IE>2|7~_rZ`pp2=g&=i+l4WL0{yJu7s_6QY3Jd ziL7I8Swqq+%a^H4*pugwqmRA>WwDnUm?I&DT2D(N_LQi;kEY$*q+)FEDM(W?H|&jWs*7*D83c-277Cs-(57Lb`{J?O)j& zY(q=ySvhTN>&d0}G+?4ko_oHj%Sr4=g1>0F9?Smh$JggRxOrJA7slc&`#}g5f7*_@ zxZr$F+1Bmq=Wx(~z!rj{>13)IPEeMJ5 za8t(jH{~lNQF@y~UTzT}{4}qq2zZ$msj1?ETB(3gH2@Nm)Q{RCH$#NxX0^~cDM2Yd zuPC>njJ7=3NnTNiqj;H{gavs)Ev%*|_mCtA1J40MZSE4}5(kOJs(Mu)fzcjf;|dBU zv!2+d{e}MBhy`FA90o=Kb(}U0p2sl}sw9OFc^FAv_Bi4r=&eH&MpCg&rMBO%o!BS>rj+SCDM{c!cAQPro8 zK<#eGiBrs_i4}H#i$bbxYg;VSu4uP^wxwq}XYdyWa`GD{a&UvK5_y^(_E5XWnCJq<3do#vO-r=>!SD>xbc{;}=~B5xWGW<$NTZ4Ii#*uTM?$EF=c$s*~)Al2$mxz{<+h=s;!QPt2vqm|E zlU4~Blhjek&AWoUqTlU`i021ZgOyd7Cvc&dm3)_Eta}A_wF*4jyI++X@N)ZRU!d8C z-JK*?cMESqXt69}H1wbjCu)8!TssU&UF7Iz;CLwj-muc#=< z04fMT8r+?c;j+_XaxvAnwLiWN)f;P2JrsU41<|D1Ho{JH3^jeXmI5-{Y|WChXoa+r zm_!+%pz=rH3?_ctM!_EbU;Py=xxN9|(eD$y#5fe|D9!f|U7KH6d~0s*>Xi%5>BKox zd}FiU7;5kTa_+6gs|$-4h#HYtSBhCFLIGy-I$#2?6o$?Q;prs!Nnshz;kGZVGZX;i!e!D z;I?Xeidv(x9Is<+ata9?n^Jt0jX?QTs2;rJY26t4x2}&o(XEq@&8PA+T4_v?^>!Tg zI#ChWRU91(eH4a?04w+LcN8)$G3lHU(zKo?Cy1hO{Q=sqz_7O&H>P&o%O?scrgAG_ ziZfc*;TA$95VE85GPhSiW%wM@_0w8ksb+EzI$^XgqwUQ3M~IG?PH&}nnf zXsp|q(hh1<+D<96fyPp1ex>n|%tCtL8*{6YRWkOK_La#;v(i`EH^x@AUrVj5x(&3X zWw<1(z}xyH!mzy=?P6$sa-%@d*f0$y)1V_D6)GCMf{(pDvBgq#2s8NXRKrIxd=!qN z_^53*rTs}?*Wu{~Zh<_)V>a6~aw8OxB#M_C01G0p-a0QoLH&7!S1*z~!tJH|#_wry zGD=I+b?2$|w0~lVG_@{ohC5(edxAZAwmZc8ZJIhV;9+S)^-m5J`e`fu`|WQ9w-MYNS$i39c1E z$tNL2(bQM&@fAscck3zWCpe*^mTqHki}A=yCvHt)v@l>I2+jX)l2o zZgPs`E4rUg4=*Y1w?%PDEokDQ;cmMBaUZx*F8ACwLmc?DpegGz-|91$V5s1Siul&=WC zpHcM#N)-0UAMCULJ>Hkw7mNQ`-XJh0?;)|(-xVsj1HjXOHGcT}0=JsIpGhrxwKQ&= deC^OteH^g=-U8GuU4LR3`uDn7{m^yVtwEFdos~TbyVo6R+i&^{mGnXEYvTxiY90Pm7|a z$>yAHN)|x^HZ+T!4d5VGr~aL`c8E;JL_ur{p-K~=T6DfwEv*W^v^-%4P0?a*EFFCJ=ALIuGe&~8#M!W zBQ)Dq&C;pO40CO}X1DXTeA}rx?Lw{4c55!TS>a5(SSvD}3uoJNwK=BkaK2rtmD&rn z1+M4A#rB!nnf6j`iR(^yw!K_i*0n%CIv1Qj)@v7jq=|xXA8Nu4<_^u;Mbu|R5%pr= zpngfr25xX!%xxPNG%-I#mx9aNwpb9053SlW;!KbaE~7^&u!Bn%v~5c)iL+>VRxGP0 z;#}~YIFG9oJh$zL3*sVLJ)y5_0Urk1U(9!-~?YX(VO1lxWuOzJ^ruO*{SJLn{sskkp&Nl=e^ zNw=3Yh}-F(jmjIi;;SeEjWh~v>NQgsHA|SaoG1!gG$@J=v)?VAkUw(PZ#zxZ*1)2HLK+s|#Hi!W5RskuW~B zb$V_bnZlv=V}lG7A}Cb*#>#d-zp}F33WGS!shbnxH4YuoOHp%+4n zUbHPv=lI%NvHHL{)x(DgZgx~lwiNA!x)-B!0{`Rky^8IsDHddJ$k>)c!r`LvffyKZA<>SY)?;1Q5@Q`thGt?8%tL)>CDyST3Tc{3aDe6y=;Gc}b6o zZ=gtX4|;(-Nb{rqq*qq1e3qI`+3UOrB3?pa=`Lh!>5gH5vQI3-();t%QbzBxAs5iM zS}vweon2JDp1SpVI}*Jx09~xtAN2f?){I)dUKddVM6MTOL&NNv9ohjhc+hL%z6TE_ zpTmUGpu$3tn($_+iB-x!pl1`7nIgU=83eHr)2bbCZrPUM8qd1i(!j%0KNGb#aK-R& zRyBUt{8fY<7}f$L_?~iqH%Z|ZNirpCiD~~jVboy%nL3#a<8&sYM1AWZEsVUVOiS$` z@r9rG5VIOR(+K@IZf&_qLLOX{)xUb2H|RaEzSK&~~-hpk2ccaatm zN8~}h8$mhB_NwK)d<8<472igY&e!XHrxPX2YFw|gW+jD~uhi#v(Lh)1p>Q=v zr+*QDbysyoFX@tcra9)Nl3E;7$QT-ALZctiWKCKz+YPMALfQW)wOVT&BoPs|WIiI(WQMpGN;pP}Dp`W@{rv_nDydH+0SVH3P1ol<~q2}OtKlTnmh@q$XTGM?p> zH=n#LV|W!I#&3J9A9zPvA)X{L1vkZE7Urkqpp?lhX2WS6Uo|>tHdjus@stRrxmGA( zRYmuB)w>JvG?Z3=F|t?kJ8!^CZy}_jxeb-Hwpw8;Iq>#d;5|NQhpo>2_zIW@`VdhN zd$4S;2cN&W>2JlP!gvY#WZdNKZoebI$sT>P}BlSbiZ$~}sNfI&3ni&D=+Llop zT#~>xH-F%@w#OAhQi#+EOoZRy`Q2{N5ePr%LT_Pv1*lR|{7%LDF}6LwGT9$lSa_gX z8FPGLR4SjJ;8)h=b?mt6=Y&Kao5~~PX{}*vE44^E2qUyJ zKhZk+zBb4WoI}0)XkgQQI5U_LOFd2grC1skJ62*0X7IE)aCS?>*<=Ct#iW4p%%P5Q zsr#8YE0$SO&e2&VJ76Qsgw|zT=eqwa&JJde&Wm$Rz+g}p#CdTxqb`i8i(~52n7YiA zJ1B~0KApdZH9oi}mf%O9?f)0s@sD6I0G0yLtQE$}rbkgu!2L{4KXJu-kMPl{hm60j z@Jv}8yyA_b=oJshlPz5xJQ$l*yqn{bh{E8bQ0w_T4e+bi3_5hQgCluq%*(`~y@WY= zubkq}d#N&VUoY`QV?V97(J31qMX+_UVZvuESm}p0Vv@cK3;rA90kA0V9pLu4@yU@f z*<&L$DzD*~K(cvad%0IdtC5hSyVjzq>5yY&DaEd=-r)*C6OU>^6=3{*VtAyg1Vd$Tsb3}6!mzTBv`3$(d9G5vn zY{MywRquuP3*(BH78^Y&;mqo+6-F%NAV)uk9y{YX=Lj!zz^)<~}= zT*bq_1A^ChcBntXc@zm4ecIja0cXQ}3;}S{T^6R&Oxb#BMv@vE9x<{*+RP7i(&jGo z`PUPDLX`#dU{z*nP4!GftXcNxg{yI(bovoG$HcC!(GjD+{@d-XPRR_l`4E`KN1-W$ z94o#uen)Cm88W|LeW!Z+gDSLn3olF;a0Hdej8K#dIt|3))ENO}`7U}q*5y6ip3rX( zkJJGadjvd#Yvb2N;{E3T8}Hb__8#YqcteB|P?lqJ{YoC+H&+(bYQEj&+Kg zuve>^+6vV^^%CMert5hWpOBRm$;uM_2v#Z(GLK^6}0`jqtw_o?lgz(m@vHM9n%(0W?@%D|$# zTp1YaTHj4_KuOlIev~Jy^b0M+CeFc|%5nyV4Kzcx16Ngu-=Lr6%SrmB5P zR;kS3B*LCr7db(?*qF|PU}J*I!YL1?l$j9T^;oa6=pU;PlYzy^@euqJpfQ~og(t5p1e3UcA{PpG&?#h+5~ z1{FV~f)-W2DCx+QE~*$gji^&QjwE1iYW7=QNd_ukpsv;~j)QWR>a;+({?4$lAiR(%FNv3~H|O{Iq(NQe`d~z>wnEQ00rDHgUzY ziHwi!Jc2H4Z_YCGW!*Zl%tig8aj|gGan2f?yn?Ns7^VxWr9_r-QZgObu!B(sESJ(* zCDe&>r~Z`WcK_S@CBHA7J#~PP&*Rmc?`@EjM?ZpK6ie4|#cu;h3LIB~*5E*Kocssi zT{?6ku?+`p-nZmZf@IerCA@Le9prX#$Yt6F4L`$l9<-Iw4(MD)7eLz??Sjr{^bBYx zql=&m8I2?F5%rrvELStnXHSai$-s~g!AA*wX0sj(pyx7rk@!S?9xKTYZS*`d;P*ec z4|*wUEupnA%yVo0XyI6+(GU7?|HpWCHtV%0mJy!*7EjL6lLxfkMIPz!NM}6q@6l!g zyqxc^@j*?UDpmGMCC}&+7H3z+vFX&I6US771nOLO<1Pc2zPYlp(su}*(xIR~b5EsZ zRVDKPT$vqv0j|2r12A2h_6BNX<`KA3yp`pLRqc+-vm^QSLM-2hdGzPAM`C5`fcq@H zn`MbtrrDVt9f75qXyU8l)xL#KYH@$|IwfXSR5p0EZxa-XSF8P3);RU6&e*{yqlpaL zSW=THUOtl+f=;i^M`<|^2B*B*Z}eLfoFw6+DWAvgjy(taJaTPmjxqyX<>3nQAq^OB zpxS))O{C6WRN&zBmI7$*BuUOms?;L<_M|s|3A6nhuJ{cUmP3(=6VymdP5&45Mcv|O zw9Cm4kUtpjd84Ew3hR<)D}O@_Q>*@(g=HMMib6e^(E>Wyr34phQi^`2}S)fB@H2O^2V-FGE2|D XxOnlB;S;ciL;lh*jb9tq-2eP9!;pxk literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..25f5b9f1d276bd93365c8cc56b32de1e0ec16af1 GIT binary patch literal 3125 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 PWzjX1RBM~Ab*l6~Z!oT+ literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/commands/cache.py b/Scripts/Lib/site-packages/pip/_internal/commands/cache.py new file mode 100644 index 0000000..3a5bb9c --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/commands/cache.py @@ -0,0 +1,216 @@ +import os +import textwrap +from optparse import Values +from typing import Any, List + +import pip._internal.utils.filesystem as filesystem +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.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[Any]) -> 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') + wheels_cache_location = self._cache_dir(options, 'wheels') + http_cache_size = filesystem.format_directory_size(http_cache_location) + wheels_cache_size = filesystem.format_directory_size( + wheels_cache_location + ) + + message = textwrap.dedent(""" + Package index page cache location: {http_cache_location} + Package index page cache size: {http_cache_size} + Number of HTTP files: {num_http_files} + Wheels location: {wheels_cache_location} + Wheels size: {wheels_cache_size} + Number of wheels: {package_count} + """).format( + http_cache_location=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('Nothing 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 not files: + return + + results = [] + for filename in files: + results.append(filename) + + logger.info('\n'.join(sorted(results))) + + 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]) + + # Only fetch http files if no specific pattern given + if args[0] == '*': + files += self._find_http_files(options) + + if not files: + raise CommandError('No matching packages') + + 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]: + http_dir = self._cache_dir(options, 'http') + return filesystem.find_files(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/Scripts/Lib/site-packages/pip/_internal/commands/check.py b/Scripts/Lib/site-packages/pip/_internal/commands/check.py new file mode 100644 index 0000000..f9412a7 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/commands/check.py @@ -0,0 +1,47 @@ +import logging +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.operations.check import ( + check_package_set, + create_package_set_from_installed, +) +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[Any]) -> int: + + package_set, parsing_probs = create_package_set_from_installed() + 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/Scripts/Lib/site-packages/pip/_internal/commands/completion.py b/Scripts/Lib/site-packages/pip/_internal/commands/completion.py new file mode 100644 index 0000000..9ce7888 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/commands/completion.py @@ -0,0 +1,91 @@ +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': """ + function _pip_completion {{ + local words cword + read -Ac words + read -cn cword + reply=( $( COMP_WORDS="$words[*]" \\ + COMP_CWORD=$(( cword-1 )) \\ + PIP_AUTO_COMPLETE=1 $words[1] 2>/dev/null )) + }} + compctl -K _pip_completion {prog} + """, + '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} + """, +} + + +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.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/Scripts/Lib/site-packages/pip/_internal/commands/configuration.py b/Scripts/Lib/site-packages/pip/_internal/commands/configuration.py new file mode 100644 index 0000000..6e47b87 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/commands/configuration.py @@ -0,0 +1,266 @@ +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 name + - set: Set the name=value + - unset: Unset the value associated with name + - debug: List the configuration files and values defined under them + + 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 on the to the user file by + default. + """ + + ignore_require_venv = True + usage = """ + %prog [] list + %prog [] [--editor ] edit + + %prog [] get name + %prog [] set name value + %prog [] unset name + %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.") + + try: + subprocess.check_call([editor, fname]) + except subprocess.CalledProcessError as e: + raise PipError( + "Editor Subprocess exited with exit code {}" + .format(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 = ( + 'Got unexpected number of arguments, expected {}. ' + '(example: "{} config {}")' + ).format(n, get_prog(), 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/Scripts/Lib/site-packages/pip/_internal/commands/debug.py b/Scripts/Lib/site-packages/pip/_internal/commands/debug.py new file mode 100644 index 0000000..b316b67 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/commands/debug.py @@ -0,0 +1,204 @@ +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 import __file__ as pip_location +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]: + vendor_txt_path = os.path.join( + os.path.dirname(pip_location), + '_vendor', + 'vendor.txt' + ) + + with open(vendor_txt_path) 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) # type: ignore + + +def get_module_from_module_name(module_name: str) -> ModuleType: + # Module name can be uppercase in vendor.txt for some reason... + module_name = module_name.lower() + # PATCH: setuptools is actually only pkg_resources. + if module_name == 'setuptools': + module_name = 'pkg_resources' + + __import__( + f'pip._vendor.{module_name}', + globals(), + locals(), + level=0 + ) + return getattr(pip._vendor, module_name) + + +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 not version: + # Try to find version in debundled module info. + 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'\ + ' be {})'.format(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_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 = 'Compatible tags: {}{}'.format(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 = ( + '...\n' + '[First {tag_limit} tags shown. Pass --verbose to show all.]' + ).format(tag_limit=tag_limit) + logger.info(msg) + + +def ca_bundle_info(config: Configuration) -> str: + levels = set() + for key, _ in config.items(): + levels.add(key.split('.')[0]) + + 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/Scripts/Lib/site-packages/pip/_internal/commands/download.py b/Scripts/Lib/site-packages/pip/_internal/commands/download.py new file mode 100644 index 0000000..2302645 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/commands/download.py @@ -0,0 +1,139 @@ +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.req.req_tracker import get_requirement_tracker +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.build_dir()) + 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.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, + ) + + req_tracker = self.enter_context(get_requirement_tracker()) + + directory = TempDirectory( + delete=not options.no_clean, + kind="download", + globally_managed=True, + ) + + reqs = self.get_requirements(args, options, finder, session) + + preparer = self.make_requirement_preparer( + temp_build_dir=directory, + options=options, + req_tracker=req_tracker, + session=session, + finder=finder, + download_dir=options.download_dir, + use_user_site=False, + ) + + resolver = self.make_resolver( + preparer=preparer, + finder=finder, + options=options, + ignore_requires_python=options.ignore_requires_python, + 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) + if downloaded: + write_output('Successfully downloaded %s', ' '.join(downloaded)) + + return SUCCESS diff --git a/Scripts/Lib/site-packages/pip/_internal/commands/freeze.py b/Scripts/Lib/site-packages/pip/_internal/commands/freeze.py new file mode 100644 index 0000000..1ccc875 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/commands/freeze.py @@ -0,0 +1,84 @@ +import sys +from optparse import Values +from typing import 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 + +DEV_PKGS = {'pip', 'setuptools', 'distribute', 'wheel'} + + +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/Scripts/Lib/site-packages/pip/_internal/commands/hash.py b/Scripts/Lib/site-packages/pip/_internal/commands/hash.py new file mode 100644 index 0000000..3e4c32f --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/commands/hash.py @@ -0,0 +1,55 @@ +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/Scripts/Lib/site-packages/pip/_internal/commands/help.py b/Scripts/Lib/site-packages/pip/_internal/commands/help.py new file mode 100644 index 0000000..811ce89 --- /dev/null +++ b/Scripts/Lib/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/Scripts/Lib/site-packages/pip/_internal/commands/index.py b/Scripts/Lib/site-packages/pip/_internal/commands/index.py new file mode 100644 index 0000000..c505464 --- /dev/null +++ b/Scripts/Lib/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. + """ + + 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[Any]) -> 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( + 'No matching distribution found for {}'.format(query)) + + formatted_versions = [str(ver) for ver in sorted( + versions, reverse=True)] + latest = formatted_versions[0] + + write_output('{} ({})'.format(query, latest)) + write_output('Available versions: {}'.format( + ', '.join(formatted_versions))) + print_dist_installation_info(query, latest) diff --git a/Scripts/Lib/site-packages/pip/_internal/commands/install.py b/Scripts/Lib/site-packages/pip/_internal/commands/install.py new file mode 100644 index 0000000..02da077 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/commands/install.py @@ -0,0 +1,750 @@ +import errno +import operator +import os +import shutil +import site +from optparse import SUPPRESS_HELP, Values +from typing import Iterable, List, Optional + +from pip._vendor.packaging.utils import canonicalize_name + +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.format_control import FormatControl +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 +from pip._internal.req.req_tracker import get_requirement_tracker +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.distutils_args import parse_distutils_args +from pip._internal.utils.filesystem import test_writable_dir +from pip._internal.utils.logging import getLogger +from pip._internal.utils.misc import ( + 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 ( + BinaryAllowedPredicate, + build, + should_build_for_install_command, +) + +logger = getLogger(__name__) + + +def get_check_binary_allowed(format_control: FormatControl) -> BinaryAllowedPredicate: + def check_binary_allowed(req: InstallRequirement) -> bool: + canonical_name = canonicalize_name(req.name or "") + allowed_formats = format_control.get_allowed_formats(canonical_name) + return "binary" in allowed_formats + + return check_binary_allowed + + +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( + '-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") + + self.cmd_opts.add_option(cmdoptions.build_dir()) + + 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.install_options()) + 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()) + + 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: + if options.use_user_site and options.target_dir is not None: + raise CommandError("Can not combine '--user' and '--target'") + + cmdoptions.check_install_build_global(options) + upgrade_strategy = "to-satisfy-only" + if options.upgrade: + upgrade_strategy = options.upgrade_strategy + + cmdoptions.check_dist_restriction(options, check_target=True) + + install_options = options.install_options or [] + + 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 (os.path.exists(options.target_dir) and not + os.path.isdir(options.target_dir)): + 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, + ) + wheel_cache = WheelCache(options.cache_dir, options.format_control) + + req_tracker = self.enter_context(get_requirement_tracker()) + + directory = TempDirectory( + delete=not options.no_clean, + kind="install", + globally_managed=True, + ) + + try: + reqs = self.get_requirements(args, options, finder, session) + + reject_location_related_install_options( + reqs, options.install_options + ) + + preparer = self.make_requirement_preparer( + temp_build_dir=directory, + options=options, + req_tracker=req_tracker, + session=session, + finder=finder, + use_user_site=options.use_user_site, + ) + 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 + ) + + 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 + ) + + check_binary_allowed = get_check_binary_allowed( + finder.format_control + ) + + reqs_to_build = [ + r for r in requirement_set.requirements.values() + if should_build_for_install_command( + r, check_binary_allowed + ) + ] + + _, build_failures = build( + reqs_to_build, + wheel_cache=wheel_cache, + verify=True, + build_options=[], + global_options=[], + ) + + # If we're using PEP 517, we cannot do a direct install + # so we fail here. + pep517_build_failure_names: List[str] = [ + r.name # type: ignore + for r in build_failures if r.use_pep517 + ] + if pep517_build_failure_names: + raise InstallationError( + "Could not build wheels for {} which use" + " PEP 517 and cannot be installed directly".format( + ", ".join(pep517_build_failure_names) + ) + ) + + # For now, we just warn about failures building legacy + # requirements, as we'll fall through to a direct + # install for those. + for r in build_failures: + if not r.use_pep517: + r.legacy_install_reason = 8368 + + 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, + install_options, + 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) # noqa + + return ERROR + + if options.target_dir: + assert target_temp_dir + self._handle_target_dir( + options.target_dir, target_temp_dir, options.upgrade + ) + + 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 == "2020-resolver" + 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 = ( + "{name} {version} requires {requirement}, " + "which is not installed." + ).format( + name=project_name, + version=version, + requirement=dependency[1], + ) + 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 == "2020-resolver" 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 reject_location_related_install_options( + requirements: List[InstallRequirement], options: Optional[List[str]] +) -> None: + """If any location-changing --install-option arguments were passed for + requirements or on the command-line, then show a deprecation warning. + """ + def format_options(option_names: Iterable[str]) -> List[str]: + return ["--{}".format(name.replace("_", "-")) for name in option_names] + + offenders = [] + + for requirement in requirements: + install_options = requirement.install_options + location_options = parse_distutils_args(install_options) + if location_options: + offenders.append( + "{!r} from {}".format( + format_options(location_options.keys()), requirement + ) + ) + + if options: + location_options = parse_distutils_args(options) + if location_options: + offenders.append( + "{!r} from command line".format( + format_options(location_options.keys()) + ) + ) + + if not offenders: + return + + raise CommandError( + "Location-changing options found in --install-option: {}." + " This is unsupported, use pip-level options like --user," + " --prefix, --root, and --target instead.".format( + "; ".join(offenders) + ) + ) + + +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/Scripts/Lib/site-packages/pip/_internal/commands/list.py b/Scripts/Lib/site-packages/pip/_internal/commands/list.py new file mode 100644 index 0000000..828889f --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/commands/list.py @@ -0,0 +1,337 @@ +import json +import logging +from optparse import Values +from typing import TYPE_CHECKING, Iterator, 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.misc import stdlib_pkgs, tabulate, write_output +from pip._internal.utils.parallel import map_multithread + +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] + + +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", + ) + + 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.") + + cmdoptions.check_list_path_option(options) + + skip = set(stdlib_pkgs) + if options.excludes: + skip.update(canonicalize_name(n) for n in options.excludes) + + packages: "_ProcessedDists" = [ + cast("_DistWithLatestInfo", d) + for d in get_environment(options.path).iter_installed_distributions( + local_only=options.local, + user_only=options.user, + editables_only=options.editable, + include_editables=options.include_editable, + skip=skip, + ) + ] + + # get_not_required must be called firstly in order to find and + # filter out all dependencies correctly. Otherwise a package + # can't be identified as requirement because some parent packages + # could be filtered out before. + if options.not_required: + packages = self.get_not_required(packages, options) + + if options.outdated: + packages = self.get_outdated(packages, options) + elif options.uptodate: + packages = self.get_uptodate(packages, options) + + self.output_package_listing(packages, options) + return SUCCESS + + def get_outdated( + self, packages: "_ProcessedDists", options: Values + ) -> "_ProcessedDists": + return [ + dist for dist in self.iter_packages_latest_infos(packages, options) + if dist.latest_version > dist.version + ] + + def get_uptodate( + self, packages: "_ProcessedDists", options: Values + ) -> "_ProcessedDists": + return [ + dist for dist in self.iter_packages_latest_infos(packages, options) + if dist.latest_version == dist.version + ] + + def get_not_required( + self, packages: "_ProcessedDists", options: Values + ) -> "_ProcessedDists": + dep_keys = { + canonicalize_name(dep.name) + for dist in packages + for dep in (dist.iter_dependencies() or ()) + } + + # Create a set to remove duplicate packages, and cast it to a list + # to keep the return type consistent with get_outdated and + # get_uptodate + return list({pkg for pkg in packages if pkg.canonical_name not in dep_keys}) + + def iter_packages_latest_infos( + self, packages: "_ProcessedDists", options: Values + ) -> Iterator["_DistWithLatestInfo"]: + 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_multithread(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(map(lambda x: '-' * x, 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. + """ + running_outdated = options.outdated + # Adjust the header for the `pip list --outdated` case. + if running_outdated: + header = ["Package", "Version", "Latest", "Type"] + else: + header = ["Package", "Version"] + + data = [] + if options.verbose >= 1 or any(x.editable for x in pkgs): + header.append("Location") + if options.verbose >= 1: + header.append("Installer") + + 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 options.verbose >= 1 or proj.editable: + 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 + data.append(info) + return json.dumps(data) diff --git a/Scripts/Lib/site-packages/pip/_internal/commands/search.py b/Scripts/Lib/site-packages/pip/_internal/commands/search.py new file mode 100644 index 0000000..7a20ba1 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/commands/search.py @@ -0,0 +1,164 @@ +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/Scripts/Lib/site-packages/pip/_internal/commands/show.py b/Scripts/Lib/site-packages/pip/_internal/commands/show.py new file mode 100644 index 0000000..5b2de39 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/commands/show.py @@ -0,0 +1,234 @@ +import csv +import logging +import pathlib +from optparse import Values +from typing import Iterator, List, NamedTuple, Optional, Tuple + +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 + requires: List[str] + required_by: List[str] + installer: str + metadata_version: str + classifiers: List[str] + summary: str + homepage: str + author: str + author_email: str + license: str + entry_points: List[str] + files: Optional[List[str]] + + +def _covert_legacy_entry(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)) + + +def search_packages_info(query: List[str]) -> Iterator[_PackageInfo]: + """ + 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_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) -> List[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() + } + ] + + def _files_from_record(dist: BaseDistribution) -> Optional[Iterator[str]]: + try: + text = dist.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 _files_from_legacy(dist: BaseDistribution) -> Optional[Iterator[str]]: + try: + text = dist.read_text('installed-files.txt') + except FileNotFoundError: + return None + paths = (p for p in text.splitlines(keepends=False) if p) + root = dist.location + info = dist.info_directory + 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 ( + _covert_legacy_entry(pathlib.Path(p).parts, info_rel.parts) + for p in paths + ) + + for query_name in query_names: + try: + dist = installed[query_name] + except KeyError: + continue + + try: + entry_points_text = dist.read_text('entry_points.txt') + entry_points = entry_points_text.splitlines(keepends=False) + except FileNotFoundError: + entry_points = [] + + files_iter = _files_from_record(dist) or _files_from_legacy(dist) + 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 "", + requires=[req.name for req in dist.iter_dependencies()], + required_by=_get_requiring_packages(dist), + installer=dist.installer, + metadata_version=dist.metadata_version or "", + classifiers=metadata.get_all("Classifier", []), + summary=metadata.get("Summary", ""), + homepage=metadata.get("Home-page", ""), + author=metadata.get("Author", ""), + author_email=metadata.get("Author-email", ""), + license=metadata.get("License", ""), + entry_points=entry_points, + files=files, + ) + + +def print_results( + distributions: Iterator[_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) + 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()) + 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/Scripts/Lib/site-packages/pip/_internal/commands/uninstall.py b/Scripts/Lib/site-packages/pip/_internal/commands/uninstall.py new file mode 100644 index 0000000..c590627 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/commands/uninstall.py @@ -0,0 +1,100 @@ +import logging +from optparse import Values +from typing import List + +from pip._vendor.packaging.utils import canonicalize_name + +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 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.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}")' + ) + + 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() + + warn_if_run_as_root() + return SUCCESS diff --git a/Scripts/Lib/site-packages/pip/_internal/commands/wheel.py b/Scripts/Lib/site-packages/pip/_internal/commands/wheel.py new file mode 100644 index 0000000..c8bf4e2 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/commands/wheel.py @@ -0,0 +1,176 @@ +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.req.req_install import InstallRequirement +from pip._internal.req.req_tracker import get_requirement_tracker +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/ + + Requirements: setuptools>=0.8, and wheel. + + 'pip wheel' uses the bdist_wheel setuptools extension from the wheel + package to build individual wheels. + + """ + + 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.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.build_dir()) + 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.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: + cmdoptions.check_install_build_global(options) + + session = self.get_default_session(options) + + finder = self._build_package_finder(options, session) + wheel_cache = WheelCache(options.cache_dir, options.format_control) + + options.wheel_dir = normalize_path(options.wheel_dir) + ensure_dir(options.wheel_dir) + + req_tracker = self.enter_context(get_requirement_tracker()) + + directory = TempDirectory( + delete=not options.no_clean, + kind="wheel", + globally_managed=True, + ) + + reqs = self.get_requirements(args, options, finder, session) + + preparer = self.make_requirement_preparer( + temp_build_dir=directory, + options=options, + req_tracker=req_tracker, + session=session, + finder=finder, + download_dir=options.wheel_dir, + use_user_site=False, + ) + + 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) + + # 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/Scripts/Lib/site-packages/pip/_internal/configuration.py b/Scripts/Lib/site-packages/pip/_internal/configuration.py new file mode 100644 index 0000000..a4698ec --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/configuration.py @@ -0,0 +1,403 @@ +"""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 logging +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.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 = logging.getLogger(__name__) + + +# NOTE: Maybe use the optionx attribute to normalize keynames. +def _normalize_name(name): + # type: (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): + # type: (str) -> List[str] + if "." not in name: + error_message = ( + "Key does not contain dot separated section and key. " + "Perhaps you wanted to use 'global.{}' instead?" + ).format(name) + raise ConfigurationError(error_message) + return name.split(".", 1) + + +def get_configuration_files(): + # type: () -> 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, load_only=None): + # type: (bool, Optional[Kind]) -> 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 = { + variant: [] for variant in OVERRIDE_ORDER + } # type: Dict[Kind, List[Tuple[str, RawConfigParser]]] + self._config = { + variant: {} for variant in OVERRIDE_ORDER + } # type: Dict[Kind, Dict[str, Any]] + self._modified_parsers = [] # type: List[Tuple[str, RawConfigParser]] + + def load(self): + # type: () -> 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): + # type: () -> 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): + # type: () -> Iterable[Tuple[str, Any]] + """Returns key-value pairs like dict.items() representing the loaded + configuration + """ + return self._dictionary.items() + + def get_value(self, key): + # type: (str) -> Any + """Get a value from the configuration. + """ + try: + return self._dictionary[key] + except KeyError: + raise ConfigurationError(f"No such key - {key}") + + def set_value(self, key, value): + # type: (str, Any) -> None + """Modify a value in the configuration. + """ + 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): + # type: (str) -> None + """Unset a value in the configuration.""" + self._ensure_have_load_only() + + assert self.load_only + if key not in self._config[self.load_only]: + raise ConfigurationError(f"No such key - {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): + # type: () -> 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)) + + with open(fname, "w") as f: + parser.write(f) + + # + # Private routines + # + + def _ensure_have_load_only(self): + # type: () -> 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): + # type: () -> 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): + # type: () -> 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, fname): + # type: (Kind, str) -> RawConfigParser + logger.debug("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): + # type: (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): + try: + parser.read(fname) + except UnicodeDecodeError: + # See https://github.com/pypa/pip/issues/4963 + raise ConfigurationFileCouldNotBeLoaded( + reason="contains invalid {} characters".format( + locale.getpreferredencoding(False) + ), + 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): + # type: () -> 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, items): + # type: (str, 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): + # type: () -> 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): + # type: () -> Iterable[Tuple[Kind, List[str]]] + """Yields variant and configuration files associated with it. + + This should be treated like items of a dictionary. + """ + # SMELL: Move the conditions out of this function + + # environment variables have the lowest priority + config_file = os.environ.get('PIP_CONFIG_FILE', None) + if config_file is not None: + yield kinds.ENV, [config_file] + else: + yield kinds.ENV, [] + + config_files = get_configuration_files() + + # at the base we have any global configuration + yield kinds.GLOBAL, config_files[kinds.GLOBAL] + + # per-user configuration next + should_load_user_config = not self.isolated and not ( + config_file and os.path.exists(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] + + # finally virtualenv configuration first trumping others + yield kinds.SITE, config_files[kinds.SITE] + + def get_values_in_config(self, variant): + # type: (Kind) -> Dict[str, Any] + """Get values present in a config file""" + return self._config[variant] + + def _get_parser_to_modify(self): + # type: () -> 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, parser): + # type: (str, 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): + # type: () -> str + return f"{self.__class__.__name__}({self._dictionary!r})" diff --git a/Scripts/Lib/site-packages/pip/_internal/distributions/__init__.py b/Scripts/Lib/site-packages/pip/_internal/distributions/__init__.py new file mode 100644 index 0000000..9a89a83 --- /dev/null +++ b/Scripts/Lib/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/Scripts/Lib/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..25a38a162f3e5ca131ab314768a427338461c4cf GIT binary patch literal 821 zcmaJ<&5G1O5bjPgNp^R3!NIE#!AlNiJP3k__=h0q9Cj9j5D1-g?M^$LpY86byDWIn zm+>8Z0G}aO@!%_XP^+_!#uc_gRaaG4SAG3;n%&)Pg7WF}*Hz;Z^2G*Y@i2IRs-L3a zgi}c>no??gM>>_8x`XdZubQNj!S|$J1!;i(1On~@J@k0M!w+5>@~tI_x4&U864UtLe3)w3#R{-)ta`vp&hDo^($DL46L2ddSah}T+9QVEg z)2X_ocII!fzJvN0Ro_5!MqUvW7wb^FCDRH3?n*hRAg2V z9f{XaNB<*Q#9ki)7lsuQ6w*xkQ0V-Py^pdC$5i>ad?d=g#`kyW-E0AGO(~m>XSZ(W z&qbk_I?3{brja^ZbZf{SiDt!4nc~?CrVXg*0IF6p1KF}vqBT0hQ<)Y9Znmskvm?-1 zE82N3YOJoAobwUudY7-y9lzoK$`ekK$I5kjqY29Bg(`*0sL$C?z2E3Z!%mL!S^~mg4 eFyXzb;hlv0_8-wRG*dFA_H$f^IzJs}@5e7<-|>wA literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/distributions/__pycache__/base.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/distributions/__pycache__/base.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3cce905945011f89edaad1c10d7179062e51b2bf GIT binary patch literal 1929 zcmaJ?O>Z1E7`A6-KeOA=HWZ3zHR^?~L^h~!st_VAAF4!`isUp})$)$LSts7{)b=zV z^h6`|#D9Qe{sTXN-!S5aIB@310eJ1%Nq0*Wuk3yO@!HSxzK=bs-|r$Qzx?{g?6(M^ z-(6?9G@$c2RPzKHh8UJ8asPqD^B@VZvqKrqqa^ZnBpdT)()4yiw&v}mjnUVLHCgKv zu@*=B9oGIaOu7v3ph4$P*cFWixNLu$TcI*4!R~z_jMZXNxDn|0pV0Jx?(wfg#<+%o zYmYKxsg&RGXNAyw&NG|3jh0Jm(J@cK;3&ZiB>}@p$O0a*kVVtz6`Eq!V9nEB(%{Yg z77KZscW$C-z*?+*8ok6x*N=Dj8td|&_iC~=*7I}yS13Zs6`;{CH?}7LnWlCbI_(Dt zZO0R8c$`XVOgvROp3#g+k?qBzB0(pT$5dM}1$Q&-c4H{JGal>L>?%*19oyOeJ;B?} zOQ{ac{mMPwj1PG{FN}>RFzrsTDrVerJr@~tR=1BcI_LgeIQlMN1m~1yAJ{lmTJzM( z;|g}=nW=2E$oDj5ZkgeO1!y?c5zMP>nfOrHS!}p1@)a&0o@1lZs2X5>{F^w1UUBxD zs>0UMbK#(jiAp^6Cg%|DIzW!C0fw*53T_6M1uq3>3$cus zGaReQK7=RcN4YW%3LI5qpcC~Ra=p>bjP0qYK!!1DS?*++oVzX6fmPn#D~%jVQSPv!cg5RwsL6vPf5u+(L=F3zs$=&R82MD#VV z24MyJZ8v(uHE$5Om1~|;%~xQPT3~m;qrxAZ+`AC}rS5}urziIg5K?vtnJZREXZHws zR#3T^X%WIy3X*f*1)te6q?5F~LKp8Jz?mtgT_Ck1tDTg!%X}G4Kx_IPXZ9E3Ou3Y> z*=wSGx7wvkyIi|ZlX22%qX^$vkD?76g#m`&zrF?=|M+$AN$9vZc)<_W^!wmaHtlf^ zSJFc%Z-P*VeWe!dp+&}H&yxKKH%5?hhDy1Edqvkyht+J5lxF+lKm dmI!%jUVrURtC)V~@^73%+o*?o0sQd0;eS$fBq#s? literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..74bcbec2adc459d0b5ca612a9ddc21f5ce46beb4 GIT binary patch literal 1267 zcmaJ>&2AGh5cd9LvkfWbryP0!t+?gD7Kt7ZLa0CmLV|#3Ppg$IXFW;W?q6*$YAOy$ z^uRmt1bqh{fM?h%;=n6#0LD&RrKsveGn(;?=kN2TT3+rEq;KDUPQSW@{4mBM`Dkn+ zt1T3qa3?2)lQ@pi-P|p_#Iw4W`$Z?|Sl!QqqMLLb@{;fl4~_^Ap!3;FLf+jbgYXw- zA_J!l-_}}GCCgFoZwaNP7&Ybu?bW9vv{|PAJ70dsvOP9|7oy}KGm~kN0yH*})k73O z5{Hw-m^}MUN*Nc#Lrb0!$0u_~&j!FQI(X$Az)=V-pVZ>CVrw~clZ-hj@ zD94p7=DsO9SuTO`nN2qWD5I<@>P7>P?NJ*@(2XoJ2j@H`qZ@vXtU?qY$u8M-w#l(G z9JsBA#oE5Y8fq+n)6op~>?_E}$3*rq{P(BiQ96VJo#j=-)B79rwHQezXDQvOs$8YR zW)IS5qMEWpCVBdXDGf5(fuhcthIBiVqSh+KTd5Kn?wxE!rM0NnsVFfT(O%~ZP^%9rZEmw`qK+(nMYi2Thr6hC?H!g%IzC1x2jP1i|S4NG^pHv-pl9rv$g_v#-TF&r$lfu7Z(oY*4m8Uh{D4^Z+-#^+$P z_1nn$Pai_O2(5}oOo24ZZttECGl(6;Cy$BF0kl)tCKg(^lUM-4$MdB;F(@kY57#Gs J7k|#G_YXt3W5NIc literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4bbe94f0ee528485480f55a316e04295234cd3f3 GIT binary patch literal 3607 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 literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/distributions/base.py b/Scripts/Lib/site-packages/pip/_internal/distributions/base.py new file mode 100644 index 0000000..fbdd5e4 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/distributions/base.py @@ -0,0 +1,38 @@ +import abc +from typing import Optional + +from pip._vendor.pkg_resources import Distribution + +from pip._internal.index.package_finder import PackageFinder +from pip._internal.req import InstallRequirement + + +class AbstractDistribution(metaclass=abc.ABCMeta): + """A base class for handling installable artifacts. + + The requirements for anything installable are as follows: + + - we must be able to determine the requirement name + (or we can't correctly handle the non-upgrade case). + + - for packages with setup requirements, we must also be able + to determine their requirements without installing additional + packages (for the same reason as run-time dependencies) + + - we must be able to create a Distribution object exposing the + above metadata. + """ + + def __init__(self, req: InstallRequirement) -> None: + super().__init__() + self.req = req + + @abc.abstractmethod + def get_pkg_resources_distribution(self) -> Optional[Distribution]: + raise NotImplementedError() + + @abc.abstractmethod + def prepare_distribution_metadata( + self, finder: PackageFinder, build_isolation: bool + ) -> None: + raise NotImplementedError() diff --git a/Scripts/Lib/site-packages/pip/_internal/distributions/installed.py b/Scripts/Lib/site-packages/pip/_internal/distributions/installed.py new file mode 100644 index 0000000..0d452e2 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/distributions/installed.py @@ -0,0 +1,22 @@ +from typing import Optional + +from pip._vendor.pkg_resources import Distribution + +from pip._internal.distributions.base import AbstractDistribution +from pip._internal.index.package_finder import PackageFinder + + +class InstalledDistribution(AbstractDistribution): + """Represents an installed package. + + This does not need any preparation as the required information has already + been computed. + """ + + def get_pkg_resources_distribution(self) -> Optional[Distribution]: + return self.req.satisfied_by + + def prepare_distribution_metadata( + self, finder: PackageFinder, build_isolation: bool + ) -> None: + pass diff --git a/Scripts/Lib/site-packages/pip/_internal/distributions/sdist.py b/Scripts/Lib/site-packages/pip/_internal/distributions/sdist.py new file mode 100644 index 0000000..596b516 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/distributions/sdist.py @@ -0,0 +1,95 @@ +import logging +from typing import Set, Tuple + +from pip._vendor.pkg_resources import Distribution + +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.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`. + """ + + def get_pkg_resources_distribution(self) -> Distribution: + return self.req.get_dist() + + def prepare_distribution_metadata( + self, finder: PackageFinder, build_isolation: 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: + self._setup_isolation(finder) + + self.req.prepare_metadata() + + def _setup_isolation(self, finder: PackageFinder) -> None: + def _raise_conflicts( + 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) + ), + ) + raise InstallationError(error_message) + + # 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", "Installing build dependencies" + ) + conflicting, missing = self.req.build_env.check_requirements( + self.req.requirements_to_check + ) + if conflicting: + _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))), + ) + # 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. + 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): + reqs = backend.get_requires_for_build_wheel() + + conflicting, missing = self.req.build_env.check_requirements(reqs) + if conflicting: + _raise_conflicts("the backend dependencies", conflicting) + self.req.build_env.install_requirements( + finder, missing, "normal", "Installing backend dependencies" + ) diff --git a/Scripts/Lib/site-packages/pip/_internal/distributions/wheel.py b/Scripts/Lib/site-packages/pip/_internal/distributions/wheel.py new file mode 100644 index 0000000..00a70b0 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/distributions/wheel.py @@ -0,0 +1,34 @@ +from zipfile import ZipFile + +from pip._vendor.pkg_resources import Distribution + +from pip._internal.distributions.base import AbstractDistribution +from pip._internal.index.package_finder import PackageFinder +from pip._internal.utils.wheel import pkg_resources_distribution_for_wheel + + +class WheelDistribution(AbstractDistribution): + """Represents a wheel distribution. + + This does not need any preparation as wheels can be directly unpacked. + """ + + def get_pkg_resources_distribution(self) -> Distribution: + """Loads the metadata from the wheel file into memory and returns a + Distribution that uses it, not relying on the wheel file or + requirement. + """ + # Set as part of preparation during download. + assert self.req.local_file_path + # Wheels are never unnamed. + assert self.req.name + + with ZipFile(self.req.local_file_path, allowZip64=True) as z: + return pkg_resources_distribution_for_wheel( + z, self.req.name, self.req.local_file_path + ) + + def prepare_distribution_metadata( + self, finder: PackageFinder, build_isolation: bool + ) -> None: + pass diff --git a/Scripts/Lib/site-packages/pip/_internal/exceptions.py b/Scripts/Lib/site-packages/pip/_internal/exceptions.py new file mode 100644 index 0000000..8aacf81 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/exceptions.py @@ -0,0 +1,397 @@ +"""Exceptions used throughout package""" + +import configparser +from itertools import chain, groupby, repeat +from typing import TYPE_CHECKING, Dict, List, Optional + +from pip._vendor.pkg_resources import Distribution +from pip._vendor.requests.models import Request, Response + +if TYPE_CHECKING: + from hashlib import _Hash + + from pip._internal.req.req_install import InstallRequirement + + +class PipError(Exception): + """Base pip exception""" + + +class ConfigurationError(PipError): + """General exception in configuration""" + + +class InstallationError(PipError): + """General exception during installation""" + + +class UninstallationError(PipError): + """General exception during uninstallation""" + + +class NoneMetadataError(PipError): + """ + Raised when accessing "METADATA" or "PKG-INFO" metadata for a + pip._vendor.pkg_resources.Distribution object and + `dist.has_metadata('METADATA')` returns True but + `dist.get_metadata('METADATA')` returns None (and similarly for + "PKG-INFO"). + """ + + def __init__(self, dist, metadata_name): + # type: (Distribution, 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): + # type: () -> str + # Use `dist` in the error message because its stringification + # includes more information, like the version and location. + return ( + 'None {} metadata found for distribution: {}'.format( + self.metadata_name, self.dist, + ) + ) + + +class UserInstallationInvalid(InstallationError): + """A --user install is requested on an environment without user site.""" + + def __str__(self): + # type: () -> str + return "User base directory is not specified" + + +class InvalidSchemeCombination(InstallationError): + def __str__(self): + # type: () -> 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, response=None, request=None): + # type: (str, Response, Request) -> 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): + # type: () -> str + return str(self.error_msg) + + +class InvalidWheelFilename(InstallationError): + """Invalid wheel filename.""" + + +class UnsupportedWheel(InstallationError): + """Unsupported wheel.""" + + +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 + or user-supplied ``#egg=`` value. + """ + def __init__(self, ireq, field, f_val, m_val): + # type: (InstallRequirement, str, str, str) -> None + self.ireq = ireq + self.field = field + self.f_val = f_val + self.m_val = m_val + + def __str__(self): + # type: () -> str + template = ( + "Requested {} has inconsistent {}: " + "filename has {!r}, but metadata has {!r}" + ) + return template.format(self.ireq, self.field, self.f_val, self.m_val) + + +class InstallationSubprocessError(InstallationError): + """A subprocess call failed during installation.""" + def __init__(self, returncode, description): + # type: (int, str) -> None + self.returncode = returncode + self.description = description + + def __str__(self): + # type: () -> str + return ( + "Command errored out with exit status {}: {} " + "Check the logs for full command output." + ).format(self.returncode, self.description) + + +class HashErrors(InstallationError): + """Multiple HashError instances rolled into one for reporting""" + + def __init__(self): + # type: () -> None + self.errors = [] # type: List[HashError] + + def append(self, error): + # type: (HashError) -> None + self.errors.append(error) + + def __str__(self): + # type: () -> 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 __nonzero__(self): + # type: () -> bool + return bool(self.errors) + + def __bool__(self): + # type: () -> bool + return self.__nonzero__() + + +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 = None # type: Optional[InstallRequirement] + head = '' + order = -1 # type: int + + def body(self): + # type: () -> 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): + # type: () -> str + return f'{self.head}\n{self.body()}' + + def _requirement_name(self): + # type: () -> 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): + # type: (str) -> None + """ + :param gotten_hash: The hash of the (possibly malicious) archive we + just downloaded + """ + self.gotten_hash = gotten_hash + + def body(self): + # type: () -> 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.original_link + # 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, gots): + # type: (Dict[str, List[str]], 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): + # type: () -> str + return ' {}:\n{}'.format(self._requirement_name(), + self._hash_comparison()) + + def _hash_comparison(self): + # type: () -> str + """ + Return a comparison of actual and expected hash values. + + Example:: + + Expected sha256 abcdeabcdeabcdeabcdeabcdeabcdeabcdeabcdeabcde + or 123451234512345123451234512345123451234512345 + Got bcdefbcdefbcdefbcdefbcdefbcdefbcdefbcdefbcdef + + """ + def hash_then_or(hash_name): + # type: (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 = [] # type: List[str] + for hash_name, expecteds in self.allowed.items(): + prefix = hash_then_or(hash_name) + lines.extend((' Expected {} {}'.format(next(prefix), e)) + for e in expecteds) + lines.append(' Got {}\n'.format( + self.gots[hash_name].hexdigest())) + 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="could not be loaded", fname=None, error=None): + # type: (str, Optional[str], Optional[configparser.Error]) -> None + super().__init__(error) + self.reason = reason + self.fname = fname + self.error = error + + def __str__(self): + # type: () -> 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}" diff --git a/Scripts/Lib/site-packages/pip/_internal/index/__init__.py b/Scripts/Lib/site-packages/pip/_internal/index/__init__.py new file mode 100644 index 0000000..7a17b7b --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/index/__init__.py @@ -0,0 +1,2 @@ +"""Index interaction code +""" diff --git a/Scripts/Lib/site-packages/pip/_internal/index/__pycache__/__init__.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/index/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..743e5058210e849ca1ee4ebc0e6a537a166de830 GIT binary patch literal 247 zcmYjMu}T9$5Zz1T5lC%&Z3;aLs~{qFf?ktUVPF_{2eV{zv+V9+l0Whv`~bfpt@smG z&ZY9fyx|SJ#~Yc=rbhAk^|NVoe~;onDisepxmI#!ZCtf9^U3k@sdv0@d|x<`EnfP@ zisNZFuTB?;PAuYwNfULQ>GyrTfR6XY1{oaO+~Tu;O_UCRE0K_)8@3FOUN&^3(mfko+^s&WrkDfy7$677w!575qcsSK}J8?tc`|*`L H7OKr3Mk+}v literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/index/__pycache__/collector.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/index/__pycache__/collector.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5b81d636af4c4cfd4adaf36bbdbe9ecc52ff9623 GIT binary patch literal 15971 zcmbVzd2k$8df#+UPfyQaFgOT;q(o9JN)!n#Ig}`A4=l;01Rj!>gt!E>@{Xwto6`+o zz&W7TJ)|%JHnPEuWS8aCR?4|Hsse1s4*f^Ul~k&7Y~`ppsW_E8u2j;0Bvo-G6<1P8 zIa^6=UCi(Iz3u@9BAvB?>esLPy?*C+{J!sd(-|HvX7KmJfBc`9vX?WN-{!;4zXBf4 z;|ih`~Or=4flII@TJmj<@zy_p~Oe6Ro|~y{*aWWNTk_Uu%DLztqb$540Yu zKGu4?`nWvX&4aB&)kBicHxIX-s6NqhtFAmd%_mz&sz)SWXg<|?y85)_i_N30XR6Og zeyDk@b-a39@}=ff>)GnFk{@n!s>TMkcT~zZ`sJ%cy=e7+(I`^7Qi8t7n3V;B0Vq!90+up7Y0pv;Ll7 zGB|r6vtaoX{@#05^&6Kn{-nR}UdG=SoZrY+U-tJ0hx|Rhi5ds|$57)H)Og%Kh#Ci_ z#*DOcC^#;)Z2z$T1ZrK_ej6NGuzlBm5^pd1M}l)Z`h3cN8gDQ8M}sr|Gcua9sC&#m zj<=WnspO62KkI)9Z(iN;=7fI|Z(a+W&DZ@(;4FW0%dB4UPvMK_f~)9(?L6yp=1*gO(;H^>TmILBG5^e>5sXVM ztQ=a`Z}y~b(DGUT9KO9CT=&1>pFs^>+w#x*FW<8^jOrX(eZ@b6R?nc-`GV=s`7^=O z{)J#acH}&F#J`BW81pY3$gmHrxZ_{;U%i*BzUj})F1#)?o5#$)>0iP7Z}(d{gfEZF z$R_C-Dcn-7j@j=T`9ZLXy2acG@C&^>ZnRx=W1c6tLi~`e5z9X z9kTK4lo8wC_L|)woN{7k#%ngcTg@PLUW)=HIqOOzjN3 zir0fktzJ~BqtL+I70IE_gC+ixQZgm??KUw8Ciw0s_ z1yNVE>ue$YGm)`y&EN{Zj3mk|8y7Nf?_D?6GMnaBW;45HY#D0*S|+mAj12=sW8BH$ z*)TIkW-jwiR)`|oTfEZg+;%ZZ_uDgbZdhLmT0!W7L?Y12o7b;YibWTHSYnI;kpY60kK_sX^1;;|S-2ttkWPNx~( znC;#UZoJayEO|Xo`8Te5A!yK@4_YftEclJNx@xRM;SGFsBWy&$$rZ1D8ygVbSZS=B zsx{iE4I(_%X#2strxJn(>94HDV>Ovd4Le!WV|pF~3aQzOxx4_z7ZE{wR+PFLsaC}sH03yAUTUG z3YqiBpXIbT8xL2zUo1H6=h85 z-b`2NX2L;I8ST2?7F5~ok8W$K~m0@jj~}qP~7-Bu7N+w ztn;|S5|VA=$09;->N(F}o1Mz4=TNT5Q|dI6?Gf~cq0XV;Dz0RY!Eby6S)wI&oiZ`~ zkFpz?pT@>7TWcBL^s^tD>-i|R zmftXpOl0eOvi1LDE@=C%=e~OJMbS!}V;as=#X*C2?$)5o8VXu7Bq`a@L)5^z6;DCYId}|L znvF>BfJKr}6KG6`V9F8Ut-iq*Pq7QT9YoDeJ+@Xn2>2Y7xLS>!1?4TaK;p4Q4%xBg z9#hOumJ7-~4mu0aa= z#)puGk+qrgO>8nswRBw0g9sp({oG$PeH)};M$Q_(L*0VDuMtl<-UQa~g3tD>*NP>j-=ZU-^6hh#mP(v{l1ZV@Qa9XR~=PT}OqEV@e-6m9Z z=!V^JrBQEmx?ywGZ8mNP>^%V`C){ucc`h_m2&vH#5`hwj)_$1O!YC+_PLPbfJDmnV zeCKYv+3|b;HIRDKQpMwmvNk1!5Z+OPT=A5KFR~=wR^)*zTohqumxT`TF;1_HF zb)%4bY&ScLi%{4(Ke*LhRQp(On#ndFW_R%6H(9hTRfWaIYfubYsHgnpp;}0YRvs=H zqo!q=hH08*>v!$Xoe3vznTp&bqZ?4EWH<}g46cw8d@ZB)`CvI<&V3QV2k_?sN?$10 zb<+p@UcO?6KX*$|B`oy)V&IUTJH!oHrgZtk6@l46`(m$y2%bJ zg5fw{U!tIjX0gQC`eGw4iQr0f7t{@xS9D!$qr_{4yVvG1S(~(5jph@5`lmTZBEM30 z9LUcxpo!jMua4iTcSWMXCRhxJ{s*KI7pT8T8h31BS+)q=N7k_8n?O;IU1}D;KDJaeNu#Z?fMcrLfd^KA{|{S z$^eTRp)>~zA?((dWF*J&6*e7G!0(`43J$&d?j5fQk;E~${r;yQtdiMFOXLmAK2e+9 z5Y~w|IJiXSPRn-pS8UpSIg#AyD52AnxeJk1+VDl(AQWA5_Wz8 zh6+TZu>F*!egfpBzC%K^SW#8^yo=@cz-CB9agCKoqaUH3=+ttlDD-ST0H41t4PoHX z0HYJorJD6e6g3)HNeZpH1!^X^>s^zznrQ~qP3{r4b42Jv_J}yZJ>IAU71vv!jV5S9 zWF`3e$oV5sRbb0Hib6OVs0v`CC`uP~fdd1E0QtrFZd)>txPOdgyJkB98wCU4Bx~#v ziHd$56+g}8cH#hU)V7f5}nqnY--npq9reaJ_o7L=gUYg|HdI(?&Vp~9n9hC}Kv&)+~ry)s3$ zfP621{QTO{)0d{ytL$SKz7Ls+@=i~XDkA7ZBY7+LoE=FTbp^`iA2UmBTrpiVXmYnISgw)gC= zO_2p%=_uhx${{TTNjd5(7!Y+S=OkMmj|1L%l^6H=d$ws~mOE@w;F5Sp{g zIodq{wpn3Y8*lR14)a6JyjJg5WpS_efe?ro9xB4Kg)X6(@SLyt@)G2B@UBOJ2xYP0 z9>ag94uRR1{}60cBY?%tCcz*CY}2blLJLkla`g0bM@~qGgjjsn=~4-F;VeAKo`|3X zVeJqKx^Lhlu03uf&{-HB+Y*8{3f3LFd>Li3TAGZDDCoAO2qtJU7zmd`s77B~2=Oh= z>doCHQihTp;)47~d?7Y)$#KlGF=41xX+!J4*hvNKfOCeHDcvI+Y1l*pf1Q8;s{OD) zuUuqA=5lt^0xM+6AnUM7Q3vjb_1s!c9TxV5EjYITjSc;8e`@8`JyfdW8u%ku zp2sC#+P(**BmAOl{{gt^zn+W`k4oRM=GMb9Jv#dw`Yh+YBm2N+NN zNhwk%ag+S6brT2OFhD`bc^2vLJM^%j_MLxmPFQ(BdvJjKTn2dDIz%;as9;AsrhWrb}M9v^^f+6B*Cb{qY<{j&4xatJU^$Fl@B+ z==IYzA*i?|>U}0$tJ$f-Zs*wvypHY8t!02xU_q!c^>cicg@;@HDSo&;4#{ya>U&5^ z90w(ogS{NL#w~dpn+t8}a9|xcT&`ahS9lExl?i>QA0o~gnZ6ZeBa0EoZSVGm@iPXD z!Q2PX=zbmqzoX9k28h1k7w?rI@Sv_BtcH63T7=bQL|Z78s9Qz93(yh?E}oY(()5!Q zO>eu5yil;EY;nRBx+Xf8=F(VC&F3Tc+ zAmp}zm`+M=CPf;&<-)6m`UO;jN~D>pH(F>de^(L0C2eIjKSA_0FEN8 zoDrB8o~tC^Y?Iuh2S-|@A6*qbNO>0nj7$!9=U}ty0}hPTrv3~PjFjWPZ|VX6S-$TR zWjvCMpqAVbLf2etngwt1@#NUKI9qb;FN7G8Rs8e) zLH#-AWIZPz-tz$tP{KlmgNBnmY*;z<5kKN22Ud@~!>f)fr0w=o!aW0xCj$24ld|RPulczJQ0!bvd9CP0 z?{DyNTdK(p4T*#hW(;wRA``M4ak?DUxM|p**>;h#KULwMIXRQwoZnNwh>F~nfj-wyJWa0^9|X*nqJd|*Su4f!Rg^@8tUU& zd&jP)9tV0Z>Hl2>l=hk(;9e4$>VrK%JDE{xMJCJcBDdh(rQ@ z8436qYcRwR`~#vy@Q*^)^jcUOk!CcO64yk!57Xk)NS_D*{Qz6716zwCmy^BIkZ?y6 zfNT0|IyOWm-(70Z*^~Hf+`FKx)X^Ly*2IqQzbHzl-MdQ&R>56BkQQR0K+nEzTTU@> z&Rsik$*x$ zHi>n#y+CwjY+_$_Z6$)^0umllw2QO_b-hlK7HgtxC!y9GAyoQRy zRxdF5J`(~K^-D~)dz2jcSeWE8yCkVQ8Srl2`UKGXb31E(1{d|GX3qS?w2L2)?@^Qk zG~#GS#1=!FQ)cDi(Q#o9(ORaTfz-?szt9Uyw>6GTWO3RG;CRZM?H!#FN}*43A;5_S z@nIber`@BWd(sVWH{?hQnt4#hflkJ&_aM}yx*Y=_J>4GQS))=Yq zI87=ACubX@hPsdJyeP~8z?{Wv*6L3o-ATGys65E)h-EUw#elWR2j^E1_T!FY?u{v5(*|#O+`kFx=*-2~J=UiD(t^`lK}1l$H_LEda;^^jBam0EDoO;Z$a*E=LKrm26IAFXuNAoI_l}))8H} zk?_A}`SxvWM^soYZVsVVX>)iDRxwV*T!Wjv?B}j>?^!LJr2+A{4POO5~>``CC&9UvWpA~U_$W^@3O@ehO!$gR{xxZMis9)bh|(FUA< zA(oLKYj=gP=WcLIlyO*zEjmg+Hcs`5q8=)ALG+%InCP@L3g4KHm%~|d!Ua={+X^wi zs~pMAxkN@td%H%U!!ut9Wr zrdx-Dsj<+g!>cmw0_IZ;_Qp{$IgIB9Jh3n6RNA&lK3O7{&)l{wDVYDoS(-uFbR=+dLBis1>__I)oNVa zK0v0AMi@2iW@LOe&LW1bRmLufTOQ<#hyqvP3nxqTYCRaYoU8>90A!2U&Hn5`qnLGo zZA)-bjUuH$2IBqPI#B*^%ook_XV!%CUio(?46BU$k8m&H{=Y5Me$22O=e^P2$KA%e zPw>5EeqynQ2kLL4+d8g+zbu~4;|eQCQf&NYCIBi9ay;h>L~NWHd^XP{Vc&Q(Ib|C7 z`VeFo7a7{p$Q^DT0x||Ecobz9vQPzdsNuxp$i*YIny`$-<@$%y23J%4E!6xgTte#5 zVrG<{TfY0kw5YGn;|hNkNjfbbkRM0)#B0YxA~=L=`+0iqf_%Zjp=y>D0>>`~1(fr^ zF+o3q8r5Pj1S6po48tu#qoFKEhRgm)FoO4^!5G~oJmQVk#&Mi^7zd2^pkxAl=wsV^ z#h}|457Q*;AI|Olb-}3DCGHe9z>oqwlM{^O$(fMQ6$1cjKOvg_=M}yB?X6^0|e}rgT?wZ83hId$H@q`4-LDzJn z5{Gafahj1}lbjxsF~yM4M$Jz5rTV)llY36iYy>-5h-CXY)-c@vp6b2+mJn|;~XhnN@craA}* z|G@~3eR|0NWni`6LzL?R{3C!SP>hU@p{Bj!BA1Ku%MRT4ATfXs8)uIUxbk@(NxSl$ z-aqPFCW+OSs6ic1p3}$TXpB(R;U*_r(yiP!N79dX&u`j&D>1k5ZDXLklKan}h{ppbKwZq7QbQvrZfd+x_<@USs2|Dy;?rtUoqR3|KED0g9QB z*M1~F1;^6c`E@uHdA?cP9RTvFPs|Wo23`uY@|@NngESBq&MXFP1n$+jf0I&z`QBuv zcWjUnbW~v5Bi8>44y(V7QK%mx0rKzD8Ul?7AEqKJ9>tMOEcf~6Vi4*nkN{e33vR)0YPkIPNSgIdCFh(HfcR{bXG{0654`~VLvcMyj$7c#KRU~U@OoN&~HNPBz%B40QYq1P0fiiou5bP?!mC& zKXEYJQpfD=AM9|4=y&Lcq*NNPBKR3uPgsrmnG`_FfiX?s$ZYRipCT`bxt2JCHTVK; z@)Rz~EjjEJW97iIT(<{waFfH67?G_8~Uhe@SOmw!Sc{ekH`}Rfn#5 zIRYI|0OKV;2+(0C0^d3*J^iDW;w9AoE6DIX)%zK7m_v}h`AsL*HMxxO*{QL!JcEj)svJb`C0jiPR#^{Noe)J3yVc@c6;14pG1g7D` zB*Hdo?IP78`AF>_1>LSx^=7Y;s3bMqCZQfp`B4oA@K10)VS9V>;&V3v?0yWqne7(0gu> zTz9Fshe(P?u7diP=w&K9ul^P8v+B2ys(;Jm-!Tyu?vLtIj7t4`y#GRLWQ93g^812C z3dJ$TPheOZ3a0BaR+Kq-HIS#l_I>jmt}FZ+=Cj1*8~7N+E^A|a;UHY`3}Xw3-maW; zu!W+5?Tl&KhWQ!b=VwL8j^6V>?wa)5>K*Gtj^p7JwUdSc0$dQ9=5KK1Ozg+TbZivW zKja|C;-M7NpfnzOL*cZ2;9qFeBau1retJ{-!dD+x5mXb~ARE{}T4d5q6PFs{#Wq7P zK8`TNc^;>POo($AF23^SWwned>Nb-jOvGFeDNUfL0~fZYo`234LZ4&(o>RaRk8ew} z{<~Zg2Vs+SmYwD%$0NH4>AzE!oJPs0U3Bcn!B@4NW@1%6Nw1eGMdF^_zl#p~DsAQG>%ELUtJDh--a zS@uCb)r&=8t_T+OI*AEGQzIV2?~p1r1Ur4Ga0!pl(yUJGcwI^Hn;K@(6Avq@Y#)W* zwqN7@QZ@aN)6O~s)$xJBV*Ds4XoeM#>TMknd-9>>1K3@#%b~$~i3L$fpsA2p{P@G` zbfX4<4o@k>yIPTw3Vkq)^M`UOdiR8M9r%mtiqc!~UpzM06Rhv_2Wa|djG8nbXMJjp zxBvliMGjVL1`$b-liiMoc5Zh*d5DL01iG}3U?j1_f>-6&K%uxT;=;xBe7bfvoMoTl zd$_{fbtdAGeVe&DlLaI=$_&wqiO0p)F3-Mk{o>5aa~IVTi@(n#VzSEQ9+U4e`H0Cc zG7-n_edd0R32k@HheVbS2%wC5~TUFcz!- z>1~)Wi}){rHAjcW^P|N{YjSk*^ki{-&$v@APiDs_&5@m~Y+J=o%ZJV3QLs0Twta3+ j?l;Q&%tM;tix30FL=5al!`1_S3-$BBM%~fr@!bCdu)_%@ literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b4588cf7f6384f278bda168efea7bf47b8917c8c GIT binary patch literal 28178 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 Optional[str]: + """Look for VCS schemes in the URL. + + Returns the matched VCS scheme, or None if there's no match. + """ + for scheme in vcs.schemes: + if url.lower().startswith(scheme) and url[len(scheme)] in '+:': + return scheme + return None + + +class _NotHTML(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_html_header(response: Response) -> None: + """Check the Content-Type header to ensure the response contains HTML. + + Raises `_NotHTML` if the content type is not text/html. + """ + content_type = response.headers.get("Content-Type", "") + if not content_type.lower().startswith("text/html"): + raise _NotHTML(content_type, response.request.method) + + +class _NotHTTP(Exception): + pass + + +def _ensure_html_response(url: str, session: PipSession) -> None: + """Send a HEAD request to the URL, and ensure the response contains HTML. + + Raises `_NotHTTP` if the URL is not available for a HEAD request, or + `_NotHTML` if the content type is not text/html. + """ + 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_html_header(resp) + + +def _get_html_response(url: str, session: PipSession) -> Response: + """Access an HTML page 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, to avoid downloading a large file. + Raise `_NotHTTP` if the content type cannot be determined, or + `_NotHTML` if it is not HTML. + 2. Actually perform the request. Raise HTTP exceptions on network failures. + 3. Check the Content-Type header to make sure we got HTML, and raise + `_NotHTML` otherwise. + """ + if is_archive_file(Link(url).filename): + _ensure_html_response(url, session=session) + + logger.debug('Getting page %s', redact_auth_from_url(url)) + + resp = session.get( + url, + headers={ + "Accept": "text/html", + # 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 HTML + # or not. However we can check after we've downloaded it. + _ensure_html_header(resp) + + 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: + content_type, params = cgi.parse_header(headers["Content-Type"]) + if "charset" in params: + return params['charset'] + return None + + +def _determine_base_url(document: HTMLElement, page_url: str) -> str: + """Determine the HTML document's base URL. + + This looks for a ```` tag in the HTML document. If present, its href + attribute denotes the base URL of anchor tags in the document. If there is + no such tag (or if it does not have a valid href attribute), the HTML + file's URL is used as the base URL. + + :param document: An HTML document representation. The current + implementation expects the result of ``html5lib.parse()``. + :param page_url: The URL of the HTML document. + """ + for base in document.findall(".//base"): + href = base.get("href") + if href is not None: + return href + return page_url + + +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 _clean_link(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)) + + +def _create_link_from_element( + anchor: HTMLElement, + page_url: str, + base_url: str, +) -> Optional[Link]: + """ + Convert an anchor element in a simple repository page to a Link. + """ + href = anchor.get("href") + if not href: + return None + + url = _clean_link(urllib.parse.urljoin(base_url, href)) + pyrequire = anchor.get('data-requires-python') + pyrequire = html.unescape(pyrequire) if pyrequire else None + + yanked_reason = anchor.get('data-yanked') + if yanked_reason: + yanked_reason = html.unescape(yanked_reason) + + link = Link( + url, + comes_from=page_url, + requires_python=pyrequire, + yanked_reason=yanked_reason, + ) + + return link + + +class CacheablePageContent: + def __init__(self, page: "HTMLPage") -> 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) + + +def with_cached_html_pages( + fn: Callable[["HTMLPage"], Iterable[Link]], +) -> Callable[["HTMLPage"], List[Link]]: + """ + Given a function that parses an Iterable[Link] from an HTMLPage, cache the + function's result (keyed by CacheablePageContent), unless the HTMLPage + `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: "HTMLPage") -> List[Link]: + if page.cache_link_parsing: + return wrapper(CacheablePageContent(page)) + return list(fn(page)) + + return wrapper_wrapper + + +@with_cached_html_pages +def parse_links(page: "HTMLPage") -> Iterable[Link]: + """ + Parse an HTML document, and yield its anchor elements as Link objects. + """ + document = html5lib.parse( + page.content, + transport_encoding=page.encoding, + namespaceHTMLElements=False, + ) + + url = page.url + base_url = _determine_base_url(document, url) + for anchor in document.findall(".//a"): + link = _create_link_from_element( + anchor, + page_url=url, + base_url=base_url, + ) + if link is None: + continue + yield link + + +class HTMLPage: + """Represents one page, along with its URL""" + + def __init__( + self, + content: bytes, + 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.encoding = encoding + self.url = url + self.cache_link_parsing = cache_link_parsing + + def __str__(self) -> str: + return redact_auth_from_url(self.url) + + +def _handle_get_page_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_html_page(response: Response, cache_link_parsing: bool = True) -> HTMLPage: + encoding = _get_encoding_from_headers(response.headers) + return HTMLPage( + response.content, + encoding=encoding, + url=response.url, + cache_link_parsing=cache_link_parsing) + + +def _get_html_page( + link: Link, session: Optional[PipSession] = None +) -> Optional["HTMLPage"]: + if session is None: + raise TypeError( + "_get_html_page() missing 1 required keyword argument: 'session'" + ) + + 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 += '/' + url = urllib.parse.urljoin(url, 'index.html') + logger.debug(' file: URL is directory, getting %s', url) + + try: + resp = _get_html_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 _NotHTML as exc: + logger.warning( + 'Skipping page %s because the %s request got Content-Type: %s.' + 'The only supported Content-Type is text/html', + link, exc.request_desc, exc.content_type, + ) + except NetworkConnectionError as exc: + _handle_get_page_fail(link, exc) + except RetryError as exc: + _handle_get_page_fail(link, exc) + except SSLError as exc: + reason = "There was a problem confirming the ssl certificate: " + reason += str(exc) + _handle_get_page_fail(link, reason, meth=logger.info) + except requests.ConnectionError as exc: + _handle_get_page_fail(link, f"connection error: {exc}") + except requests.Timeout: + _handle_get_page_fail(link, "timed out") + else: + return _make_html_page(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, + ) + 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_page(self, location: Link) -> Optional[HTMLPage]: + """ + Fetch an HTML page containing package links. + """ + return _get_html_page(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, + ) + 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, + ) + 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/Scripts/Lib/site-packages/pip/_internal/index/package_finder.py b/Scripts/Lib/site-packages/pip/_internal/index/package_finder.py new file mode 100644 index 0000000..2dadb5a --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/index/package_finder.py @@ -0,0 +1,982 @@ +"""Routines related to PyPI, indexes""" + +# The following comment should be removed at some point in the future. +# mypy: strict-optional=False + +import functools +import itertools +import logging +import re +from typing import 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 +from pip._internal.utils.urls import url_to_path + +__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 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[bool, Optional[str]]: + """ + Determine whether a link is a candidate for installation. + + :return: A tuple (is_candidate, result), where `result` is (1) a + version string if `is_candidate` is True, and (2) if + `is_candidate` is False, an optional string to log the reason + the link fails to qualify. + """ + version = None + if link.is_yanked and not self._allow_yanked: + reason = link.yanked_reason or '' + return (False, 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 (False, 'not a file') + if ext not in SUPPORTED_EXTENSIONS: + return (False, f'unsupported archive format: {ext}') + if "binary" not in self._formats and ext == WHEEL_EXTENSION: + reason = 'No binaries permitted for {}'.format( + self.project_name) + return (False, reason) + if "macosx10" in link.path and ext == '.zip': + return (False, 'macosx10 one') + if ext == WHEEL_EXTENSION: + try: + wheel = Wheel(link.filename) + except InvalidWheelFilename: + return (False, 'invalid wheel filename') + if canonicalize_name(wheel.name) != self._canonical_name: + reason = 'wrong project name (not {})'.format( + self.project_name) + return (False, reason) + + supported_tags = self._target_python.get_tags() + if not wheel.supported(supported_tags): + # Include the wheel's tags in the reason string to + # simplify troubleshooting compatibility issues. + file_tags = wheel.get_formatted_file_tags() + reason = ( + "none of the wheel's tags ({}) are compatible " + "(run pip debug --verbose to show compatible tags)".format( + ', '.join(file_tags) + ) + ) + return (False, 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 (False, 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 (False, 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 (False, '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: + # Return None for the reason text to suppress calling + # _log_skipped_link(). + return (False, None) + + logger.debug('Found link %s, version: %s', link, version) + + return (True, version) + + +def filter_unallowed_hashes( + candidates: List[InstallationCandidate], + hashes: 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_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( + "{} is not a supported wheel for this platform. It " + "can't be sorted.".format(wheel.filename) + ) + if self._prefer_binary: + binary_preference = 1 + if wheel.build_tag is not None: + match = re.match(r'^(\d+)(.*)$', wheel.build_tag) + 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[Link] = 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 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, reason: str) -> None: + if link 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', reason, link) + self._logged_links.add(link) + + 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. + """ + is_candidate, result = link_evaluator.evaluate_link(link) + if not is_candidate: + if result: + self._log_skipped_link(link, reason=result) + return None + + return InstallationCandidate( + name=link_evaluator.project_name, + link=link, + version=result, + ) + + 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, + ) + html_page = self._link_collector.fetch_page(project_url) + if html_page is None: + return [] + + page_links = list(parse_links(html_page)) + + 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 = [url_to_path(c.link.url) for c in file_candidates] + 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 = parse_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( + 'No matching distribution found for {}'.format( + req) + ) + + best_installed = False + if installed_version and ( + best_candidate is None or + best_candidate.version <= installed_version): + best_installed = True + + if not upgrade and installed_version is not None: + if best_installed: + logger.debug( + 'Existing installed version (%s) is most up-to-date and ' + 'satisfies requirement', + installed_version, + ) + else: + logger.debug( + 'Existing installed version (%s) satisfies requirement ' + '(most up-to-date version is %s)', + installed_version, + best_candidate.version, + ) + return None + + if best_installed: + # 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 + + logger.debug( + 'Using version %s (newest of versions: %s)', + best_candidate.version, + _format_versions(best_candidate_result.iter_applicable()), + ) + return best_candidate + + +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/Scripts/Lib/site-packages/pip/_internal/index/sources.py b/Scripts/Lib/site-packages/pip/_internal/index/sources.py new file mode 100644 index 0000000..eec3f12 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/index/sources.py @@ -0,0 +1,224 @@ +import logging +import mimetypes +import os +import pathlib +from typing import Callable, Iterable, Optional, Tuple + +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 _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. + """ + + def __init__( + self, + candidates_from_page: CandidatesFromPage, + path: str, + ) -> None: + self._candidates_from_page = candidates_from_page + self._path = pathlib.Path(os.path.realpath(path)) + + @property + def link(self) -> Optional[Link]: + return None + + def page_candidates(self) -> FoundCandidates: + for path in self._path.iterdir(): + url = path_to_url(str(path)) + if not _is_html_file(url): + continue + yield from self._candidates_from_page(Link(url)) + + def file_links(self) -> FoundLinks: + for path in self._path.iterdir(): + url = path_to_url(str(path)) + if _is_html_file(url): + continue + 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, +) -> 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, + ) + 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/Scripts/Lib/site-packages/pip/_internal/locations/__init__.py b/Scripts/Lib/site-packages/pip/_internal/locations/__init__.py new file mode 100644 index 0000000..0d49cf2 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/locations/__init__.py @@ -0,0 +1,351 @@ +import functools +import logging +import os +import pathlib +import sys +import sysconfig +from typing import Any, Dict, Iterator, List, 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 _distutils, _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_prefixed_libs", + "get_purelib", + "get_scheme", + "get_src_prefix", + "site_packages", + "user_site", +] + + +logger = logging.getLogger(__name__) + +if os.environ.get("_PIP_LOCATIONS_NO_WARN_ON_MISMATCH"): + _MISMATCH_LEVEL = logging.DEBUG +else: + _MISMATCH_LEVEL = logging.WARNING + + +def _looks_like_red_hat_patched_platlib_purelib(scheme: Dict[str, str]) -> bool: + platlib = scheme["platlib"] + 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 # type: ignore + + 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 # type: ignore + + 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" + ) + + +def _fix_abiflags(parts: Tuple[str]) -> Iterator[str]: + ldversion = sysconfig.get_config_var("LDVERSION") + abiflags: str = 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: + old = _distutils.get_scheme( + dist_name, + user=user, + home=home, + root=root, + isolated=isolated, + prefix=prefix, + ) + new = _sysconfig.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 + + # 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 + + 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( + "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: + old = _distutils.get_bin_prefix() + new = _sysconfig.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.""" + old = _distutils.get_purelib() + new = _sysconfig.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.""" + old = _distutils.get_platlib() + new = _sysconfig.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 + + +def get_prefixed_libs(prefix: str) -> List[str]: + """Return the lib locations under ``prefix``.""" + old_pure, old_plat = _distutils.get_prefixed_libs(prefix) + new_pure, new_plat = _sysconfig.get_prefixed_libs(prefix) + + warned = [ + _warn_if_mismatch( + pathlib.Path(old_pure), + pathlib.Path(new_pure), + key="prefixed-purelib", + ), + _warn_if_mismatch( + pathlib.Path(old_plat), + pathlib.Path(new_plat), + key="prefixed-platlib", + ), + ] + if any(warned): + _log_context(prefix=prefix) + + if old_pure == old_plat: + return [old_pure] + return [old_pure, old_plat] diff --git a/Scripts/Lib/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a1887b5cd5dc6fe3b4b12988e5111fd669e0d353 GIT binary patch literal 8387 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 GHS&K;=80ke literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a965419fdaf3ad7e236ff927c7f1cbfb735265a1 GIT binary patch literal 4676 zcmai1OK%*<5uTo%oqdqId`YB8y~dQCcoS)9#7^umvJpg-;)hHFCS%2G8iV0>FFDja z*4?v|xR^B@Q^_d;atz=YAP+g{l4DN(0r?Gc3J~Pri!VOJv12D+^(gww1uWRC3t!m)+$>09D{l_`O_y;wP|4yOtb3Cfc41*gjgEMXhti|-(Y?=C9Xch1- z1XfsV*^G3opcIx{Wz84CS6Wrg+rd~k-Wu0@DX4|@Ry~|(O@x!J$#AMQ6;8LN!rlR-EqC`8;2^S8Of9ChYOE{M3g?b+f;hhIbYkhWcm;BPkU%v$l= zNoL*jRg#t8=#mFskQLW^-9Ti;UqxtVR@+kv4B2b#Z4nAGdFz$cl{apY^)s>;MSis9 z_98B%yX(uO=LI6#{S=90Kw*yN485ILx}hI|?h2`3_6B4#{uX+Kn=jDq_<>Mag~J&) z@9ZQ)~(B0)zXpN`EZXc3y&70j1z}LXn(n9xl;OpS=98A#qd}B~cCRdDi z#|HHTqxp1NpELH&w3gPd8t?sq&tS#VeC&|z8uBk`?O-N31skX7;ivAKhm0A??7ksC z!~B0u%|S7$U`3xmJ_o*l_xPZgoY|Q_D5XVyn$PmNWMSXH3eD6wET%Pn2C*+tWaMXB z@2sZhNHT9AqKwba8-t0VjY2wsBUt?{j`AVA)T3)SMhpEPRvrA_)XCs@4rNj=@dNen zTdMz)S9H=IGd?_@ zn8bNXIlL#FBz8p9jyVp7BczO_YWB^`PMfAY`k7!XJc^!kAiptEm}P+dDByZTy2<{*?cBr-3NwTgpn@?t>ukXaW`oPagT32 z^PGFr-;|!*+i=(8I8Ym_z1w2r7k<3$^*zZqUdP!M(peW_m(JD3nqH~ez^D!7C*n%i zYv1;^gxcu(-6hwLpbdyv3Xbq<$sI+x+1<-3SGPnY?snx%&(XSQf#wGbM*q@C%T;<0 znpeq0pk8W@MyyIwUk5PQZ7JYQzero~V!!OhX%l`v@JY9mXZV%jq_Q3qD$2gbq?{oI?b*mFiMnFwC}DCQzZ}fz++>Vr zMH;QL0+yXIKeO{p$O^Z`UREQS8^x}kOXqSK#A0PD1nT4{0L9@q&>ZO-NmPyiKZK~qc9BI*nKeh~+|?EMUT zrxEFwB5{&!;VkA$T*SpMrBK~C(m(=GA*mmAdx?X*#OcRjR840cy`%VOOFVA(LJ=Vu zfN3~9@vhH>(!&8(3E)8&7G%!b_58rw41|-spiu#6F%;@~tJ=`A_Eh_)FZE^Z1woe+cQijl7y?aPc1~Pes2H1~>G0TzFcEfMAr0in&G(nEv!ldm;-+(+ z?#9Z$+i*~IzQ6Q;!YGce3>B~|BRj*5(ue!_B6HAwTs(8>Vw!{Eyhia6xqO8*UjY+xisc~SS+DN5Eub660Rs31`1M-r1H zDO*EfiUJb_EtNyux^2oIVVuE>x@}XNm!L&O1zE&6LY>vDG`#Aw!loa6N|keFb5Gtu zgVxcXTw2>hZ4fS@6rciPsb62}DXDM%Uxo?v!4cj;-MIDX9KT_9+RfW|djr$alduiZ@nQZ>%=H zpOst}7lG?$B`RuA%;Y=&CX}+;F$4*@q!?wBD@T?0@U!$-fzuooKh5D?p-UHC`N`*L z?94-Z$fUfsmU((6dtI8FE?-$DQXxWnEXRoGQtB)U)#j*BZHB1P0@ch=hmSVo~jWe)uvoCVF9Rnsiyr3>hnX4(D%@Bf;n y`HfjHzcwxNKahWA+9Wf-s8*`~GS`mutuK#sZRpxVU7K`E)qmG7)u-y#1?zvaefb#x literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..33e80a9dacac61176efdb60ddaa1ce5c5dbd82e2 GIT binary patch literal 6262 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 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: + # Typeshed does not include find_config_files() for some reason. + paths = d.find_config_files() # type: ignore + 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(dict(purelib=i.install_lib, platlib=i.install_lib)) + + if running_under_virtualenv(): + if home: + prefix = home + elif user: + prefix = i.install_userbase # type: ignore + 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) + + +def get_prefixed_libs(prefix: str) -> Tuple[str, str]: + return ( + get_python_lib(plat_specific=False, prefix=prefix), + get_python_lib(plat_specific=True, prefix=prefix), + ) diff --git a/Scripts/Lib/site-packages/pip/_internal/locations/_sysconfig.py b/Scripts/Lib/site-packages/pip/_internal/locations/_sysconfig.py new file mode 100644 index 0000000..5e141aa --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/locations/_sysconfig.py @@ -0,0 +1,219 @@ +import distutils.util # FIXME: For change_root. +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 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 = distutils.util.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"] + + +def get_prefixed_libs(prefix: str) -> typing.Tuple[str, str]: + paths = sysconfig.get_paths(vars={"base": prefix, "platbase": prefix}) + return (paths["purelib"], paths["platlib"]) diff --git a/Scripts/Lib/site-packages/pip/_internal/locations/base.py b/Scripts/Lib/site-packages/pip/_internal/locations/base.py new file mode 100644 index 0000000..86dad4a --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/locations/base.py @@ -0,0 +1,52 @@ +import functools +import os +import site +import sys +import sysconfig +import typing + +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: typing.Optional[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 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/Scripts/Lib/site-packages/pip/_internal/main.py b/Scripts/Lib/site-packages/pip/_internal/main.py new file mode 100644 index 0000000..51eee15 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/main.py @@ -0,0 +1,13 @@ +from typing import List, Optional + + +def main(args=None): + # type: (Optional[List[str]]) -> 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/Scripts/Lib/site-packages/pip/_internal/metadata/__init__.py b/Scripts/Lib/site-packages/pip/_internal/metadata/__init__.py new file mode 100644 index 0000000..e3429d2 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/metadata/__init__.py @@ -0,0 +1,48 @@ +from typing import List, Optional + +from .base import BaseDistribution, BaseEnvironment + +__all__ = [ + "BaseDistribution", + "BaseEnvironment", + "get_default_environment", + "get_environment", + "get_wheel_distribution", +] + + +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. + """ + from .pkg_resources import Environment + + return 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. + """ + from .pkg_resources import Environment + + return Environment.from_paths(paths) + + +def get_wheel_distribution(wheel_path: str, 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. + """ + from .pkg_resources import Distribution + + return Distribution.from_wheel(wheel_path, canonical_name) diff --git a/Scripts/Lib/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9075130c6fa7bce28c1ee6d370decbea48946f0d GIT binary patch literal 1861 zcmb`I&5q+l5XWuD`J7}X2w2!T^@&vuo8iD|gb-RlT$XUyIiSdr({Weg-m%?Qb$cPB z;l_jPaN`|#0G`2D#9?276V>f}nALKlrFNX^kE*W!ui9!d8F|!x|KqRpho0yCY5%kv z*}N~Q>zDKpp71j-_m_SiECb&Yf#_tNJY0r(ciHv5ttY}?{bf&dp}Pr0PxOBYmwhpS z0DKrc_8xm~Bosq2qLHCEgMk=R??SlgiHSHT>quO@@MhCDa+9uBu3Q#nIuz{h(7%+elFL@aTmomN@Y4)RJRa4lPcwR97XgU*9MT?Kwf4P zQuHE0SsESDsz^%%PfN-X--3=xSzg7mpxFf4RSt#=ZunJ9HfiE`Uhc3@0i09U_7LO# zAaIttYty3>%fq2rE;`g58;|Ja$c9gB_^*R|@4oRlpTm@Xla8wn)R zj;&VC?P~Qu5JIGA+LcHoNS#hw`HBFNd8yDa=cu7*j}*%*Z5$_paUunDdJ_K#_mL06 zuOWgC& z^O#!OfF76B_v(!TXQ@X`x!dLSdBO`-NOBq%Jcq=}cxYBmtGko*V|qDCN_XLXU?six z9|9-pd8_1)*=S0AFY8H4=l+TQS2oxIzjtcO+Be@R?f+5zM{S!@B`F$h4}J+CE5uV- zY!ubFkO+xUxZAtFE;;g?bZ95$nk^LOJd<}MV~Oe|EnzleY=69#i-t3wP^l(2rw+ vDvq1t?a)WWf#7y%`LVYRT5#&Y=eZJ924C0;*Y;|fdedMKoDVO@m*al`M~oA7 literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/metadata/__pycache__/base.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/metadata/__pycache__/base.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..aa29382ff34a2b272ba45ea1314309e5701153d9 GIT binary patch literal 9258 zcmdT~O>`VrR<5e9{#C2h`mrooc3g4nL>;7dfMJ;NWRf_RY&5ak#!_NZk*B-V?@21V zx~lW4T8cUnCo?t&Sj=M1VZ(-FFIbo}3l=O`uwloN6^q((SO5p+z#JBY3Gm%l-PM1R zo!}KMzt^vB-*@l3@7;I*%HH^RPQmA|{^lQc|LMG<{5?JNe{?*&hvxq)I;JqyQA|~S zYo;c@6J|nw>!yxx%}F*=W~z}k(~XRoX=Kf8BWLCsW9C>RZ{{20=D1395>BBpVNS@g z?i3r7=44~aoRZH;XSy+C&NNP$ry8^7tc0bU(~UWEPE~kH{5IyN!Drr_m%nA4GmQmv zK~-FhpEc+CIG^NG+uFQhp5uupukiCvRnxekuq?|xR#=YDKT4Rd;(3ha@tl{>7w|mJ z3V1F&(#+SGx~`Na{t+@Ol~N`g-}v~>YW3Q0tzP?Jt#TvGUGp4=*8|&g!|XNB4J_N` zBFwA>Tv%HU?~DRZg!)a}55mmtCLvo+nEcSiprnRlcloC+Tkr;VgOV1G-{d=1{oo@m ze4?7}3`&V`Ze{K6>a~sPhj(vQZ>?@zUAek(wOYA)YczWKiG?OJV1u+3YRkApKdILKN7-(0T?yBYYKn6>HK z0bg!f^@r9D_cxn%^Kuo-<^pGVxxoVqTWww5f=uP+L8!af#5ZWw8oHF$o*tC8OuwHf zsyKy7VwSqo)Xh^z@W1up_)y^YV!t})%YPI39mP6xwwfbqxayq|cn!;;x5gddGKM>*^QH7OJgh5?THaQ{z#WcFt(fk6s zjH0PURZCEtQRQzVDoXnC9!0N9cWio(@@nn7}Qg$X+|n;7PH7$ zkaFiDRpw)o7MTo!<|Q-#cvhrM8i?JhTX!xIO6Vy$>m4lKrV?YgwFpaJP3 zG576YH(E!nMk2vLm+#=aEV%DEdwj7}tCfwl?RXV(E~ZjwPTg z*o9iH%dl2kqWyZ2dc~p+saa1KjQ^VsT=xX{!#2WS7-fA>HR)@s2KkF06fNg^!j$--|+rqaGh5q0X_-fQ~WRYNMO)TA1Y6jKz*tnsrM8&rz?SWFsULOQDJ9xJyS+sbG_Fb<#Y!g;-H3iK(x=aNW!&f+WULK4vK9TP#;!%4#HdAzP;CjP z{J{6z8t!rwwk^dM3)d7BMloS-Z5Q_1W_{+cy&z*wm{o-8a9fvrV;cl6`B%_N`7jHo zz^VblPce=i4JWU|#v*9F?zP+~Ton}Cgjw=~Ra#Owg`}VkE3v|!?~AZx^qA}I#V0`Z-$bXS3u<0X zsoMW&T3*%gr=#V+(v#h>{>wrt^M&>w?S&DY>d_letNsA~>qNELjzQ$2g%w5j<;)1P z80n>WWjM0~O41HuR-+!Pi}O;Pl4PfyqnOR?h(r?MrFe|lZnXuUPie}JVoqmAIQ5~u z6u%+}5wB`DCHlRX>8r;v9l(|Gf1SdF?uW*tEM$MAqLj4upWVg%fh`~>(2Y!bKFwIf zT`MCbke;-3d^8aGP+{3V`OA^}SF6eEUZW%hW9A_QqL`C^1`pj~8QX@gwdm*64PB$q z=$R%jUXXZY$mxbLGlgztVpvNZ*rG$w{CO)PYLV$=uXn>eq=f*N?m1SS5hVQk|ACt&;{yV zqwXSg8R{-kMZN6Jc>3vTnrZQAn(R6A>)kq1VR7V^5P`vUUn*TF&-5Lv1%>>uk z8J1wWtScn(l;kO%=9zf~wFQ)iQCH{|0JAK^Gfd+tmX-B}92-L=13@AmlMs#N**GBi zK1hL005Z;syugZVl1*+W*%Y5()4WJL*bK&}&}PvnGw~Jma+aRyH1PGONWd`4k+fab&yGMT4BYY2phu2($RYeBZ zD?j}OA<2rTF}!2Ls3VqhXw?>8GAL{Ce<2|LcZEPJFerv1lSU!qOsGFgR1>vM&EGaUjwgq|)uzhL7YJ{DD&;i$--@GBo~mbU%Ved!js5R+Re-M{1xxK$3W< zK1g7sGwmmdBkfT0&jraRDV88OTKZ{1RX$A~svkiuKTR?nw>{Zj{JIC*F8y%vldH?- zTg%_Qf7l&#zRT6+`)_t(rHgn^lH7Kz9lw2PZO8Rwt+JCA4rmKyf{RE2Q5+X{AXKOc z9wr-BP~VOGNN(*$E>=aoqafks`&%hoT$Do&uRFAOpTt% zUxSWspwqs{Ym~j|_)8&=qkN9W`d3;qqv}78+-CpfA0@VNJK27)SwS1DHd6>AM*RkwhC9HJrG-W-nSBI7a=qAz?ueXGN_c7py0=yrA z1ClYOta|idy)r{*5w!1D40tR$B8o*xgt%}-@9j|ZmC7RRZsfE`N%{9;J3-k>XWjDm zTCMMeAk_%F=}d>`$SF(tuUn1}yUslKjR0~tJ%NO&lS;!*4$+8z8Qj2l+g>m|)}nap z2WJj!IF3|qF-?lsL5U}BXIv`ou5Z8&kx!%Mqy2&+P_je!Ge=~56rpu&3*wmd=)D}` zM~ds7X`xnrD^%I=t<1i?!(IMaQ@r!fM3F*v?Tb03{qC@Vlou}6!~sv|m*19(;&D*^pmH^C=vV2bPNt><^SZ_4q@R$qjMBUVMzNXd5Uxk~{G482Hg)omDDW8I@5> z=_n`p9m0~6Od5Sc-6pzF!`mYnYB2)IQ0wgT&h_tr=2I$?nby?;>~XJ6sqLk2q9Sop z^8=78O%G)=VY*snUL7xE$7Cpi)N3NI+h6y%u& z?TgF`#5Rq3!KEC@J)~7UL-Q#K$|&$RR7p&nRc8}Z`czgsO_fAhP5e^RwEs>ew68Q> z`=yrD{!2?~U#8N9{}fV^i{ZG;iOQXnNZcTn^e#F~Q^}J`op9AIW9P z1WQUHMU=v3fnr|3i~BMXahG|b9F?vx9q-!W|AOJm49h%sJYpw>7h}Yastn2^Mfj Oc`c_E6UD+*>wf{Wvlu-9 literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ec0cae6e74dad737b9c188130c286cd3d38b3f9d GIT binary patch literal 6101 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 literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/metadata/base.py b/Scripts/Lib/site-packages/pip/_internal/metadata/base.py new file mode 100644 index 0000000..9fdc123 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/metadata/base.py @@ -0,0 +1,242 @@ +import email.message +import json +import logging +import re +from typing import ( + TYPE_CHECKING, + Collection, + Container, + Iterable, + Iterator, + List, + Optional, + Union, +) + +from pip._vendor.packaging.requirements import Requirement +from pip._vendor.packaging.version import LegacyVersion, Version + +from pip._internal.models.direct_url import ( + DIRECT_URL_METADATA_NAME, + DirectUrl, + DirectUrlValidationError, +) +from pip._internal.utils.misc import stdlib_pkgs # TODO: Move definition here. + +if TYPE_CHECKING: + from typing import Protocol + + from pip._vendor.packaging.utils import NormalizedName +else: + Protocol = object + +DistributionVersion = Union[LegacyVersion, Version] + +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() + + +class BaseDistribution(Protocol): + @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 info_directory(self) -> Optional[str]: + """Location of the .[egg|dist]-info directory. + + 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 canonical_name(self) -> "NormalizedName": + raise NotImplementedError() + + @property + def version(self) -> DistributionVersion: + raise NotImplementedError() + + @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: + raise NotImplementedError() + + @property + def editable(self) -> bool: + raise NotImplementedError() + + @property + def local(self) -> bool: + raise NotImplementedError() + + @property + def in_usersite(self) -> bool: + raise NotImplementedError() + + @property + def in_site_packages(self) -> bool: + raise NotImplementedError() + + def read_text(self, name: str) -> str: + """Read a file in the .dist-info (or .egg-info) directory. + + Should raise ``FileNotFoundError`` if ``name`` does not exist in the + metadata directory. + """ + raise NotImplementedError() + + def iter_entry_points(self) -> Iterable[BaseEntryPoint]: + raise NotImplementedError() + + @property + def metadata(self) -> email.message.Message: + """Metadata of distribution parsed from e.g. METADATA or PKG-INFO.""" + raise NotImplementedError() + + @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 not, fall back to the known canonical name. + return self.metadata.get("Name", self.canonical_name) + + def iter_dependencies(self, extras: Collection[str] = ()) -> Iterable[Requirement]: + raise NotImplementedError() + + +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.""" + 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_distributions(self) -> Iterator["BaseDistribution"]: + """Iterate through installed distributions.""" + 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. + + :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_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) diff --git a/Scripts/Lib/site-packages/pip/_internal/metadata/pkg_resources.py b/Scripts/Lib/site-packages/pip/_internal/metadata/pkg_resources.py new file mode 100644 index 0000000..5946006 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/metadata/pkg_resources.py @@ -0,0 +1,153 @@ +import email.message +import logging +import zipfile +from typing import ( + TYPE_CHECKING, + Collection, + Iterable, + Iterator, + List, + NamedTuple, + Optional, +) + +from pip._vendor import pkg_resources +from pip._vendor.packaging.requirements import Requirement +from pip._vendor.packaging.utils import canonicalize_name +from pip._vendor.packaging.version import parse as parse_version + +from pip._internal.utils import misc # TODO: Move definition here. +from pip._internal.utils.packaging import get_installer, get_metadata +from pip._internal.utils.wheel import pkg_resources_distribution_for_wheel + +from .base import BaseDistribution, BaseEntryPoint, BaseEnvironment, DistributionVersion + +if TYPE_CHECKING: + from pip._vendor.packaging.utils import NormalizedName + +logger = logging.getLogger(__name__) + + +class EntryPoint(NamedTuple): + name: str + value: str + group: str + + +class Distribution(BaseDistribution): + def __init__(self, dist: pkg_resources.Distribution) -> None: + self._dist = dist + + @classmethod + def from_wheel(cls, path: str, name: str) -> "Distribution": + with zipfile.ZipFile(path, allowZip64=True) as zf: + dist = pkg_resources_distribution_for_wheel(zf, name, path) + return cls(dist) + + @property + def location(self) -> Optional[str]: + return self._dist.location + + @property + def info_directory(self) -> Optional[str]: + return self._dist.egg_info + + @property + def canonical_name(self) -> "NormalizedName": + return canonicalize_name(self._dist.project_name) + + @property + def version(self) -> DistributionVersion: + return parse_version(self._dist.version) + + @property + def installer(self) -> str: + return get_installer(self._dist) + + @property + def editable(self) -> bool: + return misc.dist_is_editable(self._dist) + + @property + def local(self) -> bool: + return misc.dist_is_local(self._dist) + + @property + def in_usersite(self) -> bool: + return misc.dist_in_usersite(self._dist) + + @property + def in_site_packages(self) -> bool: + return misc.dist_in_site_packages(self._dist) + + def read_text(self, name: str) -> str: + if not self._dist.has_metadata(name): + raise FileNotFoundError(name) + return self._dist.get_metadata(name) + + 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) + + @property + def metadata(self) -> email.message.Message: + return get_metadata(self._dist) + + def iter_dependencies(self, extras: Collection[str] = ()) -> Iterable[Requirement]: + if extras: # pkg_resources raises on invalid extras, so we sanitize. + extras = frozenset(extras).intersection(self._dist.extras) + return self._dist.requires(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 _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_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) + + def _iter_distributions(self) -> Iterator[BaseDistribution]: + for dist in self._ws: + yield Distribution(dist) diff --git a/Scripts/Lib/site-packages/pip/_internal/models/__init__.py b/Scripts/Lib/site-packages/pip/_internal/models/__init__.py new file mode 100644 index 0000000..7855226 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/models/__init__.py @@ -0,0 +1,2 @@ +"""A package that contains models that represent entities. +""" diff --git a/Scripts/Lib/site-packages/pip/_internal/models/__pycache__/__init__.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/models/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..33563337c74a23401c3b8bd0ceb37d538b63ad54 GIT binary patch literal 281 zcmYjMF-`+95cH+t6e)jjn}Qq#1wsfBYPcq;qLnOTuQ)5t+4Am5Nq)p1cmQumi}(Z; zdxV0OW>z!WUCpN1Y^tQ*Kfb!9^v_ZJuS&#&fNCMHHp*8kHJ==BmO5LvwXdkTv#ed} z*@m9a`uK+iH&4E@NMk877*x63knVH%S zYSQ$yEA`a>0NnOJ@B_GV^%Zg8+#3hry-BhSWoyYV&+)VUz3+W*>cOB#VEppyACG?v z3Hcot+k?U4E1336Fp@~B$&_XRML*Etlx3{-Lmf@yET-gZBAJYiiHuZy6lNV6KOkx6 zPdH6d>Z3*&tH5FR%IXk)cfVEhyTU5DUr%9A-7lY&Re{mlqq|<%@4-oobA-s&Y0FNmD!UN}-eM#U|u>GO0~cZk-!9do-qTFr)$P{k^z)W`#$a3=0ZJHUoXkcpv8LT`-dV zh$I8~E24i2TY4Ai?K5w^@%);3@k#Q=rgu)5k3lI@;r>UTc@JJN=TFTC;34$}w8!~} zuzHQEVYE-#Kkv?C75>gV4CVonSX@I`$tiEijdl5x=PwfBz^3K`gc^MKZB!l3tpiXW zxL-y#v?Ex`4kyNLJU*f*ZmG20Ngw zs`&`L%V7LqEw(~w4J5tc?R^YE@>;cGkJ&z$E-=>(uLi^3#i-pGr`_xdh-n1EuVigT zD}_OKj5eJR;4OIAUupw4svE6TH)>lM!THPo-JiKq+jW$|9&TUU0@=b{RrvObjXS6| Oi(i92=?8tf8~zJD$Z*O4 literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2cbfbd0025e00ae14d224981bb26df22bd920e63 GIT binary patch literal 7135 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 literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/models/__pycache__/format_control.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/models/__pycache__/format_control.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1cedaa7a7385e9d8f2e5b26b268495e7808428ab GIT binary patch literal 2773 zcmaJ@?`|8%5#QbW!{eEvEyYpnBxo*yizJ!s=1T-qej0$$(Ka9 z!rLdp+hhGe_^YJT_z5~l$0?ilR56wLsx)Qr_1L6E9%rQkwnNMLB+iRGP2wz_N}k6f ziN)64Vl;|#@r6=_O01T%PZP`?4E;|KN%~ZfJ`=R>2qv5j)_0ruiABMrCwQ-u3&{{pziIujQ}3tUUii8xGJN-FPF-H!OoKI$Br7D0(nVlVKD`<2c!hH)I57MQbujb8X@*lcF0&c*R_GDOfq+-xfut z2ffLb9Q-~lhVe93V({l!8@S_JIT~lNk%QGlrDLN9I5p6zkxMV!paDhYmIJ!1fEX=>QkSEbh>yh9Npv1rB|4tREc%c@nh#M zhIO7^0Wst;c}zFy9@Bwgt9I@@CY#Qdqb>=$N{ssh`GEpQz~p{lrGFrMbPtk_+q;)g zs5pMCZV%%l41EpcZ)8TkpWCJQ2A$yx_FMM7#l9nyY*&F$7qAhj(%6tDHb!+=$+|a6 zy7h#qd5F}UCHCIxB1qZ1wIOr4Ggi0X1FLNnV1IQ9V++s2=hOFp=?S^bdG}UUATRap z?#bDXSB9ys;Fl+|Y;vAtvDTcI?OtL2h`7m-L|B9s>8vnTiD^FP z_H%DpyR4{1UD{$UZ8Mhz&!(4OW!pIiT4!1ZR)}82M9>4caFcEVx0?=zd+5ONtTzoG z?f&l3?)B)=ZU=YqYsjc8IAg(L%Ma&ga7@p*@zj^tspMF3{yxrCu5pko^AYt~+yuzs1y@V@=yP zjXy(KgM=M4X0=XwfPGf`_D!p!)94-1rRk?jOL?(Wm!4=jT3WKz=a?_5QXeU~JxP_+ z(T5SPKC$@d9?|PZ-U@KB@{_3{lyX(GOBHR6azdr^i`pN-xP|tbipU zN-xcY+)>tLWkaMoLGkE#>Rs^4qPt3f(#hq6(zPM2)8I6Ii$nC5O!CphOyZ2oog|wG zsk=C;KL80Cql~)GLnlD72xv$z(*S@B{ucz6XVn^DdNjRu9-OaMT((b|Tm`XnmBm&R zJ1X$*U?LFmA=|A=?tdo3seTK4I&M|vm2DMOYLrd%CiHVOfsRur$PLJBv(b~x{Lx9!^V84D7#5y;mK_ff@^}?s1PWTLzPTxK6+E-}#^&(Iw5qwek>ahCnQWb&v zR*qUezEFL?cPv|hTSCt zvg+uF=KCcB?wk>oifv9**&MMO7a;HS{fX<}SZ4b5W>n-LA2#J27dd>x8{h?Ktk; jT_m5Z>V&S+z0&_GQ_J91?X%mqU}$UfWzu3Tw&469O>U$o literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/models/__pycache__/index.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/models/__pycache__/index.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..eb103bfca4e98bf244ff159ea8bf8d8c7f5f3742 GIT binary patch literal 1259 zcmZ`(%}yIJ5VrR(n#~V`8Lmka%emvg!z8OU>E+z=hx9>lP+W|s9oHKtQhTeea z7oZqoxI`J=LCj^<*F*rj1n40Acckic0x_PqjeVNO3b(Rljhd z*>Uzv^fovKU7%}xgD^VB=ZJX59|hOpIljT82z-$176T9LxUs#)Zl8M)Nf-ha{JxE* z4cfpp*Ilro9@kvim=IA3LrBw>jiCQh9NMs^N^={7tLsu2<)&^I9Vjx8iqzB$RR}TV z#@3+e`ZmzK96aE=#kNgIQBti5xkbOn*;d}?r=}?7nB~u3lK0|JQFWG+11U?L_s7RP z-xhL6CseWg1Jwp5aKM3BYIwe1C{Y`oLshPY;T!dIusW|r-2)hKyP{?9L^59Lo^bQt ztj|;jI$QwJ&PZ^Cmv9GuNjO=VUyaQf6F?E5D?GS8JI;0tyamxqpbQ$}Yv6a}!yG(d z827t@T7-;x1j@F6s1a;SLq^wA%PzC()YHFe#aZsLH4yDSv4kh<|F$&Gcem}PRnZep zh)oCqoMYH7VmpL<8q@MV(;~2F1%!cnT}lJoTVEU1@X&k@<~W^7!OIdR|IpH7*HY8h z46$~91~Ce7?63Rl9p&Pa<)JaP-s<(-E^SJ6)SIljP1iuT8OmxXVRFnRy13bm$?B}a zaBbk$tn8WdH~v!_+794{b=+*WaZ0aizy^C~d%HG1fMRFOA!x8T1U7y(CFnH$D0)#C3=HH&Y<8*ApOxn{naZx*VB=6H3yS*#YD6V-|4WOY&}T&6eG zoUTrD-}3e}_g43EKjS^soT<(<_f_{b_gD8bEbBepJWxHr{V{L0d9Zr0d8m3w*JMup z1h{hE;pUO*5j^W#&&X#V=~Y|gtIxfoiGmpaLKEZiz(cb-hv%Z0!1IJ0$Mf@2TR$pv zG5M7)rsSNM#%GUwVKpoEil@G?9_rO&LSNKMGv5$zDy6Y_V(H_X3$?4)7OuW`z4A_M zz2(-U*t+3{QCz4vO(~YzElLE65=z-k`a%$9H5EIy`6ao$q}YWKN6=bG7(OZB=J+O;qy`U}n`2lVa)%s|u0w)3n%w zr*T>AJ*PsO=tE}2J{IF-AF^LO&5)@+e);s)0dW+HIm=_bXJB|i9OLnWJboPGhepOvh!T$< z=JAv3N5qSXf{RmM>7?c(vrmgM&wg$MdPbaO=o~|dkLSdBhCI)Z93U6OOAI-R9n$kf z@iKPyLVx^6;>SFGtPgob%roS8AM&cW#E=tx$YpVbAtmt|q?e{-DX@P;YvTHQwU3P!F0iWP^&Ql)T$^u|}=65j6rop4f2wJD9Gd6XJ1i-KjTZ zjn-sDuD@1UicMIKIs`>md#E`~%@JyzK@(?{jM~btXYr8!QQyMH#3!tx>FQf>qmOiz zkMyqoP~X%eW8K`cx`1`HTBb{Fwrijr>ze9d*YtHkPr0szHXjupYU|@&Jt_+GD?``1 z89*n50q$AO-(o3d05M@63~-t@NS>$04p!}`A#LnAXsf!kTY>9G;A<4vCmKqwrW0t- zrR`V-tedx8Ka3n77=SVL9rpc(RFW59Io)?cdo^hL;#40K(G(~*Ezhe*0EWZl`au+-~>r5c;N!9N|Qcz3NI&oU+4~th?w7&}`paxM^Q_ z>0;SlYPg}@bT;f2IW%KsV+56B6Qa{8S*H^S+4fJ8MTXYG{jgdw2Y(*QXuGx!HjvyjcxcJI> zXsEKA0rb}O(QP_(Slf;dn*fTQ^3)kRU{FtAclw8U`we^5b4X8}$Oc7i@>A>Jt&{N2dwM{dD~=dBYWEg6M+WoVai3>zPWMpIyMdm zO70JH-|scTUF2Qe2phO*5iCFp`})PtUZaU^UD>)U3D*Li{-N~ z)o!>e%26B3wWT2N!sSZ)j$D4z4H{0zQDXUhCxrCvC8(z7L~?l%o}m?m%Xn)Ub|Fu< zl0z+AZn>>9AP=((kV#-yIrr;UQqnYcj{ z)9uv}xA*@Lm}wb&uHqBEg{G^mYieBJ$XVCEMws?%b5r*Xfff*59TL`-5t-;C1||p& zDRWVa%m{}L!5&gnoT+s7+9$R-%K0aHDb_lZpKaPFSXn>YEa87PIWtKnaW*kIHI4@s zRczvHC>e@&7aOXjPSFTArwKGxt6@T|_7NV!X*AfeZW&qK(kFH6yGgTC?CqVWjclFR zKxZ&-y@(ENI@vO|U{*TWOZ2Y&M8Co-KGvCx?Ib{L;Ko413Q&Z^&!XPvcrvnMSz4Nx zrC0!b(-yVIIs*PgJud>dZ538P2{}`ah}j}7Ih!& zsXBa{!+a9iI*ce?klYs1EQFq5+AeFV1x)x1A6AW=(HZB}k{7;rDMhwkGCD8yeKMc$ zb;nP`E1Ocy;ZtznlHraMZ%V@0l_nbaS)Zm%kETS}J7_X7kvUGhjj;JG(mQkAdemn_ zW}qSJ3T7qClUnS$JPrIVKFpG7qmyTrkOJ;loGg$R-;YkDMZLwhEHau$i90hY>c<#` zHd02bUZv&|HB7)f^>z~sP5u==OvV0G@zT_M2PJ*QBg^P&TiPRdq*-zeM&%n)5%>pQ zf0wml6Nk=M=~~6qKhQ};Z>E2=S*qXghL52`%C?-@gijzZu$hVUb@mcSHq0(qu$mzm zl)!*9m|e0Gz7MRm01wpmc}sBQ4JB>q45q}~VKl;+vm@Vmpr zs}E=z2R=8c_gmC#BX{4fFF&H0OK3U=6Q43fU4Mnn(dSm}T$*9SJR7gh9z;8&Lk1d30$b1?Q$`9F>MRWfGFZS6_he6LD(Af8q zr9P(3lR~IZsM(Ecd8UMprN5#nKSk5?_5Fbn{A7w`f^2?dL{U#2NdblN2nX$~hQ5{d z+4wRzaGzK2V7ej%PxRMdhXWr(f<*|+A?|LTA%`&kJ{3Fu8WY(S9Ze&`bYusSeOE+h zAX$yj@6g$ARAP&cF?b?6b$0W5@tBKx3g-MBO`x6jLa-iq$6Bd{hBLjj0+d163n88y zJ^>`gV&6*3gr%rAX_ei!J%#n;15{s8Ca7WN-(w>0en#)iur_a-u!FE2Oo*5X z>A8H3R?dIl@;P8fwkExQpc%}DBnnUABg@fJ{pBe8Aa(GxCcG5NIq+9qecilAc3@Um z31C>}y?O{=wFj9&xt|%70aWX>B*`ZpM@CjlB7v|MMJJ=%%s&gN@a8|^9d^4#14l>_ zMu9=&n%i19M%o|dshEZy!SrzYT@A4? zq{2^6^AqGl;|xU+4wAAu@APAy0286G0tdq{N{YL?JSxb3_68 zJVmi>Y^@*-=6qFMAmGac%pr+D0v>H7arGNC@Fq3vWBQ?lqR1tQfY|nK(7Of>=P^_w zTktrlLK7CL`H-5QP;(YdY^|fP8Skkret7fd2e+0M-l|=DWAWO;qFSaY#KMG`b?T9y zQ4MM+hfqyw0&1A)#5Lw&Jkd-1>k>v*8)EZGnnF5PpFsr&)T=gk|aU&w64Q z#{W#3#(!rm<2Tui@n1&Pcw&rA{^w+Qa@;Vdb^c8BzUetTt?xI}k%DCyGkPIQt%VWm zJHwj69Qq{h0C$QdlR%y^nIhWd$X^Ceuj3QmMw8ytdDM=Gq(1dKuUg?E5OfVxdcS z01hgDisXSEr7n;m;OXirIOj*4WYRa41B6W_R^UHH^164V1?4kjOi_Pc%y1PrL$o&u9% z`Bd{jDH$HxUSxeqQMD9qXo(*-^s&u_W8zYP8-TD4jiRL(BkhfaCoxlo~e_Au*92_sO@^BfJhO?<+?M1$y6qpBlSb_R*g zrU?j=ojZow*EPd^BC}~mIBvFZ)ww?QNdG-eWWUtzY3f*%+scbE)Gl$k*~xv09|q8m z0%o;M>m$vdu(YTUjjtLTuj=?o3VsJt*t9;@eEq)0KNA=i#V>ME@huG(tEf=}_e9sk zZ$AoR;;X@WlelWNx*7c5!@?0Yg_P@cPPxAM4u48u6LB8DtZ=*rlo-{PwYARS>%=e; z2`LTkUy|Ad+1Cr9`UPI$P@O9$BQY(-nsnqog-%0Ic)y7DzXZ>)NBjul z4~@GNP3j3Qisf(@VwBIu`klwRdJoS@nrL{>VH^LDR!QaB>) zlag%zS2W5z$oKbW5(|!DAZzSJluK6vIlYM3YZ`G;PB*^WYZ-tM#L%<9>FnQ~O_kE5 ziU@t1ntRkxad&8^B@YCe>b4*f17cz-IrT(8$GoX<$>6IG;jCuriXn3CH#HTk`m zu)&ZoC;9du-bOOtx0dUH=W*SSe@7DM*JN~q4JOgO-zO5tIue!noYu;Fs$Hwok5beI zjS$O+WYpKAICm+@*sef6T6hvoPRl`&l7B~WF;diL^dhnZ3%!D2nbW5Bv+3)F`NR7E E0{yN96aWAK literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/models/__pycache__/scheme.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/models/__pycache__/scheme.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..524a67be28ade6541b30e79dd4b89265d737bdde GIT binary patch literal 1049 zcmZ`%&2AGh5cYaEo9(vz-;o8UNRS|bI8+D~ssa);LP{^JRDKQ^dm$IKw;|piXQ4DSe?0aVNE~gjuT#$(-QiNV<~9$~vYLb5d8t z7NwX7+fA1T7#WL77^aAx2{V)8i0BbvGbR-qDsdT2SjCAeg*2qll@rJA9+ZIOF&NdNejup_0zhnzmJD~P4fIwLQox(iGLJ?&xjz!Ev&$Jp6@dY)RF@+@jQxru%ax7Q@NEu_(i=ouVvk% z5+(=+LG>n@3uSw&k%aka5(=BrQF_Z4=TnK3IPhN@%&)De>0ZWk5+7f&iJ-JeDTUjn z%G+C%zMnF6vD2m$#uMC|gWXqq`+M~D-n&7wL8(>RS@4I}8RO?@S^FAndS4sBZ(0J7 zpeTqU?BzEO@h=?VpSXp8;259d_SNsp=zb?O*CE*4@Zis{-RWyG{^BNivP$@=XU2L~ JBa|dJ!#}$D8}a}E literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c671bc4a1467f25e4f20555053bff582124c4955 GIT binary patch literal 3512 zcmb7HTW{RP73K`NT<&Tm%eG=W4hk^Nbqjaphc*Zt!F8LoMF3TBBO?zB1q{uZ-KE4O zS2MG+y`_S-5|H$v5B&$LmjZt6bALd817C|i^dA&PYWF+C$SYq8q!c)u>)CVpzH>&! z@^ah3^S8hMbM)`?j`I&1oPAsjZsXO*XoMqJ=Je|?>oYs%eQv*Q-?d+_-@un={7=oR}z{no%@R#W8>-o$z!TE||$B|O<2aM2b^7_~)5HZf!64Lq?dRxrCH zny~y_wX`i`m5jENVj^e1Y=?M$ktgv)PqWxa9h#90vm%L2TI4i}O*ly>VXDKV$Oq|g z3X4NigxZSfSpijhkme%F(tJ->ZFJ=W@`J8?CCyaj2|?iWA!m4aKgO&7fM)0%x+VL> z`Qpl4&6N%8aOaKEJ7LV(_l$q!=#NZu9+bRvPdH?( z9eSp<+nz7coaBeiJqk|d+>g0MlbqV$^B`n zWO#RTdwqL*^LjWc?#l!GAjL%MEF2eNn#nND!#fYnsK_ZQc>%Q!;xvozWwQ5(s}@|U zh>=@}c3YcR8BM>Ye9Tq6(3NMQ>&pkgK4KJ4CNdYQLCdWa2AZNk>>9}^PV>q~AhYyd z)tJOe%PPRI?)f?y$+4{btQZcZs+#v>mBS_7X5}WCUg%M+-kYYGi56a}Jc3FU{>_~&`M@MuF%>&EejIJ4_f)JN?nHMb(n|O_g2xi(dW#2>NWUd9&q&iC$kG@5YwxLY&{2kq5;Qi zp}&ew$x0`30A43TPS|!Hu`RWN`L0`eT4sZV6Rl(F<{CCsK?FNe6GcD6NE4s@Mw`vn z&Z=;_C1F@TeFy~sUaP}j&;k7zUg)svsGHOpw#$cX&#gxw)ejC`+c-8HRwTY$1BoWY)&ejwWUlFgR{pLc{iUoQCxs7(~audJvoyXMtvHq+Vp zPn;vWi}r~oPGJO!23xb6cfkXjT|%HRy!MX1hBPF{8j}Y|%Hn!B$z-f$I8ntxDu~22 zNPDwOn?)~we%$m(%wDO$OC}%RXaMt5&_Pljw%Vvmm{pf)i8!n$S!xtvyz+Bt zAWmJS4R26$(N5RDTY0-hnp+@tef18lG~gtutBZB*gIT__B)hk49r=&kd1`gjJq)HnCuC2{{_m00^^<7a_24_^a6SywI1tKxnXDSVLz> zl=lzWHr_bVZ#2t^__Lw6(ZQHe6UN}kbRe$Ys<5@zmGoM4pkkx8%I&qj-vWDf_^88 z_NQ_7-AXfxM3G>+6-7ELj7E1U$zrX?5|0tl7L>wGhHhd&N?>NqL*5$s@0FRTXU1VYx*$-unxx`TV-v2!Tm3t+N?kT literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..dc90518d4642a05ea1dbf009d172341d9f508683 GIT binary patch literal 1711 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 FzX3Yfj`jcm literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/models/__pycache__/wheel.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/models/__pycache__/wheel.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..efb166efbd447b104b07b739e10c8b1a8ce88b77 GIT binary patch literal 4369 zcmc&%-EZ7j75BA0ADK*&ZJO;DUj`xQbem}w3M^5ScDwDOq9s&q)kVW}jWhR7#;M14 z?)9X}D3KOYiG2dZD?)1CHva>E0DptU8{&ay-d3pLcdo}1Pn#fwknqUY_Wd~L+;h(F zch5vKGc^O(pZ@%}-n+Ag@mKmNUKT!X<5oXL!;O}~88-vgVt87C*|%C&-)`CcQme#h z%nr)^N~@yZOF^|i)tX|)j|^Vsl@|uD9GI;dHy;^|>hKp2MJ$C9VWJ$*dEOHuaJqgV z953WfETe6o3ygF+LMbPSoTMk5ZBP2qKsm7|u`23PXD#&l0xw?T^t^51^o1At;YPFe zcUWw!HLTRW>vxj0dOs1;TMtBPf8?vA!BXq7w}HpP{czh0eEu<+@F6T9fgM_0yvq2v zja&T=jWFNiyddqfeirbjbx*C(Q~$NmWjb6{*j2l09FVLTK7#Of7^cE$R5BB^|JoHB$?*N^Oc!hrzA+MZT`$K95^1q3IcW#?ys;>}%7wYdoFZ zhc`DF-m3c+`F_vbvkt7^+gtUm$`){ZWDvd}TtOM6D_Me+hMk(trIhWYY&T`YBbM4q z1YJpLz8JKY+iPMc=>*Y$x0i0ZANlLjle=yAaTEory*79z+IRe@=M6o{+duIXaO*r4 zeUdNQk2=zi6V=A5w(=9P7<-*(-iA=^*pF|xeu&wj7u@JaTm68wRn|K>(NyUMmq%|EU8dP$D zq`XZFrnG!aQw>XgiMqA$TBe);r5!4-(9oA@MK!nk0>0E&(bR35nXJm}xR$@a97eWS!F5v~Pp1VYK5B zud7HVf;#~?fcRP^65Ons6PkztNRy)b5}IF97FPCIV(dZ76N4FBCO436Y>j9eLXJ#H zdrU28%Dh0im3d)mWkZBwCzh-4l0eFF^V18)a4FmDhDcnv4l#paSq#bCLa6iQYYj6k zXB&{;BJtYOTG5HNi)YBYLAq&Y3+C`E|5kHqll}=Fq;)wD{)0S{7@B)<_P(f2`rrEt z0#yh>5Iq<0wI6b^lbwoDC`LzRMjVJwo>>k6vF?XnLa8?<9Iw;!abOTD>8Nh_+n}s* z2nTVT1y#GPHeU82xJ&GKz^SMds+78Os9Ub$zM#p-mv= z*Xb>EvU9^(YMy9bMm^y5wS;9o{lUEl&du+9FUv#J4xOIpJkujOLmh9!^Fxw|9Y&G^ zq51ho&*y&9bNUgqqd@5jDUrb1nxe`P$3O9cfw(7SB$u80U9j}&&dw~+JmF+hCNxrQ zGwGt{c>E2hP-1)+xB3Pe4VC)7J_@%D3A%m>&>R*(BO90o*pzfi$anB{#3Ye@1{`7z zxrpXA?h#rXV|Xpg*^yP?L*$d&_rue0a%83!hBQckOwCm%3dq(Bndjb+ruRYFeraZS z@eGaW91_hE87MHH&Owc*qSWH%oW2*wn0cMR3hWS`B@$6@-KUBeo&8AS;LDS^!)ozeSijPT#$@+A3BBouwL48^ZB&_g zTxKYBM#o_n$aV=4fY*rZs5ChZ=JFDT9EaqV4@d<5rBVqp`dd&(SOVQbVLEsY=l$duox1 zKcG)CLM~H7K2Pm+l;v`TzRyoK`sApfk8(?&MpXm#w27+Pvi~_>nZJC&Hs{JnxEgL$ z*srdniQ(c;7fW!Uhg-> kPDjMLj>!sf(sP=@X>}!Y-zpWj8WsQrisQOjH|MQ?0Vb=bRR910 literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/models/candidate.py b/Scripts/Lib/site-packages/pip/_internal/models/candidate.py new file mode 100644 index 0000000..c673d8d --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/models/candidate.py @@ -0,0 +1,31 @@ +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 '{!r} candidate (version {} at {})'.format( + self.name, self.version, self.link, + ) diff --git a/Scripts/Lib/site-packages/pip/_internal/models/direct_url.py b/Scripts/Lib/site-packages/pip/_internal/models/direct_url.py new file mode 100644 index 0000000..3f9b699 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/models/direct_url.py @@ -0,0 +1,220 @@ +""" 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( + "{!r} has unexpected type for {} (expected {})".format( + value, key, 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, + resolved_revision: Optional[str] = None, + resolved_revision_type: Optional[str] = None, + ) -> None: + self.vcs = vcs + self.requested_revision = requested_revision + self.commit_id = commit_id + self.resolved_revision = resolved_revision + self.resolved_revision_type = resolved_revision_type + + @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"), + resolved_revision=_get(d, str, "resolved_revision"), + resolved_revision_type=_get(d, str, "resolved_revision_type"), + ) + + def _to_dict(self) -> Dict[str, Any]: + return _filter_none( + vcs=self.vcs, + requested_revision=self.requested_revision, + commit_id=self.commit_id, + resolved_revision=self.resolved_revision, + resolved_revision_type=self.resolved_revision_type, + ) + + +class ArchiveInfo: + name = "archive_info" + + def __init__( + self, + hash: Optional[str] = None, + ) -> None: + self.hash = hash + + @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")) + + def _to_dict(self) -> Dict[str, Any]: + return _filter_none(hash=self.hash) + + +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) diff --git a/Scripts/Lib/site-packages/pip/_internal/models/format_control.py b/Scripts/Lib/site-packages/pip/_internal/models/format_control.py new file mode 100644 index 0000000..010c362 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/models/format_control.py @@ -0,0 +1,84 @@ +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 "{}({}, {})".format( + 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/Scripts/Lib/site-packages/pip/_internal/models/index.py b/Scripts/Lib/site-packages/pip/_internal/models/index.py new file mode 100644 index 0000000..1874a5b --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/models/index.py @@ -0,0 +1,32 @@ +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/Scripts/Lib/site-packages/pip/_internal/models/link.py b/Scripts/Lib/site-packages/pip/_internal/models/link.py new file mode 100644 index 0000000..eb656fa --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/models/link.py @@ -0,0 +1,288 @@ +import functools +import logging +import os +import posixpath +import re +import urllib.parse +from typing import TYPE_CHECKING, Dict, List, NamedTuple, Optional, Tuple, Union + +from pip._internal.utils.filetypes import WHEEL_EXTENSION +from pip._internal.utils.hashes import Hashes +from pip._internal.utils.misc import ( + 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 HTMLPage + +logger = logging.getLogger(__name__) + + +_SUPPORTED_HASHES = ("sha1", "sha224", "sha384", "sha256", "sha512", "md5") + + +class Link(KeyBasedCompareMixin): + """Represents a parsed link from a Package Index's simple URL + """ + + __slots__ = [ + "_parsed_url", + "_url", + "comes_from", + "requires_python", + "yanked_reason", + "cache_link_parsing", + ] + + def __init__( + self, + url: str, + comes_from: Optional[Union[str, "HTMLPage"]] = None, + requires_python: Optional[str] = None, + yanked_reason: Optional[str] = None, + cache_link_parsing: bool = True, + ) -> None: + """ + :param url: url of the resource pointed to (href of the link) + :param comes_from: instance of HTMLPage 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 cache_link_parsing: A flag that is used elsewhere to determine + whether resources retrieved from this link + should be cached. PyPI index urls should + generally have this set to False, for + example. + """ + + # 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 + + self.comes_from = comes_from + self.requires_python = requires_python if requires_python else None + self.yanked_reason = yanked_reason + + super().__init__(key=url, defining_class=Link) + + self.cache_link_parsing = cache_link_parsing + + def __str__(self) -> str: + if self.requires_python: + rp = f' (requires-python:{self.requires_python})' + else: + rp = '' + if self.comes_from: + return '{} (from {}){}'.format( + redact_auth_from_url(self._url), 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=([^&]*)') + + @property + def egg_fragment(self) -> Optional[str]: + match = self._egg_fragment_re.search(self._url) + if not match: + return None + return match.group(1) + + _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) + + _hash_re = re.compile( + r'({choices})=([a-f0-9]+)'.format(choices="|".join(_SUPPORTED_HASHES)) + ) + + @property + def hash(self) -> Optional[str]: + match = self._hash_re.search(self._url) + if match: + return match.group(2) + return None + + @property + def hash_name(self) -> Optional[str]: + match = self._hash_re.search(self._url) + if match: + return match.group(1) + return 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 self.hash_name is not None + + def is_hash_allowed(self, hashes: Optional[Hashes]) -> bool: + """ + Return True if the link has a hash and it is allowed. + """ + if hashes is None or not self.has_hash: + return False + # Assert non-None so mypy knows self.hash_name and self.hash are str. + assert self.hash_name is not None + assert self.hash is not None + + return hashes.is_hash_allowed(self.hash_name, hex_digest=self.hash) + + +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] + + @classmethod + def from_link(cls, 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 cls( + 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 _CleanResult.from_link(link1) == _CleanResult.from_link(link2) diff --git a/Scripts/Lib/site-packages/pip/_internal/models/scheme.py b/Scripts/Lib/site-packages/pip/_internal/models/scheme.py new file mode 100644 index 0000000..9a8dafb --- /dev/null +++ b/Scripts/Lib/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/Scripts/Lib/site-packages/pip/_internal/models/search_scope.py b/Scripts/Lib/site-packages/pip/_internal/models/search_scope.py new file mode 100644 index 0000000..24ec983 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/models/search_scope.py @@ -0,0 +1,126 @@ +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"] + + @classmethod + def create( + cls, + find_links: List[str], + index_urls: List[str], + ) -> "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, + ) + + def __init__( + self, + find_links: List[str], + index_urls: List[str], + ) -> None: + self.find_links = find_links + self.index_urls = index_urls + + 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/Scripts/Lib/site-packages/pip/_internal/models/selection_prefs.py b/Scripts/Lib/site-packages/pip/_internal/models/selection_prefs.py new file mode 100644 index 0000000..66a5636 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/models/selection_prefs.py @@ -0,0 +1,46 @@ +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/Scripts/Lib/site-packages/pip/_internal/models/target_python.py b/Scripts/Lib/site-packages/pip/_internal/models/target_python.py new file mode 100644 index 0000000..11b2591 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/models/target_python.py @@ -0,0 +1,111 @@ +import sys +from typing import List, Optional, 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", + ] + + 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_tags(). + self._valid_tags: Optional[List[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_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 diff --git a/Scripts/Lib/site-packages/pip/_internal/models/wheel.py b/Scripts/Lib/site-packages/pip/_internal/models/wheel.py new file mode 100644 index 0000000..a79a861 --- /dev/null +++ b/Scripts/Lib/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.+?)-(?P.*?)) + ((-(?P\d[^-]*?))?-(?P.+?)-(?P.+?)-(?P.+?) + \.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. + """ + return min(tags.index(tag) for tag in self.file_tags if tag in tags) + + 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/Scripts/Lib/site-packages/pip/_internal/network/__init__.py b/Scripts/Lib/site-packages/pip/_internal/network/__init__.py new file mode 100644 index 0000000..b51bde9 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/network/__init__.py @@ -0,0 +1,2 @@ +"""Contains purely network-related utilities. +""" diff --git a/Scripts/Lib/site-packages/pip/_internal/network/__pycache__/__init__.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/network/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1bf8f8fa0cde355c77e6f7e3c4702d77181751b3 GIT binary patch literal 269 zcmYjMOG*Pl5ben(Lm+pUZIEPKWF;a&w>q0-6$*-Wx-i9bx|{AEbaEr_-~l{Cw&EpR zStBm;pkDEc`n>Y<`Ai8uKEDrZ$zP+mL?L1$kxC(>_R17nwV0f)9=yw%U8+JK$qtpH z{OV)36rnSjs?TgWGo{t6Srq3fqVX-_yNVOp^hZC#{stO)%dPdjf$KFs@^jR20Niw)HA;yy V;wlX1^7iOWZ|QD)FpZW<^$XrtQZ)bo literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/network/__pycache__/auth.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/network/__pycache__/auth.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4b34bdc07e3f772811556c1fa173b386d6a828cc GIT binary patch literal 7514 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 DvN^_K literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/network/__pycache__/cache.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/network/__pycache__/cache.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b5718d74364870f6190abf7b9429a87b941e7a28 GIT binary patch literal 2916 zcmaJ@TW=dh6rS0Oz1i5gHKerVvQ$*aTwIC(Awa0KqFe+4kqX4h(rU9aPBz(FXT}M( zTnTVc-{@aR5HI}?`~ZH#ydoa>3w;Uaj2+ibCDz*6xttl#_nq&YnX=jR2|R!P_0MkK zBjj&v%svh@Zo(`7fP#^bFv_fqh7`VbX61HhQ|xmxCwD_PuZ16+lGCyIpPmL?C@k@DN{$_5mQ z3=QQY8=%>n+V6@oj|{duuyTEe12QFAR4jt^BO;dJ^Y|cqzq1M8lC12p&YN#XU#8n4 z7X40iw=6T++3fA}&aJfEjR&z{ov&gE(1W`i$ch#3Y$YPClt-sWCmUQr5Ec{-Dpui>z&rPV;7q4{87e=ML5L(;Ma2cLI?Lk`|8UQt1uBwWfsfuqeHuvSclgT0Rx5+)TLTwy9p+C08 zHBAgT;o<|JJZxYD>E>444h;n#2dL{{8{&aY=sw&{lieVdfdu7W$Bp-2_7J|}qtg2V)H0&KP(?=Mn4W-shIB|GixB{4Z4O?#ZBoN@?I1^`O!l)`7QEfE zwF~~_5Uvr(JylU8o`JuCNOvU9x~B06@<9|OSu7i_vueL*n z_V4st^4l2azb?#f)dg-t*LabXjB6)LrP5X@wNu4vS37%UT8yzd;#sg1SB&{?EO$B6 zZWRk9&ue`-0+&uyj;p*1Qw&<)*`OPA@ccQn^VZtl=l!QJFTffm>m5L4NRGj01~VOz zhb>ABb~>^iUbt@$?PL1{vV;W(k^{dH96|G~Eph`SaY)ayhsh~ZThsxJzdbuX(T29f zcFPf%k4%her>uCP9l>J;{e~d)tq7pdw0oWz8=$@gLlTwXQ_sZv(&@_S8ohctSe@qu zY_)q3XFZ;vhR+^!+mwwXXiV9#6|(UrvVmSdc8B%}C>`3hp*^AxoA;feb6g)!v9otXyGeLdnJZkYeEHbMH0~t^5ygcA7dj?hjmgm9L7|*!kw_r%(zQ%$8 zA*{~}VQkiFVzxmRqe%Nvl$WfRVZ9MW_j++Q8L3ARD--Cpr4lCDjNO7sL%Z93#ihW2 z6xXr1fxXR1no4+4n?gH+lYo_?ZO&$#Bg$;t5GZo};{O{-le)qyvsPzE zb{p8?nG|(gXZ&Yp*OGQmrI~EwVI});vB`}njT-f{X03CUc`6elXzgsn^~l^+O!OP% mGfsUXQ}4sEcRs=ko4gE#Lp-}dS7-y&3STJKY|B}v>;8YH&#@5z literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/network/__pycache__/download.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/network/__pycache__/download.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0a0550c924d0ce56d48def0e69a02b27c5da99db GIT binary patch literal 5486 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 a!D4yxkufbhpyk=>LVlsVaHO1{J@YSj=Ur0( literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..160a55e665eba9e7d1906c474b5aaa0b0bcafc75 GIT binary patch literal 8398 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 literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/network/__pycache__/session.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/network/__pycache__/session.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b540eed37ab4443ec2065f0b19ca7d772a576c78 GIT binary patch literal 10548 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 AumAu6 literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/network/__pycache__/utils.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/network/__pycache__/utils.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c17426c83fea406e96f015e6c2cf0aee721aed39 GIT binary patch literal 1465 zcmZ8h&u=3&6t+D-GD*`URN8La)oMpb93s&a1W4VoAW9qP3JB6B-DRV|XgYRUlZhv5 zJMAV)C4TI6CGIPv<;efQfg^u|uLuNpP6%yzo;0Y!qj@uae$V#%zR%8q`PeX@>NiTZaCEijJ;wAgoPi7q{HyGzXNV_F99GAq-75w^UJ`aZ4D>JzV9p~W_; z*Zzd{QJolfpC{S`cQuo-&LntN_C9TOnypT>cW~JHC~DvBHcfDksZk~rt7Eg;V)`tT zgS|`$mS~=drj(hSR(F$xjr3+yBpK!6*aVz1p}C%z!a;L)zj?21TnY0SUot(GqLpB~ ziOc4|*P^orulgAb#phU~8Tt}y@-30!G_e2A9ZG({=i~trD=yOR8fG=QA@c~1E< zr}+Pz8J1t@!VJ$4Ej=aQV2S|arItZcZ>;;9+tU(P+2;24Temk~=ifou{4X%mYPgqj zz$nZS+zF?pu%F3rEYqEke@60%Hj}4JE+PQ`z+#wl5g3@33#DU`FpFxeGGV-aW6L9RYERYw~XBjc^$%J8H_0)6rZvL;Qg;H#Fv0a zb-;X$rY`~6Ah;Q(n3AVtAARnflNq@WVtZ720LQV7K!9XYp9`>P1&5wHGi)U|BkGlh zdCXFfkr%Z%#DA}ViQ(A?KgY{}SlG!Pom{6avkj6R=^S!FZ2f%q{P9_ir z2npS3)m`Jr_{{i91MNdo+0|O|qp@alhT)*a6bQ9d%QY~@%csj(oSRkatuDkA%~!h( zP8EV7UlG?Q1e5EfKY|Va_wo%w08H$|L;fKzvBc}TP_OWyPo$s6!jfRh){rcM?Ch=;9|36orUlN-`Yc`b|Qkew(2MZzHoOPUuYB(8b!$%)E&o`t{h#mL@?M z)MGnqOqyX6Bj)h;!OqFd$#S?nX@xDA!v`yD^$>?AZX)VZ?=hktv&JXKr}mBTG$nUY z$DduDJj|7}O6>z2(-719a z@0Lt8qB}7cqd3drVa5{u)i+zPP{aTR3;}Q`Bov2+N9Zawm`P1$QH$Bsrp~7O1a0E_ z+KteuEquB}1F&i^mo~K(^XT$9wCU3pU3qMU{u5-Pa0y^Jp;p1~?`mX@P?>$R!Hb6} zW$n0q?=7g^`wwjGhiR-$j}f@%x1kloF<{iK$2XLh=9KM3Q=TbD%z;wD6hNY}WHOyF zWpgH{Jnto%K(Ctx17p#}doYk_A06PzIK&u9GBys(3LoM7AUKP7%=66Iv?30837rT6Dd)AnF%ICI-FfeKz{NDTR1P($`Lns_O1Ep5o;_%fd$W4~~18#m$cu?cf}#e7LD_eb*A?EG7}wm7tdZ*&5k zjCnj^kc@s5O$s{A^f-v32h%uPtT<6bizJHp6>x!Tx+!xAnN#yyS;Jk)1lN^;uj#eM zBKH!OWw7b^PG_`fKBbTItz*1Jxb&* zM1qz2k0Rzlzx40rMV@yT6=@F0g}2*GWtxdOvvf|^8LK>C>+PC7TnCkRw6pfyOXVFE o|N5S9z<10G_mg>~KE<$8=n7*Z*KmOrEgX;lC}NTp_Q_e}A2Q8BMF0Q* literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/network/auth.py b/Scripts/Lib/site-packages/pip/_internal/network/auth.py new file mode 100644 index 0000000..74d2254 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/network/auth.py @@ -0,0 +1,316 @@ +"""Network Authentication Helpers + +Contains interface (MultiDomainBasicAuth) and associated glue code for +providing credentials in the context of network requests. +""" + +import urllib.parse +from typing import Any, Dict, List, Optional, Tuple + +from pip._vendor.requests.auth import AuthBase, HTTPBasicAuth +from pip._vendor.requests.models import Request, Response +from pip._vendor.requests.utils import get_netrc_auth + +from pip._internal.utils.logging import getLogger +from pip._internal.utils.misc import ( + ask, + ask_input, + ask_password, + remove_auth_from_url, + split_auth_netloc_from_url, +) +from pip._internal.vcs.versioncontrol import AuthInfo + +logger = getLogger(__name__) + +Credentials = Tuple[str, str, str] + +try: + import keyring +except ImportError: + keyring = None +except Exception as exc: + logger.warning( + "Keyring is skipped due to an exception: %s", + str(exc), + ) + keyring = None + + +def get_keyring_auth(url: Optional[str], username: Optional[str]) -> Optional[AuthInfo]: + """Return the tuple auth for a given url from keyring.""" + global keyring + if not url or not keyring: + return None + + try: + try: + get_credential = keyring.get_credential + except AttributeError: + pass + else: + logger.debug("Getting credentials from keyring for %s", url) + cred = get_credential(url, username) + if cred is not None: + return cred.username, cred.password + return None + + if username: + logger.debug("Getting password from keyring for %s", url) + password = keyring.get_password(url, username) + if password: + return username, password + + except Exception as exc: + logger.warning( + "Keyring is skipped due to an exception: %s", + str(exc), + ) + keyring = None + return None + + +class MultiDomainBasicAuth(AuthBase): + def __init__( + self, prompting: bool = True, index_urls: Optional[List[str]] = None + ) -> None: + self.prompting = prompting + self.index_urls = index_urls + 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 + + 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 + + for u in self.index_urls: + prefix = remove_auth_from_url(u).rstrip("/") + "/" + if url.startswith(prefix): + return u + return None + + 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 = ( + get_keyring_auth(index_url, username) or + 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 + if username is None and password is None: + username, password = self.passwords.get(netloc, (None, None)) + + 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 not username: + return None, None, False + auth = 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 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 + + # We are not able to prompt the user so simply return the response + if not self.prompting: + return resp + + parsed = urllib.parse.urlparse(resp.url) + + # Query the keyring for credentials: + username, password = self._get_new_credentials( + resp.url, + allow_netrc=False, + allow_keyring=True, + ) + + # 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 = (parsed.netloc, username, password) + + # Consume content and release the original connection to allow our new + # request to reuse the same one. + 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 keyring is not None, "should never reach here without keyring" + if not keyring: + return + + creds = self._credentials_to_save + self._credentials_to_save = None + if creds and resp.status_code < 400: + try: + logger.info("Saving credentials to keyring") + keyring.set_password(*creds) + except Exception: + logger.exception("Failed to save credentials") diff --git a/Scripts/Lib/site-packages/pip/_internal/network/cache.py b/Scripts/Lib/site-packages/pip/_internal/network/cache.py new file mode 100644 index 0000000..2d915e6 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/network/cache.py @@ -0,0 +1,69 @@ +"""HTTP cache implementation. +""" + +import os +from contextlib import contextmanager +from typing import Iterator, Optional + +from pip._vendor.cachecontrol.cache import BaseCache +from pip._vendor.cachecontrol.caches import FileCache +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() -> Iterator[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(BaseCache): + """ + A file based cache which is safe to use even when the target directory may + not be accessible or writable. + """ + + 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 = FileCache.encode(name) + parts = list(hashed[:5]) + [hashed] + return os.path.join(self.directory, *parts) + + def get(self, key: str) -> Optional[bytes]: + path = self._get_cache_path(key) + with suppressed_cache_errors(): + with open(path, "rb") as f: + return f.read() + + def set(self, key: str, value: bytes) -> None: + path = self._get_cache_path(key) + with suppressed_cache_errors(): + ensure_dir(os.path.dirname(path)) + + with adjacent_tmp_file(path) as f: + f.write(value) + + replace(f.name, path) + + def delete(self, key: str) -> None: + path = self._get_cache_path(key) + with suppressed_cache_errors(): + os.remove(path) diff --git a/Scripts/Lib/site-packages/pip/_internal/network/download.py b/Scripts/Lib/site-packages/pip/_internal/network/download.py new file mode 100644 index 0000000..47af547 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/network/download.py @@ -0,0 +1,184 @@ +"""Download files with progress indicators. +""" +import cgi +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 DownloadProgressProvider +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 = "{} ({})".format(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 + + return DownloadProgressProvider(progress_bar, max=total_length)(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. + """ + _type, params = cgi.parse_header(content_disposition) + filename = params.get("filename") + if filename: + # We need to sanitize the filename to prevent directory traversal + # in case the filename contains ".." path parts. + filename = sanitize_content_filename(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/Scripts/Lib/site-packages/pip/_internal/network/lazy_wheel.py b/Scripts/Lib/site-packages/pip/_internal/network/lazy_wheel.py new file mode 100644 index 0000000..249bd05 --- /dev/null +++ b/Scripts/Lib/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, Iterator, List, Optional, Tuple +from zipfile import BadZipfile, ZipFile + +from pip._vendor.pkg_resources import Distribution +from pip._vendor.requests.models import CONTENT_CHUNK_SIZE, Response + +from pip._internal.network.session import PipSession +from pip._internal.network.utils import HEADERS, raise_for_status, response_chunks +from pip._internal.utils.wheel import pkg_resources_distribution_for_wheel + + +class HTTPRangeRequestUnsupported(Exception): + pass + + +def dist_from_wheel_url(name: str, url: str, session: PipSession) -> Distribution: + """Return a pkg_resources.Distribution from the given wheel URL. + + This uses HTTP range requests to only fetch the potion 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 wheel: + # For read-only ZIP files, ZipFile only needs methods read, + # seek, seekable and tell, not the whole IO protocol. + zip_file = ZipFile(wheel) # type: ignore + # After context manager exit, wheel.name + # is an invalid file by intention. + return pkg_resources_distribution_for_wheel(zip_file, name, wheel.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) -> Optional[bool]: + return self._file.__exit__(*exc) + + @contextmanager + def _stay(self) -> Iterator[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 + ) -> Iterator[Tuple[int, int]]: + """Return an iterator 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/Scripts/Lib/site-packages/pip/_internal/network/session.py b/Scripts/Lib/site-packages/pip/_internal/network/session.py new file mode 100644 index 0000000..faaae40 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/network/session.py @@ -0,0 +1,454 @@ +"""PipSession and supporting code, containing all pip-specific +network request configuration and behavior. +""" + +# When mypy runs on Windows the call to distro.linux_distribution() is skipped +# resulting in the failure: +# +# error: unused 'type: ignore' comment +# +# If the upstream module adds typing, this comment should be removed. See +# https://github.com/nir0s/distro/pull/269 +# +# mypy: warn-unused-ignores=False + +import email.utils +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 Any, Dict, Iterator, List, Mapping, Optional, Sequence, Tuple, Union + +from pip._vendor import requests, urllib3 +from pip._vendor.cachecontrol import CacheControlAdapter +from pip._vendor.requests.adapters import BaseAdapter, HTTPAdapter +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 + +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 + + # https://github.com/nir0s/distro/pull/269 + linux_distribution = distro.linux_distribution() # type: ignore + distro_infos = 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: + resp.status_code = 404 + resp.raw = exc + 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 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, + **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 520 or 527 - may indicate transient error in CloudFlare + status_forcelist=[500, 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, + ) + self._trusted_host_adapter = InsecureCacheControlAdapter( + cache=SafeFileCache(cache), + max_retries=retries, + ) + else: + secure_adapter = HTTPAdapter(max_retries=retries) + 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) + + host_port = parse_netloc(host) + if host_port not in self.pip_trusted_origins: + self.pip_trusted_origins.append(host_port) + + self.mount(build_url_from_netloc(host) + "/", self._trusted_host_adapter) + if not host_port[1]: + # Mount wildcard ports for the same host. + self.mount(build_url_from_netloc(host) + ":", self._trusted_host_adapter) + + def iter_secure_origins(self) -> Iterator[SecureOrigin]: + 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) + 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) + + # Dispatch the actual request + return super().request(method, url, *args, **kwargs) diff --git a/Scripts/Lib/site-packages/pip/_internal/network/utils.py b/Scripts/Lib/site-packages/pip/_internal/network/utils.py new file mode 100644 index 0000000..094cf1b --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/network/utils.py @@ -0,0 +1,96 @@ +from typing import Dict, Iterator + +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 +) -> Iterator[bytes]: + """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/Scripts/Lib/site-packages/pip/_internal/network/xmlrpc.py b/Scripts/Lib/site-packages/pip/_internal/network/xmlrpc.py new file mode 100644 index 0000000..4a7d55d --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/network/xmlrpc.py @@ -0,0 +1,60 @@ +"""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 + +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: bytes, + 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/Scripts/Lib/site-packages/pip/_internal/operations/__init__.py b/Scripts/Lib/site-packages/pip/_internal/operations/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/Scripts/Lib/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d5a2c0398460a63eb294767232dee4b4b4388e30 GIT binary patch literal 217 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 CET8WH literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f048361692a5c6b92c7c95fd5f22abcf409279fa GIT binary patch literal 14289 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 L>Bsi7Gl%~Vbz(0i literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/operations/build/__init__.py b/Scripts/Lib/site-packages/pip/_internal/operations/build/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/Scripts/Lib/site-packages/pip/_internal/operations/build/__pycache__/__init__.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/operations/build/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0516bdd684a0896889ff0c4c19f0d3a4f60aa35b GIT binary patch literal 223 zcmYk0F$w}f3`IxTLIm$%YoTjlB_d+2+pLuYhPV^l;J7o)%z|2a8}Hx&JcF%x2`gtS z{qSE%@&hrwUROljAMdiMuLl2W#by!hlL#epF=%Bs;hOOepX+uC8J$9*O|4)&kt^Og zbZ3woW3-2?J`gO~lz2g>V2wVI>u>02H3ovbaBPEzcm-~(HkDk(bcH%K jmK+8)l}~pyYn95l;~?e8o}ZoB(WqL}y!p+yBNFiiMv_2Y literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..cd1a85f27d19e3ea2b7b5106f7c594d6a2658970 GIT binary patch literal 1175 zcmZuw-HH@B6i%wr)jv-AgNlNK)XgsRg*6Hzf{2Je=*2n=>ws)g5Ym-QcV<#ak)&pv zrUyj56<@)*^v(zH0eptKUA*uWb}!shHPh`ZyD4(&{3ZGFof9)04iJnlU%yR16NLV3 zjMF0k;{iKzpo-L%{4k?Ixwv=4fh_uip& zz=IcP)Ss+{WR5?Eb8>_~3^4+o z%)=vm*m;R~haiI90!zAg3%OtRF-Fbz2h9IO*H1@%X9s_b=Ha|^)NmHf)YD_CL|iP$ ztDMvmF!L$X(iJY|!sWo2;IY*4=9A4BXi5fy7{>3yS5~{&PsM_CNLy~j7d#|w_Uv3? zxUl-hB4KM3)MQs`UZ0;RGX~lZXu&iv$!AwLttgpoud{k4q9nCO6qMx!TSl>ivZ}aH|gDML%j02G8NBmuG8P-*fM*N(Jf+>^XB@*tqE(#k|N~0O6%~8LY~j^x{Sdn1B|Sm9ku;QbV?8YR!}< zeeTxU3#=^=CgnkW;p7?oq+kfp+$xA5A~^aHktpbq6-;md*6NSo_3Gbe2lg@~jLy_u zO1a4?wP(Oiuff3y-2+~XP0IGEB>R??0KnO%%j+v`#sXThB-DmY^!mS}@cfiZepcY}T7@nD3uh))~CIQhFwP=Niz!Gu7$EidSDlG`9$swtPu#Bebo$-2;-I--( zx2etMLVDp4APt;Fuy*sR%cEpfU|HLk_=#O=D( z*ohlSv)io3^>`s^bz2y5e74A!&T;n!b6Mj#>MpY;TY!Frk$u!|jX&Apna}*p_d+hX z^0P<^FP32xcmt`tn1_Ba^0drVz&#e}Ohx_N80k*)1vrd$+qhi5pGPr!D4s@2iiC>{ z=2pHGI`iYWI`N@WQo-ci#6RRz^DIv@DPv7}7}7`#B=uFO!Qe&!Td2-h;+K_8evC3>WAeKR_q=7#CQ-mJwzZ=x6i`IlFs_{ekoWFKa_EnJ#d&ot8ZF{IeiBj$9Cb#woR~$?MVxI8xsJ+o~%0R4KN6d zUS|c;0dk>M`aOVwQ7!{n6!y7=5oi;1%j{EfU>(;o8|G_;#cHS4F=+J1Rj{ZPPC=N% z>Zf4;6=JT9Y;VvG`&d@!Xqn>g75Tp;yHx5WC*@ zHD?~<10P}!tO5W&(g}oqCGtIpV^nR$8+&C|q1F2}yI!6%C{q zMB(^WI?9HS+GcN?-v~Rc;E0ti&@UXuDC0UXqH!P#hFq03#`}4w9H2+7n#MMbp|K(q zEE`p1P%fU9i`Drw9nnft&1vGSJaQu~P3W<*&LD=OSgYG`NNJnY_g{UjTx4TTXK=m? zwt5p9yJbXWzalkgCxnn!1Y~AD=cVIJM)3s1i$ajn+Pe*x7%Id1>} literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e0294e26c73b5538f67b9678a885f41f3df7197d GIT binary patch literal 1154 zcmY*Y-HIGV6t1fNncm(`jEM zwX-u!NHE@p+;}I#?xpYG1NaPmD_-~tUL>BbS>swwovu@ypYJ=TjyiWPMzDVS{m^O@?s&K9m=`W} zw{hoa!re>h0rC#L4Bc-ItN9`fccZ8ai%Tlxa+tOIB=_3d$ zOUv`Ui587DIe6tpSpIPX>EUgfyb;ZIA!@LO*S)P8u3e4Iw&S(!kfhC`yLg6Y(YOgn z0GRm@M6yY6f(ePS|0eN#OyG-NUwh*}Pl5!8n7lsk=__D3Ou9i|Rw%dby}QsZU|6P_ zfRbGWENSsQR7L4@og$sU+lm6F}b(1!x+}>aJE-G9Ri$eEv j=ODOpo)MS(xY4aju~zagFlgpHhzLbMDIp1oN#gwj6C_Qf literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..88685e6a516186fe275f04a4c78b89300ff5725a GIT binary patch literal 2553 zcma)8TWcFf6yDjpR+8=54m3?kwrN5vXygV01=EI-*a-pGfjDg%Rb^T4jHHeCB4%de zSXn)}^r@jgAOz&c{)f`%{)TxieMq1C(o0Iu%u0@9TIh(Ko!dD(=bZ0+M|rd9Y0!T7 z>6byRscApU$?;~uNC0eI?qmB-9JuycGY+Zsm`{ZQk^BXifJ=V8a3?UZO@Vf_%Xl@ehc zRuSx4C3>!L`?>bwNJGmRUB0ER=1;HY$60k(aE1>fKgs+3IP14ZOE;^_`(SaAl8m!8 zUm$O^JX_BTJ}mf}zm;cXbou1!mjxsKl`D@4-N|9ZbDs_Jy{|?KCk}dBEr+_`0b$Ee z6Dm&i3E$}TNW|mEWRpB5iEyU364v_0jn8fimt>gj#e6_*kZhTv5gqfin48V2E56>v zghj&SWr00moK%ia5cm z6_^sz52O9|a9^B0ff!0yk?;k$B6|xu*KQzFcaiDN{SLkD{pF%XSfQt3GqRwYHR%vJ zSIFWpm?8`C#m-T)5J8IRfHO;C5gUNAtJsthrFN+Q zw+y!*ITN=;rG~9Da1zqZ9$mi&`9m|G4~Rbu`9LB-j+NnnIyK?o$6UJGS6=aPOd;$! z-EWVsZYtkQH}c+8P(t+SyL9YFlt2KmpXGipP6%szTQ3oqJL>#T!8E4;%R!j=fM2Df z?cD-RS(p;$uSA19XOIZ6Lm6+a`A^3ll^QcXj>Moav!OonC+=k;KNVHDFMKN8#j07ywRyHA=t% zM$gQ#jUnp5LMm@ zztWx9*p{dQDF-_eMM!(7JfZa#@l=!F5IWG*i%F9zYUe3 zeN+kBQ4+VOL1N0g;^LbJ3LYn{ef-~tgtdx>IQOqdkN$V4YN#SqRn!^~$7WSj-5`)m y69g)l6=O+GP^KL7oGgk|v5xyun&ToN*CpvOx#VgtS^#2cpk?IQuHl|;ocjlq_|fG6 literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/operations/build/metadata.py b/Scripts/Lib/site-packages/pip/_internal/operations/build/metadata.py new file mode 100644 index 0000000..1c82683 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/operations/build/metadata.py @@ -0,0 +1,35 @@ +"""Metadata generation logic for source distributions. +""" + +import os + +from pip._vendor.pep517.wrappers import Pep517HookCaller + +from pip._internal.build_env import BuildEnvironment +from pip._internal.utils.subprocess import runner_with_spinner_message +from pip._internal.utils.temp_dir import TempDirectory + + +def generate_metadata(build_env, backend): + # type: (BuildEnvironment, Pep517HookCaller) -> 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 Pep517HookCaller 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 wheel metadata") + with backend.subprocess_runner(runner): + distinfo_dir = backend.prepare_metadata_for_build_wheel( + metadata_dir + ) + + return os.path.join(metadata_dir, distinfo_dir) diff --git a/Scripts/Lib/site-packages/pip/_internal/operations/build/metadata_legacy.py b/Scripts/Lib/site-packages/pip/_internal/operations/build/metadata_legacy.py new file mode 100644 index 0000000..f46538a --- /dev/null +++ b/Scripts/Lib/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.exceptions import InstallationError +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): + # type: (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, # type: BuildEnvironment + setup_py_path, # type: str + source_dir, # type: str + isolated, # type: bool + details, # type: str +): + # type: (...) -> 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: + call_subprocess( + args, + cwd=source_dir, + command_desc='python setup.py egg_info', + ) + + # Return the .egg-info directory. + return _find_egg_info(egg_info_dir) diff --git a/Scripts/Lib/site-packages/pip/_internal/operations/build/wheel.py b/Scripts/Lib/site-packages/pip/_internal/operations/build/wheel.py new file mode 100644 index 0000000..903bd7a --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/operations/build/wheel.py @@ -0,0 +1,38 @@ +import logging +import os +from typing import Optional + +from pip._vendor.pep517.wrappers import Pep517HookCaller + +from pip._internal.utils.subprocess import runner_with_spinner_message + +logger = logging.getLogger(__name__) + + +def build_wheel_pep517( + name, # type: str + backend, # type: Pep517HookCaller + metadata_directory, # type: str + tempd, # type: str +): + # type: (...) -> 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} (PEP 517)' + ) + 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/Scripts/Lib/site-packages/pip/_internal/operations/build/wheel_legacy.py b/Scripts/Lib/site-packages/pip/_internal/operations/build/wheel_legacy.py new file mode 100644 index 0000000..755c3bc --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/operations/build/wheel_legacy.py @@ -0,0 +1,110 @@ +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 ( + LOG_DIVIDER, + call_subprocess, + format_command_args, +) + +logger = logging.getLogger(__name__) + + +def format_command_result( + command_args, # type: List[str] + command_output, # type: str +): + # type: (...) -> 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}{LOG_DIVIDER}' + + return text + + +def get_legacy_build_wheel_path( + names, # type: List[str] + temp_dir, # type: str + name, # type: str + command_args, # type: List[str] + command_output, # type: str +): + # type: (...) -> 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, # type: str + setup_py_path, # type: str + source_dir, # type: str + global_options, # type: List[str] + build_options, # type: List[str] + tempd, # type: str +): + # type: (...) -> 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, + 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/Scripts/Lib/site-packages/pip/_internal/operations/check.py b/Scripts/Lib/site-packages/pip/_internal/operations/check.py new file mode 100644 index 0000000..f3963fb --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/operations/check.py @@ -0,0 +1,153 @@ +"""Validation of dependencies of packages +""" + +import logging +from typing import TYPE_CHECKING, Callable, Dict, List, NamedTuple, Optional, Set, Tuple + +from pip._vendor.packaging.requirements import Requirement +from pip._vendor.packaging.utils import canonicalize_name + +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 + +if TYPE_CHECKING: + from pip._vendor.packaging.utils import NormalizedName + +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, should_ignore=None): + # type: (PackageSet, Optional[Callable[[str], bool]]) -> CheckResult + """Check if a package set is consistent + + If should_ignore is passed, it should be a callable that takes a + package name and returns a boolean. + """ + + missing = {} + conflicting = {} + + for package_name, package_detail in package_set.items(): + # Info about dependencies of package_name + missing_deps = set() # type: Set[Missing] + conflicting_deps = set() # type: Set[Conflicting] + + 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() + 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): + # type: (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, package_set): + # type: (List[InstallRequirement], 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_pkg_resources_distribution() + + assert dist is not None + name = canonicalize_name(dist.project_name) + package_set[name] = PackageDetails(dist.parsed_version, dist.requires()) + + installed.add(name) + + return installed + + +def _create_whitelist(would_be_installed, package_set): + # type: (Set[NormalizedName], PackageSet) -> Set[NormalizedName] + packages_affected = set(would_be_installed) + + for package_name in package_set: + if package_name in packages_affected: + continue + + for req in package_set[package_name].dependencies: + if canonicalize_name(req.name) in packages_affected: + packages_affected.add(package_name) + break + + return packages_affected diff --git a/Scripts/Lib/site-packages/pip/_internal/operations/freeze.py b/Scripts/Lib/site-packages/pip/_internal/operations/freeze.py new file mode 100644 index 0000000..defb20c --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/operations/freeze.py @@ -0,0 +1,277 @@ +import collections +import logging +import os +from typing import ( + Container, + Dict, + Iterable, + Iterator, + List, + NamedTuple, + Optional, + Set, + Union, +) + +from pip._vendor.packaging.requirements import Requirement +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: Optional[str] + editable: bool + comments: List[str] + + +def freeze( + requirement=None, # type: Optional[List[str]] + local_only=False, # type: bool + user_only=False, # type: bool + paths=None, # type: Optional[List[str]] + isolated=False, # type: bool + exclude_editable=False, # type: bool + skip=() # type: Container[str] +): + # type: (...) -> Iterator[str] + installations = {} # type: 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() # type: Set[str] + # 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 = collections.defaultdict(list) # type: Dict[str, List[str]] + 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: + 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, editable, comments) for use in + FrozenRequirement.from_dist(). + """ + if not dist.editable: + return _EditableInfo(requirement=None, editable=False, comments=[]) + if dist.location is None: + display = _format_as_name_version(dist) + logger.warning("Editable requirement not found on disk: %s", display) + return _EditableInfo( + requirement=None, + editable=True, + comments=[f"# Editable install not found ({display})"], + ) + + location = os.path.normcase(os.path.abspath(dist.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, + editable=True, + 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, + editable=True, + comments=[f'# Editable {vcs_name} install with no remote ({display})'], + ) + except RemoteNotValidError as ex: + display = _format_as_name_version(dist) + return _EditableInfo( + requirement=location, + editable=True, + 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=None, editable=True, comments=[]) + + except InstallationError as exc: + logger.warning( + "Error when trying to get requirement for VCS system %s, " + "falling back to uneditable format", exc + ) + else: + return _EditableInfo(requirement=req, editable=True, comments=[]) + + logger.warning('Could not determine repository location of %s', location) + + return _EditableInfo( + requirement=None, + editable=False, + comments=['## !! Could not determine repository location'], + ) + + +class FrozenRequirement: + def __init__(self, name, req, editable, comments=()): + # type: (str, Union[str, Requirement], bool, 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": + # TODO `get_requirement_info` is taking care of editable requirements. + # TODO This should be refactored when we will add detection of + # editable that provide .dist-info metadata. + req, editable, comments = _get_editable_info(dist) + if req is None and not editable: + # if PEP 610 metadata is present, attempt to use it + direct_url = dist.direct_url + if direct_url: + req = direct_url_as_pep440_direct_reference( + direct_url, dist.raw_name + ) + comments = [] + if req is None: + # name==version requirement + req = _format_as_name_version(dist) + + return cls(dist.raw_name, req, editable, comments=comments) + + def __str__(self): + # type: () -> str + req = self.req + if self.editable: + req = f'-e {req}' + return '\n'.join(list(self.comments) + [str(req)]) + '\n' diff --git a/Scripts/Lib/site-packages/pip/_internal/operations/install/__init__.py b/Scripts/Lib/site-packages/pip/_internal/operations/install/__init__.py new file mode 100644 index 0000000..24d6a5d --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/operations/install/__init__.py @@ -0,0 +1,2 @@ +"""For modules related to installing packages. +""" diff --git a/Scripts/Lib/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9f8fab3cd96c6f9567c937166e10d6dd0bd1495b GIT binary patch literal 281 zcmYjMOG*Pl5bepvA&@)tHlP_7x)Bj^;Yw$dtU^OknJ$thovx;<2Tayp#yfZb&ycNn z30L;`0Uy*Wiu$~IJeiDD!Ry<{=Cb7Xq4SvC%t3adlH?< zVun?9eHSEi+>+T literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/operations/install/__pycache__/editable_legacy.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/operations/install/__pycache__/editable_legacy.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..510b1710a4876945a63d4736e8deaa4b7327137e GIT binary patch literal 1350 zcmZux(T?0S6t$B~CX=0+9V#R!pb{Y}btF1lB%Tn0s)z@q?IN+25FwJAiM<(XojA3f zZD$pp${Q;Eg;qTA4}1XM;8(;0p8yXm*V)QHm(0p1>)FuP?mHPyH%LgKCftu(JgstcK~Z?+-*&jnYxy4@F$< zq&t0oD8|(!onXZ9iz(ZEiPIU4=;#NOzDB)6G>=a|+h=87tP@7L$(Mp9yw)ZcA~#&t zNuy-JwEiIB3${oeYG&GI(X127PMDC*!$tfj1d9&lz76)dHa7aIaX;q5Mu+TC%j$y7 zv7Oy(xu9RvCtS(8Vzq&}nAa3~M930G?^O9QBmMeDN}B&gMGJvn22tdn}~{@ zOSd0T}cGSnCEaJ&cUkg&potH|)I5?*i&Q8-5=f|0#Mt$Eb^*Pr)bX z;%-F!XW;)0qCtQH^wh_wo_&b)t;ZN6SHFd}ZKc8C|Hj~dciZ3j%m=66eR~H+j12rP>f8jNLut$r|*8<)-|uobIX=I z$&pmaO+63ov=nlg3nF`UwB6mPd^s_#C22KNq>%LyFKyT;cEq39U?nSNCtx}^Yi^vN ze({(d%m+3E^-88}z-!oR2-K_4K?E@0QBEY~lu=^`69-cO8`Qa5wm%AK)}+bJ%0^sE z$U8>uXzB8Wu=>PaZ)?XGqeRPA6^u}>SYf1E+rZ_=ON_rm55t#1L0XP)Qb?Hc|S#o=Zq`sc>k z^vuKWovF9Ld4A0f38Ate#10+PAhHe3x`D6qz(Kh;Lj?f#4Ty7b8Rz1XKm|_?vTy&_ z+8QqOVzXken0^0M9#^SG`UQK1?TuHuUS7>!d^;+c**{N?h!7_?A!_ErbtmgJ+k)#Z e$mkQe2d!YAVi@Ub00D};*YVgJV^?Eu?Eed?FNy*H literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/operations/install/__pycache__/legacy.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/operations/install/__pycache__/legacy.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..77c87aeb280242ae1b1e950155931bc4ddbf7d11 GIT binary patch literal 3507 zcmb7GTaOz_6|QQx+wFGS9Q5ONqf-NnUM{kb zOZko$^?BcWAbBy)`}wKTgTC_*un^hoQPm1}gLK4wk!3}%rp$YhER_9Wj`IYuvbXr7 zF;7Dds@>b;C}wxlPa=_}2~P`XTmE2S-Md0$0vfHYaF-`I#EDV{ihi7pu*Oq47TjkM zYHcLJL+q$>#=D;VL_?fX2*??i%!MJ5hI zJkR1|K;;&Eat#D05Cf$0KiICuYG6B4tyQ+0AL0EVieYylg#jlImT{(^z$ZH(3NoX| zq$Iw<$QF4)H^F8#c_@|54?;M>FjH0@h{`yobDVNH` z@KZ~IKk^xu`lt|p$`TN{A`NRW^yG1&fI!DK`A-nPBSQ`FC-$^fk~`$rt5dTedvs=$ z<}sbt%lZr)eoV#1vR2lQ=+vU*(c6z~X3osg0F6dbFB?bnF&&Yqt!KDAHA{159g}HO z&(tWJF#d<7uI<_1h4#{(RecW3+B~AAbqsUC%suF79TQ3lx3rF+MbFSKEml7^rcTi* z9cCRF&sV3dvNc;`jaj?2k11=c6CD3B5SIz>Q4J^qLhM^aihXFu_gC;?ThHG7N|d5G zR?#F^K|BSuF_F&P3^1{DOBh(xo( zCWBw)Q1qp8bHQ_-GR+omL5s9NtQjVCjLGeN0daYPV$S?w6m#hhMV2h0yz+bhMx2E~ zEN}J~r<^qVd^Ea-Fq%C1&D3KN^U|yUa$`{lDDaBi0BYEv*^VL?OKq2TB2aq@y!77n16D>L01c!}B4a6Qn297PL<9TlvHYlyRWs%LbEw&P4!zeU zJlot$dIxk^`5HYdw8P)|e|(DDlHUg5*6oH%9cojP8ZV8yRWm-f>!x8tiwmzwyVQDR z*KFE>+F5$_mH0jk3y~^L9$X&lnt6W)JX|*R$h1>vs6V66e?MKCJSdF48i06d4*_mW zy8vXnq$Mf4C4j%|AmGa;K+k;Enl2Xr!P5C7`I7-8uu?RR$a9a9vh}Gxmc9V2=wr2o0`C*i1feW`0LhP3 z7Gx_UE>xZIoiS|d?m@`43G~e+uA{Cg;Bd;3c^nn`3eyqXJ0pIC)7?O!q55Miy@%p9 ziaQ{bC3SkF+WK&Qe&}oT*^$ifs%Of^dr(8Pxq~T}&(lxT`EiO@KJco{#v;^NRF(S( z%?Gz|YP*1Z0WB_WV%42nO{Y}gb)8U&??G3^CYYEk(0gO9j=Pk<1YxbXh5=wT{>N+m z%jf{eUv+AghW&EmmGRpR;#w{>jP7UV1s7m%ymXo!s(b$Ge#4~VW0<;kRW*E{Wg%n| z4Kz4-yYf#LdR2#kE5=0>%RWkdEh(!wgfws@@U9b>PKY|{u0saYKh1#przR74IjM86 z_d=RhIa5~5eDU>e$Zj~SS$Rlco}s>^QElpE$2xGnv_z$mM3Bd5Hvih|OH|zpd9U8E z4n}qPjjH3Fc|xy)Rc*XU>D2KU=&Cv5#XTLx0#iNl0g9iaKu(1Vs1Q0}wJR1fHXRU} y`RyB3qIVOhm&kWPm;@Oc8GMbp2J-k9uVZv;hGkLXl?CoLYQ}#I)A`)}`hNl4kIq;C literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7a2599fc0ba38ed73d24f6d75ff3313eea7edaf5 GIT binary patch literal 20453 zcmb7sYj7Obm0ovG&rHu?FaQA%e29nx#A*OgDf5 z=cU^XLKyehvcV0hB(j|KuD2>{SAdk`D%<(ts;zZi_MgrE*t|AX$>zs)lFg>Jb`x#3 zQptMD@yfQC?>jv+m;p&A3sm2}ec$)obI(1mJN3cAw1&SQ{O+GDJakNdhx5Y{k5{%-NAe@p(fnw2EI%e`iOSaMcz(RPEx)b0J-@xW zBfq1%GrzO?NdA%PuKcd*?)>iRp8THb-u&LGowuv|^82d$^ZTm@@&~F1^9QSs<{y=I zl9k7*hw_K2hx3Q!+p6TMNAgD`o~k@vJ(@o%@pNUPI+>r8_(0`Y^@;ow)#Lf&)hF{$ zN?N9JqIxoaQsRS^r>dv&rzD=OJY9Vz|4jAS{Il{sR5@M!ME(=iGx;;}JzRON`h5QR z>I?Z7QsJ8*W7LDPXWiRfYa6dRb6{YbH<%*w>4**dv!IIzvd>^KIL9t z*YnfvUT3>IvufmDa}T($xijuT_jPw>&e);N#dc`j{K-+jh8fZC6sw$$8+Njs)<(0TN>nZMyY<{Uzex17UH4)4!6N1Vs; zE;uhaN1X}u@mXimIfj&?^MrF8?^)+b=LFs*jQ^zb6vqD)M(W_}l=C#cp2nApuVIL5S=yWD(fda2Qh2uFc!Unq$u{l`9TE`~}zEzr5hO zmHqZ?xmHvwcB5FjS)6xSty=Ua(;sqcP381(%aW>i#W}Yyd+MZHE7ctriODOj=b?Bm z7RE~p#d0kim@8L&SIreGo*O37Et+ZMhC}1>)o^g;&1)A6=U={f{*}v9FNLvlwUy9% zQTj!$bsj@3&Q{#eyihLrp>-MU$afU;>nb!~Eqi{LoN||ERvK<-U2XW~daYOqt!ek| zB@D|AW7Do5#%GoqXej<#4cVbtDtdm-2$T78<5C&vj9jkG)iHyC>5?ip{42$quEOW= zyz3X-cL=$HTl3WlXI?7S>a}vISSdH%LakWkbklClTT*Vp^Hn&|j{ELA7@WeW%O0V# z<#Gh~A_sX<*y2*P=-muQ%U)r*>@SpS7&*sNS1aL@oAzG7aVu4 zxKsgDfK-J>Wy!+|xTPgu7Js~1ZWPMCTP>i)jdVbA0Ns0T1Ri`^*HqoFm+F-gQMUIF z=RkBK*oe3qP6Cam08ao?e^7qIiDCDF@?-Cqp-Ci}D(O9KFwW;Z9?wMJXw%xa^{HPyazCr%b#Ezc@!t{a7!dcES^m|D8&-gvQGUnn+< z%DHg`*y$>J#;sxjeD_9#k=_l|y5V8w6YV|e-Ds2>#|q^dN(1MQ)f>PxLf<>q-r&as zRVEuN7*g?;`yxj4BTn8lnkmj{lBv05XcYvF3xzOUAk>$z4uvpND7?K?tPsKRHRP#M z0Si}GPN7ls7s8a|dVUm5Vz1ZcT}M6Jne)c%)iX>xf#5kj9?xn^Gj;xF3`q~u*QMEO zXcgpTSSxXioxeCD1h7E*6e7MBXo0?J+%Q^33rptffw5++gZ!<<9AjNyGo9GFzD;YH zf$7JC*s4B95*Tm3aNPwK*X+X)xpIJr^O(X>yW-a7{e_&6Mo!IM@<3^q_!-V4AZGc60)T660Niv}ma&X>QOz$^u|+-GuiFhp{Hd(ic-8EpeSZ3Nn;SB1Bzhi|o-+Y@)PbXGnZRVMx3*(VYpDO(-ug_-rJA3*9#LHT zz`n+czfiB)B$)U*M!Y%Z*N;WX0{Zq+&Zs5VF3-tI*~>-GZtukQ`WR}~BhWf6PF)iC z9@rPgi(aW*4vpp6ncQG#)ID_><-$bS%F-j{^cWuXs2DHb`t8{Kq}P9cu5DID@RIO-t$5p2D1 zV1B9G`M@E#1&gL49;nc$ zLu6+pKWcFW6}%Ayaynocvv@MP@vfySh<5!8IEVz|b_|dAc`Rpulb9#AudV4mwjeem z;j*=5__0NEEzWJ(ib*^nagz|*p{*sOZTj{=bnc^swU%;BCk|9d<7;4DzkuWAJ?*Zx zmXZ2{62|@P;?TOze_gwy&FN0UN#3@w@rSu0t9mOQ#JwqwX{#Iwy8M_T)_TbrL zqyxc#`lrs;Rz~V(IBRDdV*|0oR@v74#swER0xniaQn9vTw{Zz4jceEHz73jo?cB`E zB6UO(1x^~!{u&O7h-5`{&D%(}tC2`SDpyC#5MQcwH209Ej|z3HLy}R;;JWQ8)QMW| zXW)3u@JQh~UTr-8Ybfj`5G1rQJ#nx3RC|Jj;w*UU&WUl&ut%N3XgckMD3GN2YYm~h_hM>%O4FThH?1SjY#N6&`w{%4cVSKe` zcCn4wsb$p7#Z(ioFb&R{tUUSsWE=3{a|by_t{yYIXv*aF!t@yj5}VBS>-hG_izKuJ zwzKguSeU=&oV#s(NSfWuL<6ut*Rso=lB8@08IXpNeqIXMHtmgOV) z%XP@m9Qs`AkiEQ6E-j#)UhJG~y5~U)%MO_Eq9cMa>VicQ)UB(dM8%c*5?Cg84rP$z zLAb_Y<$+5=TWy3s3O>@cCnjq338qX$gPh=6l1ra#W~Fpj9BOU>)}lryq3n8nOG}g$ zVn>kL2)@Xr9U#xarF66%IKOThuY)6b+YqroCgAx<|9r%RDbm-?n3*~=@75sUs^@>m zcDYo>yWo?+XQuV^z2?ck4tjQ)YL=(2&Rjfg6Ygy}FoGTq86Ro^4|)ZE;jovpg|8sD zExgWWKmXaI?KP6&W3dC;_btXeSof{7aAm>#eRZ{v1 z2igK85r^B--$3gy3Fr!QVa;OaN-Ty&4wG)}R$0|+stf>xaSuH}cIPO`xg^k~TXSSn zs2hahTT+a2s23(Ys0UmpjDeRA6A@ht%|#rNVGL9-H>keA(pfn!A?MDn$WF2-K#^Zk zpJ(?*-h4qgD9o#@I`kpTMxA!QBMz+~I)}juL`bPrn5+6>w$oU_ zhoZ*~x5!I&E+Ah(2N6=di(y2P$G-pPqTfbY?>YiAVe09ag=0FS59^88n34E+S0W8T zC2`L*agfJ`b>w}JmWW>-Z_FaA9go1&VEdYK-1Mb(!*yFOfYUcVsB@?=^LipyL; zQUkXLI)IXLQ~^t&g~5^{hr8QXllFDC!gCCpv}Q-Z=hm-6QzT6x-4;$LI-fufh=0^s zh+yesvAuS$7dxGSSQPCO6F#+5_F-b%Q4u?j+LRA-LcJhygS0g2H3#ISj`EQZju}a} zeY3I;d#-C=yLin$@$@OF&G^YDpOzswU{1>wFE?r1mvD@7z=Vx7(h>#kGc@jsAUcPuJQ_`)?w~ybbaVRi+@Boq#oxy#pN_LhQ`tlU)g4s&FL*>bLE>i_WA{M%9>XErMkl9$vzfr^Ig2~Q4%$%ltLzv0&vvOz zJ%pnVXz5?ENAdyIm|<8StM4G%2OnZRAHjM8D*(5mP9h@Bqt|bB;!%Hc_KtLvG*G0? zLDB$D{RxYmX7F7EecBbCDQsH$_%tGf`I4^owpj(Tn>twJ*m_6a2J_HK0mB-VGpUhT zH(D6sTAVc(6Og*`?I#^b<*Sh-)jo`lsdMNjXY~-}w2)gzLA{_BkxAuag(Fvo@ul8j zFwROw#Cc(5se!pgZQ*86k8swQd(Yzk8LEl`#WF@>BcMT9V;F*k`X18zAl?TJc1T?l z7;oc!uuneBJJdUgRH%r2>K`zW*%)d!z0^uznB?^Jo2DA^p%ifp@Z^RlCK3)L9PsW* zszichki@cBffX3HH1)V2_Y;&oR(0@)saCqSz1@UsFQ9DO75T& zcjE2V7J@jyZ8Zx*qfP^8#VW{;ST9`Xw0#cbw_(qzdKIL(v;d6g(0F1Gsad^6DIsa;?7hq zt;pU(t5=@~g$$EzR#4V6j5X>F(b~yARKLQy#KABj=Z2TdhM9WBDNrd!S`((aQ&neK zE=7_99WQtdC{<>Ki^z7%M0H}Q84j_T9^?v#pqJ}Si1dxrBZT@~w5hiCG_;}S-Hf?A zDYAD4SO9|p{d0Rceumb(g9yw_#14=pu=EjqyRjW16*L*V`Ix%;9Te=_d`Tp9G28;- zi!>W8Vmc)GHQ=`p6&wfZlTOSx7GscMb`q~0GcYI%1LKhjl^>LO>xPrK8B@n3Ke?9h zlZ%#P?a(0kchqyx7Wk=E?KdQ^EvJ93o?$3 zj03X0TJDbHGtv(*I2wn1Wzj3z4=@&Kd8nu5M3Crf`EArl`vcDKVgh|+pw4cO68OKR zc~fxqB~icf*ap@&$TSP)Zzxb~^0UNxNQ+`RI|^n&bl!5-1AT85YreGA*7mf;XxnSJ zC2%L)6+qK+V=CNoaccUt>ld$GzE-$;ZRYaTsp)0{8TNB_qyS47E6{<<(l^t{fQa-Q zWUNRaiy_{(xZE9FT#DO2+J!*G?KH)0EUcU!lwl%KJEu2?(cVQZG^jTQBeSy>bkA222ah4PE~8iN}M!c5zoh*@E?+DuBo6h&c%>!H4i02ZKR z8y~{awkXXbv_owm|HI}MWrRe6g4gI0(Aq;lqTG=lYe1eQx z(1Zbj3qWa(_lYuq=Cc9FhekiSXc5$Js%kq*;_A#{x%Y1mDLf%xaXj`gQ{Su2JYgf`Xgo&zUocM z_7-5^uTYKASRq2xXBX8I%sz$yT1P<)Q4=JA6S5w^&59;<2%8o}tgv6;S`Z_%aZAsp zaS$6>Ba8jC>z?uMu6vf5#olR-^dk$+!L(?8f<2#MK%1@lLk54u;8_M6xF|779V$fN zb#T$rut}2{Q&Jzk1v$EhZ$ZE{5vHfbIwbp!h}HRHoR476K}6d74rsi{{YF#j@aOz*j&2O@;oGb`%AFjgY_oNm z3^6uh5k_bdheWKyI{$Z+il9t`RfIri8GFFSlXBnWutzGL@rro!SF(mR&aICY6Vgmt}cH7Fw?qHwgVP=JCcN8`C#FN#3}4kwAGq_|8foNa@pyyF2erUVn8}gCGUiNuFL;G zG0U!~;8k!4g5!xZX`i377kt0rojwM`D!rR9H26r+;yPJZ^T)^^l;=7M#$(d{L}Z{k zb^t2f2^^$tWv(ZB6|qOio&?#W*0%1GZ~8*zTa@Rw|uN1grlX1BiSwC`Ep!gFY6F5sE2& z6q?w}B{`4Bn?yi?7}6wE&Y~t54Rlx>wIxk$^)5_FB0SZ6$F8n<^0qoj=Ce9N%qRZ68!Ra8`^e>ogcqQ-f2K!%_bO z0bC@YD@2MA^Z&(^WL+HAJSD5LK~Db?nLq3<4d`}rw0}gCY^p;vHmyG^tN+PhgN$vg z`j3$DgKpE>xUQHobE!lwqVq>(5l?2B;@2@*U%P8jkpn$}1#N&Hq;M7v(VF~TqDH%O z?7c);doS*rtJ-@yB(}6Oc}Kq!zmu4QQx4(V8n|P@LJH>Uw$;jrrBrJT-bo_Oa#FXg z_aX}_r7x?My`v$=a5ByyzJ{EvGjv;P4F{Q3t+fUEgu!47Gz%lpUJM5#GOE$mSdhJI z`N_KpAH2Z2<_y1Ypv+c39c&Fo5gT{5I3s9f8)|I}#-!Hv){bBZGm9aACra)Nwj=h4 zKM;%ukFbuPxtrvP54<*7yZmghi<*r0jQ7kt#vKzQq|MZ7?UuSbP-YKCw>#J)v9v$b zjmHomTX01sQlwmCb58?sk5w0^vGz~3Gm*nmRopub~rXK)Zcu<(L? zKh}CQcoc0Vf_=dO?B&P&M;3Rj?G7G;o6L{Jk!FvxD|l>eFVh!oXZJeccnBjs6g;*H zF6!<708VL7myb#v*S?~ABfY%R1M>Ix=KK5B_6Pgd4$$!iGdSq%0R}yaUJg4ugTsZ# zoV^P=-iPGtu%EjN&a0L4kNA%}_TtgI=Gp}1W27Ak4zEoHIdF@Q!@7MecwFGX7}Jk9 z`<$I+C?+K}jyWs;iQsY6I~p8y_AKd=vTyBpaFivS{r;1y+K_fudoSjnSUhijKnv!1(v?YyY^kpZtoU zVx6{~!)W`2|B2v)lY`3=6fF;E>96i<>4dbjYwe741kgT-wRmpr`QYT*3tU6M=PCbe z@YLP-T|G$OO*oIgA8(!N_ILz6K8@KtJqM2!|D1DlRsW{`W&MNgt!L26i~b&GB6x=S zj@Glmvuo%53&E*XIr4i)=Io*4)K?7erQWeIHFvD|J`SqOkut)DLjgUQ+oqPb&X9_c z)AkhABd`Qf8v=i~MHmcwbcCY)XqS)Nb--$$j{M=kCzA=4<6iP$3ZVj~tNiM%?1@|L zX`8OQWa~Y!Ds;4kWfuk^h)R*Cb-Qk_y|=d&Ff8zd^@ITiQ*qj!7DEb+%3{A3@7&I8 z+T0DblSes7X~@PO6_Mz$x8cSLE%TVoY5R=@7qAc$_UsBgOWPS6)3UEco@nHXBSTRK zKs5VDgDZ3_+I{U|#-*EpbkXl~)#wKpM<^z?ViyWxgY9oRK3*4F_2r}Gm1wnU0|bh5H(o2f*7`pb_OZ~ zH3s)0=)=fMaI?{Eh)>RFp1J}p_X8B%Vi0UYv{%C|nr&~ARvWHJby6L^Hl{30E#;M4~D5gfV5c97x3(Pq(=3knrLPAq|$j`)2J zRWU(}+ng>kVGJ759+M3Cab|hpVC0$Wh?U(_KI?%SmxZG?rf0?}=upLc=KUq7nn6)G zq8Xg7$jCHkt<>Hkh9BeF7JOP8m;7@*pDQ?16fQH|)?;NSvzgA_We%kW(X` z9-5Bk^%)S)Xg7UspK6Jnq!{_1$~T<-gur!8FE(tVbf%FV0?$Zjf_gSP>j3X4Td2JZ zL|BS(q2R*MnQAx?RcyPPx4jdva_MO02#%hm+fHLPZfw-*QlWqg22_I}d>mcTTe z4WLyuGt?mdwE4ut!1u6*?t>-aDX<(v1iYbk2j*&8EWpFTVnI2$-vOWRnG2lE{B^n|OP!2eBcewvI2sPpg&>!Y%0mZK~Ekpp&ev4TH%!2EQ zLWcMONa}c&6`XcI!uvo1daFC$?D4f!3TTIQ5uN;hA(H&zgaTnwgC=>USL7cmG zS!*VMJg@<`5-7hD<*k*A?eej;l%KvU$4x8gm{J=$YuJd*-WFsmsUSfeYRkgxXfq}< z4xp@cH%4U4#i!J7VcgBx*XT?J#tLUH&l()>P|83tgMB_}PtrHKXZO<`3@i&6q=ouY z1rA`M72*powN+Kdx!EIfbg43YQwLzC(@JNlci)o#}6%W%bscqP&S7_PT8+uKRB=nB8QG}eiTV&$1#X}aZj;@zo=R|(58U=#q26t8b3>6lXADE%iER&O6~p+s zWg0&OvH+?=J2@hAyDu0bCH1n)l?rcPRI&742M&i*hz)~@PChF z+;M^CydTn{s1==fVOh~RRyl+;nV$rhDjJ$P|E4i){6dJ|-&P6DbpMEJJcm!<@ji** zi#Q#9c(6y8{#Gd%?0~2scRVOe;grHb^a6P;oZ>Mm6Cb=5kUdBaqNVP?WW(-h* zGn$a#zlGM-KVi^is+17uPctpT!LY~ShMOuJom+yS(3OjX7z1(-5~8+3^e%YyB~@~x z%dTv|dzX+KK@Y~eV+l|f&=_82f>iaWtYu)Pd$^F>+HK+*X?hU+d1`9#$M@eF^>{F!I3P z`y3h)!Z{_*D(c_z+Xh6+-$&2~CT?bOwN#>euOlFO1-Q(Eixax2sRp>Ei8N40f$H^` zkGJ)zqUd-R!2Reh5KuUE#3{Q%lE-H4aO;QAgJ2gg$U_2`JtuCCpm##v647Ny_1h>3 z31_t9h0(qr&1;rDn=#w<(h!XLJ%W*oZM-{zGkKS|I>M2)jh>qU+FvI68)@>lZ)u+QsRaix2*>CNE$8B^ajP z%ITMK7u9iQRhX4*-+V&^9-O>QCwq?jTODP<1AgONS3l(^X|CGO;1LG57|H_(5D!YWwAR;x!zm+j=iZ?qQ}KkBr0{bl|_T!*K?O z8N9>b`v}6g5>p~WljvW9=a$|kiH zktfdA*y2~2I4JT_6<6TP@C#S}jv3!%@Q)Zwun0yB&iNhLciDElTCCxx7gR*CW?A%C z7#v{vB;0uxJzQ`243pkuQi``Rqx%9eIP~$>VG*bWo|AVU$G>B&{xFd?@#aUCIg z!#hzNmUE{g1pb)K3R5|b4Hl-bQzIQ?I3|}5HfajObi`p7@FNl&2!5*pS4N%CqIQi^ zzq-i=1*QIqv3m@#l{7WLU)VXV;$Bvs@L|0>Pr+>a#Lw(1{^vUv;A8QY9AZj)Iijo9JmnLfJ!Wrh<;U}EyJ_p z0<p z{W!)!MEaHv_%{x@NY&K)%{hca8|&8|T2F$M$aYsXD$w!9mkTPL5Akv}8Mf6F?a8qP zb(s(%+mTB}eEV4<0XY(dU$KekdCxH`*e7@>?0mML=KXWj@Msjx?zF(jCk!(I?=g6n zWh^U|F*5_%0qbzW3N3XbJ$49ty@-ojGmy>u)MzZy#) zLzvi_}_azHs0NHFFTqs5~dYT#Bu+{NW-bb zgkA++Z18Yn8@S|8f1P9&ePr}KU|iEN>RrYqo)FhQHjw zpQ|*vIBx68Rg@1PPf|4v-*;$# z0yBt1D}u`o???8u4K`sIm;L)}pS?^38H3H=DBtImCVZ+nHA7`5&Zqh^Oi`y!f@AeD zG}TXc)hh(Zs|>C%z>g?VjM~PMoTp#|c9T@?Qft*<)&r`BdUG>$2m2U_K|>y-IB z=(q8+1e{YKbG!)r%a-Nd!4_W(MAn)i7BoIQ0@dRNiA2eql;eFEY5q;86td zbdO9}aF*~UNd_b4{9m&CA2T4TDEw9xC@JssojMu)7{{Pn#cij_wys!Vs5qB+iQVUq zu0%|Q@Er-}B>WY6RI4N#BR{B!2Z}pI4KN@|DBd|&Sq4K4s1{IL7?6EeqYTCvY-K=Z zA*8#WP%~MC?M!+EeAOg==BMV=mDrTP22Dl>q^EYEM1K2&N|3vbJZbtG*l=MIQ=_m* z`Jvthyz)EI-m9S^D^W{8N-eUc?l zuyI`1@L!dSAd!m}*+ubu68R*IVbm_Sv pI&NjGgtagGdNwzlwFZWhP|yesN&iIqg7yXTEGWuwl#>0){{@{;24MgI literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/operations/install/editable_legacy.py b/Scripts/Lib/site-packages/pip/_internal/operations/install/editable_legacy.py new file mode 100644 index 0000000..6882c47 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/operations/install/editable_legacy.py @@ -0,0 +1,47 @@ +"""Legacy editable installation process, i.e. `setup.py develop`. +""" +import logging +from typing import List, Optional, Sequence + +from pip._internal.build_env import BuildEnvironment +from pip._internal.utils.logging import indent_log +from pip._internal.utils.setuptools_build import make_setuptools_develop_args +from pip._internal.utils.subprocess import call_subprocess + +logger = logging.getLogger(__name__) + + +def install_editable( + install_options, # type: List[str] + global_options, # type: Sequence[str] + prefix, # type: Optional[str] + home, # type: Optional[str] + use_user_site, # type: bool + name, # type: str + setup_py_path, # type: str + isolated, # type: bool + build_env, # type: BuildEnvironment + unpacked_source_directory, # type: str +): + # type: (...) -> 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, + install_options=install_options, + no_user_config=isolated, + prefix=prefix, + home=home, + use_user_site=use_user_site, + ) + + with indent_log(): + with build_env: + call_subprocess( + args, + cwd=unpacked_source_directory, + ) diff --git a/Scripts/Lib/site-packages/pip/_internal/operations/install/legacy.py b/Scripts/Lib/site-packages/pip/_internal/operations/install/legacy.py new file mode 100644 index 0000000..4cb24fe --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/operations/install/legacy.py @@ -0,0 +1,132 @@ +"""Legacy installation process, i.e. `setup.py install`. +""" + +import logging +import os +import sys +from distutils.util import change_root +from typing import List, Optional, Sequence + +from pip._internal.build_env import BuildEnvironment +from pip._internal.exceptions import InstallationError +from pip._internal.models.scheme import Scheme +from pip._internal.utils.logging import indent_log +from pip._internal.utils.misc import ensure_dir +from pip._internal.utils.setuptools_build import make_setuptools_install_args +from pip._internal.utils.subprocess import runner_with_spinner_message +from pip._internal.utils.temp_dir import TempDirectory + +logger = logging.getLogger(__name__) + + +class LegacyInstallFailure(Exception): + def __init__(self): + # type: () -> None + self.parent = sys.exc_info() + + +def write_installed_files_from_setuptools_record( + record_lines: List[str], + root: Optional[str], + req_description: str, +) -> None: + def prepend_root(path): + # type: (str) -> str + if root is None or not os.path.isabs(path): + return path + else: + return change_root(root, path) + + for line in record_lines: + directory = os.path.dirname(line) + if directory.endswith('.egg-info'): + egg_info_dir = prepend_root(directory) + break + else: + message = ( + "{} did not indicate that it installed an " + ".egg-info directory. Only setup.py projects " + "generating .egg-info directories are supported." + ).format(req_description) + raise InstallationError(message) + + new_lines = [] + for line in record_lines: + filename = line.strip() + if os.path.isdir(filename): + filename += os.path.sep + new_lines.append( + os.path.relpath(prepend_root(filename), egg_info_dir) + ) + new_lines.sort() + ensure_dir(egg_info_dir) + inst_files_path = os.path.join(egg_info_dir, 'installed-files.txt') + with open(inst_files_path, 'w') as f: + f.write('\n'.join(new_lines) + '\n') + + +def install( + install_options, # type: List[str] + global_options, # type: Sequence[str] + root, # type: Optional[str] + home, # type: Optional[str] + prefix, # type: Optional[str] + use_user_site, # type: bool + pycompile, # type: bool + scheme, # type: Scheme + setup_py_path, # type: str + isolated, # type: bool + req_name, # type: str + build_env, # type: BuildEnvironment + unpacked_source_directory, # type: str + req_description, # type: str +): + # type: (...) -> bool + + header_dir = scheme.headers + + with TempDirectory(kind="record") as temp_dir: + try: + record_filename = os.path.join(temp_dir.path, 'install-record.txt') + install_args = make_setuptools_install_args( + setup_py_path, + global_options=global_options, + install_options=install_options, + record_filename=record_filename, + root=root, + prefix=prefix, + header_dir=header_dir, + home=home, + use_user_site=use_user_site, + no_user_config=isolated, + pycompile=pycompile, + ) + + runner = runner_with_spinner_message( + f"Running setup.py install for {req_name}" + ) + with indent_log(), build_env: + runner( + cmd=install_args, + cwd=unpacked_source_directory, + ) + + if not os.path.exists(record_filename): + logger.debug('Record file %s not found', record_filename) + # Signal to the caller that we didn't install the new package + return False + + except Exception: + # Signal to the caller that we didn't install the new package + raise LegacyInstallFailure + + # At this point, we have successfully installed the requirement. + + # We intentionally do not use any encoding to read the file because + # setuptools writes the file using distutils.file_util.write_file, + # which does not specify an encoding. + with open(record_filename) as f: + record_lines = f.read().splitlines() + + write_installed_files_from_setuptools_record(record_lines, root, req_description) + return True diff --git a/Scripts/Lib/site-packages/pip/_internal/operations/install/wheel.py b/Scripts/Lib/site-packages/pip/_internal/operations/install/wheel.py new file mode 100644 index 0000000..b5eafda --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/operations/install/wheel.py @@ -0,0 +1,803 @@ +"""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, + 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._vendor.six import ensure_str, ensure_text, reraise + +from pip._internal.exceptions import InstallationError +from pip._internal.locations import get_major_minor_version +from pip._internal.metadata import BaseDistribution, 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 = None # type: RecordPath + dest_path = None # type: str + changed = None # type: bool + + def save(self): + # type: () -> None + pass + + +logger = logging.getLogger(__name__) + +RecordPath = NewType('RecordPath', str) +InstalledCSVRow = Tuple[RecordPath, str, Union[int, str]] + + +def rehash(path, blocksize=1 << 20): + # type: (str, int) -> 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): + # type: (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): + # type: (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): + # type: (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): + # type: (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 = collections.defaultdict(set) # type: Dict[str, Set[str]] + 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(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.dirname(sys.executable))) + warn_for = { + parent_dir: scripts for parent_dir, scripts in grouped_by_dir.items() + if os.path.normcase(parent_dir) not in not_warn_dirs + } # type: Dict[str, Set[str]] + if not warn_for: + return None + + # Format a message + msg_lines = [] + for parent_dir, dir_scripts in warn_for.items(): + sorted_scripts = sorted(dir_scripts) # type: List[str] + if len(sorted_scripts) == 1: + start_text = "script {} is".format(sorted_scripts[0]) + else: + start_text = "scripts {} are".format( + ", ".join(sorted_scripts[:-1]) + " and " + sorted_scripts[-1] + ) + + msg_lines.append( + "The {} installed in '{}' which is not on PATH." + .format(start_text, parent_dir) + ) + + 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): + # type: (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( + (ensure_str(record_path, encoding='utf-8'), hash_, str(size)) + for record_path, hash_, size in outrows + ) + + +def _record_to_fs_path(record_path): + # type: (RecordPath) -> str + return record_path + + +def _fs_to_record_path(path, relative_to=None): + # type: (str, Optional[str]) -> RecordPath + if relative_to is not None: + # On Windows, do not handle relative paths if they belong to different + # logical disks + if os.path.splitdrive(path)[0].lower() == \ + os.path.splitdrive(relative_to)[0].lower(): + path = os.path.relpath(path, relative_to) + path = path.replace(os.path.sep, '/') + return cast('RecordPath', path) + + +def _parse_record_path(record_column): + # type: (str) -> RecordPath + p = ensure_text(record_column, encoding='utf-8') + return cast('RecordPath', p) + + +def get_csv_rows_for_installed( + old_csv_rows, # type: List[List[str]] + installed, # type: Dict[RecordPath, RecordPath] + changed, # type: Set[RecordPath] + generated, # type: List[str] + lib_dir, # type: str +): + # type: (...) -> List[InstalledCSVRow] + """ + :param installed: A map from archive RECORD path to installation RECORD + path. + """ + installed_rows = [] # type: 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 = _parse_record_path(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)) + 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)) + for installed_record_path in installed.values(): + installed_rows.append((installed_record_path, '', '')) + return installed_rows + + +def get_console_script_specs(console): + # type: (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( + 'pip{} = {}'.format(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( + 'easy_install-{} = {}'.format( + 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, dest_path, zip_file): + # type: (RecordPath, str, 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): + # type: () -> ZipInfo + return self._zip_file.getinfo(self.src_record_path) + + def save(self): + # type: () -> 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): + # type: (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): + # type: () -> None + self._file.save() + self.changed = fix_script(self.dest_path) + + +class MissingCallableSuffix(InstallationError): + def __init__(self, entry_point): + # type: (str) -> None + super().__init__( + "Invalid script entry point: {} - A callable " + "suffix is required. Cf https://packaging.python.org/" + "specifications/entry-points/#use-for-scripts for more " + "information.".format(entry_point) + ) + + +def _raise_for_invalid_entrypoint(specification): + # type: (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, options=None): + # type: (str, Dict[str, Any]) -> List[str] + _raise_for_invalid_entrypoint(specification) + return super().make(specification, options) + + +def _install_wheel( + name, # type: str + wheel_zip, # type: ZipFile + wheel_path, # type: str + scheme, # type: Scheme + pycompile=True, # type: bool + warn_script_location=True, # type: bool + direct_url=None, # type: Optional[DirectUrl] + requested=False, # type: bool +): + # type: (...) -> 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 = {} # type: Dict[RecordPath, RecordPath] + changed = set() # type: Set[RecordPath] + generated = [] # type: List[str] + + def record_installed(srcfile, destfile, modified=False): + # type: (RecordPath, str, bool) -> None + """Map archive RECORD paths to installation RECORD paths.""" + newpath = _fs_to_record_path(destfile, lib_dir) + installed[srcfile] = newpath + if modified: + changed.add(_fs_to_record_path(destfile)) + + def all_paths(): + # type: () -> Iterable[RecordPath] + names = wheel_zip.namelist() + # If a flag is set, names may be unicode in Python 2. We convert to + # text explicitly so these are valid for lookup in RECORD. + decoded_names = map(ensure_text, names) + for name in decoded_names: + yield cast("RecordPath", name) + + def is_dir_path(path): + # type: (RecordPath) -> bool + return path.endswith("/") + + def assert_no_path_traversal(dest_dir_path, target_path): + # type: (str, 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, dest): + # type: (ZipFile, str) -> Callable[[RecordPath], File] + def make_root_scheme_file(record_path): + # type: (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, scheme): + # type: (ZipFile, Scheme) -> Callable[[RecordPath], File] + scheme_paths = {} + for key in SCHEME_KEYS: + encoded_key = ensure_text(key) + scheme_paths[encoded_key] = ensure_text( + getattr(scheme, key), encoding=sys.getfilesystemencoding() + ) + + def make_data_scheme_file(record_path): + # type: (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): + # type: (RecordPath) -> bool + return path.split("/", 1)[0].endswith(".data") + + paths = all_paths() + 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, + ensure_text(lib_dir, encoding=sys.getfilesystemencoding()), + ) + files = map(make_root_scheme_file, root_scheme_paths) + + def is_script_scheme_path(path): + # type: (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(wheel_path, canonicalize_name(name)) + console, gui = get_entrypoints(distribution) + + def is_entrypoint_wrapper(file): + # type: (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 = 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(): + # type: () -> Iterator[str] + # 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): + # type: (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(): + # Python 2's `compileall.compile_file` requires a str in + # error cases, so we must convert to the native type. + path_arg = ensure_str( + path, encoding=sys.getfilesystemencoding() + ) + success = compileall.compile_file( + path_arg, 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, **kwargs): + # type: (str, **Any) -> Iterator[BinaryIO] + 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: + # The type mypy infers for record_file is different for Python 3 + # (typing.IO[Any]) and Python 2 (typing.BinaryIO). We explicitly + # cast to typing.IO[str] as a workaround. + writer = csv.writer(cast('IO[str]', record_file)) + writer.writerows(_normalized_outrows(rows)) + + +@contextlib.contextmanager +def req_error_context(req_description): + # type: (str) -> Iterator[None] + try: + yield + except InstallationError as e: + message = "For req: {}. {}".format(req_description, e.args[0]) + reraise( + InstallationError, InstallationError(message), sys.exc_info()[2] + ) + + +def install_wheel( + name, # type: str + wheel_path, # type: str + scheme, # type: Scheme + req_description, # type: str + pycompile=True, # type: bool + warn_script_location=True, # type: bool + direct_url=None, # type: Optional[DirectUrl] + requested=False, # type: bool +): + # type: (...) -> 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/Scripts/Lib/site-packages/pip/_internal/operations/prepare.py b/Scripts/Lib/site-packages/pip/_internal/operations/prepare.py new file mode 100644 index 0000000..247e63f --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/operations/prepare.py @@ -0,0 +1,655 @@ +"""Prepares a distribution for installation +""" + +# The following comment should be removed at some point in the future. +# mypy: strict-optional=False + +import logging +import mimetypes +import os +import shutil +from typing import Dict, Iterable, List, Optional, Tuple + +from pip._vendor.packaging.utils import canonicalize_name +from pip._vendor.pkg_resources import Distribution + +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, + NetworkConnectionError, + PreviousBuildDirError, + VcsHashUnsupported, +) +from pip._internal.index.package_finder import PackageFinder +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.req.req_install import InstallRequirement +from pip._internal.req.req_tracker import RequirementTracker +from pip._internal.utils.deprecation import deprecated +from pip._internal.utils.filesystem import copy2_fixed +from pip._internal.utils.hashes import Hashes, MissingHashes +from pip._internal.utils.logging import indent_log +from pip._internal.utils.misc import display_path, hide_url, is_installable_dir, rmtree +from pip._internal.utils.temp_dir import TempDirectory +from pip._internal.utils.unpacking import unpack_file +from pip._internal.vcs import vcs + +logger = logging.getLogger(__name__) + + +def _get_prepared_distribution( + req, # type: InstallRequirement + req_tracker, # type: RequirementTracker + finder, # type: PackageFinder + build_isolation, # type: bool +): + # type: (...) -> Distribution + """Prepare a distribution for installation.""" + abstract_dist = make_distribution_for_install_requirement(req) + with req_tracker.track(req): + abstract_dist.prepare_distribution_metadata(finder, build_isolation) + return abstract_dist.get_pkg_resources_distribution() + + +def unpack_vcs_link(link, location): + # type: (Link, str) -> 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)) + + +class File: + + def __init__(self, path, content_type): + # type: (str, 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, # type: Link + download, # type: Downloader + download_dir=None, # type: Optional[str] + hashes=None, # type: Optional[Hashes] +): + # type: (...) -> 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 _copy2_ignoring_special_files(src, dest): + # type: (str, str) -> None + """Copying special files is not supported, but as a convenience to users + we skip errors copying them. This supports tools that may create e.g. + socket files in the project source directory. + """ + try: + copy2_fixed(src, dest) + except shutil.SpecialFileError as e: + # SpecialFileError may be raised due to either the source or + # destination. If the destination was the cause then we would actually + # care, but since the destination directory is deleted prior to + # copy we ignore all of them assuming it is caused by the source. + logger.warning( + "Ignoring special file error '%s' encountered copying %s to %s.", + str(e), + src, + dest, + ) + + +def _copy_source_tree(source, target): + # type: (str, str) -> None + target_abspath = os.path.abspath(target) + target_basename = os.path.basename(target_abspath) + target_dirname = os.path.dirname(target_abspath) + + def ignore(d, names): + # type: (str, List[str]) -> List[str] + skipped = [] # type: List[str] + if d == source: + # Pulling in those directories can potentially be very slow, + # exclude the following directories if they appear in the top + # level dir (and only it). + # See discussion at https://github.com/pypa/pip/pull/6770 + skipped += ['.tox', '.nox'] + if os.path.abspath(d) == target_dirname: + # Prevent an infinite recursion if the target is in source. + # This can happen when TMPDIR is set to ${PWD}/... + # and we copy PWD to TMPDIR. + skipped += [target_basename] + return skipped + + shutil.copytree( + source, + target, + ignore=ignore, + symlinks=True, + copy_function=_copy2_ignoring_special_files, + ) + + +def get_file_url( + link, # type: Link + download_dir=None, # type: Optional[str] + hashes=None # type: Optional[Hashes] +): + # type: (...) -> 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, # type: Link + location, # type: str + download, # type: Downloader + download_dir=None, # type: Optional[str] + hashes=None, # type: Optional[Hashes] +): + # type: (...) -> 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) + return None + + # Once out-of-tree-builds are no longer supported, could potentially + # replace the below condition with `assert not link.is_existing_dir` + # - unpack_url does not need to be called for in-tree-builds. + # + # As further cleanup, _copy_source_tree and accompanying tests can + # be removed. + if link.is_existing_dir(): + deprecated( + "A future pip version will change local packages to be built " + "in-place without first copying to a temporary directory. " + "We recommend you use --use-feature=in-tree-build to test " + "your packages with this new behavior before it becomes the " + "default.\n", + replacement=None, + gone_in="21.3", + issue=7555 + ) + if os.path.isdir(location): + rmtree(location) + _copy_source_tree(link.file_path, location) + return None + + # 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, download_dir, hashes): + # type: (Link, str, Optional[Hashes]) -> 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: + 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, # type: str + download_dir, # type: Optional[str] + src_dir, # type: str + build_isolation, # type: bool + req_tracker, # type: RequirementTracker + session, # type: PipSession + progress_bar, # type: str + finder, # type: PackageFinder + require_hashes, # type: bool + use_user_site, # type: bool + lazy_wheel, # type: bool + in_tree_build, # type: bool + ): + # type: (...) -> None + super().__init__() + + self.src_dir = src_dir + self.build_dir = build_dir + self.req_tracker = req_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 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 + + # Should in-tree builds be used for local paths? + self.in_tree_build = in_tree_build + + # Memoized downloaded files, as mapping of url: (path, mime type) + self._downloaded = {} # type: Dict[str, Tuple[str, str]] + + # Previous "header" printed for a link-based InstallRequirement + self._previous_requirement_header = ("", "") + + def _log_preparing_link(self, req): + # type: (InstallRequirement) -> None + """Provide context for the requirement being prepared.""" + if req.link.is_file and not req.original_link_is_in_wheel_cache: + message = "Processing %s" + information = str(display_path(req.link.file_path)) + else: + message = "Collecting %s" + information = str(req.req or req) + + if (message, information) != self._previous_requirement_header: + self._previous_requirement_header = (message, information) + logger.info(message, information) + + if req.original_link_is_in_wheel_cache: + with indent_log(): + logger.info("Using cached %s", req.link.filename) + + def _ensure_link_req_src_dir(self, req, parallel_builds): + # type: (InstallRequirement, 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() and self.in_tree_build: + # 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, + ) + + # If a checkout exists, it's unwise to keep going. version + # inconsistencies are logged later, but do not fail the + # installation. + # FIXME: this won't upgrade when there's an existing + # package unpacked in `req.source_dir` + if is_installable_dir(req.source_dir): + raise PreviousBuildDirError( + "pip can't proceed with requirements '{}' due to a" + "pre-existing build directory ({}). 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.".format(req, req.source_dir) + ) + + def _get_linked_req_hashes(self, req): + # type: (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 req.original_link is None 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_using_lazy_wheel(self, link): + # type: (Link) -> Optional[Distribution] + """Fetch metadata using lazy wheel, if possible.""" + if not self.use_lazy_wheel: + return None + if self.require_hashes: + logger.debug('Lazy wheel is not used as hash checking is required') + return None + if link.is_file or not link.is_wheel: + logger.debug( + 'Lazy wheel is not used as ' + '%r does not points 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, # type: Iterable[InstallRequirement] + parallel_builds=False, # type: bool + ): + # type: (...) -> 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 = {} # type: 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] + req.local_file_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, parallel_builds=False): + # type: (InstallRequirement, bool) -> Distribution + """Prepare a requirement to be obtained from req.link.""" + assert req.link + link = 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 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: + # The file is already available, so mark it as downloaded + self._downloaded[req.link.url] = file_path, None + else: + # The file is not available, attempt to fetch only metadata + wheel_dist = self._fetch_metadata_using_lazy_wheel(link) + if wheel_dist is not None: + req.needs_more_preparation = True + return wheel_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, parallel_builds=False): + # type: (Iterable[InstallRequirement], bool) -> 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, None + 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 = [] # type: 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, parallel_builds): + # type: (InstallRequirement, bool) -> Distribution + assert req.link + link = req.link + + self._ensure_link_req_src_dir(req, parallel_builds) + hashes = self._get_linked_req_hashes(req) + + if link.is_existing_dir() and self.in_tree_build: + local_file = None + elif link.url not in self._downloaded: + try: + local_file = unpack_url( + link, req.source_dir, self._download, + self.download_dir, hashes + ) + except NetworkConnectionError as exc: + raise InstallationError( + 'Could not install requirement {} because of HTTP ' + 'error {} for URL {}'.format(req, exc, link) + ) + else: + file_path, content_type = self._downloaded[link.url] + if hashes: + hashes.check_against_path(file_path) + local_file = File(file_path, content_type) + + # 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.req_tracker, self.finder, self.build_isolation, + ) + return dist + + def save_linked_requirement(self, req): + # type: (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, # type: InstallRequirement + ): + # type: (...) -> Distribution + """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( + 'The editable requirement {} cannot be installed when ' + 'requiring hashes, because there is no single file to ' + 'hash.'.format(req) + ) + req.ensure_has_source_dir(self.src_dir) + req.update_editable() + + dist = _get_prepared_distribution( + req, self.req_tracker, self.finder, self.build_isolation, + ) + + req.check_if_exists(self.use_user_site) + + return dist + + def prepare_installed_requirement( + self, + req, # type: InstallRequirement + skip_reason # type: str + ): + # type: (...) -> Distribution + """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 " + "is set to {}".format(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_pkg_resources_distribution() diff --git a/Scripts/Lib/site-packages/pip/_internal/pyproject.py b/Scripts/Lib/site-packages/pip/_internal/pyproject.py new file mode 100644 index 0000000..5aa6160 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/pyproject.py @@ -0,0 +1,183 @@ +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 + + +def _is_list_of_str(obj): + # type: (Any) -> bool + return ( + isinstance(obj, list) and + all(isinstance(item, str) for item in obj) + ) + + +def make_pyproject_path(unpacked_source_directory): + # type: (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, # type: Optional[bool] + pyproject_toml, # type: str + setup_py, # type: str + req_name # type: str +): + # type: (...) -> 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 has_pyproject: + with open(pyproject_toml, encoding="utf-8") as f: + pp_toml = tomli.load(f) + 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. + elif use_pep517 is None: + use_pep517 = has_pyproject + + # 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", "wheel"], + "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. + error_template = ( + "{package} has a pyproject.toml file that does not comply " + "with PEP 518: {reason}" + ) + + # Specifying the build-system table but not the requires key is invalid + if "requires" not in build_system: + raise InstallationError( + error_template.format(package=req_name, reason=( + "it has a 'build-system' table but not " + "'build-system.requires' which is mandatory in the table" + )) + ) + + # Error out if requires is not a list of strings + requires = build_system["requires"] + if not _is_list_of_str(requires): + raise InstallationError(error_template.format( + package=req_name, + reason="'build-system.requires' is not a list of strings.", + )) + + # Each requirement must be valid as per PEP 508 + for requirement in requires: + try: + Requirement(requirement) + except InvalidRequirement: + raise InstallationError( + error_template.format( + package=req_name, + reason=( + "'build-system.requires' contains an invalid " + "requirement: {!r}".format(requirement) + ), + ) + ) + + backend = build_system.get("build-backend") + backend_path = build_system.get("backend-path", []) + check = [] # type: 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, or wheel + # (which is needed by the backend) in their requirements. So we + # make a note to check that those requirements are 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", "wheel"] + + return BuildSystemDetails(requires, backend, check, backend_path) diff --git a/Scripts/Lib/site-packages/pip/_internal/req/__init__.py b/Scripts/Lib/site-packages/pip/_internal/req/__init__.py new file mode 100644 index 0000000..aaea748 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/req/__init__.py @@ -0,0 +1,94 @@ +import collections +import logging +from typing import Iterator, 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], +) -> Iterator[Tuple[str, InstallRequirement]]: + 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], + install_options: List[str], + 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( + install_options, + 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/Scripts/Lib/site-packages/pip/_internal/req/__pycache__/__init__.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/req/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..195f8999ec4611d2a151b5cd8f7093e1a180cf07 GIT binary patch literal 2619 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 literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/req/__pycache__/req_file.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/req/__pycache__/req_file.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5690a2dbd0606de18e35df2af228989647383130 GIT binary patch literal 13508 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 boV9$NJGpCe-}cdMqp7i7W6z8Y9oqlD3Ic|S literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/req/__pycache__/req_install.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/req/__pycache__/req_install.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..32e6b00d1a8bc33d1e73273da815c27d4411a909 GIT binary patch literal 21487 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 Mb|ro`{@-5t|IIqQ)c^nh literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/req/__pycache__/req_set.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/req/__pycache__/req_set.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f362f820e6d6c849ccd0e74286e961f778fe0974 GIT binary patch literal 5860 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%0D)F5O@}<8lm3)wCs6WJ(00&lW^14jZ6acv zqRL@le+mZ_f4j84h3-q66pHf~UnS57{wCi)NfW|CvpC@?M>3u*rT#!d$-?4`itu@Z zk1m{YEX&#!wu&gKvSPg0K8H*n(#Jv=no1bxE6+6!>Cux*t@6Sz%Ket>Il`E zKHW_Hy(m++cDl-bE^2a{{uy;tU>ESA&$}b4kR|mG(3!?ziFsJ{YsydhE_F|gZ%0%i z+EY_7$tZgTtSKrUZYt_P-x2@yUGX2`RlaWqO}BZuQg!`H9OV;jqu)ViN>rF4UfGNU z(;<&%_O$q@+8xjYd8jyo)sE7JRZ)|1%{;zm79M}kEWk{vmo3;kLYj77I6kk{)&d$9 z*buDA2IkUno?#wC1U~%+p^SA=N|#Xv-?1gMUZMlo+Uq`zDEiqN+m^XSVR(v}OmMw$ i;V-D1%IJG2VDy0$0JAM#!zHAu*>x^(cYcmH8~+Egy&f?D literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8d0b94df538f7ab52c9b85b346ee57b3d34e2bea GIT binary patch literal 18853 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 literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/req/constructors.py b/Scripts/Lib/site-packages/pip/_internal/req/constructors.py new file mode 100644 index 0000000..d0f5b42 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/req/constructors.py @@ -0,0 +1,474 @@ +"""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 logging +import os +import re +from typing import Any, Dict, 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._vendor.pkg_resources import RequirementParseError, parse_requirements + +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.pyproject import make_pyproject_path +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.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 Requirement("placeholder" + extras.lower()).extras + + +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): + setup_py = os.path.join(url_no_extras, 'setup.py') + setup_cfg = os.path.join(url_no_extras, 'setup.cfg') + if not os.path.exists(setup_py) and not os.path.exists(setup_cfg): + msg = ( + 'File "setup.py" or "setup.cfg" not found. Directory cannot be ' + 'installed in editable mode: {}' + .format(os.path.abspath(url_no_extras)) + ) + pyproject_path = make_pyproject_path(url_no_extras) + if os.path.isfile(pyproject_path): + msg += ( + '\n(A "pyproject.toml" file was found, but editable ' + 'mode currently requires a setuptools-based build.)' + ) + raise InstallationError(msg) + + # 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, + 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 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 + """ + msg = "" + if os.path.exists(req): + msg = " The path does exist. " + # Try to parse and check if it is a requirements file. + try: + with open(req) as fp: + # parse first line only + next(parse_requirements(fp.read())) + msg += ( + "The argument you provided " + "({}) appears to be a" + " requirements file. If that is the" + " case, use the '-r' flag to install" + " the packages specified within it." + ).format(req) + except RequirementParseError: + logger.debug( + "Cannot parse '%s' as requirements file", req, exc_info=True + ) + else: + msg += f" File '{req}' does not exist." + 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, + options: Optional[Dict[str, Any]] = None, + constraint: bool = False, + user_supplied: bool = False, +) -> InstallRequirement: + + parts = parse_req_from_editable(editable_req) + + return InstallRequirement( + parts.requirement, + comes_from=comes_from, + user_supplied=user_supplied, + editable=True, + link=parts.link, + constraint=constraint, + use_pep517=use_pep517, + isolated=isolated, + install_options=options.get("install_options", []) if options else [], + global_options=options.get("global_options", []) if options else [], + hash_options=options.get("hashes", {}) if options else {}, + 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) + 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 = 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, + options: Optional[Dict[str, Any]] = None, + constraint: bool = False, + line_source: Optional[str] = None, + user_supplied: bool = False, +) -> 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, + install_options=options.get("install_options", []) if options else [], + global_options=options.get("global_options", []) if options else [], + hash_options=options.get("hashes", {}) if options else {}, + 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 = 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" + "{} depends on {} ".format(comes_from.name, 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, +) -> 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, + ) + + else: + req = install_req_from_line( + parsed_req.requirement, + comes_from=parsed_req.comes_from, + use_pep517=use_pep517, + isolated=isolated, + options=parsed_req.options, + constraint=parsed_req.constraint, + line_source=parsed_req.line_source, + user_supplied=user_supplied, + ) + 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, + install_options=ireq.install_options, + global_options=ireq.global_options, + hash_options=ireq.hash_options, + ) diff --git a/Scripts/Lib/site-packages/pip/_internal/req/req_file.py b/Scripts/Lib/site-packages/pip/_internal/req/req_file.py new file mode 100644 index 0000000..01c6cf6 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/req/req_file.py @@ -0,0 +1,528 @@ +""" +Requirements file parsing +""" + +import optparse +import os +import re +import shlex +import urllib.parse +from optparse import Values +from typing import TYPE_CHECKING, Any, Callable, Dict, Iterator, 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 = Iterator[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.install_options, + cmdoptions.global_options, + cmdoptions.hash, +] + +# the 'dest' string values +SUPPORTED_OPTIONS_REQ_DEST = [str(o().dest) for o in SUPPORTED_OPTIONS_REQ] + + +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, +) -> Iterator[ParsedRequirement]: + """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 + + if line.is_editable: + # For editable requirements, we don't support per-requirement + # options, so just return the parsed requirement. + return ParsedRequirement( + requirement=line.requirement, + is_editable=line.is_editable, + comes_from=line_comes_from, + constraint=line.constraint, + ) + else: + if options: + # Disable wheels if the user has specified build options + cmdoptions.check_install_build_global(options, line.opts) + + # get the options that apply to requirements + req_options = {} + for dest in SUPPORTED_OPTIONS_REQ_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 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 + if opts.index_url: + index_urls = [opts.index_url] + if opts.no_index is True: + index_urls = [] + if opts.extra_index_urls: + 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, + ) + 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) -> Iterator[ParsedLine]: + """Parse a given file, yielding parsed lines. + """ + yield from self._parse_and_recurse(filename, constraint) + + def _parse_and_recurse( + self, filename: str, constraint: bool + ) -> Iterator[ParsedLine]: + 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) -> Iterator[ParsedLine]: + _, 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) + + opts, _ = parser.parse_args(shlex.split(options_str), 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/Scripts/Lib/site-packages/pip/_internal/req/req_install.py b/Scripts/Lib/site-packages/pip/_internal/req/req_install.py new file mode 100644 index 0000000..4c58cdb --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/req/req_install.py @@ -0,0 +1,846 @@ +# The following comment should be removed at some point in the future. +# mypy: strict-optional=False + +import logging +import os +import shutil +import sys +import uuid +import zipfile +from typing import Any, Dict, Iterable, List, Optional, Sequence, Union + +from pip._vendor import pkg_resources, six +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.pep517.wrappers import Pep517HookCaller +from pip._vendor.pkg_resources import Distribution + +from pip._internal.build_env import BuildEnvironment, NoOpBuildEnvironment +from pip._internal.exceptions import InstallationError +from pip._internal.locations import get_scheme +from pip._internal.models.link import Link +from pip._internal.operations.build.metadata import generate_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.legacy import LegacyInstallFailure +from pip._internal.operations.install.legacy import install as install_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.direct_url_helpers import direct_url_from_link +from pip._internal.utils.hashes import Hashes +from pip._internal.utils.logging import indent_log +from pip._internal.utils.misc import ( + ask_path_exists, + backup_dir, + display_path, + dist_in_site_packages, + dist_in_usersite, + get_distribution, + hide_url, + redact_auth_from_url, +) +from pip._internal.utils.packaging import get_metadata +from pip._internal.utils.temp_dir import TempDirectory, tempdir_kinds +from pip._internal.utils.virtualenv import running_under_virtualenv +from pip._internal.vcs import vcs + +logger = logging.getLogger(__name__) + + +def _get_dist(metadata_directory: str) -> Distribution: + """Return a pkg_resources.Distribution for the provided + metadata directory. + """ + dist_dir = metadata_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] + + return dist_cls( + base_dir, + project_name=dist_name, + metadata=metadata, + ) + + +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, + install_options: Optional[List[str]] = None, + global_options: Optional[List[str]] = None, + hash_options: Optional[Dict[str, List[str]]] = None, + constraint: bool = False, + extras: Iterable[str] = (), + user_supplied: 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.legacy_install_reason: Optional[int] = None + + # 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) + ) + + if link is None and req and req.url: + # PEP 508 URL requirement + link = Link(req.url) + self.link = self.original_link = link + self.original_link_is_in_wheel_cache = False + + # 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 = { + pkg_resources.safe_extra(extra) for extra in req.extras + } + else: + self.extras = set() + if markers is None and req: + markers = req.marker + self.markers = markers + + # This holds the pkg_resources.Distribution object if this requirement + # is already available: + self.satisfied_by: Optional[Distribution] = 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.install_options = install_options if install_options else [] + self.global_options = global_options if global_options else [] + self.hash_options = hash_options if hash_options else {} + # 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[Pep517HookCaller] = 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 + + # This requirement needs more preparation before it can be built + self.needs_more_preparation = False + + def __str__(self) -> str: + if self.req: + s = str(self.req) + if self.link: + s += ' from {}'.format(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: + s += ' in {}'.format(display_path(self.satisfied_by.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 = ( + "{}={!r}".format(attr, attributes[attr]) 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 pkg_resources.safe_name(self.req.name) + + @property + def specifier(self) -> SpecifierSet: + return self.req.specifier + + @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. + """ + specifiers = self.specifier + return (len(specifiers) == 1 and + next(iter(specifiers)).operator in {'==', '==='}) + + def match_markers(self, extras_requested: Optional[Iterable[str]] = None) -> bool: + if not extras_requested: + # Provide an extra to safely evaluate the markers + # without matching any extra + extras_requested = ('',) + if self.markers is not None: + return any( + self.markers.evaluate({'extra': extra}) + for extra in extras_requested) + else: + return True + + @property + def has_hash_options(self) -> bool: + """Return whether any known-good hashes are specified as options. + + These activate --require-hashes mode; hashes specified as part of a + URL do not. + + """ + return bool(self.hash_options) + + def hashes(self, trust_internet: bool = True) -> Hashes: + """Return a hash-comparer that considers my option- and URL-based + hashes to be known-good. + + Hashes in URLs--ones embedded in the requirements file, not ones + downloaded from an index server--are almost peers with ones from + flags. They satisfy --require-hashes (whether it was implicitly or + explicitly activated) but do not activate it. md5 and sha224 are not + allowed in flags, which should nudge people toward good algos. We + always OR all hashes together, even ones from URLs. + + :param trust_internet: Whether to trust URL-based (#md5=...) hashes + downloaded from the internet, as by populate_link() + + """ + good_hashes = self.hash_options.copy() + link = self.link if trust_internet else self.original_link + if link and link.hash: + 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: + 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.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: + 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_distribution(self.req.name) + if not existing_dist: + return + + # pkg_resouces may contain a different copy of packaging.version from + # pip in if the downstream distributor does a poor job debundling pip. + # We avoid existing_dist.parsed_version and let SpecifierSet.contains + # parses the version instead. + existing_version = existing_dist.version + version_compatible = ( + existing_version is not None and + self.req.specifier.contains(existing_version, prereleases=True) + ) + if not version_compatible: + self.satisfied_by = None + if use_user_site: + if dist_in_usersite(existing_dist): + self.should_reinstall = True + elif (running_under_virtualenv() and + dist_in_site_packages(existing_dist)): + raise InstallationError( + "Will not install to the user site because it will " + "lack sys.path precedence to {} in {}".format( + existing_dist.project_name, 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 + + # Things valid for sdists + @property + def unpacked_source_directory(self) -> str: + 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 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: + 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 = Pep517HookCaller( + self.unpacked_source_directory, backend, backend_path=backend_path, + ) + + def _generate_metadata(self) -> str: + """Invokes metadata generator functions, with the required arguments. + """ + if not self.use_pep517: + assert self.unpacked_source_directory + + if not os.path.exists(self.setup_py_path): + raise InstallationError( + f'File "setup.py" not found for legacy project {self}.' + ) + + return 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=self.name or f"from {self.link}" + ) + + assert self.pep517_backend is not None + + return generate_metadata( + build_env=self.build_env, + backend=self.pep517_backend, + ) + + def prepare_metadata(self) -> None: + """Ensure that project metadata is available. + + Under PEP 517, call the backend hook to prepare the metadata. + Under legacy processing, call setup.py egg-info. + """ + assert self.source_dir + + with indent_log(): + self.metadata_directory = self._generate_metadata() + + # 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 = get_metadata(self.get_dist()) + + return self._metadata + + def get_dist(self) -> Distribution: + return _get_dist(self.metadata_directory) + + def assert_source_matches_version(self) -> None: + assert self.source_dir + version = self.metadata['version'] + if 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, + ) + + # 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) + + # 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_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 + + path = os.path.join(parentdir, path) + name = _clean_zip_name(path, rootdir) + return self.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( + 'The file {} exists. (i)gnore, (w)ipe, ' + '(b)ackup, (a)bort '.format( + display_path(archive_path)), + ('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, + install_options: List[str], + 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: + scheme = get_scheme( + self.name, + user=use_user_site, + home=home, + root=root, + isolated=self.isolated, + prefix=prefix, + ) + + global_options = global_options if global_options is not None else [] + if self.editable: + install_editable_legacy( + install_options, + global_options, + prefix=prefix, + home=home, + use_user_site=use_user_site, + name=self.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 + + if self.is_wheel: + assert self.local_file_path + direct_url = None + if self.original_link: + direct_url = direct_url_from_link( + self.original_link, + self.source_dir, + self.original_link_is_in_wheel_cache, + ) + install_wheel( + self.name, + self.local_file_path, + scheme=scheme, + req_description=str(self.req), + pycompile=pycompile, + warn_script_location=warn_script_location, + direct_url=direct_url, + requested=self.user_supplied, + ) + self.install_succeeded = True + return + + # TODO: Why don't we do this for editable installs? + + # Extend the list of global and install options passed on to + # the setup.py call with the ones from the requirements file. + # Options specified in requirements file override those + # specified on the command line, since the last option given + # to setup.py is the one that is used. + global_options = list(global_options) + self.global_options + install_options = list(install_options) + self.install_options + + try: + success = install_legacy( + install_options=install_options, + global_options=global_options, + root=root, + home=home, + prefix=prefix, + use_user_site=use_user_site, + pycompile=pycompile, + scheme=scheme, + setup_py_path=self.setup_py_path, + isolated=self.isolated, + req_name=self.name, + build_env=self.build_env, + unpacked_source_directory=self.unpacked_source_directory, + req_description=str(self.req), + ) + except LegacyInstallFailure as exc: + self.install_succeeded = False + six.reraise(*exc.parent) + except Exception: + self.install_succeeded = True + raise + + self.install_succeeded = success + + if success and self.legacy_install_reason == 8368: + deprecated( + reason=( + "{} was installed using the legacy 'setup.py install' " + "method, because a wheel could not be built for it.". + format(self.name) + ), + replacement="to fix the wheel build issue reported above", + gone_in=None, + issue=8368, + ) + + +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 diff --git a/Scripts/Lib/site-packages/pip/_internal/req/req_set.py b/Scripts/Lib/site-packages/pip/_internal/req/req_set.py new file mode 100644 index 0000000..39a2b01 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/req/req_set.py @@ -0,0 +1,190 @@ +import logging +from collections import OrderedDict +from typing import Dict, Iterable, List, Optional, Tuple + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.exceptions import InstallationError +from pip._internal.models.wheel import Wheel +from pip._internal.req.req_install import InstallRequirement +from pip._internal.utils import compatibility_tags + +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 add_requirement( + self, + 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 (self.check_supported_wheels and not wheel.supported(tags)): + raise InstallationError( + "{} is not a supported wheel on this platform.".format( + wheel.filename) + ) + + # 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: + self.add_unnamed_requirement(install_req) + return [install_req], None + + try: + existing_req: Optional[InstallRequirement] = self.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: + self.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( + "Could not satisfy constraints for '{}': " + "installation from path or url cannot be " + "constrained to a version".format(install_req.name) + ) + # 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 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()) diff --git a/Scripts/Lib/site-packages/pip/_internal/req/req_tracker.py b/Scripts/Lib/site-packages/pip/_internal/req/req_tracker.py new file mode 100644 index 0000000..27c6baf --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/req/req_tracker.py @@ -0,0 +1,130 @@ +import contextlib +import hashlib +import logging +import os +from types import TracebackType +from typing import Dict, Iterator, 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) -> Iterator[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_requirement_tracker() -> Iterator["RequirementTracker"]: + root = os.environ.get('PIP_REQ_TRACKER') + with contextlib.ExitStack() as ctx: + if root is None: + root = ctx.enter_context( + TempDirectory(kind='req-tracker') + ).path + ctx.enter_context(update_env_context_manager(PIP_REQ_TRACKER=root)) + logger.debug("Initialized build tracking at %s", root) + + with RequirementTracker(root) as tracker: + yield tracker + + +class RequirementTracker: + + def __init__(self, root: str) -> None: + self._root = root + self._entries: Set[InstallRequirement] = set() + logger.debug("Created build tracker: %s", self._root) + + def __enter__(self) -> "RequirementTracker": + 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, link: Link) -> str: + hashed = hashlib.sha224(link.url_without_fragment.encode()).hexdigest() + return os.path.join(self._root, hashed) + + def add(self, req: InstallRequirement) -> None: + """Add an InstallRequirement to build tracking. + """ + + assert req.link + # Get the file to write information about this requirement. + entry_path = self._entry_path(req.link) + + # 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 req not in self._entries + + # Start tracking this requirement. + with open(entry_path, 'w', encoding="utf-8") as fp: + fp.write(str(req)) + self._entries.add(req) + + logger.debug('Added %s to build tracker %r', req, self._root) + + def remove(self, req: InstallRequirement) -> None: + """Remove an InstallRequirement from build tracking. + """ + + assert req.link + # Delete the created file and the corresponding entries. + os.unlink(self._entry_path(req.link)) + self._entries.remove(req) + + logger.debug('Removed %s from build tracker %r', req, self._root) + + def cleanup(self) -> None: + for req in set(self._entries): + self.remove(req) + + logger.debug("Removed build tracker: %r", self._root) + + @contextlib.contextmanager + def track(self, req: InstallRequirement) -> Iterator[None]: + self.add(req) + yield + self.remove(req) diff --git a/Scripts/Lib/site-packages/pip/_internal/req/req_uninstall.py b/Scripts/Lib/site-packages/pip/_internal/req/req_uninstall.py new file mode 100644 index 0000000..0c51c84 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/req/req_uninstall.py @@ -0,0 +1,629 @@ +import csv +import functools +import os +import sys +import sysconfig +from importlib.util import cache_from_source +from typing import Any, Callable, Dict, Iterable, Iterator, List, Optional, Set, Tuple + +from pip._vendor import pkg_resources +from pip._vendor.pkg_resources import Distribution + +from pip._internal.exceptions import UninstallationError +from pip._internal.locations import get_bin_prefix, get_bin_user +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.logging import getLogger, indent_log +from pip._internal.utils.misc import ( + ask, + dist_in_usersite, + dist_is_local, + egg_link_path, + is_local, + normalize_path, + renames, + rmtree, +) +from pip._internal.utils.temp_dir import AdjacentTempDirectory, TempDirectory + +logger = getLogger(__name__) + + +def _script_names(dist: Distribution, script_name: str, is_gui: bool) -> List[str]: + """Create the fully qualified name of the files created by + {console,gui}_scripts for the given ``dist``. + Returns the list of file names + """ + if dist_in_usersite(dist): + bin_dir = get_bin_user() + else: + bin_dir = get_bin_prefix() + exe_name = os.path.join(bin_dir, script_name) + paths_to_remove = [exe_name] + if WINDOWS: + paths_to_remove.append(exe_name + '.exe') + paths_to_remove.append(exe_name + '.exe.manifest') + if is_gui: + paths_to_remove.append(exe_name + '-script.pyw') + else: + paths_to_remove.append(exe_name + '-script.py') + return paths_to_remove + + +def _unique(fn: Callable[..., Iterator[Any]]) -> Callable[..., Iterator[Any]]: + @functools.wraps(fn) + def unique(*args: Any, **kw: Any) -> Iterator[Any]: + 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: Distribution) -> Iterator[str]: + """ + 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/ + """ + try: + r = csv.reader(dist.get_metadata_lines('RECORD')) + except FileNotFoundError as missing_record_exception: + msg = 'Cannot uninstall {dist}, RECORD file not found.'.format(dist=dist) + try: + installer = next(dist.get_metadata_lines('INSTALLER')) + if not installer or installer == 'pip': + raise ValueError() + except (OSError, StopIteration, ValueError): + dep = '{}=={}'.format(dist.project_name, dist.version) + msg += (" You might be able to recover from this via: " + "'pip install --force-reinstall --no-deps {}'.".format(dep)) + else: + msg += ' Hint: The package was installed by {}.'.format(installer) + raise UninstallationError(msg) from missing_record_exception + for row in r: + path = os.path.join(dist.location, row[0]) + 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) + + # probably this one https://github.com/python/mypy/issues/390 + _normcased_files = set(map(os.path.normcase, files)) # type: ignore + + 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.items(): + 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: Distribution) -> None: + self.paths: Set[str] = set() + self._refuse: Set[str] = set() + self.pth: Dict[str, UninstallPthEntries] = {} + self.dist = dist + self._moved_paths = StashedUninstallPathSet() + + def _permitted(self, path: str) -> bool: + """ + Return True if the given path is one we are permitted to + remove/modify, False otherwise. + + """ + return is_local(path) + + 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(normalize_path(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 = normalize_path(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.project_name, + ) + return + + dist_name_version = ( + self.dist.project_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.project_name, + ) + return + logger.info('Rolling back uninstall of %s', self.dist.project_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: Distribution) -> "UninstallPathSet": + dist_path = normalize_path(dist.location) + if not dist_is_local(dist): + logger.info( + "Not uninstalling %s at %s, outside environment %s", + dist.key, + dist_path, + sys.prefix, + ) + return cls(dist) + + if dist_path 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.key, + dist_path, + ) + return cls(dist) + + paths_to_remove = cls(dist) + develop_egg_link = egg_link_path(dist) + develop_egg_link_egg_info = '{}.egg-info'.format( + pkg_resources.to_filename(dist.project_name)) + egg_info_exists = dist.egg_info and os.path.exists(dist.egg_info) + # Special case for distutils installed package + distutils_egg_info = getattr(dist._provider, 'path', None) + + # 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 (egg_info_exists and dist.egg_info.endswith('.egg-info') and + not dist.egg_info.endswith(develop_egg_link_egg_info)): + # if dist.egg_info.endswith(develop_egg_link_egg_info), we + # are in fact in the develop_egg_link case + paths_to_remove.add(dist.egg_info) + if dist.has_metadata('installed-files.txt'): + for installed_file in dist.get_metadata( + 'installed-files.txt').splitlines(): + path = os.path.normpath( + os.path.join(dist.egg_info, installed_file) + ) + paths_to_remove.add(path) + # FIXME: need a test for this elif block + # occurs with --single-version-externally-managed/--record outside + # of pip + elif dist.has_metadata('top_level.txt'): + if dist.has_metadata('namespace_packages.txt'): + namespaces = dist.get_metadata('namespace_packages.txt') + else: + namespaces = [] + for top_level_pkg in [ + p for p + in dist.get_metadata('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(path + '.py') + paths_to_remove.add(path + '.pyc') + paths_to_remove.add(path + '.pyo') + + elif distutils_egg_info: + 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.project_name, + ) + ) + + elif dist.location.endswith('.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 egg_info_exists and dist.egg_info.endswith('.dist-info'): + for path in uninstallation_paths(dist): + paths_to_remove.add(path) + + elif develop_egg_link: + # develop egg + with open(develop_egg_link) as fh: + link_pointer = os.path.normcase(fh.readline().strip()) + assert (link_pointer == dist.location), ( + 'Egg-link {} does not match installed location of {} ' + '(at {})'.format( + link_pointer, dist.project_name, 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, + ) + + # find distutils scripts= scripts + if dist.has_metadata('scripts') and dist.metadata_isdir('scripts'): + for script in dist.metadata_listdir('scripts'): + if dist_in_usersite(dist): + bin_dir = get_bin_user() + else: + bin_dir = get_bin_prefix() + paths_to_remove.add(os.path.join(bin_dir, script)) + if WINDOWS: + paths_to_remove.add(os.path.join(bin_dir, script) + '.bat') + + # find console_scripts + _scripts_to_remove = [] + console_scripts = dist.get_entry_map(group='console_scripts') + for name in console_scripts.keys(): + _scripts_to_remove.extend(_script_names(dist, name, False)) + # find gui_scripts + gui_scripts = dist.get_entry_map(group='gui_scripts') + for name in gui_scripts.keys(): + _scripts_to_remove.extend(_script_names(dist, name, True)) + + for s in _scripts_to_remove: + 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/Scripts/Lib/site-packages/pip/_internal/resolution/__init__.py b/Scripts/Lib/site-packages/pip/_internal/resolution/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/Scripts/Lib/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1c9db897adb8b2fd4cf3cca1840ee3d376282406 GIT binary patch literal 217 zcmd1j<>g`kf;}gmW`O9&AOaaM0yz#qT+9L_QW%06G#UL?G8BP?5yY>WD61I1)QXbi zocz+17z2}dpUkA9#G=ZW_>lbkoZ=Y2((Ke2r_B6}#Hz%ilo;Q{;*!)Ng^<+Tf}F&X z)R^GpqRfJl;uxT=nBvTmRNaEaKdt}-d6RznSTAMw^&%{FpSS%zMZ@ljD4kMK0Iu8FwHvz z#S~9j#zUToP;lx+>SccD*R_{6vLFmN0}f5_#{&G3SZ87DEmOW~Tr<_U5@A~fN37TU zj^ATF;aYofn#O|^oPUrQ+v9F|KQ|T^4`EUz8ZyXfb#bme0z0JF=Oe&o2h(gL01LTd zp->z=@Yhi$G?WLyD5!<_VN(SV;7a{;qEgZG7xEw(=vZGw^0+8c6ZNZ8 zh<20WB)*Kbir&Y@f_`!gxIt_oIvVPvv?jv0B9mBnR>s5Acnl^glX6QYIkNLO-O_a8 z$|gm=H9!M4%L~`6*Uo@0$t~Uw7I>Gd^X_c^CJ=KX4GxA_v!HtBfu?Wh2LxS&p3sX_ zuMp5Fr?7;TTN{H#S@kW5NslbFf+=Ac371d*k#Ik|-)p;;lzE(il&&LXR;Vhax+~?R ziqq*6O>@#dZR-!vP2HgW5y2|KUuktk`ZP_mjcGOzT1@bOi=Tp0bnZlhsz5B>)x195 zr@&s6Nj}zON4;P87@gnz<2;%;p`4w$mJ_bu&q0rCjm|SxyN&< RequirementSet: + raise NotImplementedError() + + def get_installation_order( + self, req_set: RequirementSet + ) -> List[InstallRequirement]: + raise NotImplementedError() diff --git a/Scripts/Lib/site-packages/pip/_internal/resolution/legacy/__init__.py b/Scripts/Lib/site-packages/pip/_internal/resolution/legacy/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/Scripts/Lib/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..cae6d4e438597847bbd6344a3e51def1d18b1e17 GIT binary patch literal 224 zcmYk0F$%&!5JfkVLIm$%YoW2Q5)rZ1G)W}`%a{zwl1+Bm-GH(6G~U4jcm`YX5>{?1 z{qWx~Gk;*zcsycW_s6^J>#N7V0^e-CZRnA+giV9^#!Nr{;d4E%Af~g+q-t|mEcsrX z44Mvjs+6=4w-v!os1h$|ayX!MWF{%qTB0LJG9$FJ;IF_6M>CCCg#}sALPuOQKHZ>< k3|S>xCsY$jDlqFJ?w7)GKG)rIxUN;+O4{_#*?~vMzK-fZ)Bpeg literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6266e3d42175064acf5552d4dabe46e924ee9acc GIT binary patch literal 12124 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 literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/resolution/legacy/resolver.py b/Scripts/Lib/site-packages/pip/_internal/resolution/legacy/resolver.py new file mode 100644 index 0000000..4df8f7e --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/resolution/legacy/resolver.py @@ -0,0 +1,453 @@ +"""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.pkg_resources import Distribution + +from pip._internal.cache import WheelCache +from pip._internal.exceptions import ( + BestVersionAlreadyInstalled, + DistributionNotFound, + HashError, + HashErrors, + UnsupportedPythonVersion, +) +from pip._internal.index.package_finder import PackageFinder +from pip._internal.models.link import Link +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.compatibility_tags import get_supported +from pip._internal.utils.logging import indent_log +from pip._internal.utils.misc import dist_in_usersite, normalize_version_info +from pip._internal.utils.packaging import check_requires_python, get_requires_python + +logger = logging.getLogger(__name__) + +DiscoveredDependencies = DefaultDict[str, List[InstallRequirement]] + + +def _check_dist_requires_python( + dist: Distribution, + 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. + """ + requires_python = get_requires_python(dist) + 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.project_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.project_name, + version, + requires_python, + ) + return + + raise UnsupportedPythonVersion( + "Package {!r} requires a different Python: {} not in {!r}".format( + dist.project_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) + requirement_set.add_requirement(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 _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 dist_in_usersite(req.satisfied_by): + 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 " + "yanked version: {candidate}\n" + "Reason for being yanked: {reason}" + ).format(candidate=best_candidate, reason=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.original_link_is_in_wheel_cache = True + req.link = cache_entry.link + + def _get_dist_for(self, req: InstallRequirement) -> Distribution: + """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: Distribution, extras_requested: Iterable[str]) -> None: + 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 = requirement_set.add_requirement( + 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 + requirement_set.add_requirement(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.extras) + ) + for missing in missing_requested: + logger.warning("%s does not provide the extra '%s'", dist, missing) + + available_requested = sorted( + set(dist.extras) & set(req_to_install.extras) + ) + for subreq in dist.requires(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/Scripts/Lib/site-packages/pip/_internal/resolution/resolvelib/__init__.py b/Scripts/Lib/site-packages/pip/_internal/resolution/resolvelib/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/Scripts/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..16581d7a3b3685c91f283b1248589cce88181a0b GIT binary patch literal 228 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 N@$AH&iHkc|{vSmi)jR+I literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b2ce801f1c024f4e7e93ca14fa9133e67627f609 GIT binary patch literal 18581 zcmbt+X^b4#c3xF=b@ehmE6EuSHx-BC(h@lowQEFCl(8VAz)$FPvyV=z} zyj4ST+C2`RhKWWo_iqY3=AZS9Rt}nCqWz|FoLWOkRO%!kAuJw;sizvzxOPO zWWMiIRd>&Dr1uaHQMYg1<=lJEJ@;()6kCIXc@2NR`8)sP@?XEAY5$!s{eLE2j^pvS z8k**4j^5Bp(XU?8<=rS5_%#|S&n%f7_yPic?$VCg|`Z)vZ$ue49<^Ns!9 zfzkoV4>XG2L#2njhf5F3d!cdAJ5)L(`N77tcer#|@OEF^O!6a* z$Gs;?Pk2w3o|N~|##7$YrKcr7)_BI7Da}ZJQ{!3hXz8frH#eU1j+Krfzr`7EJntPZ z9rs=+z2LoAdJ${iEael86W+zloSn;h>AP;)J>-6O&Y09n@1pfC=K-{Sz#TyA65efRH{N$I z8>ROg{hU^u`hqkwTO0}p&%b;2RQbfqr%t?jX7;7fJXxy-VeYhQwcX}9Hwd$50#{Wo zHrzNDv{Y!mR`Y`}^Lk}|zSg`H=4UIO>zrShXQMafgIcRuX@uEx?$rgiS#`q{;iRMb z%=yK6_w5Q`R4aZ^)Wfke&1;oL&3O~8Ys&T9CQAp_z822SyVcrU%~b$ZG{T|Tmh#Z6 z?K&Jg9IaNGt!Aw%Mdc=n0Aur;uHR}ba5`ta`Ihh3unKg}pQuzXyQi9gS`72=Tz1`t z6cnv+^GU2r)h&O<#Q<<3_Wfa>9{ zTC}pVa<7)>RLd(j(6L-;I%RCdRSb*Wk+t{r4|f84)hp#%v~OjuF;JCSGbjhxTY%km zf2Xsmb*;vgU}>Cp7ZoV5Uat6;T_3rvYN6Q#MU{beSCz4(V4>2$+P=_1twl4;oxt2` zz^xmObh8N_^C!A9QKM|12`67@D7WG)#uIX#Zl`dN2<^R&o^omd$-GxIeCh_)<@X8( ziPqlhM2r+a+Rk3ZXvHsI1oUz>nJq9mEX34p*EuEr(x)d0y^>_yP3wi;Ekfd0P}UXJ7OcOh{#ii?u*mgc5h z)6tJ=U@@j+90ltK12MxvpnDEe4Ng=Rd^a3Wy#pLtq_Ac%i!+ri%Xuu9!+g2ywVZ{9 zi+rJ6zKX5oNiCPvGZ-%%E`#uztw4^MkJ5uE{ajNg@gvEXf1xyUVb;A7R2!`Y=fWe8 zmtU)0R28*&p?tp8YWNps7p}M$UaYk)SK1ZjTzDM}##Q!t*PF-LbuXN&s@i?Q_>@~MhyLfo6QU&WFY!3ik14tJO~) zepu+ky&n$rPNW|WVQ&=A_ks&-IJ3pPI*ysB7nr=rB*TQ~MV(+mA_!AB(P~<9Kud26 zqTDIAdkM)oJbo5QUMuJ$`et29@58}3S{!H7zYLWm!9h-U&N+sga!6e!R-Wd%CpE`% zvkvg#Wbx$i6Tdt0tLurH+OCVUz;xbp(~KO#6LUXxiI z!MrW!Mdt)+AC1Se+$|_Ios-Tfls@L1c6T^03AD#i`m%EdrB67oxKqxnfP__Ij!y#0 zYtHMadCHk}-f+&kPXkYT1t$gf8PtBqc@woWq7J{} z%PciJDWvI68mZN>kY+krq}iH=G$(0Z(g8^ek`8t<{?TA)SzF3Gx?|kZI{EsrlXA>Y z^pl#v9dU5@rLE+O>Dekpbn=IDE>jc+u^BIH`o6WKcl0`@`-{d^<6OklA&`b3CL`r7 z(%g*Dn0_QQ9qM9T=C8{l1 z7F0t2*mSSkX$+W`;&Q9mSS*f)nR2w@>J5%iDEDoxdYnb0@%Hq@dAPm2o+Kjm$%mR6 z4v`r82x6qXo+2j7-$VfAiwm`eQ=Y5T8Vis^;g(1v>naj4$xW8sSY7E&Dz4g=5UT6k zS2t0H^n^;YzCzht=MGS>>gz2V5G%ueII^zBFAjvJ?>6StEIJGF)LG`f!{kjS+6s0h)9mC(XJfW#_Tx~1pw#Q%)w*GQRnO;hTO!rgqjJ+gk!*N`De zl8>Ae3hRzm2i<)?TKWR^&4qYU#_xM^2dYO zJ)FnzLW=j(JT3vL-&od{jE=F2V_7%r=~e5tc3W3lSkKx|VX%K@ETw`>C$+49s27dd z_QQ6~x1ku>6}zi8+d`#wt7!+9QA-5}bMvN)*)Uu4BN|py7(UF-)u2JsNXm74tM^$m z7*rH>@tFB!nGY(Le6zIng|B0faw< z#L`Xd=@`<2p4HnAC0PCOAVQP+bZAB7TTKC2@|Q-2Dv0dyX=DN*5Mn|X zrygZZIzkV*kZQ9&C&Hk7#a(1Jwo=w(Ydqo`>rde)0N{@yDWnYG#xx6e^8D3}JMCRv zED6h5-&OIfpQK_`2@E2usb7cS@edQV9c?uWL>jlj+l%I`;>iQIE%aNhc+bp5lD3#r zm(W6emq`an_#pJ~X|RGw51;m8GkSXd$|ZZ|Xu{V?07%fg}#v*6DmDQ2Qg zAxdOZ)J^8NM`+7wP&fAGE3lh45H6F^=5#kNV(D!8%Yfihi#4nf>FW9RkkBnQ z1jvQ~@d;#m-RS5?wRg1UZfvL-r00x9c&e5xU2AU&tksNz`i^xwrEAmyD1zDgUHI{q zte>$sN|d|K?G$JrkW6z%M$KZ>Hb%|iZSAPp`$k>-GmHvo92MlW+{p+z zQ|dz?Nv$yX7)g5+J6eUI2Zw>Z*Pq5y98eBw!fYZP)f`(NVX}?McGg;r)}>3X3NzO$ zirxn0vg$D=LPgmg=j)@Q?zo}u3Q4U$+Z&S)1;pP3X#X`N`2jO!8F}4U^Kay;h zR<1ez8Y0bM`s62Mz5Z_@>F7SZ0+d<~?2M1C6$^51_!V#o%B?`>JEh&nsUWqieT;S| zwfA=|K?y~>JxRNjG~esy>)OZZ6_98>?U+vb6CLmR3K_Ijx0dxc(EsW-2b?I#(ysYP z`^fkx^^y5e`XdXPe8$P%DlBDCp9^4VNxj}zpL6o4&jtffeKX5AHY>(5ZR&y9Xb;J# z+QkzI)AsE-`u!+eX$jo0y#+t8FS_>GQ)lfb9(kH7V1j-ytGzXe>^@OQHmy>Qf5 zv=!h8oLCPm3c3{?jN(YN6Z8|bpM1#;pcS}wmknV(Dk@n}bjvgr55=~L>)0_znw~w6 zWetEVl-qD2Y<(QKwTu+(^&%FcC`lrQorR|%falMb1F1e@#ZM!FyKAUBLd0u-hQ(HN zo_>+-_ zvZ=R^ciFONwz8`|)z|Nt2j4WM}|soOA; zus^bUFrGm9%h;(U15y>gI0rkIQeboYI;px<&!~M@cLv#d4*Q#D33qtKKyCp0Y(e58 z*D>dex1q9J-AQH*bE}vN3-CJE;Sdt5NeLEz9@AQ*0h0{*_l6+3E_#I~eCy5i94~kDlG}7|%&TL#-qC!j9>&dat^L+d ziuc&yz!~dp3pRbO)weg@F`#mBavQPaVj zk)=Lmf0O+aQs;*J7*gN%%~%*FS|0)k<0gnaA@1~8x{xa1jYOUhy{TJY4rR?hX}|bq zM}DyorXV;J4R@J5a3c3XJ~&;M&Z3Q=;v$|}MU_T9#pFpO(C*}Lf1d@tKEJ?Mo_|mj zhoEMq{st4CeQ+2aEG1a`MlK-?V!XWJnf^U=_xB+&v!kc@1%QVFkFn92M(gFuHO`%Ghv{zLcotFd48g`t*sIng zSHn*{e0SmfqwVj);yk+Ip>K@Y_E58xfV~W{29~**Ql;Ct+-S9~EX=DXuzPC^h`+@G zp~TOT3kRZh(lOM_VNS3|FzY$uo`@=w8TW?rBV&RcaUC5Qd&bRdfrhZ5XHz6j^GEH6 z*B;()g%jp+q1FuKRy54_eEwDP;pC5pl4^($=xJm?phjH-iSB@4(N;l@w{<4YiyU9v_h!aHqfxY+Zt3wvt+bfd$d*=o$xMXR;UjRpa&c@ ztI&K_^PK_cJNj)SC?Geuj2!#Dqd9QdnA$Q-*Jk#J=AXHaQvQ1vPbZ`5?coSYeP{(1 zLkFfV{QvM&M7>439$u^^eIo6eHU{)Ej7q)jwn6>uWAI=9L(FERlUdQ~qj<(T(8F%0 z&uOqXbXpv^ZGg3LE8DTy0~|WrXFc0c)q`nUHM}wb(^)G4^1?m-sbmo+itft69WhlT#s>L6usaJP)k3? zcCTP*D=FCg#)`fQl)^n}1TeYga2@REx3W-nf#OJ|MH?;FA?fr$;Yl3@<@SBrrw%R6FUJ?xa9>|sjMYy?HVj|wKfzCg7wQ1&SCHK1A>k;-&8=Gd@#HXk zGddELb-Jrq(zQUVMg21-t4Oew)Ox`Ro+)Xs^U1I1M%Zq16fy#bMxP`Pt%Z4pOQ^pipdkJtZB%%dNVtE93i0@=UuUkXszImj@iTG` z^^cecLa4=sn>LV6O4L0Onuza#eEc=G9D~jQ9b0ap;}D-{7yktziaIyEZo__x$UKi~ zD@SJs#bjO{<7UCkiry=t^R9Jo$6a$U(uKwN)6F~CdxeaZGVY9LOfeD@E!q5PB#XPE zyM6wA+6%o?6HRx7dWPJV$JZrmR6f!g)xHyWe5$XcW+-mDKN9GxhC?Sm{K|Ec-Zt^y z>GiZf5gF^^)ykkYEo@S&!{=2`)3a93!)Gmh)ifLxfU&GMdE%fTLIOjb1WU!OJ8S&o za19jLb5et=WiV+^mIMYi)B*G3X`F38d4^Yyk%Mf;_A2TMtQ~v*UVp#sw3_<^6b04G z_99%Xc3%jQ`ukW{aX1{5YPdzEpZZypLT`tC7Fh+Eq(X$;3~JX)N1-tCJ@Lz_X9?f| z@niSta*=A(-G$`lfuy7U9g}~<gna+4#K!aN8z9UpL}Ey&l)vT@h#D8o0-=%rh)kee!WC!@ zVhm0I?6Nok-h*)<4)waBPQuki!+@IBcIaSfF$y3uZ)?7NHQzDomcJjy0(xS{GklNC z2xxOzIDnqzZ^ud_K%xU@T1q>rUCjqMh*k48?l@S-63`7?3640G;Aw?_88mfP;1^W6 zlc~c5sSkqpm*MF}jwMH_F%GQ`cQT||w2j>R?X4%e;Z|J_8J*mbQVbT#y(^ALNJyA- zn+qP|2*HVjgV01%lT7|SlNBaHCuf+OMj|$+C&*R5%XeP0D+wHH)G){^Y$$x`Um;hF zowom3dLp7X9CU$a6x zq?bIRUd9YlT(;I-FnmxHDGBbU?ybN#LRM4^*HBL4uMx^28AXah;-Asg(VKaTCZuety+4tN8&h-l)CoE$UOYF_MAw)RBxW)`nbuZhz-GYsXs;$_1egv8 zBXJ{rfHtyi$wisSmH*08Inr{t*B$9?8&8qW>p$R%IDvwN>z1i+UlTjrhtw20%j|a{ zgJYoiV8cTG&|agvS(M^3Fj+%NRXN*dn3RzuNSB4In>pAh0z_h(NuoKDcX|!}i1Vi{ zHUw6L6&%=T1sio-BYL=oE?apBFI)#b3w{nc+#V}v&=djisLR!6U@lX9FkUZJ`6bNZ zH5k11!o1i=G-qIBOFp_yt}>jZ&r~}zXMgYkGz&_CgAaHseO@iN2V+r! zUBGDpe+YaLmltSCs@8RT4gn!OCkA2LUd
    L+CR$0JkCpB!#DSr@b?w+6{ZHIdVL! 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 literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f866ab5bb7b674cf08d6a5747ee4c244ffe034f0 GIT binary patch literal 6828 zcma)B&2JmW72hu|S4)bLY+1IPG}*X89k!O7w&|B)J0FhI2x%18Qd)#jx?1fFsg;(y z^z70O1rlhH6z!!2+P}a)6~6b_LxG|||A3zMTJ(@xPeq%wNq=v4NiJz8=nDHdJ0EY} zym=qL8O4i>wu0vmfBF02!)FxbZ}d@q41BzVH~9kyQ?NlFveTrn}Z!L)#i(;)`uux4|M1yvw5$!_VKo`NOxjZr|K-Z@sho`di!X)~h$Sceh^Kx_KL| z)z`o{76TORTY|T_pvm#IR^qZ1wPVrsQpn@e(#lUAA1~oe8jy-Bv{fyQsV$vp++aGd zaFbU_fz03*!xuAU-GZ#EGOJx@3(Wq|XhD%saXnWzt8%k#usT~rOM^8qZVBo)i`HdX zUgnGIisZABf3s7?ca@!P+iaDc!RQq^x(X=_w#Lq)=9H{CSMaD8W7g+*R{3ek-(u(4 z6BxD1p5%4*CB6vRthULXVo#&?Oi{DOiI2e?_6%yzG7E-qA*Leh&@d`(ons zik)O>1kzt;;%QKa==&~wt*3E)Lu z7+x-f$mhX+f6Mq z;LV4b9z^Yjig*%@l6?G&)|I_&{(kC*ai8ry|APC2;6Qj{u;=c^ahU9F_mBDBD?xnd zop^%nz3E{SgtN>@aE5qaTdY2tkfCwWm? z`{l7yZ1x73bv5+52h6+v5=pOtn99jlO3t+Df?bfh?&j4nh7~8*QOJiht;}-AJ63ng zTej*xZqHWSM>cKAo!d3+d>Fz*Aajz{7;k(1Fl7|Z7v1A1z88^$q=!k<%#4JGZE>2E zx=Q2>ku@S`iA=ODzJyPRS}f$7_(~|6nwF{Nf2-=r>f_d&og)t@LcALb7tWj~0-sbh zeyB_qAdQMFV5lC!9KdXK!laB0fcv$h>GsHc=Y12d|(p--J1V#vL-dCUfiXg5-7&Z&25jSCtRcQ6*J| zm0v4++Q=MLna&KP;|lr4uuAQ+k2OTz>8qoKRAp7!W>Gyx+o?9R@LM~n{!%&8iR-BT zV0g;R2|Qw=t{_Yxq^$luPQ~yHEjg z3G4gZ@th7j~;3bG`afHY|PU=NEp#(r-H;nHU0Xz>#&Rs9; zb0@OCtHU z;Yaa3Kpl*UoLHdYN}lIPu&+9~SvW!4@uC3*cFJMW!^-QU37rcJF5ssZE;)R&v+49= z1Q<*bW8_3a$KmfI%KJg;ynXuzc|6Z2+G;z{mls|tRym%stVNmxuq@&XlLVW5lTvL8 zlr_zzjuZC)=YXM{{rzj#uI=w*QL;GBe)H2ITKRp7mypvz5*P9N0m3oIdMJckKs6hq zfSEOy7KH$ftU_xg^-!!TWzf_x+#BLQkbq&5q07wXl?Z(S zR&2Bd=ND#VpHrWMgdB3D511$~t!u2yOHR`F4;?RoCa+I)diC>Env3d%y+iMSr-W)? zdz99t?IB4;{=j+ekcYj*Vf>)q>39c07^H*dbTK}K%JD&zE^?p+L7`b{f>D@gW%Kw zf?H#?H+4a2C|ewFwr~NjvW3a#{0i)=VUVPL-0fZ8$H1fkVk(-Zsm6ab-T2h{>}2!* zTFiva%xWlu(VNhF9zd)yUqaAD0-3RXah-5s`u3gI&TFkD+y~oYnA?EqqPbo7~kByFG zPcDt8UMY+Yrq)-*GLi^j;SthQq%yT6hPF+d<%9Kq1qJankYY>4w@}VZ93>E#AF6rM zm-(Jhh*V01LPBSB?WcxfYHOd_pUsFjvl)bJq-H9lnW-4k7iQF;vd3vb&}6w5PQgay z^N$xZ8|K#Ur35ycwM;(=dYO(qkQoQ45?@BQ%)(LTrVz0ZWDw#Bs?)ncB$u4&a2G*V z*j&lixIvvZiCiY~JV;i}T{FoRCg>!qkgcF*>DElJbnOr zA(m!~xmF7Vm^A=%I1(VsEAsx}p18e1dKgEU&3NbyTuQ0AYF;GCBpPhYdizZ@B-cSs zt=EAG>zetgWu8(kRnrU57a$c2EG1SFVbWoA~o|66GBs)r~-Pa%B zx2bJ^tiIbcgad}z0+f{ogrfz4-K>Jc1LAO{v|D7hSsfb@xj23J$JkM_-Z?YMmRuQc zC#T}yqK^d7Hq^3QZGc+Z$rI(J&yC3H19(&<|7~Ih|F0Re?gxZRwig9GJ|w7^NU` zv(tDJa$)jzrXFhopmitz(($!2q_TP!+GPeY^!|#WF9Wd^Cz-@S3IxE*54RG$6-WFR zr(lbK$u8kK|B(B~IXo-IPfp*LBpSI_I_?*IoO?*lv&q{5SSTH|OLqc5dW2J;-7bNf zFo-w+K>_~=#V}l2urd&EobjCZxRV^l{g92|MZ1n3Ut)^@5P@ z)=FrUmigRv41guY13wl=7jf6Yp&rloc_Kk035ctULIL|uJM=o2oCEHAfLA4mg6orL zBFgxZf`ICUG~P&HJV|@75l7+Rg45+*L~4anN}OkSkrtyko$9KDNJwz_2ktS%?n#4K zZUpTO5}UKvaEccfU?DOnimy^hhLK53&(65GMCt@kh6^Y(KI8t5OpBttT{GYzHbTV7 zcgjA}4kG3PkHRRD>EZgZyx_Gmytcp&C%uU$W-B>hNpQ54_bHr-chRR=$#iH;P-GEL z)1W0e+awAn;vLzo6by*B94y|Wl3d<2Ue?RfK0t?r4v=f6xkAy;qDZNlpPZcgyam!> zb#iDDTNvw;dygL~(|ZH2R2o6Qq4ogxC}YsK6eMoG>$pmC4+hA$7tvezM2O*B*b)qN zf5a;f)V4Yspyrs(1ZNV2;*k`F^gyAuu8g$eM2xUZqR}Z7Apy5RWk5?&g$D27O(^b2 zTqu#0#1%kOztJQnq}u^0bAh773*(A>B@!=OLEWG6%0--0PM$9-n8I@Tx^QYmQ?v-? z&tN=aF7AY8dXE)Iy2}>t1?i!@Jfj3Ur^;-3ex^T>NVH5##ofu1UnErX99_N86^QF* zw(E9ru!g6&S>1K%SXi`FU6;ka>xw0C6|@Cnp9tkHX~%SlmWt=-lddVmB9R&qLU4kv zT?Azgu}g%^TabX_fCwW(IYo4cNaLOosp(T_AnwUFh@~K*+kn@f+Pd~%&Cvd%RkTlR zQ~Ow}+W$Vkr0L_f2HF~E(@gv0Q*UZZRNufDsy8e4Cu>ii*9GxzJ|UjPj|5YhnGWc` z5Q3~FU#yf>$}d+UWus0fB&k5Frr=2@DF^FdC`V?kdl8(%scm)i}&x zRzYF~;saQaW&VK=;2V02SY!<=R-D^C(;jS-v@~~aRo$vO_fe-xuB@~ze82tv=Qx4( z2Q`*I4~-A-(-{P}xE))GJ+N)ko!Cj-fm`Tq>?O59EvXOcMca!TNpsMIUgPz+m9z)# zq%-K)mT*P)o;_Ik*y0V|{NCbC(Y)slR?%+pHrnl?eTsL!w0hl#*wyOUd54R=U=kZ1 zg$B*mNSIIMXe3n6$=z$|H1FIf4Q`YM-46pTZi-AQBh*8i7IE^{^&sUD4~)n=H^tYJ zNQp$GCZs)_H)?f`2m?|czui#_wY z5@w>(osc$Pe5BLr*YVR&Lm120_v{19cd#PXw zFf2hBqAV6{Unm{PR5Q89zRiO0PB0RF8YJR7W+dYRo+nW%*xhjyju+OnSSXV$Fwrj7 zxEq-3xKezxNib0HHgh0hIMJAXT2PvEANf7th zS8~FVXf!q~6#`30mMOU(aRDm8#DUZGzRtcN?3J7V}@B*(!lP<;4Vpedra zM3TiQ{o$9PiZY{zm^IXq5wFa**F!k9?E{}sX%KH0nVA?=SgG!dINF6;o+)^rH+@(~ z#`noVO+3=J9nYybweH`ujV}%lLw{kIw~&_d2!<4n#YbnNj$d&uZbCV*Zd(WTZM$Zj z2j{$Hxz>AC-+Ajh=fHu5vu~?&bW%t^aM14>_g9ZQ2kz|}&F1cp_I-!=s5nhUN@mSZ zc0T(2D!Zh?Bi-d=)2pjf*gE&<45>9z>v2Icxfi8-GOtsC1O};G$DrCIi&`jAlzC&G zxgtZQ*r4HVl|>ZA3+T~Zhz+~zv~ACBJ5SoPCzb=XZ2rJe9T@NQ>J(`L<@>fF*5KH&@p;-BqORA@+7JE)v$S*=a3UqY=w4C!MO#Y%>*X-HFN5U=b^BU$G5mF2nAL$Fw z>M|M>MOJ~tjer@8Mhejd+P2w$JXkvd&JzQFr1D=K!~o?SlCo8xl|j(mKG&sVsY`L7BzPE|#?M}QVw zca0o)M8207eLR?r3QQKIDIM!Y)YPjdM5-~jx>136`o!SO&D3+S>zz`J%%3N50U~es zK9`~It4q{Hgrn&3sp!0@mq~1qXpty5ew(y{=wBo4Fnxtqu>D00keR07H7&Ys*4<5a z@l!Ou(_70sp^Re@(oL_+M@oaPJ$SCD2J^a^0{p1NLRC1R2UFh%hjOX<^A{W*2T)7? z)ru~V+}p(?yo6f-XXq^XkuIWQ|C4~{&G*VH?tOYLYofQV)wS1fX|6dTW=J}74F-N=jQSFf`MgWo69bq4R}dHR@oIoEbJw0*a^XGB8?n%+EZodanFUS zHi5=SQB0&rn?zYDQXbGM5GfD*hx~y2hJKCmz_XQ?eF*tZ^-Oza+->}r5mj_u=A zobQ}+Z+g0<;rEY!{`>BK4r$uIs4@Dp(71vkpP*tI(|xU@H+7x94d3XPO|xS)E!8&t zTqobmd(&sI2-Q!|~2X!N=HhQAt`d-Lc!|m{Bw&iwv zU9Y9OoG!YsXzqGf2Cnbl;`cT^!8^PgywqtwD=J=dyUb&5z@wSu^G2_?vDuHxBlDy3 zIuQ!gmMvmt^p^hL59BIVtx7N8=lgDJ!@a}hYTxU>=XhPr?z;Yag3F%28F;;J{CS`I-WooW z3zp0Mhf%@73NLURI>HVesHBH)rU+ztII%@~G5pc@PzsW^2(&G&t#9iqnwUWo`e({O z#OK$=9J-Vc;%WiSXv%Rg!*Ql*Y!Ov>ES7TtlQ&6wU+^xFowfNK50zy+I) z@Yti4?@Fmu^YPN79tGp25lBvPrK!qj6l{UoaJNE%IAyNA}87SV~H>Ca(HV^nJc4}Whq7lu;E?Bwb`do71ai)im-o-LPtU)vB6{rkc~j@YwJF0c_^@4B)2*u$gBI z0Gn9_Hix2x1fECH#scWx6XXK3QARFdcncnmX`7lXehzQ9t^Y<>xT6OKM$B!(Ad4`l zZZyKTZr}B!jeoA~d)hPAj&yJJ}Rz@UdX$W2T>mQBwPvS9Dme} z*mr*iER5Whx+c;9>X&&`bMSXHJv^Rv$^$?Mfo2RLZDSWi%vizBV=yvFP$|Awsow?6 zQ0}e*5X)fUH8Ao9w%CP{z=W+??cBD$3ns_M!36vaL#7x`1Z@$ONBZk|pPtHhSRJ(d-CAktf2?imkChEVQLGI^EU?^)MmC9d9_D<~?!xr0mmMgB32{+ae%``Wli5+IL>7(NHh_WB5CjO7cF zE+@=1DqZqD8MJzx{^cLhcC`0`7JiT_gh_y0zU23iG04mK81C||eoj!F5@~`gKQzwS zFJIvo=4^z{Hgtqw0c;_-4kFX%-NNv_~XzJlnfq8IcN zM)>xDI31H8u}9}rS4SGclo2FQUe{wiPE*`7n0^x_#_oD5@ig#O0n!+PllCSG)Ifur zIGNstA?L^#sr?j*BlSJizCk7fw~mmnZOAt;4)Ywg+va0q%V=9zk)xbR1-SV}`2O`l z*biHkoBTuj+Aw<|<0Ze38?^(%gAu=Ehn9UGJr}{#?H77f?h7us&t1tSeAX#CePZWP zQ4WD4Dztjt!1cNSi2GbfNGDi3V9c!RCc3~+(;B+R;!3YXuO3o_9LUX zf+GKnYB%L=A}`?N`DH zF-&$XB)UeD=q?a7K8tAN5L-kvGDrTYemFWhaKZBC!{BbOJK~VTiyw`t3IPn4co*=x zckJP+^YJpf!vhyD1n#mR(~WX?258+Kgfpc5!ykPo_DErLoHTDi^Bp+F-Ed!RQ`(KC zhw4TB;xnqq>BUtNgwPErn91u%Vowd3+;g-8#v!oF*dF0yDV&-b92QPPv61F9C9Em{`oAq33?2&l_3KZHXI~1l<_FAB@V_#ur z#2(~)uc3@(j|4r!rYcQ*G|)%cF;EqZ@SSV{?i(*;lRkxwQ%Tc6K!ZO<6`sf@yeB>w z1sNqZ3Q&^Z6)!<5J4!q5X^?t=5+7F&-_52v3CMe3j=}_zwxolQ;@ zuRQ=rz#<^BJd9W4^I#0mgv?aXXEnlw2GDI_nn~^*pAEWC(h%xMyC+nKOG%g&2K*We zloMIh=d7@veY8njnxDWWde~yU7G8wtcrntXB+Causr>=!Q*8fB;+pQO0GnMjC^=S% zvWY|)N%LY((5x29*pGyM1x5Y|)n15V762p1@&Jq+04onbnPLUBrUtDdE1^~3MYJu9 zmRV)+GD|%)f0|VXFSBubhSjj5f>C;zon>=qRoOg}Wm6@~3+xbjW|;+_yBHn$vO9Rd zaMyf3xC?rm4$poxhEBmWCed%Ntiw8s*GF8NW`ZoiVsoG1MUH880`E=yExJ8uGERmq*k2I*D#@>gG{gFmo z$0qbhx;UQKlAjv|6B0!Rm{3@k$|Hfv*EIM!s&GG1y#_;eD3~Hq4d380#bRUPUr>}! z%_D2b6wJX85IruW&o~)s&Xf?fJ95HHU L?PTr!g{A)ib!JI5 literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d1f813df874bceda674ed8f95dc098db94c3b8b1 GIT binary patch literal 7828 zcma)BTaOz@cJ3Rm!{JbKkvx(mwPe{6tr^;uz203z5n@ZSR<<%LNb(wPkJIj9)eL*4 zn@v?WXEby(>v$AM4xj{!Ap5jHB;?6J{y>lbdChwQ1gL!s@~{ti+hjMpww&)&H#w9n zAR*Dks_MF&syg+Z?;J+c(^UI#r$en88$7b80GY1=C^OsfRPpj4BsU zZa4>2z8K7gbIzQ~mxB3l!C6rGa&Ry_m|agM0`RPcOw)H$m1 zwcuEI+&LcFj;+em!HMvsb5iB&!3*Ij=T!Kj^P(!x1TTfBozp7c2+o8}r-}RlHXFPg zo^{TKOU{xi&jrh2%W3Hvx5Qs#P4mGk;j7MTD8I&+_*s5#-CWe1SGoT1b^gX9-TB@X zjV-W)cQtm9AKx>b20O%_V~hMvc9<7zCb&Ke~MJ{i`ciq;<(}C(^p+ z$B8WexR>}**9)Y1lP9uptKSQ_wAx;re5K0+ZLb@3{k9kQ1MYUckT(rkd&i6U4c?1H z!iAi_!Q&|C(;!#FUKGdvTELsSEUWr$E|8zTFyi-59Tt8jT7hJ>xyB$HRh9n(<@T6YY+_&E0iB;J?DX z&>%(SqSs|ULn}EoAtHK|-u2o^BzBQ4Vwd_s(x#J|{2a~;@z0Ur8r>|%=-{^ft?rl= zgDo7GR^UZmf?gDPnU#2jmGM;YRPjvVsqreCMw=;KV|CIJXx71d+PcnWSmW-r zGtCb0I-kJ^vuHiX8_>IXwg4?U01a)RM!j9PNKa8adrz}8XAb&xSWH8>3nmg-;5a`q zs7KvkciCTG?sCpJ8_Xopa_l93yuQ0kuU2FkJEzW57T48r%c&jG1-DJgARD2##a%x; zXIJpsa=IUL7msjbA6q%+Z*(KUT^s?2wshM*k7XmT%=>XB59T!(ffOlrd%H;|>dKk* zNVGWy&YQ|czqcVg#@#p(II4|ZIn p*JxU8iK4xt#&Ox4Emw`6dqc2{2r1-+tVKE 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 str: + if not extras: + return project + canonical_extras = sorted(canonicalize_name(e) for e in extras) + return "{}[{}]".format(project, ",".join(canonical_extras)) + + +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 __nonzero__(self) -> bool: + return bool(self.specifier) or bool(self.hashes) or bool(self.links) + + def __bool__(self) -> bool: + return self.__nonzero__() + + 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/Scripts/Lib/site-packages/pip/_internal/resolution/resolvelib/candidates.py b/Scripts/Lib/site-packages/pip/_internal/resolution/resolvelib/candidates.py new file mode 100644 index 0000000..5d510db --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/resolution/resolvelib/candidates.py @@ -0,0 +1,555 @@ +import logging +import sys +from typing import TYPE_CHECKING, Any, FrozenSet, Iterable, Optional, Tuple, Union, cast + +from pip._vendor.packaging.specifiers import InvalidSpecifier, SpecifierSet +from pip._vendor.packaging.utils import NormalizedName, canonicalize_name +from pip._vendor.packaging.version import Version +from pip._vendor.packaging.version import parse as parse_version +from pip._vendor.pkg_resources import Distribution + +from pip._internal.exceptions import HashError, MetadataInconsistent +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.misc import dist_is_editable, normalize_version_info +from pip._internal.utils.packaging import get_requires_python + +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, + options=dict( + install_options=template.install_options, + global_options=template.global_options, + hashes=template.hash_options, + ), + ) + ireq.original_link = template.original_link + ireq.link = link + return ireq + + +def make_install_req_from_editable( + link: Link, template: InstallRequirement +) -> InstallRequirement: + assert template.editable, "template not editable" + return 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, + options=dict( + install_options=template.install_options, + global_options=template.global_options, + hashes=template.hash_options, + ), + ) + + +def make_install_req_from_dist( + dist: Distribution, template: InstallRequirement +) -> InstallRequirement: + project_name = canonicalize_name(dist.project_name) + if template.req: + line = str(template.req) + elif template.link: + line = f"{project_name} @ {template.link.url}" + else: + line = f"{project_name}=={dist.parsed_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, + options=dict( + install_options=template.install_options, + global_options=template.global_options, + hashes=template.hash_options, + ), + ) + 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). + """ + + 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 "{class_name}({link!r})".format( + class_name=self.__class__.__name__, + link=str(self._link), + ) + + 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 = canonicalize_name(self.dist.project_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 = parse_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) -> Distribution: + raise NotImplementedError("Override in subclass") + + def _check_metadata_consistency(self, dist: Distribution) -> None: + """Check for consistency of project name and version of dist.""" + canonical_name = canonicalize_name(dist.project_name) + if self._name is not None and self._name != canonical_name: + raise MetadataInconsistent( + self._ireq, + "name", + self._name, + dist.project_name, + ) + parsed_version = parse_version(dist.version) + if self._version is not None and self._version != parsed_version: + raise MetadataInconsistent( + self._ireq, + "version", + str(self._version), + dist.version, + ) + + def _prepare(self) -> Distribution: + 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 + self._check_metadata_consistency(dist) + return dist + + def _get_requires_python_dependency(self) -> Optional[Requirement]: + requires_python = get_requires_python(self.dist) + if requires_python is None: + return None + try: + spec = SpecifierSet(requires_python) + except InvalidSpecifier as e: + message = "Package %r has an invalid Requires-Python: %s" + logger.warning(message, self.name, e) + return None + return self._factory.make_requires_python_requirement(spec) + + def iter_dependencies(self, with_requires: bool) -> Iterable[Optional[Requirement]]: + requires = self.dist.requires() if with_requires else () + for r in requires: + yield self._factory.make_requirement_from_spec(str(r), self._ireq) + yield self._get_requires_python_dependency() + + 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(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 + and cache_entry.persistent + and template.link is template.original_link + ): + ireq.original_link_is_in_wheel_cache = True + + super().__init__( + link=link, + source_link=source_link, + ireq=ireq, + factory=factory, + name=name, + version=version, + ) + + def _prepare_distribution(self) -> Distribution: + return self._factory.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) -> Distribution: + return self._factory.preparer.prepare_editable_requirement(self._ireq) + + +class AlreadyInstalledCandidate(Candidate): + is_installed = True + source_link = None + + def __init__( + self, + dist: Distribution, + template: InstallRequirement, + factory: "Factory", + ) -> None: + self.dist = dist + self._ireq = make_install_req_from_dist(dist, template) + self._factory = factory + + # 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 "{class_name}({distribution!r})".format( + class_name=self.__class__.__name__, + distribution=self.dist, + ) + + 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 canonicalize_name(self.dist.project_name) + + @property + def name(self) -> str: + return self.project_name + + @property + def version(self) -> CandidateVersion: + return parse_version(self.dist.version) + + @property + def is_editable(self) -> bool: + return dist_is_editable(self.dist) + + 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.requires(): + yield self._factory.make_requirement_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], + ) -> None: + self.base = base + self.extras = extras + + def __str__(self) -> str: + name, rest = str(self.base).split(" ", 1) + return "{}[{}] {}".format(name, ",".join(self.extras), rest) + + def __repr__(self) -> str: + return "{class_name}(base={base!r}, extras={extras!r})".format( + class_name=self.__class__.__name__, + base=self.base, + extras=self.extras, + ) + + 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 iter_dependencies(self, with_requires: bool) -> Iterable[Optional[Requirement]]: + factory = self.base._factory + + # Add a dependency on the exact base + # (See note 2b in the class docstring) + yield factory.make_requirement_from_candidate(self.base) + if not with_requires: + return + + # The user may have specified extras that the candidate doesn't + # support. We ignore any unsupported extras here. + valid_extras = self.extras.intersection(self.base.dist.extras) + invalid_extras = self.extras.difference(self.base.dist.extras) + for extra in sorted(invalid_extras): + logger.warning( + "%s %s does not provide the extra '%s'", + self.base.name, + self.version, + extra, + ) + + for r in self.base.dist.requires(valid_extras): + requirement = factory.make_requirement_from_spec( + str(r), self.base._ireq, valid_extras + ) + if requirement: + yield requirement + + 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/Scripts/Lib/site-packages/pip/_internal/resolution/resolvelib/factory.py b/Scripts/Lib/site-packages/pip/_internal/resolution/resolvelib/factory.py new file mode 100644 index 0000000..e7fd344 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/resolution/resolvelib/factory.py @@ -0,0 +1,700 @@ +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.requirements import Requirement as PackagingRequirement +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, + InstallationSubprocessError, + 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_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.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, + 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[str]], 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_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] + ) -> ExtrasCandidate: + cache_key = (id(base), extras) + try: + candidate = self._extras_candidate_cache[cache_key] + except KeyError: + candidate = ExtrasCandidate(base, extras) + 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: + from pip._internal.metadata.pkg_resources import Distribution as _Dist + + compat_dist = cast(_Dist, dist)._dist + base = AlreadyInstalledCandidate(compat_dist, template, factory=self) + self._installed_candidate_cache[dist.canonical_name] = base + if not extras: + return base + return self._make_extras_candidate(base, extras) + + def _make_candidate_from_link( + self, + link: Link, + extras: FrozenSet[str], + template: InstallRequirement, + name: Optional[NormalizedName], + version: Optional[CandidateVersion], + ) -> Optional[Candidate]: + # 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 (InstallationSubprocessError, MetadataInconsistent) as e: + logger.warning("Discarding %s. %s", link, e) + self._build_failures[link] = e + return None + base: BaseCandidate = 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 (InstallationSubprocessError, MetadataInconsistent) as e: + logger.warning("Discarding %s. %s", link, e) + self._build_failures[link] = e + return None + base = self._link_candidate_cache[link] + + if not extras: + return base + return self._make_extras_candidate(base, extras) + + 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 incompatiblity. 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 must be ignored unless only yanked + # releases can satisfy the version range. So if this is false, + # all yanked icans need to be skipped. + all_yanked = all(ican.link.is_yanked for ican in icans) + + # PackageFinder returns earlier versions first, so we reverse. + for ican in reversed(icans): + if not all_yanked 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_candidate_from_link( + link, + extras=frozenset(), + 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, Iterator[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 explicit candidates + # from entries from extra-less identifier. + with contextlib.suppress(InvalidRequirement): + parsed_requirement = PackagingRequirement(identifier) + explicit_candidates.update( + self._iter_explicit_candidates_from_base( + requirements.get(parsed_requirement.name, ()), + frozenset(parsed_requirement.extras), + ), + ) + + # Add explicit candidates from constraints. We only do this if there are + # kown 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_requirement_from_install_req( + self, ireq: InstallRequirement, requested_extras: Iterable[str] + ) -> Optional[Requirement]: + if not ireq.match_markers(requested_extras): + logger.info( + "Ignoring %s: markers '%s' don't match your environment", + ireq.name, + ireq.markers, + ) + return None + if not ireq.link: + return SpecifierRequirement(ireq) + self._fail_if_link_is_unsupported_wheel(ireq.link) + cand = self._make_candidate_from_link( + ireq.link, + extras=frozenset(ireq.extras), + template=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] + return UnsatisfiableRequirement(canonicalize_name(ireq.name)) + return self.make_requirement_from_candidate(cand) + + 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: + req = self._make_requirement_from_install_req( + ireq, + requested_extras=(), + ) + if req is None: + continue + if ireq.user_supplied and req.name not in collected.user_requested: + collected.user_requested[req.name] = i + collected.requirements.append(req) + return collected + + def make_requirement_from_candidate( + self, candidate: Candidate + ) -> ExplicitRequirement: + return ExplicitRequirement(candidate) + + def make_requirement_from_spec( + self, + specifier: str, + comes_from: InstallRequirement, + requested_extras: Iterable[str] = (), + ) -> Optional[Requirement]: + ireq = self._make_install_req_from_spec(specifier, comes_from) + return self._make_requirement_from_install_req(ireq, requested_extras) + + def make_requires_python_requirement( + self, specifier: Optional[SpecifierSet] + ) -> Optional[Requirement]: + if self._ignore_requires_python or specifier is None: + 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 or self.preparer.require_hashes: + 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) + versions = [str(v) for v in sorted({c.version for c in cands})] + + 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 convinience. + 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 = ( + "Cannot install {} because these package versions " + "have conflicting dependencies.".format(info) + ) + 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/user_guide/" + "#fixing-conflicting-dependencies" + ) diff --git a/Scripts/Lib/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py b/Scripts/Lib/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py new file mode 100644 index 0000000..d2fa5ef --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py @@ -0,0 +1,142 @@ +"""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 typing import Callable, Iterator, Optional, Set, Tuple + +from pip._vendor.packaging.version import _BaseVersion +from pip._vendor.six.moves import collections_abc # type: ignore + +from .base import Candidate + +IndexCandidateInfo = Tuple[_BaseVersion, Callable[[], Optional[Candidate]]] + + +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(collections_abc.Sequence): + """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: int) -> Candidate: + # 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) + + __nonzero__ = __bool__ # XXX: Python 2. diff --git a/Scripts/Lib/site-packages/pip/_internal/resolution/resolvelib/provider.py b/Scripts/Lib/site-packages/pip/_internal/resolution/resolvelib/provider.py new file mode 100644 index 0000000..632854d --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/resolution/resolvelib/provider.py @@ -0,0 +1,197 @@ +import collections +import math +from typing import TYPE_CHECKING, Dict, Iterable, Iterator, Mapping, Sequence, 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). + + +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, Iterator["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 followings 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. + * 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). + """ + lookups = (r.get_candidate_lookup() for r, _ in information[identifier]) + candidate, ireqs = zip(*lookups) + 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 + 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 + self._known_depths[identifier] = inferred_depth + else: + inferred_depth = 1.0 + + 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 + + # HACK: Setuptools have a very long and solid backward compatibility + # track record, and extremely few projects would request a narrow, + # non-recent version range of it since that would break a lot things. + # (Most projects specify it only to request for an installer feature, + # which does not work, but that's another topic.) Intentionally + # delaying Setuptools helps reduce branches the resolver has to check. + # This serves as a temporary fix for issues like "apache-airlfow[all]" + # while we work on "proper" branch pruning techniques. + delay_this = identifier == "setuptools" + + return ( + not requires_python, + delay_this, + not direct, + not pinned, + inferred_depth, + requested_order, + not unfree, + identifier, + ) + + def _get_constraint(self, identifier: str) -> Constraint: + if identifier in self._constraints: + return self._constraints[identifier] + + # HACK: Theoratically 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 self._constraints: + return self._constraints[name] + + return Constraint.empty() + + def find_matches( + self, + identifier: str, + requirements: Mapping[str, Iterator[Requirement]], + incompatibilities: Mapping[str, Iterator[Candidate]], + ) -> Iterable[Candidate]: + def _eligible_for_upgrade(name: 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": + return name in self._user_requested + return False + + return self._factory.find_candidates( + identifier=identifier, + requirements=requirements, + constraint=self._get_constraint(identifier), + 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] diff --git a/Scripts/Lib/site-packages/pip/_internal/resolution/resolvelib/reporter.py b/Scripts/Lib/site-packages/pip/_internal/resolution/resolvelib/reporter.py new file mode 100644 index 0000000..7cf88ba --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/resolution/resolvelib/reporter.py @@ -0,0 +1,69 @@ +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.backtracks_by_package: DefaultDict[str, int] = defaultdict(int) + + self._messages_at_backtrack = { + 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 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. If you want to abort this run, you can press " + "Ctrl + C to do so. To improve how pip performs, tell us what " + "happened here: https://pip.pypa.io/surveys/backtracking" + ), + } + + def backtracking(self, candidate: Candidate) -> None: + self.backtracks_by_package[candidate.name] += 1 + + count = self.backtracks_by_package[candidate.name] + if count not in self._messages_at_backtrack: + return + + message = self._messages_at_backtrack[count] + logger.info("INFO: %s", message.format(package_name=candidate.name)) + + +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 backtracking(self, candidate: Candidate) -> None: + logger.info("Reporter.backtracking(%r)", candidate) + + def pinning(self, candidate: Candidate) -> None: + logger.info("Reporter.pinning(%r)", candidate) diff --git a/Scripts/Lib/site-packages/pip/_internal/resolution/resolvelib/requirements.py b/Scripts/Lib/site-packages/pip/_internal/resolution/resolvelib/requirements.py new file mode 100644 index 0000000..c19f83c --- /dev/null +++ b/Scripts/Lib/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.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 "{class_name}({candidate!r})".format( + class_name=self.__class__.__name__, + candidate=self.candidate, + ) + + @property + def project_name(self) -> NormalizedName: + # No need to canonicalise - the candidate did this + return self.candidate.project_name + + @property + def name(self) -> str: + # No need to canonicalise - 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(ireq.extras) + + def __str__(self) -> str: + return str(self._ireq.req) + + def __repr__(self) -> str: + return "{class_name}({requirement!r})".format( + class_name=self.__class__.__name__, + requirement=str(self._ireq.req), + ) + + @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 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 "{class_name}({specifier!r})".format( + class_name=self.__class__.__name__, + specifier=str(self.specifier), + ) + + @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 "{class_name}({name!r})".format( + class_name=self.__class__.__name__, + name=str(self._name), + ) + + @property + def project_name(self) -> NormalizedName: + return self._name + + @property + def name(self) -> str: + return self._name + + def format_for_error(self) -> str: + return str(self) + + def get_candidate_lookup(self) -> CandidateLookup: + return None, None + + def is_satisfied_by(self, candidate: Candidate) -> bool: + return False diff --git a/Scripts/Lib/site-packages/pip/_internal/resolution/resolvelib/resolver.py b/Scripts/Lib/site-packages/pip/_internal/resolution/resolvelib/resolver.py new file mode 100644 index 0000000..f89afaf --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/resolution/resolvelib/resolver.py @@ -0,0 +1,272 @@ +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.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.deprecation import deprecated +from pip._internal.utils.filetypes import is_archive_file + +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: + try_to_avoid_resolution_too_deep = 2000000 + result = self._result = resolver.resolve( + collected.requirements, max_rounds=try_to_avoid_resolution_too_deep + ) + + 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) + for candidate in result.mapping.values(): + ireq = candidate.get_install_requirement() + if ireq is None: + 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 + + looks_like_sdist = ( + is_archive_file(candidate.source_link.file_path) + and candidate.source_link.ext != ".zip" + ) + if looks_like_sdist: + # is a local sdist -- show a deprecation warning! + reason = ( + "Source distribution is being reinstalled despite an " + "installed package having the same name and version as " + "the installed package." + ) + replacement = "use --force-reinstall" + deprecated( + reason=reason, + replacement=replacement, + gone_in="21.3", + issue=8711, + ) + + # 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) + 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, while breaking any cycles in the graph at arbitrary + points. We make no guarantees about where the cycle would be broken, + other than they would be broken. + """ + assert self._result is not None, "must call resolve() first" + + graph = self._result.graph + weights = get_topological_weights( + graph, + expected_node_count=len(self._result.mapping) + 1, + ) + + 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]]", expected_node_count: int +) -> 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 take 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 it's 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. + """ + 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) + + last_known_parent_count = weights.get(node, 0) + weights[node] = max(last_known_parent_count, len(path)) + + # `None` is guaranteed to be the root node by resolvelib. + visit(None) + + # Sanity checks + assert weights[None] == 0 + assert len(weights) == expected_node_count + + 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/Scripts/Lib/site-packages/pip/_internal/self_outdated_check.py b/Scripts/Lib/site-packages/pip/_internal/self_outdated_check.py new file mode 100644 index 0000000..6b24965 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/self_outdated_check.py @@ -0,0 +1,187 @@ +import datetime +import hashlib +import json +import logging +import optparse +import os.path +import sys +from typing import Any, Dict + +from pip._vendor.packaging.version import parse as parse_version + +from pip._internal.index.collector import LinkCollector +from pip._internal.index.package_finder import PackageFinder +from pip._internal.metadata import get_default_environment +from pip._internal.models.selection_prefs import SelectionPreferences +from pip._internal.network.session import PipSession +from pip._internal.utils.filesystem import adjacent_tmp_file, check_path_owner, replace +from pip._internal.utils.misc import ensure_dir + +SELFCHECK_DATE_FMT = "%Y-%m-%dT%H:%M:%SZ" + + +logger = logging.getLogger(__name__) + + +def _get_statefile_name(key): + # type: (str) -> str + key_bytes = key.encode() + name = hashlib.sha224(key_bytes).hexdigest() + return name + + +class SelfCheckState: + def __init__(self, cache_dir): + # type: (str) -> None + self.state = {} # type: 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): + # type: () -> str + return sys.prefix + + def save(self, pypi_version, current_time): + # type: (str, 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.strftime(SELFCHECK_DATE_FMT), + "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 + + +def was_installed_by_pip(pkg): + # type: (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 pip_self_version_check(session, options): + # type: (PipSession, 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 + + pip_version = installed_dist.version + pypi_version = None + + try: + state = SelfCheckState(cache_dir=options.cache_dir) + + current_time = datetime.datetime.utcnow() + # Determine if we need to refresh the state + if "last_check" in state.state and "pypi_version" in state.state: + last_check = datetime.datetime.strptime( + state.state["last_check"], + SELFCHECK_DATE_FMT + ) + if (current_time - last_check).total_seconds() < 7 * 24 * 60 * 60: + pypi_version = state.state["pypi_version"] + + # Refresh the version if we need to or just see if we need to warn + if pypi_version is None: + # 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 + pypi_version = str(best_candidate.version) + + # save that we've performed a check + state.save(pypi_version, current_time) + + remote_version = parse_version(pypi_version) + + local_version_is_older = ( + pip_version < remote_version and + pip_version.base_version != remote_version.base_version and + was_installed_by_pip('pip') + ) + + # Determine if our pypi_version is older + if not local_version_is_older: + return + + # We cannot tell how the current pip is available in the current + # command context, so be pragmatic here and suggest the command + # that's always available. This does not accommodate spaces in + # `sys.executable`. + pip_cmd = f"{sys.executable} -m pip" + logger.warning( + "You are using pip version %s; however, version %s is " + "available.\nYou should consider upgrading via the " + "'%s install --upgrade pip' command.", + pip_version, pypi_version, pip_cmd + ) + except Exception: + logger.debug( + "There was an error checking the latest version of pip", + exc_info=True, + ) diff --git a/Scripts/Lib/site-packages/pip/_internal/utils/__init__.py b/Scripts/Lib/site-packages/pip/_internal/utils/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/Scripts/Lib/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..64d8c1efccd98eda4f5e61686aa6c1ce3c162d62 GIT binary patch literal 212 zcmd1j<>g`kf;}gmW`O9&AOaaM0yz#qT+9L_QW%06G#UL?G8BP?5yY?ZD61I1)QXbi zocz+17z2}dpUkA9#G=ZW_>lbkoZ=Y2((Ke2r_B6}#Hz%ilo;Q{;*!)Ng^<+Tf}F&X z)R^GpqRfJl;uxT=nBvTmRNaEa^moyMumb@3E0ONr4A1~A%sfOP$7kjl#~itmR!fXcjv}uAG_<8 zJLRo?M*M^Z@dCerAHZ+$E8?MlfhT6xcj2mbr5*2%XJ===`DW|kFd#7g{Oh0TM~sla zakDu|2S&2sb|Gf^0J;xifR%B59GM0q~^K(W%W|=yv(%b z<63bumHY`>OBFqn>Y~-Wl|8{=0#@U`@I@cc@Pr3w4BFx2E}ibm|Y6zcyb^Jv#l0TWetQ(Ph_IY|zT&PSflJrqsmpU0Wmohml>S?yj zlt{hda&ohfT)U~6OEf2bHy%YN$+3VH&XpOL2H}AZ<|7AzquaHa{qhX})?^4EYySIa# F-hWR-i3pLL0|+4V5D%=oGM{~1#iidc(+r zAg6Ncckq>YhmGIJ4^XG!Jn6_WPfk4{;Fu;Wi(S z3^(87)Eg8$SOuK$uqG>lYgC8ZXcZB67T57MS*55aBIBvZE@PhY!P|H>;Aj3U7bpHa zGKWhAoC1GGNnW3(Rf@I07K?*7h~8>wlfxS+SdT20MH&>PWk1%gx7wp@ay zTgAItP@||;-U5W_prJRc?u4ccL|&JnzM#efe{;TM>(h# zZ4i}R8UYkPrUx(#lU5tntOcLte<9JqVoGfMN@{~^c1YGM4ciKv_E}cMnI4AI@d1M$ zaq2M&6I_wKf3A0q(rED#u}%<+b!MYr8rng5L>_lqKv}VBBTD3TO29$=8o&uI|JH1_pO=nsXjnb(jI8zi5YnvO!2q3~;nX3DG4cDQ%|Nj&@?E*p! z$N+LdJQwi|fk%7tJ~HuDa!+`&CXa*jU{BTrvrZQ;mxr|N$+oMFbm3#oB$)fx&%s4; z7te*Mrs*Mh_q1ith)W(^4cbJvwKU*f(Pj=pixzQRbs>`yuunh9)J{GD(qEvlcC|1e zIe8GK1fJk#N|w`+&B~Iisw{gCsoA+s1jm3KVs*{R{*M8!KKeK#ZNOKOjW4izJ$)YV iqc}YGj&?ivuK&ZlaP8&WDh>vN5gCOKqR-+d!+!w-mR}YC literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/utils/__pycache__/compat.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/utils/__pycache__/compat.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6b2e43f729dffdce3ccff6bba1057295e477d7cc GIT binary patch literal 1529 zcmY*ZQEwwP5MFyX$u`-PQr!a*JXiwh6a+~{IUxc%!O=r1grvHh)N2%J<*dEQHqLrw zdoQGFUpW5738{rA{sTXN-{4oo1ApOOj`5~Nha=C9XFSf#=Wi_A?WPCgk3aujyli;h zUvBZ{2w?FQOnm`@c@vKzh6S3S>We41`uY=p?lJ#YGzmDmuJQT}nlxCz!xXa`tN$EK zc36Wq!O}_t7P1|%L<^5Ke?yZt_s@5)-(syBRP>$Bq9vAnj?ed4dxyBFV& zO_`>|ET|zYOH-~i$?{v3=Z2hY%tGemIXE(zYeI8I3PDXO)vC!dZB#ZZjdOMXfnvO2 z$G6d(o4BB65tkXWEp3>{W^u8cYuh+I9v+QO$F{DxDOH}hn7e^N31NN%Q-1>Dq5(j7 z!n^WLJ(qCc8MN6$p8K77Ia)j5e1TW~6++%6f|7!vLJ;}1gKTs>j!(`;Cy$5Y@t_mf zAl6#g*72&4$~;y|D*H~672Wtb&zV%+QVGcOunXk~Rfj`5Si$XimHxY@+?~EEC;jP= z|7a2+OEx|DG#+F#Mb%~+Kb2DG>9Ab#>7z_8=mk}5`UBO5EAo`D9B6zxPE=MHJ%y;L z&J6#!pvjWXxt>BMy*SHZcTPpm<)C|sTmg*TVq+T%s$(PcF65y1KwuQ2I*w3)@axDA zu!_KF1BZIz0Js}IC^eWBrZZ3sV93x5tll%|8ehWd+=m%F@^0`I0$c48-JtXO6$ZWG zbU+rchdtr-&ZT#Q^oQVSI?e5>e636GCEU<2_yzh2bpqOf6q*Falj@dHszpE6! zt9bv>wlnlXmVyxuL@^~5VngPV&^6uMR?}BB({RRUT+ymeP8U3{iYD;?^sYK06-j7* z-;fz6ic0=K zEO>6iQT*g+G#s2M#~52nwV}q=wW(UN2JF>bwVkV;X@|TGsvV8n5<33Yi&JL9G!xv# zRUNPuEeKVvU*CnP_dztHdniIp6zoK=A{+#}uPgsUM?l+H>v^VlYU@RXs|~4|7gT9( z{dJaGKM|S5x#{fNMjSJl#IbD%IiF|wTsgX1UvJ>`h+{w>d^_;M48YBm4dXbcD-OoG z3jj+ngHGJ`gAebM^`Wb(TvU}yc=vqSCX}pu0^*0HPr literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..69e25eb3d5f9cec24829f6e0d43e2be8588c6d89 GIT binary patch literal 4144 zcmb_fTXWmS6~-=>AVf;EEm@M~OM}Si)NCC3rg&V}I~$F0M0p4~m??74hr z8O_a=3_O4N>)*Hjv1k~7qrv1ei@}faCQW7-(r6fxNglEW!`BRX+iaL^(GcxIqtLb* z7NdC)7Tb2iZqGDk+NDORU2c@yvyIvITw|_XX;hfuo9aB)6|n9|;|Rv=;Hb0?S>u>2 z`j$U0?G3(S$QgfOL&%aWKNF4Pa@Jn}MfeLV2B>qg0_x&x)FbjJs7tR=kI8vZm*s+A z$oFgBqdvGDmy1|&LN1XExeUq)xdO_{43}@qlh_BTn9aYWmnBch)6WWxlQTU3$<@*P zq?|K@J>Qvavt1y;H+JK z-?Lf=inC!1}>yXjWc8H_ebk)V~2js~67SF!TZx*f0WXA6^* zC%#G`Bb#e`EjJFmbR$yjq{_0n2b$%_`TXAEx!Su`_gqtsTM)9@!G1UBY(%xpf|#!A zv=D8hhx$dlx9}z>&`5S*q%7qHIAmhs7ir&?Q6_8?mbye8gc9ZhN+u%2ZrP1eovoBJ!$M+dpbDwSSe&G+s24ydQW~ZW8=!t!P+t_D)t7knlddB9U2U|`F zC6#Qv3ncU%G@DrbNu|%EabSF5^jHd}`(R7%IOKogk143ly~5{x_w#;MM07;Sj$5zt z%%TYK(##C~4u-sTQPHWtW|^Sy(hgEfpk$>RA;Or1uh{Zq_ZuLM(7OiUTN z00MbeM|+5l_6huZfVe+oO*8juk4wJI)%SWrnokVvbs%rgTsC@Q8L`0Nk^^AuGzA{! zQefZOn`f(5J!3BAa%VRTI^CVi7cZ^dB;RKuxO(ksX6;Rw%&UU4xijW%3@M`vPB zr2!#NW_fY!cVxAYoA(@XD(Bu%{zkBq*?N%p@qnCkH$cu!N|~CQ^pxA`CTY}$We19l zq2>}+Y5Q8Rt<7v}p3O5+v|r2@VBhyK`yckD%+dC}jn0H+8QB(Ngz+I$3xqJp4AB#? z8|oeGdRk*~4NX<3i!@bAQkW$nNY`H1stpZunO0w+ zW{n!M)9W@^bT|EUXonHd{uC>dc{Dn%m?+pUZ6-_|Th~B_GlrNvWd;f{dPgAAGZG<< zhX9j(<4a^Wz{I$1d~&+ad;ALnN1uOOo`4QUprV1p{K7ckJ#!FpfEnsNF86Xko)Sud zL_#%)P|j-*u?e>zf+^l(IdF{64ojZK!i=>D9}?g1MbShHvl&lH9n^z_{~>9h zVQS^Siv1-iM{5Lf-{OMV+-96D0Rv{4;EIAUD-Q5P&0#cUFRFZm2Rc@-qLU(80kUjc zsN*RdB&qfRdeH+A>q-cWhZ9G08@U^v6Dvgx40?+CXQ|H=Wx&|l`FR#}qz!Ha1LYoJ zU1Fh`Wv5w%D~h|U5}+RXZNHP^UJ`X$SReRz< zqy>~#lR)E-Iv+YEO+}H_RFP9Pt%#KtRu+adn85NrhV6c(??R5}P(gE|4JYZwaimgT zI&^DuP)8l#Yi&6LA2~_vw}OoT^FgQN;Q4eglYCk$X~K0tv)3MOxDMX98wH)sA>}-Y zNw<9B-F8;5Tv>G>WcAAB)$@8kF$JL>b^MyMj&(!PPlGUY9{G-!B;7VC7!9>`qONj& z^1;2@qyj@wx<1f(cjA=8xy0Fxy3SLtlR8hlFpwh!hKGl;Lsjl=Xr0bG-Ne`W>&t+X z?Bd?mc7`0MRG?58i>EXDJ1F(ebWH#6I!wf+<~^kZMdDbAv8Rdt{}m06x#W7rTQM%k zmFWamKSS7S(8FALLg~o~b)Ob}G+JqE9MHL?u`Ey9AJIIel$xQ2602(G2~41>?omVH zvYAmtk2zglZLx-x3HZpIbrLAo0wKNLZkGN~clP=v~jlep~Ha2xE%NY(Ox z09ab1@Kgkq`s5Ra7-5>ea%#BGigddTLj1X)4QHvLyQ04PkFN>3M&%YJ;LQzAicc75 zd|R?_v?JLK{hNgM2?3t~5}si1a8a6NCG(`YR9HH`w76QHKgMnG%3@rW| U61Bwnx0cDjDGC14DpdaUZv~?P2mk;8 literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7ba590be2ea8a2530e8bc7729662972398a500f1 GIT binary patch literal 535 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 literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/utils/__pycache__/distutils_args.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/utils/__pycache__/distutils_args.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b1e459c488de7f119f1faec0f5fe14c31cd3aedf GIT binary patch literal 1120 zcmZ`(&2AGh5Vm){+ayg<3ka!5NGonD(Ut=zL=ivb=Kv8BNQl*CnUlMb+sbanaxe07Kk_LV62U&xXa!tYc}Js;@W6-eCJ{b((1q@S zvq=t^SP`A~Eb58wQxf)m;`t<`c4JR!QyZD-+iG}EsZybG^*%4s@dGerWkScYJ((KI z9w9R9hwe!qjv?Ku6dcIo-GL>j@mQ3z1w5RwgTEV|9I#seVOLwfy6PX9^sj@Vuw^>$eP_xV|<7%j_ufWu* zNNH2Uzl6;sU0io@>4(T9nbHZ_BQGyaos(5V4(Y@hQb9k^*qORh_M8-5MvODQNJ;a1 zL0+*pWI{i>6L!cxVas2!3B^{qCvTr{r6H(P`C1AP0R~a$P#AqBm_;IsVZe)^+&_fW z1ZKodFya~o=mkhQH|c2EZ@bs(Zx`dBE{=-wO|du=B?#oOC>4n978X*~!Gs2(XEzct zAD3j+t}N zO`4Uph_7Bt9?5;h)i_R`m1U;mL45@A9a)a}30ES1%(Vd(JcGO$0EnN?S{kEQtfhgi zil;|>2s*B0wUfvK(FMbt{qz$=ztR-g&l{jCYrr zSp`Rqg!s7dSJ>RRB5~sn;BS~K;*c{ZxRkf+#`1w#&HKGK?>95Qee=@gWtZUi{g1x} zzgdL*Spp=E4zj1tX`iD+PYIJp-}I ztP*R?F41L9iA$_fVx3h>TxPYN(XVt?zy=3aq0uw$lDh=nVD3HvW3tAUrnGa5)nSz_ zW7c9TZ1o4Lv(D%VX*RA=CuuhgZM9;lw0)Xq94_r#^|l^eIt4s>_5)xglE0o;YI@&zgHz*4Sb+r*i*u@*N#plggAZt2muirnB1@ z?|B#RF;#U^W7R3mzEtjHX-cL=VQZH^9S$Hm_d>5bQXoC41XjW8r2?0*Hl9koC=~)C z#YY|kg^s5N;6XAgnCp5tjziA7A)bSDo<<>u?LMeXKo4*)yCH8PPeRk<@i};D2FYgA zOB3(;NDb0tul;vXUiaESD+>3zFy-QV+74wD$H&dOz=kH;l`0fUUc_pkO%9267@#1~ zw#;~}^wLrL@Y$2k+Mfnr9BD^FD58OO`XbFUshycbz5ah1wJAqZuVIQoFU+~R5#O{$ z@!Z<%rbAu5S=APg6DS%)BKH>}-bBv77oEp`8@^EyPjlvf@L|x3yCM`LKR8WOF8y|X z4*o%$4#LY&F#l;N6$tMXh8YhP_$QHwGbMf8<;z&XR))0=`yl-+&US)0L3R@Iom|CS z?%YV(&PIAE%vBo9YO#(=HPEox` zidz_JLx8wlIF1@+*bkz760=yTVp9Y!PLChy+H3E@LtUS{!NJjD)H<5e_IBrqz1>9` zMy;dStJ-A~;tMFDSA!r-l2nB%P7@gfx)P`(6)5ZZI|7&cO^3@~R$Kw_b4lqo#NTr>{B6rh}I(Dhh?lvDK{3NjU3Kij-o zf@@uBg)f&-HQFny5w2Tbn%XVFm#7Gs3&+WW6#Pxp5-Q_-kH_e|r(!yX04sWas&<~q zqFe$qAP24~3QjZ7ZNaMw8RU#L?9mVODsy1&L)se?G{J)s9yy3|VA+8oz9n-|l3}32 zycD%^RWIUEP#t&-VVP-9QYu1b&)<8lo`Gv%<;hs;(XAFa_5dYnyM!Y`ZH^}`2WN^Q z-G=^e60jL3A6*Z@F(7Y<*cC7}ri1Pe*!J(9eY^f@{qkxM$-xc-CsiNJElSw6fmSF1 zmy@#oU(^&fA^D@?0x5*je1P*V8m>SDR@AXA!DX(DbbhT-u;~sFO7E?^TCMiVm(4EC zO|`PE6)WDi8Y*J-`0W^i=D6hs_{y@)!E%jZQIRmPF`Oy6F1{w zdO3>6f6r!g$&*FAUfiLu)=hnDSvnf=gp%;(6UI;f!%uUq((q5|Q{>z|bqNRWar#8h bhL6Je+2@s!jm9s+ucnVZi$0DoN09sj>^+($ literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6df7fba816e114748670eb3b7f228bfb11f98062 GIT binary patch literal 5182 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 G-v1BqkFd)C literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7976ab4acb6201cb3e70c3d18c456a3dbbfabe43 GIT binary patch literal 5039 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 literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/utils/__pycache__/inject_securetransport.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/utils/__pycache__/inject_securetransport.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6694049a286f3764913aefc07d3b77ba8a4a2e1d GIT binary patch literal 989 zcmZuw&2AGh5Vm*o*CnNqklF(h_(-HS1(Z&InMu;h_v_nVn-=Cjr6YJgyU|M6=a`Uw4W&ei3C^9;7R z1BRgyVwiaXk1+FD?GqY#-1~?yVqS#0b-INSdQQe%`3rUVin=iKt4i+ zAez4`xPcl}vcPZvDQU<(rO6B!@H4KvgaS6z99%}|u?3O~VwpU-P7U~k$}Z{8I1q*M zOhG$9vg!u%JNi?a4x&vc!e#YSWO4%O2RWBfv`;bvJXN5e8{j(zaxjzOesuPr_plfI zhN+@3b@p<(iLbzZ0ozzG7M)^-C%$en6ruA5^B5A|1$u*IP(#+AZ(vXWqqm?>gl6ai zI;}B(QrCAYd<*b3QJ*$0Fm^F*7h{{p-hAg;9RAY!>a>I`-FjFy7}c{(YS0vAYaP_- z;&RPY0@_OfyDOz{=B8}rg4$!Hr{Ee<-q@=&?Q5-cxjuN=4`CF^>;7T1HwcsP)xmE6 zu)LjTc`rHRk}2IQv=G_RPA^r`>g-6vT|{Mb5G_*NT1-62q*cih+Vyk;Ko#;E(rq~Z z`8;|Yhy1-wg(_Hl|536Jsi>aE$xta_;;@+TcsEmHdQLTq52$f>V92MAK98eRXSp>o zM8zhvd@HBvgr0B{1J!L;ooh+Oc40GNwwIi)O{AC4%k}^NS_O*LI|}?7_PjQ3;|BKr z1~un(aHsOxzP<^#u3t8jgsC)1bj`KtK2}X$F)m@*da`(EPn}Mt1*V2tD=k0R_y_2k B8ZrO? literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/utils/__pycache__/logging.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/utils/__pycache__/logging.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f30dbd35432376639a0e869206be489182bed153 GIT binary patch literal 9102 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

    jG+{Vh{cpp9ba09^DiEC&svxajH@U*zAuy?Ix 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 E536pvEdT%j literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/utils/__pycache__/models.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/utils/__pycache__/models.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..27bcf1023e359a3490e571ddd81f1db8d0f6643c GIT binary patch literal 1854 zcmbVNPiq`E6qhu!yW`F7CUKm!NoW{y2yCHoDTP8QC5aEEv{?dnp$r3xJd(Y#HGd*$ zOLp0t^Fi99ze7JjKf_#04?XwRQ{S8MI!>C!U=4cu_oVml_uiDlVV^+z{g1zYCT|D^7 zYoonZE11}S z(r3DyiiNN;eJ-3=Hr`WtWrSDhZf14mT?)5Sr@i{D64|jhR4%P_was+_+=VdPGl;a? zZUg(cf@pF$)1LDoDB(gNUDl_IPd?<_$1C290^h3P{M;LeR8N-Vh@Q}0Vk20NSshM= zn>PL!Q@a6sjma%Rxu^xQaJ~sEhp+Y7S{+)>47pYf=cqeIn`U8%s*v~Vs)qVQ)S=N&u+n!ckpc#G-8YUYutk`tyRq4gv)2D zSTxk$0@5g;IJdWP2chuRFZN?t-overfUK7a*RLS;5S0C()Vm<;!KG61`cLkg>0L59jUM}js-5O8%jSAJT`_kn@%`4qatA~Rqi1yHWZ*)zyb z#zRcALge7Vy3aY(fSJMhfb&-~Va`r^oXawU?G4VIDZK;7VMbXjbWI{OsI&+Y+h7x2 z*y8yudYc)hwuL_y!7|{`oQQ-pV(@jMaPZ?PCT6c>^x*rJ=ke^sHGz5oCK literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5759df85fb62998077be7cd392f4f95f1e12f9c2 GIT binary patch literal 2542 zcmaJ@%Wm676y=bVL{pSsNo*%b+d1C+qLhj;GWd(I)VTFo`!`TdW-2ESDe z<4-l1e=Hb$4Tb*#RcM4LHrlE+W0aU}6RExxTZ!Gab>EIlNx5B4D(#9MmtrSbXfNn~ zId+q3yP9}yPme2cEm>?Y>b?^%CClw)-Cu}TlGXMqGN>`WL2q87_N~wjt3Mg-wa^P| z(5{Dz;S#hP;c~bF?d=d98uit`!AGN6N3ya{IVXJzUH3Vq;Y-3eWpz_JFLDuODT!sN zHOynRp_U)_eMWgUWC7){$K^Q|J&m|v(d(fy0OOTrmePGHNJs>E z##qMGrZD1pOiulrh(TZ~eU-mWI%&s9QCjmP~4ABXo_E+ib0m*iO)D8A{bDP z3BGqg-wY$T=xFv0p(Icjxx5HM5(R=mQC$pkzsHJ{Jl>b{RZyxQ{I@ksn7au`{Ao@ed-INV#v~M z+-c25NE@% z^Z6rxFM7=gJMH+bEQ@)kIXtGF$5A#QXM}~FeZmE0xJ45Hub`d7fJM3B9eAt5BSANF z5*!1ccqfnYEyx(`1`=%n7h=9uECM1L`Ki36^9+P405=KSGC0MR(l|BSbkUmWAhrR+ z0MI;p6h%rg03BOrwC*{XMLrWh0X^?h(XD*;L%|MK zK;%8jZ%@Gqyq}4KVoAn;EnUEhpG+j;e!V+`q{1}@CBfZ374thL2<2FvRDeo4`_EcC zPj^~7XU@xSzuDYvK7Vnx-pugSFhFpah5$(X36~&$HR(n?O1U6uKv@~$C~qq5+67L} zYnb%r-ILzDE3zDC{XS)~@|Lg^Qp@1uU`Qv<0w7$LGL=hasX4m`0xL^^G)@7^wu*$T zO`Y>ol2GYPhq9`6gE}fb)=({~b!F~Ds6K_lRmUzbBNN&GdX|f9M^c z?pl!K4V9*A?0O9Q3U-xU2$EyjCi@KLt^`PZjAjA)0tUboU>NXb9eO%MPmNce4w!if z=R)A1H4Owzc;l+iRNZRIh27?1YiDoo*#Wx)M!@qAppmQd=<(wyrCgR2CGxsi+|5># z*Kbo(uW78tF=dBfiF;7F<|1++>E^$1lPz`39a&L`1SHBDO-K|slHwE3)V-uv%uR5m zt|`mnG*`e?s=}14$SR0e1C%liGp2dbzBM<~n8}#d??SO}U)eDKqreuF$ql_e)x!pT z7f}6!!8JjyFKfAMBoPk^IxWEM_X?glzGjN=vyYU&N*gssbRKmG=0c|=o+-*m=gTAu ghcW$1=_tPom1B4ixMk#-P@wjZ3xIIeoV(u2e;}gI?*IS* literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/utils/__pycache__/parallel.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/utils/__pycache__/parallel.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bdea55634d0f97fc73430c52e1d043dd0fada149 GIT binary patch literal 3054 zcmds3-EP}P79LWxEmM;1IEfSIud_gbz(uO`XR#MW5p3&q3Zsc*tds^N1PEhtWHBZ= z>TyQ zpW*kP|9&_Asm<88^m6{!#LHjtm>*C?EMSonx%+P5M2*Nx+_Vui90q$X@zS|q-rDo9 z7lMVly@~ckYcC{z+6r1}J7}k!ppz~IOX+g3Z2OwYN_ru<;4rx?7oN`HSsc0RESQr^ z(c-BStfKZ&Up$`2Zmr}};5}hk%VYBLq~|dDN9|zkbCxxZSkwvDqNU)9Y(&e^$}@&} zSEH-ZYIO0L6Rg9!6kUdO4c1z81=e-Brc1f*vEW8=1 z%wm}pJQrFdiA>^SQN$|aYQ)F!{#a_RbcAwLW+8Q$uJ8B9vEiwT%0%*9tHU^wh8IVQ zk7bgdAA5%%#l@J59HVj_i$d}dcG(l*f#E9icPGUdd%ed+7U7+ni78}ic!B|Ow$DwO z=SmlRq%``naI94}b1;?RSY)wD%?G~!Hcv%9Ov|K*u~jIIIp0)_wG4z_LP0UW{dp5iqNFC+F43 z=eAQOG6lpq@yNc%h16m%kzM$R6?vHf;ABE`>gji<9`jtO#PD#e@?TBlaaJfSE_ha^ zdqmL)gUal{+~G!HsF*@_DD{LV3hU0cG`uv}$IeZJ-k1DPBqdk@z|$4tW64920SEv? zM|-OFc&O4mkzg+^!!alXOWGa|1MPx#WF$ud4Ae`)r+2%4wel)4)$&=(^pxKt3)zNK zErkkr{-a1mCibO9i?@sOKSxbCY|K^7O#}}iS2ee53~Q@Ux?1Q@a`~Ci)!gF@fr|Mn zf7`nM(c=gG;qIeH4|?0dR^{|6r@zy`AAkAm77HEPx&Dz&!VuyyAEWpeJ6=6upCJjK zuoLzb`x+K%r>aj1cns-v z0VGeHQ@2OBee;mQ57A`<7wnRTOjCq}h!=`Wfl#bd3kh)+;?O6KpVg?DXmRKj#j=rK zl*q(bBxgFrB@~KMD4WT^dv^X28len;uNxy^-$L3;Lx~S52@7)IQ#sjFfODJR(PduP zd2kg|A!RZhf<^d+oXfz8B*fR z^z%c)4HC}$roN8qSKxYRpkTJ((#V1p&MEGUe=q;Dankt8C8$r_uNzO8iy-!x$4+tQ z_1L@2Tsd;+=5g5Pb%2A87n>wOGas$|)N)~!+mw503{1u{C1Au%#;ktTeB1{xuhk<= z`F%CA$o-Zg!GYh^BfH2fDIs2&z1?K=GSF&~*3v-BaNAKZArEaBSFPRY?Lu);Em2?$ z&z5-Z>8pTRuTyc2iUletLC>*x!LoS%ruqZ}3}thBvF*J1Lcam?^=#flFR@v;r_LFl zjo;w&>i^*L=l_$>bJx)ygHCTsC%y>i%YfL_9RRCuQgMrlS7=*#N!t{RJ_cFVmZq%z z3GW+@UZd((wJ;n;DjW{Uz?}uduP=ZE%1r5rYw+CH3M5p|p;h0Yg5oB){7Qc}D${hL zIr^&kVv^Go%5l9&1u3X*QGqXB7TknzcZc}4i5hMB*h@K|%T?Y41ow4EDH+g)*SkvOhL@2FpR4X@!ge8=zjEx+S+ J+Kz`2zW~X{bpHSV literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/utils/__pycache__/pkg_resources.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/utils/__pycache__/pkg_resources.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c16a01f8d8f645a5c69a719d89cae63c8ff3120b GIT binary patch literal 1722 zcmah}-HO{r6rLH$w(Rvfo26;G4Q)j)3c83lghHW&5YqG~keI@z6og<mVTHU1`F=zh1^E=-t-`?&qY(M|<+fnH< z_A4zmn}dsc*zIi;z<{T0!b3h0p_n+K!)Z^X?xYpAIQyJ|1MVvZ?n@E2p>@E5_V1|2 z0;h5x=%lE;hlMin(^OUNBW;U-S6g$fQjn?6luZb`*#s``VYgqPP%PxYLIFH(LG2V=Tg^(mOgs)!*j;_~jp_4G@V zpK4IXFOK5EH!23}PgXGhP^ZfJhbEu+u@7iK=UHs#!-S$-H=0xb1iPiuF8G2;tkMBH z-S%AS&0Y^sw^QJ7>)FQRUA?_;EB+-xNuj&mg+>p?svD8gv!OCwZRQXf!)f z(S4mC#bsXNb z+$^4`I@_h#rp^9QY|qO>JLU?CaF<-Gw_wM30ekEx{+fM_ak#7y zbDy&pg0r%}5H34*fG_wDNa7!zkMQQC^F3bH3-PUZ&YvT1N2TlQ%r9H@^#`t@qEu~A zNe-&o{VLNmc~CDuH6}Mz8);+nEO6>X%~itli>Z!Pah@t+>;Q!jJAA<36oPx-iNF4p z_@+i9ak?UWyUWDMOu-hI@`AtSFZrtYfiNvRG1p1#kRYaQ)P8r<{PH=zjR;G|2cmqh zaR(Q%7Xsp_SKkCh1{g*lMxQPHUFLqUegjfl(B@rKs;TFS@QEu`>vt0QP8Q{#eAx>u_4|Vs*524RD1aA8Ol?Y fL2ibPU(S-3q<)#-%Db~n=q}aQ66_7u7rV~i3~Z0G literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..94d56ed4778e8f52f619e5caafa57970d8106bdf GIT binary patch literal 2989 zcmZ`*-HzNy74~1d-QDh)NwOfw?y`8W->t&!?$p#d^&C zQopcSpE+M@7kxHhL$nSXF&FKCjoBXBA=_sMXh%#x)BM~2#tGWYHyi6oQp(0TEo72s zQQA0X{C5@4VjdmpnwG4KTu3j;?|XT9-z%@E;<74ao~P)`{3*|p4L_!-X(X1 z?~(WWhxf$GV=oLBNy@|UQ7bPnv*a?8QcSih?|X-N!LvggfX1I}m-t??z?st`lB+3y z0VB(uIi8jrR!z^ONV4VQ)5+mNc6f4rE+X{hif31PXzBYIzVZZ> z)PAck^_Ny{icxJb^na*9vX~)_znHc5SAA)y5nbG^t-75x#64)3TU}gQFUoNxLl5N_ zT<$sx`_@s$JX}Dv=9w(L=ZRc-E9zhJ?WWV+)yp)$jM6YyNGgxKpD>oRpz_)&+%U=I8>_NB ztV%AzIL{Wz^2mF<@XkerD6^!DE>m851s5ej(<42v)vH8jJ_Vz*zRE7E#exgY!n~42 zC3iN97%M#qe{Ph#5;2OEbC^($T*uE#fw$JojS*D%;>|b+vOFLgf_Sl<`Bq~B^UaVT zP)RbiIS9{we*Wvv&reUEoP}qY{MDf#T$;)|>6c55AgEm6`ppr>iKDc3gcv&SW0}h&R zucN0t+?gS;g=FG42==#8IR}r7|HpH0OPlYuu& zvt>-(^28!G%+6mKf)c85Q8lAWAV!AISDdG~F!riF&F_f;>5yVGR_1RZ+Uzr4$|O@z z3Rxn=m^3NAZM9Epytf_QIY;^X5LzXfV2o_t{(8?OZ^bt;5F4nrg_8SqR`?EtH#{|J zgTYgk2heZ*6Stt&^x~99*`^l+QJRW781l^jFY;3%j<2{VVNHdTV!WG95S6ulo#^E4$HG_tS^wM;J$j>&AObt90RG ztXKECF~{;c2oUNRyVY;3RlerU7!+?)5)tE_;r-z4@OE~p0H4D0 zlJ3_X8it|M&;E~VJBDSrAcCt?YazQsB_>d83q2w9sT=wj9TjK;VK!cx2)Ci00<+e| z9Y| z-|6urAbpGxz)|@>s#|b-XL!Hx>;=fy zDygPd0Um24TebmaMV?D>7u%6Q02J@j-XG8ipxpiQ*tm)TTj|yf^jG*Bg9F+dc5kpQ zKEw{qert{T8W+FRH2w$wTUrq^{)k=5AE0vg zTz$&`aNw&wd#F1d2NVxFF0}X|eh5OnZ_Z9md{55_Ac}$#sUWflVu+wzrQQ;i zW>x-Dd{PipyX<6fmCscwcYd_aS(Wln@i$5

    *&o^A|`uZ=PBboiC?zH`TMoqO)V Fe*q$W2$%o> literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b2ec93f583cf5d9c39db9b7ba325b6fa07d928c8 GIT binary patch literal 5748 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 p3deA83{U?l=CUbX?rNZ)n>eRY>zWL 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 X>yGU>&X_adRGebTapuk2)xZ56-B`tV literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/utils/__pycache__/urls.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/utils/__pycache__/urls.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c4b51ede1a3f617724a769ed819705e713bca32a GIT binary patch literal 1557 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 PU@52vey|q2+F1P_*Hn+! literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5d3aaab91131d1ea318bf1aae0ab5109a52e56f8 GIT binary patch literal 5941 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 literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/utils/_log.py b/Scripts/Lib/site-packages/pip/_internal/utils/_log.py new file mode 100644 index 0000000..92c4c6a --- /dev/null +++ b/Scripts/Lib/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/Scripts/Lib/site-packages/pip/_internal/utils/appdirs.py b/Scripts/Lib/site-packages/pip/_internal/utils/appdirs.py new file mode 100644 index 0000000..a8403b7 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/utils/appdirs.py @@ -0,0 +1,35 @@ +""" +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 +from typing import List + +from pip._vendor import appdirs as _appdirs + + +def user_cache_dir(appname: str) -> str: + return _appdirs.user_cache_dir(appname, appauthor=False) + + +def user_config_dir(appname: str, roaming: bool = True) -> str: + path = _appdirs.user_config_dir(appname, appauthor=False, roaming=roaming) + if _appdirs.system == "darwin" and not os.path.isdir(path): + path = os.path.expanduser("~/.config/") + if appname: + path = os.path.join(path, appname) + return path + + +# for the discussion regarding site_config_dir locations +# see +def site_config_dirs(appname: str) -> List[str]: + dirval = _appdirs.site_config_dir(appname, appauthor=False, multipath=True) + if _appdirs.system not in ["win32", "darwin"]: + # always look in /etc directly as well + return dirval.split(os.pathsep) + ["/etc"] + return [dirval] diff --git a/Scripts/Lib/site-packages/pip/_internal/utils/compat.py b/Scripts/Lib/site-packages/pip/_internal/utils/compat.py new file mode 100644 index 0000000..3f4d300 --- /dev/null +++ b/Scripts/Lib/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/Scripts/Lib/site-packages/pip/_internal/utils/compatibility_tags.py b/Scripts/Lib/site-packages/pip/_internal/utils/compatibility_tags.py new file mode 100644 index 0000000..f1c0f06 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/utils/compatibility_tags.py @@ -0,0 +1,168 @@ +"""Generate and work with PEP 425 Compatibility Tags. +""" + +import re +from typing import TYPE_CHECKING, List, Optional, Tuple + +from pip._vendor.packaging.tags import ( + Tag, + compatible_tags, + cpython_tags, + generic_tags, + interpreter_name, + interpreter_version, + mac_platforms, +) + +if TYPE_CHECKING: + from pip._vendor.packaging.tags import PythonVersion + + +_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/Scripts/Lib/site-packages/pip/_internal/utils/datetime.py b/Scripts/Lib/site-packages/pip/_internal/utils/datetime.py new file mode 100644 index 0000000..8668b3b --- /dev/null +++ b/Scripts/Lib/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/Scripts/Lib/site-packages/pip/_internal/utils/deprecation.py b/Scripts/Lib/site-packages/pip/_internal/utils/deprecation.py new file mode 100644 index 0000000..57dbdbd --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/utils/deprecation.py @@ -0,0 +1,104 @@ +""" +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 + +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], + issue: Optional[int] = None, +) -> None: + """Helper to deprecate existing functionality. + + reason: + Textual reason shown to the user about why this functionality has + been deprecated. + 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 errors if pip's current version is greater than or equal to + this. + issue: + Issue number on the tracker that would serve as a useful place for + users to find related discussion and provide feedback. + + Always pass replacement, gone_in and issue as keyword arguments for clarity + at the call site. + """ + + # Construct a nice message. + # This is eagerly formatted as we want it to get logged as if someone + # typed this entire message out. + sentences = [ + (reason, DEPRECATION_MSG_PREFIX + "{}"), + (gone_in, "pip {} will remove support for this functionality."), + (replacement, "A possible replacement is {}."), + ( + issue, + ( + "You can find discussion regarding this at " + "https://github.com/pypa/pip/issues/{}." + ), + ), + ] + message = " ".join( + template.format(val) for val, template in sentences if val is not None + ) + + # Raise as an error if it has to be removed. + if gone_in is not None and parse(current_version) >= parse(gone_in): + raise PipDeprecationWarning(message) + + warnings.warn(message, category=PipDeprecationWarning, stacklevel=2) diff --git a/Scripts/Lib/site-packages/pip/_internal/utils/direct_url_helpers.py b/Scripts/Lib/site-packages/pip/_internal/utils/direct_url_helpers.py new file mode 100644 index 0000000..088e977 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/utils/direct_url_helpers.py @@ -0,0 +1,79 @@ +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.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_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/Scripts/Lib/site-packages/pip/_internal/utils/distutils_args.py b/Scripts/Lib/site-packages/pip/_internal/utils/distutils_args.py new file mode 100644 index 0000000..e4aa5b8 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/utils/distutils_args.py @@ -0,0 +1,42 @@ +from distutils.errors import DistutilsArgError +from distutils.fancy_getopt import FancyGetopt +from typing import Dict, List + +_options = [ + ("exec-prefix=", None, ""), + ("home=", None, ""), + ("install-base=", None, ""), + ("install-data=", None, ""), + ("install-headers=", None, ""), + ("install-lib=", None, ""), + ("install-platlib=", None, ""), + ("install-purelib=", None, ""), + ("install-scripts=", None, ""), + ("prefix=", None, ""), + ("root=", None, ""), + ("user", None, ""), +] + + +# typeshed doesn't permit Tuple[str, None, str], see python/typeshed#3469. +_distutils_getopt = FancyGetopt(_options) # type: ignore + + +def parse_distutils_args(args: List[str]) -> Dict[str, str]: + """Parse provided arguments, returning an object that has the + matched arguments. + + Any unknown arguments are ignored. + """ + result = {} + for arg in args: + try: + _, match = _distutils_getopt.getopt(args=[arg]) + except DistutilsArgError: + # We don't care about any other options, which here may be + # considered unrecognized since our option list is not + # exhaustive. + pass + else: + result.update(match.__dict__) + return result diff --git a/Scripts/Lib/site-packages/pip/_internal/utils/encoding.py b/Scripts/Lib/site-packages/pip/_internal/utils/encoding.py new file mode 100644 index 0000000..1c73f6c --- /dev/null +++ b/Scripts/Lib/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(br"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/Scripts/Lib/site-packages/pip/_internal/utils/entrypoints.py b/Scripts/Lib/site-packages/pip/_internal/utils/entrypoints.py new file mode 100644 index 0000000..1504a12 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/utils/entrypoints.py @@ -0,0 +1,27 @@ +import sys +from typing import List, Optional + +from pip._internal.cli.main import main + + +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) diff --git a/Scripts/Lib/site-packages/pip/_internal/utils/filesystem.py b/Scripts/Lib/site-packages/pip/_internal/utils/filesystem.py new file mode 100644 index 0000000..b7e6191 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/utils/filesystem.py @@ -0,0 +1,182 @@ +import fnmatch +import os +import os.path +import random +import shutil +import stat +import sys +from contextlib import contextmanager +from tempfile import NamedTemporaryFile +from typing import Any, BinaryIO, Iterator, 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 + + +def copy2_fixed(src: str, dest: str) -> None: + """Wrap shutil.copy2() but map errors copying socket files to + SpecialFileError as expected. + + See also https://bugs.python.org/issue37700. + """ + try: + shutil.copy2(src, dest) + except OSError: + for f in [src, dest]: + try: + is_socket_file = is_socket(f) + except OSError: + # An error has already occurred. Another error here is not + # a problem and we can ignore it. + pass + else: + if is_socket_file: + raise shutil.SpecialFileError(f"`{f}` is a socket") + + raise + + +def is_socket(path: str) -> bool: + return stat.S_ISSOCK(os.lstat(path).st_mode) + + +@contextmanager +def adjacent_tmp_file(path: str, **kwargs: Any) -> Iterator[BinaryIO]: + """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/Scripts/Lib/site-packages/pip/_internal/utils/filetypes.py b/Scripts/Lib/site-packages/pip/_internal/utils/filetypes.py new file mode 100644 index 0000000..da93584 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/utils/filetypes.py @@ -0,0 +1,28 @@ +"""Filetype information. +""" + +from typing import Tuple + +from pip._internal.utils.misc import splitext + +WHEEL_EXTENSION = ".whl" +BZ2_EXTENSIONS = (".tar.bz2", ".tbz") # type: Tuple[str, ...] +XZ_EXTENSIONS = ( + ".tar.xz", + ".txz", + ".tlz", + ".tar.lz", + ".tar.lzma", +) # type: Tuple[str, ...] +ZIP_EXTENSIONS = (".zip", WHEEL_EXTENSION) # type: Tuple[str, ...] +TAR_EXTENSIONS = (".tar.gz", ".tgz", ".tar") # type: Tuple[str, ...] +ARCHIVE_EXTENSIONS = ZIP_EXTENSIONS + BZ2_EXTENSIONS + TAR_EXTENSIONS + XZ_EXTENSIONS + + +def is_archive_file(name): + # type: (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/Scripts/Lib/site-packages/pip/_internal/utils/glibc.py b/Scripts/Lib/site-packages/pip/_internal/utils/glibc.py new file mode 100644 index 0000000..1c9ff35 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/utils/glibc.py @@ -0,0 +1,92 @@ +# The following comment should be removed at some point in the future. +# mypy: strict-optional=False + +import os +import sys +from typing import Optional, Tuple + + +def glibc_version_string(): + # type: () -> 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(): + # type: () -> 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: + # os.confstr("CS_GNU_LIBC_VERSION") returns a string like "glibc 2.17": + _, version = os.confstr("CS_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(): + # type: () -> 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(): + # type: () -> 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/Scripts/Lib/site-packages/pip/_internal/utils/hashes.py b/Scripts/Lib/site-packages/pip/_internal/utils/hashes.py new file mode 100644 index 0000000..3d20b8d --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/utils/hashes.py @@ -0,0 +1,165 @@ +import hashlib +from typing import TYPE_CHECKING, BinaryIO, Dict, Iterator, List + +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=None): + # type: (Dict[str, List[str]]) -> 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): + # type: (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): + # type: () -> int + return sum(len(digests) for digests in self._allowed.values()) + + def is_hash_allowed( + self, + hash_name, # type: str + hex_digest, # type: str + ): + # type: (...) -> bool + """Return whether the given hex digest is allowed.""" + return hex_digest in self._allowed.get(hash_name, []) + + def check_against_chunks(self, chunks): + # type: (Iterator[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): + # type: (Dict[str, _Hash]) -> NoReturn + raise HashMismatch(self._allowed, gots) + + def check_against_file(self, file): + # type: (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): + # type: (str) -> None + with open(path, "rb") as file: + return self.check_against_file(file) + + def __nonzero__(self): + # type: () -> bool + """Return whether I know any known-good hashes.""" + return bool(self._allowed) + + def __bool__(self): + # type: () -> bool + return self.__nonzero__() + + def __eq__(self, other): + # type: (object) -> bool + if not isinstance(other, Hashes): + return NotImplemented + return self._allowed == other._allowed + + def __hash__(self): + # type: () -> 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): + # type: () -> 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): + # type: (Dict[str, _Hash]) -> NoReturn + raise HashMissing(gots[FAVORITE_HASH].hexdigest()) diff --git a/Scripts/Lib/site-packages/pip/_internal/utils/inject_securetransport.py b/Scripts/Lib/site-packages/pip/_internal/utils/inject_securetransport.py new file mode 100644 index 0000000..b6863d9 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/utils/inject_securetransport.py @@ -0,0 +1,36 @@ +"""A helper module that injects SecureTransport, on import. + +The import should be done as early as possible, to ensure all requests and +sessions (or whatever) are created after injecting SecureTransport. + +Note that we only do the injection on macOS, when the linked OpenSSL is too +old to handle TLSv1.2. +""" + +import sys + + +def inject_securetransport(): + # type: () -> None + # Only relevant on macOS + if sys.platform != "darwin": + return + + try: + import ssl + except ImportError: + return + + # Checks for OpenSSL 1.0.1 + if ssl.OPENSSL_VERSION_NUMBER >= 0x1000100F: + return + + try: + from pip._vendor.urllib3.contrib import securetransport + except (ImportError, OSError): + return + + securetransport.inject_into_urllib3() + + +inject_securetransport() diff --git a/Scripts/Lib/site-packages/pip/_internal/utils/logging.py b/Scripts/Lib/site-packages/pip/_internal/utils/logging.py new file mode 100644 index 0000000..39a18fd --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/utils/logging.py @@ -0,0 +1,391 @@ +import contextlib +import errno +import logging +import logging.handlers +import os +import sys +from logging import Filter +from typing import IO, Any, Callable, Iterator, Optional, TextIO, Type, cast + +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 + +try: + import threading +except ImportError: + import dummy_threading as threading # type: ignore + + +try: + from pip._vendor import colorama +# Lots of different errors can come from this, including SystemError and +# ImportError. +except Exception: + colorama = None + + +_log_state = threading.local() +subprocess_logger = getLogger("pip.subprocessor") + + +class BrokenStdoutLoggingError(Exception): + """ + Raised if BrokenPipeError occurs for the stdout stream while logging. + """ + + pass + + +# BrokenPipeError manifests differently in Windows and non-Windows. +if WINDOWS: + # In Windows, a broken pipe can show up as EINVAL rather than EPIPE: + # https://bugs.python.org/issue19612 + # https://bugs.python.org/issue30418 + def _is_broken_pipe_error(exc_class, exc): + # type: (Type[BaseException], BaseException) -> bool + """See the docstring for non-Windows below.""" + return (exc_class is BrokenPipeError) or ( + isinstance(exc, OSError) and exc.errno in (errno.EINVAL, errno.EPIPE) + ) + + +else: + # Then we are in the non-Windows case. + def _is_broken_pipe_error(exc_class, exc): + # type: (Type[BaseException], BaseException) -> bool + """ + Return whether an exception is a broken pipe error. + + Args: + exc_class: an exception class. + exc: an exception instance. + """ + return exc_class is BrokenPipeError + + +@contextlib.contextmanager +def indent_log(num=2): + # type: (int) -> Iterator[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(): + # type: () -> int + return getattr(_log_state, "indentation", 0) + + +class IndentingFormatter(logging.Formatter): + default_time_format = "%Y-%m-%dT%H:%M:%S" + + def __init__( + self, + *args, # type: Any + add_timestamp=False, # type: bool + **kwargs, # type: Any + ): + # type: (...) -> 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, levelno): + # type: (str, 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): + # type: (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 + + +def _color_wrap(*colors): + # type: (*str) -> Callable[[str], str] + def wrapped(inp): + # type: (str) -> str + return "".join(list(colors) + [inp, colorama.Style.RESET_ALL]) + + return wrapped + + +class ColorizedStreamHandler(logging.StreamHandler): + + # Don't build up a list of colors if we don't have colorama + if colorama: + COLORS = [ + # This needs to be in order from highest logging level to lowest. + (logging.ERROR, _color_wrap(colorama.Fore.RED)), + (logging.WARNING, _color_wrap(colorama.Fore.YELLOW)), + ] + else: + COLORS = [] + + def __init__(self, stream=None, no_color=None): + # type: (Optional[TextIO], bool) -> None + super().__init__(stream) + self._no_color = no_color + + if WINDOWS and colorama: + self.stream = colorama.AnsiToWin32(self.stream) + + def _using_stdout(self): + # type: () -> bool + """ + Return whether the handler is using sys.stdout. + """ + if WINDOWS and colorama: + # Then self.stream is an AnsiToWin32 object. + stream = cast(colorama.AnsiToWin32, self.stream) + return stream.wrapped is sys.stdout + + return self.stream is sys.stdout + + def should_color(self): + # type: () -> bool + # Don't colorize things if we do not have colorama or if told not to + if not colorama or self._no_color: + return False + + real_stream = ( + self.stream + if not isinstance(self.stream, colorama.AnsiToWin32) + else self.stream.wrapped + ) + + # If the stream is a tty we should color it + if hasattr(real_stream, "isatty") and real_stream.isatty(): + return True + + # If we have an ANSI term we should color it + if os.environ.get("TERM") == "ANSI": + return True + + # If anything else we should not color it + return False + + def format(self, record): + # type: (logging.LogRecord) -> str + msg = super().format(record) + + if self.should_color(): + for level, color in self.COLORS: + if record.levelno >= level: + msg = color(msg) + break + + return msg + + # The logging module says handleError() can be customized. + def handleError(self, record): + # type: (logging.LogRecord) -> None + 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._using_stdout() + and _is_broken_pipe_error(exc_class, exc) + ): + raise BrokenStdoutLoggingError() + + return super().handleError(record) + + +class BetterRotatingFileHandler(logging.handlers.RotatingFileHandler): + def _open(self): + # type: () -> IO[Any] + ensure_dir(os.path.dirname(self.baseFilename)) + return super()._open() + + +class MaxLevelFilter(Filter): + def __init__(self, level): + # type: (int) -> None + self.level = level + + def filter(self, record): + # type: (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): + # type: (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, no_color, user_log_file): + # type: (int, bool, 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.ColorizedStreamHandler", + "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"], + "no_color": no_color, + "stream": log_streams["stderr"], + "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/Scripts/Lib/site-packages/pip/_internal/utils/misc.py b/Scripts/Lib/site-packages/pip/_internal/utils/misc.py new file mode 100644 index 0000000..99ebea3 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/utils/misc.py @@ -0,0 +1,828 @@ +# The following comment should be removed at some point in the future. +# mypy: strict-optional=False + +import contextlib +import errno +import getpass +import hashlib +import io +import logging +import os +import posixpath +import shutil +import stat +import sys +import urllib.parse +from io import StringIO +from itertools import filterfalse, tee, zip_longest +from types import TracebackType +from typing import ( + Any, + AnyStr, + BinaryIO, + Callable, + Container, + ContextManager, + Iterable, + Iterator, + List, + Optional, + TextIO, + Tuple, + Type, + TypeVar, + cast, +) + +from pip._vendor.pkg_resources import Distribution +from pip._vendor.tenacity import retry, stop_after_delay, wait_fixed + +from pip import __version__ +from pip._internal.exceptions import CommandError +from pip._internal.locations import get_major_minor_version, site_packages, user_site +from pip._internal.utils.compat import WINDOWS, stdlib_pkgs +from pip._internal.utils.virtualenv import ( + running_under_virtualenv, + virtualenv_no_global, +) + +__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", +] + + +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]]] + + +def get_pip_version(): + # type: () -> str + pip_pkg_dir = os.path.join(os.path.dirname(__file__), "..", "..") + pip_pkg_dir = os.path.abspath(pip_pkg_dir) + + return "pip {} from {} (python {})".format( + __version__, + pip_pkg_dir, + get_major_minor_version(), + ) + + +def normalize_version_info(py_version_info): + # type: (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): + # type: (AnyStr) -> 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(): + # type: () -> 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, ignore_errors=False): + # type: (AnyStr, bool) -> None + shutil.rmtree(dir, ignore_errors=ignore_errors, onerror=rmtree_errorhandler) + + +def rmtree_errorhandler(func, path, exc_info): + # type: (Callable[..., Any], str, ExcInfo) -> None + """On Windows, the files in .svn are read-only, so when rmtree() tries to + remove them, an exception is thrown. We catch that here, remove the + read-only attribute, and hopefully continue without problems.""" + try: + has_attr_readonly = not (os.stat(path).st_mode & stat.S_IWRITE) + except OSError: + # it's equivalent to os.path.exists + return + + if has_attr_readonly: + # convert to read/write + os.chmod(path, stat.S_IWRITE) + # use the original function to repeat the operation + func(path) + return + else: + raise + + +def display_path(path): + # type: (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, ext=".bak"): + # type: (str, str) -> 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, options): + # type: (str, 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): + # type: (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, options): + # type: (str, 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): + # type: (str) -> str + """Ask for input interactively.""" + _check_no_input(message) + return input(message) + + +def ask_password(message): + # type: (str) -> str + """Ask for a password interactively.""" + _check_no_input(message) + return getpass.getpass(message) + + +def strtobool(val): + # type: (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): + # type: (float) -> str + if bytes > 1000 * 1000: + return "{:.1f} MB".format(bytes / 1000.0 / 1000) + elif bytes > 10 * 1000: + return "{} kB".format(int(bytes / 1000)) + elif bytes > 1000: + return "{:.1f} kB".format(bytes / 1000.0) + else: + return "{} bytes".format(int(bytes)) + + +def tabulate(rows): + # type: (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, size=io.DEFAULT_BUFFER_SIZE): + # type: (BinaryIO, int) -> Iterator[bytes] + """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, resolve_symlinks=True): + # type: (str, bool) -> 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): + # type: (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, new): + # type: (str, 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): + # type: (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 dist_is_local(dist): + # type: (Distribution) -> bool + """ + Return True if given Distribution object is installed locally + (i.e. within current virtualenv). + + Always True if we're not in a virtualenv. + + """ + return is_local(dist_location(dist)) + + +def dist_in_usersite(dist): + # type: (Distribution) -> bool + """ + Return True if given Distribution is installed in user site. + """ + return dist_location(dist).startswith(normalize_path(user_site)) + + +def dist_in_site_packages(dist): + # type: (Distribution) -> bool + """ + Return True if given Distribution is installed in + sysconfig.get_python_lib(). + """ + return dist_location(dist).startswith(normalize_path(site_packages)) + + +def dist_is_editable(dist): + # type: (Distribution) -> bool + """ + Return True if given Distribution is an editable install. + """ + for path_item in sys.path: + egg_link = os.path.join(path_item, dist.project_name + ".egg-link") + if os.path.isfile(egg_link): + return True + return False + + +def get_installed_distributions( + local_only=True, # type: bool + skip=stdlib_pkgs, # type: Container[str] + include_editables=True, # type: bool + editables_only=False, # type: bool + user_only=False, # type: bool + paths=None, # type: Optional[List[str]] +): + # type: (...) -> List[Distribution] + """Return a list of installed Distribution objects. + + Left for compatibility until direct pkg_resources uses are refactored out. + """ + from pip._internal.metadata import get_default_environment, get_environment + from pip._internal.metadata.pkg_resources import Distribution as _Dist + + if paths is None: + env = get_default_environment() + else: + env = get_environment(paths) + dists = env.iter_installed_distributions( + local_only=local_only, + skip=skip, + include_editables=include_editables, + editables_only=editables_only, + user_only=user_only, + ) + return [cast(_Dist, dist)._dist for dist in dists] + + +def get_distribution(req_name): + # type: (str) -> Optional[Distribution] + """Given a requirement name, return the installed Distribution object. + + This searches from *all* distributions available in the environment, to + match the behavior of ``pkg_resources.get_distribution()``. + + Left for compatibility until direct pkg_resources uses are refactored out. + """ + from pip._internal.metadata import get_default_environment + from pip._internal.metadata.pkg_resources import Distribution as _Dist + + dist = get_default_environment().get_distribution(req_name) + if dist is None: + return None + return cast(_Dist, dist)._dist + + +def egg_link_path(dist): + # type: (Distribution) -> 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 = [] + 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) + + for site in sites: + egglink = os.path.join(site, dist.project_name) + ".egg-link" + if os.path.isfile(egglink): + return egglink + return None + + +def dist_location(dist): + # type: (Distribution) -> str + """ + Get the site-packages location of this distribution. Generally + this is dist.location, except in the case of develop-installed + packages, where dist.location is the source code location, and we + want to know where the egg-link file is. + + The returned location is normalized (in particular, with symlinks removed). + """ + egg_link = egg_link_path(dist) + if egg_link: + return normalize_path(egg_link) + return normalize_path(dist.location) + + +def write_output(msg, *args): + # type: (Any, Any) -> None + logger.info(msg, *args) + + +class StreamWrapper(StringIO): + orig_stream = None # type: TextIO + + @classmethod + def from_stream(cls, orig_stream): + # type: (TextIO) -> StreamWrapper + cls.orig_stream = orig_stream + return cls() + + # compileall.compile_dir() needs stdout.encoding to print to stdout + # https://github.com/python/mypy/issues/4125 + @property + def encoding(self): # type: ignore + return self.orig_stream.encoding + + +@contextlib.contextmanager +def captured_output(stream_name): + # type: (str) -> Iterator[StreamWrapper] + """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(): + # type: () -> 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(): + # type: () -> ContextManager[StreamWrapper] + """ + See captured_stdout(). + """ + return captured_output("stderr") + + +# Simulates an enum +def enum(*sequential, **named): + # type: (*Any, **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, port): + # type: (str, 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, scheme="https"): + # type: (str, str) -> 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): + # type: (str) -> Tuple[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): + # type: (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 = None # type: Optional[str] + 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): + # type: (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 "{user}{password}@{netloc}".format( + user=user, password=password, netloc=netloc + ) + + +def _transform_url(url, transform_netloc): + # type: (str, 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): + # type: (str) -> NetlocTuple + return split_auth_from_netloc(netloc) + + +def _redact_netloc(netloc): + # type: (str) -> Tuple[str,] + return (redact_netloc(netloc),) + + +def split_auth_netloc_from_url(url): + # type: (str) -> Tuple[str, str, Tuple[str, 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): + # type: (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): + # type: (str) -> str + """Replace the password in a given url with ****.""" + return _transform_url(url, _redact_netloc)[0] + + +class HiddenText: + def __init__( + self, + secret, # type: str + redacted, # type: str + ): + # type: (...) -> None + self.secret = secret + self.redacted = redacted + + def __repr__(self): + # type: (...) -> str + return "".format(str(self)) + + def __str__(self): + # type: (...) -> str + return self.redacted + + # This is useful for testing. + def __eq__(self, other): + # type: (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): + # type: (str) -> HiddenText + return HiddenText(value, redacted="****") + + +def hide_url(url): + # type: (str) -> HiddenText + redacted = redact_auth_from_url(url) + return HiddenText(url, redacted=redacted) + + +def protect_pip_from_modification_on_windows(modifying_pip): + # type: (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.exe", + "pip{}.exe".format(sys.version_info[0]), + "pip{}.{}.exe".format(*sys.version_info[:2]), + ] + + # 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 is_console_interactive(): + # type: () -> bool + """Is this console interactive?""" + return sys.stdin is not None and sys.stdin.isatty() + + +def hash_file(path, blocksize=1 << 20): + # type: (str, int) -> 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 is_wheel_installed(): + # type: () -> bool + """ + Return whether the wheel package is installed. + """ + try: + import wheel # noqa: F401 + except ImportError: + return False + + return True + + +def pairwise(iterable): + # type: (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, # type: Callable[[T], bool] + iterable, # type: Iterable[T] +): + # type: (...) -> 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) diff --git a/Scripts/Lib/site-packages/pip/_internal/utils/models.py b/Scripts/Lib/site-packages/pip/_internal/utils/models.py new file mode 100644 index 0000000..0e02bc7 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/utils/models.py @@ -0,0 +1,47 @@ +"""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, defining_class): + # type: (Any, Type[KeyBasedCompareMixin]) -> None + self._compare_key = key + self._defining_class = defining_class + + def __hash__(self): + # type: () -> int + return hash(self._compare_key) + + def __lt__(self, other): + # type: (Any) -> bool + return self._compare(other, operator.__lt__) + + def __le__(self, other): + # type: (Any) -> bool + return self._compare(other, operator.__le__) + + def __gt__(self, other): + # type: (Any) -> bool + return self._compare(other, operator.__gt__) + + def __ge__(self, other): + # type: (Any) -> bool + return self._compare(other, operator.__ge__) + + def __eq__(self, other): + # type: (Any) -> bool + return self._compare(other, operator.__eq__) + + def _compare(self, other, method): + # type: (Any, 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/Scripts/Lib/site-packages/pip/_internal/utils/packaging.py b/Scripts/Lib/site-packages/pip/_internal/utils/packaging.py new file mode 100644 index 0000000..3f9dbd3 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/utils/packaging.py @@ -0,0 +1,89 @@ +import logging +from email.message import Message +from email.parser import FeedParser +from typing import Optional, Tuple + +from pip._vendor import pkg_resources +from pip._vendor.packaging import specifiers, version +from pip._vendor.pkg_resources import Distribution + +from pip._internal.exceptions import NoneMetadataError +from pip._internal.utils.misc import display_path + +logger = logging.getLogger(__name__) + + +def check_requires_python(requires_python, version_info): + # type: (Optional[str], 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 + + +def get_metadata(dist): + # type: (Distribution) -> Message + """ + :raises NoneMetadataError: if the distribution reports `has_metadata()` + True but `get_metadata()` returns None. + """ + metadata_name = "METADATA" + if isinstance(dist, pkg_resources.DistInfoDistribution) and dist.has_metadata( + metadata_name + ): + metadata = dist.get_metadata(metadata_name) + elif dist.has_metadata("PKG-INFO"): + metadata_name = "PKG-INFO" + metadata = dist.get_metadata(metadata_name) + else: + logger.warning("No metadata found in %s", display_path(dist.location)) + metadata = "" + + if metadata is None: + raise NoneMetadataError(dist, metadata_name) + + feed_parser = FeedParser() + # The following line errors out if with a "NoneType" TypeError if + # passed metadata=None. + feed_parser.feed(metadata) + return feed_parser.close() + + +def get_requires_python(dist): + # type: (pkg_resources.Distribution) -> Optional[str] + """ + Return the "Requires-Python" metadata for a distribution, or None + if not present. + """ + pkg_info_dict = get_metadata(dist) + requires_python = pkg_info_dict.get("Requires-Python") + + if requires_python is not None: + # Convert to a str to satisfy the type checker, since requires_python + # can be a Header object. + requires_python = str(requires_python) + + return requires_python + + +def get_installer(dist): + # type: (Distribution) -> str + if dist.has_metadata("INSTALLER"): + for line in dist.get_metadata_lines("INSTALLER"): + if line.strip(): + return line.strip() + return "" diff --git a/Scripts/Lib/site-packages/pip/_internal/utils/parallel.py b/Scripts/Lib/site-packages/pip/_internal/utils/parallel.py new file mode 100644 index 0000000..de91dc8 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/utils/parallel.py @@ -0,0 +1,101 @@ +"""Convenient parallelization of higher order functions. + +This module provides two helper functions, with appropriate fallbacks on +Python 2 and on systems lacking support for synchronization mechanisms: + +- map_multiprocess +- map_multithread + +These helpers work like Python 3's map, with two differences: + +- They don't guarantee the order of processing of + the elements of the iterable. +- The underlying process/thread pools chop the iterable into + a number of chunks, so that for very long iterables using + a large value for chunksize can make the job complete much faster + than using the default value of 1. +""" + +__all__ = ["map_multiprocess", "map_multithread"] + +from contextlib import contextmanager +from multiprocessing import Pool as ProcessPool +from multiprocessing import pool +from multiprocessing.dummy import Pool as ThreadPool +from typing import Callable, Iterable, Iterator, TypeVar, Union + +from pip._vendor.requests.adapters import DEFAULT_POOLSIZE + +Pool = Union[pool.Pool, pool.ThreadPool] +S = TypeVar("S") +T = TypeVar("T") + +# On platforms without sem_open, multiprocessing[.dummy] Pool +# cannot be created. +try: + import multiprocessing.synchronize # noqa +except ImportError: + LACK_SEM_OPEN = True +else: + LACK_SEM_OPEN = False + +# Incredibly large timeout to work around bpo-8296 on Python 2. +TIMEOUT = 2000000 + + +@contextmanager +def closing(pool): + # type: (Pool) -> Iterator[Pool] + """Return a context manager making sure the pool closes properly.""" + try: + yield pool + finally: + # For Pool.imap*, close and join are needed + # for the returned iterator to begin yielding. + pool.close() + pool.join() + pool.terminate() + + +def _map_fallback(func, iterable, chunksize=1): + # type: (Callable[[S], T], Iterable[S], int) -> Iterator[T] + """Make an iterator applying func to each element in iterable. + + This function is the sequential fallback either on Python 2 + where Pool.imap* doesn't react to KeyboardInterrupt + or when sem_open is unavailable. + """ + return map(func, iterable) + + +def _map_multiprocess(func, iterable, chunksize=1): + # type: (Callable[[S], T], Iterable[S], int) -> Iterator[T] + """Chop iterable into chunks and submit them to a process pool. + + For very long iterables using a large value for chunksize can make + the job complete much faster than using the default value of 1. + + Return an unordered iterator of the results. + """ + with closing(ProcessPool()) as pool: + return pool.imap_unordered(func, iterable, chunksize) + + +def _map_multithread(func, iterable, chunksize=1): + # type: (Callable[[S], T], Iterable[S], int) -> Iterator[T] + """Chop iterable into chunks and submit them to a thread pool. + + For very long iterables using a large value for chunksize can make + the job complete much faster than using the default value of 1. + + Return an unordered iterator of the results. + """ + with closing(ThreadPool(DEFAULT_POOLSIZE)) as pool: + return pool.imap_unordered(func, iterable, chunksize) + + +if LACK_SEM_OPEN: + map_multiprocess = map_multithread = _map_fallback +else: + map_multiprocess = _map_multiprocess + map_multithread = _map_multithread diff --git a/Scripts/Lib/site-packages/pip/_internal/utils/pkg_resources.py b/Scripts/Lib/site-packages/pip/_internal/utils/pkg_resources.py new file mode 100644 index 0000000..ee1eca3 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/utils/pkg_resources.py @@ -0,0 +1,40 @@ +from typing import Dict, Iterable, List + +from pip._vendor.pkg_resources import yield_lines + + +class DictMetadata: + """IMetadataProvider that reads metadata files from a dictionary.""" + + def __init__(self, metadata): + # type: (Dict[str, bytes]) -> None + self._metadata = metadata + + def has_metadata(self, name): + # type: (str) -> bool + return name in self._metadata + + def get_metadata(self, name): + # type: (str) -> str + try: + return self._metadata[name].decode() + except UnicodeDecodeError as e: + # Mirrors handling done in pkg_resources.NullProvider. + e.reason += f" in {name} file" + raise + + def get_metadata_lines(self, name): + # type: (str) -> Iterable[str] + return yield_lines(self.get_metadata(name)) + + def metadata_isdir(self, name): + # type: (str) -> bool + return False + + def metadata_listdir(self, name): + # type: (str) -> List[str] + return [] + + def run_script(self, script_name, namespace): + # type: (str, str) -> None + pass diff --git a/Scripts/Lib/site-packages/pip/_internal/utils/setuptools_build.py b/Scripts/Lib/site-packages/pip/_internal/utils/setuptools_build.py new file mode 100644 index 0000000..4b8e4b3 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/utils/setuptools_build.py @@ -0,0 +1,173 @@ +import sys +from typing import List, Optional, Sequence + +# Shim to wrap setup.py invocation with setuptools +# +# We set sys.argv[0] to the path to the underlying setup.py file so +# setuptools / distutils don't take the path to the setup.py to be "-c" when +# invoking via the shim. This avoids e.g. the following manifest_maker +# warning: "warning: manifest_maker: standard file '-c' not found". +_SETUPTOOLS_SHIM = ( + "import io, os, sys, setuptools, tokenize; sys.argv[0] = {0!r}; __file__={0!r};" + "f = getattr(tokenize, 'open', open)(__file__) " + "if os.path.exists(__file__) " + "else io.StringIO('from setuptools import setup; setup()');" + "code = f.read().replace('\\r\\n', '\\n');" + "f.close();" + "exec(compile(code, __file__, 'exec'))" +) + + +def make_setuptools_shim_args( + setup_py_path, # type: str + global_options=None, # type: Sequence[str] + no_user_config=False, # type: bool + unbuffered_output=False, # type: bool +): + # type: (...) -> 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, # type: str + global_options, # type: Sequence[str] + build_options, # type: Sequence[str] + destination_dir, # type: str +): + # type: (...) -> 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, # type: str + global_options, # type: Sequence[str] +): + # type: (...) -> 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, # type: str + global_options, # type: Sequence[str] + install_options, # type: Sequence[str] + no_user_config, # type: bool + prefix, # type: Optional[str] + home, # type: Optional[str] + use_user_site, # type: bool +): + # type: (...) -> 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"] + + args += install_options + + 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, # type: str + egg_info_dir, # type: Optional[str] + no_user_config, # type: bool +): + # type: (...) -> 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 + + +def make_setuptools_install_args( + setup_py_path, # type: str + global_options, # type: Sequence[str] + install_options, # type: Sequence[str] + record_filename, # type: str + root, # type: Optional[str] + prefix, # type: Optional[str] + header_dir, # type: Optional[str] + home, # type: Optional[str] + use_user_site, # type: bool + no_user_config, # type: bool + pycompile, # type: bool +): + # type: (...) -> List[str] + assert not (use_user_site and prefix) + assert not (use_user_site and root) + + args = make_setuptools_shim_args( + setup_py_path, + global_options=global_options, + no_user_config=no_user_config, + unbuffered_output=True, + ) + args += ["install", "--record", record_filename] + args += ["--single-version-externally-managed"] + + if root is not None: + args += ["--root", root] + if prefix is not None: + args += ["--prefix", prefix] + if home is not None: + args += ["--home", home] + if use_user_site: + args += ["--user", "--prefix="] + + if pycompile: + args += ["--compile"] + else: + args += ["--no-compile"] + + if header_dir: + args += ["--install-headers", header_dir] + + args += install_options + + return args diff --git a/Scripts/Lib/site-packages/pip/_internal/utils/subprocess.py b/Scripts/Lib/site-packages/pip/_internal/utils/subprocess.py new file mode 100644 index 0000000..da052ee --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/utils/subprocess.py @@ -0,0 +1,281 @@ +import logging +import os +import shlex +import subprocess +from typing import Any, Callable, Iterable, List, Mapping, Optional, Union + +from pip._internal.cli.spinners import SpinnerInterface, open_spinner +from pip._internal.exceptions import InstallationSubprocessError +from pip._internal.utils.logging import VERBOSE, subprocess_logger +from pip._internal.utils.misc import HiddenText + +CommandArgs = List[Union[str, HiddenText]] + + +LOG_DIVIDER = "----------------------------------------" + + +def make_command(*args): + # type: (Union[str, HiddenText, CommandArgs]) -> CommandArgs + """ + Create a CommandArgs object. + """ + command_args = [] # type: 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): + # type: (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): + # type: (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 make_subprocess_output_error( + cmd_args, # type: Union[List[str], CommandArgs] + cwd, # type: Optional[str] + lines, # type: List[str] + exit_status, # type: int +): + # type: (...) -> str + """ + Create and return the error message to use to log a subprocess error + with command output. + + :param lines: A list of lines, each ending with a newline. + """ + command = format_command_args(cmd_args) + + # We know the joined output value ends in a newline. + output = "".join(lines) + msg = ( + # Use a unicode string to avoid "UnicodeEncodeError: 'ascii' + # codec can't encode character ..." in Python 2 when a format + # argument (e.g. `output`) has a non-ascii character. + "Command errored out with exit status {exit_status}:\n" + " command: {command_display}\n" + " cwd: {cwd_display}\n" + "Complete output ({line_count} lines):\n{output}{divider}" + ).format( + exit_status=exit_status, + command_display=command, + cwd_display=cwd, + line_count=len(lines), + output=output, + divider=LOG_DIVIDER, + ) + return msg + + +def call_subprocess( + cmd, # type: Union[List[str], CommandArgs] + show_stdout=False, # type: bool + cwd=None, # type: Optional[str] + on_returncode="raise", # type: str + extra_ok_returncodes=None, # type: Optional[Iterable[int]] + command_desc=None, # type: Optional[str] + extra_environ=None, # type: Optional[Mapping[str, Any]] + unset_environ=None, # type: Optional[Iterable[str]] + spinner=None, # type: Optional[SpinnerInterface] + log_failed_cmd=True, # type: Optional[bool] + stdout_only=False, # type: Optional[bool] +): + # type: (...) -> 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 = 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 + + if command_desc is None: + command_desc = format_command_args(cmd) + + 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 = proc.stdout.readline() # type: str + 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": + if not showing_subprocess and log_failed_cmd: + # Then the subprocess streams haven't been logged to the + # console yet. + msg = make_subprocess_output_error( + cmd_args=cmd, + cwd=cwd, + lines=all_output, + exit_status=proc.returncode, + ) + subprocess_logger.error(msg) + raise InstallationSubprocessError(proc.returncode, command_desc) + 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): + # type: (str) -> Callable[..., None] + """Provide a subprocess_runner that shows a spinner message. + + Intended for use with for pep517's Pep517HookCaller. Thus, the runner has + an API that matches what's expected by Pep517HookCaller.subprocess_runner. + """ + + def runner( + cmd, # type: List[str] + cwd=None, # type: Optional[str] + extra_environ=None, # type: Optional[Mapping[str, Any]] + ): + # type: (...) -> None + with open_spinner(message) as spinner: + call_subprocess( + cmd, + cwd=cwd, + extra_environ=extra_environ, + spinner=spinner, + ) + + return runner diff --git a/Scripts/Lib/site-packages/pip/_internal/utils/temp_dir.py b/Scripts/Lib/site-packages/pip/_internal/utils/temp_dir.py new file mode 100644 index 0000000..477cbe6 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/utils/temp_dir.py @@ -0,0 +1,260 @@ +import errno +import itertools +import logging +import os.path +import tempfile +from contextlib import ExitStack, contextmanager +from typing import Any, Dict, Iterator, 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 = None # type: Optional[ExitStack] + + +@contextmanager +def global_tempdir_manager(): + # type: () -> Iterator[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): + # type: () -> None + self._should_delete = {} # type: Dict[str, bool] + + def set_delete(self, kind, value): + # type: (str, bool) -> None + """Indicate whether a TempDirectory of the given kind should be + auto-deleted. + """ + self._should_delete[kind] = value + + def get_delete(self, kind): + # type: (str) -> bool + """Get configured auto-delete flag for a given TempDirectory type, + default True. + """ + return self._should_delete.get(kind, True) + + +_tempdir_registry = None # type: Optional[TempDirectoryTypeRegistry] + + +@contextmanager +def tempdir_registry(): + # type: () -> Iterator[TempDirectoryTypeRegistry] + """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=None, # type: Optional[str] + delete=_default, # type: Union[bool, None, _Default] + kind="temp", # type: str + globally_managed=False, # type: bool + ): + 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 + + if globally_managed: + assert _tempdir_manager is not None + _tempdir_manager.enter_context(self) + + @property + def path(self): + # type: () -> str + assert not self._deleted, f"Attempted to access deleted path: {self._path}" + return self._path + + def __repr__(self): + # type: () -> str + return f"<{self.__class__.__name__} {self.path!r}>" + + def __enter__(self): + # type: (_T) -> _T + return self + + def __exit__(self, exc, value, tb): + # type: (Any, Any, 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): + # type: (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): + # type: () -> None + """Remove the temporary directory created and reset state""" + self._deleted = True + if not os.path.exists(self._path): + return + 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, delete=None): + # type: (str, Optional[bool]) -> None + self.original = original.rstrip("/\\") + super().__init__(delete=delete) + + @classmethod + def _generate_names(cls, name): + # type: (str) -> Iterator[str] + """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): + # type: (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/Scripts/Lib/site-packages/pip/_internal/utils/unpacking.py b/Scripts/Lib/site-packages/pip/_internal/utils/unpacking.py new file mode 100644 index 0000000..bffb3cd --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/utils/unpacking.py @@ -0,0 +1,267 @@ +"""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(): + # type: () -> 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): + # type: (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): + # type: (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, target): + # type: (str, 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): + # type: (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): + # type: (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, location, flatten=True): + # type: (str, str, bool) -> 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, location): + # type: (str, 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: + # https://github.com/python/typeshed/issues/2673 + tar._extract_member(member, path) # type: ignore + 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, # type: str + location, # type: str + content_type=None, # type: Optional[str] +): + # type: (...) -> 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/Scripts/Lib/site-packages/pip/_internal/utils/urls.py b/Scripts/Lib/site-packages/pip/_internal/utils/urls.py new file mode 100644 index 0000000..7b51052 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/utils/urls.py @@ -0,0 +1,65 @@ +import os +import string +import urllib.parse +import urllib.request +from typing import Optional + +from .compat import WINDOWS + + +def get_url_scheme(url): + # type: (str) -> Optional[str] + if ":" not in url: + return None + return url.split(":", 1)[0].lower() + + +def path_to_url(path): + # type: (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): + # type: (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/Scripts/Lib/site-packages/pip/_internal/utils/virtualenv.py b/Scripts/Lib/site-packages/pip/_internal/utils/virtualenv.py new file mode 100644 index 0000000..51cacb5 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/utils/virtualenv.py @@ -0,0 +1,111 @@ +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(): + # type: () -> 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_regular_virtualenv(): + # type: () -> 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(): + # type: () -> bool + """Return True if we're running inside a virtualenv, False otherwise.""" + return _running_under_venv() or _running_under_regular_virtualenv() + + +def _get_pyvenv_cfg_lines(): + # type: () -> 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(): + # type: () -> 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_regular_virtualenv(): + # type: () -> 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(): + # type: () -> 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_regular_virtualenv(): + return _no_global_under_regular_virtualenv() + + return False diff --git a/Scripts/Lib/site-packages/pip/_internal/utils/wheel.py b/Scripts/Lib/site-packages/pip/_internal/utils/wheel.py new file mode 100644 index 0000000..42f0808 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/utils/wheel.py @@ -0,0 +1,189 @@ +"""Support functions for working with wheel files. +""" + +import logging +from email.message import Message +from email.parser import Parser +from typing import Dict, Tuple +from zipfile import BadZipFile, ZipFile + +from pip._vendor.packaging.utils import canonicalize_name +from pip._vendor.pkg_resources import DistInfoDistribution, Distribution + +from pip._internal.exceptions import UnsupportedWheel +from pip._internal.utils.pkg_resources import DictMetadata + +VERSION_COMPATIBLE = (1, 0) + + +logger = logging.getLogger(__name__) + + +class WheelMetadata(DictMetadata): + """Metadata provider that maps metadata decoding exceptions to our + internal exception type. + """ + + def __init__(self, metadata, wheel_name): + # type: (Dict[str, bytes], str) -> None + super().__init__(metadata) + self._wheel_name = wheel_name + + def get_metadata(self, name): + # type: (str) -> str + try: + return super().get_metadata(name) + 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}" + ) + + +def pkg_resources_distribution_for_wheel(wheel_zip, name, location): + # type: (ZipFile, str, str) -> Distribution + """Get a pkg_resources distribution given a wheel. + + :raises UnsupportedWheel: on any errors + """ + info_dir, _ = parse_wheel(wheel_zip, name) + + metadata_files = [p for p in wheel_zip.namelist() if p.startswith(f"{info_dir}/")] + + metadata_text = {} # type: Dict[str, bytes] + for path in metadata_files: + _, metadata_name = path.split("/", 1) + + try: + metadata_text[metadata_name] = read_wheel_metadata_file(wheel_zip, path) + except UnsupportedWheel as e: + raise UnsupportedWheel("{} has an invalid wheel, {}".format(name, str(e))) + + metadata = WheelMetadata(metadata_text, location) + + return DistInfoDistribution(location=location, metadata=metadata, project_name=name) + + +def parse_wheel(wheel_zip, name): + # type: (ZipFile, 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("{} has an invalid wheel, {}".format(name, str(e))) + + check_compatibility(version, name) + + return info_dir, metadata + + +def wheel_dist_info_dir(source, name): + # type: (ZipFile, 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( + ".dist-info directory {!r} does not start with {!r}".format( + info_dir, canonical_name + ) + ) + + return info_dir + + +def read_wheel_metadata_file(source, path): + # type: (ZipFile, 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, dist_info_dir): + # type: (ZipFile, 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): + # type: (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, name): + # type: (Tuple[int, ...], 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/Scripts/Lib/site-packages/pip/_internal/vcs/__init__.py b/Scripts/Lib/site-packages/pip/_internal/vcs/__init__.py new file mode 100644 index 0000000..b6beddb --- /dev/null +++ b/Scripts/Lib/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/Scripts/Lib/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7661a73d5a3980883b4a19c691564c8635cb3749 GIT binary patch literal 535 zcmZWn%}N6?5YBe{v#s5b?uIrr*{qX9tZ(Ey_y9gb zuHwO0@MKbo6m~+sFY|p&m<&yu%RxSfeB}&H;vatt$|fCm_{gL(EK}xA*{Zw+P_QRHQNed& zmuq4{xRIo5MqUa{fIV9dOtQ*so!E<$12?L9of2Ld1{D>l7t;lOqZC~19e32Um)yAH zrYsp07C05|q-koqcwwNqs@%Bg?yN#p29$s>J%|Ie19Sp(J-j0rhI4>ln_u9Jy_!NO zTjH~Ga?ck)VS~wBDWP#@*9_lqwepXF5~P^nV^xKaVN#DK~_q^~NQaQk7P)tH?K@!!JnMNfg#N`UAy7r>p<~ literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..397a6bf7bbc5843af11565f2e4ade6c5ced78fcb GIT binary patch literal 3024 zcmZ`*UvJ#T5#J@3Jl-FjPA4h0n>4tjOo_VDoU)}pndAN7m%XuTLjgJL7vphS?fq1Zg9(bn$>Z}H$6;ei;O zy3w}SID1QMpHo;*KPO@P1$aZop=;QqOlcGRvC>&NPjch!Evj6Ej_Le9<6O-5#8Yj0 zJX2Mk9LH6nXCXDcB6%$0v@D8b&Y|DM@mQDfLgt}of_n=+`*eO#n$6EdQED+R^}}*8 z=f9P*l&15UIBedhO#jb9DtPmQa;{~W8}~3(Df)Kx!5HGBo`Mi0qMSqyr;*E@h;cXa zIE#GI;vV;(ky9E4&Do_ozQKo9 zUk81YZ&`it1z{xGfS7F?|9(;@i8SthEo-&|()jx_nWwX`RR_@h(M;>AZm%>|w@_7T z*37B{n6*Qw_&AqW&D24bi1R0Kw^!OdasU8Q0Ej`J6!9T`3Ob225J< zm5T06#(-CvmkU1m$q$s(#OeEs7aMoyKy!LYoN$3K(xDWBe7E*n~kZ^@qVI249>)foT|6c zW%NC8>zhr;cD`klu0RDl;zMgevxofzl%;z{&dCYW^bCMrI!mVAB|W9*kSLmQhr3|m zofDX$r{0OTBxnB8v-BnqA~vpXJeY~}aWyz1s&ur?Yr2jz-W`TOb05QOEv#%Dx`9oR@vK9$WC|f%t~J|U^UDJ>Y}PMar-8%V0pRF4IdxAM_zA#*hwi0^Y;0Jy$aA?3 z_VRlmLf3jHZ{Yws8+vc_bA?D+%AaaT%2VnP3Z;w!1DD<_{mENT`nvUZ8n(s~ zS^IGBxof&=RvyJlb4Xg~*#Eek=g0EG~@ctH6J5GDZA4DaLD z57cW8)J*;fOfBhF$Ei23x!zc%=L*A@&5pGAN{TX literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/vcs/__pycache__/git.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/vcs/__pycache__/git.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d97e371fb5edb7d82502012609a96ed0eb964042 GIT binary patch literal 11753 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 literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0513d30625aafa083a6545fdfa6851a18af0dd7f GIT binary patch literal 7979 zcmds6O>84acJ4nmn?IudHPU!I?#z1Z;o6dHWU;#zw6_bIBnAatMMw2gs$aK@M}? znt@*SIRvrc-m8g<7FmtQDK3TB%vCmDM{dnrT*QmF8@1R@HOS zTywrQ-(09IG#6`&&86B>bGf#xYk}5Z2`-)Mwbj7ruQ3~?%c_(|={Z$$P`aW@1(cru z9gP)P>7m9-!P1#oyBaL_UkI+A>sUv>t5wU7!HKq0HKp}lC=%)Xu$_c)%a3Gkx6_V- zYEBk^H)Jem?FJ7LS!SVVNB*hT_LBp-5(=*#w?rHTUf4IFJiy4_hMfqsYI9 zcP!*`1>?fR^E=6bx6k9I*9wv-u2&6Nx)nE@ev94Y4I#@-|0uwuss)QXH!_33lS-cHC*PA8;OXS-cY*XFC?M@HVq~W8+*=>w{^Tx(EtJ|AYs?$l0e@GhWBmNa6 z&`1Js`+Ch}M$KYoEyt{y9pqV#*$=fdz2*c3mS>JC7tvl|MO7{Z`Oma{ot0Smp@V+q zL4Af*RDA~HX4#zTTfw+_wxG(hC@-=lRh~n6nXRbuJbOvax60NY7HSLZGJEc!R$F9O z*z@>ZVprJ<_+4f$`z`#guxsoa_`SqlWY_V#`k7{FwKd4b%d&X4bMH7iRcVUjR%&g4 zN~eAh)Q{p$Qq84#G`u3jLF!Q9AW7P3VOSD_w-~72?uSuOH`JMBgvvUeTX=p$$Ejq} z*x7xgK`_jEBxI4RYxi&id>K6y`QoIuwYLL-tVeN&?Y;Ib@4fII_xb6bw;RWi*xTtG z1$*BQ;{!kSIoo^R7m!YOH)uk5lVI;|ormp2>|xZN2$NvF?bna|Mj-auVS6)^W$3^r zBxqBNj$osGD%Zq8+=-ayGv?tfZOd!(U_X5D5;iA@Ae7UmUYrA8MNc{32omp}F9HuQJs)cH3e7^(Ic9ogY%foB zoVbkw2H1Gi9{wH$ruU3Q>+4SXCv&07aYW;lIJlFS(UcTp`pMGTUce;6Ibae67 z?`favC|j4bp4qB&^ZfU_`96AK?48LqlS0?%I%h`DxSvmoUE_>UEtlRYx`WT1AnEXy zn;Zmg(|-^)J56_}>h6BbU4WEJf+<{}3WUUW8^ExZ3vluY3P%%hx}zPL4*)M=AimHy zt0if~LRu$&bR_dYxt8Ayq)ieF6tomZT8DAil6LR_=qlu#M^^y-P=bSf$Rc2pC*mXo zo|@Po^eo}k0$;&m(iv_-I>S9ni*8z4SWQUXlf}VyynU>KMhIj!EW(IsNh#Cn!7J(=lWjE;BrAQUdnjq{KNbSv?RP`5@V!wq2qcvD@7o5b$Dz-{|N z1dJ*;PWL$Usq<*I_4SSj)P1-xE$%urT!@pHGdETSPGCl0f{*(CaIpK6JMV3bX23;= z12T*`(P;-FBl|Lt6CX@CSmYp>RX`0g%2PE{|@S7+`WP7 z9v+2Z3szBgAV%p6Q~XUYGr=G+M$avp<_1VZ>ls~*L%B0h{0`N@9P0RO7^+TC3D$}i z7ffkzDYq3Tz&6PLk4}?=xaGEad>GWx2HXQypcwO0_quRz5Tr4M zg>9b$QbwoXnu`|3nJ|(ZZx17`4gYF!d8RN(5vepRa;36uTr;}n1>B- zgk&?&h-6gdThzrOp_@MZN(NTs^pRY)(NSTFm2=eDgPI1w%K8#5|5cfxR?A4&#_nTs zhKUQIdnBgRh5QQ8&UCo#S`*iT!!{1hz6GVx4s*(QnX1Jm1H?BH7_Kw@7v-J>gXf%U zz1)Xz@GX4LOkHc0UWeG8zy#9wBRnmG;hLD%v%9%|f#qPtZmJTQ!mI@Mo!?7}Nhv8G z&fr~z!HqwIG3(`F2K6=U?t9vxR9M4InN#1*zXQjT=?zkHr?sbMEn}{qC$s&zE>`Ll zx&_fm<{4)FOXIIFBZQ>TUtkryv*A`EG)NZvOVoE_u5YI=gZpJR$L679CR-p^^K-LT zOja;+F`F5Jr;EQ<#` z3R==cxC0N>*mzCqY+7)O+YyXCB8~Q&zoNBh;a9bEb4)O&-GGg4(vL{IiNbJfn%jQs zK{HBMzVEZ>lynyM50Q(@{KVgKACo)s6oZ5_#NclTrxk;RjKMzGfk+M5d8G3@=AX z1xS5^sxA@oa-WjU*SHE=nwj4BIgKRCgv5Laq-v%w-HcBBQ{lqH=rjZ61`gs-;j*~(aspo-9NykhoDDrNiv_q) zi@fkDj#Ww`i~YTjdBOdTAN>=SQUYyR>GNZoRY?uX5{!E8Ojr(5XL<-=lz&1<0Rx;T zM@$)S%|lC9^NhrV+iRV}1~6#lBYmfu<9Q5|v+zSEQYK{;O%8a>95Tm45A4DN&{!gf z_W3b}PCHx=(DpC16UtmUhK=j6^A#gq9OGy>(S$M*6pjpFiV6Ui3?8yq4V{_HVmZLQ z(KWL8Pb@I|E+9Pf-C6!;#+ueQ&o$=298oWeA>Tx`zRAcum}xP|CAKn_WXP-!5i8z> zkxZP^?V)j`IZw1|$-e>#_;DwIH$s8h;2g*|r)s^!$tM8_4zfxB!3*}>dKBXAMsei2 zZ*dj#ZMiqygpyb;l2nP0!)!Iwd~k6R#2VS;!?ngEjF^w+qA2o{Pi|B{`NRz;2V{$2 zE0oScA2`$KR3ABBDn{XmQ7&SNE$)XR5L+%F{Z^La+H&9B9}PwXL@wKi%Zrie45oi| zbTDaQeSNU;+q<0nNhR=^mHa|qm-+@`$dK9z>iGLa>L9W}%!gz=WlkLq_vsy(0lp6c z2|cBLmBI9b?1sz_>ask1q0qB}>A<2lXq;BNIT*EQT(tiUa|<%q)~p5Gu%8r7OJ6mX zfG2ahWtG3Qfg%&wF+IbC5D#^cutQt}Q39-YbnZ|I0*kN{9vTHeng{op+++W92-{d% zV6gY0K>S~&4fppoGW(Q#x(7b+3{knyP7%K%!*Cz+4zK&wk*xV{-AC-m++#8>?n#K$ z1f&R90T~+g`hO_hJ5__9;P&{ZASf#dEKz>#8FDpCp8eSS|D^jT1T2hZ#pXKF>^QZ9uZBIsev$91XJyS#E-E%tgFKvWp}}JdRe$ zfuCf6gg}f02ca~$9J}D%gFpnMJO#or*KflcsZ%apg>E!zKc)-`A=(gmMCTq^IOHaf z%EAUl0uxg93(%r+5o7BRw5_|tT<)lQ)=U|x`oUCVrww-__*zjUG$0KcY{4Zr%0(^` z=DP*3#Tih*O}~Tvj$zyU`g$vFt&jbM02v_v^f4Kzba8zh&Tl;!??4ix%;7`y7)cB; z@>vpdX)G30kTSTj0`5=+_4bU7RE$%A>=@~_DcKn$p~nZ-DV!gEY!t|_D;#7`qgYNu<4 zXN^c5u{w_My5Ngg1c~AMRYw++7=N*-|7G~wXyzXgp)K(ekF-RVJpY+ ztBRE_jh*Lc*u)8vJ3?DlC-@Qy2^^9Py>Ujy;EZyJx#3`RtSv{Pl!x1#Qzj+-z8QENRR}jd;)ELer)sEQcvxicCU6$k;YRy*Uzl4 z-FK!={1+I*|BT4ghJJ~*x5qbRJiVd8936D6UY76~$@}$?7xuhn%sTk@&68!%BZoJ8 z!v(G6g2)07+OZlS^I6hT$dW>dW`KMV<7?Ebj0|-W)(1_`(dgHSP$HARLF6qWKOl0Q zNJ51CQU&LnG*rnT|C~y6%A7cpGlTSKJ%EoeNRg@&P&q}FES*O`3h2Z(h@;^`)Ym{_ zar8Woz+(oFgSH}`RXpED?mFkpIxjfOj_b_MIhTtkOWNW+$g@Y9LpF zn?y*lr=!eH5=LU98HzfmyUw(WG(O9WQEot9oeWH~AwXqh-Rc2Sr6g8LM5Q~~6NYSK zVCcwG#h;g)(oZS6IEQ6V);})B6zkl=_-`n^nU&v&Bj~AnVHZESo zC%A58GG3;d@eI#w8dXES&8jKiR@IVkyK2jKwwlAY)y%gF)k3RSEw)P4QfsC<(<)cX zt=Z~qYpy!iI#4~(ny=2c4pt8uoY!tHv<_7dNj=*<+&WS{(mGl_D%ZK@vDWeG@z!E> zv2~()qV-7ik=DuT$=0LQM_Z?=r&^CyACrFhrqeoIJ>5D}J<~c{JuCML&Bt5ks^?HI zt{c@Sd}H@Xe`(LCR{R70od1!>p%N;rurQ2 z9rqS-ZxQ!C>X|n(l}GxO&$?}|=?9M6Y&vgVz2Piv`6_61+D^UG4ppaFae`jA+fm{7 zc`z%LQe?f<-j3{78uc(Lyc+t-U2XbtE$pbseytINQT}ze+ikShqr#7OLrmv3qwLLI z7d`Ep+g(4(ey)wX6(gFzfo^SIz1qf9Yi`}Im{I9v*Sp$jwXn44;H&K*#Nu4e@@b_y zs#1tbpKW-a-@fVJ52FKaaHrOF!;PAMA5RXV(yCj()9co}hKkBwBj`5WZRrpdHX5E^ z>#1f`lG>Kr?D^3`Bd9gvhhQr*E~i?d^8Jbx&BP0NNv#LbfjU-F3woE{{ z80#6&`lb;Yo9401Rt6_!_n$2}_`B|hJ=JzX)$^UkniFpLPTOtyPP5aw6FAMr9p7=C z&s~3QS$eNrtJsmf5r*9;%QA@UwFb_>S_``sOP#>;)gvgP8QGVtIluwfoHNSlO+3h` zv*`2QTh+_ARsivOv(xi#U3#weT4PnYYWr60W~b8(Zmsn0__tnebT-_+tGrvUy8%wr zx#_oX0HJ^DMqM?!VQ>qhZUv3dztF`ox$Ay#tJ~;a#0j7`(BvW@b}`1m7zLNR+ffdO z1h}5ZLV^N{LbhPo#)6^F;i67Hk^JRQ$>Jjr{un9)b65Drp1ETWGT#7X2L?)eV1Fa? zZgwX-u+-up>){*M=EpO*lLf@{{a+n}I3NwUI%^#T2$NEjf4A3AIOTS@T#~NDk;_tZ z(Aw>A#h2xb(5(~tGK{-$?lr;<$8B#rZQu8NPa3+)Uu)cVmi*=QW#`O#BYf&iMIWQ% z0N*zKdRXJR=oy!KZ9k~HUEixDt%3=9#Cyht$f&(%yx7m4_1D**@6SB}tOZ42l8)Mb zeg(Li#}b<)xLj07RvTH$--^nkj{_RW$Y>rD)y7)T`L5uGE*=N4qvJvmIKb4X3uBvZ0<+raXcv!*&Nnd)}4Qx{fsdpV_5OiKRbgq>to zJ*V=?)wX;#+?EsIqi*XHj0t_E(@qIJUXmW%2u8=8cYv04x83GaeIRMC?df^?KYq2- zYkCe_*0@i1Vuym!DP}n50%s{y4d5gtLf2J5ZzpMP_(5f*Qcy>5GLhKJxvDMPKLElC%K^4E*%=I}kiaM^rn`=2JF2l>OIv1}U?1t_B$6$0Cz|Pp zofIbty&6vfs0ZTXm+P+F#8n)V;t*}@;r%>ofkbp;*j_>BFLYrlw3 zP)6ZrpmSuXZvbt~=+Jec=ao))jgS_xv;tvKs0oGEYEh|HYjwOH#7QkG*J^irZj%tI z)kd~*785HHjd~u1hfhG(?o2I-t^5nlpcpR6x7N%rXV#z^dDc7Ss{LhW z@gj=I3PPngOEeqLU-u!8M`8LIc9y5TgxUr^F-%Vwig%`9%00ixZa;=%2-B)nG>fKp zz_UCXYMAY1y&TlAte^ApUf~^x>}uXCdL`T|cr#uZ-$ifMo5Qz=@XCBty6$gjLwM=w9cKk3QW}m>Phq1`Az5WK z1O295-w>Lv*y{KraKdD53`03e^>NZe-L|G-53RCoU*D;Q4EA zuNm@W@aQe|2JTKkFUrS_KaIA4dR)mW0D}F6;bxcPE@SJm(3J?wrv}t1fTRMv9diJd z-80ldqUolwi|aiDDxRS2rlo6wv{zE3O;l`%?J)|CwR{IF=uznd-HqUpx`F2k@S}q? z0#@C?=SBq;1y=wMVo+pbf#(XE7ba+TJ0bgePl+lbyboONytCR1W7Y^Q z`W|-@GeVxqOCzc{uhIGetb|Ivm{ORhvr0{Sc(#BFDIKCupYFUUxIEdI{p!OtHJu3n zCyuosBe2GA5ppD;g~AxICG8K)m6giOq}0pTYF?)ff~DkBe+ETVfGP+f9Byl@dy@@S z7I31BQk5)37}K9dLmM9v@6a$zvt$~j9~O?7cF8E@3$x|CVxKxbV}DkB6%0^Gp@OJ0_Oa@2RSKHvVeNQD@whHx;Qu>Jxk)?$W&)y2S-`EH>$JR ztx=uR?u_aI(Prj>wMV1UoAuy^_C~;Hv4UVDvS24g=Eiztt@h!22w>QvVXM6_WpFRS zDHNe_E7}p8Hg%jZ3wGhYZ2bqx*+^I;mjZo`XCX?&baELCS1tH<4y`jlFb%CbTT&uS3GA zZBfTyKm$wmp<|$+QZ1x1p zS7^61gBMUq#^51$F=BssBm@6VGV%O4Jd*aY?Qv@<6LoNrNV!)sUnoG*8PM3xO~^MR zb2mE}o|0b29Sl%S6tNhRx(aw#&{PUx6%OwGTYSXNVp}De>PG+Q$i7FMMeon%$uxmA zaBID726G{B2WpJ5X^EANGeRBin9b~#p&lO?Z}VKS>P`Df27PmM(ttK;(W5UvkXnjr zP53+2iWe9aWh^31xcKo=aQm>sn>bqQ)=uKwXupjo1jGWo9*VuwYj$_zW4*jzz z8gRI9DdaRjtfSQSp*F!3g!jx24&Kd&)-L?)Sh%&B-LqgITCfCgYu;sT=*d7Y-{;5}doLQ>@PfECf-f(e{l@o7>9Q1`*cl>SmHHZhQiy}Hi9d5V; zaVBWgp?WWf7+Ed%eq=TMHZ0X^y!#1`EN{X0l`ynuX5=b%cZkd6usFTpBY>BKj}d3a zB)-Wa;;CxTQRtffeLN!|=GeJ8>V<|0`yz+aE}1s;v2w0p^iPePyVga8{U%e4A%KOc z_z?tn0+o@&pCMNvPXT_;4@?vC@dkJcHOdEO|C8wne8_P^xuP3ucp}uLQc#aEr88K7 z`U@=1rUjW&baZkbTJAnXn>ZEcvQT3T^C9%)(;u*VJ!%X9iPR7P9L9WLq?tW!K+s?S z=0k4$MKsX)(d^vwm6muGmZbW)Ke^VKk+l{LERbBgkS&ih(UDG-gA+QRh7P&4Rw*dI z)om6cQ+lj9EVfy^#o`?ne~HCkW>^v3DJxu|IC-MSOxE!{!o|&@&i?V+0Orpos{a2?vQ)E%-&P6jJ3wJy8p1P*2pt zGU|z1IP1@8#Sr}u#H!&u+CM4kp@F*xakaq67wQYBOVkVXL#Rv43-!a8MPgm3A3-eb z5h$fcaqpz}sEj*?zNfs$q<-9Uywhl3^v-x^@qNO3+&hQwN6_a9?@8%%(p&N>xc8{{ z5$`E{pF-Pt?}D^FhWfI1QRoOBgCd?|r$i=VZ`e1ce`G)1r1})v&4>IV-xr{mTs?0IPMh z5m^wF`{N+)};Uk1bg*Mqdv?7w5wP&b>gy670xo`Sh`0q3&MCR7*Ma5gQ33yEG9s5%fWJ*Q6+*JyN>=1L|!cBbefM(&|) z_0Q~sdlSRQEImvGRcnM3g_$oIptfI3cRa$0=x78^#3Tpzp>|G6SkHyW9bo{Sp74L; z9dm~>;>hB7!?NSVrWaxf6B-?2K8FwvdlkWciHQ3;)};Pi3ORux!KZGbxPkrs0aY)% z*q;am2x*SFPseD|!k`2=>aXCUV!2h^n1anniUc9h2#Jsz4w4+84SP-p?nBUs=OaSU zazoq>(kV3GjX?@N3|t(AUh|&2P01&?ehr2{ypgb3IEuEY*MV`tcx#+FGmNyzQ8dEz zIb4vR#BWFhHyO5RK|pt)l_b;1isJ_;_(ky%e}mI&>y0s{Q{QmgNTx`q#;Rp&?iy?# zy=m+iAtgxsM%Nkg2~ufWGnYD1N&7#f;O%hci7p}?D z@!T)sfW(7hm#3uj`wp5q_AH)!6`#~2Me79aV=7Np|J`)&F?G0zz$Y=6)UBI#n&f#{ z?zo3|e;P=~J36TJqlTK)PhjDYZQ^AGC`EKXg?szPk(m0>Okg%wniAQQKIk!#P2Gi5 zBA}v4M|Y>TWNw)|CM1-xYl#aK&d=@wWRpp!9vIB_$nG4P-}fDNHRv>Z$X%hv6F?e4 zWz%l=PO!{-%YolLKROP4{n=+67<^;BJ;h9iCCN~#U%mwi;Q6YOjsxRXPh+X-85GbA zyUj)@L)1_4hJ}Yj_A2s>5Qh^b(Wa<~veGBAL$@)dD;}-^vxHE9iit1bK7mRA&F7CA z{j(E{dA|`;SV*oVpk*Es{ab4izHqB(NcZywUB;>Y7W*-fKLm|gdyqkiNXCeH2ssC1 z7`lm460$y>YcvYnLmo+^O_?fLCZk+wBI2Rv(kRW`iUyLa@Vo>NlFX$047F0n(FU>} zHQpI3*Nt-e2i*94Q`4KE>#+e1_BGZeg>k0Mhf9%vaB!Bi7V%;QHhu$$k7bPLH@>&*yxOiedmfaN;h=a7Gt;Pz zgZsZId2%T=h3UB0;aM^FhF&d*_;lT)vQAVxPg=6+#Pq|L4*pQu! zs5WPGc1x=IpNSEaoTsx2(b!%ZVI(mRF#+tDZ6cf;Gn`2-GMnldm^}D47N>RgT>s>R zJ$CW~@DL#JIEt@ zw*X7q2Gti}Lz_EAt+xz{TKx9!?gu5}HEDMQT5*g)%h*v6jZixYF=Vzns5mC*B-%d) zN$PY^T>dt`kS6QbAD0-4gxpZ?Wm`u<1bDlpe?5 zWfT1l(F}M}vV_S~5?-I+YAo~qF;SI4(**da;qetmkkxOb&|jf$(rom}3kZHne@0PV)d-MRi$vO9`);oj(lZ3X%F_|{z-weg zr}H3s_y^)JO`9(3Xll5aR&?@$#q`){VZxGFn`CU}pI8@K@h5(co810ALvHbOA}#yXxT z;Aq$7E)+Gdv9^XtCe!(bTc`Q(Yj|pGK14P)^0buCOzyUCuXLid z22Raclj)edE7D;&%ZQMjG}vf?YDE=3L7mr5#;2zuiyY2^`$H&7GEhQGOcI=84#U1H zin`8&IQQ>e)HQDXDr;xc;&IfXqC6Q1BKQ6y;HDX6segO|-f5=~1@_RtbpzTbpq=cA zZj0Nux&7O>x#MmJFHf*?`!=xaHWJ8F=uX0Hgp2%0J6Hca-J|SQHkzZ$zP|B4(p?r1 zX&(2k>K-4u#h*+U`nj%$)KqHJZWCFm-u4A~n}<{(WP{yt`#Q*b`}W8_{y*%uCyV>v z*suBxz+-B+x_ydMOj6Ic(%r^#d^8l(h|Ll|am~cOA_p!;c$h|Z&t%vSIN~8$jNpGt zAw$%5@UGPwUQO2eCxp|l6HccmuwuIJ z7|h0OjNisA30Ku#i}=+KNSxp(THsly4ZsWp25OL{kVVuMDJ8Hi&_`{eme<~Q)C$lc z%*`TR1gVCl-5JTKE$`0mWx_cmpJ1jv8<`B5-2<4_+MM4rgB$2~(6i$9%w~CD$9)#Y zpDg_(jg0HS)gjn2na#ual;hFay)0Il+sU=d(vEc{JvgUV*vZL#rqLe8TCk_^h*#P@ z3T=b0=LcG?3JpGZ~lUQSc^8hN-;}2o{_b~3DH@Z*cfpDi7@#r{=B$Rf< z#a@Rl63JJ`J0_5Ynt&)Ue6Jxn=?>nW(EgM7H8HXQ&J}zP`)Q zKHQc#M5kOEDQWQW+Pnd?iCx~q#SIB3o(!^gYA)(K;vpm7qRRl(HR>TDVexOJUpa>y z{5Dfj^jnMC5T*51heZf!Cc4uSQkVMk!W%gwdY=oB>Gb%GI}Lfe68@073pGArngHa5 zuycW|bh&>@x{p0YuZgR~#Ag58Qcw|A4r{ehp%wx^%+kF|qs#Brio8eZAV=N^BBK!* z_abApf9aJ}+TsB*w;tO?Y#q9Ky~}veBOf%qrGAr)<+oTc)2{#2O>la=n%1VBIdT>h z0C?mGTLUZ(e4b7t^zu5NLI7z;0mU-vmr+E9`~8RblbQQ7ulP-0l+JU3e$1hlu|I+p zuXABqOo0|=EreV@Ind>g(+C z9TrT#80HeiSwZB!Q5Fhe(^u58)xTyz10k}-3-+&gEqQCFS)*>Reud2z-a(6OEF@HX zcSjxM&0Mh23meVIrs1vrC2qko79(U_iP45doY@_f6QN5LIm*Gu06zdDVnMglMha|! z!i9U9)O~W=&MZNr4!F^|Vp%fd3J8Pg1VR%QNDk(){lmGOPFi9qS61nvjRbdG;a~dv zAeWcdwB(NcLtCz-{~za&5^p|a!czgMi3Nn(3X-5$Flpx?A?jh-VoqMclKwIuX8yrK z-u|O0!L3(4CWI`ko~rLveBu{$6X&@qg>ao~mI^}@LW8O6VBb1@{o5%!y4v)Cyg;iY zX`NnZzP~Ki&RFyoa2`SEbcQ9GMdTbj`k;a@pl346P`&$qz>3sA#YR^u*&$M^e}_97 zmHrcIN!aHTyh{sq>g;=M^5_koeGctqylS^#Ou<_B8gmWM{vx>&)`^Mn^%Mpp&JIEe zY|f+RI}L^FZiDH3*QejfOQLc^f*eNGHe7h5TmYYM=B5wjlknQ{T4TM3IQx+4YjsHd zG*@~yEvOC)VTag?`fIrAKRPap;yeRBgEaM_+ut{#B0(dqXu)z!UW$;||9GT70nd-L z^q;|s|2&ue_qg;)(@>{KXjkaXC<}W$@UPWp&^7sEeHI@f7QP^$)5O=|js2!^J@Zv$ z(e)3)lOviMy|shf03Mx9_;3crK?&qD^LhBV>`Z8HFB`xGXf4Q)Ko5g&JH_AjyIFdX z(JQz8eANy3CYt?kW6Q0X+XM zf&w7CiMRZrYXI+%a-_9zOq$LV&n&967U2@{WJgLR2rMoEV$9uwH-j(Rr9<&E2D6a2+T!P0S&D z3+f6QmGj0+H$VHS{^AM@PiEBy$y;(C;qzAv;M+zF8$S!sb(b5Ri+=l} zyiyrnL?)Pany?+O0{ed7zjzkeVG!jPhO4~**9+coUS2^8$Re;-XNMeT?e|ec2d@Ee zV=wnAVtI7njda7}nZ~<15{R)hh&MX-Y8uYS9>3?Q|H27>kHvpw@jVv*jm3Xw@qHF& z(?Trk8P#hizb5fz&}FcU_JzZgopdeppHhwgg+D46O-MjU%!ibDCh|+|hvpCZCngxs z$dpsuhwS<)J^|BTLS!^aUN@2mNuztv)MaLDr#j8i2XYmTgj?@ts z!K)HDYC$OxO&LMdIP3~K5CuEQ+Hryw!uw!^9x~?ZB)asFTRt;P8bM2YFVpvyp`?sF zNjPgA$`3e63+4p*Al3MNRpO9YGW42+h; z{1R&nfl1Us2O7jE`8D4A4hu0xsPZeZ8N`sFCa3;03$a6fhPD66LLfwFjL^ziUW#t> zlc*g55(itTFk4*ytT_>;%?BGhrb4^uYG8C(_dIfTzC+|8TwsG%=1%gg9f zLT#q-MYD{%sGG<>*Gz3#mjBRv8ZE^+LvaoIWtfkt8tPG=zcK+CXF+bD=zUTp7Sw8@6O=INuhJ~nn~mjI zxCW}s4#&qk`1k9+PB#!)p(HRl(T5gUundt|R|ohYvEgX0X^W4cA{{4w|h-~t3%`NbDZW?&QN#> znF6me!{i+AU1D*C4aH9F@AC+Lwun@skxT1dz;|1W7ens2P q&|=g7myGi4ys=~)E|n2dEm?<6*mg68gYzfxs$_2N)!a`kSpNr3UkjuF literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_internal/vcs/bazaar.py b/Scripts/Lib/site-packages/pip/_internal/vcs/bazaar.py new file mode 100644 index 0000000..42b6877 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/vcs/bazaar.py @@ -0,0 +1,96 @@ +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): + # type: (str) -> List[str] + return ['-r', rev] + + def fetch_new(self, dest, url, rev_options): + # type: (str, HiddenText, RevOptions) -> None + rev_display = rev_options.to_display() + logger.info( + 'Checking out %s%s to %s', + url, + rev_display, + display_path(dest), + ) + cmd_args = ( + make_command('branch', '-q', rev_options.to_args(), url, dest) + ) + self.run_command(cmd_args) + + def switch(self, dest, url, rev_options): + # type: (str, HiddenText, RevOptions) -> None + self.run_command(make_command('switch', url), cwd=dest) + + def update(self, dest, url, rev_options): + # type: (str, HiddenText, RevOptions) -> None + cmd_args = make_command('pull', '-q', rev_options.to_args()) + self.run_command(cmd_args, cwd=dest) + + @classmethod + def get_url_rev_and_auth(cls, url): + # type: (str) -> Tuple[str, Optional[str], AuthInfo] + # hotfix the URL scheme after removing bzr+ from bzr+ssh:// readd 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): + # type: (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): + # type: (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, name): + # type: (str, Optional[str]) -> bool + """Always assume the versions don't match""" + return False + + +vcs.register(Bazaar) diff --git a/Scripts/Lib/site-packages/pip/_internal/vcs/git.py b/Scripts/Lib/site-packages/pip/_internal/vcs/git.py new file mode 100644 index 0000000..8919aa5 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/vcs/git.py @@ -0,0 +1,506 @@ +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): + # type: (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): + # type: (str) -> List[str] + return [rev] + + def is_immutable_rev_checkout(self, url, dest): + # type: (str, 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'], show_stdout=False, stdout_only=True + ) + match = GIT_VERSION_REGEX.match(version) + if not match: + return () + return tuple(int(c) for c in match.groups()) + + @classmethod + def get_current_branch(cls, location): + # type: (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, rev): + # type: (str, 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, rev): + # type: (str, 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, url, rev_options): + # type: (str, HiddenText, 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, name): + # type: (str, 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, url, rev_options): + # type: (str, HiddenText, RevOptions) -> None + rev_display = rev_options.to_display() + logger.info('Cloning %s%s to %s', url, rev_display, display_path(dest)) + self.run_command(make_command('clone', '-q', 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) + 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, url, rev_options): + # type: (str, HiddenText, 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, url, rev_options): + # type: (str, HiddenText, 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): + # type: (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): + # type: (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, rev): + # type: (str, 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, rev=None): + # type: (str, Optional[str]) -> 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): + # type: (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): + # type: (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): + # type: (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): + # type: (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): + # type: (str) -> bool + """In either https or ssh form, requirements must be prefixed with git+. + """ + return True + + +vcs.register(Git) diff --git a/Scripts/Lib/site-packages/pip/_internal/vcs/mercurial.py b/Scripts/Lib/site-packages/pip/_internal/vcs/mercurial.py new file mode 100644 index 0000000..8f8b09b --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/vcs/mercurial.py @@ -0,0 +1,158 @@ +import configparser +import logging +import os +from typing import List, Optional + +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): + # type: (str) -> List[str] + return [rev] + + def fetch_new(self, dest, url, rev_options): + # type: (str, HiddenText, RevOptions) -> None + rev_display = rev_options.to_display() + logger.info( + 'Cloning hg %s%s to %s', + url, + rev_display, + display_path(dest), + ) + self.run_command(make_command('clone', '--noupdate', '-q', url, dest)) + self.run_command( + make_command('update', '-q', rev_options.to_args()), + cwd=dest, + ) + + def switch(self, dest, url, rev_options): + # type: (str, HiddenText, 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, url, rev_options): + # type: (str, HiddenText, 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): + # type: (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): + # type: (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): + # type: (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, name): + # type: (str, Optional[str]) -> bool + """Always assume the versions don't match""" + return False + + @classmethod + def get_subdirectory(cls, location): + # type: (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): + # type: (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/Scripts/Lib/site-packages/pip/_internal/vcs/subversion.py b/Scripts/Lib/site-packages/pip/_internal/vcs/subversion.py new file mode 100644 index 0000000..965e0b4 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/vcs/subversion.py @@ -0,0 +1,329 @@ +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): + # type: (str) -> bool + return True + + @staticmethod + def get_base_rev_args(rev): + # type: (str) -> List[str] + return ['-r', rev] + + @classmethod + def get_revision(cls, location): + # type: (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, scheme): + # type: (str, 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): + # type: (str) -> Tuple[str, Optional[str], AuthInfo] + # hotfix the URL scheme after removing svn+ from svn+ssh:// readd 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, password): + # type: (Optional[str], Optional[HiddenText]) -> CommandArgs + extra_args = [] # type: CommandArgs + if username: + extra_args += ['--username', username] + if password: + extra_args += ['--password', password] + + return extra_args + + @classmethod + def get_remote_url(cls, location): + # type: (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): + # type: (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, name): + # type: (str, Optional[str]) -> bool + """Always assume the versions don't match""" + return False + + def __init__(self, use_interactive=None): + # type: (bool) -> 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 = None # type: Optional[Tuple[int, ...]] + + super().__init__() + + def call_vcs_version(self): + # type: () -> 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): + # type: () -> 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): + # type: () -> 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, url, rev_options): + # type: (str, HiddenText, RevOptions) -> None + rev_display = rev_options.to_display() + logger.info( + 'Checking out %s%s to %s', + url, + rev_display, + display_path(dest), + ) + cmd_args = make_command( + 'checkout', '-q', self.get_remote_call_options(), + rev_options.to_args(), url, dest, + ) + self.run_command(cmd_args) + + def switch(self, dest, url, rev_options): + # type: (str, HiddenText, 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, url, rev_options): + # type: (str, HiddenText, 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/Scripts/Lib/site-packages/pip/_internal/vcs/versioncontrol.py b/Scripts/Lib/site-packages/pip/_internal/vcs/versioncontrol.py new file mode 100644 index 0000000..cddd78c --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/vcs/versioncontrol.py @@ -0,0 +1,722 @@ +"""Handles all VCS (version control) support""" + +import logging +import os +import shutil +import sys +import urllib.parse +from typing import ( + 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, make_command +from pip._internal.utils.urls import get_url_scheme + +__all__ = ['vcs'] + + +logger = logging.getLogger(__name__) + +AuthInfo = Tuple[Optional[str], Optional[str]] + + +def is_url(name): + # type: (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, rev, project_name, subdir=None): + # type: (str, str, str, Optional[str]) -> 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, repo_root): + # type: (str, 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: Type[VersionControl] + rev=None, # type: Optional[str] + extra_args=None, # type: Optional[CommandArgs] + ): + # type: (...) -> 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 = None # type: Optional[str] + + def __repr__(self): + # type: () -> str + return f'' + + @property + def arg_rev(self): + # type: () -> Optional[str] + if self.rev is None: + return self.vc_class.default_arg_rev + + return self.rev + + def to_args(self): + # type: () -> CommandArgs + """ + Return the VCS-specific command arguments. + """ + args = [] # type: 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): + # type: () -> str + if not self.rev: + return '' + + return f' (to revision {self.rev})' + + def make_new(self, rev): + # type: (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 = {} # type: Dict[str, VersionControl] + schemes = ['ssh', 'git', 'hg', 'bzr', 'sftp', 'svn'] + + def __init__(self): + # type: () -> None + # Register more schemes with urlparse for various version control + # systems + urllib.parse.uses_netloc.extend(self.schemes) + super().__init__() + + def __iter__(self): + # type: () -> Iterator[str] + return self._registry.__iter__() + + @property + def backends(self): + # type: () -> List[VersionControl] + return list(self._registry.values()) + + @property + def dirnames(self): + # type: () -> List[str] + return [backend.dirname for backend in self.backends] + + @property + def all_schemes(self): + # type: () -> List[str] + schemes = [] # type: List[str] + for backend in self.backends: + schemes.extend(backend.schemes) + return schemes + + def register(self, cls): + # type: (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): + # type: (str) -> None + if name in self._registry: + del self._registry[name] + + def get_backend_for_dir(self, location): + # type: (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): + # type: (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): + # type: (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 = () # type: Tuple[str, ...] + # Iterable of environment variable names to pass to call_subprocess(). + unset_environ = () # type: Tuple[str, ...] + default_arg_rev = None # type: Optional[str] + + @classmethod + def should_add_vcs_url_prefix(cls, remote_url): + # type: (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): + # type: (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): + # type: (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, project_name): + # type: (str, 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): + # type: (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, dest): + # type: (str, 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=None, extra_args=None): + # type: (Optional[str], Optional[CommandArgs]) -> 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): + # type: (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, scheme): + # type: (str, 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): + # type: (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( + "Sorry, {!r} is a malformed VCS url. " + "The format is +://, " + "e.g. svn+http://myrepo/svn/MyApp#egg=MyApp".format(url) + ) + # 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( + "The URL {!r} has an empty revision (after @) " + "which is not supported. Include a revision after @ " + "or remove @ from the URL.".format(url) + ) + url = urllib.parse.urlunsplit((scheme, netloc, path, query, '')) + return url, rev, user_pass + + @staticmethod + def make_rev_args(username, password): + # type: (Optional[str], Optional[HiddenText]) -> CommandArgs + """ + Return the RevOptions "extra arguments" to use in obtain(). + """ + return [] + + def get_url_rev_options(self, url): + # type: (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 = None # type: Optional[HiddenText] + 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): + # type: (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, url2): + # type: (str, 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, url, rev_options): + # type: (str, HiddenText, RevOptions) -> 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. + """ + raise NotImplementedError + + def switch(self, dest, url, rev_options): + # type: (str, HiddenText, RevOptions) -> None + """ + Switch the repo at ``dest`` to point to ``URL``. + + Args: + rev_options: a RevOptions object. + """ + raise NotImplementedError + + def update(self, dest, url, rev_options): + # type: (str, HiddenText, 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, name): + # type: (str, 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, url): + # type: (str, HiddenText) -> 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. + """ + url, rev_options = self.get_url_rev_options(url) + + if not os.path.exists(dest): + self.fetch_new(dest, url, rev_options) + 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 ', # type: ignore + ('i', 'w', 'b')) + + logger.warning( + 'The plan is to install the %s repository %s', + self.name, + url, + ) + response = ask_path_exists('What to do? {}'.format( + 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) + 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) + 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, url): + # type: (str, HiddenText) -> 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. + """ + if os.path.exists(location): + rmtree(location) + self.obtain(location, url=url) + + @classmethod + def get_remote_url(cls, location): + # type: (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): + # type: (str) -> str + """ + Return the current commit id of the files at the given location. + """ + raise NotImplementedError + + @classmethod + def run_command( + cls, + cmd, # type: Union[List[str], CommandArgs] + show_stdout=True, # type: bool + cwd=None, # type: Optional[str] + on_returncode='raise', # type: str + extra_ok_returncodes=None, # type: Optional[Iterable[int]] + command_desc=None, # type: Optional[str] + extra_environ=None, # type: Optional[Mapping[str, Any]] + spinner=None, # type: Optional[SpinnerInterface] + log_failed_cmd=True, # type: bool + stdout_only=False, # type: bool + ): + # type: (...) -> 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) + 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): + # type: (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): + # type: (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/Scripts/Lib/site-packages/pip/_internal/wheel_builder.py b/Scripts/Lib/site-packages/pip/_internal/wheel_builder.py new file mode 100644 index 0000000..92f172b --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_internal/wheel_builder.py @@ -0,0 +1,360 @@ +"""Orchestrator for building wheels from InstallRequirements. +""" + +import logging +import os.path +import re +import shutil +from typing import Any, Callable, 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 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_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, is_wheel_installed +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) + +BinaryAllowedPredicate = Callable[[InstallRequirement], bool] +BuildResult = Tuple[List[InstallRequirement], List[InstallRequirement]] + + +def _contains_egg_info(s): + # type: (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, # type: InstallRequirement + need_wheel, # type: bool + check_binary_allowed, # type: BinaryAllowedPredicate +): + # type: (...) -> 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 req.editable or not req.source_dir: + return False + + if req.use_pep517: + return True + + if not check_binary_allowed(req): + logger.info( + "Skipping wheel build for %s, due to binaries " + "being disabled for it.", req.name, + ) + return False + + if not is_wheel_installed(): + # we don't build legacy requirements if wheel is not installed + logger.info( + "Using legacy 'setup.py install' for %s, " + "since package 'wheel' is not installed.", req.name, + ) + return False + + return True + + +def should_build_for_wheel_command( + req, # type: InstallRequirement +): + # type: (...) -> bool + return _should_build( + req, need_wheel=True, check_binary_allowed=_always_true + ) + + +def should_build_for_install_command( + req, # type: InstallRequirement + check_binary_allowed, # type: BinaryAllowedPredicate +): + # type: (...) -> bool + return _should_build( + req, need_wheel=False, check_binary_allowed=check_binary_allowed + ) + + +def _should_cache( + req, # type: InstallRequirement +): + # type: (...) -> 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, # type: InstallRequirement + wheel_cache, # type: WheelCache +): + # type: (...) -> 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 _always_true(_): + # type: (Any) -> bool + return True + + +def _verify_one(req, wheel_path): + # type: (InstallRequirement, 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( + "Wheel has unexpected file name: expected {!r}, " + "got {!r}".format(canonical_name, w.name), + ) + dist = get_wheel_distribution(wheel_path, canonical_name) + dist_verstr = str(dist.version) + if canonicalize_version(dist_verstr) != canonicalize_version(w.version): + raise InvalidWheelFilename( + "Wheel has unexpected file name: expected {!r}, " + "got {!r}".format(dist_verstr, w.version), + ) + 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( + "Metadata 1.2 mandates PEP 440 version, " + "but {!r} is not".format(dist_verstr) + ) + + +def _build_one( + req, # type: InstallRequirement + output_dir, # type: str + verify, # type: bool + build_options, # type: List[str] + global_options, # type: List[str] +): + # type: (...) -> Optional[str] + """Build one wheel. + + :return: The filename of the built wheel, or None if the build failed. + """ + try: + ensure_dir(output_dir) + except OSError as e: + logger.warning( + "Building wheel for %s failed: %s", + 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 + ) + if wheel_path and verify: + try: + _verify_one(req, wheel_path) + except (InvalidWheelFilename, UnsupportedWheel) as e: + logger.warning("Built wheel for %s is invalid: %s", req.name, e) + return None + return wheel_path + + +def _build_one_inside_env( + req, # type: InstallRequirement + output_dir, # type: str + build_options, # type: List[str] + global_options, # type: List[str] +): + # type: (...) -> 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 + ) + 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, global_options): + # type: (InstallRequirement, 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, cwd=req.source_dir) + return True + except Exception: + logger.error('Failed cleaning build dir for %s', req.name) + return False + + +def build( + requirements, # type: Iterable[InstallRequirement] + wheel_cache, # type: WheelCache + verify, # type: bool + build_options, # type: List[str] + global_options, # type: List[str] +): + # type: (...) -> 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: + cache_dir = _get_cache_dir(req, wheel_cache) + wheel_file = _build_one( + req, cache_dir, verify, build_options, global_options + ) + if wheel_file: + # 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/Scripts/Lib/site-packages/pip/_vendor/__init__.py b/Scripts/Lib/site-packages/pip/_vendor/__init__.py new file mode 100644 index 0000000..57e32da --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/__init__.py @@ -0,0 +1,111 @@ +""" +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("appdirs") + vendored("cachecontrol") + vendored("certifi") + vendored("colorama") + vendored("distlib") + vendored("distro") + vendored("html5lib") + 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("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("tenacity") + vendored("tomli") + vendored("urllib3") diff --git a/Scripts/Lib/site-packages/pip/_vendor/__pycache__/__init__.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_vendor/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b2246608bd7e362eb04fb806e2fee405a0f01cb7 GIT binary patch literal 2930 zcmbuB-EQ1O6oCD=w%6ITX`B9}wBY_XEp=MjP^c<|N>Wj&@hRr zwCg5UflDMFA-Uuocz|B<03+@Y7kvUGt~leJED?}R1zvf+`8jhuGv~}XOD87-1D>B= z|JMKcsA2r78halX8lS?;1IsXw(KV2XEMn$X*D_VzCU)0u=yY2R-L8wAu7_J|{&u@5 z13a-~?wH*UY9aSqqdSScA53Ord)sct58)2-cB~x}yKDYQLzT!z_IK8O15YA<%QO|+ znt|qoW=C^U^N{9Y%_+?znnyK{X-;b%*F2$lQuCDNjOJ<0cQnsvp4EI;^F7T_^PJ{+ z%?p|rH7{vi*1V#5RdZJJn&x%Q_cd>5Mw)Y)H#Ki*exP|<^N!}c=7*YhH9yk)SP|Jz zns@eI{Yy}0WfZUD0#O!bJX`?`TUoIhB3!}5vv7r#TjVHH2RZ%!-6WLGUmmpd~AKhOkyP`ZDj+ilA^Ahbe6Y7)D{1=aop72@aD2 zg<6CbWB_tORiZ?I5G-dMGoHb;aD~x4tV%8zPVy*tqwc`0DGw*hoRUi5ILk}Q#L~mm zR73i4fIhsR!OPd7K<2g~%nf75+BEBqur>@~ZyCbbGLVJr?;X>4W)y*Ah}PhYX{g`V zaI2meFAU+Xc^k&ekmh}3!`$|fgIYUQ&)T#$ZP9KdtQlj&-j&_5!6Gnw)?KQ-S2s7K zSGP8qS|6;uMc|-`G^007M<89WPo4s>+JTP1WkAzZqIriv4fnhh^9 zMwztvfJ-l@r~*4km+_KhLV6sFL6JXSQM>@+1$I|KJ1pR2RX;|GK zw0p0&1m;Z%tx)ggo%nIK%n~-}#ZM_Eyth<6$Gry`?I(4@Q16R`gC~Sfab6NIT<=NB zvQqFK%;2UL(;gCMW0A7DNB?wE<0(G_Az*tU=+Gj%tW@5Nk658vLsKWhcYfmwk%y$ zVO08kk&}7VWAp4~-G(B{={n~1)TkO&jDSRa;_p3CnJ_r5_HajV3+f}IYNVaDp8l(g zmpFy>fEP=*#O3_0yK=I8z8W*kX~j}7mR~Zu3Qedn{7r?q;PtWHT7+MwxD@IJ)JI00 zyT@72{G&@R{C0hL-=QdmvmrPgYQ4C>92{yf6sxbkjZ_J~QJ)(tDHt5;wF5<>LJ;t7 zPXT3l5tMzF?-o_j^X|)!B7P8`usQvf=kN9IGK@o=JwaKD-%(MFa*RHWvLiv zw9y3Rv-5AE7!D+caFX`pKCD+={Ce>}O^Z|zA~=VvkSL$2FO5+HHp`O&?m8Ri30lFp zLxdYqg4g5v-Tl8-iHy{<?w{bwf_BKdiq4ALS94R7#+{IeA73b*0k%p?&*uRZ>#qI O{xw?vT}#JwUjGR{o0`u6 literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_vendor/__pycache__/appdirs.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_vendor/__pycache__/appdirs.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b9939e2976bbbcdf8ed1651de2f69b1ef8667b6e GIT binary patch literal 21207 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 V-7~s7_4C2Me4&sjfZJq0`@hSX6I=iQ literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_vendor/__pycache__/pyparsing.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_vendor/__pycache__/pyparsing.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..77afaa157301b0fe8f8c5eb60e8da67c1012a622 GIT binary patch literal 237912 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

    L zu#nxKdzla-0YI6;*tE+6$lMnm)vu+Xe3Wvj`o_B$jRMG8@?Ynx+nqjQ6wFfAH0YI# tjTjs0XlC?a>cgWhJ_kqNnffrkzcKY;^CdGqnn``Qw6*X^VQ+cQ{{_OF`Huhq literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ac2d9f9f596deab4a5e2d703b9204e5d8758e9fb GIT binary patch literal 17345 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 literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9ddf74c08f4c638bc99b2d6c43f85723352794c4 GIT binary patch literal 4442 zcmb7HUvt~W5yu@s5Tqzdwj4K^aS|l1o6?PCx6@2qRq~`wl{BfNdPa8JVKsw5Jjj9s z0>~XGOB^VZDcx_82m3MKp&y_hA#<;tKKQNE_{lHnZx19TIo4POd5gpS+1tC@-QR9D zJKMDI{Ntbh-X5N_tbftR@yEf(2PkR?BCM_@nBWQPGV|tLZr*m+7PfE_r(f&Vn1y;R zar^adz3+8Be7pBqw;}4nduVl=A6ud!nh!0}jAll5w{-}_v-XjsInVez zZ)34$tm0G^VcLr%v4K1+`^J)VCC~P{OB-v^e$h*^f!Mh5%iwmrDMNX%5!}tPL~X1M zcB75o#@Ti_45irkEL4!tzZ>=QBrKwh^`4CLLTzByhKh^mS|0XxaVBabkMrxaN0G_v zB34BbZ(bjt-(r5CXM$J-31-MJc@=^v7o^P`)?%`SY7gbaGmEbeP}CMkWI;77QVXaA z7dEchF|=l=YiQk2&(MaUO+#l4Z5cXiXxq@auUlP5%!_kSlbSe>gIv&!)x9togheKY zzi#???rz7*?-X3m?P(i(B;ed zY0Z4nB60!b$5gohaw@0qXlf;Q4kd*A&iYw6U%@mZ`TXg;)$~m4Gx7Y%OQk*H2=h3@ z{@-~y#~sL>ejhqQ->sYqTF5z;{!0~6q z@r8Qy9LM~u9N#^aGoT1}mcW?2Idcgr5nv>w&b!XNWP_z2WpQ}<|<(s|7) z>!mm1l|(qJk#UveWXCQo^21{eRaPF=2RaTU!R_XO0qCWzLE2mTyaG}geKCk-L}>l_ zlpPHy;EV~N3DQ*__2R7N9(`jf&Maha8I7Vh|?do_Y|7tQQ3GZIZ?S z(2+<-a#0jOyHGxeXF1HRx$K3%r>!|jqkAaRhvH0XH0JabDil{fv<_ib1xyGL)dh;I zcKD7xVuvs^)SN?}I>I?*qISs1h>F^dQ@D@nk1bHo(1xK+Lv7HR0@3A&p?}u2feOT@ zWT4>biu%{BvD$lUCqg|NGLew$C~DaV2x|e-?l2TimUT!qn?wDbzd)2&R`_YeR>AGNa^r{X!a(F=&0`(Y7m4Uz=GpBecXZG~>|0xrs97fDgx zMaUdNBZG+nE+<(pOw_H#7ckK6c%t^k6g0b`ttWI+ot9oW*=H0@Uwp1{B6B@c)qr`5 zUTG;r-o0%E@A{2tOMXynXK8Sfg+7`wJ|jIhouLj86!(t}8L!tpnly>`7slL=ACPX3 z8z*A6z%ZC_@3eJ&J5*tT%dpWQZ(`%}JrM1X?Z6Ky?M+7O`eZ||ym%k=iTG|MwfqIK zBbAe@ARR}(PxTcdq<_*xEJvnj0@1nWuJ1Mm8czYgP;bFEINV{}=D6x3+w@SU0N;J; zwB;SlI1vI-_)n`C%PdhDdX(ji*aklYMEu!GFF3HBgG&rR#i*AH7((f6@d|7NKXkry z9iY0GORGDU!+0|U8cKoG5yk%e72uxEg^-N<_Sn0rYTTO&b^e-jS`xv zR1*MJ2Ac@FsH|1_CA&PlI!Gzm=@pa+$uLgn6hv5r1h!SaH<<*mqfiDp)qXF^X&chV zw|t8l=YF^P(QoeEz8ie_$F;kwf4QsOK@K*NZj6y6lLi&wy4;Fw_uLQmBPkWo4sNB; zERrUSKdHKs^ejhFlyvgOJXCU?d0+AG=Q-X`PXaa*Hg?WQ6K#Hqf%5l6{s5v~1LQ>o z*$!?asjSCr4Ja1E^92RrPR78H(RfL2UEU)?avbxXMoME_-g1SIw-8VVvZT>$b=KaAtb-C;$j>}2MmBfj!&0(h^$F9I$ zG2i#U?zsT14^Z>>>+aXD-|^r7|628dfou$aKl@9+d-eA}h{gUJPdfh`oVD8z>IU4HgII))d#swRCl8Zf$X`lrz=gxpl>Lb0ftOInP$t&uu7fnA=#~XvN&r z(k6HFeXF?T#hB_-{qMw7zni@mFFu6x0X2y8K{?-w^EGM+=RW|QR!?9Ko##t-DjvtJ`_=B;38p;no$E4Ngw_^vKjy#g+-opU`8?=8*f`dn$I zQgy!uq>bh6VCZDU^Q)CB6St?`dG$jf;|DjvC1z;LFk^#yh5z~R!F$`xJKcP^Et>h-F3sjzU}y>z@%zgljTwYqe+ z>|tthQ!a3%?7NpHr*&oC_b%b7OCFYJEJBG(^OgDinEINk>;1~C%Kiu?#^>*7&cIeq z1vyVTmbT=|C(f8&gKC(e_0bHSsMltym1*Bh(R0UqAARz3ejRgFRyiQ)EsYMfCv2wT zR+R@_F8jH%c5~BV1DK%kf?kW}+tXr78+mOrK#qk?(b-?v#}=);TGQ@yeYRF}++2XMbUbT4;5;cC%cqDAS3Dj&;1g zTwQQ;z^RI<@eL;AA-r)<>-{_7W|p9r&ou8t{RKpsUKsN-2^f(d6xDP>?0Tj2(l-tWl%J55bryQ zm9N&zYV6euXM)VRD_*_o`d~uo^SXYsqFB0M=-taF^Z_<Gf* zecO*yt9vKrJJdz)SsTq$Db(EUCnjTlvWe@TvGVBxDfxiT;T0?$%G*3Vz8r_3@9L3_ z8gcwQ{wN1NjrYBkS+ts#AG>L3yJ@`^vtl=Fg?D{uQSA4X9zXm<>D1|oGbbk@dhPK8 zfi=^?v&pW5%+Xo5=H8yy&o$UG2W{Wo5^L;=)PO@G2dY@D@uSuHG*pV`##_&@p9k_O zyz0>5gW;?A-h+q36Mc#=NnquxE^a*Wtph6mXfvTk zHUr(lYa_V!Ph`yNn=y{r?^7Fy=4Qc1#g25=>1dRhN9xiW|= zY15PXzn3d(a3$jpHIw%&z!XUe$8>ni@Q6M+`j7C=jeKV_>3zMK!Y_?q#{0T&#)TsY zHTeY)j7p=FLMf%PD5X*ASA&x3htHHH$3Mvrv$6cO0)Oqh<$33>ydGAoiJ-(vz z-s2tj8dj5c!xU7jNXxE%>y_>SEt`xv|_ruP*7i{t=9#F|tC- z#GS_I8})@87ZIyQV;5e5fy6U#^Y$58Y5R=4 zG&+kzS<&0jRz4dfO}F%`Z2y9^PopdWwRXWRuAQ$#$--zN9Px_DidQ;VIv5@g$?;Hl zeyDVy7X=5pQ0y*V;9UVo+fH)G8nkSy-%8u*_>h%FX*HPcxMSb#kEc-&&sf9pVT=EE zqCAvBdqC>;&#|?O*K{#>8yAxJ5vM#3zd{MwM+r&hz69G*S@$6)zsJ5odb5|UvA`-p zGA63^TUeBoc44GVyLnr`h{pqmc3|&-vqu$-DB{6$U*(JV#$;^RN?r zeDm#NW5x1V$V^;=`>Yvj zS~Kz`azH@vaLlM7wHC*$8dmFY z>{BCZJ&yfqgW8DWfZC)s<2a~ZP!FlCXnBo#SZ%|VA@zvL;kZ^ksTOj|s3&oJSUshl#&Mf*yulUuj5><*oO)J0hvTCnIFAQ|XWZHH^qt7+E!QzgQ;^J6 zx!kteAqL7=`l?&@+z>-rF1S$j^eEXny>8&|;&F?-Z+prMetk@da^R}`c#h&>x?B@{ ztJFNdT=Oe1gG4o$rWI=tvtDyU*P!RZpEA2Zk0G3VaJxI9*^T*r&9(Bw2PZn;d#9(_18m7)gbAfuqj?4={4 zoFilFd_1aU+;w54aGG-FVvgu6^$I~sxijU3sy|IFJNjcej^7FVyw3non`_2r<4bUw z-v{kqkLf`lnmBbfvd5A=OBh##(8B=}O|b3-OYee~o@`pwNonLXVd~)O0bETr?bcO1 ziL1}!Y8pB#>Y|jn57UUx@RyGlzDC};yqnWIDzk?9l0^P+CUk3lM2X=;SBV)~mgfL;azpJt_2@k^y;PWD!S5m-aX@Lw9@ z*!(DposSzEyNPBzdb&%5QH5%)-v~~8%;zANgb z>=_`^>sxV}MWY^9V8m+d=;_32lQB&h8vU_Mq!NT;iVnpg3qG_>cSL^lbOLU8)SxC=Dh);Rm9-jMdi&6>wnEx+s$`n_TU`L1K=o;L z0<#VIbr-ikc{#ln8^OG8;Al8E zS?H;QqIKF2R+-_}16||lTI4Ng1)ME*4QAbZKb9Lx=l$?Jnr~aWtUr&c`a21FmK?zc zvS+v%y;A96_Kmt_mRj_KmAKbYcSW~a3s3i|_=jQ|j1w%=qPnGk1WWdPxIX;&l7ntT zD;BmWT92N^L*PGsrDJE#L|zCEZLDdX-621^rXCeBV2 zrY22KSLr0`gc7SH*3j-~%7@Tj$7(#>+uN?%E4tg7^zG~}FhQ}SeZJ_kW{NT0&~01O z4f;QZx?(&BRyOYhL%nh!7{QplQ9Y{A4wzwytC>P{ajm zZV92fnab_aXuuQ*{csob4tV7wD@MJ_BIz`BcJT`VwMfH;-`M*5*zG|?optIhJSs)80 zC4Dpu5XmC(90Ns3Lydi*Jv0U5C|8*gwazGo68~zepKu-&&}(60-;35(UA{DY2*QF- zu*Y13EEJIy3P)7y6Z@-wm~Rk?8NTxUPkQAb8k>XiSurnusr6!_OfMyO*X?>er>Z5b z7)$Xfp@eCw_8>!O1Fg?K3h4|- z=F{|jH|hHxxdETEPha`tm<5M=H+<-EpZ@UCrlaD}$VbISjWs1Cg1gk^<4uQtVmuA? zZF3Ah^@P-&z%dD5^+Z@J5!G5sL2M$XXgn<{%44q2%F+X1vm(qvUvNa0oIEz|A!kdSl0iOIK z&h%%k%Bhp6XWptG_5|g3rz->P$!cV*}hzt^WjgldxNn#07G*hR^0ptrt7kH&tZdClR5qZY&{49xJZAApj(C0qXqskXo@udW)&$=IHOe>5|y@cxy zqBx+tYbizQeZJ`|rRi0IH_oXg!?QHc5F;~Go1;;o>y z{nNN{o5;2Yg|t0nXRQ&TMFZ(_hq+@X;hG0sf<6%~`oqTNPaIE|gdj$8Hv91NZUej< zn-Tf=P8wKfd70WH| z8d3xX3hwuEIR6TgB!@J=#9Rq?x z^YZ0AXm8Z07kO3*N835JSI|*tBc!f+Z8s*Y>`!0C5W1Nmlfa}BCIbG%T8;F;%3fS7 z1(8ppX+oq!x|X^n{(z-vaPO_JR6Af7WqqkR0P({We@}ATT=I zU{bE{Au-dhY0B;BkE2N8cLG0;0+kG(Oe)gXy#cDDl1T!k%#ZudjD64ccEe#}`ye5` zli?GvVtXm6z~GsIvS`;fGtHs40rqnWOYyAKj-EAVeD;|pL)ul3!x z^!pGt2`FfBAL{S50kjBG_6O0@btr~OsCPJmT%QLiJ4#R6?m+TaUWyQ1|_??)#`aB6Z*It&5uL zQS*l}Lw%T`AI98mU`-QozqYYShhC-EK_p2s3NeOqgvbdOUxM+edEoAgIM=^GAZXjdT}^rN6KG!?j3cqeV?F4BUbS(y zL+29#xC0LtmaS(@lzZpyUEb~^IYRQ4S{?Zc%v{Xv5j96{FzR@c; z8EfxLcwdmMAj_5^j%hb=sJ)7=tEr*re@O5?L6KGaE8awnTvwf{Beu%GHw>E~b@AAR z0+Jl{0Bh2X9jv8aZH0Yl6QTFs zc|ctnGTUwpuf&iQ+=CoMxW_M}(8)bOxfYDI_23isLQJp2JqT<=9rO+Q%wEf}7Tq^A z?&K=fz_XoKm4&DG(*p-C0kICc-w3+5B*BRaV+!h?1uB2sl*QWu!)|kIM$BejmzL9L z`Et8u9~{EZf(u=S9^Xgag<4^6DDE5UUtEn$3qk>!bg4-h`F?}2Ttwt~pFKS}NqqY< z@BapY;3(BA{W<{=TYr_Hg~nZLzrb5mvx2xrKqn5o>?LISLH`4nd>n-=mW|8Bw6qA) z1M?HjL0Z_f8MuAjK-PG6^sit1fUeF4j(9bK&; z_&QEajl35DP+S+6mN0oR283QKGc7fyR?iifH~_WhHIr>FS{ulmS;Y#hn@myfU7BI%NY>(zpJVchi6qLBkmV6^gkdBqsLF5PRI>`ubOS`fmvS zEy1r7{5t{?Q@&5%#R1V%Sx3Y@&DM<|9f|=@S6TNb34V*<3ae)^MhbP<=*C2nnUUG} zkE}#x4Nf$U>`zFpFW@{K&&H9W1ad_B5$z!+ESWQMUGV8-(gyL`4{Y-32mN19C#c#D zqrQ#u3L{>c?;>F?IoXqN<*O(}B-}RQ7wrl;E_J9K)UEVJ67w}19P%It6-E;{Yyx@5 zas3$F>o})2bu@NkkZG#W_T(CMz34i*cRpDL6NrUbGoiynY!@+Y+P2Rr#1~7$-2sk^d$Xw@_1{lYmEDJD$6WJq2(&&4L=+m0KGPu$_tR@NeoWC>Z~t&&ci0UG@EW@5uiB zw{G3SmKbiS8n5fw{mQ+$f8L$<2*wT|F>e2kiaPjIyBQ(Jpf8f&3%a_3EE8B3s&)Ej z34Wa5=Kw%mRNn$?p_k`Vd3yqMWSjx{9_sPo#)a|N&X{hw`sh|_I|4*V^%?c#5F=}$ z=qVbPQi%2jyB&H)^cUH+X#&A(0fN^_^Um$0ZC*{M`fbM+6CX%Tf0KO|Nuj+qh=Qu&xE>A%J@WK_BHLVvMUi1z80>8`GIjn8W~`LnClo zGyL0;q0gpe6p=@}Kg^|&)EGm-J%b!7D}_*&Z0?d;pW<*C#Fa!tGPAo#D|n=5IeMS! zT7L4>)^N$C{0{HhJt!giv$zOMph9K*H{Zrmch|&xJjveR7aOux_}b|#=z1^f@yEp! z%aJMlVIF#dHiabgCt7wfxcdcEMMv)9uqqBP1q9}Qsq`W{LVX5I4Xf`wSP^}RYIb#r zQ^D2ePh4ef=MF^_T{4^yq|kId#!+wvMXq()MV|vYY>su>dEEb#S z4BFHG3TKU8vJyGttwvV*Yu$}Wv(n;E;l?X$@!Q#AFZ!DnyGGMF3HpEFq1A>GcHf5C}j0982Ft z@ZAJ|gW!7zK2Pvv0x|CHv-Cp*KSJ=M1dNtRh)uuC(oYl6sbhRlzsVBS68+l*zen%~ z1SCiO-wB9h;ycoR$Wog%wB|tjxWSv=ae#CTxUeg*Gb3wLE4(7xhY7tWs<+f6H20&Z4dAEE01z(L07Kyh7WFtbLzBw47)7^*MXlqx8XYFzEdako044&t~+Hk8M(86Mlo)sxI)WezLz zSCM1;><3wFk$+A-kDB|`E9$s9fu4@4lWGE2#?&eGB97zSjgmj3w_>Flzbrb@RHxC? zmCYKeO5I!0p|yG3AfDUv^5i*0AgEGBIFh>sw~CvKb^wUgM7L3NVHA#JYzZ#U)79P0 zn53P^4}^9q@FibGPBU^CL`j6C8#5L`>t)QUF8f9!YYe=7N$uNnX&f-WcW2|#x8Fp< zI5NlI+7lK^<702_jV|V&-`U8FfAhi7LkA8&wI~}>8vR6i>|4+6fu&(o2n(AlB;6Ov zM2i^(DbH+gZQNj{YLp!g|Gw;5&4qV!*h3oaea#`i7rR`;LrFHd<}f1J4x8gHZjPlx zg%vg^J5@b+*Ue7V5>(8_E!lMF<@7==QduxR+>sNdjOMN^RH`j~29LWp+xJ2<6x-I3 z3e&z^54XQ6Y_LcF%?AWZZtZ3TmYAqSP%ys&lxfd`{s^b^beGHw1&NZVlC%{KlkLjc zrMH2q!wLMnVnfC6`q zWln!!>nl))xL!eqJ27?HubX@jRQpU+EkB}fvwVl(j|u*7bPMiN&{~DL#Bi3H?BFfD zNqG~bqk9s?7C9FTMRFnXjs}?*Ckhi6j!m7rU>so?KAJ@K2{KR+4~1;u9+|T8g6wPD zI3y{Tns^eX4CqhujnduL(Dd)}+Dim&aY$`IWcFumAlE6JwR4oylBL4!Kg<`fKXx1k z<*c<0d)eqZbKp4Z|2Ugqx@JEjnow+0$S`;?Xxo3eL1Fun?H51I6iP|2QNzYB54rk zhNhlu)k=Xz zwi{QuS$bZsVwbGct@A8u6=5MhkumqY#jxG*9PM`0Z6=#(Q2%!}Q(@1+&(P2BH?sm4 zc-Tv{Ve20u3?1WUoZ)Dqap$uIEDIJ0pGcui7xa zHT(4XVRB=)p5<)s|1VB%_`kx_U^@>b|A3@Rk2f7^^nx?>CkqD}uZl%#IjQtA&JxK# z2aNYWaID7W4kCshoKe|uWYa|L=#Px2h3d39fE1E?t+(^of!6W)AzZPrr5W4d5RE{L z)GVX-820E>tjXpwaf3q?P#lQg0_Kjy%Eb4Cc)R(?M~9n}-e(E6K}y3j<==rxw0821 z!qlDV1zJM~3ivGlhETupaKWTHy7}D%Z*EEPVt0#%2Q<5!8jS zCt0-kuAfFcEQ6@iyP>iG90B{Vm-?V&gpqKLKz}hDNz`YKt2KgrUqN$gp2pX@VwyWP zG#vP{#XF{lSt1M2+(4m62%tzXQniES^#r6Xq2FL#q3*Z7Ddn1v&j>w30Jwgbh0Yvl zoS7Wyj_}nlVg*fHAl)W@gKF4Wfv@rqY$ljxP3|-3K{Ndru6<0@I*J;ka?-1zb4TcT z&>ob1x@NB~a~#M47}H{$3)GI(A|NF4+uF$2?(8S~AB^u!2o^k8NrE=^7EM8;_t@E% zIA7JrFhoh(xwUdv9Am&Zkp9}iS$b=Abq7zhISaKDbOtP(kRH%Qt0r4kn8rU#T!p~H zJ^qk|fuI_2r^y)WqX_2U0}=P3kaFKe-YLi@Q-XA))N^x^7%%Ymw)MGPT#fc9Uq=T* z*QkC7w*t%SU8_7U=Q&QA^hvD5poEmkaXVC^=&fA}180WgJ%OLM9YDsKHM}(1+9hX_ z@+*8XZpNYIwRT6(e-O{F*0;m#TM{>u2(1j-)17QQi_0xLF#*<1mY&0I3UiDvCTm;6tGgA?5QK()fOr~Yy~!CqDpx1~Qq7b; ziZ~{053~v?kBmonKESpRSmC1GSf>&aib3vUGmV9XuEKVh=7PLsXc^pBcrArDqkQKX80T&a<$C&4a(JAhbd_Gd)^N1Zoc-&d|8+07{v6kIqnz? zVSL#F&3lN*_!VfPW491OMYN`?Gp*OMiS{1^-&OhtqPl1aIb;0N4txgaRYy=wVIhXQMKF`xc9+seE1#_S1b!Y@078rQB9&;fI20;ugfaL|87z^Mxc&mJp?<{d8BMc$zl zH5t~_FGS18w+7njCLeggjf7^} zIBBBMGPR#NY3y3^KJ?2_Vox=8M7=l?eFBqnIGT%cDI{MbW$@~^@p4Jv)BlU$1b%AIC~n@`?}CB*z{fAq#D)RX+HG@cACma5}GdAV`EJ; zY2#sp98b3X$kD0FoWRffMF8n4og0=;zYL;5NxG`653q8)yM!$nP(6@>1;t`Lv+G2m z7=@z1Ef+gg0vjx#HbD6SWE{QeAirZH6b@{L5(R?_N@|w5zehlnID@5>hJBQw3d2@~ zsHoOZRk?_Eusup&L_(F6D%LEfOjN|>W(k#NBf`UUmwZEYM6r-7fR(cIb z6VS6bXLKP4eI0&sB-^w;(Wswe6|r#kuwH21*m=7+5XsY$e6R&n4hLIt9ZZ*n`AGPA z<{lD*V|t80)XNYdg~thr|2cakODtqBl|l~(m$ewL&M6_a>-ZRx zIQ4@pK3N%l$*~s;oi4#*nLM<6lNI1x*y$fT9i4?UYHKs@Ka z4qo3S-gdClL}v4y$j4aPO^_$pOR$fCE=TxlTC)yP69ZB##?}gG?g52=pSN0$A!zsf z+DEaKp9=q=S9F+91HzD2CQzSVMT~vg_e{bhU)6bEpF$(m^_z)d_5-#|C5G!;}?ge!)#|gqk zXaEX5l=@WD0hVuAOgDhe>Qa-|qcV0B^c;zgn7y`KQ(k*=8javm< z?T`}5P_i2l$|KIBECB&IXMYEF7g$@8yh(w$kcrb z(G*BiOapevr1X=pO+f5oc&5NQSc|*OVU=LWxPBk99MiDz1{j5OR`25yj}i!-J&#gj zK-A#ev(M(X@A9@c`WR9Z^&MjNmoNsP8&jG^)&_B8(ugq4r{S(fvK_v0q7SpdCkdo| zs;tF?rfH%7HlGw-wOdjIYk;-zd3%UlNhAM~q(?fTJCUieMkj@95QIpAqg-{6MQ#7F zGtd}qG3SzB52IS`tdO3j@mam+*$ryL@)gni8Y9v~X85>@4+u@XcnoUZ*<Zr+I)GzafVNNwLrx$p7oPd58 zeBcXTl`$-gFc?bj( z*Hl;Hi-{VP5Ndf6xyv^bbds3}U+8#CK=c4x8S@LT@aZFXD#hKs+}C@Jkpf%4;%Ba9 zNxs}Wj9>CS%rw;+zi+7@;tQDv_v4>mx0nj+r8?_%#s~QfB7|2vBZQ(JWeSow-pEhf z24}3^fdwm{Y2tQJA%bw{oouRbU1kMavITES;(0I<`{B}GK$30Qo32!XWQ7(yz7#|} zkcfc(r^KK~0P+JSh=)0gX=+MFX*tK!cX|5L1e8MtJwL{2;HZVU`Sw0k?DDpnr<<(~U}nTppgv61l6E-xnX$Wvu>S+uf^BR28|Erv>Dq<@wFl1eyrZ~1 z48nFkqd2pqAltYlNxw6W0lH=p$ z^b27hY;jX>{2FX~>cmSE7Xs^avA=Na>_l`y(<@qB6a5bc!fM4eldqn|$1=(88auTy5mLdDXhle7AR4QADD6{C}D6$nYC(X48>FpG0_pMH3Pb z_x=txNB6oof+cRG_wX8ZStPr=i~@=KMnBEVV!?|EChX$(_+sG?ukdc0aR~Bq;ydt9 zmPO1}TB&b>T)i)&z{Im`5@=|{0R(4|9cREO`E@7hILSo#v9LdPQZ|C|NKP9Q?KcjQ zBLAWzw=2nWA2~zt`|nFHm!$=3kV|KK_pxW)|?3M#eSCYzz~Gjweoym?nGFzd~@4*Qm>A#;`OO zQo@~J;*z9bHulinp{bc^VrJmr%aK)MEQ-7CJnsw;5NVi<;h&L@wHkyh@(!(9`8KP# z8ziEKq#Ax+0eyU!H@6Wm`mX;bOCJ!tLU4xQErL@7Zxfs&xJ*zWC=m!=eJ@Mj0#Hm( zygqf|82;B7Chyqgjqf864dr)O`c(qiNb&0|y-)BH1YaWf4FU-;{U%E{2s{GnJ;k*x zQsS2_Njk-i7hjr~I8$1AV^gFfg;|A2S~riFrE9Z+7Ul)%qbALP=3&fh05}PlR1z?v zem4|n76-Ky?1YOCIsBJ)kmuoW6BT%50%#fMB`2FsIdKZ7)<1k!HoYc!8mRbSI8F^n Z{v}YN5VN!Kp@G=9#=h0L#_J>T{}1&bezE`n literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9c4983b539adecb1fe7a61d89c078a6f27dd99ce GIT binary patch literal 11059 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

    <{E$DC~;>&5ER||q} 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 AVE_OC literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..66a72b8cbcb0cb60de7d9d9472055e3347f861b3 GIT binary patch literal 27387 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 QAWT;HK>WdHyG literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_vendor/distlib/_backport/__pycache__/sysconfig.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_vendor/distlib/_backport/__pycache__/sysconfig.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..dae86885037a666c60af026c061520b3a0dbadcd GIT binary patch literal 15920 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 literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_vendor/distlib/_backport/__pycache__/tarfile.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_vendor/distlib/_backport/__pycache__/tarfile.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..dda9d337476ae39665a2adfc04ec1b10d2637329 GIT binary patch literal 62530 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 GX8s2Q=8!i4 literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_vendor/distlib/_backport/misc.py b/Scripts/Lib/site-packages/pip/_vendor/distlib/_backport/misc.py new file mode 100644 index 0000000..cfb318d --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/distlib/_backport/misc.py @@ -0,0 +1,41 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2012 The Python Software Foundation. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +"""Backports for individual classes and functions.""" + +import os +import sys + +__all__ = ['cache_from_source', 'callable', 'fsencode'] + + +try: + from imp import cache_from_source +except ImportError: + def cache_from_source(py_file, debug=__debug__): + ext = debug and 'c' or 'o' + return py_file + ext + + +try: + callable = callable +except NameError: + from collections import Callable + + def callable(obj): + return isinstance(obj, Callable) + + +try: + fsencode = os.fsencode +except AttributeError: + def fsencode(filename): + if isinstance(filename, bytes): + return filename + elif isinstance(filename, str): + return filename.encode(sys.getfilesystemencoding()) + else: + raise TypeError("expect bytes or str, not %s" % + type(filename).__name__) diff --git a/Scripts/Lib/site-packages/pip/_vendor/distlib/_backport/shutil.py b/Scripts/Lib/site-packages/pip/_vendor/distlib/_backport/shutil.py new file mode 100644 index 0000000..10ed362 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/distlib/_backport/shutil.py @@ -0,0 +1,764 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2012 The Python Software Foundation. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +"""Utility functions for copying and archiving files and directory trees. + +XXX The functions here don't copy the resource fork or other metadata on Mac. + +""" + +import os +import sys +import stat +from os.path import abspath +import fnmatch +try: + from collections.abc import Callable +except ImportError: + from collections import Callable +import errno +from . import tarfile + +try: + import bz2 + _BZ2_SUPPORTED = True +except ImportError: + _BZ2_SUPPORTED = False + +try: + from pwd import getpwnam +except ImportError: + getpwnam = None + +try: + from grp import getgrnam +except ImportError: + getgrnam = None + +__all__ = ["copyfileobj", "copyfile", "copymode", "copystat", "copy", "copy2", + "copytree", "move", "rmtree", "Error", "SpecialFileError", + "ExecError", "make_archive", "get_archive_formats", + "register_archive_format", "unregister_archive_format", + "get_unpack_formats", "register_unpack_format", + "unregister_unpack_format", "unpack_archive", "ignore_patterns"] + +class Error(EnvironmentError): + pass + +class SpecialFileError(EnvironmentError): + """Raised when trying to do a kind of operation (e.g. copying) which is + not supported on a special file (e.g. a named pipe)""" + +class ExecError(EnvironmentError): + """Raised when a command could not be executed""" + +class ReadError(EnvironmentError): + """Raised when an archive cannot be read""" + +class RegistryError(Exception): + """Raised when a registry operation with the archiving + and unpacking registries fails""" + + +try: + WindowsError +except NameError: + WindowsError = None + +def copyfileobj(fsrc, fdst, length=16*1024): + """copy data from file-like object fsrc to file-like object fdst""" + while 1: + buf = fsrc.read(length) + if not buf: + break + fdst.write(buf) + +def _samefile(src, dst): + # Macintosh, Unix. + if hasattr(os.path, 'samefile'): + try: + return os.path.samefile(src, dst) + except OSError: + return False + + # All other platforms: check for same pathname. + return (os.path.normcase(os.path.abspath(src)) == + os.path.normcase(os.path.abspath(dst))) + +def copyfile(src, dst): + """Copy data from src to dst""" + if _samefile(src, dst): + raise Error("`%s` and `%s` are the same file" % (src, dst)) + + for fn in [src, dst]: + try: + st = os.stat(fn) + except OSError: + # File most likely does not exist + pass + else: + # XXX What about other special files? (sockets, devices...) + if stat.S_ISFIFO(st.st_mode): + raise SpecialFileError("`%s` is a named pipe" % fn) + + with open(src, 'rb') as fsrc: + with open(dst, 'wb') as fdst: + copyfileobj(fsrc, fdst) + +def copymode(src, dst): + """Copy mode bits from src to dst""" + if hasattr(os, 'chmod'): + st = os.stat(src) + mode = stat.S_IMODE(st.st_mode) + os.chmod(dst, mode) + +def copystat(src, dst): + """Copy all stat info (mode bits, atime, mtime, flags) from src to dst""" + st = os.stat(src) + mode = stat.S_IMODE(st.st_mode) + if hasattr(os, 'utime'): + os.utime(dst, (st.st_atime, st.st_mtime)) + if hasattr(os, 'chmod'): + os.chmod(dst, mode) + if hasattr(os, 'chflags') and hasattr(st, 'st_flags'): + try: + os.chflags(dst, st.st_flags) + except OSError as why: + if (not hasattr(errno, 'EOPNOTSUPP') or + why.errno != errno.EOPNOTSUPP): + raise + +def copy(src, dst): + """Copy data and mode bits ("cp src dst"). + + The destination may be a directory. + + """ + if os.path.isdir(dst): + dst = os.path.join(dst, os.path.basename(src)) + copyfile(src, dst) + copymode(src, dst) + +def copy2(src, dst): + """Copy data and all stat info ("cp -p src dst"). + + The destination may be a directory. + + """ + if os.path.isdir(dst): + dst = os.path.join(dst, os.path.basename(src)) + copyfile(src, dst) + copystat(src, dst) + +def ignore_patterns(*patterns): + """Function that can be used as copytree() ignore parameter. + + Patterns is a sequence of glob-style patterns + that are used to exclude files""" + def _ignore_patterns(path, names): + ignored_names = [] + for pattern in patterns: + ignored_names.extend(fnmatch.filter(names, pattern)) + return set(ignored_names) + return _ignore_patterns + +def copytree(src, dst, symlinks=False, ignore=None, copy_function=copy2, + ignore_dangling_symlinks=False): + """Recursively copy a directory tree. + + The destination directory must not already exist. + If exception(s) occur, an Error is raised with a list of reasons. + + If the optional symlinks flag is true, symbolic links in the + source tree result in symbolic links in the destination tree; if + it is false, the contents of the files pointed to by symbolic + links are copied. If the file pointed by the symlink doesn't + exist, an exception will be added in the list of errors raised in + an Error exception at the end of the copy process. + + You can set the optional ignore_dangling_symlinks flag to true if you + want to silence this exception. Notice that this has no effect on + platforms that don't support os.symlink. + + The optional ignore argument is a callable. If given, it + is called with the `src` parameter, which is the directory + being visited by copytree(), and `names` which is the list of + `src` contents, as returned by os.listdir(): + + callable(src, names) -> ignored_names + + Since copytree() is called recursively, the callable will be + called once for each directory that is copied. It returns a + list of names relative to the `src` directory that should + not be copied. + + The optional copy_function argument is a callable that will be used + to copy each file. It will be called with the source path and the + destination path as arguments. By default, copy2() is used, but any + function that supports the same signature (like copy()) can be used. + + """ + names = os.listdir(src) + if ignore is not None: + ignored_names = ignore(src, names) + else: + ignored_names = set() + + os.makedirs(dst) + errors = [] + for name in names: + if name in ignored_names: + continue + srcname = os.path.join(src, name) + dstname = os.path.join(dst, name) + try: + if os.path.islink(srcname): + linkto = os.readlink(srcname) + if symlinks: + os.symlink(linkto, dstname) + else: + # ignore dangling symlink if the flag is on + if not os.path.exists(linkto) and ignore_dangling_symlinks: + continue + # otherwise let the copy occurs. copy2 will raise an error + copy_function(srcname, dstname) + elif os.path.isdir(srcname): + copytree(srcname, dstname, symlinks, ignore, copy_function) + else: + # Will raise a SpecialFileError for unsupported file types + copy_function(srcname, dstname) + # catch the Error from the recursive copytree so that we can + # continue with other files + except Error as err: + errors.extend(err.args[0]) + except EnvironmentError as why: + errors.append((srcname, dstname, str(why))) + try: + copystat(src, dst) + except OSError as why: + if WindowsError is not None and isinstance(why, WindowsError): + # Copying file access times may fail on Windows + pass + else: + errors.extend((src, dst, str(why))) + if errors: + raise Error(errors) + +def rmtree(path, ignore_errors=False, onerror=None): + """Recursively delete a directory tree. + + If ignore_errors is set, errors are ignored; otherwise, if onerror + is set, it is called to handle the error with arguments (func, + path, exc_info) where func is os.listdir, os.remove, or os.rmdir; + path is the argument to that function that caused it to fail; and + exc_info is a tuple returned by sys.exc_info(). If ignore_errors + is false and onerror is None, an exception is raised. + + """ + if ignore_errors: + def onerror(*args): + pass + elif onerror is None: + def onerror(*args): + raise + try: + if os.path.islink(path): + # symlinks to directories are forbidden, see bug #1669 + raise OSError("Cannot call rmtree on a symbolic link") + except OSError: + onerror(os.path.islink, path, sys.exc_info()) + # can't continue even if onerror hook returns + return + names = [] + try: + names = os.listdir(path) + except os.error: + onerror(os.listdir, path, sys.exc_info()) + for name in names: + fullname = os.path.join(path, name) + try: + mode = os.lstat(fullname).st_mode + except os.error: + mode = 0 + if stat.S_ISDIR(mode): + rmtree(fullname, ignore_errors, onerror) + else: + try: + os.remove(fullname) + except os.error: + onerror(os.remove, fullname, sys.exc_info()) + try: + os.rmdir(path) + except os.error: + onerror(os.rmdir, path, sys.exc_info()) + + +def _basename(path): + # A basename() variant which first strips the trailing slash, if present. + # Thus we always get the last component of the path, even for directories. + return os.path.basename(path.rstrip(os.path.sep)) + +def move(src, dst): + """Recursively move a file or directory to another location. This is + similar to the Unix "mv" command. + + If the destination is a directory or a symlink to a directory, the source + is moved inside the directory. The destination path must not already + exist. + + If the destination already exists but is not a directory, it may be + overwritten depending on os.rename() semantics. + + If the destination is on our current filesystem, then rename() is used. + Otherwise, src is copied to the destination and then removed. + A lot more could be done here... A look at a mv.c shows a lot of + the issues this implementation glosses over. + + """ + real_dst = dst + if os.path.isdir(dst): + if _samefile(src, dst): + # We might be on a case insensitive filesystem, + # perform the rename anyway. + os.rename(src, dst) + return + + real_dst = os.path.join(dst, _basename(src)) + if os.path.exists(real_dst): + raise Error("Destination path '%s' already exists" % real_dst) + try: + os.rename(src, real_dst) + except OSError: + if os.path.isdir(src): + if _destinsrc(src, dst): + raise Error("Cannot move a directory '%s' into itself '%s'." % (src, dst)) + copytree(src, real_dst, symlinks=True) + rmtree(src) + else: + copy2(src, real_dst) + os.unlink(src) + +def _destinsrc(src, dst): + src = abspath(src) + dst = abspath(dst) + if not src.endswith(os.path.sep): + src += os.path.sep + if not dst.endswith(os.path.sep): + dst += os.path.sep + return dst.startswith(src) + +def _get_gid(name): + """Returns a gid, given a group name.""" + if getgrnam is None or name is None: + return None + try: + result = getgrnam(name) + except KeyError: + result = None + if result is not None: + return result[2] + return None + +def _get_uid(name): + """Returns an uid, given a user name.""" + if getpwnam is None or name is None: + return None + try: + result = getpwnam(name) + except KeyError: + result = None + if result is not None: + return result[2] + return None + +def _make_tarball(base_name, base_dir, compress="gzip", verbose=0, dry_run=0, + owner=None, group=None, logger=None): + """Create a (possibly compressed) tar file from all the files under + 'base_dir'. + + 'compress' must be "gzip" (the default), "bzip2", or None. + + 'owner' and 'group' can be used to define an owner and a group for the + archive that is being built. If not provided, the current owner and group + will be used. + + The output tar file will be named 'base_name' + ".tar", possibly plus + the appropriate compression extension (".gz", or ".bz2"). + + Returns the output filename. + """ + tar_compression = {'gzip': 'gz', None: ''} + compress_ext = {'gzip': '.gz'} + + if _BZ2_SUPPORTED: + tar_compression['bzip2'] = 'bz2' + compress_ext['bzip2'] = '.bz2' + + # flags for compression program, each element of list will be an argument + if compress is not None and compress not in compress_ext: + raise ValueError("bad value for 'compress', or compression format not " + "supported : {0}".format(compress)) + + archive_name = base_name + '.tar' + compress_ext.get(compress, '') + archive_dir = os.path.dirname(archive_name) + + if not os.path.exists(archive_dir): + if logger is not None: + logger.info("creating %s", archive_dir) + if not dry_run: + os.makedirs(archive_dir) + + # creating the tarball + if logger is not None: + logger.info('Creating tar archive') + + uid = _get_uid(owner) + gid = _get_gid(group) + + def _set_uid_gid(tarinfo): + if gid is not None: + tarinfo.gid = gid + tarinfo.gname = group + if uid is not None: + tarinfo.uid = uid + tarinfo.uname = owner + return tarinfo + + if not dry_run: + tar = tarfile.open(archive_name, 'w|%s' % tar_compression[compress]) + try: + tar.add(base_dir, filter=_set_uid_gid) + finally: + tar.close() + + return archive_name + +def _call_external_zip(base_dir, zip_filename, verbose=False, dry_run=False): + # XXX see if we want to keep an external call here + if verbose: + zipoptions = "-r" + else: + zipoptions = "-rq" + from distutils.errors import DistutilsExecError + from distutils.spawn import spawn + try: + spawn(["zip", zipoptions, zip_filename, base_dir], dry_run=dry_run) + except DistutilsExecError: + # XXX really should distinguish between "couldn't find + # external 'zip' command" and "zip failed". + raise ExecError("unable to create zip file '%s': " + "could neither import the 'zipfile' module nor " + "find a standalone zip utility") % zip_filename + +def _make_zipfile(base_name, base_dir, verbose=0, dry_run=0, logger=None): + """Create a zip file from all the files under 'base_dir'. + + The output zip file will be named 'base_name' + ".zip". Uses either the + "zipfile" Python module (if available) or the InfoZIP "zip" utility + (if installed and found on the default search path). If neither tool is + available, raises ExecError. Returns the name of the output zip + file. + """ + zip_filename = base_name + ".zip" + archive_dir = os.path.dirname(base_name) + + if not os.path.exists(archive_dir): + if logger is not None: + logger.info("creating %s", archive_dir) + if not dry_run: + os.makedirs(archive_dir) + + # If zipfile module is not available, try spawning an external 'zip' + # command. + try: + import zipfile + except ImportError: + zipfile = None + + if zipfile is None: + _call_external_zip(base_dir, zip_filename, verbose, dry_run) + else: + if logger is not None: + logger.info("creating '%s' and adding '%s' to it", + zip_filename, base_dir) + + if not dry_run: + zip = zipfile.ZipFile(zip_filename, "w", + compression=zipfile.ZIP_DEFLATED) + + for dirpath, dirnames, filenames in os.walk(base_dir): + for name in filenames: + path = os.path.normpath(os.path.join(dirpath, name)) + if os.path.isfile(path): + zip.write(path, path) + if logger is not None: + logger.info("adding '%s'", path) + zip.close() + + return zip_filename + +_ARCHIVE_FORMATS = { + 'gztar': (_make_tarball, [('compress', 'gzip')], "gzip'ed tar-file"), + 'bztar': (_make_tarball, [('compress', 'bzip2')], "bzip2'ed tar-file"), + 'tar': (_make_tarball, [('compress', None)], "uncompressed tar file"), + 'zip': (_make_zipfile, [], "ZIP file"), + } + +if _BZ2_SUPPORTED: + _ARCHIVE_FORMATS['bztar'] = (_make_tarball, [('compress', 'bzip2')], + "bzip2'ed tar-file") + +def get_archive_formats(): + """Returns a list of supported formats for archiving and unarchiving. + + Each element of the returned sequence is a tuple (name, description) + """ + formats = [(name, registry[2]) for name, registry in + _ARCHIVE_FORMATS.items()] + formats.sort() + return formats + +def register_archive_format(name, function, extra_args=None, description=''): + """Registers an archive format. + + name is the name of the format. function is the callable that will be + used to create archives. If provided, extra_args is a sequence of + (name, value) tuples that will be passed as arguments to the callable. + description can be provided to describe the format, and will be returned + by the get_archive_formats() function. + """ + if extra_args is None: + extra_args = [] + if not isinstance(function, Callable): + raise TypeError('The %s object is not callable' % function) + if not isinstance(extra_args, (tuple, list)): + raise TypeError('extra_args needs to be a sequence') + for element in extra_args: + if not isinstance(element, (tuple, list)) or len(element) !=2: + raise TypeError('extra_args elements are : (arg_name, value)') + + _ARCHIVE_FORMATS[name] = (function, extra_args, description) + +def unregister_archive_format(name): + del _ARCHIVE_FORMATS[name] + +def make_archive(base_name, format, root_dir=None, base_dir=None, verbose=0, + dry_run=0, owner=None, group=None, logger=None): + """Create an archive file (eg. zip or tar). + + 'base_name' is the name of the file to create, minus any format-specific + extension; 'format' is the archive format: one of "zip", "tar", "bztar" + or "gztar". + + 'root_dir' is a directory that will be the root directory of the + archive; ie. we typically chdir into 'root_dir' before creating the + archive. 'base_dir' is the directory where we start archiving from; + ie. 'base_dir' will be the common prefix of all files and + directories in the archive. 'root_dir' and 'base_dir' both default + to the current directory. Returns the name of the archive file. + + 'owner' and 'group' are used when creating a tar archive. By default, + uses the current owner and group. + """ + save_cwd = os.getcwd() + if root_dir is not None: + if logger is not None: + logger.debug("changing into '%s'", root_dir) + base_name = os.path.abspath(base_name) + if not dry_run: + os.chdir(root_dir) + + if base_dir is None: + base_dir = os.curdir + + kwargs = {'dry_run': dry_run, 'logger': logger} + + try: + format_info = _ARCHIVE_FORMATS[format] + except KeyError: + raise ValueError("unknown archive format '%s'" % format) + + func = format_info[0] + for arg, val in format_info[1]: + kwargs[arg] = val + + if format != 'zip': + kwargs['owner'] = owner + kwargs['group'] = group + + try: + filename = func(base_name, base_dir, **kwargs) + finally: + if root_dir is not None: + if logger is not None: + logger.debug("changing back to '%s'", save_cwd) + os.chdir(save_cwd) + + return filename + + +def get_unpack_formats(): + """Returns a list of supported formats for unpacking. + + Each element of the returned sequence is a tuple + (name, extensions, description) + """ + formats = [(name, info[0], info[3]) for name, info in + _UNPACK_FORMATS.items()] + formats.sort() + return formats + +def _check_unpack_options(extensions, function, extra_args): + """Checks what gets registered as an unpacker.""" + # first make sure no other unpacker is registered for this extension + existing_extensions = {} + for name, info in _UNPACK_FORMATS.items(): + for ext in info[0]: + existing_extensions[ext] = name + + for extension in extensions: + if extension in existing_extensions: + msg = '%s is already registered for "%s"' + raise RegistryError(msg % (extension, + existing_extensions[extension])) + + if not isinstance(function, Callable): + raise TypeError('The registered function must be a callable') + + +def register_unpack_format(name, extensions, function, extra_args=None, + description=''): + """Registers an unpack format. + + `name` is the name of the format. `extensions` is a list of extensions + corresponding to the format. + + `function` is the callable that will be + used to unpack archives. The callable will receive archives to unpack. + If it's unable to handle an archive, it needs to raise a ReadError + exception. + + If provided, `extra_args` is a sequence of + (name, value) tuples that will be passed as arguments to the callable. + description can be provided to describe the format, and will be returned + by the get_unpack_formats() function. + """ + if extra_args is None: + extra_args = [] + _check_unpack_options(extensions, function, extra_args) + _UNPACK_FORMATS[name] = extensions, function, extra_args, description + +def unregister_unpack_format(name): + """Removes the pack format from the registry.""" + del _UNPACK_FORMATS[name] + +def _ensure_directory(path): + """Ensure that the parent directory of `path` exists""" + dirname = os.path.dirname(path) + if not os.path.isdir(dirname): + os.makedirs(dirname) + +def _unpack_zipfile(filename, extract_dir): + """Unpack zip `filename` to `extract_dir` + """ + try: + import zipfile + except ImportError: + raise ReadError('zlib not supported, cannot unpack this archive.') + + if not zipfile.is_zipfile(filename): + raise ReadError("%s is not a zip file" % filename) + + zip = zipfile.ZipFile(filename) + try: + for info in zip.infolist(): + name = info.filename + + # don't extract absolute paths or ones with .. in them + if name.startswith('/') or '..' in name: + continue + + target = os.path.join(extract_dir, *name.split('/')) + if not target: + continue + + _ensure_directory(target) + if not name.endswith('/'): + # file + data = zip.read(info.filename) + f = open(target, 'wb') + try: + f.write(data) + finally: + f.close() + del data + finally: + zip.close() + +def _unpack_tarfile(filename, extract_dir): + """Unpack tar/tar.gz/tar.bz2 `filename` to `extract_dir` + """ + try: + tarobj = tarfile.open(filename) + except tarfile.TarError: + raise ReadError( + "%s is not a compressed or uncompressed tar file" % filename) + try: + tarobj.extractall(extract_dir) + finally: + tarobj.close() + +_UNPACK_FORMATS = { + 'gztar': (['.tar.gz', '.tgz'], _unpack_tarfile, [], "gzip'ed tar-file"), + 'tar': (['.tar'], _unpack_tarfile, [], "uncompressed tar file"), + 'zip': (['.zip'], _unpack_zipfile, [], "ZIP file") + } + +if _BZ2_SUPPORTED: + _UNPACK_FORMATS['bztar'] = (['.bz2'], _unpack_tarfile, [], + "bzip2'ed tar-file") + +def _find_unpack_format(filename): + for name, info in _UNPACK_FORMATS.items(): + for extension in info[0]: + if filename.endswith(extension): + return name + return None + +def unpack_archive(filename, extract_dir=None, format=None): + """Unpack an archive. + + `filename` is the name of the archive. + + `extract_dir` is the name of the target directory, where the archive + is unpacked. If not provided, the current working directory is used. + + `format` is the archive format: one of "zip", "tar", or "gztar". Or any + other registered format. If not provided, unpack_archive will use the + filename extension and see if an unpacker was registered for that + extension. + + In case none is found, a ValueError is raised. + """ + if extract_dir is None: + extract_dir = os.getcwd() + + if format is not None: + try: + format_info = _UNPACK_FORMATS[format] + except KeyError: + raise ValueError("Unknown unpack format '{0}'".format(format)) + + func = format_info[1] + func(filename, extract_dir, **dict(format_info[2])) + else: + # we need to look at the registered unpackers supported extensions + format = _find_unpack_format(filename) + if format is None: + raise ReadError("Unknown archive format '{0}'".format(filename)) + + func = _UNPACK_FORMATS[format][1] + kwargs = dict(_UNPACK_FORMATS[format][2]) + func(filename, extract_dir, **kwargs) diff --git a/Scripts/Lib/site-packages/pip/_vendor/distlib/_backport/sysconfig.cfg b/Scripts/Lib/site-packages/pip/_vendor/distlib/_backport/sysconfig.cfg new file mode 100644 index 0000000..1746bd0 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/distlib/_backport/sysconfig.cfg @@ -0,0 +1,84 @@ +[posix_prefix] +# Configuration directories. Some of these come straight out of the +# configure script. They are for implementing the other variables, not to +# be used directly in [resource_locations]. +confdir = /etc +datadir = /usr/share +libdir = /usr/lib +statedir = /var +# User resource directory +local = ~/.local/{distribution.name} + +stdlib = {base}/lib/python{py_version_short} +platstdlib = {platbase}/lib/python{py_version_short} +purelib = {base}/lib/python{py_version_short}/site-packages +platlib = {platbase}/lib/python{py_version_short}/site-packages +include = {base}/include/python{py_version_short}{abiflags} +platinclude = {platbase}/include/python{py_version_short}{abiflags} +data = {base} + +[posix_home] +stdlib = {base}/lib/python +platstdlib = {base}/lib/python +purelib = {base}/lib/python +platlib = {base}/lib/python +include = {base}/include/python +platinclude = {base}/include/python +scripts = {base}/bin +data = {base} + +[nt] +stdlib = {base}/Lib +platstdlib = {base}/Lib +purelib = {base}/Lib/site-packages +platlib = {base}/Lib/site-packages +include = {base}/Include +platinclude = {base}/Include +scripts = {base}/Scripts +data = {base} + +[os2] +stdlib = {base}/Lib +platstdlib = {base}/Lib +purelib = {base}/Lib/site-packages +platlib = {base}/Lib/site-packages +include = {base}/Include +platinclude = {base}/Include +scripts = {base}/Scripts +data = {base} + +[os2_home] +stdlib = {userbase}/lib/python{py_version_short} +platstdlib = {userbase}/lib/python{py_version_short} +purelib = {userbase}/lib/python{py_version_short}/site-packages +platlib = {userbase}/lib/python{py_version_short}/site-packages +include = {userbase}/include/python{py_version_short} +scripts = {userbase}/bin +data = {userbase} + +[nt_user] +stdlib = {userbase}/Python{py_version_nodot} +platstdlib = {userbase}/Python{py_version_nodot} +purelib = {userbase}/Python{py_version_nodot}/site-packages +platlib = {userbase}/Python{py_version_nodot}/site-packages +include = {userbase}/Python{py_version_nodot}/Include +scripts = {userbase}/Scripts +data = {userbase} + +[posix_user] +stdlib = {userbase}/lib/python{py_version_short} +platstdlib = {userbase}/lib/python{py_version_short} +purelib = {userbase}/lib/python{py_version_short}/site-packages +platlib = {userbase}/lib/python{py_version_short}/site-packages +include = {userbase}/include/python{py_version_short} +scripts = {userbase}/bin +data = {userbase} + +[osx_framework_user] +stdlib = {userbase}/lib/python +platstdlib = {userbase}/lib/python +purelib = {userbase}/lib/python/site-packages +platlib = {userbase}/lib/python/site-packages +include = {userbase}/include +scripts = {userbase}/bin +data = {userbase} diff --git a/Scripts/Lib/site-packages/pip/_vendor/distlib/_backport/sysconfig.py b/Scripts/Lib/site-packages/pip/_vendor/distlib/_backport/sysconfig.py new file mode 100644 index 0000000..b470a37 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/distlib/_backport/sysconfig.py @@ -0,0 +1,786 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2012 The Python Software Foundation. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +"""Access to Python's configuration information.""" + +import codecs +import os +import re +import sys +from os.path import pardir, realpath +try: + import configparser +except ImportError: + import ConfigParser as configparser + + +__all__ = [ + 'get_config_h_filename', + 'get_config_var', + 'get_config_vars', + 'get_makefile_filename', + 'get_path', + 'get_path_names', + 'get_paths', + 'get_platform', + 'get_python_version', + 'get_scheme_names', + 'parse_config_h', +] + + +def _safe_realpath(path): + try: + return realpath(path) + except OSError: + return path + + +if sys.executable: + _PROJECT_BASE = os.path.dirname(_safe_realpath(sys.executable)) +else: + # sys.executable can be empty if argv[0] has been changed and Python is + # unable to retrieve the real program name + _PROJECT_BASE = _safe_realpath(os.getcwd()) + +if os.name == "nt" and "pcbuild" in _PROJECT_BASE[-8:].lower(): + _PROJECT_BASE = _safe_realpath(os.path.join(_PROJECT_BASE, pardir)) +# PC/VS7.1 +if os.name == "nt" and "\\pc\\v" in _PROJECT_BASE[-10:].lower(): + _PROJECT_BASE = _safe_realpath(os.path.join(_PROJECT_BASE, pardir, pardir)) +# PC/AMD64 +if os.name == "nt" and "\\pcbuild\\amd64" in _PROJECT_BASE[-14:].lower(): + _PROJECT_BASE = _safe_realpath(os.path.join(_PROJECT_BASE, pardir, pardir)) + + +def is_python_build(): + for fn in ("Setup.dist", "Setup.local"): + if os.path.isfile(os.path.join(_PROJECT_BASE, "Modules", fn)): + return True + return False + +_PYTHON_BUILD = is_python_build() + +_cfg_read = False + +def _ensure_cfg_read(): + global _cfg_read + if not _cfg_read: + from ..resources import finder + backport_package = __name__.rsplit('.', 1)[0] + _finder = finder(backport_package) + _cfgfile = _finder.find('sysconfig.cfg') + assert _cfgfile, 'sysconfig.cfg exists' + with _cfgfile.as_stream() as s: + _SCHEMES.readfp(s) + if _PYTHON_BUILD: + for scheme in ('posix_prefix', 'posix_home'): + _SCHEMES.set(scheme, 'include', '{srcdir}/Include') + _SCHEMES.set(scheme, 'platinclude', '{projectbase}/.') + + _cfg_read = True + + +_SCHEMES = configparser.RawConfigParser() +_VAR_REPL = re.compile(r'\{([^{]*?)\}') + +def _expand_globals(config): + _ensure_cfg_read() + if config.has_section('globals'): + globals = config.items('globals') + else: + globals = tuple() + + sections = config.sections() + for section in sections: + if section == 'globals': + continue + for option, value in globals: + if config.has_option(section, option): + continue + config.set(section, option, value) + config.remove_section('globals') + + # now expanding local variables defined in the cfg file + # + for section in config.sections(): + variables = dict(config.items(section)) + + def _replacer(matchobj): + name = matchobj.group(1) + if name in variables: + return variables[name] + return matchobj.group(0) + + for option, value in config.items(section): + config.set(section, option, _VAR_REPL.sub(_replacer, value)) + +#_expand_globals(_SCHEMES) + +_PY_VERSION = '%s.%s.%s' % sys.version_info[:3] +_PY_VERSION_SHORT = '%s.%s' % sys.version_info[:2] +_PY_VERSION_SHORT_NO_DOT = '%s%s' % sys.version_info[:2] +_PREFIX = os.path.normpath(sys.prefix) +_EXEC_PREFIX = os.path.normpath(sys.exec_prefix) +_CONFIG_VARS = None +_USER_BASE = None + + +def _subst_vars(path, local_vars): + """In the string `path`, replace tokens like {some.thing} with the + corresponding value from the map `local_vars`. + + If there is no corresponding value, leave the token unchanged. + """ + def _replacer(matchobj): + name = matchobj.group(1) + if name in local_vars: + return local_vars[name] + elif name in os.environ: + return os.environ[name] + return matchobj.group(0) + return _VAR_REPL.sub(_replacer, path) + + +def _extend_dict(target_dict, other_dict): + target_keys = target_dict.keys() + for key, value in other_dict.items(): + if key in target_keys: + continue + target_dict[key] = value + + +def _expand_vars(scheme, vars): + res = {} + if vars is None: + vars = {} + _extend_dict(vars, get_config_vars()) + + for key, value in _SCHEMES.items(scheme): + if os.name in ('posix', 'nt'): + value = os.path.expanduser(value) + res[key] = os.path.normpath(_subst_vars(value, vars)) + return res + + +def format_value(value, vars): + def _replacer(matchobj): + name = matchobj.group(1) + if name in vars: + return vars[name] + return matchobj.group(0) + return _VAR_REPL.sub(_replacer, value) + + +def _get_default_scheme(): + if os.name == 'posix': + # the default scheme for posix is posix_prefix + return 'posix_prefix' + return os.name + + +def _getuserbase(): + env_base = os.environ.get("PYTHONUSERBASE", None) + + def joinuser(*args): + return os.path.expanduser(os.path.join(*args)) + + # what about 'os2emx', 'riscos' ? + if os.name == "nt": + base = os.environ.get("APPDATA") or "~" + if env_base: + return env_base + else: + return joinuser(base, "Python") + + if sys.platform == "darwin": + framework = get_config_var("PYTHONFRAMEWORK") + if framework: + if env_base: + return env_base + else: + return joinuser("~", "Library", framework, "%d.%d" % + sys.version_info[:2]) + + if env_base: + return env_base + else: + return joinuser("~", ".local") + + +def _parse_makefile(filename, vars=None): + """Parse a Makefile-style file. + + A dictionary containing name/value pairs is returned. If an + optional dictionary is passed in as the second argument, it is + used instead of a new dictionary. + """ + # Regexes needed for parsing Makefile (and similar syntaxes, + # like old-style Setup files). + _variable_rx = re.compile(r"([a-zA-Z][a-zA-Z0-9_]+)\s*=\s*(.*)") + _findvar1_rx = re.compile(r"\$\(([A-Za-z][A-Za-z0-9_]*)\)") + _findvar2_rx = re.compile(r"\${([A-Za-z][A-Za-z0-9_]*)}") + + if vars is None: + vars = {} + done = {} + notdone = {} + + with codecs.open(filename, encoding='utf-8', errors="surrogateescape") as f: + lines = f.readlines() + + for line in lines: + if line.startswith('#') or line.strip() == '': + continue + m = _variable_rx.match(line) + if m: + n, v = m.group(1, 2) + v = v.strip() + # `$$' is a literal `$' in make + tmpv = v.replace('$$', '') + + if "$" in tmpv: + notdone[n] = v + else: + try: + v = int(v) + except ValueError: + # insert literal `$' + done[n] = v.replace('$$', '$') + else: + done[n] = v + + # do variable interpolation here + variables = list(notdone.keys()) + + # Variables with a 'PY_' prefix in the makefile. These need to + # be made available without that prefix through sysconfig. + # Special care is needed to ensure that variable expansion works, even + # if the expansion uses the name without a prefix. + renamed_variables = ('CFLAGS', 'LDFLAGS', 'CPPFLAGS') + + while len(variables) > 0: + for name in tuple(variables): + value = notdone[name] + m = _findvar1_rx.search(value) or _findvar2_rx.search(value) + if m is not None: + n = m.group(1) + found = True + if n in done: + item = str(done[n]) + elif n in notdone: + # get it on a subsequent round + found = False + elif n in os.environ: + # do it like make: fall back to environment + item = os.environ[n] + + elif n in renamed_variables: + if (name.startswith('PY_') and + name[3:] in renamed_variables): + item = "" + + elif 'PY_' + n in notdone: + found = False + + else: + item = str(done['PY_' + n]) + + else: + done[n] = item = "" + + if found: + after = value[m.end():] + value = value[:m.start()] + item + after + if "$" in after: + notdone[name] = value + else: + try: + value = int(value) + except ValueError: + done[name] = value.strip() + else: + done[name] = value + variables.remove(name) + + if (name.startswith('PY_') and + name[3:] in renamed_variables): + + name = name[3:] + if name not in done: + done[name] = value + + else: + # bogus variable reference (e.g. "prefix=$/opt/python"); + # just drop it since we can't deal + done[name] = value + variables.remove(name) + + # strip spurious spaces + for k, v in done.items(): + if isinstance(v, str): + done[k] = v.strip() + + # save the results in the global dictionary + vars.update(done) + return vars + + +def get_makefile_filename(): + """Return the path of the Makefile.""" + if _PYTHON_BUILD: + return os.path.join(_PROJECT_BASE, "Makefile") + if hasattr(sys, 'abiflags'): + config_dir_name = 'config-%s%s' % (_PY_VERSION_SHORT, sys.abiflags) + else: + config_dir_name = 'config' + return os.path.join(get_path('stdlib'), config_dir_name, 'Makefile') + + +def _init_posix(vars): + """Initialize the module as appropriate for POSIX systems.""" + # load the installed Makefile: + makefile = get_makefile_filename() + try: + _parse_makefile(makefile, vars) + except IOError as e: + msg = "invalid Python installation: unable to open %s" % makefile + if hasattr(e, "strerror"): + msg = msg + " (%s)" % e.strerror + raise IOError(msg) + # load the installed pyconfig.h: + config_h = get_config_h_filename() + try: + with open(config_h) as f: + parse_config_h(f, vars) + except IOError as e: + msg = "invalid Python installation: unable to open %s" % config_h + if hasattr(e, "strerror"): + msg = msg + " (%s)" % e.strerror + raise IOError(msg) + # On AIX, there are wrong paths to the linker scripts in the Makefile + # -- these paths are relative to the Python source, but when installed + # the scripts are in another directory. + if _PYTHON_BUILD: + vars['LDSHARED'] = vars['BLDSHARED'] + + +def _init_non_posix(vars): + """Initialize the module as appropriate for NT""" + # set basic install directories + vars['LIBDEST'] = get_path('stdlib') + vars['BINLIBDEST'] = get_path('platstdlib') + vars['INCLUDEPY'] = get_path('include') + vars['SO'] = '.pyd' + vars['EXE'] = '.exe' + vars['VERSION'] = _PY_VERSION_SHORT_NO_DOT + vars['BINDIR'] = os.path.dirname(_safe_realpath(sys.executable)) + +# +# public APIs +# + + +def parse_config_h(fp, vars=None): + """Parse a config.h-style file. + + A dictionary containing name/value pairs is returned. If an + optional dictionary is passed in as the second argument, it is + used instead of a new dictionary. + """ + if vars is None: + vars = {} + define_rx = re.compile("#define ([A-Z][A-Za-z0-9_]+) (.*)\n") + undef_rx = re.compile("/[*] #undef ([A-Z][A-Za-z0-9_]+) [*]/\n") + + while True: + line = fp.readline() + if not line: + break + m = define_rx.match(line) + if m: + n, v = m.group(1, 2) + try: + v = int(v) + except ValueError: + pass + vars[n] = v + else: + m = undef_rx.match(line) + if m: + vars[m.group(1)] = 0 + return vars + + +def get_config_h_filename(): + """Return the path of pyconfig.h.""" + if _PYTHON_BUILD: + if os.name == "nt": + inc_dir = os.path.join(_PROJECT_BASE, "PC") + else: + inc_dir = _PROJECT_BASE + else: + inc_dir = get_path('platinclude') + return os.path.join(inc_dir, 'pyconfig.h') + + +def get_scheme_names(): + """Return a tuple containing the schemes names.""" + return tuple(sorted(_SCHEMES.sections())) + + +def get_path_names(): + """Return a tuple containing the paths names.""" + # xxx see if we want a static list + return _SCHEMES.options('posix_prefix') + + +def get_paths(scheme=_get_default_scheme(), vars=None, expand=True): + """Return a mapping containing an install scheme. + + ``scheme`` is the install scheme name. If not provided, it will + return the default scheme for the current platform. + """ + _ensure_cfg_read() + if expand: + return _expand_vars(scheme, vars) + else: + return dict(_SCHEMES.items(scheme)) + + +def get_path(name, scheme=_get_default_scheme(), vars=None, expand=True): + """Return a path corresponding to the scheme. + + ``scheme`` is the install scheme name. + """ + return get_paths(scheme, vars, expand)[name] + + +def get_config_vars(*args): + """With no arguments, return a dictionary of all configuration + variables relevant for the current platform. + + On Unix, this means every variable defined in Python's installed Makefile; + On Windows and Mac OS it's a much smaller set. + + With arguments, return a list of values that result from looking up + each argument in the configuration variable dictionary. + """ + global _CONFIG_VARS + if _CONFIG_VARS is None: + _CONFIG_VARS = {} + # Normalized versions of prefix and exec_prefix are handy to have; + # in fact, these are the standard versions used most places in the + # distutils2 module. + _CONFIG_VARS['prefix'] = _PREFIX + _CONFIG_VARS['exec_prefix'] = _EXEC_PREFIX + _CONFIG_VARS['py_version'] = _PY_VERSION + _CONFIG_VARS['py_version_short'] = _PY_VERSION_SHORT + _CONFIG_VARS['py_version_nodot'] = _PY_VERSION[0] + _PY_VERSION[2] + _CONFIG_VARS['base'] = _PREFIX + _CONFIG_VARS['platbase'] = _EXEC_PREFIX + _CONFIG_VARS['projectbase'] = _PROJECT_BASE + try: + _CONFIG_VARS['abiflags'] = sys.abiflags + except AttributeError: + # sys.abiflags may not be defined on all platforms. + _CONFIG_VARS['abiflags'] = '' + + if os.name in ('nt', 'os2'): + _init_non_posix(_CONFIG_VARS) + if os.name == 'posix': + _init_posix(_CONFIG_VARS) + # Setting 'userbase' is done below the call to the + # init function to enable using 'get_config_var' in + # the init-function. + if sys.version >= '2.6': + _CONFIG_VARS['userbase'] = _getuserbase() + + if 'srcdir' not in _CONFIG_VARS: + _CONFIG_VARS['srcdir'] = _PROJECT_BASE + else: + _CONFIG_VARS['srcdir'] = _safe_realpath(_CONFIG_VARS['srcdir']) + + # Convert srcdir into an absolute path if it appears necessary. + # Normally it is relative to the build directory. However, during + # testing, for example, we might be running a non-installed python + # from a different directory. + if _PYTHON_BUILD and os.name == "posix": + base = _PROJECT_BASE + try: + cwd = os.getcwd() + except OSError: + cwd = None + if (not os.path.isabs(_CONFIG_VARS['srcdir']) and + base != cwd): + # srcdir is relative and we are not in the same directory + # as the executable. Assume executable is in the build + # directory and make srcdir absolute. + srcdir = os.path.join(base, _CONFIG_VARS['srcdir']) + _CONFIG_VARS['srcdir'] = os.path.normpath(srcdir) + + if sys.platform == 'darwin': + kernel_version = os.uname()[2] # Kernel version (8.4.3) + major_version = int(kernel_version.split('.')[0]) + + if major_version < 8: + # On Mac OS X before 10.4, check if -arch and -isysroot + # are in CFLAGS or LDFLAGS and remove them if they are. + # This is needed when building extensions on a 10.3 system + # using a universal build of python. + for key in ('LDFLAGS', 'BASECFLAGS', + # a number of derived variables. These need to be + # patched up as well. + 'CFLAGS', 'PY_CFLAGS', 'BLDSHARED'): + flags = _CONFIG_VARS[key] + flags = re.sub(r'-arch\s+\w+\s', ' ', flags) + flags = re.sub('-isysroot [^ \t]*', ' ', flags) + _CONFIG_VARS[key] = flags + else: + # Allow the user to override the architecture flags using + # an environment variable. + # NOTE: This name was introduced by Apple in OSX 10.5 and + # is used by several scripting languages distributed with + # that OS release. + if 'ARCHFLAGS' in os.environ: + arch = os.environ['ARCHFLAGS'] + for key in ('LDFLAGS', 'BASECFLAGS', + # a number of derived variables. These need to be + # patched up as well. + 'CFLAGS', 'PY_CFLAGS', 'BLDSHARED'): + + flags = _CONFIG_VARS[key] + flags = re.sub(r'-arch\s+\w+\s', ' ', flags) + flags = flags + ' ' + arch + _CONFIG_VARS[key] = flags + + # If we're on OSX 10.5 or later and the user tries to + # compiles an extension using an SDK that is not present + # on the current machine it is better to not use an SDK + # than to fail. + # + # The major usecase for this is users using a Python.org + # binary installer on OSX 10.6: that installer uses + # the 10.4u SDK, but that SDK is not installed by default + # when you install Xcode. + # + CFLAGS = _CONFIG_VARS.get('CFLAGS', '') + m = re.search(r'-isysroot\s+(\S+)', CFLAGS) + if m is not None: + sdk = m.group(1) + if not os.path.exists(sdk): + for key in ('LDFLAGS', 'BASECFLAGS', + # a number of derived variables. These need to be + # patched up as well. + 'CFLAGS', 'PY_CFLAGS', 'BLDSHARED'): + + flags = _CONFIG_VARS[key] + flags = re.sub(r'-isysroot\s+\S+(\s|$)', ' ', flags) + _CONFIG_VARS[key] = flags + + if args: + vals = [] + for name in args: + vals.append(_CONFIG_VARS.get(name)) + return vals + else: + return _CONFIG_VARS + + +def get_config_var(name): + """Return the value of a single variable using the dictionary returned by + 'get_config_vars()'. + + Equivalent to get_config_vars().get(name) + """ + return get_config_vars().get(name) + + +def get_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. for IRIX + the architecture isn't particularly important (IRIX only runs on SGI + hardware), but for Linux the kernel version isn't particularly + important. + + Examples of returned values: + linux-i586 + linux-alpha (?) + solaris-2.6-sun4u + irix-5.3 + irix64-6.2 + + Windows will return one of: + win-amd64 (64bit Windows on AMD64 (aka x86_64, Intel64, EM64T, etc) + win-ia64 (64bit Windows on Itanium) + win32 (all others - specifically, sys.platform is returned) + + For other non-POSIX platforms, currently just returns 'sys.platform'. + """ + if os.name == 'nt': + # sniff sys.version for architecture. + prefix = " bit (" + i = sys.version.find(prefix) + if i == -1: + return sys.platform + j = sys.version.find(")", i) + look = sys.version[i+len(prefix):j].lower() + if look == 'amd64': + return 'win-amd64' + if look == 'itanium': + return 'win-ia64' + return sys.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 + # (to accommodate BSD/OS), and translate spaces (for "Power Macintosh") + osname = osname.lower().replace('/', '') + machine = machine.replace(' ', '_') + machine = machine.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:]) + # fall through to standard osname-release-machine representation + elif osname[:4] == "irix": # could be "irix64"! + return "%s-%s" % (osname, release) + elif osname[:3] == "aix": + return "%s-%s.%s" % (osname, version, release) + elif osname[:6] == "cygwin": + osname = "cygwin" + rel_re = re.compile(r'[\d.]+') + m = rel_re.match(release) + if m: + release = m.group() + elif osname[:6] == "darwin": + # + # For our purposes, we'll assume that the system version from + # distutils' perspective is what MACOSX_DEPLOYMENT_TARGET is set + # to. This makes the compatibility story a bit more sane because the + # machine is going to compile and link as if it were + # MACOSX_DEPLOYMENT_TARGET. + cfgvars = get_config_vars() + macver = cfgvars.get('MACOSX_DEPLOYMENT_TARGET') + + if True: + # Always calculate the release of the running machine, + # needed to determine if we can build fat binaries or not. + + macrelease = macver + # Get the system version. Reading this plist is a documented + # way to get the system version (see the documentation for + # the Gestalt Manager) + try: + f = open('/System/Library/CoreServices/SystemVersion.plist') + except IOError: + # We're on a plain darwin box, fall back to the default + # behaviour. + pass + else: + try: + m = re.search(r'ProductUserVisibleVersion\s*' + r'(.*?)', f.read()) + finally: + f.close() + if m is not None: + macrelease = '.'.join(m.group(1).split('.')[:2]) + # else: fall back to the default behaviour + + if not macver: + macver = macrelease + + if macver: + release = macver + osname = "macosx" + + if ((macrelease + '.') >= '10.4.' and + '-arch' in get_config_vars().get('CFLAGS', '').strip()): + # The universal build will build fat binaries, but not on + # systems before 10.4 + # + # Try to detect 4-way universal builds, those have machine-type + # 'universal' instead of 'fat'. + + machine = 'fat' + cflags = get_config_vars().get('CFLAGS') + + archs = re.findall(r'-arch\s+(\S+)', cflags) + archs = tuple(sorted(set(archs))) + + if len(archs) == 1: + machine = archs[0] + elif archs == ('i386', 'ppc'): + machine = 'fat' + elif archs == ('i386', 'x86_64'): + machine = 'intel' + elif archs == ('i386', 'ppc', 'x86_64'): + machine = 'fat3' + elif archs == ('ppc64', 'x86_64'): + machine = 'fat64' + elif archs == ('i386', 'ppc', 'ppc64', 'x86_64'): + machine = 'universal' + else: + raise ValueError( + "Don't know machine value for archs=%r" % (archs,)) + + elif machine == 'i386': + # On OSX the machine type returned by uname is always the + # 32-bit variant, even if the executable architecture is + # the 64-bit variant + if sys.maxsize >= 2**32: + machine = 'x86_64' + + elif machine in ('PowerPC', 'Power_Macintosh'): + # Pick a sane name for the PPC architecture. + # See 'i386' case + if sys.maxsize >= 2**32: + machine = 'ppc64' + else: + machine = 'ppc' + + return "%s-%s-%s" % (osname, release, machine) + + +def get_python_version(): + return _PY_VERSION_SHORT + + +def _print_dict(title, data): + for index, (key, value) in enumerate(sorted(data.items())): + if index == 0: + print('%s: ' % (title)) + print('\t%s = "%s"' % (key, value)) + + +def _main(): + """Display all information sysconfig detains.""" + print('Platform: "%s"' % get_platform()) + print('Python version: "%s"' % get_python_version()) + print('Current installation scheme: "%s"' % _get_default_scheme()) + print() + _print_dict('Paths', get_paths()) + print() + _print_dict('Variables', get_config_vars()) + + +if __name__ == '__main__': + _main() diff --git a/Scripts/Lib/site-packages/pip/_vendor/distlib/_backport/tarfile.py b/Scripts/Lib/site-packages/pip/_vendor/distlib/_backport/tarfile.py new file mode 100644 index 0000000..d66d856 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/distlib/_backport/tarfile.py @@ -0,0 +1,2607 @@ +#------------------------------------------------------------------- +# tarfile.py +#------------------------------------------------------------------- +# Copyright (C) 2002 Lars Gustaebel +# All rights reserved. +# +# 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. +# +from __future__ import print_function + +"""Read from and write to tar format archives. +""" + +__version__ = "$Revision$" + +version = "0.9.0" +__author__ = "Lars Gust\u00e4bel (lars@gustaebel.de)" +__date__ = "$Date: 2011-02-25 17:42:01 +0200 (Fri, 25 Feb 2011) $" +__cvsid__ = "$Id: tarfile.py 88586 2011-02-25 15:42:01Z marc-andre.lemburg $" +__credits__ = "Gustavo Niemeyer, Niels Gust\u00e4bel, Richard Townsend." + +#--------- +# Imports +#--------- +import sys +import os +import stat +import errno +import time +import struct +import copy +import re + +try: + import grp, pwd +except ImportError: + grp = pwd = None + +# os.symlink on Windows prior to 6.0 raises NotImplementedError +symlink_exception = (AttributeError, NotImplementedError) +try: + # WindowsError (1314) will be raised if the caller does not hold the + # SeCreateSymbolicLinkPrivilege privilege + symlink_exception += (WindowsError,) +except NameError: + pass + +# from tarfile import * +__all__ = ["TarFile", "TarInfo", "is_tarfile", "TarError"] + +if sys.version_info[0] < 3: + import __builtin__ as builtins +else: + import builtins + +_open = builtins.open # Since 'open' is TarFile.open + +#--------------------------------------------------------- +# tar constants +#--------------------------------------------------------- +NUL = b"\0" # the null character +BLOCKSIZE = 512 # length of processing blocks +RECORDSIZE = BLOCKSIZE * 20 # length of records +GNU_MAGIC = b"ustar \0" # magic gnu tar string +POSIX_MAGIC = b"ustar\x0000" # magic posix tar string + +LENGTH_NAME = 100 # maximum length of a filename +LENGTH_LINK = 100 # maximum length of a linkname +LENGTH_PREFIX = 155 # maximum length of the prefix field + +REGTYPE = b"0" # regular file +AREGTYPE = b"\0" # regular file +LNKTYPE = b"1" # link (inside tarfile) +SYMTYPE = b"2" # symbolic link +CHRTYPE = b"3" # character special device +BLKTYPE = b"4" # block special device +DIRTYPE = b"5" # directory +FIFOTYPE = b"6" # fifo special device +CONTTYPE = b"7" # contiguous file + +GNUTYPE_LONGNAME = b"L" # GNU tar longname +GNUTYPE_LONGLINK = b"K" # GNU tar longlink +GNUTYPE_SPARSE = b"S" # GNU tar sparse file + +XHDTYPE = b"x" # POSIX.1-2001 extended header +XGLTYPE = b"g" # POSIX.1-2001 global header +SOLARIS_XHDTYPE = b"X" # Solaris extended header + +USTAR_FORMAT = 0 # POSIX.1-1988 (ustar) format +GNU_FORMAT = 1 # GNU tar format +PAX_FORMAT = 2 # POSIX.1-2001 (pax) format +DEFAULT_FORMAT = GNU_FORMAT + +#--------------------------------------------------------- +# tarfile constants +#--------------------------------------------------------- +# File types that tarfile supports: +SUPPORTED_TYPES = (REGTYPE, AREGTYPE, LNKTYPE, + SYMTYPE, DIRTYPE, FIFOTYPE, + CONTTYPE, CHRTYPE, BLKTYPE, + GNUTYPE_LONGNAME, GNUTYPE_LONGLINK, + GNUTYPE_SPARSE) + +# File types that will be treated as a regular file. +REGULAR_TYPES = (REGTYPE, AREGTYPE, + CONTTYPE, GNUTYPE_SPARSE) + +# File types that are part of the GNU tar format. +GNU_TYPES = (GNUTYPE_LONGNAME, GNUTYPE_LONGLINK, + GNUTYPE_SPARSE) + +# Fields from a pax header that override a TarInfo attribute. +PAX_FIELDS = ("path", "linkpath", "size", "mtime", + "uid", "gid", "uname", "gname") + +# Fields from a pax header that are affected by hdrcharset. +PAX_NAME_FIELDS = set(("path", "linkpath", "uname", "gname")) + +# Fields in a pax header that are numbers, all other fields +# are treated as strings. +PAX_NUMBER_FIELDS = { + "atime": float, + "ctime": float, + "mtime": float, + "uid": int, + "gid": int, + "size": int +} + +#--------------------------------------------------------- +# Bits used in the mode field, values in octal. +#--------------------------------------------------------- +S_IFLNK = 0o120000 # symbolic link +S_IFREG = 0o100000 # regular file +S_IFBLK = 0o060000 # block device +S_IFDIR = 0o040000 # directory +S_IFCHR = 0o020000 # character device +S_IFIFO = 0o010000 # fifo + +TSUID = 0o4000 # set UID on execution +TSGID = 0o2000 # set GID on execution +TSVTX = 0o1000 # reserved + +TUREAD = 0o400 # read by owner +TUWRITE = 0o200 # write by owner +TUEXEC = 0o100 # execute/search by owner +TGREAD = 0o040 # read by group +TGWRITE = 0o020 # write by group +TGEXEC = 0o010 # execute/search by group +TOREAD = 0o004 # read by other +TOWRITE = 0o002 # write by other +TOEXEC = 0o001 # execute/search by other + +#--------------------------------------------------------- +# initialization +#--------------------------------------------------------- +if os.name in ("nt", "ce"): + ENCODING = "utf-8" +else: + ENCODING = sys.getfilesystemencoding() + +#--------------------------------------------------------- +# Some useful functions +#--------------------------------------------------------- + +def stn(s, length, encoding, errors): + """Convert a string to a null-terminated bytes object. + """ + s = s.encode(encoding, errors) + return s[:length] + (length - len(s)) * NUL + +def nts(s, encoding, errors): + """Convert a null-terminated bytes object to a string. + """ + p = s.find(b"\0") + if p != -1: + s = s[:p] + return s.decode(encoding, errors) + +def nti(s): + """Convert a number field to a python number. + """ + # There are two possible encodings for a number field, see + # itn() below. + if s[0] != chr(0o200): + try: + n = int(nts(s, "ascii", "strict") or "0", 8) + except ValueError: + raise InvalidHeaderError("invalid header") + else: + n = 0 + for i in range(len(s) - 1): + n <<= 8 + n += ord(s[i + 1]) + return n + +def itn(n, digits=8, format=DEFAULT_FORMAT): + """Convert a python number to a number field. + """ + # POSIX 1003.1-1988 requires numbers to be encoded as a string of + # octal digits followed by a null-byte, this allows values up to + # (8**(digits-1))-1. GNU tar allows storing numbers greater than + # that if necessary. A leading 0o200 byte indicates this particular + # encoding, the following digits-1 bytes are a big-endian + # representation. This allows values up to (256**(digits-1))-1. + if 0 <= n < 8 ** (digits - 1): + s = ("%0*o" % (digits - 1, n)).encode("ascii") + NUL + else: + if format != GNU_FORMAT or n >= 256 ** (digits - 1): + raise ValueError("overflow in number field") + + if n < 0: + # XXX We mimic GNU tar's behaviour with negative numbers, + # this could raise OverflowError. + n = struct.unpack("L", struct.pack("l", n))[0] + + s = bytearray() + for i in range(digits - 1): + s.insert(0, n & 0o377) + n >>= 8 + s.insert(0, 0o200) + return s + +def calc_chksums(buf): + """Calculate the checksum for a member's header by summing up all + characters except for the chksum field which is treated as if + it was filled with spaces. According to the GNU tar sources, + some tars (Sun and NeXT) calculate chksum with signed char, + which will be different if there are chars in the buffer with + the high bit set. So we calculate two checksums, unsigned and + signed. + """ + unsigned_chksum = 256 + sum(struct.unpack("148B", buf[:148]) + struct.unpack("356B", buf[156:512])) + signed_chksum = 256 + sum(struct.unpack("148b", buf[:148]) + struct.unpack("356b", buf[156:512])) + return unsigned_chksum, signed_chksum + +def copyfileobj(src, dst, length=None): + """Copy length bytes from fileobj src to fileobj dst. + If length is None, copy the entire content. + """ + if length == 0: + return + if length is None: + while True: + buf = src.read(16*1024) + if not buf: + break + dst.write(buf) + return + + BUFSIZE = 16 * 1024 + blocks, remainder = divmod(length, BUFSIZE) + for b in range(blocks): + buf = src.read(BUFSIZE) + if len(buf) < BUFSIZE: + raise IOError("end of file reached") + dst.write(buf) + + if remainder != 0: + buf = src.read(remainder) + if len(buf) < remainder: + raise IOError("end of file reached") + dst.write(buf) + return + +filemode_table = ( + ((S_IFLNK, "l"), + (S_IFREG, "-"), + (S_IFBLK, "b"), + (S_IFDIR, "d"), + (S_IFCHR, "c"), + (S_IFIFO, "p")), + + ((TUREAD, "r"),), + ((TUWRITE, "w"),), + ((TUEXEC|TSUID, "s"), + (TSUID, "S"), + (TUEXEC, "x")), + + ((TGREAD, "r"),), + ((TGWRITE, "w"),), + ((TGEXEC|TSGID, "s"), + (TSGID, "S"), + (TGEXEC, "x")), + + ((TOREAD, "r"),), + ((TOWRITE, "w"),), + ((TOEXEC|TSVTX, "t"), + (TSVTX, "T"), + (TOEXEC, "x")) +) + +def filemode(mode): + """Convert a file's mode to a string of the form + -rwxrwxrwx. + Used by TarFile.list() + """ + perm = [] + for table in filemode_table: + for bit, char in table: + if mode & bit == bit: + perm.append(char) + break + else: + perm.append("-") + return "".join(perm) + +class TarError(Exception): + """Base exception.""" + pass +class ExtractError(TarError): + """General exception for extract errors.""" + pass +class ReadError(TarError): + """Exception for unreadable tar archives.""" + pass +class CompressionError(TarError): + """Exception for unavailable compression methods.""" + pass +class StreamError(TarError): + """Exception for unsupported operations on stream-like TarFiles.""" + pass +class HeaderError(TarError): + """Base exception for header errors.""" + pass +class EmptyHeaderError(HeaderError): + """Exception for empty headers.""" + pass +class TruncatedHeaderError(HeaderError): + """Exception for truncated headers.""" + pass +class EOFHeaderError(HeaderError): + """Exception for end of file headers.""" + pass +class InvalidHeaderError(HeaderError): + """Exception for invalid headers.""" + pass +class SubsequentHeaderError(HeaderError): + """Exception for missing and invalid extended headers.""" + pass + +#--------------------------- +# internal stream interface +#--------------------------- +class _LowLevelFile(object): + """Low-level file object. Supports reading and writing. + It is used instead of a regular file object for streaming + access. + """ + + def __init__(self, name, mode): + mode = { + "r": os.O_RDONLY, + "w": os.O_WRONLY | os.O_CREAT | os.O_TRUNC, + }[mode] + if hasattr(os, "O_BINARY"): + mode |= os.O_BINARY + self.fd = os.open(name, mode, 0o666) + + def close(self): + os.close(self.fd) + + def read(self, size): + return os.read(self.fd, size) + + def write(self, s): + os.write(self.fd, s) + +class _Stream(object): + """Class that serves as an adapter between TarFile and + a stream-like object. The stream-like object only + needs to have a read() or write() method and is accessed + blockwise. Use of gzip or bzip2 compression is possible. + A stream-like object could be for example: sys.stdin, + sys.stdout, a socket, a tape device etc. + + _Stream is intended to be used only internally. + """ + + def __init__(self, name, mode, comptype, fileobj, bufsize): + """Construct a _Stream object. + """ + self._extfileobj = True + if fileobj is None: + fileobj = _LowLevelFile(name, mode) + self._extfileobj = False + + if comptype == '*': + # Enable transparent compression detection for the + # stream interface + fileobj = _StreamProxy(fileobj) + comptype = fileobj.getcomptype() + + self.name = name or "" + self.mode = mode + self.comptype = comptype + self.fileobj = fileobj + self.bufsize = bufsize + self.buf = b"" + self.pos = 0 + self.closed = False + + try: + if comptype == "gz": + try: + import zlib + except ImportError: + raise CompressionError("zlib module is not available") + self.zlib = zlib + self.crc = zlib.crc32(b"") + if mode == "r": + self._init_read_gz() + else: + self._init_write_gz() + + if comptype == "bz2": + try: + import bz2 + except ImportError: + raise CompressionError("bz2 module is not available") + if mode == "r": + self.dbuf = b"" + self.cmp = bz2.BZ2Decompressor() + else: + self.cmp = bz2.BZ2Compressor() + except: + if not self._extfileobj: + self.fileobj.close() + self.closed = True + raise + + def __del__(self): + if hasattr(self, "closed") and not self.closed: + self.close() + + def _init_write_gz(self): + """Initialize for writing with gzip compression. + """ + self.cmp = self.zlib.compressobj(9, self.zlib.DEFLATED, + -self.zlib.MAX_WBITS, + self.zlib.DEF_MEM_LEVEL, + 0) + timestamp = struct.pack(" self.bufsize: + self.fileobj.write(self.buf[:self.bufsize]) + self.buf = self.buf[self.bufsize:] + + def close(self): + """Close the _Stream object. No operation should be + done on it afterwards. + """ + if self.closed: + return + + if self.mode == "w" and self.comptype != "tar": + self.buf += self.cmp.flush() + + if self.mode == "w" and self.buf: + self.fileobj.write(self.buf) + self.buf = b"" + if self.comptype == "gz": + # The native zlib crc is an unsigned 32-bit integer, but + # the Python wrapper implicitly casts that to a signed C + # long. So, on a 32-bit box self.crc may "look negative", + # while the same crc on a 64-bit box may "look positive". + # To avoid irksome warnings from the `struct` module, force + # it to look positive on all boxes. + self.fileobj.write(struct.pack("= 0: + blocks, remainder = divmod(pos - self.pos, self.bufsize) + for i in range(blocks): + self.read(self.bufsize) + self.read(remainder) + else: + raise StreamError("seeking backwards is not allowed") + return self.pos + + def read(self, size=None): + """Return the next size number of bytes from the stream. + If size is not defined, return all bytes of the stream + up to EOF. + """ + if size is None: + t = [] + while True: + buf = self._read(self.bufsize) + if not buf: + break + t.append(buf) + buf = "".join(t) + else: + buf = self._read(size) + self.pos += len(buf) + return buf + + def _read(self, size): + """Return size bytes from the stream. + """ + if self.comptype == "tar": + return self.__read(size) + + c = len(self.dbuf) + while c < size: + buf = self.__read(self.bufsize) + if not buf: + break + try: + buf = self.cmp.decompress(buf) + except IOError: + raise ReadError("invalid compressed data") + self.dbuf += buf + c += len(buf) + buf = self.dbuf[:size] + self.dbuf = self.dbuf[size:] + return buf + + def __read(self, size): + """Return size bytes from stream. If internal buffer is empty, + read another block from the stream. + """ + c = len(self.buf) + while c < size: + buf = self.fileobj.read(self.bufsize) + if not buf: + break + self.buf += buf + c += len(buf) + buf = self.buf[:size] + self.buf = self.buf[size:] + return buf +# class _Stream + +class _StreamProxy(object): + """Small proxy class that enables transparent compression + detection for the Stream interface (mode 'r|*'). + """ + + def __init__(self, fileobj): + self.fileobj = fileobj + self.buf = self.fileobj.read(BLOCKSIZE) + + def read(self, size): + self.read = self.fileobj.read + return self.buf + + def getcomptype(self): + if self.buf.startswith(b"\037\213\010"): + return "gz" + if self.buf.startswith(b"BZh91"): + return "bz2" + return "tar" + + def close(self): + self.fileobj.close() +# class StreamProxy + +class _BZ2Proxy(object): + """Small proxy class that enables external file object + support for "r:bz2" and "w:bz2" modes. This is actually + a workaround for a limitation in bz2 module's BZ2File + class which (unlike gzip.GzipFile) has no support for + a file object argument. + """ + + blocksize = 16 * 1024 + + def __init__(self, fileobj, mode): + self.fileobj = fileobj + self.mode = mode + self.name = getattr(self.fileobj, "name", None) + self.init() + + def init(self): + import bz2 + self.pos = 0 + if self.mode == "r": + self.bz2obj = bz2.BZ2Decompressor() + self.fileobj.seek(0) + self.buf = b"" + else: + self.bz2obj = bz2.BZ2Compressor() + + def read(self, size): + x = len(self.buf) + while x < size: + raw = self.fileobj.read(self.blocksize) + if not raw: + break + data = self.bz2obj.decompress(raw) + self.buf += data + x += len(data) + + buf = self.buf[:size] + self.buf = self.buf[size:] + self.pos += len(buf) + return buf + + def seek(self, pos): + if pos < self.pos: + self.init() + self.read(pos - self.pos) + + def tell(self): + return self.pos + + def write(self, data): + self.pos += len(data) + raw = self.bz2obj.compress(data) + self.fileobj.write(raw) + + def close(self): + if self.mode == "w": + raw = self.bz2obj.flush() + self.fileobj.write(raw) +# class _BZ2Proxy + +#------------------------ +# Extraction file object +#------------------------ +class _FileInFile(object): + """A thin wrapper around an existing file object that + provides a part of its data as an individual file + object. + """ + + def __init__(self, fileobj, offset, size, blockinfo=None): + self.fileobj = fileobj + self.offset = offset + self.size = size + self.position = 0 + + if blockinfo is None: + blockinfo = [(0, size)] + + # Construct a map with data and zero blocks. + self.map_index = 0 + self.map = [] + lastpos = 0 + realpos = self.offset + for offset, size in blockinfo: + if offset > lastpos: + self.map.append((False, lastpos, offset, None)) + self.map.append((True, offset, offset + size, realpos)) + realpos += size + lastpos = offset + size + if lastpos < self.size: + self.map.append((False, lastpos, self.size, None)) + + def seekable(self): + if not hasattr(self.fileobj, "seekable"): + # XXX gzip.GzipFile and bz2.BZ2File + return True + return self.fileobj.seekable() + + def tell(self): + """Return the current file position. + """ + return self.position + + def seek(self, position): + """Seek to a position in the file. + """ + self.position = position + + def read(self, size=None): + """Read data from the file. + """ + if size is None: + size = self.size - self.position + else: + size = min(size, self.size - self.position) + + buf = b"" + while size > 0: + while True: + data, start, stop, offset = self.map[self.map_index] + if start <= self.position < stop: + break + else: + self.map_index += 1 + if self.map_index == len(self.map): + self.map_index = 0 + length = min(size, stop - self.position) + if data: + self.fileobj.seek(offset + (self.position - start)) + buf += self.fileobj.read(length) + else: + buf += NUL * length + size -= length + self.position += length + return buf +#class _FileInFile + + +class ExFileObject(object): + """File-like object for reading an archive member. + Is returned by TarFile.extractfile(). + """ + blocksize = 1024 + + def __init__(self, tarfile, tarinfo): + self.fileobj = _FileInFile(tarfile.fileobj, + tarinfo.offset_data, + tarinfo.size, + tarinfo.sparse) + self.name = tarinfo.name + self.mode = "r" + self.closed = False + self.size = tarinfo.size + + self.position = 0 + self.buffer = b"" + + def readable(self): + return True + + def writable(self): + return False + + def seekable(self): + return self.fileobj.seekable() + + def read(self, size=None): + """Read at most size bytes from the file. If size is not + present or None, read all data until EOF is reached. + """ + if self.closed: + raise ValueError("I/O operation on closed file") + + buf = b"" + if self.buffer: + if size is None: + buf = self.buffer + self.buffer = b"" + else: + buf = self.buffer[:size] + self.buffer = self.buffer[size:] + + if size is None: + buf += self.fileobj.read() + else: + buf += self.fileobj.read(size - len(buf)) + + self.position += len(buf) + return buf + + # XXX TextIOWrapper uses the read1() method. + read1 = read + + def readline(self, size=-1): + """Read one entire line from the file. If size is present + and non-negative, return a string with at most that + size, which may be an incomplete line. + """ + if self.closed: + raise ValueError("I/O operation on closed file") + + pos = self.buffer.find(b"\n") + 1 + if pos == 0: + # no newline found. + while True: + buf = self.fileobj.read(self.blocksize) + self.buffer += buf + if not buf or b"\n" in buf: + pos = self.buffer.find(b"\n") + 1 + if pos == 0: + # no newline found. + pos = len(self.buffer) + break + + if size != -1: + pos = min(size, pos) + + buf = self.buffer[:pos] + self.buffer = self.buffer[pos:] + self.position += len(buf) + return buf + + def readlines(self): + """Return a list with all remaining lines. + """ + result = [] + while True: + line = self.readline() + if not line: break + result.append(line) + return result + + def tell(self): + """Return the current file position. + """ + if self.closed: + raise ValueError("I/O operation on closed file") + + return self.position + + def seek(self, pos, whence=os.SEEK_SET): + """Seek to a position in the file. + """ + if self.closed: + raise ValueError("I/O operation on closed file") + + if whence == os.SEEK_SET: + self.position = min(max(pos, 0), self.size) + elif whence == os.SEEK_CUR: + if pos < 0: + self.position = max(self.position + pos, 0) + else: + self.position = min(self.position + pos, self.size) + elif whence == os.SEEK_END: + self.position = max(min(self.size + pos, self.size), 0) + else: + raise ValueError("Invalid argument") + + self.buffer = b"" + self.fileobj.seek(self.position) + + def close(self): + """Close the file object. + """ + self.closed = True + + def __iter__(self): + """Get an iterator over the file's lines. + """ + while True: + line = self.readline() + if not line: + break + yield line +#class ExFileObject + +#------------------ +# Exported Classes +#------------------ +class TarInfo(object): + """Informational class which holds the details about an + archive member given by a tar header block. + TarInfo objects are returned by TarFile.getmember(), + TarFile.getmembers() and TarFile.gettarinfo() and are + usually created internally. + """ + + __slots__ = ("name", "mode", "uid", "gid", "size", "mtime", + "chksum", "type", "linkname", "uname", "gname", + "devmajor", "devminor", + "offset", "offset_data", "pax_headers", "sparse", + "tarfile", "_sparse_structs", "_link_target") + + def __init__(self, name=""): + """Construct a TarInfo object. name is the optional name + of the member. + """ + self.name = name # member name + self.mode = 0o644 # file permissions + self.uid = 0 # user id + self.gid = 0 # group id + self.size = 0 # file size + self.mtime = 0 # modification time + self.chksum = 0 # header checksum + self.type = REGTYPE # member type + self.linkname = "" # link name + self.uname = "" # user name + self.gname = "" # group name + self.devmajor = 0 # device major number + self.devminor = 0 # device minor number + + self.offset = 0 # the tar header starts here + self.offset_data = 0 # the file's data starts here + + self.sparse = None # sparse member information + self.pax_headers = {} # pax header information + + # In pax headers the "name" and "linkname" field are called + # "path" and "linkpath". + def _getpath(self): + return self.name + def _setpath(self, name): + self.name = name + path = property(_getpath, _setpath) + + def _getlinkpath(self): + return self.linkname + def _setlinkpath(self, linkname): + self.linkname = linkname + linkpath = property(_getlinkpath, _setlinkpath) + + def __repr__(self): + return "<%s %r at %#x>" % (self.__class__.__name__,self.name,id(self)) + + def get_info(self): + """Return the TarInfo's attributes as a dictionary. + """ + info = { + "name": self.name, + "mode": self.mode & 0o7777, + "uid": self.uid, + "gid": self.gid, + "size": self.size, + "mtime": self.mtime, + "chksum": self.chksum, + "type": self.type, + "linkname": self.linkname, + "uname": self.uname, + "gname": self.gname, + "devmajor": self.devmajor, + "devminor": self.devminor + } + + if info["type"] == DIRTYPE and not info["name"].endswith("/"): + info["name"] += "/" + + return info + + def tobuf(self, format=DEFAULT_FORMAT, encoding=ENCODING, errors="surrogateescape"): + """Return a tar header as a string of 512 byte blocks. + """ + info = self.get_info() + + if format == USTAR_FORMAT: + return self.create_ustar_header(info, encoding, errors) + elif format == GNU_FORMAT: + return self.create_gnu_header(info, encoding, errors) + elif format == PAX_FORMAT: + return self.create_pax_header(info, encoding) + else: + raise ValueError("invalid format") + + def create_ustar_header(self, info, encoding, errors): + """Return the object as a ustar header block. + """ + info["magic"] = POSIX_MAGIC + + if len(info["linkname"]) > LENGTH_LINK: + raise ValueError("linkname is too long") + + if len(info["name"]) > LENGTH_NAME: + info["prefix"], info["name"] = self._posix_split_name(info["name"]) + + return self._create_header(info, USTAR_FORMAT, encoding, errors) + + def create_gnu_header(self, info, encoding, errors): + """Return the object as a GNU header block sequence. + """ + info["magic"] = GNU_MAGIC + + buf = b"" + if len(info["linkname"]) > LENGTH_LINK: + buf += self._create_gnu_long_header(info["linkname"], GNUTYPE_LONGLINK, encoding, errors) + + if len(info["name"]) > LENGTH_NAME: + buf += self._create_gnu_long_header(info["name"], GNUTYPE_LONGNAME, encoding, errors) + + return buf + self._create_header(info, GNU_FORMAT, encoding, errors) + + def create_pax_header(self, info, encoding): + """Return the object as a ustar header block. If it cannot be + represented this way, prepend a pax extended header sequence + with supplement information. + """ + info["magic"] = POSIX_MAGIC + pax_headers = self.pax_headers.copy() + + # Test string fields for values that exceed the field length or cannot + # be represented in ASCII encoding. + for name, hname, length in ( + ("name", "path", LENGTH_NAME), ("linkname", "linkpath", LENGTH_LINK), + ("uname", "uname", 32), ("gname", "gname", 32)): + + if hname in pax_headers: + # The pax header has priority. + continue + + # Try to encode the string as ASCII. + try: + info[name].encode("ascii", "strict") + except UnicodeEncodeError: + pax_headers[hname] = info[name] + continue + + if len(info[name]) > length: + pax_headers[hname] = info[name] + + # Test number fields for values that exceed the field limit or values + # that like to be stored as float. + for name, digits in (("uid", 8), ("gid", 8), ("size", 12), ("mtime", 12)): + if name in pax_headers: + # The pax header has priority. Avoid overflow. + info[name] = 0 + continue + + val = info[name] + if not 0 <= val < 8 ** (digits - 1) or isinstance(val, float): + pax_headers[name] = str(val) + info[name] = 0 + + # Create a pax extended header if necessary. + if pax_headers: + buf = self._create_pax_generic_header(pax_headers, XHDTYPE, encoding) + else: + buf = b"" + + return buf + self._create_header(info, USTAR_FORMAT, "ascii", "replace") + + @classmethod + def create_pax_global_header(cls, pax_headers): + """Return the object as a pax global header block sequence. + """ + return cls._create_pax_generic_header(pax_headers, XGLTYPE, "utf8") + + def _posix_split_name(self, name): + """Split a name longer than 100 chars into a prefix + and a name part. + """ + prefix = name[:LENGTH_PREFIX + 1] + while prefix and prefix[-1] != "/": + prefix = prefix[:-1] + + name = name[len(prefix):] + prefix = prefix[:-1] + + if not prefix or len(name) > LENGTH_NAME: + raise ValueError("name is too long") + return prefix, name + + @staticmethod + def _create_header(info, format, encoding, errors): + """Return a header block. info is a dictionary with file + information, format must be one of the *_FORMAT constants. + """ + parts = [ + stn(info.get("name", ""), 100, encoding, errors), + itn(info.get("mode", 0) & 0o7777, 8, format), + itn(info.get("uid", 0), 8, format), + itn(info.get("gid", 0), 8, format), + itn(info.get("size", 0), 12, format), + itn(info.get("mtime", 0), 12, format), + b" ", # checksum field + info.get("type", REGTYPE), + stn(info.get("linkname", ""), 100, encoding, errors), + info.get("magic", POSIX_MAGIC), + stn(info.get("uname", ""), 32, encoding, errors), + stn(info.get("gname", ""), 32, encoding, errors), + itn(info.get("devmajor", 0), 8, format), + itn(info.get("devminor", 0), 8, format), + stn(info.get("prefix", ""), 155, encoding, errors) + ] + + buf = struct.pack("%ds" % BLOCKSIZE, b"".join(parts)) + chksum = calc_chksums(buf[-BLOCKSIZE:])[0] + buf = buf[:-364] + ("%06o\0" % chksum).encode("ascii") + buf[-357:] + return buf + + @staticmethod + def _create_payload(payload): + """Return the string payload filled with zero bytes + up to the next 512 byte border. + """ + blocks, remainder = divmod(len(payload), BLOCKSIZE) + if remainder > 0: + payload += (BLOCKSIZE - remainder) * NUL + return payload + + @classmethod + def _create_gnu_long_header(cls, name, type, encoding, errors): + """Return a GNUTYPE_LONGNAME or GNUTYPE_LONGLINK sequence + for name. + """ + name = name.encode(encoding, errors) + NUL + + info = {} + info["name"] = "././@LongLink" + info["type"] = type + info["size"] = len(name) + info["magic"] = GNU_MAGIC + + # create extended header + name blocks. + return cls._create_header(info, USTAR_FORMAT, encoding, errors) + \ + cls._create_payload(name) + + @classmethod + def _create_pax_generic_header(cls, pax_headers, type, encoding): + """Return a POSIX.1-2008 extended or global header sequence + that contains a list of keyword, value pairs. The values + must be strings. + """ + # Check if one of the fields contains surrogate characters and thereby + # forces hdrcharset=BINARY, see _proc_pax() for more information. + binary = False + for keyword, value in pax_headers.items(): + try: + value.encode("utf8", "strict") + except UnicodeEncodeError: + binary = True + break + + records = b"" + if binary: + # Put the hdrcharset field at the beginning of the header. + records += b"21 hdrcharset=BINARY\n" + + for keyword, value in pax_headers.items(): + keyword = keyword.encode("utf8") + if binary: + # Try to restore the original byte representation of `value'. + # Needless to say, that the encoding must match the string. + value = value.encode(encoding, "surrogateescape") + else: + value = value.encode("utf8") + + l = len(keyword) + len(value) + 3 # ' ' + '=' + '\n' + n = p = 0 + while True: + n = l + len(str(p)) + if n == p: + break + p = n + records += bytes(str(p), "ascii") + b" " + keyword + b"=" + value + b"\n" + + # We use a hardcoded "././@PaxHeader" name like star does + # instead of the one that POSIX recommends. + info = {} + info["name"] = "././@PaxHeader" + info["type"] = type + info["size"] = len(records) + info["magic"] = POSIX_MAGIC + + # Create pax header + record blocks. + return cls._create_header(info, USTAR_FORMAT, "ascii", "replace") + \ + cls._create_payload(records) + + @classmethod + def frombuf(cls, buf, encoding, errors): + """Construct a TarInfo object from a 512 byte bytes object. + """ + if len(buf) == 0: + raise EmptyHeaderError("empty header") + if len(buf) != BLOCKSIZE: + raise TruncatedHeaderError("truncated header") + if buf.count(NUL) == BLOCKSIZE: + raise EOFHeaderError("end of file header") + + chksum = nti(buf[148:156]) + if chksum not in calc_chksums(buf): + raise InvalidHeaderError("bad checksum") + + obj = cls() + obj.name = nts(buf[0:100], encoding, errors) + obj.mode = nti(buf[100:108]) + obj.uid = nti(buf[108:116]) + obj.gid = nti(buf[116:124]) + obj.size = nti(buf[124:136]) + obj.mtime = nti(buf[136:148]) + obj.chksum = chksum + obj.type = buf[156:157] + obj.linkname = nts(buf[157:257], encoding, errors) + obj.uname = nts(buf[265:297], encoding, errors) + obj.gname = nts(buf[297:329], encoding, errors) + obj.devmajor = nti(buf[329:337]) + obj.devminor = nti(buf[337:345]) + prefix = nts(buf[345:500], encoding, errors) + + # Old V7 tar format represents a directory as a regular + # file with a trailing slash. + if obj.type == AREGTYPE and obj.name.endswith("/"): + obj.type = DIRTYPE + + # The old GNU sparse format occupies some of the unused + # space in the buffer for up to 4 sparse structures. + # Save the them for later processing in _proc_sparse(). + if obj.type == GNUTYPE_SPARSE: + pos = 386 + structs = [] + for i in range(4): + try: + offset = nti(buf[pos:pos + 12]) + numbytes = nti(buf[pos + 12:pos + 24]) + except ValueError: + break + structs.append((offset, numbytes)) + pos += 24 + isextended = bool(buf[482]) + origsize = nti(buf[483:495]) + obj._sparse_structs = (structs, isextended, origsize) + + # Remove redundant slashes from directories. + if obj.isdir(): + obj.name = obj.name.rstrip("/") + + # Reconstruct a ustar longname. + if prefix and obj.type not in GNU_TYPES: + obj.name = prefix + "/" + obj.name + return obj + + @classmethod + def fromtarfile(cls, tarfile): + """Return the next TarInfo object from TarFile object + tarfile. + """ + buf = tarfile.fileobj.read(BLOCKSIZE) + obj = cls.frombuf(buf, tarfile.encoding, tarfile.errors) + obj.offset = tarfile.fileobj.tell() - BLOCKSIZE + return obj._proc_member(tarfile) + + #-------------------------------------------------------------------------- + # The following are methods that are called depending on the type of a + # member. The entry point is _proc_member() which can be overridden in a + # subclass to add custom _proc_*() methods. A _proc_*() method MUST + # implement the following + # operations: + # 1. Set self.offset_data to the position where the data blocks begin, + # if there is data that follows. + # 2. Set tarfile.offset to the position where the next member's header will + # begin. + # 3. Return self or another valid TarInfo object. + def _proc_member(self, tarfile): + """Choose the right processing method depending on + the type and call it. + """ + if self.type in (GNUTYPE_LONGNAME, GNUTYPE_LONGLINK): + return self._proc_gnulong(tarfile) + elif self.type == GNUTYPE_SPARSE: + return self._proc_sparse(tarfile) + elif self.type in (XHDTYPE, XGLTYPE, SOLARIS_XHDTYPE): + return self._proc_pax(tarfile) + else: + return self._proc_builtin(tarfile) + + def _proc_builtin(self, tarfile): + """Process a builtin type or an unknown type which + will be treated as a regular file. + """ + self.offset_data = tarfile.fileobj.tell() + offset = self.offset_data + if self.isreg() or self.type not in SUPPORTED_TYPES: + # Skip the following data blocks. + offset += self._block(self.size) + tarfile.offset = offset + + # Patch the TarInfo object with saved global + # header information. + self._apply_pax_info(tarfile.pax_headers, tarfile.encoding, tarfile.errors) + + return self + + def _proc_gnulong(self, tarfile): + """Process the blocks that hold a GNU longname + or longlink member. + """ + buf = tarfile.fileobj.read(self._block(self.size)) + + # Fetch the next header and process it. + try: + next = self.fromtarfile(tarfile) + except HeaderError: + raise SubsequentHeaderError("missing or bad subsequent header") + + # Patch the TarInfo object from the next header with + # the longname information. + next.offset = self.offset + if self.type == GNUTYPE_LONGNAME: + next.name = nts(buf, tarfile.encoding, tarfile.errors) + elif self.type == GNUTYPE_LONGLINK: + next.linkname = nts(buf, tarfile.encoding, tarfile.errors) + + return next + + def _proc_sparse(self, tarfile): + """Process a GNU sparse header plus extra headers. + """ + # We already collected some sparse structures in frombuf(). + structs, isextended, origsize = self._sparse_structs + del self._sparse_structs + + # Collect sparse structures from extended header blocks. + while isextended: + buf = tarfile.fileobj.read(BLOCKSIZE) + pos = 0 + for i in range(21): + try: + offset = nti(buf[pos:pos + 12]) + numbytes = nti(buf[pos + 12:pos + 24]) + except ValueError: + break + if offset and numbytes: + structs.append((offset, numbytes)) + pos += 24 + isextended = bool(buf[504]) + self.sparse = structs + + self.offset_data = tarfile.fileobj.tell() + tarfile.offset = self.offset_data + self._block(self.size) + self.size = origsize + return self + + def _proc_pax(self, tarfile): + """Process an extended or global header as described in + POSIX.1-2008. + """ + # Read the header information. + buf = tarfile.fileobj.read(self._block(self.size)) + + # A pax header stores supplemental information for either + # the following file (extended) or all following files + # (global). + if self.type == XGLTYPE: + pax_headers = tarfile.pax_headers + else: + pax_headers = tarfile.pax_headers.copy() + + # Check if the pax header contains a hdrcharset field. This tells us + # the encoding of the path, linkpath, uname and gname fields. Normally, + # these fields are UTF-8 encoded but since POSIX.1-2008 tar + # implementations are allowed to store them as raw binary strings if + # the translation to UTF-8 fails. + match = re.search(br"\d+ hdrcharset=([^\n]+)\n", buf) + if match is not None: + pax_headers["hdrcharset"] = match.group(1).decode("utf8") + + # For the time being, we don't care about anything other than "BINARY". + # The only other value that is currently allowed by the standard is + # "ISO-IR 10646 2000 UTF-8" in other words UTF-8. + hdrcharset = pax_headers.get("hdrcharset") + if hdrcharset == "BINARY": + encoding = tarfile.encoding + else: + encoding = "utf8" + + # Parse pax header information. A record looks like that: + # "%d %s=%s\n" % (length, keyword, value). length is the size + # of the complete record including the length field itself and + # the newline. keyword and value are both UTF-8 encoded strings. + regex = re.compile(br"(\d+) ([^=]+)=") + pos = 0 + while True: + match = regex.match(buf, pos) + if not match: + break + + length, keyword = match.groups() + length = int(length) + value = buf[match.end(2) + 1:match.start(1) + length - 1] + + # Normally, we could just use "utf8" as the encoding and "strict" + # as the error handler, but we better not take the risk. For + # example, GNU tar <= 1.23 is known to store filenames it cannot + # translate to UTF-8 as raw strings (unfortunately without a + # hdrcharset=BINARY header). + # We first try the strict standard encoding, and if that fails we + # fall back on the user's encoding and error handler. + keyword = self._decode_pax_field(keyword, "utf8", "utf8", + tarfile.errors) + if keyword in PAX_NAME_FIELDS: + value = self._decode_pax_field(value, encoding, tarfile.encoding, + tarfile.errors) + else: + value = self._decode_pax_field(value, "utf8", "utf8", + tarfile.errors) + + pax_headers[keyword] = value + pos += length + + # Fetch the next header. + try: + next = self.fromtarfile(tarfile) + except HeaderError: + raise SubsequentHeaderError("missing or bad subsequent header") + + # Process GNU sparse information. + if "GNU.sparse.map" in pax_headers: + # GNU extended sparse format version 0.1. + self._proc_gnusparse_01(next, pax_headers) + + elif "GNU.sparse.size" in pax_headers: + # GNU extended sparse format version 0.0. + self._proc_gnusparse_00(next, pax_headers, buf) + + elif pax_headers.get("GNU.sparse.major") == "1" and pax_headers.get("GNU.sparse.minor") == "0": + # GNU extended sparse format version 1.0. + self._proc_gnusparse_10(next, pax_headers, tarfile) + + if self.type in (XHDTYPE, SOLARIS_XHDTYPE): + # Patch the TarInfo object with the extended header info. + next._apply_pax_info(pax_headers, tarfile.encoding, tarfile.errors) + next.offset = self.offset + + if "size" in pax_headers: + # If the extended header replaces the size field, + # we need to recalculate the offset where the next + # header starts. + offset = next.offset_data + if next.isreg() or next.type not in SUPPORTED_TYPES: + offset += next._block(next.size) + tarfile.offset = offset + + return next + + def _proc_gnusparse_00(self, next, pax_headers, buf): + """Process a GNU tar extended sparse header, version 0.0. + """ + offsets = [] + for match in re.finditer(br"\d+ GNU.sparse.offset=(\d+)\n", buf): + offsets.append(int(match.group(1))) + numbytes = [] + for match in re.finditer(br"\d+ GNU.sparse.numbytes=(\d+)\n", buf): + numbytes.append(int(match.group(1))) + next.sparse = list(zip(offsets, numbytes)) + + def _proc_gnusparse_01(self, next, pax_headers): + """Process a GNU tar extended sparse header, version 0.1. + """ + sparse = [int(x) for x in pax_headers["GNU.sparse.map"].split(",")] + next.sparse = list(zip(sparse[::2], sparse[1::2])) + + def _proc_gnusparse_10(self, next, pax_headers, tarfile): + """Process a GNU tar extended sparse header, version 1.0. + """ + fields = None + sparse = [] + buf = tarfile.fileobj.read(BLOCKSIZE) + fields, buf = buf.split(b"\n", 1) + fields = int(fields) + while len(sparse) < fields * 2: + if b"\n" not in buf: + buf += tarfile.fileobj.read(BLOCKSIZE) + number, buf = buf.split(b"\n", 1) + sparse.append(int(number)) + next.offset_data = tarfile.fileobj.tell() + next.sparse = list(zip(sparse[::2], sparse[1::2])) + + def _apply_pax_info(self, pax_headers, encoding, errors): + """Replace fields with supplemental information from a previous + pax extended or global header. + """ + for keyword, value in pax_headers.items(): + if keyword == "GNU.sparse.name": + setattr(self, "path", value) + elif keyword == "GNU.sparse.size": + setattr(self, "size", int(value)) + elif keyword == "GNU.sparse.realsize": + setattr(self, "size", int(value)) + elif keyword in PAX_FIELDS: + if keyword in PAX_NUMBER_FIELDS: + try: + value = PAX_NUMBER_FIELDS[keyword](value) + except ValueError: + value = 0 + if keyword == "path": + value = value.rstrip("/") + setattr(self, keyword, value) + + self.pax_headers = pax_headers.copy() + + def _decode_pax_field(self, value, encoding, fallback_encoding, fallback_errors): + """Decode a single field from a pax record. + """ + try: + return value.decode(encoding, "strict") + except UnicodeDecodeError: + return value.decode(fallback_encoding, fallback_errors) + + def _block(self, count): + """Round up a byte count by BLOCKSIZE and return it, + e.g. _block(834) => 1024. + """ + blocks, remainder = divmod(count, BLOCKSIZE) + if remainder: + blocks += 1 + return blocks * BLOCKSIZE + + def isreg(self): + return self.type in REGULAR_TYPES + def isfile(self): + return self.isreg() + def isdir(self): + return self.type == DIRTYPE + def issym(self): + return self.type == SYMTYPE + def islnk(self): + return self.type == LNKTYPE + def ischr(self): + return self.type == CHRTYPE + def isblk(self): + return self.type == BLKTYPE + def isfifo(self): + return self.type == FIFOTYPE + def issparse(self): + return self.sparse is not None + def isdev(self): + return self.type in (CHRTYPE, BLKTYPE, FIFOTYPE) +# class TarInfo + +class TarFile(object): + """The TarFile Class provides an interface to tar archives. + """ + + debug = 0 # May be set from 0 (no msgs) to 3 (all msgs) + + dereference = False # If true, add content of linked file to the + # tar file, else the link. + + ignore_zeros = False # If true, skips empty or invalid blocks and + # continues processing. + + errorlevel = 1 # If 0, fatal errors only appear in debug + # messages (if debug >= 0). If > 0, errors + # are passed to the caller as exceptions. + + format = DEFAULT_FORMAT # The format to use when creating an archive. + + encoding = ENCODING # Encoding for 8-bit character strings. + + errors = None # Error handler for unicode conversion. + + tarinfo = TarInfo # The default TarInfo class to use. + + fileobject = ExFileObject # The default ExFileObject class to use. + + def __init__(self, name=None, mode="r", fileobj=None, format=None, + tarinfo=None, dereference=None, ignore_zeros=None, encoding=None, + errors="surrogateescape", pax_headers=None, debug=None, errorlevel=None): + """Open an (uncompressed) tar archive `name'. `mode' is either 'r' to + read from an existing archive, 'a' to append data to an existing + file or 'w' to create a new file overwriting an existing one. `mode' + defaults to 'r'. + If `fileobj' is given, it is used for reading or writing data. If it + can be determined, `mode' is overridden by `fileobj's mode. + `fileobj' is not closed, when TarFile is closed. + """ + if len(mode) > 1 or mode not in "raw": + raise ValueError("mode must be 'r', 'a' or 'w'") + self.mode = mode + self._mode = {"r": "rb", "a": "r+b", "w": "wb"}[mode] + + if not fileobj: + if self.mode == "a" and not os.path.exists(name): + # Create nonexistent files in append mode. + self.mode = "w" + self._mode = "wb" + fileobj = bltn_open(name, self._mode) + self._extfileobj = False + else: + if name is None and hasattr(fileobj, "name"): + name = fileobj.name + if hasattr(fileobj, "mode"): + self._mode = fileobj.mode + self._extfileobj = True + self.name = os.path.abspath(name) if name else None + self.fileobj = fileobj + + # Init attributes. + if format is not None: + self.format = format + if tarinfo is not None: + self.tarinfo = tarinfo + if dereference is not None: + self.dereference = dereference + if ignore_zeros is not None: + self.ignore_zeros = ignore_zeros + if encoding is not None: + self.encoding = encoding + self.errors = errors + + if pax_headers is not None and self.format == PAX_FORMAT: + self.pax_headers = pax_headers + else: + self.pax_headers = {} + + if debug is not None: + self.debug = debug + if errorlevel is not None: + self.errorlevel = errorlevel + + # Init datastructures. + self.closed = False + self.members = [] # list of members as TarInfo objects + self._loaded = False # flag if all members have been read + self.offset = self.fileobj.tell() + # current position in the archive file + self.inodes = {} # dictionary caching the inodes of + # archive members already added + + try: + if self.mode == "r": + self.firstmember = None + self.firstmember = self.next() + + if self.mode == "a": + # Move to the end of the archive, + # before the first empty block. + while True: + self.fileobj.seek(self.offset) + try: + tarinfo = self.tarinfo.fromtarfile(self) + self.members.append(tarinfo) + except EOFHeaderError: + self.fileobj.seek(self.offset) + break + except HeaderError as e: + raise ReadError(str(e)) + + if self.mode in "aw": + self._loaded = True + + if self.pax_headers: + buf = self.tarinfo.create_pax_global_header(self.pax_headers.copy()) + self.fileobj.write(buf) + self.offset += len(buf) + except: + if not self._extfileobj: + self.fileobj.close() + self.closed = True + raise + + #-------------------------------------------------------------------------- + # Below are the classmethods which act as alternate constructors to the + # TarFile class. The open() method is the only one that is needed for + # public use; it is the "super"-constructor and is able to select an + # adequate "sub"-constructor for a particular compression using the mapping + # from OPEN_METH. + # + # This concept allows one to subclass TarFile without losing the comfort of + # the super-constructor. A sub-constructor is registered and made available + # by adding it to the mapping in OPEN_METH. + + @classmethod + def open(cls, name=None, mode="r", fileobj=None, bufsize=RECORDSIZE, **kwargs): + """Open a tar archive for reading, writing or appending. Return + an appropriate TarFile class. + + mode: + 'r' or 'r:*' open for reading with transparent compression + 'r:' open for reading exclusively uncompressed + 'r:gz' open for reading with gzip compression + 'r:bz2' open for reading with bzip2 compression + 'a' or 'a:' open for appending, creating the file if necessary + 'w' or 'w:' open for writing without compression + 'w:gz' open for writing with gzip compression + 'w:bz2' open for writing with bzip2 compression + + 'r|*' open a stream of tar blocks with transparent compression + 'r|' open an uncompressed stream of tar blocks for reading + 'r|gz' open a gzip compressed stream of tar blocks + 'r|bz2' open a bzip2 compressed stream of tar blocks + 'w|' open an uncompressed stream for writing + 'w|gz' open a gzip compressed stream for writing + 'w|bz2' open a bzip2 compressed stream for writing + """ + + if not name and not fileobj: + raise ValueError("nothing to open") + + if mode in ("r", "r:*"): + # Find out which *open() is appropriate for opening the file. + for comptype in cls.OPEN_METH: + func = getattr(cls, cls.OPEN_METH[comptype]) + if fileobj is not None: + saved_pos = fileobj.tell() + try: + return func(name, "r", fileobj, **kwargs) + except (ReadError, CompressionError) as e: + if fileobj is not None: + fileobj.seek(saved_pos) + continue + raise ReadError("file could not be opened successfully") + + elif ":" in mode: + filemode, comptype = mode.split(":", 1) + filemode = filemode or "r" + comptype = comptype or "tar" + + # Select the *open() function according to + # given compression. + if comptype in cls.OPEN_METH: + func = getattr(cls, cls.OPEN_METH[comptype]) + else: + raise CompressionError("unknown compression type %r" % comptype) + return func(name, filemode, fileobj, **kwargs) + + elif "|" in mode: + filemode, comptype = mode.split("|", 1) + filemode = filemode or "r" + comptype = comptype or "tar" + + if filemode not in "rw": + raise ValueError("mode must be 'r' or 'w'") + + stream = _Stream(name, filemode, comptype, fileobj, bufsize) + try: + t = cls(name, filemode, stream, **kwargs) + except: + stream.close() + raise + t._extfileobj = False + return t + + elif mode in "aw": + return cls.taropen(name, mode, fileobj, **kwargs) + + raise ValueError("undiscernible mode") + + @classmethod + def taropen(cls, name, mode="r", fileobj=None, **kwargs): + """Open uncompressed tar archive name for reading or writing. + """ + if len(mode) > 1 or mode not in "raw": + raise ValueError("mode must be 'r', 'a' or 'w'") + return cls(name, mode, fileobj, **kwargs) + + @classmethod + def gzopen(cls, name, mode="r", fileobj=None, compresslevel=9, **kwargs): + """Open gzip compressed tar archive name for reading or writing. + Appending is not allowed. + """ + if len(mode) > 1 or mode not in "rw": + raise ValueError("mode must be 'r' or 'w'") + + try: + import gzip + gzip.GzipFile + except (ImportError, AttributeError): + raise CompressionError("gzip module is not available") + + extfileobj = fileobj is not None + try: + fileobj = gzip.GzipFile(name, mode + "b", compresslevel, fileobj) + t = cls.taropen(name, mode, fileobj, **kwargs) + except IOError: + if not extfileobj and fileobj is not None: + fileobj.close() + if fileobj is None: + raise + raise ReadError("not a gzip file") + except: + if not extfileobj and fileobj is not None: + fileobj.close() + raise + t._extfileobj = extfileobj + return t + + @classmethod + def bz2open(cls, name, mode="r", fileobj=None, compresslevel=9, **kwargs): + """Open bzip2 compressed tar archive name for reading or writing. + Appending is not allowed. + """ + if len(mode) > 1 or mode not in "rw": + raise ValueError("mode must be 'r' or 'w'.") + + try: + import bz2 + except ImportError: + raise CompressionError("bz2 module is not available") + + if fileobj is not None: + fileobj = _BZ2Proxy(fileobj, mode) + else: + fileobj = bz2.BZ2File(name, mode, compresslevel=compresslevel) + + try: + t = cls.taropen(name, mode, fileobj, **kwargs) + except (IOError, EOFError): + fileobj.close() + raise ReadError("not a bzip2 file") + t._extfileobj = False + return t + + # All *open() methods are registered here. + OPEN_METH = { + "tar": "taropen", # uncompressed tar + "gz": "gzopen", # gzip compressed tar + "bz2": "bz2open" # bzip2 compressed tar + } + + #-------------------------------------------------------------------------- + # The public methods which TarFile provides: + + def close(self): + """Close the TarFile. In write-mode, two finishing zero blocks are + appended to the archive. + """ + if self.closed: + return + + if self.mode in "aw": + self.fileobj.write(NUL * (BLOCKSIZE * 2)) + self.offset += (BLOCKSIZE * 2) + # fill up the end with zero-blocks + # (like option -b20 for tar does) + blocks, remainder = divmod(self.offset, RECORDSIZE) + if remainder > 0: + self.fileobj.write(NUL * (RECORDSIZE - remainder)) + + if not self._extfileobj: + self.fileobj.close() + self.closed = True + + def getmember(self, name): + """Return a TarInfo object for member `name'. If `name' can not be + found in the archive, KeyError is raised. If a member occurs more + than once in the archive, its last occurrence is assumed to be the + most up-to-date version. + """ + tarinfo = self._getmember(name) + if tarinfo is None: + raise KeyError("filename %r not found" % name) + return tarinfo + + def getmembers(self): + """Return the members of the archive as a list of TarInfo objects. The + list has the same order as the members in the archive. + """ + self._check() + if not self._loaded: # if we want to obtain a list of + self._load() # all members, we first have to + # scan the whole archive. + return self.members + + def getnames(self): + """Return the members of the archive as a list of their names. It has + the same order as the list returned by getmembers(). + """ + return [tarinfo.name for tarinfo in self.getmembers()] + + def gettarinfo(self, name=None, arcname=None, fileobj=None): + """Create a TarInfo object for either the file `name' or the file + object `fileobj' (using os.fstat on its file descriptor). You can + modify some of the TarInfo's attributes before you add it using + addfile(). If given, `arcname' specifies an alternative name for the + file in the archive. + """ + self._check("aw") + + # When fileobj is given, replace name by + # fileobj's real name. + if fileobj is not None: + name = fileobj.name + + # Building the name of the member in the archive. + # Backward slashes are converted to forward slashes, + # Absolute paths are turned to relative paths. + if arcname is None: + arcname = name + drv, arcname = os.path.splitdrive(arcname) + arcname = arcname.replace(os.sep, "/") + arcname = arcname.lstrip("/") + + # Now, fill the TarInfo object with + # information specific for the file. + tarinfo = self.tarinfo() + tarinfo.tarfile = self + + # Use os.stat or os.lstat, depending on platform + # and if symlinks shall be resolved. + if fileobj is None: + if hasattr(os, "lstat") and not self.dereference: + statres = os.lstat(name) + else: + statres = os.stat(name) + else: + statres = os.fstat(fileobj.fileno()) + linkname = "" + + stmd = statres.st_mode + if stat.S_ISREG(stmd): + inode = (statres.st_ino, statres.st_dev) + if not self.dereference and statres.st_nlink > 1 and \ + inode in self.inodes and arcname != self.inodes[inode]: + # Is it a hardlink to an already + # archived file? + type = LNKTYPE + linkname = self.inodes[inode] + else: + # The inode is added only if its valid. + # For win32 it is always 0. + type = REGTYPE + if inode[0]: + self.inodes[inode] = arcname + elif stat.S_ISDIR(stmd): + type = DIRTYPE + elif stat.S_ISFIFO(stmd): + type = FIFOTYPE + elif stat.S_ISLNK(stmd): + type = SYMTYPE + linkname = os.readlink(name) + elif stat.S_ISCHR(stmd): + type = CHRTYPE + elif stat.S_ISBLK(stmd): + type = BLKTYPE + else: + return None + + # Fill the TarInfo object with all + # information we can get. + tarinfo.name = arcname + tarinfo.mode = stmd + tarinfo.uid = statres.st_uid + tarinfo.gid = statres.st_gid + if type == REGTYPE: + tarinfo.size = statres.st_size + else: + tarinfo.size = 0 + tarinfo.mtime = statres.st_mtime + tarinfo.type = type + tarinfo.linkname = linkname + if pwd: + try: + tarinfo.uname = pwd.getpwuid(tarinfo.uid)[0] + except KeyError: + pass + if grp: + try: + tarinfo.gname = grp.getgrgid(tarinfo.gid)[0] + except KeyError: + pass + + if type in (CHRTYPE, BLKTYPE): + if hasattr(os, "major") and hasattr(os, "minor"): + tarinfo.devmajor = os.major(statres.st_rdev) + tarinfo.devminor = os.minor(statres.st_rdev) + return tarinfo + + def list(self, verbose=True): + """Print a table of contents to sys.stdout. If `verbose' is False, only + the names of the members are printed. If it is True, an `ls -l'-like + output is produced. + """ + self._check() + + for tarinfo in self: + if verbose: + print(filemode(tarinfo.mode), end=' ') + print("%s/%s" % (tarinfo.uname or tarinfo.uid, + tarinfo.gname or tarinfo.gid), end=' ') + if tarinfo.ischr() or tarinfo.isblk(): + print("%10s" % ("%d,%d" \ + % (tarinfo.devmajor, tarinfo.devminor)), end=' ') + else: + print("%10d" % tarinfo.size, end=' ') + print("%d-%02d-%02d %02d:%02d:%02d" \ + % time.localtime(tarinfo.mtime)[:6], end=' ') + + print(tarinfo.name + ("/" if tarinfo.isdir() else ""), end=' ') + + if verbose: + if tarinfo.issym(): + print("->", tarinfo.linkname, end=' ') + if tarinfo.islnk(): + print("link to", tarinfo.linkname, end=' ') + print() + + def add(self, name, arcname=None, recursive=True, exclude=None, filter=None): + """Add the file `name' to the archive. `name' may be any type of file + (directory, fifo, symbolic link, etc.). If given, `arcname' + specifies an alternative name for the file in the archive. + Directories are added recursively by default. This can be avoided by + setting `recursive' to False. `exclude' is a function that should + return True for each filename to be excluded. `filter' is a function + that expects a TarInfo object argument and returns the changed + TarInfo object, if it returns None the TarInfo object will be + excluded from the archive. + """ + self._check("aw") + + if arcname is None: + arcname = name + + # Exclude pathnames. + if exclude is not None: + import warnings + warnings.warn("use the filter argument instead", + DeprecationWarning, 2) + if exclude(name): + self._dbg(2, "tarfile: Excluded %r" % name) + return + + # Skip if somebody tries to archive the archive... + if self.name is not None and os.path.abspath(name) == self.name: + self._dbg(2, "tarfile: Skipped %r" % name) + return + + self._dbg(1, name) + + # Create a TarInfo object from the file. + tarinfo = self.gettarinfo(name, arcname) + + if tarinfo is None: + self._dbg(1, "tarfile: Unsupported type %r" % name) + return + + # Change or exclude the TarInfo object. + if filter is not None: + tarinfo = filter(tarinfo) + if tarinfo is None: + self._dbg(2, "tarfile: Excluded %r" % name) + return + + # Append the tar header and data to the archive. + if tarinfo.isreg(): + f = bltn_open(name, "rb") + self.addfile(tarinfo, f) + f.close() + + elif tarinfo.isdir(): + self.addfile(tarinfo) + if recursive: + for f in os.listdir(name): + self.add(os.path.join(name, f), os.path.join(arcname, f), + recursive, exclude, filter=filter) + + else: + self.addfile(tarinfo) + + def addfile(self, tarinfo, fileobj=None): + """Add the TarInfo object `tarinfo' to the archive. If `fileobj' is + given, tarinfo.size bytes are read from it and added to the archive. + You can create TarInfo objects using gettarinfo(). + On Windows platforms, `fileobj' should always be opened with mode + 'rb' to avoid irritation about the file size. + """ + self._check("aw") + + tarinfo = copy.copy(tarinfo) + + buf = tarinfo.tobuf(self.format, self.encoding, self.errors) + self.fileobj.write(buf) + self.offset += len(buf) + + # If there's data to follow, append it. + if fileobj is not None: + copyfileobj(fileobj, self.fileobj, tarinfo.size) + blocks, remainder = divmod(tarinfo.size, BLOCKSIZE) + if remainder > 0: + self.fileobj.write(NUL * (BLOCKSIZE - remainder)) + blocks += 1 + self.offset += blocks * BLOCKSIZE + + self.members.append(tarinfo) + + def extractall(self, path=".", members=None): + """Extract all members from the archive to the current working + directory and set owner, modification time and permissions on + directories afterwards. `path' specifies a different directory + to extract to. `members' is optional and must be a subset of the + list returned by getmembers(). + """ + directories = [] + + if members is None: + members = self + + for tarinfo in members: + if tarinfo.isdir(): + # Extract directories with a safe mode. + directories.append(tarinfo) + tarinfo = copy.copy(tarinfo) + tarinfo.mode = 0o700 + # Do not set_attrs directories, as we will do that further down + self.extract(tarinfo, path, set_attrs=not tarinfo.isdir()) + + # Reverse sort directories. + directories.sort(key=lambda a: a.name) + directories.reverse() + + # Set correct owner, mtime and filemode on directories. + for tarinfo in directories: + dirpath = os.path.join(path, tarinfo.name) + try: + self.chown(tarinfo, dirpath) + self.utime(tarinfo, dirpath) + self.chmod(tarinfo, dirpath) + except ExtractError as e: + if self.errorlevel > 1: + raise + else: + self._dbg(1, "tarfile: %s" % e) + + def extract(self, member, path="", set_attrs=True): + """Extract a member from the archive to the current working directory, + using its full name. Its file information is extracted as accurately + as possible. `member' may be a filename or a TarInfo object. You can + specify a different directory using `path'. File attributes (owner, + mtime, mode) are set unless `set_attrs' is False. + """ + self._check("r") + + if isinstance(member, str): + tarinfo = self.getmember(member) + else: + tarinfo = member + + # Prepare the link target for makelink(). + if tarinfo.islnk(): + tarinfo._link_target = os.path.join(path, tarinfo.linkname) + + try: + self._extract_member(tarinfo, os.path.join(path, tarinfo.name), + set_attrs=set_attrs) + except EnvironmentError as e: + if self.errorlevel > 0: + raise + else: + if e.filename is None: + self._dbg(1, "tarfile: %s" % e.strerror) + else: + self._dbg(1, "tarfile: %s %r" % (e.strerror, e.filename)) + except ExtractError as e: + if self.errorlevel > 1: + raise + else: + self._dbg(1, "tarfile: %s" % e) + + def extractfile(self, member): + """Extract a member from the archive as a file object. `member' may be + a filename or a TarInfo object. If `member' is a regular file, a + file-like object is returned. If `member' is a link, a file-like + object is constructed from the link's target. If `member' is none of + the above, None is returned. + The file-like object is read-only and provides the following + methods: read(), readline(), readlines(), seek() and tell() + """ + self._check("r") + + if isinstance(member, str): + tarinfo = self.getmember(member) + else: + tarinfo = member + + if tarinfo.isreg(): + return self.fileobject(self, tarinfo) + + elif tarinfo.type not in SUPPORTED_TYPES: + # If a member's type is unknown, it is treated as a + # regular file. + return self.fileobject(self, tarinfo) + + elif tarinfo.islnk() or tarinfo.issym(): + if isinstance(self.fileobj, _Stream): + # A small but ugly workaround for the case that someone tries + # to extract a (sym)link as a file-object from a non-seekable + # stream of tar blocks. + raise StreamError("cannot extract (sym)link as file object") + else: + # A (sym)link's file object is its target's file object. + return self.extractfile(self._find_link_target(tarinfo)) + else: + # If there's no data associated with the member (directory, chrdev, + # blkdev, etc.), return None instead of a file object. + return None + + def _extract_member(self, tarinfo, targetpath, set_attrs=True): + """Extract the TarInfo object tarinfo to a physical + file called targetpath. + """ + # Fetch the TarInfo object for the given name + # and build the destination pathname, replacing + # forward slashes to platform specific separators. + targetpath = targetpath.rstrip("/") + targetpath = targetpath.replace("/", os.sep) + + # Create all upper directories. + upperdirs = os.path.dirname(targetpath) + if upperdirs and not os.path.exists(upperdirs): + # Create directories that are not part of the archive with + # default permissions. + os.makedirs(upperdirs) + + if tarinfo.islnk() or tarinfo.issym(): + self._dbg(1, "%s -> %s" % (tarinfo.name, tarinfo.linkname)) + else: + self._dbg(1, tarinfo.name) + + if tarinfo.isreg(): + self.makefile(tarinfo, targetpath) + elif tarinfo.isdir(): + self.makedir(tarinfo, targetpath) + elif tarinfo.isfifo(): + self.makefifo(tarinfo, targetpath) + elif tarinfo.ischr() or tarinfo.isblk(): + self.makedev(tarinfo, targetpath) + elif tarinfo.islnk() or tarinfo.issym(): + self.makelink(tarinfo, targetpath) + elif tarinfo.type not in SUPPORTED_TYPES: + self.makeunknown(tarinfo, targetpath) + else: + self.makefile(tarinfo, targetpath) + + if set_attrs: + self.chown(tarinfo, targetpath) + if not tarinfo.issym(): + self.chmod(tarinfo, targetpath) + self.utime(tarinfo, targetpath) + + #-------------------------------------------------------------------------- + # Below are the different file methods. They are called via + # _extract_member() when extract() is called. They can be replaced in a + # subclass to implement other functionality. + + def makedir(self, tarinfo, targetpath): + """Make a directory called targetpath. + """ + try: + # Use a safe mode for the directory, the real mode is set + # later in _extract_member(). + os.mkdir(targetpath, 0o700) + except EnvironmentError as e: + if e.errno != errno.EEXIST: + raise + + def makefile(self, tarinfo, targetpath): + """Make a file called targetpath. + """ + source = self.fileobj + source.seek(tarinfo.offset_data) + target = bltn_open(targetpath, "wb") + if tarinfo.sparse is not None: + for offset, size in tarinfo.sparse: + target.seek(offset) + copyfileobj(source, target, size) + else: + copyfileobj(source, target, tarinfo.size) + target.seek(tarinfo.size) + target.truncate() + target.close() + + def makeunknown(self, tarinfo, targetpath): + """Make a file from a TarInfo object with an unknown type + at targetpath. + """ + self.makefile(tarinfo, targetpath) + self._dbg(1, "tarfile: Unknown file type %r, " \ + "extracted as regular file." % tarinfo.type) + + def makefifo(self, tarinfo, targetpath): + """Make a fifo called targetpath. + """ + if hasattr(os, "mkfifo"): + os.mkfifo(targetpath) + else: + raise ExtractError("fifo not supported by system") + + def makedev(self, tarinfo, targetpath): + """Make a character or block device called targetpath. + """ + if not hasattr(os, "mknod") or not hasattr(os, "makedev"): + raise ExtractError("special devices not supported by system") + + mode = tarinfo.mode + if tarinfo.isblk(): + mode |= stat.S_IFBLK + else: + mode |= stat.S_IFCHR + + os.mknod(targetpath, mode, + os.makedev(tarinfo.devmajor, tarinfo.devminor)) + + def makelink(self, tarinfo, targetpath): + """Make a (symbolic) link called targetpath. If it cannot be created + (platform limitation), we try to make a copy of the referenced file + instead of a link. + """ + try: + # For systems that support symbolic and hard links. + if tarinfo.issym(): + os.symlink(tarinfo.linkname, targetpath) + else: + # See extract(). + if os.path.exists(tarinfo._link_target): + os.link(tarinfo._link_target, targetpath) + else: + self._extract_member(self._find_link_target(tarinfo), + targetpath) + except symlink_exception: + if tarinfo.issym(): + linkpath = os.path.join(os.path.dirname(tarinfo.name), + tarinfo.linkname) + else: + linkpath = tarinfo.linkname + else: + try: + self._extract_member(self._find_link_target(tarinfo), + targetpath) + except KeyError: + raise ExtractError("unable to resolve link inside archive") + + def chown(self, tarinfo, targetpath): + """Set owner of targetpath according to tarinfo. + """ + if pwd and hasattr(os, "geteuid") and os.geteuid() == 0: + # We have to be root to do so. + try: + g = grp.getgrnam(tarinfo.gname)[2] + except KeyError: + g = tarinfo.gid + try: + u = pwd.getpwnam(tarinfo.uname)[2] + except KeyError: + u = tarinfo.uid + try: + if tarinfo.issym() and hasattr(os, "lchown"): + os.lchown(targetpath, u, g) + else: + if sys.platform != "os2emx": + os.chown(targetpath, u, g) + except EnvironmentError as e: + raise ExtractError("could not change owner") + + def chmod(self, tarinfo, targetpath): + """Set file permissions of targetpath according to tarinfo. + """ + if hasattr(os, 'chmod'): + try: + os.chmod(targetpath, tarinfo.mode) + except EnvironmentError as e: + raise ExtractError("could not change mode") + + def utime(self, tarinfo, targetpath): + """Set modification time of targetpath according to tarinfo. + """ + if not hasattr(os, 'utime'): + return + try: + os.utime(targetpath, (tarinfo.mtime, tarinfo.mtime)) + except EnvironmentError as e: + raise ExtractError("could not change modification time") + + #-------------------------------------------------------------------------- + def next(self): + """Return the next member of the archive as a TarInfo object, when + TarFile is opened for reading. Return None if there is no more + available. + """ + self._check("ra") + if self.firstmember is not None: + m = self.firstmember + self.firstmember = None + return m + + # Read the next block. + self.fileobj.seek(self.offset) + tarinfo = None + while True: + try: + tarinfo = self.tarinfo.fromtarfile(self) + except EOFHeaderError as e: + if self.ignore_zeros: + self._dbg(2, "0x%X: %s" % (self.offset, e)) + self.offset += BLOCKSIZE + continue + except InvalidHeaderError as e: + if self.ignore_zeros: + self._dbg(2, "0x%X: %s" % (self.offset, e)) + self.offset += BLOCKSIZE + continue + elif self.offset == 0: + raise ReadError(str(e)) + except EmptyHeaderError: + if self.offset == 0: + raise ReadError("empty file") + except TruncatedHeaderError as e: + if self.offset == 0: + raise ReadError(str(e)) + except SubsequentHeaderError as e: + raise ReadError(str(e)) + break + + if tarinfo is not None: + self.members.append(tarinfo) + else: + self._loaded = True + + return tarinfo + + #-------------------------------------------------------------------------- + # Little helper methods: + + def _getmember(self, name, tarinfo=None, normalize=False): + """Find an archive member by name from bottom to top. + If tarinfo is given, it is used as the starting point. + """ + # Ensure that all members have been loaded. + members = self.getmembers() + + # Limit the member search list up to tarinfo. + if tarinfo is not None: + members = members[:members.index(tarinfo)] + + if normalize: + name = os.path.normpath(name) + + for member in reversed(members): + if normalize: + member_name = os.path.normpath(member.name) + else: + member_name = member.name + + if name == member_name: + return member + + def _load(self): + """Read through the entire archive file and look for readable + members. + """ + while True: + tarinfo = self.next() + if tarinfo is None: + break + self._loaded = True + + def _check(self, mode=None): + """Check if TarFile is still open, and if the operation's mode + corresponds to TarFile's mode. + """ + if self.closed: + raise IOError("%s is closed" % self.__class__.__name__) + if mode is not None and self.mode not in mode: + raise IOError("bad operation for mode %r" % self.mode) + + def _find_link_target(self, tarinfo): + """Find the target member of a symlink or hardlink member in the + archive. + """ + if tarinfo.issym(): + # Always search the entire archive. + linkname = os.path.dirname(tarinfo.name) + "/" + tarinfo.linkname + limit = None + else: + # Search the archive before the link, because a hard link is + # just a reference to an already archived file. + linkname = tarinfo.linkname + limit = tarinfo + + member = self._getmember(linkname, tarinfo=limit, normalize=True) + if member is None: + raise KeyError("linkname %r not found" % linkname) + return member + + def __iter__(self): + """Provide an iterator object. + """ + if self._loaded: + return iter(self.members) + else: + return TarIter(self) + + def _dbg(self, level, msg): + """Write debugging output to sys.stderr. + """ + if level <= self.debug: + print(msg, file=sys.stderr) + + def __enter__(self): + self._check() + return self + + def __exit__(self, type, value, traceback): + if type is None: + self.close() + else: + # An exception occurred. We must not call close() because + # it would try to write end-of-archive blocks and padding. + if not self._extfileobj: + self.fileobj.close() + self.closed = True +# class TarFile + +class TarIter(object): + """Iterator Class. + + for tarinfo in TarFile(...): + suite... + """ + + def __init__(self, tarfile): + """Construct a TarIter object. + """ + self.tarfile = tarfile + self.index = 0 + def __iter__(self): + """Return iterator object. + """ + return self + + def __next__(self): + """Return the next item using TarFile's next() method. + When all members have been read, set TarFile as _loaded. + """ + # Fix for SF #1100429: Under rare circumstances it can + # happen that getmembers() is called during iteration, + # which will cause TarIter to stop prematurely. + if not self.tarfile._loaded: + tarinfo = self.tarfile.next() + if not tarinfo: + self.tarfile._loaded = True + raise StopIteration + else: + try: + tarinfo = self.tarfile.members[self.index] + except IndexError: + raise StopIteration + self.index += 1 + return tarinfo + + next = __next__ # for Python 2.x + +#-------------------- +# exported functions +#-------------------- +def is_tarfile(name): + """Return True if name points to a tar archive that we + are able to handle, else return False. + """ + try: + t = open(name) + t.close() + return True + except TarError: + return False + +bltn_open = open +open = TarFile.open diff --git a/Scripts/Lib/site-packages/pip/_vendor/distlib/compat.py b/Scripts/Lib/site-packages/pip/_vendor/distlib/compat.py new file mode 100644 index 0000000..c316fd9 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/distlib/compat.py @@ -0,0 +1,1120 @@ +# -*- 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 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 ._backport import shutil + 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 + + _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 + import shutil + from urllib.parse import (urlparse, urlunparse, urljoin, splituser, 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 not os.curdir 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 not normdir 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' + +try: + import sysconfig +except ImportError: # pragma: no cover + from ._backport 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 + import re + + 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 + try: + from imp import cache_from_source + 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]] + #print d, rest + 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/Scripts/Lib/site-packages/pip/_vendor/distlib/database.py b/Scripts/Lib/site-packages/pip/_vendor/distlib/database.py new file mode 100644 index 0000000..0a90c30 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/distlib/database.py @@ -0,0 +1,1339 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2012-2017 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 + 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) + + 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 + logger.debug('Getting requirements from metadata %r', md.todict()) + reqts = getattr(md, req_attr) + 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() + if line.startswith('['): + logger.warning('Unexpected line: quitting requirement scan: %r', + line) + break + r = parse_requirement(line) + if not r: + logger.warning('Not recognised as a requirement: %r', line) + continue + if r.extras: + 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 not label is 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 + """ + if dist not in dists: + raise DistlibException('given distribution %r is not a member ' + 'of the list' % dist.name) + graph = make_graph(dists) + + req = [] # required distributions + todo = graph.adjacency_list[dist] # list of nodes we should inspect + + while todo: + d = todo.pop()[0] + req.append(d) + for pred in graph.adjacency_list[d]: + if pred not in req: + 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/Scripts/Lib/site-packages/pip/_vendor/distlib/index.py b/Scripts/Lib/site-packages/pip/_vendor/distlib/index.py new file mode 100644 index 0000000..b1fbbf8 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/distlib/index.py @@ -0,0 +1,509 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2013 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: + 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): + """ + 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(), []) + response = 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): + """ + 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): + """ + 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): + """ + 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): + 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/Scripts/Lib/site-packages/pip/_vendor/distlib/locators.py b/Scripts/Lib/site-packages/pip/_vendor/distlib/locators.py new file mode 100644 index 0000000..0c7d639 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/distlib/locators.py @@ -0,0 +1,1300 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2012-2015 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 as e: # 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, '')), + #'packagetype': 'sdist', + } + 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) + # else: + # logger.debug('skipping pre-release ' + # 'version %s of %s', k, matcher.name) + 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.setDaemon(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 426 / PEP 440. +default_locator = AggregatingLocator( + JSONLocator(), + 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/Scripts/Lib/site-packages/pip/_vendor/distlib/manifest.py b/Scripts/Lib/site-packages/pip/_vendor/distlib/manifest.py new file mode 100644 index 0000000..ca0fe44 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/distlib/manifest.py @@ -0,0 +1,393 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2012-2013 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 on 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: + found = self._exclude_pattern(pattern, anchor=True) + #if not found: + # logger.warning('no previously-included files ' + # 'found matching %r', pattern) + + 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: + found = self._exclude_pattern(pattern, anchor=False) + #if not found: + # logger.warning('no previously-included files ' + # 'matching %r found anywhere in ' + # 'distribution', pattern) + + 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: + found = self._exclude_pattern(pattern, prefix=thedir) + #if not found: + # logger.warning('no previously-included files ' + # 'matching %r found under directory %r', + # pattern, thedir) + + elif action == 'graft': + if not self._include_pattern(None, prefix=dirpattern): + logger.warning('no directories found matching %r', + dirpattern) + + elif action == 'prune': + if not self._exclude_pattern(None, prefix=dirpattern): + logger.warning('no previously-included directories found ' + 'matching %r', dirpattern) + else: # pragma: no cover + # This should never happen, as it should be caught in + # _parse_template_line + raise DistlibException( + 'invalid action %r' % action) + + # + # Private API + # + + def _parse_directive(self, directive): + """ + Validate a directive. + :param directive: The directive to validate. + :return: A tuple of action, patterns, thedir, dir_patterns + """ + words = directive.split() + if len(words) == 1 and words[0] not in ('include', 'exclude', + 'global-include', + 'global-exclude', + 'recursive-include', + 'recursive-exclude', + 'graft', 'prune'): + # no action given, let's use the default 'include' + words.insert(0, 'include') + + action = words[0] + patterns = thedir = dir_pattern = None + + if action in ('include', 'exclude', + 'global-include', 'global-exclude'): + if len(words) < 2: + raise DistlibException( + '%r expects ...' % action) + + patterns = [convert_path(word) for word in words[1:]] + + elif action in ('recursive-include', 'recursive-exclude'): + if len(words) < 3: + raise DistlibException( + '%r expects

    ...' % action) + + thedir = convert_path(words[1]) + patterns = [convert_path(word) for word in words[2:]] + + elif action in ('graft', 'prune'): + if len(words) != 2: + raise DistlibException( + '%r expects a single ' % action) + + dir_pattern = convert_path(words[1]) + + else: + raise DistlibException('unknown action %r' % action) + + return action, patterns, thedir, dir_pattern + + def _include_pattern(self, pattern, anchor=True, prefix=None, + is_regex=False): + """Select strings (presumably filenames) from 'self.files' that + match 'pattern', a Unix-style wildcard (glob) pattern. + + Patterns are not quite the same as implemented by the 'fnmatch' + module: '*' and '?' match non-special characters, where "special" + is platform-dependent: slash on Unix; colon, slash, and backslash on + DOS/Windows; and colon on Mac OS. + + If 'anchor' is true (the default), then the pattern match is more + stringent: "*.py" will match "foo.py" but not "foo/bar.py". If + 'anchor' is false, both of these will match. + + If 'prefix' is supplied, then only filenames starting with 'prefix' + (itself a pattern) and ending with 'pattern', with anything in between + them, will match. 'anchor' is ignored in this case. + + If 'is_regex' is true, 'anchor' and 'prefix' are ignored, and + 'pattern' is assumed to be either a string containing a regex or a + regex object -- no translation is done, the regex is just compiled + and used as-is. + + Selected strings will be added to self.files. + + Return True if files are found. + """ + # XXX docstring lying about what the special chars are? + found = False + pattern_re = self._translate_pattern(pattern, anchor, prefix, is_regex) + + # delayed loading of allfiles list + if self.allfiles is None: + self.findall() + + for name in self.allfiles: + if pattern_re.search(name): + self.files.add(name) + found = True + return found + + def _exclude_pattern(self, pattern, anchor=True, prefix=None, + is_regex=False): + """Remove strings (presumably filenames) from 'files' that match + 'pattern'. + + Other parameters are the same as for 'include_pattern()', above. + The list 'self.files' is modified in place. Return True if files are + found. + + This API is public to allow e.g. exclusion of SCM subdirs, e.g. when + packaging source distributions + """ + found = False + pattern_re = self._translate_pattern(pattern, anchor, prefix, is_regex) + for f in list(self.files): + if pattern_re.search(f): + self.files.remove(f) + found = True + return found + + def _translate_pattern(self, pattern, anchor=True, prefix=None, + is_regex=False): + """Translate a shell-like wildcard pattern to a compiled regular + expression. + + Return the compiled regex. If 'is_regex' true, + then 'pattern' is directly compiled to a regex (if it's a string) + or just returned as-is (assumes it's a regex object). + """ + if is_regex: + if isinstance(pattern, str): + return re.compile(pattern) + else: + return pattern + + if _PYTHON_VERSION > (3, 2): + # ditch start and end characters + start, _, end = self._glob_to_re('_').partition('_') + + if pattern: + pattern_re = self._glob_to_re(pattern) + if _PYTHON_VERSION > (3, 2): + assert pattern_re.startswith(start) and pattern_re.endswith(end) + else: + pattern_re = '' + + base = re.escape(os.path.join(self.base, '')) + if prefix is not None: + # ditch end of pattern character + if _PYTHON_VERSION <= (3, 2): + empty_pattern = self._glob_to_re('') + prefix_re = self._glob_to_re(prefix)[:-len(empty_pattern)] + else: + prefix_re = self._glob_to_re(prefix) + assert prefix_re.startswith(start) and prefix_re.endswith(end) + prefix_re = prefix_re[len(start): len(prefix_re) - len(end)] + sep = os.sep + if os.sep == '\\': + sep = r'\\' + if _PYTHON_VERSION <= (3, 2): + pattern_re = '^' + base + sep.join((prefix_re, + '.*' + pattern_re)) + else: + pattern_re = pattern_re[len(start): len(pattern_re) - len(end)] + pattern_re = r'%s%s%s%s.*%s%s' % (start, base, prefix_re, sep, + pattern_re, end) + else: # no prefix -- respect anchor flag + if anchor: + if _PYTHON_VERSION <= (3, 2): + pattern_re = '^' + base + pattern_re + else: + pattern_re = r'%s%s%s' % (start, base, pattern_re[len(start):]) + + return re.compile(pattern_re) + + def _glob_to_re(self, pattern): + """Translate a shell-like glob pattern to a regular expression. + + Return a string containing the regex. Differs from + 'fnmatch.translate()' in that '*' does not match "special characters" + (which are platform-specific). + """ + pattern_re = fnmatch.translate(pattern) + + # '?' and '*' in the glob pattern become '.' and '.*' in the RE, which + # IMHO is wrong -- '?' and '*' aren't supposed to match slash in Unix, + # and by extension they shouldn't match such "special characters" under + # any OS. So change all non-escaped dots in the RE to match any + # character except the special characters (currently: just os.sep). + sep = os.sep + if os.sep == '\\': + # we're using a regex to manipulate a regex, so we need + # to escape the backslash twice + sep = r'\\\\' + escaped = r'\1[^%s]' % sep + pattern_re = re.sub(r'((? y, + '!=': lambda x, y: x != y, + '<': lambda x, y: x < y, + '<=': lambda x, y: x == y or x < y, + '>': lambda x, y: x > y, + '>=': lambda x, y: x == y or x > y, + 'and': lambda x, y: x and y, + 'or': lambda x, y: x or y, + 'in': lambda x, y: x in y, + 'not in': lambda x, y: x not in y, + } + + def evaluate(self, expr, context): + """ + Evaluate a marker expression returned by the :func:`parse_requirement` + function in the specified context. + """ + if isinstance(expr, string_types): + if expr[0] in '\'"': + result = expr[1:-1] + else: + if expr not in context: + raise SyntaxError('unknown variable: %s' % expr) + result = context[expr] + else: + assert isinstance(expr, dict) + op = expr['op'] + if op not in self.operations: + raise NotImplementedError('op not implemented: %s' % op) + elhs = expr['lhs'] + erhs = expr['rhs'] + if _is_literal(expr['lhs']) and _is_literal(expr['rhs']): + raise SyntaxError('invalid comparison: %s %s %s' % (elhs, op, erhs)) + + lhs = self.evaluate(elhs, context) + rhs = self.evaluate(erhs, context) + result = self.operations[op](lhs, rhs) + return result + +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 = '' + + 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': platform.python_version(), + 'python_version': platform.python_version()[:3], + '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/Scripts/Lib/site-packages/pip/_vendor/distlib/metadata.py b/Scripts/Lib/site-packages/pip/_vendor/distlib/metadata.py new file mode 100644 index 0000000..6a26b0a --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/distlib/metadata.py @@ -0,0 +1,1058 @@ +# -*- 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 withdrawn 2.0). +""" +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',) + +_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) + +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': + return _426_FIELDS + raise MetadataUnrecognizedVersionError(version) + + +def _best_version(fields): + """Detect the best version depending on the fields used.""" + def _has_marker(keys, markers): + for marker in markers: + if marker in keys: + return True + return False + + keys = [] + for key, value in fields.items(): + if value in ([], 'UNKNOWN', None): + continue + keys.append(key) + + possible_versions = ['1.0', '1.1', '1.2', '1.3', '2.0', '2.1'] + + # 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 _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) + if int(is_1_1) + int(is_1_2) + int(is_2_1) + int(is_2_0) > 1: + raise MetadataConflictError('You used incompatible 1.1/1.2/2.0/2.1 fields') + + # we have the choice, 1.0, or 1.2, or 2.0 + # - 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.0 adds more features and is very new + if not is_1_1 and not is_1_2 and not is_2_1 and not is_2_0: + # 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' + + return '2.0' + +# 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') +_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.0 (JSON) + 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) + + 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',)), + } + + __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/Scripts/Lib/site-packages/pip/_vendor/distlib/resources.py b/Scripts/Lib/site-packages/pip/_vendor/distlib/resources.py new file mode 100644 index 0000000..fef52aa --- /dev/null +++ b/Scripts/Lib/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/Scripts/Lib/site-packages/pip/_vendor/distlib/scripts.py b/Scripts/Lib/site-packages/pip/_vendor/distlib/scripts.py new file mode 100644 index 0000000..1ac01dd --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/distlib/scripts.py @@ -0,0 +1,423 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2013-2015 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 + +from .compat import sysconfig, detect_encoding, ZipFile +from .resources import finder +from .util import (FileOperator, get_export_entry, convert_path, + get_executable, 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 + 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: + 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' + name = '%s%s.exe' % (kind, bits) + # 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/Scripts/Lib/site-packages/pip/_vendor/distlib/t32.exe b/Scripts/Lib/site-packages/pip/_vendor/distlib/t32.exe new file mode 100644 index 0000000000000000000000000000000000000000..8932a18e4596952373a38c60b81b7116d4ef9ee8 GIT binary patch literal 96768 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 F{{j_Hb~FG0 literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_vendor/distlib/t64.exe b/Scripts/Lib/site-packages/pip/_vendor/distlib/t64.exe new file mode 100644 index 0000000000000000000000000000000000000000..325b8057c08cf7113d4fd889991fa5638d443793 GIT binary patch literal 105984 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

    ^h^N4aZyJe%k(7BL*-gn=9``8`j0CuR45%cHI z_uuQ8!-|TEvJ}r=zF@%uKc8U@W1eNxUymJ(e45Tb6KDNieQcKe?L-gR8zZj^wFmi= z{5sAxrfP3BOZz~T$3h=Gi%jFg1%D>!6t*l^`zH2G#1PiYtvOBSI#q&y?8qN57P^LA zq9U)rQU+*y!XEgsGMCJM7yWOS+9lW~^axz>9gyv{Pu^qsBg%ZkfzkaN`$zV#>=oFn zwANnf4&g*eu~pAMC~1dl8FZ-^aeQgZ7=osPU=58@oke z55pen;eU@Z`iL!`$;1-VA&$VF4gN7ttU>relx5d-_x=|95B47HeeiYJZ$$38(ddJH zcrW3>{OR2@KF^H}gAbdZDX=AzyZHSizB_(9`v&$-69)D4WBjSaY@YVD`kl8;nl#Cu z5h1U}Tp}-l|Nde9w|3Pc@Aps8-X~fh_EGq!b-~*$a&nv>05-_n;)z{t+vW|PpX{Oj zKE#i|Gsq9Jhpor%Fqiu6y5}jjnz?*$b)h|UO;3NGd-k|9?ZqeVXL!9~vaIO0E8bVb zejzv5ZG0}~1A7{a3!hob11v4ihxvzh!S5>3I?4E~N9+^m8@sHve^M+wb{f3t2VUsD z*C*C&;z_`=&t~mbE@mHC`k7cGl3rKU9U84p?fzGxTg1q z)-Ai@eQSs49?#VDZ(BQ5_sXt#*VAn)X1Lk5l>kvHP6SDZX>#ITM7@`jxR;sQ>OG+Pe$CuXbGOdj zGq+|zTtQMnhk{-O{R=KF7*}vZ!OVhr1xpLo6l^NkTCk^}W?@_*Z|>hH7&o`>+{q8j zm_Kv=-1+n7FPgt}{>u4l=C7T3KtbFEnHc+rVzeuEi5hE<2hHiD6S}>D5l co{tw5U0O7=?|={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() + 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(\w|[-.+])+) + \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') + 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() + + if not hasattr(ssl, 'SSLContext'): + # For 2.x + if self.ca_certs: + cert_reqs = ssl.CERT_REQUIRED + else: + cert_reqs = ssl.CERT_NONE + self.sock = ssl.wrap_socket(sock, self.key_file, self.cert_file, + cert_reqs=cert_reqs, + ssl_version=ssl.PROTOCOL_SSLv23, + ca_certs=self.ca_certs) + else: # pragma: no cover + context = ssl.SSLContext(ssl.PROTOCOL_SSLv23) + if hasattr(ssl, 'OP_NO_SSLv2'): + context.options |= ssl.OP_NO_SSLv2 + if self.cert_file: + 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 +# + +_ver_info = sys.version_info[:2] + +if _ver_info == (2, 6): + class HTTP(httplib.HTTP): + def __init__(self, host='', port=None, **kwargs): + if port == 0: # 0 means use port 0, not the default port + port = None + self._setup(self._connection_class(host, port, **kwargs)) + + + if ssl: + class HTTPS(httplib.HTTPS): + def __init__(self, host='', port=None, **kwargs): + if port == 0: # 0 means use port 0, not the default port + port = None + self._setup(self._connection_class(host, port, **kwargs)) + + +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 _ver_info == (2, 6): + result = HTTP(h, timeout=self.timeout) + else: + if not self._connection or host != self._connection[0]: + self._extra_headers = eh + self._connection = host, httplib.HTTPConnection(h) + result = self._connection[1] + return result + +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 _ver_info == (2, 6): + result = HTTPS(host, None, **kwargs) + else: + if not self._connection or host != self._connection[0]: + self._extra_headers = eh + self._connection = host, httplib.HTTPSConnection(h, None, + **kwargs) + result = self._connection[1] + return result + + +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, distutils.sysconfig + osname, release, machine = _osx_support.get_platform_osx( + distutils.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/Scripts/Lib/site-packages/pip/_vendor/distlib/version.py b/Scripts/Lib/site-packages/pip/_vendor/distlib/version.py new file mode 100644 index 0000000..86c069a --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/distlib/version.py @@ -0,0 +1,739 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2012-2017 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|b|c|rc)(\d+))?' + r'(\.(post)(\d+))?(\.(dev)(\d+))?' + r'(\+([a-zA-Z\d]+(\.[a-zA-Z\d]+)?))?$') + + +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]) + pre = groups[4:6] + post = groups[7:9] + dev = groups[10:12] + local = groups[13] + if pre == (None, None): + pre = () + else: + pre = pre[0], int(pre[1]) + if post == (None, None): + post = () + else: + post = post[0], int(post[1]) + if dev == (None, None): + dev = () + 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',) + + #print('%s -> %s' % (s, m.groups())) + 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/Scripts/Lib/site-packages/pip/_vendor/distlib/w32.exe b/Scripts/Lib/site-packages/pip/_vendor/distlib/w32.exe new file mode 100644 index 0000000000000000000000000000000000000000..e6439e9e45897365d5ac6a85a46864c158a225fd GIT binary patch literal 90112 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�gPVRVBXt_FM7e4<}XM;HRH{62JZSn^<*L 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 OB+yBqlfeHwf&T)jA)JE% literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_vendor/distlib/w64.exe b/Scripts/Lib/site-packages/pip/_vendor/distlib/w64.exe new file mode 100644 index 0000000000000000000000000000000000000000..46139dbf9400b7bc0b64e6756ce17b4eb5fd7436 GIT binary patch literal 99840 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

    This is a doc

    ') + + + """ + tb = treebuilders.getTreeBuilder(treebuilder) + p = HTMLParser(tb, namespaceHTMLElements=namespaceHTMLElements) + return p.parse(doc, **kwargs) + + +def parseFragment(doc, container="div", treebuilder="etree", namespaceHTMLElements=True, **kwargs): + """Parse an HTML fragment as a string or file-like object into a tree + + :arg doc: the fragment to parse as a string or file-like object + + :arg container: the container context to parse the fragment in + + :arg treebuilder: the treebuilder to use when parsing + + :arg namespaceHTMLElements: whether or not to namespace HTML elements + + :returns: parsed tree + + Example: + + >>> from html5lib.html5libparser import parseFragment + >>> parseFragment('this is a fragment') + + + """ + tb = treebuilders.getTreeBuilder(treebuilder) + p = HTMLParser(tb, namespaceHTMLElements=namespaceHTMLElements) + return p.parseFragment(doc, container=container, **kwargs) + + +def method_decorator_metaclass(function): + class Decorated(type): + def __new__(meta, classname, bases, classDict): + for attributeName, attribute in classDict.items(): + if isinstance(attribute, types.FunctionType): + attribute = function(attribute) + + classDict[attributeName] = attribute + return type.__new__(meta, classname, bases, classDict) + return Decorated + + +class HTMLParser(object): + """HTML parser + + Generates a tree structure from a stream of (possibly malformed) HTML. + + """ + + def __init__(self, tree=None, strict=False, namespaceHTMLElements=True, debug=False): + """ + :arg tree: a treebuilder class controlling the type of tree that will be + returned. Built in treebuilders can be accessed through + html5lib.treebuilders.getTreeBuilder(treeType) + + :arg strict: raise an exception when a parse error is encountered + + :arg namespaceHTMLElements: whether or not to namespace HTML elements + + :arg debug: whether or not to enable debug mode which logs things + + Example: + + >>> from html5lib.html5parser import HTMLParser + >>> parser = HTMLParser() # generates parser with etree builder + >>> parser = HTMLParser('lxml', strict=True) # generates parser with lxml builder which is strict + + """ + + # Raise an exception on the first error encountered + self.strict = strict + + if tree is None: + tree = treebuilders.getTreeBuilder("etree") + self.tree = tree(namespaceHTMLElements) + self.errors = [] + + self.phases = {name: cls(self, self.tree) for name, cls in + getPhases(debug).items()} + + def _parse(self, stream, innerHTML=False, container="div", scripting=False, **kwargs): + + self.innerHTMLMode = innerHTML + self.container = container + self.scripting = scripting + self.tokenizer = _tokenizer.HTMLTokenizer(stream, parser=self, **kwargs) + self.reset() + + try: + self.mainLoop() + except _ReparseException: + self.reset() + self.mainLoop() + + def reset(self): + self.tree.reset() + self.firstStartTag = False + self.errors = [] + self.log = [] # only used with debug mode + # "quirks" / "limited quirks" / "no quirks" + self.compatMode = "no quirks" + + if self.innerHTMLMode: + self.innerHTML = self.container.lower() + + if self.innerHTML in cdataElements: + self.tokenizer.state = self.tokenizer.rcdataState + elif self.innerHTML in rcdataElements: + self.tokenizer.state = self.tokenizer.rawtextState + elif self.innerHTML == 'plaintext': + self.tokenizer.state = self.tokenizer.plaintextState + else: + # state already is data state + # self.tokenizer.state = self.tokenizer.dataState + pass + self.phase = self.phases["beforeHtml"] + self.phase.insertHtmlElement() + self.resetInsertionMode() + else: + self.innerHTML = False # pylint:disable=redefined-variable-type + self.phase = self.phases["initial"] + + self.lastPhase = None + + self.beforeRCDataPhase = None + + self.framesetOK = True + + @property + def documentEncoding(self): + """Name of the character encoding that was used to decode the input stream, or + :obj:`None` if that is not determined yet + + """ + if not hasattr(self, 'tokenizer'): + return None + return self.tokenizer.stream.charEncoding[0].name + + def isHTMLIntegrationPoint(self, element): + if (element.name == "annotation-xml" and + element.namespace == namespaces["mathml"]): + return ("encoding" in element.attributes and + element.attributes["encoding"].translate( + asciiUpper2Lower) in + ("text/html", "application/xhtml+xml")) + else: + return (element.namespace, element.name) in htmlIntegrationPointElements + + def isMathMLTextIntegrationPoint(self, element): + return (element.namespace, element.name) in mathmlTextIntegrationPointElements + + def mainLoop(self): + CharactersToken = tokenTypes["Characters"] + SpaceCharactersToken = tokenTypes["SpaceCharacters"] + StartTagToken = tokenTypes["StartTag"] + EndTagToken = tokenTypes["EndTag"] + CommentToken = tokenTypes["Comment"] + DoctypeToken = tokenTypes["Doctype"] + ParseErrorToken = tokenTypes["ParseError"] + + for token in self.tokenizer: + prev_token = None + new_token = token + while new_token is not None: + prev_token = new_token + currentNode = self.tree.openElements[-1] if self.tree.openElements else None + currentNodeNamespace = currentNode.namespace if currentNode else None + currentNodeName = currentNode.name if currentNode else None + + type = new_token["type"] + + if type == ParseErrorToken: + self.parseError(new_token["data"], new_token.get("datavars", {})) + new_token = None + else: + if (len(self.tree.openElements) == 0 or + currentNodeNamespace == self.tree.defaultNamespace or + (self.isMathMLTextIntegrationPoint(currentNode) and + ((type == StartTagToken and + token["name"] not in frozenset(["mglyph", "malignmark"])) or + type in (CharactersToken, SpaceCharactersToken))) or + (currentNodeNamespace == namespaces["mathml"] and + currentNodeName == "annotation-xml" and + type == StartTagToken and + token["name"] == "svg") or + (self.isHTMLIntegrationPoint(currentNode) and + type in (StartTagToken, CharactersToken, SpaceCharactersToken))): + phase = self.phase + else: + phase = self.phases["inForeignContent"] + + if type == CharactersToken: + new_token = phase.processCharacters(new_token) + elif type == SpaceCharactersToken: + new_token = phase.processSpaceCharacters(new_token) + elif type == StartTagToken: + new_token = phase.processStartTag(new_token) + elif type == EndTagToken: + new_token = phase.processEndTag(new_token) + elif type == CommentToken: + new_token = phase.processComment(new_token) + elif type == DoctypeToken: + new_token = phase.processDoctype(new_token) + + if (type == StartTagToken and prev_token["selfClosing"] and + not prev_token["selfClosingAcknowledged"]): + self.parseError("non-void-element-with-trailing-solidus", + {"name": prev_token["name"]}) + + # When the loop finishes it's EOF + reprocess = True + phases = [] + while reprocess: + phases.append(self.phase) + reprocess = self.phase.processEOF() + if reprocess: + assert self.phase not in phases + + def parse(self, stream, *args, **kwargs): + """Parse a HTML document into a well-formed tree + + :arg stream: a file-like object or string containing the HTML to be parsed + + The optional encoding parameter must be a string that indicates + the encoding. If specified, that encoding will be used, + regardless of any BOM or later declaration (such as in a meta + element). + + :arg scripting: treat noscript elements as if JavaScript was turned on + + :returns: parsed tree + + Example: + + >>> from html5lib.html5parser import HTMLParser + >>> parser = HTMLParser() + >>> parser.parse('

    This is a doc

    ') + + + """ + self._parse(stream, False, None, *args, **kwargs) + return self.tree.getDocument() + + def parseFragment(self, stream, *args, **kwargs): + """Parse a HTML fragment into a well-formed tree fragment + + :arg container: name of the element we're setting the innerHTML + property if set to None, default to 'div' + + :arg stream: a file-like object or string containing the HTML to be parsed + + The optional encoding parameter must be a string that indicates + the encoding. If specified, that encoding will be used, + regardless of any BOM or later declaration (such as in a meta + element) + + :arg scripting: treat noscript elements as if JavaScript was turned on + + :returns: parsed tree + + Example: + + >>> from html5lib.html5libparser import HTMLParser + >>> parser = HTMLParser() + >>> parser.parseFragment('this is a fragment') + + + """ + self._parse(stream, True, *args, **kwargs) + return self.tree.getFragment() + + def parseError(self, errorcode="XXX-undefined-error", datavars=None): + # XXX The idea is to make errorcode mandatory. + if datavars is None: + datavars = {} + self.errors.append((self.tokenizer.stream.position(), errorcode, datavars)) + if self.strict: + raise ParseError(E[errorcode] % datavars) + + def adjustMathMLAttributes(self, token): + adjust_attributes(token, adjustMathMLAttributes) + + def adjustSVGAttributes(self, token): + adjust_attributes(token, adjustSVGAttributes) + + def adjustForeignAttributes(self, token): + adjust_attributes(token, adjustForeignAttributesMap) + + def reparseTokenNormal(self, token): + # pylint:disable=unused-argument + self.parser.phase() + + def resetInsertionMode(self): + # The name of this method is mostly historical. (It's also used in the + # specification.) + last = False + newModes = { + "select": "inSelect", + "td": "inCell", + "th": "inCell", + "tr": "inRow", + "tbody": "inTableBody", + "thead": "inTableBody", + "tfoot": "inTableBody", + "caption": "inCaption", + "colgroup": "inColumnGroup", + "table": "inTable", + "head": "inBody", + "body": "inBody", + "frameset": "inFrameset", + "html": "beforeHead" + } + for node in self.tree.openElements[::-1]: + nodeName = node.name + new_phase = None + if node == self.tree.openElements[0]: + assert self.innerHTML + last = True + nodeName = self.innerHTML + # Check for conditions that should only happen in the innerHTML + # case + if nodeName in ("select", "colgroup", "head", "html"): + assert self.innerHTML + + if not last and node.namespace != self.tree.defaultNamespace: + continue + + if nodeName in newModes: + new_phase = self.phases[newModes[nodeName]] + break + elif last: + new_phase = self.phases["inBody"] + break + + self.phase = new_phase + + def parseRCDataRawtext(self, token, contentType): + # Generic RCDATA/RAWTEXT Parsing algorithm + assert contentType in ("RAWTEXT", "RCDATA") + + self.tree.insertElement(token) + + if contentType == "RAWTEXT": + self.tokenizer.state = self.tokenizer.rawtextState + else: + self.tokenizer.state = self.tokenizer.rcdataState + + self.originalPhase = self.phase + + self.phase = self.phases["text"] + + +@_utils.memoize +def getPhases(debug): + def log(function): + """Logger that records which phase processes each token""" + type_names = {value: key for key, value in tokenTypes.items()} + + def wrapped(self, *args, **kwargs): + if function.__name__.startswith("process") and len(args) > 0: + token = args[0] + info = {"type": type_names[token['type']]} + if token['type'] in tagTokenTypes: + info["name"] = token['name'] + + self.parser.log.append((self.parser.tokenizer.state.__name__, + self.parser.phase.__class__.__name__, + self.__class__.__name__, + function.__name__, + info)) + return function(self, *args, **kwargs) + else: + return function(self, *args, **kwargs) + return wrapped + + def getMetaclass(use_metaclass, metaclass_func): + if use_metaclass: + return method_decorator_metaclass(metaclass_func) + else: + return type + + # pylint:disable=unused-argument + class Phase(with_metaclass(getMetaclass(debug, log))): + """Base class for helper object that implements each phase of processing + """ + __slots__ = ("parser", "tree", "__startTagCache", "__endTagCache") + + def __init__(self, parser, tree): + self.parser = parser + self.tree = tree + self.__startTagCache = {} + self.__endTagCache = {} + + def processEOF(self): + raise NotImplementedError + + def processComment(self, token): + # For most phases the following is correct. Where it's not it will be + # overridden. + self.tree.insertComment(token, self.tree.openElements[-1]) + + def processDoctype(self, token): + self.parser.parseError("unexpected-doctype") + + def processCharacters(self, token): + self.tree.insertText(token["data"]) + + def processSpaceCharacters(self, token): + self.tree.insertText(token["data"]) + + def processStartTag(self, token): + # Note the caching is done here rather than BoundMethodDispatcher as doing it there + # requires a circular reference to the Phase, and this ends up with a significant + # (CPython 2.7, 3.8) GC cost when parsing many short inputs + name = token["name"] + # In Py2, using `in` is quicker in general than try/except KeyError + # In Py3, `in` is quicker when there are few cache hits (typically short inputs) + if name in self.__startTagCache: + func = self.__startTagCache[name] + else: + func = self.__startTagCache[name] = self.startTagHandler[name] + # bound the cache size in case we get loads of unknown tags + while len(self.__startTagCache) > len(self.startTagHandler) * 1.1: + # this makes the eviction policy random on Py < 3.7 and FIFO >= 3.7 + self.__startTagCache.pop(next(iter(self.__startTagCache))) + return func(token) + + def startTagHtml(self, token): + if not self.parser.firstStartTag and token["name"] == "html": + self.parser.parseError("non-html-root") + # XXX Need a check here to see if the first start tag token emitted is + # this token... If it's not, invoke self.parser.parseError(). + for attr, value in token["data"].items(): + if attr not in self.tree.openElements[0].attributes: + self.tree.openElements[0].attributes[attr] = value + self.parser.firstStartTag = False + + def processEndTag(self, token): + # Note the caching is done here rather than BoundMethodDispatcher as doing it there + # requires a circular reference to the Phase, and this ends up with a significant + # (CPython 2.7, 3.8) GC cost when parsing many short inputs + name = token["name"] + # In Py2, using `in` is quicker in general than try/except KeyError + # In Py3, `in` is quicker when there are few cache hits (typically short inputs) + if name in self.__endTagCache: + func = self.__endTagCache[name] + else: + func = self.__endTagCache[name] = self.endTagHandler[name] + # bound the cache size in case we get loads of unknown tags + while len(self.__endTagCache) > len(self.endTagHandler) * 1.1: + # this makes the eviction policy random on Py < 3.7 and FIFO >= 3.7 + self.__endTagCache.pop(next(iter(self.__endTagCache))) + return func(token) + + class InitialPhase(Phase): + __slots__ = tuple() + + def processSpaceCharacters(self, token): + pass + + def processComment(self, token): + self.tree.insertComment(token, self.tree.document) + + def processDoctype(self, token): + name = token["name"] + publicId = token["publicId"] + systemId = token["systemId"] + correct = token["correct"] + + if (name != "html" or publicId is not None or + systemId is not None and systemId != "about:legacy-compat"): + self.parser.parseError("unknown-doctype") + + if publicId is None: + publicId = "" + + self.tree.insertDoctype(token) + + if publicId != "": + publicId = publicId.translate(asciiUpper2Lower) + + if (not correct or token["name"] != "html" or + publicId.startswith( + ("+//silmaril//dtd html pro v0r11 19970101//", + "-//advasoft ltd//dtd html 3.0 aswedit + extensions//", + "-//as//dtd html 3.0 aswedit + extensions//", + "-//ietf//dtd html 2.0 level 1//", + "-//ietf//dtd html 2.0 level 2//", + "-//ietf//dtd html 2.0 strict level 1//", + "-//ietf//dtd html 2.0 strict level 2//", + "-//ietf//dtd html 2.0 strict//", + "-//ietf//dtd html 2.0//", + "-//ietf//dtd html 2.1e//", + "-//ietf//dtd html 3.0//", + "-//ietf//dtd html 3.2 final//", + "-//ietf//dtd html 3.2//", + "-//ietf//dtd html 3//", + "-//ietf//dtd html level 0//", + "-//ietf//dtd html level 1//", + "-//ietf//dtd html level 2//", + "-//ietf//dtd html level 3//", + "-//ietf//dtd html strict level 0//", + "-//ietf//dtd html strict level 1//", + "-//ietf//dtd html strict level 2//", + "-//ietf//dtd html strict level 3//", + "-//ietf//dtd html strict//", + "-//ietf//dtd html//", + "-//metrius//dtd metrius presentational//", + "-//microsoft//dtd internet explorer 2.0 html strict//", + "-//microsoft//dtd internet explorer 2.0 html//", + "-//microsoft//dtd internet explorer 2.0 tables//", + "-//microsoft//dtd internet explorer 3.0 html strict//", + "-//microsoft//dtd internet explorer 3.0 html//", + "-//microsoft//dtd internet explorer 3.0 tables//", + "-//netscape comm. corp.//dtd html//", + "-//netscape comm. corp.//dtd strict html//", + "-//o'reilly and associates//dtd html 2.0//", + "-//o'reilly and associates//dtd html extended 1.0//", + "-//o'reilly and associates//dtd html extended relaxed 1.0//", + "-//softquad software//dtd hotmetal pro 6.0::19990601::extensions to html 4.0//", + "-//softquad//dtd hotmetal pro 4.0::19971010::extensions to html 4.0//", + "-//spyglass//dtd html 2.0 extended//", + "-//sq//dtd html 2.0 hotmetal + extensions//", + "-//sun microsystems corp.//dtd hotjava html//", + "-//sun microsystems corp.//dtd hotjava strict html//", + "-//w3c//dtd html 3 1995-03-24//", + "-//w3c//dtd html 3.2 draft//", + "-//w3c//dtd html 3.2 final//", + "-//w3c//dtd html 3.2//", + "-//w3c//dtd html 3.2s draft//", + "-//w3c//dtd html 4.0 frameset//", + "-//w3c//dtd html 4.0 transitional//", + "-//w3c//dtd html experimental 19960712//", + "-//w3c//dtd html experimental 970421//", + "-//w3c//dtd w3 html//", + "-//w3o//dtd w3 html 3.0//", + "-//webtechs//dtd mozilla html 2.0//", + "-//webtechs//dtd mozilla html//")) or + publicId in ("-//w3o//dtd w3 html strict 3.0//en//", + "-/w3c/dtd html 4.0 transitional/en", + "html") or + publicId.startswith( + ("-//w3c//dtd html 4.01 frameset//", + "-//w3c//dtd html 4.01 transitional//")) and + systemId is None or + systemId and systemId.lower() == "http://www.ibm.com/data/dtd/v11/ibmxhtml1-transitional.dtd"): + self.parser.compatMode = "quirks" + elif (publicId.startswith( + ("-//w3c//dtd xhtml 1.0 frameset//", + "-//w3c//dtd xhtml 1.0 transitional//")) or + publicId.startswith( + ("-//w3c//dtd html 4.01 frameset//", + "-//w3c//dtd html 4.01 transitional//")) and + systemId is not None): + self.parser.compatMode = "limited quirks" + + self.parser.phase = self.parser.phases["beforeHtml"] + + def anythingElse(self): + self.parser.compatMode = "quirks" + self.parser.phase = self.parser.phases["beforeHtml"] + + def processCharacters(self, token): + self.parser.parseError("expected-doctype-but-got-chars") + self.anythingElse() + return token + + def processStartTag(self, token): + self.parser.parseError("expected-doctype-but-got-start-tag", + {"name": token["name"]}) + self.anythingElse() + return token + + def processEndTag(self, token): + self.parser.parseError("expected-doctype-but-got-end-tag", + {"name": token["name"]}) + self.anythingElse() + return token + + def processEOF(self): + self.parser.parseError("expected-doctype-but-got-eof") + self.anythingElse() + return True + + class BeforeHtmlPhase(Phase): + __slots__ = tuple() + + # helper methods + def insertHtmlElement(self): + self.tree.insertRoot(impliedTagToken("html", "StartTag")) + self.parser.phase = self.parser.phases["beforeHead"] + + # other + def processEOF(self): + self.insertHtmlElement() + return True + + def processComment(self, token): + self.tree.insertComment(token, self.tree.document) + + def processSpaceCharacters(self, token): + pass + + def processCharacters(self, token): + self.insertHtmlElement() + return token + + def processStartTag(self, token): + if token["name"] == "html": + self.parser.firstStartTag = True + self.insertHtmlElement() + return token + + def processEndTag(self, token): + if token["name"] not in ("head", "body", "html", "br"): + self.parser.parseError("unexpected-end-tag-before-html", + {"name": token["name"]}) + else: + self.insertHtmlElement() + return token + + class BeforeHeadPhase(Phase): + __slots__ = tuple() + + def processEOF(self): + self.startTagHead(impliedTagToken("head", "StartTag")) + return True + + def processSpaceCharacters(self, token): + pass + + def processCharacters(self, token): + self.startTagHead(impliedTagToken("head", "StartTag")) + return token + + def startTagHtml(self, token): + return self.parser.phases["inBody"].processStartTag(token) + + def startTagHead(self, token): + self.tree.insertElement(token) + self.tree.headPointer = self.tree.openElements[-1] + self.parser.phase = self.parser.phases["inHead"] + + def startTagOther(self, token): + self.startTagHead(impliedTagToken("head", "StartTag")) + return token + + def endTagImplyHead(self, token): + self.startTagHead(impliedTagToken("head", "StartTag")) + return token + + def endTagOther(self, token): + self.parser.parseError("end-tag-after-implied-root", + {"name": token["name"]}) + + startTagHandler = _utils.MethodDispatcher([ + ("html", startTagHtml), + ("head", startTagHead) + ]) + startTagHandler.default = startTagOther + + endTagHandler = _utils.MethodDispatcher([ + (("head", "body", "html", "br"), endTagImplyHead) + ]) + endTagHandler.default = endTagOther + + class InHeadPhase(Phase): + __slots__ = tuple() + + # the real thing + def processEOF(self): + self.anythingElse() + return True + + def processCharacters(self, token): + self.anythingElse() + return token + + def startTagHtml(self, token): + return self.parser.phases["inBody"].processStartTag(token) + + def startTagHead(self, token): + self.parser.parseError("two-heads-are-not-better-than-one") + + def startTagBaseLinkCommand(self, token): + self.tree.insertElement(token) + self.tree.openElements.pop() + token["selfClosingAcknowledged"] = True + + def startTagMeta(self, token): + self.tree.insertElement(token) + self.tree.openElements.pop() + token["selfClosingAcknowledged"] = True + + attributes = token["data"] + if self.parser.tokenizer.stream.charEncoding[1] == "tentative": + if "charset" in attributes: + self.parser.tokenizer.stream.changeEncoding(attributes["charset"]) + elif ("content" in attributes and + "http-equiv" in attributes and + attributes["http-equiv"].lower() == "content-type"): + # Encoding it as UTF-8 here is a hack, as really we should pass + # the abstract Unicode string, and just use the + # ContentAttrParser on that, but using UTF-8 allows all chars + # to be encoded and as a ASCII-superset works. + data = _inputstream.EncodingBytes(attributes["content"].encode("utf-8")) + parser = _inputstream.ContentAttrParser(data) + codec = parser.parse() + self.parser.tokenizer.stream.changeEncoding(codec) + + def startTagTitle(self, token): + self.parser.parseRCDataRawtext(token, "RCDATA") + + def startTagNoFramesStyle(self, token): + # Need to decide whether to implement the scripting-disabled case + self.parser.parseRCDataRawtext(token, "RAWTEXT") + + def startTagNoscript(self, token): + if self.parser.scripting: + self.parser.parseRCDataRawtext(token, "RAWTEXT") + else: + self.tree.insertElement(token) + self.parser.phase = self.parser.phases["inHeadNoscript"] + + def startTagScript(self, token): + self.tree.insertElement(token) + self.parser.tokenizer.state = self.parser.tokenizer.scriptDataState + self.parser.originalPhase = self.parser.phase + self.parser.phase = self.parser.phases["text"] + + def startTagOther(self, token): + self.anythingElse() + return token + + def endTagHead(self, token): + node = self.parser.tree.openElements.pop() + assert node.name == "head", "Expected head got %s" % node.name + self.parser.phase = self.parser.phases["afterHead"] + + def endTagHtmlBodyBr(self, token): + self.anythingElse() + return token + + def endTagOther(self, token): + self.parser.parseError("unexpected-end-tag", {"name": token["name"]}) + + def anythingElse(self): + self.endTagHead(impliedTagToken("head")) + + startTagHandler = _utils.MethodDispatcher([ + ("html", startTagHtml), + ("title", startTagTitle), + (("noframes", "style"), startTagNoFramesStyle), + ("noscript", startTagNoscript), + ("script", startTagScript), + (("base", "basefont", "bgsound", "command", "link"), + startTagBaseLinkCommand), + ("meta", startTagMeta), + ("head", startTagHead) + ]) + startTagHandler.default = startTagOther + + endTagHandler = _utils.MethodDispatcher([ + ("head", endTagHead), + (("br", "html", "body"), endTagHtmlBodyBr) + ]) + endTagHandler.default = endTagOther + + class InHeadNoscriptPhase(Phase): + __slots__ = tuple() + + def processEOF(self): + self.parser.parseError("eof-in-head-noscript") + self.anythingElse() + return True + + def processComment(self, token): + return self.parser.phases["inHead"].processComment(token) + + def processCharacters(self, token): + self.parser.parseError("char-in-head-noscript") + self.anythingElse() + return token + + def processSpaceCharacters(self, token): + return self.parser.phases["inHead"].processSpaceCharacters(token) + + def startTagHtml(self, token): + return self.parser.phases["inBody"].processStartTag(token) + + def startTagBaseLinkCommand(self, token): + return self.parser.phases["inHead"].processStartTag(token) + + def startTagHeadNoscript(self, token): + self.parser.parseError("unexpected-start-tag", {"name": token["name"]}) + + def startTagOther(self, token): + self.parser.parseError("unexpected-inhead-noscript-tag", {"name": token["name"]}) + self.anythingElse() + return token + + def endTagNoscript(self, token): + node = self.parser.tree.openElements.pop() + assert node.name == "noscript", "Expected noscript got %s" % node.name + self.parser.phase = self.parser.phases["inHead"] + + def endTagBr(self, token): + self.parser.parseError("unexpected-inhead-noscript-tag", {"name": token["name"]}) + self.anythingElse() + return token + + def endTagOther(self, token): + self.parser.parseError("unexpected-end-tag", {"name": token["name"]}) + + def anythingElse(self): + # Caller must raise parse error first! + self.endTagNoscript(impliedTagToken("noscript")) + + startTagHandler = _utils.MethodDispatcher([ + ("html", startTagHtml), + (("basefont", "bgsound", "link", "meta", "noframes", "style"), startTagBaseLinkCommand), + (("head", "noscript"), startTagHeadNoscript), + ]) + startTagHandler.default = startTagOther + + endTagHandler = _utils.MethodDispatcher([ + ("noscript", endTagNoscript), + ("br", endTagBr), + ]) + endTagHandler.default = endTagOther + + class AfterHeadPhase(Phase): + __slots__ = tuple() + + def processEOF(self): + self.anythingElse() + return True + + def processCharacters(self, token): + self.anythingElse() + return token + + def startTagHtml(self, token): + return self.parser.phases["inBody"].processStartTag(token) + + def startTagBody(self, token): + self.parser.framesetOK = False + self.tree.insertElement(token) + self.parser.phase = self.parser.phases["inBody"] + + def startTagFrameset(self, token): + self.tree.insertElement(token) + self.parser.phase = self.parser.phases["inFrameset"] + + def startTagFromHead(self, token): + self.parser.parseError("unexpected-start-tag-out-of-my-head", + {"name": token["name"]}) + self.tree.openElements.append(self.tree.headPointer) + self.parser.phases["inHead"].processStartTag(token) + for node in self.tree.openElements[::-1]: + if node.name == "head": + self.tree.openElements.remove(node) + break + + def startTagHead(self, token): + self.parser.parseError("unexpected-start-tag", {"name": token["name"]}) + + def startTagOther(self, token): + self.anythingElse() + return token + + def endTagHtmlBodyBr(self, token): + self.anythingElse() + return token + + def endTagOther(self, token): + self.parser.parseError("unexpected-end-tag", {"name": token["name"]}) + + def anythingElse(self): + self.tree.insertElement(impliedTagToken("body", "StartTag")) + self.parser.phase = self.parser.phases["inBody"] + self.parser.framesetOK = True + + startTagHandler = _utils.MethodDispatcher([ + ("html", startTagHtml), + ("body", startTagBody), + ("frameset", startTagFrameset), + (("base", "basefont", "bgsound", "link", "meta", "noframes", "script", + "style", "title"), + startTagFromHead), + ("head", startTagHead) + ]) + startTagHandler.default = startTagOther + endTagHandler = _utils.MethodDispatcher([(("body", "html", "br"), + endTagHtmlBodyBr)]) + endTagHandler.default = endTagOther + + class InBodyPhase(Phase): + # http://www.whatwg.org/specs/web-apps/current-work/#parsing-main-inbody + # the really-really-really-very crazy mode + __slots__ = ("processSpaceCharacters",) + + def __init__(self, *args, **kwargs): + super(InBodyPhase, self).__init__(*args, **kwargs) + # Set this to the default handler + self.processSpaceCharacters = self.processSpaceCharactersNonPre + + def isMatchingFormattingElement(self, node1, node2): + return (node1.name == node2.name and + node1.namespace == node2.namespace and + node1.attributes == node2.attributes) + + # helper + def addFormattingElement(self, token): + self.tree.insertElement(token) + element = self.tree.openElements[-1] + + matchingElements = [] + for node in self.tree.activeFormattingElements[::-1]: + if node is Marker: + break + elif self.isMatchingFormattingElement(node, element): + matchingElements.append(node) + + assert len(matchingElements) <= 3 + if len(matchingElements) == 3: + self.tree.activeFormattingElements.remove(matchingElements[-1]) + self.tree.activeFormattingElements.append(element) + + # the real deal + def processEOF(self): + allowed_elements = frozenset(("dd", "dt", "li", "p", "tbody", "td", + "tfoot", "th", "thead", "tr", "body", + "html")) + for node in self.tree.openElements[::-1]: + if node.name not in allowed_elements: + self.parser.parseError("expected-closing-tag-but-got-eof") + break + # Stop parsing + + def processSpaceCharactersDropNewline(self, token): + # Sometimes (start of
    , , and 

    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 10: + VER_SUFFIX = '%s_%s' % sys.version_info[:2] # PEP 641 (draft) + else: + 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 sysconfig.get_config_var('WITH_PYMALLOC'): + parts.append('m') + if sysconfig.get_config_var('Py_UNICODE_SIZE') == 4: + 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, '/') + + +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 = imp.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: + wheel_metadata = 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, base): + records = list(records) # make a copy, as mutated + p = to_posix(os.path.relpath(record_path, base)) + records.append((p, '', '')) + 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') + self.write_record(records, p, libdir) + ap = to_posix(os.path.join(info_dir, 'RECORD')) + 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 = 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: + v = 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 imp.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/Scripts/Lib/site-packages/pip/_vendor/distro.py b/Scripts/Lib/site-packages/pip/_vendor/distro.py new file mode 100644 index 0000000..0611b62 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/distro.py @@ -0,0 +1,1230 @@ +# Copyright 2015,2016,2017 Nir Cohen +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +""" +The ``distro`` package (``distro`` stands for Linux Distribution) provides +information about the Linux distribution it runs on, such as a reliable +machine-readable distro ID, or version information. + +It is the recommended replacement for Python's original +:py:func:`platform.linux_distribution` function, but it provides much more +functionality. An alternative implementation became necessary because Python +3.5 deprecated this function, and Python 3.8 will remove it altogether. +Its predecessor function :py:func:`platform.dist` was already +deprecated since Python 2.6 and will also be removed in Python 3.8. +Still, there are many cases in which access to OS distribution information +is needed. See `Python issue 1322 `_ for +more information. +""" + +import os +import re +import sys +import json +import shlex +import logging +import argparse +import subprocess + + +_UNIXCONFDIR = os.environ.get('UNIXCONFDIR', '/etc') +_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 +} + +#: 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 ignored when searching for distro release file +_DISTRO_RELEASE_IGNORE_BASENAMES = ( + 'debian_version', + 'lsb-release', + 'oem-release', + _OS_RELEASE_BASENAME, + 'system-release', + 'plesk-release', +) + + +def linux_distribution(full_distribution_name=True): + """ + 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 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. + """ + return _distro.linux_distribution(full_distribution_name) + + +def id(): + """ + 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 + "amazon" Amazon Linux + "arch" Arch Linux + "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 + ============== ========================================= + + 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=False): + """ + 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=False, best=False): + """ + 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). + + 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=False): + """ + 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=False): + """ + 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=False): + """ + 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=False): + """ + 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(): + """ + 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(): + """ + 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=False, best=False): + """ + 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(): + """ + 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(): + """ + 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(): + """ + 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(): + """ + 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): + """ + 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): + """ + 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): + """ + 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): + """ + 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) + + +class cached_property(object): + """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): + self._fname = f.__name__ + self._f = f + + def __get__(self, obj, owner): + assert obj is not None, 'call {} on an instance'.format(self._fname) + ret = obj.__dict__[self._fname] = self._f(obj) + return ret + + +class LinuxDistribution(object): + """ + 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=True, + os_release_file='', + distro_release_file='', + include_uname=True): + """ + 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. + + 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. + + Raises: + + * :py:exc:`IOError`: Some I/O issue with an os-release file or distro + release file. + + * :py:exc:`subprocess.CalledProcessError`: The lsb_release command had + some issue (other than not being available in the program execution + path). + + * :py:exc:`UnicodeError`: A data source has unexpected characters or + uses an unexpected encoding. + """ + self.os_release_file = os_release_file or \ + os.path.join(_UNIXCONFDIR, _OS_RELEASE_BASENAME) + self.distro_release_file = distro_release_file or '' # updated later + self.include_lsb = include_lsb + self.include_uname = include_uname + + def __repr__(self): + """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}, " \ + "_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})".format( + self=self) + + def linux_distribution(self, full_distribution_name=True): + """ + 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.codename() + ) + + def id(self): + """Return the distro ID of the OS distribution, as a string. + + For details, see :func:`distro.id`. + """ + def normalize(distro_id, table): + 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=False): + """ + 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 = name + ' ' + version + return name or '' + + def version(self, pretty=False, best=False): + """ + 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') + ] + 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 = '{0} ({1})'.format(version, self.codename()) + return version + + def version_parts(self, best=False): + """ + 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=False): + """ + 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=False): + """ + 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=False): + """ + Return the build number of the current distribution. + + For details, see :func:`distro.build_number`. + """ + return self.version_parts(best)[2] + + def like(self): + """ + 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): + """ + 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=False, best=False): + """ + 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): + """ + 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): + """ + 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): + """ + 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): + """ + 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 os_release_attr(self, attribute): + """ + 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): + """ + 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): + """ + 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): + """ + Return a single named information item from the uname command + output data source of the OS distribution. + + For details, see :func:`distro.uname_release_attr`. + """ + return self._uname_info.get(attribute, '') + + @cached_property + def _os_release_info(self): + """ + 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) as release_file: + return self._parse_os_release_content(release_file) + return {} + + @staticmethod + def _parse_os_release_content(lines): + """ + 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 + + # The shlex module defines its `wordchars` variable using literals, + # making it dependent on the encoding of the Python source file. + # In Python 2.6 and 2.7, the shlex source file is encoded in + # 'iso-8859-1', and the `wordchars` variable is defined as a byte + # string. This causes a UnicodeDecodeError to be raised when the + # parsed content is a unicode object. The following fix resolves that + # (... but it should be fixed in shlex...): + if sys.version_info[0] == 2 and isinstance(lexer.wordchars, bytes): + lexer.wordchars = lexer.wordchars.decode('iso-8859-1') + + 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) + if '=' in token: + k, v = token.split('=', 1) + props[k.lower()] = v + else: + # Ignore any tokens that are not variable assignments + pass + + 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'] + elif 'version' in props: + # If there is no version_codename, parse it from the version + codename = re.search(r'(\(\D+\))|,(\s+)?\D+', props['version']) + if codename: + codename = codename.group() + codename = codename.strip('()') + codename = codename.strip(',') + codename = codename.strip() + # codename appears within paranthese. + props['codename'] = codename + + return props + + @cached_property + def _lsb_release_info(self): + """ + Get the information items from the lsb_release command output. + + Returns: + A dictionary containing all information items. + """ + if not self.include_lsb: + return {} + with open(os.devnull, 'w') as devnull: + try: + cmd = ('lsb_release', '-a') + stdout = subprocess.check_output(cmd, stderr=devnull) + except OSError: # Command not found + return {} + content = self._to_str(stdout).splitlines() + return self._parse_lsb_release_content(content) + + @staticmethod + def _parse_lsb_release_content(lines): + """ + 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): + with open(os.devnull, 'w') as devnull: + try: + cmd = ('uname', '-rs') + stdout = subprocess.check_output(cmd, stderr=devnull) + except OSError: + return {} + content = self._to_str(stdout).splitlines() + return self._parse_uname_content(content) + + @staticmethod + def _parse_uname_content(lines): + 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(text): + encoding = sys.getfilesystemencoding() + encoding = 'utf-8' if encoding == 'ascii' else encoding + + if sys.version_info[0] >= 3: + if isinstance(text, bytes): + return text.decode(encoding) + else: + if isinstance(text, unicode): # noqa + return text.encode(encoding) + + return text + + @cached_property + def _distro_release_info(self): + """ + 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) + if 'name' in distro_info \ + and 'cloudlinux' in distro_info['name'].lower(): + distro_info['id'] = 'cloudlinux' + elif match: + distro_info['id'] = match.group(1) + return distro_info + else: + try: + basenames = os.listdir(_UNIXCONFDIR) + # 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 = ['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', + 'sl-release', + 'slackware-version'] + for basename in basenames: + if basename in _DISTRO_RELEASE_IGNORE_BASENAMES: + continue + match = _DISTRO_RELEASE_BASENAME_PATTERN.match(basename) + if match: + filepath = os.path.join(_UNIXCONFDIR, basename) + distro_info = self._parse_distro_release_file(filepath) + if 'name' in distro_info: + # The name is always present if the pattern matches + self.distro_release_file = filepath + distro_info['id'] = match.group(1) + if 'cloudlinux' in distro_info['name'].lower(): + distro_info['id'] = 'cloudlinux' + return distro_info + return {} + + def _parse_distro_release_file(self, filepath): + """ + 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) 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, IOError): + # Ignore not being able to read a specific, seemingly version + # related file. + # See https://github.com/nir0s/distro/issues/162 + return {} + + @staticmethod + def _parse_distro_release_content(line): + """ + 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(): + 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") + args = parser.parse_args() + + if args.json: + logger.info(json.dumps(info(), indent=4, sort_keys=True)) + else: + logger.info('Name: %s', name(pretty=True)) + distribution_version = version(pretty=True) + logger.info('Version: %s', distribution_version) + distribution_codename = codename() + logger.info('Codename: %s', distribution_codename) + + +if __name__ == '__main__': + main() diff --git a/Scripts/Lib/site-packages/pip/_vendor/html5lib/__init__.py b/Scripts/Lib/site-packages/pip/_vendor/html5lib/__init__.py new file mode 100644 index 0000000..d1d82f1 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/html5lib/__init__.py @@ -0,0 +1,35 @@ +""" +HTML parsing library based on the `WHATWG HTML specification +`_. The parser is designed to be compatible with +existing HTML found in the wild and implements well-defined error recovery that +is largely compatible with modern desktop web browsers. + +Example usage:: + + from pip._vendor import html5lib + with open("my_document.html", "rb") as f: + tree = html5lib.parse(f) + +For convenience, this module re-exports the following names: + +* :func:`~.html5parser.parse` +* :func:`~.html5parser.parseFragment` +* :class:`~.html5parser.HTMLParser` +* :func:`~.treebuilders.getTreeBuilder` +* :func:`~.treewalkers.getTreeWalker` +* :func:`~.serializer.serialize` +""" + +from __future__ import absolute_import, division, unicode_literals + +from .html5parser import HTMLParser, parse, parseFragment +from .treebuilders import getTreeBuilder +from .treewalkers import getTreeWalker +from .serializer import serialize + +__all__ = ["HTMLParser", "parse", "parseFragment", "getTreeBuilder", + "getTreeWalker", "serialize"] + +# this has to be at the top level, see how setup.py parses this +#: Distribution version number. +__version__ = "1.1" diff --git a/Scripts/Lib/site-packages/pip/_vendor/html5lib/__pycache__/__init__.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_vendor/html5lib/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b395162ff5cf5d5c2db20095cfc5c4cb4fd9dae1 GIT binary patch literal 1323 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 E2D5_YssI20 literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_vendor/html5lib/__pycache__/_inputstream.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_vendor/html5lib/__pycache__/_inputstream.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e175a6ad738cf83f140bbf85cf8d2bea46ae92e4 GIT binary patch literal 21705 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 Wy)ZFrd}d-9*Ygt>kp6Jt$o~d{#6F?` literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_vendor/html5lib/__pycache__/_tokenizer.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_vendor/html5lib/__pycache__/_tokenizer.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..67bd1e2e432d1e495740f2110c6f81b398bddaa2 GIT binary patch literal 37382 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 literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_vendor/html5lib/__pycache__/constants.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_vendor/html5lib/__pycache__/constants.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2c605cace6395a331a35ae2824609632abc6e324 GIT binary patch literal 161282 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 literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_vendor/html5lib/__pycache__/serializer.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_vendor/html5lib/__pycache__/serializer.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d0b533ae0ffa0ea48aad2b4435621918ed761f78 GIT binary patch literal 10765 zcmbVSTWlo9b?xqX4~N6yWBJ&Znp|8)NZHbu!mv42Bzrm2 zGh5w5E(gPi5+%zv3|oMWL{VNtz#kFvk+1v(F%Z~5K7#zGzbqPop`ZLnAHfEQa&FZ; zIn+7`iLS1`RdwrD)va5n?ww+9Z(PIQKmN;qY)yY#(|$)E?SDahynx5u(KU@}OwVft zJ);+lj8O<=0y@!*e6SG8gk(OD4`;%l1@ng)^Bm$j58Ly!S|FJtJCXgokUREWt-c zG}b$!9qE~|HcC=b&e~e$96!(c4s{mVHZm9ZMc!9?>_|J*Z)tBoyJ}?2%s9Uw?(_3} zT-FJ?d;Ef1seh-ogQ9Yu^KsU{9T1;1sfPG5AFNIAar8Rw1oY-4DK~46 zA8Dv>@^gHAUc1lP02_Q?%S`ep8{(6P2F7xp4YQH=^~~iLH8#q|-q+X|pE?X=rty82 zox}Gzp2qhREU>JlFMLibk`DNN*1B8Fmpz`f3#Fp){3x?`Y}YP2eyZ%)xgz7)yzOye z<=wRI$2|VP%X)hyzLYlnq~M#ji^41yqA2{)2ZelY%MyZb2wuutIj#!a&#}_fTVkhZ zv&B3waL04~{`F!p&n@S==LvfqGPr)9TSBXw;9=#!*F~G8$T7>anysQ}YkM{-_n^DQ z`Uj-x@dW3)R(>1p{BXAH*;3>%cXL*W`&uPDF?DTzVeO&*{fGM764}N%j@T22{A0Hq5?eW2<#|M9Z{O;fU?%?3eTv37q?L(u4dM&|%RD*KWn9Rj$ zeJpgOyG2=w9NNDw^Ini^fYEzV$u zR>UyUhx+rC@a0PnCf(=70KU_MejM8BxSr+YxIgfQQrSg^6n9Z7<(WEdMOcoTx4b$z z#+`BjYVC19TwK4$bDkdp7wmulcbG_lx!-5I%VjXxM6FjXTlj&3?f9c^J8h+S6J3>x zwu6>M!ThjQDuIJPkmXVeyr8dp*@9K_1DhN>45jX_?QQviE&jj{-a}gvp~1w__k)}t z5K!(ojX<(>{h+&Tmwes!^_(BF9fnr1X0dPNP{u#i#M3lEmCW4g5;kcrUo5lLZ#rG>kNP(b&KoJv#j|MU_jhsjL!9<|E`Z|3Ulcpd7yJ^JGGy3Cg zwWLBp09CW`)m^XIgUA-Km~*D(?3u{Hs$*nDvt+sQjX_F@rPQUpxm+Fvb8C&&ooVrz zd1>X&E6wQrep~SVyg2Avg1oi-CeyUZ=-gT(rh7DBU@k2Yl_|U)I9aHFuz`8 zdkgcWg_rE{`PtIK{H!8KeP5VLH<>iqPPenWVipUwM^lc8w(?oe+H|ko#=*%|%SJC- z++yIZUXSilP0W(q+UcO^gHHRsnD!OS?DynR=O;Ut#t#eZQ7+P9G8Ir@KS;|!RtF{n zGmkU2q2@|G{IEJSechG)sN@;yD%Pwjw-oKK_-Im3>Eb%FIXoSIv=?8%t>$@Jo##JdkqiiI-$EX*RnIRh-pVt5a- zIP1ZChz+q`mIT^4gIpg=Aves4h$iuoOYss;iYvGS!YYn^*` z4*Eu;s*5maJ9MOF3*57^G&C0nPl~o)DZ9G`yDo+CqpsxuOI3IWFd-94;6$$Z4l)2H z`k_wnG5_QVkr!03QPM-@mj8{#mF4(jFGV5{9iC5aVT%P@XYnr>3jD(PnYGMm%SJ zZ;Qha39~3nr%1LOhMB5K^F)(l)+cAC#f>=L;u}^u59@{&Yilc_%-7c1sz?*xrAn>t z&`Oq?%_T9Fwkf;Giq4eRw7k@x;P=b6;Ib8z#w9w^9 zRW`A*OowLA~4)+#cOSDc$5(_=EHc926yEko1 z30gX*YC)0aF&1?B2vOa(9=hj39wyzI*kLAG0zeDvJvZl{fDI0AhZAloLZ><=OVwtW zXm1N*Iz>^i@+Pm}*BWGHjap>4jJ2`c4oyy-pP!R#`?3dp3i zcv+>Q`@9JyfdX0^8!#&1Aa|VY0`z!)P_a+9Dkp99i3unacL-7yEF1x_`T0GwfE%>b zTeouwT4sL6oLc&Rc*$!l|JoXuKnK&0 zvY20^sE;@`=gj3T_#ZenY5hoTZ4+sR$)0qGb+7CyJKo$*%E(@kMuyj+WgT16UQ&Pa z3f42*wO~ZpwTVVl_ot-MK%+;Y73l%h7QfK$tUMc5?YLqt!8Sdvp0!07w&8 zRu|h#jTFevEN+l4cg%#mx0+NNh2&ysZO&<2?7Y3!_wE)LL(#GQQQhuT85rkvn=$UB zXUxT!%^9*-TVi&h!{X2^c8>9D7WcSZ^=a;ud)bDaC+FBqqbD(Q zTTdzgZ}Zk4C90M@vkWvA2TCa|F8U@iCqz#%f++k9^qykXBb z;TCc{b86C^5{qbfdnujpV_2gKY!gs)q<)e118{Ztu@(42m7^&LZn$m1s0wi#4gCnJ z(}2XJ{KB=3zWlIsmcm6zratGTgYfV0{DvRi-bL^5fwsiTN_Po6v{gMG3=$a$csDkxs-s(`b_;e`Mp2@&x&B;`!n-5`z1lerULn?`ZFlN6rxN z&B0@W9Mj2PQYFuvu_XQowLcAtQM^Qml50pXKy(eG zS}n=?$fL`W`%%YWiTx<}z~igxR-+pM)eorslDk&xBmeSuHCzGjLec?T8~+{e!EM9+ z2Y9ys4bN}TdT2~T-)HJQ{YLgQEPc&dEv3qvTtM;q73~n-zb5aI9ql7s{2nEk1$eK~ zHyf?S$Olbzsxgmx{}Ssl=zht@;0KSO_y3lCot1qlIfjljTxWm1YQX;<-|yK^RD1S& ztBL)jjUMVP%@6S)b35->tmLzCgoiIge8!paUh2kPsneY zWmShtkVDHTOG-I@DS0Q^W#a9GVE=^?Z~5k$xZhrBx=sW8Nhx z&2J&!ARQ8hce~ELuM%ThG*WwvWxKdJXN99KInrthS_J-$XR0 zzuNCz#w;7+rsVOI>K7WT-J1gSHIz@w^4Gk})qd!9$_cWksTQOlJxn!6iV>)ONsjw> znFdS#3}P%~g%RKjD{pbMBEE#Ve!=U!%& zg!$?lH(q)9ra3X`PQami`M;o zz36Q&bQV6kP%+FSa-)J5B z^Rt96Zr-}SavfZv%LI5yf~0>1=Q~h_xB)>b-|q4nnFYGX0O}MSJR5W7lxj6~#hjvccmp<0DUZ*TjDl4{ z@+$gJpRWYzs*3MRPk)OdWAbiVG0fSA`m7&bbQldHG(S7(F8Gm~MPO{ls~A_WRtD=I zt*HkwHa~v#>ZE)1>H@W;sFfHYp-0sR=3IKw1TIFK4!nj8-6Im0PRny&WN4M|(sZ9| zAkuLS|ct5j*AQK@xb6|Yf2f1{uYgT;$PA8ODWKovI~=q#@I z%uhBQ+7h#gO*D{5MD$ZGLCGt`Bm@{&aK%eRAYZ7$a3QaZaD})TxnbzE%l0C3F-N7Zxv5@*PTgDY-*Q5=nYM z0joGU_Lc8m0k0@L$1+$h=hzR);DoTz#E&qwlT{zvMAEZ4?VjP5xAR$jg^Wu6qNHM)|K&E;tjT=$W@ofy?P5%S< zM}6SGVNjDY8aNEffIe(c?G&&fNcfgD4~_)dEiZ<=j<%|`f^te}$nDdV|3oVZn1R|=8-?KEHps~k5;eq~xvfb@*ssY` z#YS7zI>UW*L+y&;H3D}s%y)$%j4RDhSMzS%)v7I0*cXEeRWDT-F^3Nj~8}xm{GC4Y1My6@G-4ojMV1q9?h4y#}GYU0D&gp zmrwO2#75=ma|spYUC>W1H=>-<(x%mAR2s6AvcHc;ACc^Yff5E;n&4NJ3!Q7#QZaRM ze1f`ZUHmz{Mt$7I$%`9u~cfR$Gz>eL{Qf->=RR;lx)W#{E7KsrP&#;}HHvD%0LG}-)5crT zU}2+?=v&c9Jfgi5k0-}uTk5Ri5A&tHfXAg@%5=thVZZ|7FF*!xpr7Cn$ZGBaWfN$@ z{t`9BUs3YcNc>1Pi!&;lJym?-_GbMM_^alow=UhQrD}RGSKdh0zCh}Z$2+PC2hl(XQkS8%6 z!g8m`fV}#xPzpargG25CJ@Th#3Q@>?GiQA5m`gSw#fQZ5N0dBHi3AtX ztnFsYIrkayG0{Gt>lPj3Hx4o~ucm)p6a>!(RpC= item[0] + rv = [] + i = 0 + while i < len(charList): + j = 1 + rv.append(charList[i]) + while i + j < len(charList) and charList[i + j][0] <= rv[-1][1] + 1: + rv[-1][1] = charList[i + j][1] + j += 1 + i += j + return rv + + +# We don't really support characters above the BMP :( +max_unicode = int("FFFF", 16) + + +def missingRanges(charList): + rv = [] + if charList[0] != 0: + rv.append([0, charList[0][0] - 1]) + for i, item in enumerate(charList[:-1]): + rv.append([item[1] + 1, charList[i + 1][0] - 1]) + if charList[-1][1] != max_unicode: + rv.append([charList[-1][1] + 1, max_unicode]) + return rv + + +def listToRegexpStr(charList): + rv = [] + for item in charList: + if item[0] == item[1]: + rv.append(escapeRegexp(chr(item[0]))) + else: + rv.append(escapeRegexp(chr(item[0])) + "-" + + escapeRegexp(chr(item[1]))) + return "[%s]" % "".join(rv) + + +def hexToInt(hex_str): + return int(hex_str, 16) + + +def escapeRegexp(string): + specialCharacters = (".", "^", "$", "*", "+", "?", "{", "}", + "[", "]", "|", "(", ")", "-") + for char in specialCharacters: + string = string.replace(char, "\\" + char) + + return string + +# output from the above +nonXmlNameBMPRegexp = re.compile('[\x00-,/:-@\\[-\\^`\\{-\xb6\xb8-\xbf\xd7\xf7\u0132-\u0133\u013f-\u0140\u0149\u017f\u01c4-\u01cc\u01f1-\u01f3\u01f6-\u01f9\u0218-\u024f\u02a9-\u02ba\u02c2-\u02cf\u02d2-\u02ff\u0346-\u035f\u0362-\u0385\u038b\u038d\u03a2\u03cf\u03d7-\u03d9\u03db\u03dd\u03df\u03e1\u03f4-\u0400\u040d\u0450\u045d\u0482\u0487-\u048f\u04c5-\u04c6\u04c9-\u04ca\u04cd-\u04cf\u04ec-\u04ed\u04f6-\u04f7\u04fa-\u0530\u0557-\u0558\u055a-\u0560\u0587-\u0590\u05a2\u05ba\u05be\u05c0\u05c3\u05c5-\u05cf\u05eb-\u05ef\u05f3-\u0620\u063b-\u063f\u0653-\u065f\u066a-\u066f\u06b8-\u06b9\u06bf\u06cf\u06d4\u06e9\u06ee-\u06ef\u06fa-\u0900\u0904\u093a-\u093b\u094e-\u0950\u0955-\u0957\u0964-\u0965\u0970-\u0980\u0984\u098d-\u098e\u0991-\u0992\u09a9\u09b1\u09b3-\u09b5\u09ba-\u09bb\u09bd\u09c5-\u09c6\u09c9-\u09ca\u09ce-\u09d6\u09d8-\u09db\u09de\u09e4-\u09e5\u09f2-\u0a01\u0a03-\u0a04\u0a0b-\u0a0e\u0a11-\u0a12\u0a29\u0a31\u0a34\u0a37\u0a3a-\u0a3b\u0a3d\u0a43-\u0a46\u0a49-\u0a4a\u0a4e-\u0a58\u0a5d\u0a5f-\u0a65\u0a75-\u0a80\u0a84\u0a8c\u0a8e\u0a92\u0aa9\u0ab1\u0ab4\u0aba-\u0abb\u0ac6\u0aca\u0ace-\u0adf\u0ae1-\u0ae5\u0af0-\u0b00\u0b04\u0b0d-\u0b0e\u0b11-\u0b12\u0b29\u0b31\u0b34-\u0b35\u0b3a-\u0b3b\u0b44-\u0b46\u0b49-\u0b4a\u0b4e-\u0b55\u0b58-\u0b5b\u0b5e\u0b62-\u0b65\u0b70-\u0b81\u0b84\u0b8b-\u0b8d\u0b91\u0b96-\u0b98\u0b9b\u0b9d\u0ba0-\u0ba2\u0ba5-\u0ba7\u0bab-\u0bad\u0bb6\u0bba-\u0bbd\u0bc3-\u0bc5\u0bc9\u0bce-\u0bd6\u0bd8-\u0be6\u0bf0-\u0c00\u0c04\u0c0d\u0c11\u0c29\u0c34\u0c3a-\u0c3d\u0c45\u0c49\u0c4e-\u0c54\u0c57-\u0c5f\u0c62-\u0c65\u0c70-\u0c81\u0c84\u0c8d\u0c91\u0ca9\u0cb4\u0cba-\u0cbd\u0cc5\u0cc9\u0cce-\u0cd4\u0cd7-\u0cdd\u0cdf\u0ce2-\u0ce5\u0cf0-\u0d01\u0d04\u0d0d\u0d11\u0d29\u0d3a-\u0d3d\u0d44-\u0d45\u0d49\u0d4e-\u0d56\u0d58-\u0d5f\u0d62-\u0d65\u0d70-\u0e00\u0e2f\u0e3b-\u0e3f\u0e4f\u0e5a-\u0e80\u0e83\u0e85-\u0e86\u0e89\u0e8b-\u0e8c\u0e8e-\u0e93\u0e98\u0ea0\u0ea4\u0ea6\u0ea8-\u0ea9\u0eac\u0eaf\u0eba\u0ebe-\u0ebf\u0ec5\u0ec7\u0ece-\u0ecf\u0eda-\u0f17\u0f1a-\u0f1f\u0f2a-\u0f34\u0f36\u0f38\u0f3a-\u0f3d\u0f48\u0f6a-\u0f70\u0f85\u0f8c-\u0f8f\u0f96\u0f98\u0fae-\u0fb0\u0fb8\u0fba-\u109f\u10c6-\u10cf\u10f7-\u10ff\u1101\u1104\u1108\u110a\u110d\u1113-\u113b\u113d\u113f\u1141-\u114b\u114d\u114f\u1151-\u1153\u1156-\u1158\u115a-\u115e\u1162\u1164\u1166\u1168\u116a-\u116c\u116f-\u1171\u1174\u1176-\u119d\u119f-\u11a7\u11a9-\u11aa\u11ac-\u11ad\u11b0-\u11b6\u11b9\u11bb\u11c3-\u11ea\u11ec-\u11ef\u11f1-\u11f8\u11fa-\u1dff\u1e9c-\u1e9f\u1efa-\u1eff\u1f16-\u1f17\u1f1e-\u1f1f\u1f46-\u1f47\u1f4e-\u1f4f\u1f58\u1f5a\u1f5c\u1f5e\u1f7e-\u1f7f\u1fb5\u1fbd\u1fbf-\u1fc1\u1fc5\u1fcd-\u1fcf\u1fd4-\u1fd5\u1fdc-\u1fdf\u1fed-\u1ff1\u1ff5\u1ffd-\u20cf\u20dd-\u20e0\u20e2-\u2125\u2127-\u2129\u212c-\u212d\u212f-\u217f\u2183-\u3004\u3006\u3008-\u3020\u3030\u3036-\u3040\u3095-\u3098\u309b-\u309c\u309f-\u30a0\u30fb\u30ff-\u3104\u312d-\u4dff\u9fa6-\uabff\ud7a4-\uffff]') # noqa + +nonXmlNameFirstBMPRegexp = re.compile('[\x00-@\\[-\\^`\\{-\xbf\xd7\xf7\u0132-\u0133\u013f-\u0140\u0149\u017f\u01c4-\u01cc\u01f1-\u01f3\u01f6-\u01f9\u0218-\u024f\u02a9-\u02ba\u02c2-\u0385\u0387\u038b\u038d\u03a2\u03cf\u03d7-\u03d9\u03db\u03dd\u03df\u03e1\u03f4-\u0400\u040d\u0450\u045d\u0482-\u048f\u04c5-\u04c6\u04c9-\u04ca\u04cd-\u04cf\u04ec-\u04ed\u04f6-\u04f7\u04fa-\u0530\u0557-\u0558\u055a-\u0560\u0587-\u05cf\u05eb-\u05ef\u05f3-\u0620\u063b-\u0640\u064b-\u0670\u06b8-\u06b9\u06bf\u06cf\u06d4\u06d6-\u06e4\u06e7-\u0904\u093a-\u093c\u093e-\u0957\u0962-\u0984\u098d-\u098e\u0991-\u0992\u09a9\u09b1\u09b3-\u09b5\u09ba-\u09db\u09de\u09e2-\u09ef\u09f2-\u0a04\u0a0b-\u0a0e\u0a11-\u0a12\u0a29\u0a31\u0a34\u0a37\u0a3a-\u0a58\u0a5d\u0a5f-\u0a71\u0a75-\u0a84\u0a8c\u0a8e\u0a92\u0aa9\u0ab1\u0ab4\u0aba-\u0abc\u0abe-\u0adf\u0ae1-\u0b04\u0b0d-\u0b0e\u0b11-\u0b12\u0b29\u0b31\u0b34-\u0b35\u0b3a-\u0b3c\u0b3e-\u0b5b\u0b5e\u0b62-\u0b84\u0b8b-\u0b8d\u0b91\u0b96-\u0b98\u0b9b\u0b9d\u0ba0-\u0ba2\u0ba5-\u0ba7\u0bab-\u0bad\u0bb6\u0bba-\u0c04\u0c0d\u0c11\u0c29\u0c34\u0c3a-\u0c5f\u0c62-\u0c84\u0c8d\u0c91\u0ca9\u0cb4\u0cba-\u0cdd\u0cdf\u0ce2-\u0d04\u0d0d\u0d11\u0d29\u0d3a-\u0d5f\u0d62-\u0e00\u0e2f\u0e31\u0e34-\u0e3f\u0e46-\u0e80\u0e83\u0e85-\u0e86\u0e89\u0e8b-\u0e8c\u0e8e-\u0e93\u0e98\u0ea0\u0ea4\u0ea6\u0ea8-\u0ea9\u0eac\u0eaf\u0eb1\u0eb4-\u0ebc\u0ebe-\u0ebf\u0ec5-\u0f3f\u0f48\u0f6a-\u109f\u10c6-\u10cf\u10f7-\u10ff\u1101\u1104\u1108\u110a\u110d\u1113-\u113b\u113d\u113f\u1141-\u114b\u114d\u114f\u1151-\u1153\u1156-\u1158\u115a-\u115e\u1162\u1164\u1166\u1168\u116a-\u116c\u116f-\u1171\u1174\u1176-\u119d\u119f-\u11a7\u11a9-\u11aa\u11ac-\u11ad\u11b0-\u11b6\u11b9\u11bb\u11c3-\u11ea\u11ec-\u11ef\u11f1-\u11f8\u11fa-\u1dff\u1e9c-\u1e9f\u1efa-\u1eff\u1f16-\u1f17\u1f1e-\u1f1f\u1f46-\u1f47\u1f4e-\u1f4f\u1f58\u1f5a\u1f5c\u1f5e\u1f7e-\u1f7f\u1fb5\u1fbd\u1fbf-\u1fc1\u1fc5\u1fcd-\u1fcf\u1fd4-\u1fd5\u1fdc-\u1fdf\u1fed-\u1ff1\u1ff5\u1ffd-\u2125\u2127-\u2129\u212c-\u212d\u212f-\u217f\u2183-\u3006\u3008-\u3020\u302a-\u3040\u3095-\u30a0\u30fb-\u3104\u312d-\u4dff\u9fa6-\uabff\ud7a4-\uffff]') # noqa + +# Simpler things +nonPubidCharRegexp = re.compile("[^\x20\x0D\x0Aa-zA-Z0-9\\-'()+,./:=?;!*#@$_%]") + + +class InfosetFilter(object): + replacementRegexp = re.compile(r"U[\dA-F]{5,5}") + + def __init__(self, + dropXmlnsLocalName=False, + dropXmlnsAttrNs=False, + preventDoubleDashComments=False, + preventDashAtCommentEnd=False, + replaceFormFeedCharacters=True, + preventSingleQuotePubid=False): + + self.dropXmlnsLocalName = dropXmlnsLocalName + self.dropXmlnsAttrNs = dropXmlnsAttrNs + + self.preventDoubleDashComments = preventDoubleDashComments + self.preventDashAtCommentEnd = preventDashAtCommentEnd + + self.replaceFormFeedCharacters = replaceFormFeedCharacters + + self.preventSingleQuotePubid = preventSingleQuotePubid + + self.replaceCache = {} + + def coerceAttribute(self, name, namespace=None): + if self.dropXmlnsLocalName and name.startswith("xmlns:"): + warnings.warn("Attributes cannot begin with xmlns", DataLossWarning) + return None + elif (self.dropXmlnsAttrNs and + namespace == "http://www.w3.org/2000/xmlns/"): + warnings.warn("Attributes cannot be in the xml namespace", DataLossWarning) + return None + else: + return self.toXmlName(name) + + def coerceElement(self, name): + return self.toXmlName(name) + + def coerceComment(self, data): + if self.preventDoubleDashComments: + while "--" in data: + warnings.warn("Comments cannot contain adjacent dashes", DataLossWarning) + data = data.replace("--", "- -") + if data.endswith("-"): + warnings.warn("Comments cannot end in a dash", DataLossWarning) + data += " " + return data + + def coerceCharacters(self, data): + if self.replaceFormFeedCharacters: + for _ in range(data.count("\x0C")): + warnings.warn("Text cannot contain U+000C", DataLossWarning) + data = data.replace("\x0C", " ") + # Other non-xml characters + return data + + def coercePubid(self, data): + dataOutput = data + for char in nonPubidCharRegexp.findall(data): + warnings.warn("Coercing non-XML pubid", DataLossWarning) + replacement = self.getReplacementCharacter(char) + dataOutput = dataOutput.replace(char, replacement) + if self.preventSingleQuotePubid and dataOutput.find("'") >= 0: + warnings.warn("Pubid cannot contain single quote", DataLossWarning) + dataOutput = dataOutput.replace("'", self.getReplacementCharacter("'")) + return dataOutput + + def toXmlName(self, name): + nameFirst = name[0] + nameRest = name[1:] + m = nonXmlNameFirstBMPRegexp.match(nameFirst) + if m: + warnings.warn("Coercing non-XML name: %s" % name, DataLossWarning) + nameFirstOutput = self.getReplacementCharacter(nameFirst) + else: + nameFirstOutput = nameFirst + + nameRestOutput = nameRest + replaceChars = set(nonXmlNameBMPRegexp.findall(nameRest)) + for char in replaceChars: + warnings.warn("Coercing non-XML name: %s" % name, DataLossWarning) + replacement = self.getReplacementCharacter(char) + nameRestOutput = nameRestOutput.replace(char, replacement) + return nameFirstOutput + nameRestOutput + + def getReplacementCharacter(self, char): + if char in self.replaceCache: + replacement = self.replaceCache[char] + else: + replacement = self.escapeChar(char) + return replacement + + def fromXmlName(self, name): + for item in set(self.replacementRegexp.findall(name)): + name = name.replace(item, self.unescapeChar(item)) + return name + + def escapeChar(self, char): + replacement = "U%05X" % ord(char) + self.replaceCache[char] = replacement + return replacement + + def unescapeChar(self, charcode): + return chr(int(charcode[1:], 16)) diff --git a/Scripts/Lib/site-packages/pip/_vendor/html5lib/_inputstream.py b/Scripts/Lib/site-packages/pip/_vendor/html5lib/_inputstream.py new file mode 100644 index 0000000..e0bb376 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/html5lib/_inputstream.py @@ -0,0 +1,918 @@ +from __future__ import absolute_import, division, unicode_literals + +from pip._vendor.six import text_type +from pip._vendor.six.moves import http_client, urllib + +import codecs +import re +from io import BytesIO, StringIO + +from pip._vendor import webencodings + +from .constants import EOF, spaceCharacters, asciiLetters, asciiUppercase +from .constants import _ReparseException +from . import _utils + +# Non-unicode versions of constants for use in the pre-parser +spaceCharactersBytes = frozenset([item.encode("ascii") for item in spaceCharacters]) +asciiLettersBytes = frozenset([item.encode("ascii") for item in asciiLetters]) +asciiUppercaseBytes = frozenset([item.encode("ascii") for item in asciiUppercase]) +spacesAngleBrackets = spaceCharactersBytes | frozenset([b">", b"<"]) + + +invalid_unicode_no_surrogate = "[\u0001-\u0008\u000B\u000E-\u001F\u007F-\u009F\uFDD0-\uFDEF\uFFFE\uFFFF\U0001FFFE\U0001FFFF\U0002FFFE\U0002FFFF\U0003FFFE\U0003FFFF\U0004FFFE\U0004FFFF\U0005FFFE\U0005FFFF\U0006FFFE\U0006FFFF\U0007FFFE\U0007FFFF\U0008FFFE\U0008FFFF\U0009FFFE\U0009FFFF\U000AFFFE\U000AFFFF\U000BFFFE\U000BFFFF\U000CFFFE\U000CFFFF\U000DFFFE\U000DFFFF\U000EFFFE\U000EFFFF\U000FFFFE\U000FFFFF\U0010FFFE\U0010FFFF]" # noqa + +if _utils.supports_lone_surrogates: + # Use one extra step of indirection and create surrogates with + # eval. Not using this indirection would introduce an illegal + # unicode literal on platforms not supporting such lone + # surrogates. + assert invalid_unicode_no_surrogate[-1] == "]" and invalid_unicode_no_surrogate.count("]") == 1 + invalid_unicode_re = re.compile(invalid_unicode_no_surrogate[:-1] + + eval('"\\uD800-\\uDFFF"') + # pylint:disable=eval-used + "]") +else: + invalid_unicode_re = re.compile(invalid_unicode_no_surrogate) + +non_bmp_invalid_codepoints = {0x1FFFE, 0x1FFFF, 0x2FFFE, 0x2FFFF, 0x3FFFE, + 0x3FFFF, 0x4FFFE, 0x4FFFF, 0x5FFFE, 0x5FFFF, + 0x6FFFE, 0x6FFFF, 0x7FFFE, 0x7FFFF, 0x8FFFE, + 0x8FFFF, 0x9FFFE, 0x9FFFF, 0xAFFFE, 0xAFFFF, + 0xBFFFE, 0xBFFFF, 0xCFFFE, 0xCFFFF, 0xDFFFE, + 0xDFFFF, 0xEFFFE, 0xEFFFF, 0xFFFFE, 0xFFFFF, + 0x10FFFE, 0x10FFFF} + +ascii_punctuation_re = re.compile("[\u0009-\u000D\u0020-\u002F\u003A-\u0040\u005C\u005B-\u0060\u007B-\u007E]") + +# Cache for charsUntil() +charsUntilRegEx = {} + + +class BufferedStream(object): + """Buffering for streams that do not have buffering of their own + + The buffer is implemented as a list of chunks on the assumption that + joining many strings will be slow since it is O(n**2) + """ + + def __init__(self, stream): + self.stream = stream + self.buffer = [] + self.position = [-1, 0] # chunk number, offset + + def tell(self): + pos = 0 + for chunk in self.buffer[:self.position[0]]: + pos += len(chunk) + pos += self.position[1] + return pos + + def seek(self, pos): + assert pos <= self._bufferedBytes() + offset = pos + i = 0 + while len(self.buffer[i]) < offset: + offset -= len(self.buffer[i]) + i += 1 + self.position = [i, offset] + + def read(self, bytes): + if not self.buffer: + return self._readStream(bytes) + elif (self.position[0] == len(self.buffer) and + self.position[1] == len(self.buffer[-1])): + return self._readStream(bytes) + else: + return self._readFromBuffer(bytes) + + def _bufferedBytes(self): + return sum([len(item) for item in self.buffer]) + + def _readStream(self, bytes): + data = self.stream.read(bytes) + self.buffer.append(data) + self.position[0] += 1 + self.position[1] = len(data) + return data + + def _readFromBuffer(self, bytes): + remainingBytes = bytes + rv = [] + bufferIndex = self.position[0] + bufferOffset = self.position[1] + while bufferIndex < len(self.buffer) and remainingBytes != 0: + assert remainingBytes > 0 + bufferedData = self.buffer[bufferIndex] + + if remainingBytes <= len(bufferedData) - bufferOffset: + bytesToRead = remainingBytes + self.position = [bufferIndex, bufferOffset + bytesToRead] + else: + bytesToRead = len(bufferedData) - bufferOffset + self.position = [bufferIndex, len(bufferedData)] + bufferIndex += 1 + rv.append(bufferedData[bufferOffset:bufferOffset + bytesToRead]) + remainingBytes -= bytesToRead + + bufferOffset = 0 + + if remainingBytes: + rv.append(self._readStream(remainingBytes)) + + return b"".join(rv) + + +def HTMLInputStream(source, **kwargs): + # Work around Python bug #20007: read(0) closes the connection. + # http://bugs.python.org/issue20007 + if (isinstance(source, http_client.HTTPResponse) or + # Also check for addinfourl wrapping HTTPResponse + (isinstance(source, urllib.response.addbase) and + isinstance(source.fp, http_client.HTTPResponse))): + isUnicode = False + elif hasattr(source, "read"): + isUnicode = isinstance(source.read(0), text_type) + else: + isUnicode = isinstance(source, text_type) + + if isUnicode: + encodings = [x for x in kwargs if x.endswith("_encoding")] + if encodings: + raise TypeError("Cannot set an encoding with a unicode input, set %r" % encodings) + + return HTMLUnicodeInputStream(source, **kwargs) + else: + return HTMLBinaryInputStream(source, **kwargs) + + +class HTMLUnicodeInputStream(object): + """Provides a unicode stream of characters to the HTMLTokenizer. + + This class takes care of character encoding and removing or replacing + incorrect byte-sequences and also provides column and line tracking. + + """ + + _defaultChunkSize = 10240 + + def __init__(self, source): + """Initialises the HTMLInputStream. + + HTMLInputStream(source, [encoding]) -> Normalized stream from source + for use by html5lib. + + source can be either a file-object, local filename or a string. + + The optional encoding parameter must be a string that indicates + the encoding. If specified, that encoding will be used, + regardless of any BOM or later declaration (such as in a meta + element) + + """ + + if not _utils.supports_lone_surrogates: + # Such platforms will have already checked for such + # surrogate errors, so no need to do this checking. + self.reportCharacterErrors = None + elif len("\U0010FFFF") == 1: + self.reportCharacterErrors = self.characterErrorsUCS4 + else: + self.reportCharacterErrors = self.characterErrorsUCS2 + + # List of where new lines occur + self.newLines = [0] + + self.charEncoding = (lookupEncoding("utf-8"), "certain") + self.dataStream = self.openStream(source) + + self.reset() + + def reset(self): + self.chunk = "" + self.chunkSize = 0 + self.chunkOffset = 0 + self.errors = [] + + # number of (complete) lines in previous chunks + self.prevNumLines = 0 + # number of columns in the last line of the previous chunk + self.prevNumCols = 0 + + # Deal with CR LF and surrogates split over chunk boundaries + self._bufferedCharacter = None + + def openStream(self, source): + """Produces a file object from source. + + source can be either a file object, local filename or a string. + + """ + # Already a file object + if hasattr(source, 'read'): + stream = source + else: + stream = StringIO(source) + + return stream + + def _position(self, offset): + chunk = self.chunk + nLines = chunk.count('\n', 0, offset) + positionLine = self.prevNumLines + nLines + lastLinePos = chunk.rfind('\n', 0, offset) + if lastLinePos == -1: + positionColumn = self.prevNumCols + offset + else: + positionColumn = offset - (lastLinePos + 1) + return (positionLine, positionColumn) + + def position(self): + """Returns (line, col) of the current position in the stream.""" + line, col = self._position(self.chunkOffset) + return (line + 1, col) + + def char(self): + """ Read one character from the stream or queue if available. Return + EOF when EOF is reached. + """ + # Read a new chunk from the input stream if necessary + if self.chunkOffset >= self.chunkSize: + if not self.readChunk(): + return EOF + + chunkOffset = self.chunkOffset + char = self.chunk[chunkOffset] + self.chunkOffset = chunkOffset + 1 + + return char + + def readChunk(self, chunkSize=None): + if chunkSize is None: + chunkSize = self._defaultChunkSize + + self.prevNumLines, self.prevNumCols = self._position(self.chunkSize) + + self.chunk = "" + self.chunkSize = 0 + self.chunkOffset = 0 + + data = self.dataStream.read(chunkSize) + + # Deal with CR LF and surrogates broken across chunks + if self._bufferedCharacter: + data = self._bufferedCharacter + data + self._bufferedCharacter = None + elif not data: + # We have no more data, bye-bye stream + return False + + if len(data) > 1: + lastv = ord(data[-1]) + if lastv == 0x0D or 0xD800 <= lastv <= 0xDBFF: + self._bufferedCharacter = data[-1] + data = data[:-1] + + if self.reportCharacterErrors: + self.reportCharacterErrors(data) + + # Replace invalid characters + data = data.replace("\r\n", "\n") + data = data.replace("\r", "\n") + + self.chunk = data + self.chunkSize = len(data) + + return True + + def characterErrorsUCS4(self, data): + for _ in range(len(invalid_unicode_re.findall(data))): + self.errors.append("invalid-codepoint") + + def characterErrorsUCS2(self, data): + # Someone picked the wrong compile option + # You lose + skip = False + for match in invalid_unicode_re.finditer(data): + if skip: + continue + codepoint = ord(match.group()) + pos = match.start() + # Pretty sure there should be endianness issues here + if _utils.isSurrogatePair(data[pos:pos + 2]): + # We have a surrogate pair! + char_val = _utils.surrogatePairToCodepoint(data[pos:pos + 2]) + if char_val in non_bmp_invalid_codepoints: + self.errors.append("invalid-codepoint") + skip = True + elif (codepoint >= 0xD800 and codepoint <= 0xDFFF and + pos == len(data) - 1): + self.errors.append("invalid-codepoint") + else: + skip = False + self.errors.append("invalid-codepoint") + + def charsUntil(self, characters, opposite=False): + """ Returns a string of characters from the stream up to but not + including any character in 'characters' or EOF. 'characters' must be + a container that supports the 'in' method and iteration over its + characters. + """ + + # Use a cache of regexps to find the required characters + try: + chars = charsUntilRegEx[(characters, opposite)] + except KeyError: + if __debug__: + for c in characters: + assert(ord(c) < 128) + regex = "".join(["\\x%02x" % ord(c) for c in characters]) + if not opposite: + regex = "^%s" % regex + chars = charsUntilRegEx[(characters, opposite)] = re.compile("[%s]+" % regex) + + rv = [] + + while True: + # Find the longest matching prefix + m = chars.match(self.chunk, self.chunkOffset) + if m is None: + # If nothing matched, and it wasn't because we ran out of chunk, + # then stop + if self.chunkOffset != self.chunkSize: + break + else: + end = m.end() + # If not the whole chunk matched, return everything + # up to the part that didn't match + if end != self.chunkSize: + rv.append(self.chunk[self.chunkOffset:end]) + self.chunkOffset = end + break + # If the whole remainder of the chunk matched, + # use it all and read the next chunk + rv.append(self.chunk[self.chunkOffset:]) + if not self.readChunk(): + # Reached EOF + break + + r = "".join(rv) + return r + + def unget(self, char): + # Only one character is allowed to be ungotten at once - it must + # be consumed again before any further call to unget + if char is not EOF: + if self.chunkOffset == 0: + # unget is called quite rarely, so it's a good idea to do + # more work here if it saves a bit of work in the frequently + # called char and charsUntil. + # So, just prepend the ungotten character onto the current + # chunk: + self.chunk = char + self.chunk + self.chunkSize += 1 + else: + self.chunkOffset -= 1 + assert self.chunk[self.chunkOffset] == char + + +class HTMLBinaryInputStream(HTMLUnicodeInputStream): + """Provides a unicode stream of characters to the HTMLTokenizer. + + This class takes care of character encoding and removing or replacing + incorrect byte-sequences and also provides column and line tracking. + + """ + + def __init__(self, source, override_encoding=None, transport_encoding=None, + same_origin_parent_encoding=None, likely_encoding=None, + default_encoding="windows-1252", useChardet=True): + """Initialises the HTMLInputStream. + + HTMLInputStream(source, [encoding]) -> Normalized stream from source + for use by html5lib. + + source can be either a file-object, local filename or a string. + + The optional encoding parameter must be a string that indicates + the encoding. If specified, that encoding will be used, + regardless of any BOM or later declaration (such as in a meta + element) + + """ + # Raw Stream - for unicode objects this will encode to utf-8 and set + # self.charEncoding as appropriate + self.rawStream = self.openStream(source) + + HTMLUnicodeInputStream.__init__(self, self.rawStream) + + # Encoding Information + # Number of bytes to use when looking for a meta element with + # encoding information + self.numBytesMeta = 1024 + # Number of bytes to use when using detecting encoding using chardet + self.numBytesChardet = 100 + # Things from args + self.override_encoding = override_encoding + self.transport_encoding = transport_encoding + self.same_origin_parent_encoding = same_origin_parent_encoding + self.likely_encoding = likely_encoding + self.default_encoding = default_encoding + + # Determine encoding + self.charEncoding = self.determineEncoding(useChardet) + assert self.charEncoding[0] is not None + + # Call superclass + self.reset() + + def reset(self): + self.dataStream = self.charEncoding[0].codec_info.streamreader(self.rawStream, 'replace') + HTMLUnicodeInputStream.reset(self) + + def openStream(self, source): + """Produces a file object from source. + + source can be either a file object, local filename or a string. + + """ + # Already a file object + if hasattr(source, 'read'): + stream = source + else: + stream = BytesIO(source) + + try: + stream.seek(stream.tell()) + except Exception: + stream = BufferedStream(stream) + + return stream + + def determineEncoding(self, chardet=True): + # BOMs take precedence over everything + # This will also read past the BOM if present + charEncoding = self.detectBOM(), "certain" + if charEncoding[0] is not None: + return charEncoding + + # If we've been overridden, we've been overridden + charEncoding = lookupEncoding(self.override_encoding), "certain" + if charEncoding[0] is not None: + return charEncoding + + # Now check the transport layer + charEncoding = lookupEncoding(self.transport_encoding), "certain" + if charEncoding[0] is not None: + return charEncoding + + # Look for meta elements with encoding information + charEncoding = self.detectEncodingMeta(), "tentative" + if charEncoding[0] is not None: + return charEncoding + + # Parent document encoding + charEncoding = lookupEncoding(self.same_origin_parent_encoding), "tentative" + if charEncoding[0] is not None and not charEncoding[0].name.startswith("utf-16"): + return charEncoding + + # "likely" encoding + charEncoding = lookupEncoding(self.likely_encoding), "tentative" + if charEncoding[0] is not None: + return charEncoding + + # Guess with chardet, if available + if chardet: + try: + from pip._vendor.chardet.universaldetector import UniversalDetector + except ImportError: + pass + else: + buffers = [] + detector = UniversalDetector() + while not detector.done: + buffer = self.rawStream.read(self.numBytesChardet) + assert isinstance(buffer, bytes) + if not buffer: + break + buffers.append(buffer) + detector.feed(buffer) + detector.close() + encoding = lookupEncoding(detector.result['encoding']) + self.rawStream.seek(0) + if encoding is not None: + return encoding, "tentative" + + # Try the default encoding + charEncoding = lookupEncoding(self.default_encoding), "tentative" + if charEncoding[0] is not None: + return charEncoding + + # Fallback to html5lib's default if even that hasn't worked + return lookupEncoding("windows-1252"), "tentative" + + def changeEncoding(self, newEncoding): + assert self.charEncoding[1] != "certain" + newEncoding = lookupEncoding(newEncoding) + if newEncoding is None: + return + if newEncoding.name in ("utf-16be", "utf-16le"): + newEncoding = lookupEncoding("utf-8") + assert newEncoding is not None + elif newEncoding == self.charEncoding[0]: + self.charEncoding = (self.charEncoding[0], "certain") + else: + self.rawStream.seek(0) + self.charEncoding = (newEncoding, "certain") + self.reset() + raise _ReparseException("Encoding changed from %s to %s" % (self.charEncoding[0], newEncoding)) + + def detectBOM(self): + """Attempts to detect at BOM at the start of the stream. If + an encoding can be determined from the BOM return the name of the + encoding otherwise return None""" + bomDict = { + codecs.BOM_UTF8: 'utf-8', + codecs.BOM_UTF16_LE: 'utf-16le', codecs.BOM_UTF16_BE: 'utf-16be', + codecs.BOM_UTF32_LE: 'utf-32le', codecs.BOM_UTF32_BE: 'utf-32be' + } + + # Go to beginning of file and read in 4 bytes + string = self.rawStream.read(4) + assert isinstance(string, bytes) + + # Try detecting the BOM using bytes from the string + encoding = bomDict.get(string[:3]) # UTF-8 + seek = 3 + if not encoding: + # Need to detect UTF-32 before UTF-16 + encoding = bomDict.get(string) # UTF-32 + seek = 4 + if not encoding: + encoding = bomDict.get(string[:2]) # UTF-16 + seek = 2 + + # Set the read position past the BOM if one was found, otherwise + # set it to the start of the stream + if encoding: + self.rawStream.seek(seek) + return lookupEncoding(encoding) + else: + self.rawStream.seek(0) + return None + + def detectEncodingMeta(self): + """Report the encoding declared by the meta element + """ + buffer = self.rawStream.read(self.numBytesMeta) + assert isinstance(buffer, bytes) + parser = EncodingParser(buffer) + self.rawStream.seek(0) + encoding = parser.getEncoding() + + if encoding is not None and encoding.name in ("utf-16be", "utf-16le"): + encoding = lookupEncoding("utf-8") + + return encoding + + +class EncodingBytes(bytes): + """String-like object with an associated position and various extra methods + If the position is ever greater than the string length then an exception is + raised""" + def __new__(self, value): + assert isinstance(value, bytes) + return bytes.__new__(self, value.lower()) + + def __init__(self, value): + # pylint:disable=unused-argument + self._position = -1 + + def __iter__(self): + return self + + def __next__(self): + p = self._position = self._position + 1 + if p >= len(self): + raise StopIteration + elif p < 0: + raise TypeError + return self[p:p + 1] + + def next(self): + # Py2 compat + return self.__next__() + + def previous(self): + p = self._position + if p >= len(self): + raise StopIteration + elif p < 0: + raise TypeError + self._position = p = p - 1 + return self[p:p + 1] + + def setPosition(self, position): + if self._position >= len(self): + raise StopIteration + self._position = position + + def getPosition(self): + if self._position >= len(self): + raise StopIteration + if self._position >= 0: + return self._position + else: + return None + + position = property(getPosition, setPosition) + + def getCurrentByte(self): + return self[self.position:self.position + 1] + + currentByte = property(getCurrentByte) + + def skip(self, chars=spaceCharactersBytes): + """Skip past a list of characters""" + p = self.position # use property for the error-checking + while p < len(self): + c = self[p:p + 1] + if c not in chars: + self._position = p + return c + p += 1 + self._position = p + return None + + def skipUntil(self, chars): + p = self.position + while p < len(self): + c = self[p:p + 1] + if c in chars: + self._position = p + return c + p += 1 + self._position = p + return None + + def matchBytes(self, bytes): + """Look for a sequence of bytes at the start of a string. If the bytes + are found return True and advance the position to the byte after the + match. Otherwise return False and leave the position alone""" + rv = self.startswith(bytes, self.position) + if rv: + self.position += len(bytes) + return rv + + def jumpTo(self, bytes): + """Look for the next sequence of bytes matching a given sequence. If + a match is found advance the position to the last byte of the match""" + try: + self._position = self.index(bytes, self.position) + len(bytes) - 1 + except ValueError: + raise StopIteration + return True + + +class EncodingParser(object): + """Mini parser for detecting character encoding from meta elements""" + + def __init__(self, data): + """string - the data to work on for encoding detection""" + self.data = EncodingBytes(data) + self.encoding = None + + def getEncoding(self): + if b"") + + def handleMeta(self): + if self.data.currentByte not in spaceCharactersBytes: + # if we have ") + + def getAttribute(self): + """Return a name,value pair for the next attribute in the stream, + if one is found, or None""" + data = self.data + # Step 1 (skip chars) + c = data.skip(spaceCharactersBytes | frozenset([b"/"])) + assert c is None or len(c) == 1 + # Step 2 + if c in (b">", None): + return None + # Step 3 + attrName = [] + attrValue = [] + # Step 4 attribute name + while True: + if c == b"=" and attrName: + break + elif c in spaceCharactersBytes: + # Step 6! + c = data.skip() + break + elif c in (b"/", b">"): + return b"".join(attrName), b"" + elif c in asciiUppercaseBytes: + attrName.append(c.lower()) + elif c is None: + return None + else: + attrName.append(c) + # Step 5 + c = next(data) + # Step 7 + if c != b"=": + data.previous() + return b"".join(attrName), b"" + # Step 8 + next(data) + # Step 9 + c = data.skip() + # Step 10 + if c in (b"'", b'"'): + # 10.1 + quoteChar = c + while True: + # 10.2 + c = next(data) + # 10.3 + if c == quoteChar: + next(data) + return b"".join(attrName), b"".join(attrValue) + # 10.4 + elif c in asciiUppercaseBytes: + attrValue.append(c.lower()) + # 10.5 + else: + attrValue.append(c) + elif c == b">": + return b"".join(attrName), b"" + elif c in asciiUppercaseBytes: + attrValue.append(c.lower()) + elif c is None: + return None + else: + attrValue.append(c) + # Step 11 + while True: + c = next(data) + if c in spacesAngleBrackets: + return b"".join(attrName), b"".join(attrValue) + elif c in asciiUppercaseBytes: + attrValue.append(c.lower()) + elif c is None: + return None + else: + attrValue.append(c) + + +class ContentAttrParser(object): + def __init__(self, data): + assert isinstance(data, bytes) + self.data = data + + def parse(self): + try: + # Check if the attr name is charset + # otherwise return + self.data.jumpTo(b"charset") + self.data.position += 1 + self.data.skip() + if not self.data.currentByte == b"=": + # If there is no = sign keep looking for attrs + return None + self.data.position += 1 + self.data.skip() + # Look for an encoding between matching quote marks + if self.data.currentByte in (b'"', b"'"): + quoteMark = self.data.currentByte + self.data.position += 1 + oldPosition = self.data.position + if self.data.jumpTo(quoteMark): + return self.data[oldPosition:self.data.position] + else: + return None + else: + # Unquoted value + oldPosition = self.data.position + try: + self.data.skipUntil(spaceCharactersBytes) + return self.data[oldPosition:self.data.position] + except StopIteration: + # Return the whole remaining value + return self.data[oldPosition:] + except StopIteration: + return None + + +def lookupEncoding(encoding): + """Return the python codec name corresponding to an encoding or None if the + string doesn't correspond to a valid encoding.""" + if isinstance(encoding, bytes): + try: + encoding = encoding.decode("ascii") + except UnicodeDecodeError: + return None + + if encoding is not None: + try: + return webencodings.lookup(encoding) + except AttributeError: + return None + else: + return None diff --git a/Scripts/Lib/site-packages/pip/_vendor/html5lib/_tokenizer.py b/Scripts/Lib/site-packages/pip/_vendor/html5lib/_tokenizer.py new file mode 100644 index 0000000..5f00253 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/html5lib/_tokenizer.py @@ -0,0 +1,1735 @@ +from __future__ import absolute_import, division, unicode_literals + +from pip._vendor.six import unichr as chr + +from collections import deque, OrderedDict +from sys import version_info + +from .constants import spaceCharacters +from .constants import entities +from .constants import asciiLetters, asciiUpper2Lower +from .constants import digits, hexDigits, EOF +from .constants import tokenTypes, tagTokenTypes +from .constants import replacementCharacters + +from ._inputstream import HTMLInputStream + +from ._trie import Trie + +entitiesTrie = Trie(entities) + +if version_info >= (3, 7): + attributeMap = dict +else: + attributeMap = OrderedDict + + +class HTMLTokenizer(object): + """ This class takes care of tokenizing HTML. + + * self.currentToken + Holds the token that is currently being processed. + + * self.state + Holds a reference to the method to be invoked... XXX + + * self.stream + Points to HTMLInputStream object. + """ + + def __init__(self, stream, parser=None, **kwargs): + + self.stream = HTMLInputStream(stream, **kwargs) + self.parser = parser + + # Setup the initial tokenizer state + self.escapeFlag = False + self.lastFourChars = [] + self.state = self.dataState + self.escape = False + + # The current token being created + self.currentToken = None + super(HTMLTokenizer, self).__init__() + + def __iter__(self): + """ This is where the magic happens. + + We do our usually processing through the states and when we have a token + to return we yield the token which pauses processing until the next token + is requested. + """ + self.tokenQueue = deque([]) + # Start processing. When EOF is reached self.state will return False + # instead of True and the loop will terminate. + while self.state(): + while self.stream.errors: + yield {"type": tokenTypes["ParseError"], "data": self.stream.errors.pop(0)} + while self.tokenQueue: + yield self.tokenQueue.popleft() + + def consumeNumberEntity(self, isHex): + """This function returns either U+FFFD or the character based on the + decimal or hexadecimal representation. It also discards ";" if present. + If not present self.tokenQueue.append({"type": tokenTypes["ParseError"]}) is invoked. + """ + + allowed = digits + radix = 10 + if isHex: + allowed = hexDigits + radix = 16 + + charStack = [] + + # Consume all the characters that are in range while making sure we + # don't hit an EOF. + c = self.stream.char() + while c in allowed and c is not EOF: + charStack.append(c) + c = self.stream.char() + + # Convert the set of characters consumed to an int. + charAsInt = int("".join(charStack), radix) + + # Certain characters get replaced with others + if charAsInt in replacementCharacters: + char = replacementCharacters[charAsInt] + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "illegal-codepoint-for-numeric-entity", + "datavars": {"charAsInt": charAsInt}}) + elif ((0xD800 <= charAsInt <= 0xDFFF) or + (charAsInt > 0x10FFFF)): + char = "\uFFFD" + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "illegal-codepoint-for-numeric-entity", + "datavars": {"charAsInt": charAsInt}}) + else: + # Should speed up this check somehow (e.g. move the set to a constant) + if ((0x0001 <= charAsInt <= 0x0008) or + (0x000E <= charAsInt <= 0x001F) or + (0x007F <= charAsInt <= 0x009F) or + (0xFDD0 <= charAsInt <= 0xFDEF) or + charAsInt in frozenset([0x000B, 0xFFFE, 0xFFFF, 0x1FFFE, + 0x1FFFF, 0x2FFFE, 0x2FFFF, 0x3FFFE, + 0x3FFFF, 0x4FFFE, 0x4FFFF, 0x5FFFE, + 0x5FFFF, 0x6FFFE, 0x6FFFF, 0x7FFFE, + 0x7FFFF, 0x8FFFE, 0x8FFFF, 0x9FFFE, + 0x9FFFF, 0xAFFFE, 0xAFFFF, 0xBFFFE, + 0xBFFFF, 0xCFFFE, 0xCFFFF, 0xDFFFE, + 0xDFFFF, 0xEFFFE, 0xEFFFF, 0xFFFFE, + 0xFFFFF, 0x10FFFE, 0x10FFFF])): + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": + "illegal-codepoint-for-numeric-entity", + "datavars": {"charAsInt": charAsInt}}) + try: + # Try/except needed as UCS-2 Python builds' unichar only works + # within the BMP. + char = chr(charAsInt) + except ValueError: + v = charAsInt - 0x10000 + char = chr(0xD800 | (v >> 10)) + chr(0xDC00 | (v & 0x3FF)) + + # Discard the ; if present. Otherwise, put it back on the queue and + # invoke parseError on parser. + if c != ";": + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "numeric-entity-without-semicolon"}) + self.stream.unget(c) + + return char + + def consumeEntity(self, allowedChar=None, fromAttribute=False): + # Initialise to the default output for when no entity is matched + output = "&" + + charStack = [self.stream.char()] + if (charStack[0] in spaceCharacters or charStack[0] in (EOF, "<", "&") or + (allowedChar is not None and allowedChar == charStack[0])): + self.stream.unget(charStack[0]) + + elif charStack[0] == "#": + # Read the next character to see if it's hex or decimal + hex = False + charStack.append(self.stream.char()) + if charStack[-1] in ("x", "X"): + hex = True + charStack.append(self.stream.char()) + + # charStack[-1] should be the first digit + if (hex and charStack[-1] in hexDigits) \ + or (not hex and charStack[-1] in digits): + # At least one digit found, so consume the whole number + self.stream.unget(charStack[-1]) + output = self.consumeNumberEntity(hex) + else: + # No digits found + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "expected-numeric-entity"}) + self.stream.unget(charStack.pop()) + output = "&" + "".join(charStack) + + else: + # At this point in the process might have named entity. Entities + # are stored in the global variable "entities". + # + # Consume characters and compare to these to a substring of the + # entity names in the list until the substring no longer matches. + while (charStack[-1] is not EOF): + if not entitiesTrie.has_keys_with_prefix("".join(charStack)): + break + charStack.append(self.stream.char()) + + # At this point we have a string that starts with some characters + # that may match an entity + # Try to find the longest entity the string will match to take care + # of ¬i for instance. + try: + entityName = entitiesTrie.longest_prefix("".join(charStack[:-1])) + entityLength = len(entityName) + except KeyError: + entityName = None + + if entityName is not None: + if entityName[-1] != ";": + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "named-entity-without-semicolon"}) + if (entityName[-1] != ";" and fromAttribute and + (charStack[entityLength] in asciiLetters or + charStack[entityLength] in digits or + charStack[entityLength] == "=")): + self.stream.unget(charStack.pop()) + output = "&" + "".join(charStack) + else: + output = entities[entityName] + self.stream.unget(charStack.pop()) + output += "".join(charStack[entityLength:]) + else: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "expected-named-entity"}) + self.stream.unget(charStack.pop()) + output = "&" + "".join(charStack) + + if fromAttribute: + self.currentToken["data"][-1][1] += output + else: + if output in spaceCharacters: + tokenType = "SpaceCharacters" + else: + tokenType = "Characters" + self.tokenQueue.append({"type": tokenTypes[tokenType], "data": output}) + + def processEntityInAttribute(self, allowedChar): + """This method replaces the need for "entityInAttributeValueState". + """ + self.consumeEntity(allowedChar=allowedChar, fromAttribute=True) + + def emitCurrentToken(self): + """This method is a generic handler for emitting the tags. It also sets + the state to "data" because that's what's needed after a token has been + emitted. + """ + token = self.currentToken + # Add token to the queue to be yielded + if (token["type"] in tagTokenTypes): + token["name"] = token["name"].translate(asciiUpper2Lower) + if token["type"] == tokenTypes["StartTag"]: + raw = token["data"] + data = attributeMap(raw) + if len(raw) > len(data): + # we had some duplicated attribute, fix so first wins + data.update(raw[::-1]) + token["data"] = data + + if token["type"] == tokenTypes["EndTag"]: + if token["data"]: + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "attributes-in-end-tag"}) + if token["selfClosing"]: + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "self-closing-flag-on-end-tag"}) + self.tokenQueue.append(token) + self.state = self.dataState + + # Below are the various tokenizer states worked out. + def dataState(self): + data = self.stream.char() + if data == "&": + self.state = self.entityDataState + elif data == "<": + self.state = self.tagOpenState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.tokenQueue.append({"type": tokenTypes["Characters"], + "data": "\u0000"}) + elif data is EOF: + # Tokenization ends. + return False + elif data in spaceCharacters: + # Directly after emitting a token you switch back to the "data + # state". At that point spaceCharacters are important so they are + # emitted separately. + self.tokenQueue.append({"type": tokenTypes["SpaceCharacters"], "data": + data + self.stream.charsUntil(spaceCharacters, True)}) + # No need to update lastFourChars here, since the first space will + # have already been appended to lastFourChars and will have broken + # any sequences + else: + chars = self.stream.charsUntil(("&", "<", "\u0000")) + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": + data + chars}) + return True + + def entityDataState(self): + self.consumeEntity() + self.state = self.dataState + return True + + def rcdataState(self): + data = self.stream.char() + if data == "&": + self.state = self.characterReferenceInRcdata + elif data == "<": + self.state = self.rcdataLessThanSignState + elif data == EOF: + # Tokenization ends. + return False + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.tokenQueue.append({"type": tokenTypes["Characters"], + "data": "\uFFFD"}) + elif data in spaceCharacters: + # Directly after emitting a token you switch back to the "data + # state". At that point spaceCharacters are important so they are + # emitted separately. + self.tokenQueue.append({"type": tokenTypes["SpaceCharacters"], "data": + data + self.stream.charsUntil(spaceCharacters, True)}) + # No need to update lastFourChars here, since the first space will + # have already been appended to lastFourChars and will have broken + # any sequences + else: + chars = self.stream.charsUntil(("&", "<", "\u0000")) + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": + data + chars}) + return True + + def characterReferenceInRcdata(self): + self.consumeEntity() + self.state = self.rcdataState + return True + + def rawtextState(self): + data = self.stream.char() + if data == "<": + self.state = self.rawtextLessThanSignState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.tokenQueue.append({"type": tokenTypes["Characters"], + "data": "\uFFFD"}) + elif data == EOF: + # Tokenization ends. + return False + else: + chars = self.stream.charsUntil(("<", "\u0000")) + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": + data + chars}) + return True + + def scriptDataState(self): + data = self.stream.char() + if data == "<": + self.state = self.scriptDataLessThanSignState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.tokenQueue.append({"type": tokenTypes["Characters"], + "data": "\uFFFD"}) + elif data == EOF: + # Tokenization ends. + return False + else: + chars = self.stream.charsUntil(("<", "\u0000")) + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": + data + chars}) + return True + + def plaintextState(self): + data = self.stream.char() + if data == EOF: + # Tokenization ends. + return False + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.tokenQueue.append({"type": tokenTypes["Characters"], + "data": "\uFFFD"}) + else: + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": + data + self.stream.charsUntil("\u0000")}) + return True + + def tagOpenState(self): + data = self.stream.char() + if data == "!": + self.state = self.markupDeclarationOpenState + elif data == "/": + self.state = self.closeTagOpenState + elif data in asciiLetters: + self.currentToken = {"type": tokenTypes["StartTag"], + "name": data, "data": [], + "selfClosing": False, + "selfClosingAcknowledged": False} + self.state = self.tagNameState + elif data == ">": + # XXX In theory it could be something besides a tag name. But + # do we really care? + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "expected-tag-name-but-got-right-bracket"}) + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": "<>"}) + self.state = self.dataState + elif data == "?": + # XXX In theory it could be something besides a tag name. But + # do we really care? + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "expected-tag-name-but-got-question-mark"}) + self.stream.unget(data) + self.state = self.bogusCommentState + else: + # XXX + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "expected-tag-name"}) + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": "<"}) + self.stream.unget(data) + self.state = self.dataState + return True + + def closeTagOpenState(self): + data = self.stream.char() + if data in asciiLetters: + self.currentToken = {"type": tokenTypes["EndTag"], "name": data, + "data": [], "selfClosing": False} + self.state = self.tagNameState + elif data == ">": + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "expected-closing-tag-but-got-right-bracket"}) + self.state = self.dataState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "expected-closing-tag-but-got-eof"}) + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": "": + self.emitCurrentToken() + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-tag-name"}) + self.state = self.dataState + elif data == "/": + self.state = self.selfClosingStartTagState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.currentToken["name"] += "\uFFFD" + else: + self.currentToken["name"] += data + # (Don't use charsUntil here, because tag names are + # very short and it's faster to not do anything fancy) + return True + + def rcdataLessThanSignState(self): + data = self.stream.char() + if data == "/": + self.temporaryBuffer = "" + self.state = self.rcdataEndTagOpenState + else: + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": "<"}) + self.stream.unget(data) + self.state = self.rcdataState + return True + + def rcdataEndTagOpenState(self): + data = self.stream.char() + if data in asciiLetters: + self.temporaryBuffer += data + self.state = self.rcdataEndTagNameState + else: + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": "" and appropriate: + self.currentToken = {"type": tokenTypes["EndTag"], + "name": self.temporaryBuffer, + "data": [], "selfClosing": False} + self.emitCurrentToken() + self.state = self.dataState + elif data in asciiLetters: + self.temporaryBuffer += data + else: + self.tokenQueue.append({"type": tokenTypes["Characters"], + "data": "" and appropriate: + self.currentToken = {"type": tokenTypes["EndTag"], + "name": self.temporaryBuffer, + "data": [], "selfClosing": False} + self.emitCurrentToken() + self.state = self.dataState + elif data in asciiLetters: + self.temporaryBuffer += data + else: + self.tokenQueue.append({"type": tokenTypes["Characters"], + "data": "" and appropriate: + self.currentToken = {"type": tokenTypes["EndTag"], + "name": self.temporaryBuffer, + "data": [], "selfClosing": False} + self.emitCurrentToken() + self.state = self.dataState + elif data in asciiLetters: + self.temporaryBuffer += data + else: + self.tokenQueue.append({"type": tokenTypes["Characters"], + "data": "": + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": ">"}) + self.state = self.scriptDataState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.tokenQueue.append({"type": tokenTypes["Characters"], + "data": "\uFFFD"}) + self.state = self.scriptDataEscapedState + elif data == EOF: + self.state = self.dataState + else: + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": data}) + self.state = self.scriptDataEscapedState + return True + + def scriptDataEscapedLessThanSignState(self): + data = self.stream.char() + if data == "/": + self.temporaryBuffer = "" + self.state = self.scriptDataEscapedEndTagOpenState + elif data in asciiLetters: + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": "<" + data}) + self.temporaryBuffer = data + self.state = self.scriptDataDoubleEscapeStartState + else: + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": "<"}) + self.stream.unget(data) + self.state = self.scriptDataEscapedState + return True + + def scriptDataEscapedEndTagOpenState(self): + data = self.stream.char() + if data in asciiLetters: + self.temporaryBuffer = data + self.state = self.scriptDataEscapedEndTagNameState + else: + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": "" and appropriate: + self.currentToken = {"type": tokenTypes["EndTag"], + "name": self.temporaryBuffer, + "data": [], "selfClosing": False} + self.emitCurrentToken() + self.state = self.dataState + elif data in asciiLetters: + self.temporaryBuffer += data + else: + self.tokenQueue.append({"type": tokenTypes["Characters"], + "data": ""))): + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": data}) + if self.temporaryBuffer.lower() == "script": + self.state = self.scriptDataDoubleEscapedState + else: + self.state = self.scriptDataEscapedState + elif data in asciiLetters: + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": data}) + self.temporaryBuffer += data + else: + self.stream.unget(data) + self.state = self.scriptDataEscapedState + return True + + def scriptDataDoubleEscapedState(self): + data = self.stream.char() + if data == "-": + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": "-"}) + self.state = self.scriptDataDoubleEscapedDashState + elif data == "<": + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": "<"}) + self.state = self.scriptDataDoubleEscapedLessThanSignState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.tokenQueue.append({"type": tokenTypes["Characters"], + "data": "\uFFFD"}) + elif data == EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-script-in-script"}) + self.state = self.dataState + else: + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": data}) + return True + + def scriptDataDoubleEscapedDashState(self): + data = self.stream.char() + if data == "-": + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": "-"}) + self.state = self.scriptDataDoubleEscapedDashDashState + elif data == "<": + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": "<"}) + self.state = self.scriptDataDoubleEscapedLessThanSignState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.tokenQueue.append({"type": tokenTypes["Characters"], + "data": "\uFFFD"}) + self.state = self.scriptDataDoubleEscapedState + elif data == EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-script-in-script"}) + self.state = self.dataState + else: + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": data}) + self.state = self.scriptDataDoubleEscapedState + return True + + def scriptDataDoubleEscapedDashDashState(self): + data = self.stream.char() + if data == "-": + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": "-"}) + elif data == "<": + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": "<"}) + self.state = self.scriptDataDoubleEscapedLessThanSignState + elif data == ">": + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": ">"}) + self.state = self.scriptDataState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.tokenQueue.append({"type": tokenTypes["Characters"], + "data": "\uFFFD"}) + self.state = self.scriptDataDoubleEscapedState + elif data == EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-script-in-script"}) + self.state = self.dataState + else: + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": data}) + self.state = self.scriptDataDoubleEscapedState + return True + + def scriptDataDoubleEscapedLessThanSignState(self): + data = self.stream.char() + if data == "/": + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": "/"}) + self.temporaryBuffer = "" + self.state = self.scriptDataDoubleEscapeEndState + else: + self.stream.unget(data) + self.state = self.scriptDataDoubleEscapedState + return True + + def scriptDataDoubleEscapeEndState(self): + data = self.stream.char() + if data in (spaceCharacters | frozenset(("/", ">"))): + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": data}) + if self.temporaryBuffer.lower() == "script": + self.state = self.scriptDataEscapedState + else: + self.state = self.scriptDataDoubleEscapedState + elif data in asciiLetters: + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": data}) + self.temporaryBuffer += data + else: + self.stream.unget(data) + self.state = self.scriptDataDoubleEscapedState + return True + + def beforeAttributeNameState(self): + data = self.stream.char() + if data in spaceCharacters: + self.stream.charsUntil(spaceCharacters, True) + elif data in asciiLetters: + self.currentToken["data"].append([data, ""]) + self.state = self.attributeNameState + elif data == ">": + self.emitCurrentToken() + elif data == "/": + self.state = self.selfClosingStartTagState + elif data in ("'", '"', "=", "<"): + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "invalid-character-in-attribute-name"}) + self.currentToken["data"].append([data, ""]) + self.state = self.attributeNameState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.currentToken["data"].append(["\uFFFD", ""]) + self.state = self.attributeNameState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "expected-attribute-name-but-got-eof"}) + self.state = self.dataState + else: + self.currentToken["data"].append([data, ""]) + self.state = self.attributeNameState + return True + + def attributeNameState(self): + data = self.stream.char() + leavingThisState = True + emitToken = False + if data == "=": + self.state = self.beforeAttributeValueState + elif data in asciiLetters: + self.currentToken["data"][-1][0] += data +\ + self.stream.charsUntil(asciiLetters, True) + leavingThisState = False + elif data == ">": + # XXX If we emit here the attributes are converted to a dict + # without being checked and when the code below runs we error + # because data is a dict not a list + emitToken = True + elif data in spaceCharacters: + self.state = self.afterAttributeNameState + elif data == "/": + self.state = self.selfClosingStartTagState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.currentToken["data"][-1][0] += "\uFFFD" + leavingThisState = False + elif data in ("'", '"', "<"): + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": + "invalid-character-in-attribute-name"}) + self.currentToken["data"][-1][0] += data + leavingThisState = False + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "eof-in-attribute-name"}) + self.state = self.dataState + else: + self.currentToken["data"][-1][0] += data + leavingThisState = False + + if leavingThisState: + # Attributes are not dropped at this stage. That happens when the + # start tag token is emitted so values can still be safely appended + # to attributes, but we do want to report the parse error in time. + self.currentToken["data"][-1][0] = ( + self.currentToken["data"][-1][0].translate(asciiUpper2Lower)) + for name, _ in self.currentToken["data"][:-1]: + if self.currentToken["data"][-1][0] == name: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "duplicate-attribute"}) + break + # XXX Fix for above XXX + if emitToken: + self.emitCurrentToken() + return True + + def afterAttributeNameState(self): + data = self.stream.char() + if data in spaceCharacters: + self.stream.charsUntil(spaceCharacters, True) + elif data == "=": + self.state = self.beforeAttributeValueState + elif data == ">": + self.emitCurrentToken() + elif data in asciiLetters: + self.currentToken["data"].append([data, ""]) + self.state = self.attributeNameState + elif data == "/": + self.state = self.selfClosingStartTagState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.currentToken["data"].append(["\uFFFD", ""]) + self.state = self.attributeNameState + elif data in ("'", '"', "<"): + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "invalid-character-after-attribute-name"}) + self.currentToken["data"].append([data, ""]) + self.state = self.attributeNameState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "expected-end-of-tag-but-got-eof"}) + self.state = self.dataState + else: + self.currentToken["data"].append([data, ""]) + self.state = self.attributeNameState + return True + + def beforeAttributeValueState(self): + data = self.stream.char() + if data in spaceCharacters: + self.stream.charsUntil(spaceCharacters, True) + elif data == "\"": + self.state = self.attributeValueDoubleQuotedState + elif data == "&": + self.state = self.attributeValueUnQuotedState + self.stream.unget(data) + elif data == "'": + self.state = self.attributeValueSingleQuotedState + elif data == ">": + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "expected-attribute-value-but-got-right-bracket"}) + self.emitCurrentToken() + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.currentToken["data"][-1][1] += "\uFFFD" + self.state = self.attributeValueUnQuotedState + elif data in ("=", "<", "`"): + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "equals-in-unquoted-attribute-value"}) + self.currentToken["data"][-1][1] += data + self.state = self.attributeValueUnQuotedState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "expected-attribute-value-but-got-eof"}) + self.state = self.dataState + else: + self.currentToken["data"][-1][1] += data + self.state = self.attributeValueUnQuotedState + return True + + def attributeValueDoubleQuotedState(self): + data = self.stream.char() + if data == "\"": + self.state = self.afterAttributeValueState + elif data == "&": + self.processEntityInAttribute('"') + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.currentToken["data"][-1][1] += "\uFFFD" + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-attribute-value-double-quote"}) + self.state = self.dataState + else: + self.currentToken["data"][-1][1] += data +\ + self.stream.charsUntil(("\"", "&", "\u0000")) + return True + + def attributeValueSingleQuotedState(self): + data = self.stream.char() + if data == "'": + self.state = self.afterAttributeValueState + elif data == "&": + self.processEntityInAttribute("'") + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.currentToken["data"][-1][1] += "\uFFFD" + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-attribute-value-single-quote"}) + self.state = self.dataState + else: + self.currentToken["data"][-1][1] += data +\ + self.stream.charsUntil(("'", "&", "\u0000")) + return True + + def attributeValueUnQuotedState(self): + data = self.stream.char() + if data in spaceCharacters: + self.state = self.beforeAttributeNameState + elif data == "&": + self.processEntityInAttribute(">") + elif data == ">": + self.emitCurrentToken() + elif data in ('"', "'", "=", "<", "`"): + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-character-in-unquoted-attribute-value"}) + self.currentToken["data"][-1][1] += data + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.currentToken["data"][-1][1] += "\uFFFD" + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-attribute-value-no-quotes"}) + self.state = self.dataState + else: + self.currentToken["data"][-1][1] += data + self.stream.charsUntil( + frozenset(("&", ">", '"', "'", "=", "<", "`", "\u0000")) | spaceCharacters) + return True + + def afterAttributeValueState(self): + data = self.stream.char() + if data in spaceCharacters: + self.state = self.beforeAttributeNameState + elif data == ">": + self.emitCurrentToken() + elif data == "/": + self.state = self.selfClosingStartTagState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-EOF-after-attribute-value"}) + self.stream.unget(data) + self.state = self.dataState + else: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-character-after-attribute-value"}) + self.stream.unget(data) + self.state = self.beforeAttributeNameState + return True + + def selfClosingStartTagState(self): + data = self.stream.char() + if data == ">": + self.currentToken["selfClosing"] = True + self.emitCurrentToken() + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": + "unexpected-EOF-after-solidus-in-tag"}) + self.stream.unget(data) + self.state = self.dataState + else: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-character-after-solidus-in-tag"}) + self.stream.unget(data) + self.state = self.beforeAttributeNameState + return True + + def bogusCommentState(self): + # Make a new comment token and give it as value all the characters + # until the first > or EOF (charsUntil checks for EOF automatically) + # and emit it. + data = self.stream.charsUntil(">") + data = data.replace("\u0000", "\uFFFD") + self.tokenQueue.append( + {"type": tokenTypes["Comment"], "data": data}) + + # Eat the character directly after the bogus comment which is either a + # ">" or an EOF. + self.stream.char() + self.state = self.dataState + return True + + def markupDeclarationOpenState(self): + charStack = [self.stream.char()] + if charStack[-1] == "-": + charStack.append(self.stream.char()) + if charStack[-1] == "-": + self.currentToken = {"type": tokenTypes["Comment"], "data": ""} + self.state = self.commentStartState + return True + elif charStack[-1] in ('d', 'D'): + matched = True + for expected in (('o', 'O'), ('c', 'C'), ('t', 'T'), + ('y', 'Y'), ('p', 'P'), ('e', 'E')): + charStack.append(self.stream.char()) + if charStack[-1] not in expected: + matched = False + break + if matched: + self.currentToken = {"type": tokenTypes["Doctype"], + "name": "", + "publicId": None, "systemId": None, + "correct": True} + self.state = self.doctypeState + return True + elif (charStack[-1] == "[" and + self.parser is not None and + self.parser.tree.openElements and + self.parser.tree.openElements[-1].namespace != self.parser.tree.defaultNamespace): + matched = True + for expected in ["C", "D", "A", "T", "A", "["]: + charStack.append(self.stream.char()) + if charStack[-1] != expected: + matched = False + break + if matched: + self.state = self.cdataSectionState + return True + + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "expected-dashes-or-doctype"}) + + while charStack: + self.stream.unget(charStack.pop()) + self.state = self.bogusCommentState + return True + + def commentStartState(self): + data = self.stream.char() + if data == "-": + self.state = self.commentStartDashState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.currentToken["data"] += "\uFFFD" + elif data == ">": + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "incorrect-comment"}) + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-comment"}) + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + self.currentToken["data"] += data + self.state = self.commentState + return True + + def commentStartDashState(self): + data = self.stream.char() + if data == "-": + self.state = self.commentEndState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.currentToken["data"] += "-\uFFFD" + elif data == ">": + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "incorrect-comment"}) + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-comment"}) + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + self.currentToken["data"] += "-" + data + self.state = self.commentState + return True + + def commentState(self): + data = self.stream.char() + if data == "-": + self.state = self.commentEndDashState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.currentToken["data"] += "\uFFFD" + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "eof-in-comment"}) + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + self.currentToken["data"] += data + \ + self.stream.charsUntil(("-", "\u0000")) + return True + + def commentEndDashState(self): + data = self.stream.char() + if data == "-": + self.state = self.commentEndState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.currentToken["data"] += "-\uFFFD" + self.state = self.commentState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-comment-end-dash"}) + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + self.currentToken["data"] += "-" + data + self.state = self.commentState + return True + + def commentEndState(self): + data = self.stream.char() + if data == ">": + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.currentToken["data"] += "--\uFFFD" + self.state = self.commentState + elif data == "!": + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-bang-after-double-dash-in-comment"}) + self.state = self.commentEndBangState + elif data == "-": + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-dash-after-double-dash-in-comment"}) + self.currentToken["data"] += data + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-comment-double-dash"}) + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + # XXX + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-char-in-comment"}) + self.currentToken["data"] += "--" + data + self.state = self.commentState + return True + + def commentEndBangState(self): + data = self.stream.char() + if data == ">": + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + elif data == "-": + self.currentToken["data"] += "--!" + self.state = self.commentEndDashState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.currentToken["data"] += "--!\uFFFD" + self.state = self.commentState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-comment-end-bang-state"}) + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + self.currentToken["data"] += "--!" + data + self.state = self.commentState + return True + + def doctypeState(self): + data = self.stream.char() + if data in spaceCharacters: + self.state = self.beforeDoctypeNameState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "expected-doctype-name-but-got-eof"}) + self.currentToken["correct"] = False + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "need-space-after-doctype"}) + self.stream.unget(data) + self.state = self.beforeDoctypeNameState + return True + + def beforeDoctypeNameState(self): + data = self.stream.char() + if data in spaceCharacters: + pass + elif data == ">": + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "expected-doctype-name-but-got-right-bracket"}) + self.currentToken["correct"] = False + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.currentToken["name"] = "\uFFFD" + self.state = self.doctypeNameState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "expected-doctype-name-but-got-eof"}) + self.currentToken["correct"] = False + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + self.currentToken["name"] = data + self.state = self.doctypeNameState + return True + + def doctypeNameState(self): + data = self.stream.char() + if data in spaceCharacters: + self.currentToken["name"] = self.currentToken["name"].translate(asciiUpper2Lower) + self.state = self.afterDoctypeNameState + elif data == ">": + self.currentToken["name"] = self.currentToken["name"].translate(asciiUpper2Lower) + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.currentToken["name"] += "\uFFFD" + self.state = self.doctypeNameState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-doctype-name"}) + self.currentToken["correct"] = False + self.currentToken["name"] = self.currentToken["name"].translate(asciiUpper2Lower) + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + self.currentToken["name"] += data + return True + + def afterDoctypeNameState(self): + data = self.stream.char() + if data in spaceCharacters: + pass + elif data == ">": + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + elif data is EOF: + self.currentToken["correct"] = False + self.stream.unget(data) + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-doctype"}) + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + if data in ("p", "P"): + matched = True + for expected in (("u", "U"), ("b", "B"), ("l", "L"), + ("i", "I"), ("c", "C")): + data = self.stream.char() + if data not in expected: + matched = False + break + if matched: + self.state = self.afterDoctypePublicKeywordState + return True + elif data in ("s", "S"): + matched = True + for expected in (("y", "Y"), ("s", "S"), ("t", "T"), + ("e", "E"), ("m", "M")): + data = self.stream.char() + if data not in expected: + matched = False + break + if matched: + self.state = self.afterDoctypeSystemKeywordState + return True + + # All the characters read before the current 'data' will be + # [a-zA-Z], so they're garbage in the bogus doctype and can be + # discarded; only the latest character might be '>' or EOF + # and needs to be ungetted + self.stream.unget(data) + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "expected-space-or-right-bracket-in-doctype", "datavars": + {"data": data}}) + self.currentToken["correct"] = False + self.state = self.bogusDoctypeState + + return True + + def afterDoctypePublicKeywordState(self): + data = self.stream.char() + if data in spaceCharacters: + self.state = self.beforeDoctypePublicIdentifierState + elif data in ("'", '"'): + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-char-in-doctype"}) + self.stream.unget(data) + self.state = self.beforeDoctypePublicIdentifierState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-doctype"}) + self.currentToken["correct"] = False + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + self.stream.unget(data) + self.state = self.beforeDoctypePublicIdentifierState + return True + + def beforeDoctypePublicIdentifierState(self): + data = self.stream.char() + if data in spaceCharacters: + pass + elif data == "\"": + self.currentToken["publicId"] = "" + self.state = self.doctypePublicIdentifierDoubleQuotedState + elif data == "'": + self.currentToken["publicId"] = "" + self.state = self.doctypePublicIdentifierSingleQuotedState + elif data == ">": + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-end-of-doctype"}) + self.currentToken["correct"] = False + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-doctype"}) + self.currentToken["correct"] = False + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-char-in-doctype"}) + self.currentToken["correct"] = False + self.state = self.bogusDoctypeState + return True + + def doctypePublicIdentifierDoubleQuotedState(self): + data = self.stream.char() + if data == "\"": + self.state = self.afterDoctypePublicIdentifierState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.currentToken["publicId"] += "\uFFFD" + elif data == ">": + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-end-of-doctype"}) + self.currentToken["correct"] = False + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-doctype"}) + self.currentToken["correct"] = False + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + self.currentToken["publicId"] += data + return True + + def doctypePublicIdentifierSingleQuotedState(self): + data = self.stream.char() + if data == "'": + self.state = self.afterDoctypePublicIdentifierState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.currentToken["publicId"] += "\uFFFD" + elif data == ">": + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-end-of-doctype"}) + self.currentToken["correct"] = False + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-doctype"}) + self.currentToken["correct"] = False + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + self.currentToken["publicId"] += data + return True + + def afterDoctypePublicIdentifierState(self): + data = self.stream.char() + if data in spaceCharacters: + self.state = self.betweenDoctypePublicAndSystemIdentifiersState + elif data == ">": + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + elif data == '"': + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-char-in-doctype"}) + self.currentToken["systemId"] = "" + self.state = self.doctypeSystemIdentifierDoubleQuotedState + elif data == "'": + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-char-in-doctype"}) + self.currentToken["systemId"] = "" + self.state = self.doctypeSystemIdentifierSingleQuotedState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-doctype"}) + self.currentToken["correct"] = False + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-char-in-doctype"}) + self.currentToken["correct"] = False + self.state = self.bogusDoctypeState + return True + + def betweenDoctypePublicAndSystemIdentifiersState(self): + data = self.stream.char() + if data in spaceCharacters: + pass + elif data == ">": + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + elif data == '"': + self.currentToken["systemId"] = "" + self.state = self.doctypeSystemIdentifierDoubleQuotedState + elif data == "'": + self.currentToken["systemId"] = "" + self.state = self.doctypeSystemIdentifierSingleQuotedState + elif data == EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-doctype"}) + self.currentToken["correct"] = False + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-char-in-doctype"}) + self.currentToken["correct"] = False + self.state = self.bogusDoctypeState + return True + + def afterDoctypeSystemKeywordState(self): + data = self.stream.char() + if data in spaceCharacters: + self.state = self.beforeDoctypeSystemIdentifierState + elif data in ("'", '"'): + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-char-in-doctype"}) + self.stream.unget(data) + self.state = self.beforeDoctypeSystemIdentifierState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-doctype"}) + self.currentToken["correct"] = False + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + self.stream.unget(data) + self.state = self.beforeDoctypeSystemIdentifierState + return True + + def beforeDoctypeSystemIdentifierState(self): + data = self.stream.char() + if data in spaceCharacters: + pass + elif data == "\"": + self.currentToken["systemId"] = "" + self.state = self.doctypeSystemIdentifierDoubleQuotedState + elif data == "'": + self.currentToken["systemId"] = "" + self.state = self.doctypeSystemIdentifierSingleQuotedState + elif data == ">": + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-char-in-doctype"}) + self.currentToken["correct"] = False + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-doctype"}) + self.currentToken["correct"] = False + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-char-in-doctype"}) + self.currentToken["correct"] = False + self.state = self.bogusDoctypeState + return True + + def doctypeSystemIdentifierDoubleQuotedState(self): + data = self.stream.char() + if data == "\"": + self.state = self.afterDoctypeSystemIdentifierState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.currentToken["systemId"] += "\uFFFD" + elif data == ">": + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-end-of-doctype"}) + self.currentToken["correct"] = False + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-doctype"}) + self.currentToken["correct"] = False + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + self.currentToken["systemId"] += data + return True + + def doctypeSystemIdentifierSingleQuotedState(self): + data = self.stream.char() + if data == "'": + self.state = self.afterDoctypeSystemIdentifierState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.currentToken["systemId"] += "\uFFFD" + elif data == ">": + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-end-of-doctype"}) + self.currentToken["correct"] = False + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-doctype"}) + self.currentToken["correct"] = False + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + self.currentToken["systemId"] += data + return True + + def afterDoctypeSystemIdentifierState(self): + data = self.stream.char() + if data in spaceCharacters: + pass + elif data == ">": + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-doctype"}) + self.currentToken["correct"] = False + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-char-in-doctype"}) + self.state = self.bogusDoctypeState + return True + + def bogusDoctypeState(self): + data = self.stream.char() + if data == ">": + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + elif data is EOF: + # XXX EMIT + self.stream.unget(data) + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + pass + return True + + def cdataSectionState(self): + data = [] + while True: + data.append(self.stream.charsUntil("]")) + data.append(self.stream.charsUntil(">")) + char = self.stream.char() + if char == EOF: + break + else: + assert char == ">" + if data[-1][-2:] == "]]": + data[-1] = data[-1][:-2] + break + else: + data.append(char) + + data = "".join(data) # pylint:disable=redefined-variable-type + # Deal with null here rather than in the parser + nullCount = data.count("\u0000") + if nullCount > 0: + for _ in range(nullCount): + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + data = data.replace("\u0000", "\uFFFD") + if data: + self.tokenQueue.append({"type": tokenTypes["Characters"], + "data": data}) + self.state = self.dataState + return True diff --git a/Scripts/Lib/site-packages/pip/_vendor/html5lib/_trie/__init__.py b/Scripts/Lib/site-packages/pip/_vendor/html5lib/_trie/__init__.py new file mode 100644 index 0000000..07bad5d --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/html5lib/_trie/__init__.py @@ -0,0 +1,5 @@ +from __future__ import absolute_import, division, unicode_literals + +from .py import Trie + +__all__ = ["Trie"] diff --git a/Scripts/Lib/site-packages/pip/_vendor/html5lib/_trie/__pycache__/__init__.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_vendor/html5lib/_trie/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c33e9f5435c2d062f913c89742dd41ce197c46c4 GIT binary patch literal 373 zcmYjMJ5B>J6tumYk0K%{H~{S;!BRkj5JJ?DCaG4Io}9Hwtk`SIpNLR!AMU^bID=b6 zktXM+80G0KZUlXlX3gH10gjL&%|P0NKd^aA|jGe5VbMO5FFgd|&4j9gzw7116hlIsgCw literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_vendor/html5lib/_trie/__pycache__/_base.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_vendor/html5lib/_trie/__pycache__/_base.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6d0f5414c232a2913d2d3d7e31ea69d65d756d55 GIT binary patch literal 1625 zcmZ`(-EJc_6h8J$l1cijwk&kDE6O4v<$|;qaI>l^eijgdjgVRi7-eNm#!fS;lbPC1 zw++)9TC{u36SSB64m<$Q;9JDSz5+LJ&ZMkTcJavejD76$edl~<@};E~VEgU&KZo~2 zfIsMCzD4-)33mGf4iY5OFk&$q@tBW-IAAc1aFy$DREuj2zK8Kj2&#Ve9s_!+y~b?s zM;NoG@D<2FhL<2iRl5k{NY?hDU4MzULp$&*N#Evr;*`inMQ)srWOkC-EFb&T$v8`M zsf5m)GKscr<{OWbqR7UFDIK40NTq7_Ax;WnCL!jM#erOS1_M?>XvU$e$@(S4HQA66 z&UM+8Eu0(AAcQzVV2eIHFqxX(|FmzNNm94fPpsNXbz<$-AU9hMcWpQ2H~we}=DOX% z4+oBwaKW$mHJtP37?cT^6&IBJg6%_vhe>`JmHZLVN;~MLjBdJVba@T?I(B;(har^k zqcLhZlfRX<3&TXP;(n*yf&hc04Q(mJgF@Vr1`eVln7j2WnL4#HrqXYO=!F z9-iu1%*TgCk{%_8%Jzz^*cK;hEOWCxbR+$-&idPe!n7?YcAetPH+QXaX+A3UDoVuf zE==!Hq&r9I%yxElo??dgI zLYM_wUix>Bj4Ww-nMXWgYkb;#<@L2Bl88R10}pU0;R>$d5j<&~^O9d->@n`ksBlc! zaVRnNn6`s2+q}YH$VWRcYdBTNe1M3n(9Z@!ff&#!PS zVWhX>(C&i$%-X#Bl9Y)-ubE_gsC=N+*hk-}voDOv%`L_(`!C;Ro#PqnZkXO9rpq`) zEM#~18e2oQQ7~Pv*xt5%jVD!Em7F{HLdl_oP-;r#vk3z#2G(seLtbv-YUsH_n9Iic zZI1$FJ^BC-Thc*`Ewbr5Zva-Anfv6V=_4V=$w&#|TSAO-InngKD8%t3(KkB{A!MGS zGD)k3&{q)6yZGjpZiJgEtqa{cNig`h_`@>dHA36`o4E(e8}i9?79f Q;s$WOicwm{ByNQN0CL%SmjD0& literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_vendor/html5lib/_trie/__pycache__/py.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_vendor/html5lib/_trie/__pycache__/py.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8d4e71729518c16ae78e76b460818a1b26ad0ec0 GIT binary patch literal 2288 zcmah~OK%%D5GJ_~tz_9&T*Ha`R3Av8wvmIP4f^)WCj9k15P}Grk|FKVA?vcC*YzmsSn3ahZs6u#8V)Pn3e0^Gq|vb2tx@tF z5uvC&A)+E{Gp}0}(F4+|J_nDa<=ORkPv_~_NS+KwxiU5q$>T&Pd1f2qEa~S$@-#70 z#i?#lTQ&07aC0(}uvpnkwCo$6%6;>kqCaZ=U6sf_I)C-?U~v=v`Ys4bx>S%Z6I8G# zr0WS!_%OneMF?XcDk6e06jf1!u_79xE>@q=ZY0*kI%uk51+H*GMc}N@Kr9}dBWHKu zufGRjfHMRs=u>)1z9BO@qk7#i;mznTw4epyp7G1KGh7A22N{aMR0^=&XRwL{0l2W! z$15(L1(XJbeiOvcq#!>;Q)&Rr&>4G3D0#$i>oeMEF2r}&Bvm5^$UJ4*;BDP>G9n>Pj#;|K9arLNj``tu@b%ev4*HLcja)D z#zyuY^i?u4x(B;@8Ul7@6!(wf1F3tXWVFK{%S_~IXJCfumua%M!wtk~XLQmYo!IL2 z1DVO=k-D*hw?PKkPnXD~iLq>Ro@9yPynQ{*`;Y}U+Dr4vrCVv*Jd!86IUH-#+>=cW zezOB@iE;^1wO*X2)<+v#-G#jQR;gUsfQ#6~Hq?-EQoyn_;QhEikl@35smyG>T#xc3 zGa3lqvNamg4LVspbCrK34Mx)?4erLYI3$lD za;gf;XH;$Cz!ZkrdT`S7;C0UXd1hh=Fz0W8)eCf3qmv7B*q3k5BoR`yfPR6{kUZoN z@@@{@V(JoTOML3^&qG%@lwZdA7TUcJVp5-DI`x0TsSj`i-Vb@j0(U6tLsVlvp5qn_ zINwIS16lIv^#8*ruvyUU1)u62^z!Z!!hyLMu5f-J4V-1j`P)mV#{53ZSDiC(&^HOz zlMCN(Fe#w9jEP=>ksdJ^0bVzZ3o0@T)ecpC=$%q^8AiXyrflk&0PP_3tng;OPp1Af z$fAXI#!3woHkpQnZ$h-5fq!+a2*D@r4Ymn*rr`Hs5k9Rfbf=WUJHfst(-LE8r*D@X zsPK!xbs8UiwY-jMz&#Y+tQ9GYto5`swg&A(8U15o2I?YOxOjv(!!&_X6QWfq(=;3@ zxt|D~jqZi3jNHCksix?VaX!q&IK??Mjz{A-E#D}Y^G!U@ zM<_0%_!xx?*;SmqJgA#t*|^Uj7P7{yiAY4FYUJUs=G8B{x1H7s!tRgFSOKiUo})Yz z*z3FN@P%m4zYuMm9J}w64a={)!u)~;y%%fgoY~5)+jsE3uRDy5u9ug)fxS&*PunDQ KAgazby?+2b^Yl3Y literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_vendor/html5lib/_trie/_base.py b/Scripts/Lib/site-packages/pip/_vendor/html5lib/_trie/_base.py new file mode 100644 index 0000000..6b71975 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/html5lib/_trie/_base.py @@ -0,0 +1,40 @@ +from __future__ import absolute_import, division, unicode_literals + +try: + from collections.abc import Mapping +except ImportError: # Python 2.7 + from collections import Mapping + + +class Trie(Mapping): + """Abstract base class for tries""" + + def keys(self, prefix=None): + # pylint:disable=arguments-differ + keys = super(Trie, self).keys() + + if prefix is None: + return set(keys) + + return {x for x in keys if x.startswith(prefix)} + + def has_keys_with_prefix(self, prefix): + for key in self.keys(): + if key.startswith(prefix): + return True + + return False + + def longest_prefix(self, prefix): + if prefix in self: + return prefix + + for i in range(1, len(prefix) + 1): + if prefix[:-i] in self: + return prefix[:-i] + + raise KeyError(prefix) + + def longest_prefix_item(self, prefix): + lprefix = self.longest_prefix(prefix) + return (lprefix, self[lprefix]) diff --git a/Scripts/Lib/site-packages/pip/_vendor/html5lib/_trie/py.py b/Scripts/Lib/site-packages/pip/_vendor/html5lib/_trie/py.py new file mode 100644 index 0000000..c178b21 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/html5lib/_trie/py.py @@ -0,0 +1,67 @@ +from __future__ import absolute_import, division, unicode_literals +from pip._vendor.six import text_type + +from bisect import bisect_left + +from ._base import Trie as ABCTrie + + +class Trie(ABCTrie): + def __init__(self, data): + if not all(isinstance(x, text_type) for x in data.keys()): + raise TypeError("All keys must be strings") + + self._data = data + self._keys = sorted(data.keys()) + self._cachestr = "" + self._cachepoints = (0, len(data)) + + def __contains__(self, key): + return key in self._data + + def __len__(self): + return len(self._data) + + def __iter__(self): + return iter(self._data) + + def __getitem__(self, key): + return self._data[key] + + def keys(self, prefix=None): + if prefix is None or prefix == "" or not self._keys: + return set(self._keys) + + if prefix.startswith(self._cachestr): + lo, hi = self._cachepoints + start = i = bisect_left(self._keys, prefix, lo, hi) + else: + start = i = bisect_left(self._keys, prefix) + + keys = set() + if start == len(self._keys): + return keys + + while self._keys[i].startswith(prefix): + keys.add(self._keys[i]) + i += 1 + + self._cachestr = prefix + self._cachepoints = (start, i) + + return keys + + def has_keys_with_prefix(self, prefix): + if prefix in self._data: + return True + + if prefix.startswith(self._cachestr): + lo, hi = self._cachepoints + i = bisect_left(self._keys, prefix, lo, hi) + else: + i = bisect_left(self._keys, prefix) + + if i == len(self._keys): + return False + + return self._keys[i].startswith(prefix) diff --git a/Scripts/Lib/site-packages/pip/_vendor/html5lib/_utils.py b/Scripts/Lib/site-packages/pip/_vendor/html5lib/_utils.py new file mode 100644 index 0000000..d7c4926 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/html5lib/_utils.py @@ -0,0 +1,159 @@ +from __future__ import absolute_import, division, unicode_literals + +from types import ModuleType + +try: + from collections.abc import Mapping +except ImportError: + from collections import Mapping + +from pip._vendor.six import text_type, PY3 + +if PY3: + import xml.etree.ElementTree as default_etree +else: + try: + import xml.etree.cElementTree as default_etree + except ImportError: + import xml.etree.ElementTree as default_etree + + +__all__ = ["default_etree", "MethodDispatcher", "isSurrogatePair", + "surrogatePairToCodepoint", "moduleFactoryFactory", + "supports_lone_surrogates"] + + +# Platforms not supporting lone surrogates (\uD800-\uDFFF) should be +# caught by the below test. In general this would be any platform +# using UTF-16 as its encoding of unicode strings, such as +# Jython. This is because UTF-16 itself is based on the use of such +# surrogates, and there is no mechanism to further escape such +# escapes. +try: + _x = eval('"\\uD800"') # pylint:disable=eval-used + if not isinstance(_x, text_type): + # We need this with u"" because of http://bugs.jython.org/issue2039 + _x = eval('u"\\uD800"') # pylint:disable=eval-used + assert isinstance(_x, text_type) +except Exception: + supports_lone_surrogates = False +else: + supports_lone_surrogates = True + + +class MethodDispatcher(dict): + """Dict with 2 special properties: + + On initiation, keys that are lists, sets or tuples are converted to + multiple keys so accessing any one of the items in the original + list-like object returns the matching value + + md = MethodDispatcher({("foo", "bar"):"baz"}) + md["foo"] == "baz" + + A default value which can be set through the default attribute. + """ + + def __init__(self, items=()): + _dictEntries = [] + for name, value in items: + if isinstance(name, (list, tuple, frozenset, set)): + for item in name: + _dictEntries.append((item, value)) + else: + _dictEntries.append((name, value)) + dict.__init__(self, _dictEntries) + assert len(self) == len(_dictEntries) + self.default = None + + def __getitem__(self, key): + return dict.get(self, key, self.default) + + def __get__(self, instance, owner=None): + return BoundMethodDispatcher(instance, self) + + +class BoundMethodDispatcher(Mapping): + """Wraps a MethodDispatcher, binding its return values to `instance`""" + def __init__(self, instance, dispatcher): + self.instance = instance + self.dispatcher = dispatcher + + def __getitem__(self, key): + # see https://docs.python.org/3/reference/datamodel.html#object.__get__ + # on a function, __get__ is used to bind a function to an instance as a bound method + return self.dispatcher[key].__get__(self.instance) + + def get(self, key, default): + if key in self.dispatcher: + return self[key] + else: + return default + + def __iter__(self): + return iter(self.dispatcher) + + def __len__(self): + return len(self.dispatcher) + + def __contains__(self, key): + return key in self.dispatcher + + +# Some utility functions to deal with weirdness around UCS2 vs UCS4 +# python builds + +def isSurrogatePair(data): + return (len(data) == 2 and + ord(data[0]) >= 0xD800 and ord(data[0]) <= 0xDBFF and + ord(data[1]) >= 0xDC00 and ord(data[1]) <= 0xDFFF) + + +def surrogatePairToCodepoint(data): + char_val = (0x10000 + (ord(data[0]) - 0xD800) * 0x400 + + (ord(data[1]) - 0xDC00)) + return char_val + +# Module Factory Factory (no, this isn't Java, I know) +# Here to stop this being duplicated all over the place. + + +def moduleFactoryFactory(factory): + moduleCache = {} + + def moduleFactory(baseModule, *args, **kwargs): + if isinstance(ModuleType.__name__, type("")): + name = "_%s_factory" % baseModule.__name__ + else: + name = b"_%s_factory" % baseModule.__name__ + + kwargs_tuple = tuple(kwargs.items()) + + try: + return moduleCache[name][args][kwargs_tuple] + except KeyError: + mod = ModuleType(name) + objs = factory(baseModule, *args, **kwargs) + mod.__dict__.update(objs) + if "name" not in moduleCache: + moduleCache[name] = {} + if "args" not in moduleCache[name]: + moduleCache[name][args] = {} + if "kwargs" not in moduleCache[name][args]: + moduleCache[name][args][kwargs_tuple] = {} + moduleCache[name][args][kwargs_tuple] = mod + return mod + + return moduleFactory + + +def memoize(func): + cache = {} + + def wrapped(*args, **kwargs): + key = (tuple(args), tuple(kwargs.items())) + if key not in cache: + cache[key] = func(*args, **kwargs) + return cache[key] + + return wrapped diff --git a/Scripts/Lib/site-packages/pip/_vendor/html5lib/constants.py b/Scripts/Lib/site-packages/pip/_vendor/html5lib/constants.py new file mode 100644 index 0000000..fe3e237 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/html5lib/constants.py @@ -0,0 +1,2946 @@ +from __future__ import absolute_import, division, unicode_literals + +import string + +EOF = None + +E = { + "null-character": + "Null character in input stream, replaced with U+FFFD.", + "invalid-codepoint": + "Invalid codepoint in stream.", + "incorrectly-placed-solidus": + "Solidus (/) incorrectly placed in tag.", + "incorrect-cr-newline-entity": + "Incorrect CR newline entity, replaced with LF.", + "illegal-windows-1252-entity": + "Entity used with illegal number (windows-1252 reference).", + "cant-convert-numeric-entity": + "Numeric entity couldn't be converted to character " + "(codepoint U+%(charAsInt)08x).", + "illegal-codepoint-for-numeric-entity": + "Numeric entity represents an illegal codepoint: " + "U+%(charAsInt)08x.", + "numeric-entity-without-semicolon": + "Numeric entity didn't end with ';'.", + "expected-numeric-entity-but-got-eof": + "Numeric entity expected. Got end of file instead.", + "expected-numeric-entity": + "Numeric entity expected but none found.", + "named-entity-without-semicolon": + "Named entity didn't end with ';'.", + "expected-named-entity": + "Named entity expected. Got none.", + "attributes-in-end-tag": + "End tag contains unexpected attributes.", + 'self-closing-flag-on-end-tag': + "End tag contains unexpected self-closing flag.", + "expected-tag-name-but-got-right-bracket": + "Expected tag name. Got '>' instead.", + "expected-tag-name-but-got-question-mark": + "Expected tag name. Got '?' instead. (HTML doesn't " + "support processing instructions.)", + "expected-tag-name": + "Expected tag name. Got something else instead", + "expected-closing-tag-but-got-right-bracket": + "Expected closing tag. Got '>' instead. Ignoring ''.", + "expected-closing-tag-but-got-eof": + "Expected closing tag. Unexpected end of file.", + "expected-closing-tag-but-got-char": + "Expected closing tag. Unexpected character '%(data)s' found.", + "eof-in-tag-name": + "Unexpected end of file in the tag name.", + "expected-attribute-name-but-got-eof": + "Unexpected end of file. Expected attribute name instead.", + "eof-in-attribute-name": + "Unexpected end of file in attribute name.", + "invalid-character-in-attribute-name": + "Invalid character in attribute name", + "duplicate-attribute": + "Dropped duplicate attribute on tag.", + "expected-end-of-tag-name-but-got-eof": + "Unexpected end of file. Expected = or end of tag.", + "expected-attribute-value-but-got-eof": + "Unexpected end of file. Expected attribute value.", + "expected-attribute-value-but-got-right-bracket": + "Expected attribute value. Got '>' instead.", + 'equals-in-unquoted-attribute-value': + "Unexpected = in unquoted attribute", + 'unexpected-character-in-unquoted-attribute-value': + "Unexpected character in unquoted attribute", + "invalid-character-after-attribute-name": + "Unexpected character after attribute name.", + "unexpected-character-after-attribute-value": + "Unexpected character after attribute value.", + "eof-in-attribute-value-double-quote": + "Unexpected end of file in attribute value (\").", + "eof-in-attribute-value-single-quote": + "Unexpected end of file in attribute value (').", + "eof-in-attribute-value-no-quotes": + "Unexpected end of file in attribute value.", + "unexpected-EOF-after-solidus-in-tag": + "Unexpected end of file in tag. Expected >", + "unexpected-character-after-solidus-in-tag": + "Unexpected character after / in tag. Expected >", + "expected-dashes-or-doctype": + "Expected '--' or 'DOCTYPE'. Not found.", + "unexpected-bang-after-double-dash-in-comment": + "Unexpected ! after -- in comment", + "unexpected-space-after-double-dash-in-comment": + "Unexpected space after -- in comment", + "incorrect-comment": + "Incorrect comment.", + "eof-in-comment": + "Unexpected end of file in comment.", + "eof-in-comment-end-dash": + "Unexpected end of file in comment (-)", + "unexpected-dash-after-double-dash-in-comment": + "Unexpected '-' after '--' found in comment.", + "eof-in-comment-double-dash": + "Unexpected end of file in comment (--).", + "eof-in-comment-end-space-state": + "Unexpected end of file in comment.", + "eof-in-comment-end-bang-state": + "Unexpected end of file in comment.", + "unexpected-char-in-comment": + "Unexpected character in comment found.", + "need-space-after-doctype": + "No space after literal string 'DOCTYPE'.", + "expected-doctype-name-but-got-right-bracket": + "Unexpected > character. Expected DOCTYPE name.", + "expected-doctype-name-but-got-eof": + "Unexpected end of file. Expected DOCTYPE name.", + "eof-in-doctype-name": + "Unexpected end of file in DOCTYPE name.", + "eof-in-doctype": + "Unexpected end of file in DOCTYPE.", + "expected-space-or-right-bracket-in-doctype": + "Expected space or '>'. Got '%(data)s'", + "unexpected-end-of-doctype": + "Unexpected end of DOCTYPE.", + "unexpected-char-in-doctype": + "Unexpected character in DOCTYPE.", + "eof-in-innerhtml": + "XXX innerHTML EOF", + "unexpected-doctype": + "Unexpected DOCTYPE. Ignored.", + "non-html-root": + "html needs to be the first start tag.", + "expected-doctype-but-got-eof": + "Unexpected End of file. Expected DOCTYPE.", + "unknown-doctype": + "Erroneous DOCTYPE.", + "expected-doctype-but-got-chars": + "Unexpected non-space characters. Expected DOCTYPE.", + "expected-doctype-but-got-start-tag": + "Unexpected start tag (%(name)s). Expected DOCTYPE.", + "expected-doctype-but-got-end-tag": + "Unexpected end tag (%(name)s). Expected DOCTYPE.", + "end-tag-after-implied-root": + "Unexpected end tag (%(name)s) after the (implied) root element.", + "expected-named-closing-tag-but-got-eof": + "Unexpected end of file. Expected end tag (%(name)s).", + "two-heads-are-not-better-than-one": + "Unexpected start tag head in existing head. Ignored.", + "unexpected-end-tag": + "Unexpected end tag (%(name)s). Ignored.", + "unexpected-start-tag-out-of-my-head": + "Unexpected start tag (%(name)s) that can be in head. Moved.", + "unexpected-start-tag": + "Unexpected start tag (%(name)s).", + "missing-end-tag": + "Missing end tag (%(name)s).", + "missing-end-tags": + "Missing end tags (%(name)s).", + "unexpected-start-tag-implies-end-tag": + "Unexpected start tag (%(startName)s) " + "implies end tag (%(endName)s).", + "unexpected-start-tag-treated-as": + "Unexpected start tag (%(originalName)s). Treated as %(newName)s.", + "deprecated-tag": + "Unexpected start tag %(name)s. Don't use it!", + "unexpected-start-tag-ignored": + "Unexpected start tag %(name)s. Ignored.", + "expected-one-end-tag-but-got-another": + "Unexpected end tag (%(gotName)s). " + "Missing end tag (%(expectedName)s).", + "end-tag-too-early": + "End tag (%(name)s) seen too early. Expected other end tag.", + "end-tag-too-early-named": + "Unexpected end tag (%(gotName)s). Expected end tag (%(expectedName)s).", + "end-tag-too-early-ignored": + "End tag (%(name)s) seen too early. Ignored.", + "adoption-agency-1.1": + "End tag (%(name)s) violates step 1, " + "paragraph 1 of the adoption agency algorithm.", + "adoption-agency-1.2": + "End tag (%(name)s) violates step 1, " + "paragraph 2 of the adoption agency algorithm.", + "adoption-agency-1.3": + "End tag (%(name)s) violates step 1, " + "paragraph 3 of the adoption agency algorithm.", + "adoption-agency-4.4": + "End tag (%(name)s) violates step 4, " + "paragraph 4 of the adoption agency algorithm.", + "unexpected-end-tag-treated-as": + "Unexpected end tag (%(originalName)s). Treated as %(newName)s.", + "no-end-tag": + "This element (%(name)s) has no end tag.", + "unexpected-implied-end-tag-in-table": + "Unexpected implied end tag (%(name)s) in the table phase.", + "unexpected-implied-end-tag-in-table-body": + "Unexpected implied end tag (%(name)s) in the table body phase.", + "unexpected-char-implies-table-voodoo": + "Unexpected non-space characters in " + "table context caused voodoo mode.", + "unexpected-hidden-input-in-table": + "Unexpected input with type hidden in table context.", + "unexpected-form-in-table": + "Unexpected form in table context.", + "unexpected-start-tag-implies-table-voodoo": + "Unexpected start tag (%(name)s) in " + "table context caused voodoo mode.", + "unexpected-end-tag-implies-table-voodoo": + "Unexpected end tag (%(name)s) in " + "table context caused voodoo mode.", + "unexpected-cell-in-table-body": + "Unexpected table cell start tag (%(name)s) " + "in the table body phase.", + "unexpected-cell-end-tag": + "Got table cell end tag (%(name)s) " + "while required end tags are missing.", + "unexpected-end-tag-in-table-body": + "Unexpected end tag (%(name)s) in the table body phase. Ignored.", + "unexpected-implied-end-tag-in-table-row": + "Unexpected implied end tag (%(name)s) in the table row phase.", + "unexpected-end-tag-in-table-row": + "Unexpected end tag (%(name)s) in the table row phase. Ignored.", + "unexpected-select-in-select": + "Unexpected select start tag in the select phase " + "treated as select end tag.", + "unexpected-input-in-select": + "Unexpected input start tag in the select phase.", + "unexpected-start-tag-in-select": + "Unexpected start tag token (%(name)s in the select phase. " + "Ignored.", + "unexpected-end-tag-in-select": + "Unexpected end tag (%(name)s) in the select phase. Ignored.", + "unexpected-table-element-start-tag-in-select-in-table": + "Unexpected table element start tag (%(name)s) in the select in table phase.", + "unexpected-table-element-end-tag-in-select-in-table": + "Unexpected table element end tag (%(name)s) in the select in table phase.", + "unexpected-char-after-body": + "Unexpected non-space characters in the after body phase.", + "unexpected-start-tag-after-body": + "Unexpected start tag token (%(name)s)" + " in the after body phase.", + "unexpected-end-tag-after-body": + "Unexpected end tag token (%(name)s)" + " in the after body phase.", + "unexpected-char-in-frameset": + "Unexpected characters in the frameset phase. Characters ignored.", + "unexpected-start-tag-in-frameset": + "Unexpected start tag token (%(name)s)" + " in the frameset phase. Ignored.", + "unexpected-frameset-in-frameset-innerhtml": + "Unexpected end tag token (frameset) " + "in the frameset phase (innerHTML).", + "unexpected-end-tag-in-frameset": + "Unexpected end tag token (%(name)s)" + " in the frameset phase. Ignored.", + "unexpected-char-after-frameset": + "Unexpected non-space characters in the " + "after frameset phase. Ignored.", + "unexpected-start-tag-after-frameset": + "Unexpected start tag (%(name)s)" + " in the after frameset phase. Ignored.", + "unexpected-end-tag-after-frameset": + "Unexpected end tag (%(name)s)" + " in the after frameset phase. Ignored.", + "unexpected-end-tag-after-body-innerhtml": + "Unexpected end tag after body(innerHtml)", + "expected-eof-but-got-char": + "Unexpected non-space characters. Expected end of file.", + "expected-eof-but-got-start-tag": + "Unexpected start tag (%(name)s)" + ". Expected end of file.", + "expected-eof-but-got-end-tag": + "Unexpected end tag (%(name)s)" + ". Expected end of file.", + "eof-in-table": + "Unexpected end of file. Expected table content.", + "eof-in-select": + "Unexpected end of file. Expected select content.", + "eof-in-frameset": + "Unexpected end of file. Expected frameset content.", + "eof-in-script-in-script": + "Unexpected end of file. Expected script content.", + "eof-in-foreign-lands": + "Unexpected end of file. Expected foreign content", + "non-void-element-with-trailing-solidus": + "Trailing solidus not allowed on element %(name)s", + "unexpected-html-element-in-foreign-content": + "Element %(name)s not allowed in a non-html context", + "unexpected-end-tag-before-html": + "Unexpected end tag (%(name)s) before html.", + "unexpected-inhead-noscript-tag": + "Element %(name)s not allowed in a inhead-noscript context", + "eof-in-head-noscript": + "Unexpected end of file. Expected inhead-noscript content", + "char-in-head-noscript": + "Unexpected non-space character. Expected inhead-noscript content", + "XXX-undefined-error": + "Undefined error (this sucks and should be fixed)", +} + +namespaces = { + "html": "http://www.w3.org/1999/xhtml", + "mathml": "http://www.w3.org/1998/Math/MathML", + "svg": "http://www.w3.org/2000/svg", + "xlink": "http://www.w3.org/1999/xlink", + "xml": "http://www.w3.org/XML/1998/namespace", + "xmlns": "http://www.w3.org/2000/xmlns/" +} + +scopingElements = frozenset([ + (namespaces["html"], "applet"), + (namespaces["html"], "caption"), + (namespaces["html"], "html"), + (namespaces["html"], "marquee"), + (namespaces["html"], "object"), + (namespaces["html"], "table"), + (namespaces["html"], "td"), + (namespaces["html"], "th"), + (namespaces["mathml"], "mi"), + (namespaces["mathml"], "mo"), + (namespaces["mathml"], "mn"), + (namespaces["mathml"], "ms"), + (namespaces["mathml"], "mtext"), + (namespaces["mathml"], "annotation-xml"), + (namespaces["svg"], "foreignObject"), + (namespaces["svg"], "desc"), + (namespaces["svg"], "title"), +]) + +formattingElements = frozenset([ + (namespaces["html"], "a"), + (namespaces["html"], "b"), + (namespaces["html"], "big"), + (namespaces["html"], "code"), + (namespaces["html"], "em"), + (namespaces["html"], "font"), + (namespaces["html"], "i"), + (namespaces["html"], "nobr"), + (namespaces["html"], "s"), + (namespaces["html"], "small"), + (namespaces["html"], "strike"), + (namespaces["html"], "strong"), + (namespaces["html"], "tt"), + (namespaces["html"], "u") +]) + +specialElements = frozenset([ + (namespaces["html"], "address"), + (namespaces["html"], "applet"), + (namespaces["html"], "area"), + (namespaces["html"], "article"), + (namespaces["html"], "aside"), + (namespaces["html"], "base"), + (namespaces["html"], "basefont"), + (namespaces["html"], "bgsound"), + (namespaces["html"], "blockquote"), + (namespaces["html"], "body"), + (namespaces["html"], "br"), + (namespaces["html"], "button"), + (namespaces["html"], "caption"), + (namespaces["html"], "center"), + (namespaces["html"], "col"), + (namespaces["html"], "colgroup"), + (namespaces["html"], "command"), + (namespaces["html"], "dd"), + (namespaces["html"], "details"), + (namespaces["html"], "dir"), + (namespaces["html"], "div"), + (namespaces["html"], "dl"), + (namespaces["html"], "dt"), + (namespaces["html"], "embed"), + (namespaces["html"], "fieldset"), + (namespaces["html"], "figure"), + (namespaces["html"], "footer"), + (namespaces["html"], "form"), + (namespaces["html"], "frame"), + (namespaces["html"], "frameset"), + (namespaces["html"], "h1"), + (namespaces["html"], "h2"), + (namespaces["html"], "h3"), + (namespaces["html"], "h4"), + (namespaces["html"], "h5"), + (namespaces["html"], "h6"), + (namespaces["html"], "head"), + (namespaces["html"], "header"), + (namespaces["html"], "hr"), + (namespaces["html"], "html"), + (namespaces["html"], "iframe"), + # Note that image is commented out in the spec as "this isn't an + # element that can end up on the stack, so it doesn't matter," + (namespaces["html"], "image"), + (namespaces["html"], "img"), + (namespaces["html"], "input"), + (namespaces["html"], "isindex"), + (namespaces["html"], "li"), + (namespaces["html"], "link"), + (namespaces["html"], "listing"), + (namespaces["html"], "marquee"), + (namespaces["html"], "menu"), + (namespaces["html"], "meta"), + (namespaces["html"], "nav"), + (namespaces["html"], "noembed"), + (namespaces["html"], "noframes"), + (namespaces["html"], "noscript"), + (namespaces["html"], "object"), + (namespaces["html"], "ol"), + (namespaces["html"], "p"), + (namespaces["html"], "param"), + (namespaces["html"], "plaintext"), + (namespaces["html"], "pre"), + (namespaces["html"], "script"), + (namespaces["html"], "section"), + (namespaces["html"], "select"), + (namespaces["html"], "style"), + (namespaces["html"], "table"), + (namespaces["html"], "tbody"), + (namespaces["html"], "td"), + (namespaces["html"], "textarea"), + (namespaces["html"], "tfoot"), + (namespaces["html"], "th"), + (namespaces["html"], "thead"), + (namespaces["html"], "title"), + (namespaces["html"], "tr"), + (namespaces["html"], "ul"), + (namespaces["html"], "wbr"), + (namespaces["html"], "xmp"), + (namespaces["svg"], "foreignObject") +]) + +htmlIntegrationPointElements = frozenset([ + (namespaces["mathml"], "annotation-xml"), + (namespaces["svg"], "foreignObject"), + (namespaces["svg"], "desc"), + (namespaces["svg"], "title") +]) + +mathmlTextIntegrationPointElements = frozenset([ + (namespaces["mathml"], "mi"), + (namespaces["mathml"], "mo"), + (namespaces["mathml"], "mn"), + (namespaces["mathml"], "ms"), + (namespaces["mathml"], "mtext") +]) + +adjustSVGAttributes = { + "attributename": "attributeName", + "attributetype": "attributeType", + "basefrequency": "baseFrequency", + "baseprofile": "baseProfile", + "calcmode": "calcMode", + "clippathunits": "clipPathUnits", + "contentscripttype": "contentScriptType", + "contentstyletype": "contentStyleType", + "diffuseconstant": "diffuseConstant", + "edgemode": "edgeMode", + "externalresourcesrequired": "externalResourcesRequired", + "filterres": "filterRes", + "filterunits": "filterUnits", + "glyphref": "glyphRef", + "gradienttransform": "gradientTransform", + "gradientunits": "gradientUnits", + "kernelmatrix": "kernelMatrix", + "kernelunitlength": "kernelUnitLength", + "keypoints": "keyPoints", + "keysplines": "keySplines", + "keytimes": "keyTimes", + "lengthadjust": "lengthAdjust", + "limitingconeangle": "limitingConeAngle", + "markerheight": "markerHeight", + "markerunits": "markerUnits", + "markerwidth": "markerWidth", + "maskcontentunits": "maskContentUnits", + "maskunits": "maskUnits", + "numoctaves": "numOctaves", + "pathlength": "pathLength", + "patterncontentunits": "patternContentUnits", + "patterntransform": "patternTransform", + "patternunits": "patternUnits", + "pointsatx": "pointsAtX", + "pointsaty": "pointsAtY", + "pointsatz": "pointsAtZ", + "preservealpha": "preserveAlpha", + "preserveaspectratio": "preserveAspectRatio", + "primitiveunits": "primitiveUnits", + "refx": "refX", + "refy": "refY", + "repeatcount": "repeatCount", + "repeatdur": "repeatDur", + "requiredextensions": "requiredExtensions", + "requiredfeatures": "requiredFeatures", + "specularconstant": "specularConstant", + "specularexponent": "specularExponent", + "spreadmethod": "spreadMethod", + "startoffset": "startOffset", + "stddeviation": "stdDeviation", + "stitchtiles": "stitchTiles", + "surfacescale": "surfaceScale", + "systemlanguage": "systemLanguage", + "tablevalues": "tableValues", + "targetx": "targetX", + "targety": "targetY", + "textlength": "textLength", + "viewbox": "viewBox", + "viewtarget": "viewTarget", + "xchannelselector": "xChannelSelector", + "ychannelselector": "yChannelSelector", + "zoomandpan": "zoomAndPan" +} + +adjustMathMLAttributes = {"definitionurl": "definitionURL"} + +adjustForeignAttributes = { + "xlink:actuate": ("xlink", "actuate", namespaces["xlink"]), + "xlink:arcrole": ("xlink", "arcrole", namespaces["xlink"]), + "xlink:href": ("xlink", "href", namespaces["xlink"]), + "xlink:role": ("xlink", "role", namespaces["xlink"]), + "xlink:show": ("xlink", "show", namespaces["xlink"]), + "xlink:title": ("xlink", "title", namespaces["xlink"]), + "xlink:type": ("xlink", "type", namespaces["xlink"]), + "xml:base": ("xml", "base", namespaces["xml"]), + "xml:lang": ("xml", "lang", namespaces["xml"]), + "xml:space": ("xml", "space", namespaces["xml"]), + "xmlns": (None, "xmlns", namespaces["xmlns"]), + "xmlns:xlink": ("xmlns", "xlink", namespaces["xmlns"]) +} + +unadjustForeignAttributes = {(ns, local): qname for qname, (prefix, local, ns) in + adjustForeignAttributes.items()} + +spaceCharacters = frozenset([ + "\t", + "\n", + "\u000C", + " ", + "\r" +]) + +tableInsertModeElements = frozenset([ + "table", + "tbody", + "tfoot", + "thead", + "tr" +]) + +asciiLowercase = frozenset(string.ascii_lowercase) +asciiUppercase = frozenset(string.ascii_uppercase) +asciiLetters = frozenset(string.ascii_letters) +digits = frozenset(string.digits) +hexDigits = frozenset(string.hexdigits) + +asciiUpper2Lower = {ord(c): ord(c.lower()) for c in string.ascii_uppercase} + +# Heading elements need to be ordered +headingElements = ( + "h1", + "h2", + "h3", + "h4", + "h5", + "h6" +) + +voidElements = frozenset([ + "base", + "command", + "event-source", + "link", + "meta", + "hr", + "br", + "img", + "embed", + "param", + "area", + "col", + "input", + "source", + "track" +]) + +cdataElements = frozenset(['title', 'textarea']) + +rcdataElements = frozenset([ + 'style', + 'script', + 'xmp', + 'iframe', + 'noembed', + 'noframes', + 'noscript' +]) + +booleanAttributes = { + "": frozenset(["irrelevant", "itemscope"]), + "style": frozenset(["scoped"]), + "img": frozenset(["ismap"]), + "audio": frozenset(["autoplay", "controls"]), + "video": frozenset(["autoplay", "controls"]), + "script": frozenset(["defer", "async"]), + "details": frozenset(["open"]), + "datagrid": frozenset(["multiple", "disabled"]), + "command": frozenset(["hidden", "disabled", "checked", "default"]), + "hr": frozenset(["noshade"]), + "menu": frozenset(["autosubmit"]), + "fieldset": frozenset(["disabled", "readonly"]), + "option": frozenset(["disabled", "readonly", "selected"]), + "optgroup": frozenset(["disabled", "readonly"]), + "button": frozenset(["disabled", "autofocus"]), + "input": frozenset(["disabled", "readonly", "required", "autofocus", "checked", "ismap"]), + "select": frozenset(["disabled", "readonly", "autofocus", "multiple"]), + "output": frozenset(["disabled", "readonly"]), + "iframe": frozenset(["seamless"]), +} + +# entitiesWindows1252 has to be _ordered_ and needs to have an index. It +# therefore can't be a frozenset. +entitiesWindows1252 = ( + 8364, # 0x80 0x20AC EURO SIGN + 65533, # 0x81 UNDEFINED + 8218, # 0x82 0x201A SINGLE LOW-9 QUOTATION MARK + 402, # 0x83 0x0192 LATIN SMALL LETTER F WITH HOOK + 8222, # 0x84 0x201E DOUBLE LOW-9 QUOTATION MARK + 8230, # 0x85 0x2026 HORIZONTAL ELLIPSIS + 8224, # 0x86 0x2020 DAGGER + 8225, # 0x87 0x2021 DOUBLE DAGGER + 710, # 0x88 0x02C6 MODIFIER LETTER CIRCUMFLEX ACCENT + 8240, # 0x89 0x2030 PER MILLE SIGN + 352, # 0x8A 0x0160 LATIN CAPITAL LETTER S WITH CARON + 8249, # 0x8B 0x2039 SINGLE LEFT-POINTING ANGLE QUOTATION MARK + 338, # 0x8C 0x0152 LATIN CAPITAL LIGATURE OE + 65533, # 0x8D UNDEFINED + 381, # 0x8E 0x017D LATIN CAPITAL LETTER Z WITH CARON + 65533, # 0x8F UNDEFINED + 65533, # 0x90 UNDEFINED + 8216, # 0x91 0x2018 LEFT SINGLE QUOTATION MARK + 8217, # 0x92 0x2019 RIGHT SINGLE QUOTATION MARK + 8220, # 0x93 0x201C LEFT DOUBLE QUOTATION MARK + 8221, # 0x94 0x201D RIGHT DOUBLE QUOTATION MARK + 8226, # 0x95 0x2022 BULLET + 8211, # 0x96 0x2013 EN DASH + 8212, # 0x97 0x2014 EM DASH + 732, # 0x98 0x02DC SMALL TILDE + 8482, # 0x99 0x2122 TRADE MARK SIGN + 353, # 0x9A 0x0161 LATIN SMALL LETTER S WITH CARON + 8250, # 0x9B 0x203A SINGLE RIGHT-POINTING ANGLE QUOTATION MARK + 339, # 0x9C 0x0153 LATIN SMALL LIGATURE OE + 65533, # 0x9D UNDEFINED + 382, # 0x9E 0x017E LATIN SMALL LETTER Z WITH CARON + 376 # 0x9F 0x0178 LATIN CAPITAL LETTER Y WITH DIAERESIS +) + +xmlEntities = frozenset(['lt;', 'gt;', 'amp;', 'apos;', 'quot;']) + +entities = { + "AElig": "\xc6", + "AElig;": "\xc6", + "AMP": "&", + "AMP;": "&", + "Aacute": "\xc1", + "Aacute;": "\xc1", + "Abreve;": "\u0102", + "Acirc": "\xc2", + "Acirc;": "\xc2", + "Acy;": "\u0410", + "Afr;": "\U0001d504", + "Agrave": "\xc0", + "Agrave;": "\xc0", + "Alpha;": "\u0391", + "Amacr;": "\u0100", + "And;": "\u2a53", + "Aogon;": "\u0104", + "Aopf;": "\U0001d538", + "ApplyFunction;": "\u2061", + "Aring": "\xc5", + "Aring;": "\xc5", + "Ascr;": "\U0001d49c", + "Assign;": "\u2254", + "Atilde": "\xc3", + "Atilde;": "\xc3", + "Auml": "\xc4", + "Auml;": "\xc4", + "Backslash;": "\u2216", + "Barv;": "\u2ae7", + "Barwed;": "\u2306", + "Bcy;": "\u0411", + "Because;": "\u2235", + "Bernoullis;": "\u212c", + "Beta;": "\u0392", + "Bfr;": "\U0001d505", + "Bopf;": "\U0001d539", + "Breve;": "\u02d8", + "Bscr;": "\u212c", + "Bumpeq;": "\u224e", + "CHcy;": "\u0427", + "COPY": "\xa9", + "COPY;": "\xa9", + "Cacute;": "\u0106", + "Cap;": "\u22d2", + "CapitalDifferentialD;": "\u2145", + "Cayleys;": "\u212d", + "Ccaron;": "\u010c", + "Ccedil": "\xc7", + "Ccedil;": "\xc7", + "Ccirc;": "\u0108", + "Cconint;": "\u2230", + "Cdot;": "\u010a", + "Cedilla;": "\xb8", + "CenterDot;": "\xb7", + "Cfr;": "\u212d", + "Chi;": "\u03a7", + "CircleDot;": "\u2299", + "CircleMinus;": "\u2296", + "CirclePlus;": "\u2295", + "CircleTimes;": "\u2297", + "ClockwiseContourIntegral;": "\u2232", + "CloseCurlyDoubleQuote;": "\u201d", + "CloseCurlyQuote;": "\u2019", + "Colon;": "\u2237", + "Colone;": "\u2a74", + "Congruent;": "\u2261", + "Conint;": "\u222f", + "ContourIntegral;": "\u222e", + "Copf;": "\u2102", + "Coproduct;": "\u2210", + "CounterClockwiseContourIntegral;": "\u2233", + "Cross;": "\u2a2f", + "Cscr;": "\U0001d49e", + "Cup;": "\u22d3", + "CupCap;": "\u224d", + "DD;": "\u2145", + "DDotrahd;": "\u2911", + "DJcy;": "\u0402", + "DScy;": "\u0405", + "DZcy;": "\u040f", + "Dagger;": "\u2021", + "Darr;": "\u21a1", + "Dashv;": "\u2ae4", + "Dcaron;": "\u010e", + "Dcy;": "\u0414", + "Del;": "\u2207", + "Delta;": "\u0394", + "Dfr;": "\U0001d507", + "DiacriticalAcute;": "\xb4", + "DiacriticalDot;": "\u02d9", + "DiacriticalDoubleAcute;": "\u02dd", + "DiacriticalGrave;": "`", + "DiacriticalTilde;": "\u02dc", + "Diamond;": "\u22c4", + "DifferentialD;": "\u2146", + "Dopf;": "\U0001d53b", + "Dot;": "\xa8", + "DotDot;": "\u20dc", + "DotEqual;": "\u2250", + "DoubleContourIntegral;": "\u222f", + "DoubleDot;": "\xa8", + "DoubleDownArrow;": "\u21d3", + "DoubleLeftArrow;": "\u21d0", + "DoubleLeftRightArrow;": "\u21d4", + "DoubleLeftTee;": "\u2ae4", + "DoubleLongLeftArrow;": "\u27f8", + "DoubleLongLeftRightArrow;": "\u27fa", + "DoubleLongRightArrow;": "\u27f9", + "DoubleRightArrow;": "\u21d2", + "DoubleRightTee;": "\u22a8", + "DoubleUpArrow;": "\u21d1", + "DoubleUpDownArrow;": "\u21d5", + "DoubleVerticalBar;": "\u2225", + "DownArrow;": "\u2193", + "DownArrowBar;": "\u2913", + "DownArrowUpArrow;": "\u21f5", + "DownBreve;": "\u0311", + "DownLeftRightVector;": "\u2950", + "DownLeftTeeVector;": "\u295e", + "DownLeftVector;": "\u21bd", + "DownLeftVectorBar;": "\u2956", + "DownRightTeeVector;": "\u295f", + "DownRightVector;": "\u21c1", + "DownRightVectorBar;": "\u2957", + "DownTee;": "\u22a4", + "DownTeeArrow;": "\u21a7", + "Downarrow;": "\u21d3", + "Dscr;": "\U0001d49f", + "Dstrok;": "\u0110", + "ENG;": "\u014a", + "ETH": "\xd0", + "ETH;": "\xd0", + "Eacute": "\xc9", + "Eacute;": "\xc9", + "Ecaron;": "\u011a", + "Ecirc": "\xca", + "Ecirc;": "\xca", + "Ecy;": "\u042d", + "Edot;": "\u0116", + "Efr;": "\U0001d508", + "Egrave": "\xc8", + "Egrave;": "\xc8", + "Element;": "\u2208", + "Emacr;": "\u0112", + "EmptySmallSquare;": "\u25fb", + "EmptyVerySmallSquare;": "\u25ab", + "Eogon;": "\u0118", + "Eopf;": "\U0001d53c", + "Epsilon;": "\u0395", + "Equal;": "\u2a75", + "EqualTilde;": "\u2242", + "Equilibrium;": "\u21cc", + "Escr;": "\u2130", + "Esim;": "\u2a73", + "Eta;": "\u0397", + "Euml": "\xcb", + "Euml;": "\xcb", + "Exists;": "\u2203", + "ExponentialE;": "\u2147", + "Fcy;": "\u0424", + "Ffr;": "\U0001d509", + "FilledSmallSquare;": "\u25fc", + "FilledVerySmallSquare;": "\u25aa", + "Fopf;": "\U0001d53d", + "ForAll;": "\u2200", + "Fouriertrf;": "\u2131", + "Fscr;": "\u2131", + "GJcy;": "\u0403", + "GT": ">", + "GT;": ">", + "Gamma;": "\u0393", + "Gammad;": "\u03dc", + "Gbreve;": "\u011e", + "Gcedil;": "\u0122", + "Gcirc;": "\u011c", + "Gcy;": "\u0413", + "Gdot;": "\u0120", + "Gfr;": "\U0001d50a", + "Gg;": "\u22d9", + "Gopf;": "\U0001d53e", + "GreaterEqual;": "\u2265", + "GreaterEqualLess;": "\u22db", + "GreaterFullEqual;": "\u2267", + "GreaterGreater;": "\u2aa2", + "GreaterLess;": "\u2277", + "GreaterSlantEqual;": "\u2a7e", + "GreaterTilde;": "\u2273", + "Gscr;": "\U0001d4a2", + "Gt;": "\u226b", + "HARDcy;": "\u042a", + "Hacek;": "\u02c7", + "Hat;": "^", + "Hcirc;": "\u0124", + "Hfr;": "\u210c", + "HilbertSpace;": "\u210b", + "Hopf;": "\u210d", + "HorizontalLine;": "\u2500", + "Hscr;": "\u210b", + "Hstrok;": "\u0126", + "HumpDownHump;": "\u224e", + "HumpEqual;": "\u224f", + "IEcy;": "\u0415", + "IJlig;": "\u0132", + "IOcy;": "\u0401", + "Iacute": "\xcd", + "Iacute;": "\xcd", + "Icirc": "\xce", + "Icirc;": "\xce", + "Icy;": "\u0418", + "Idot;": "\u0130", + "Ifr;": "\u2111", + "Igrave": "\xcc", + "Igrave;": "\xcc", + "Im;": "\u2111", + "Imacr;": "\u012a", + "ImaginaryI;": "\u2148", + "Implies;": "\u21d2", + "Int;": "\u222c", + "Integral;": "\u222b", + "Intersection;": "\u22c2", + "InvisibleComma;": "\u2063", + "InvisibleTimes;": "\u2062", + "Iogon;": "\u012e", + "Iopf;": "\U0001d540", + "Iota;": "\u0399", + "Iscr;": "\u2110", + "Itilde;": "\u0128", + "Iukcy;": "\u0406", + "Iuml": "\xcf", + "Iuml;": "\xcf", + "Jcirc;": "\u0134", + "Jcy;": "\u0419", + "Jfr;": "\U0001d50d", + "Jopf;": "\U0001d541", + "Jscr;": "\U0001d4a5", + "Jsercy;": "\u0408", + "Jukcy;": "\u0404", + "KHcy;": "\u0425", + "KJcy;": "\u040c", + "Kappa;": "\u039a", + "Kcedil;": "\u0136", + "Kcy;": "\u041a", + "Kfr;": "\U0001d50e", + "Kopf;": "\U0001d542", + "Kscr;": "\U0001d4a6", + "LJcy;": "\u0409", + "LT": "<", + "LT;": "<", + "Lacute;": "\u0139", + "Lambda;": "\u039b", + "Lang;": "\u27ea", + "Laplacetrf;": "\u2112", + "Larr;": "\u219e", + "Lcaron;": "\u013d", + "Lcedil;": "\u013b", + "Lcy;": "\u041b", + "LeftAngleBracket;": "\u27e8", + "LeftArrow;": "\u2190", + "LeftArrowBar;": "\u21e4", + "LeftArrowRightArrow;": "\u21c6", + "LeftCeiling;": "\u2308", + "LeftDoubleBracket;": "\u27e6", + "LeftDownTeeVector;": "\u2961", + "LeftDownVector;": "\u21c3", + "LeftDownVectorBar;": "\u2959", + "LeftFloor;": "\u230a", + "LeftRightArrow;": "\u2194", + "LeftRightVector;": "\u294e", + "LeftTee;": "\u22a3", + "LeftTeeArrow;": "\u21a4", + "LeftTeeVector;": "\u295a", + "LeftTriangle;": "\u22b2", + "LeftTriangleBar;": "\u29cf", + "LeftTriangleEqual;": "\u22b4", + "LeftUpDownVector;": "\u2951", + "LeftUpTeeVector;": "\u2960", + "LeftUpVector;": "\u21bf", + "LeftUpVectorBar;": "\u2958", + "LeftVector;": "\u21bc", + "LeftVectorBar;": "\u2952", + "Leftarrow;": "\u21d0", + "Leftrightarrow;": "\u21d4", + "LessEqualGreater;": "\u22da", + "LessFullEqual;": "\u2266", + "LessGreater;": "\u2276", + "LessLess;": "\u2aa1", + "LessSlantEqual;": "\u2a7d", + "LessTilde;": "\u2272", + "Lfr;": "\U0001d50f", + "Ll;": "\u22d8", + "Lleftarrow;": "\u21da", + "Lmidot;": "\u013f", + "LongLeftArrow;": "\u27f5", + "LongLeftRightArrow;": "\u27f7", + "LongRightArrow;": "\u27f6", + "Longleftarrow;": "\u27f8", + "Longleftrightarrow;": "\u27fa", + "Longrightarrow;": "\u27f9", + "Lopf;": "\U0001d543", + "LowerLeftArrow;": "\u2199", + "LowerRightArrow;": "\u2198", + "Lscr;": "\u2112", + "Lsh;": "\u21b0", + "Lstrok;": "\u0141", + "Lt;": "\u226a", + "Map;": "\u2905", + "Mcy;": "\u041c", + "MediumSpace;": "\u205f", + "Mellintrf;": "\u2133", + "Mfr;": "\U0001d510", + "MinusPlus;": "\u2213", + "Mopf;": "\U0001d544", + "Mscr;": "\u2133", + "Mu;": "\u039c", + "NJcy;": "\u040a", + "Nacute;": "\u0143", + "Ncaron;": "\u0147", + "Ncedil;": "\u0145", + "Ncy;": "\u041d", + "NegativeMediumSpace;": "\u200b", + "NegativeThickSpace;": "\u200b", + "NegativeThinSpace;": "\u200b", + "NegativeVeryThinSpace;": "\u200b", + "NestedGreaterGreater;": "\u226b", + "NestedLessLess;": "\u226a", + "NewLine;": "\n", + "Nfr;": "\U0001d511", + "NoBreak;": "\u2060", + "NonBreakingSpace;": "\xa0", + "Nopf;": "\u2115", + "Not;": "\u2aec", + "NotCongruent;": "\u2262", + "NotCupCap;": "\u226d", + "NotDoubleVerticalBar;": "\u2226", + "NotElement;": "\u2209", + "NotEqual;": "\u2260", + "NotEqualTilde;": "\u2242\u0338", + "NotExists;": "\u2204", + "NotGreater;": "\u226f", + "NotGreaterEqual;": "\u2271", + "NotGreaterFullEqual;": "\u2267\u0338", + "NotGreaterGreater;": "\u226b\u0338", + "NotGreaterLess;": "\u2279", + "NotGreaterSlantEqual;": "\u2a7e\u0338", + "NotGreaterTilde;": "\u2275", + "NotHumpDownHump;": "\u224e\u0338", + "NotHumpEqual;": "\u224f\u0338", + "NotLeftTriangle;": "\u22ea", + "NotLeftTriangleBar;": "\u29cf\u0338", + "NotLeftTriangleEqual;": "\u22ec", + "NotLess;": "\u226e", + "NotLessEqual;": "\u2270", + "NotLessGreater;": "\u2278", + "NotLessLess;": "\u226a\u0338", + "NotLessSlantEqual;": "\u2a7d\u0338", + "NotLessTilde;": "\u2274", + "NotNestedGreaterGreater;": "\u2aa2\u0338", + "NotNestedLessLess;": "\u2aa1\u0338", + "NotPrecedes;": "\u2280", + "NotPrecedesEqual;": "\u2aaf\u0338", + "NotPrecedesSlantEqual;": "\u22e0", + "NotReverseElement;": "\u220c", + "NotRightTriangle;": "\u22eb", + "NotRightTriangleBar;": "\u29d0\u0338", + "NotRightTriangleEqual;": "\u22ed", + "NotSquareSubset;": "\u228f\u0338", + "NotSquareSubsetEqual;": "\u22e2", + "NotSquareSuperset;": "\u2290\u0338", + "NotSquareSupersetEqual;": "\u22e3", + "NotSubset;": "\u2282\u20d2", + "NotSubsetEqual;": "\u2288", + "NotSucceeds;": "\u2281", + "NotSucceedsEqual;": "\u2ab0\u0338", + "NotSucceedsSlantEqual;": "\u22e1", + "NotSucceedsTilde;": "\u227f\u0338", + "NotSuperset;": "\u2283\u20d2", + "NotSupersetEqual;": "\u2289", + "NotTilde;": "\u2241", + "NotTildeEqual;": "\u2244", + "NotTildeFullEqual;": "\u2247", + "NotTildeTilde;": "\u2249", + "NotVerticalBar;": "\u2224", + "Nscr;": "\U0001d4a9", + "Ntilde": "\xd1", + "Ntilde;": "\xd1", + "Nu;": "\u039d", + "OElig;": "\u0152", + "Oacute": "\xd3", + "Oacute;": "\xd3", + "Ocirc": "\xd4", + "Ocirc;": "\xd4", + "Ocy;": "\u041e", + "Odblac;": "\u0150", + "Ofr;": "\U0001d512", + "Ograve": "\xd2", + "Ograve;": "\xd2", + "Omacr;": "\u014c", + "Omega;": "\u03a9", + "Omicron;": "\u039f", + "Oopf;": "\U0001d546", + "OpenCurlyDoubleQuote;": "\u201c", + "OpenCurlyQuote;": "\u2018", + "Or;": "\u2a54", + "Oscr;": "\U0001d4aa", + "Oslash": "\xd8", + "Oslash;": "\xd8", + "Otilde": "\xd5", + "Otilde;": "\xd5", + "Otimes;": "\u2a37", + "Ouml": "\xd6", + "Ouml;": "\xd6", + "OverBar;": "\u203e", + "OverBrace;": "\u23de", + "OverBracket;": "\u23b4", + "OverParenthesis;": "\u23dc", + "PartialD;": "\u2202", + "Pcy;": "\u041f", + "Pfr;": "\U0001d513", + "Phi;": "\u03a6", + "Pi;": "\u03a0", + "PlusMinus;": "\xb1", + "Poincareplane;": "\u210c", + "Popf;": "\u2119", + "Pr;": "\u2abb", + "Precedes;": "\u227a", + "PrecedesEqual;": "\u2aaf", + "PrecedesSlantEqual;": "\u227c", + "PrecedesTilde;": "\u227e", + "Prime;": "\u2033", + "Product;": "\u220f", + "Proportion;": "\u2237", + "Proportional;": "\u221d", + "Pscr;": "\U0001d4ab", + "Psi;": "\u03a8", + "QUOT": "\"", + "QUOT;": "\"", + "Qfr;": "\U0001d514", + "Qopf;": "\u211a", + "Qscr;": "\U0001d4ac", + "RBarr;": "\u2910", + "REG": "\xae", + "REG;": "\xae", + "Racute;": "\u0154", + "Rang;": "\u27eb", + "Rarr;": "\u21a0", + "Rarrtl;": "\u2916", + "Rcaron;": "\u0158", + "Rcedil;": "\u0156", + "Rcy;": "\u0420", + "Re;": "\u211c", + "ReverseElement;": "\u220b", + "ReverseEquilibrium;": "\u21cb", + "ReverseUpEquilibrium;": "\u296f", + "Rfr;": "\u211c", + "Rho;": "\u03a1", + "RightAngleBracket;": "\u27e9", + "RightArrow;": "\u2192", + "RightArrowBar;": "\u21e5", + "RightArrowLeftArrow;": "\u21c4", + "RightCeiling;": "\u2309", + "RightDoubleBracket;": "\u27e7", + "RightDownTeeVector;": "\u295d", + "RightDownVector;": "\u21c2", + "RightDownVectorBar;": "\u2955", + "RightFloor;": "\u230b", + "RightTee;": "\u22a2", + "RightTeeArrow;": "\u21a6", + "RightTeeVector;": "\u295b", + "RightTriangle;": "\u22b3", + "RightTriangleBar;": "\u29d0", + "RightTriangleEqual;": "\u22b5", + "RightUpDownVector;": "\u294f", + "RightUpTeeVector;": "\u295c", + "RightUpVector;": "\u21be", + "RightUpVectorBar;": "\u2954", + "RightVector;": "\u21c0", + "RightVectorBar;": "\u2953", + "Rightarrow;": "\u21d2", + "Ropf;": "\u211d", + "RoundImplies;": "\u2970", + "Rrightarrow;": "\u21db", + "Rscr;": "\u211b", + "Rsh;": "\u21b1", + "RuleDelayed;": "\u29f4", + "SHCHcy;": "\u0429", + "SHcy;": "\u0428", + "SOFTcy;": "\u042c", + "Sacute;": "\u015a", + "Sc;": "\u2abc", + "Scaron;": "\u0160", + "Scedil;": "\u015e", + "Scirc;": "\u015c", + "Scy;": "\u0421", + "Sfr;": "\U0001d516", + "ShortDownArrow;": "\u2193", + "ShortLeftArrow;": "\u2190", + "ShortRightArrow;": "\u2192", + "ShortUpArrow;": "\u2191", + "Sigma;": "\u03a3", + "SmallCircle;": "\u2218", + "Sopf;": "\U0001d54a", + "Sqrt;": "\u221a", + "Square;": "\u25a1", + "SquareIntersection;": "\u2293", + "SquareSubset;": "\u228f", + "SquareSubsetEqual;": "\u2291", + "SquareSuperset;": "\u2290", + "SquareSupersetEqual;": "\u2292", + "SquareUnion;": "\u2294", + "Sscr;": "\U0001d4ae", + "Star;": "\u22c6", + "Sub;": "\u22d0", + "Subset;": "\u22d0", + "SubsetEqual;": "\u2286", + "Succeeds;": "\u227b", + "SucceedsEqual;": "\u2ab0", + "SucceedsSlantEqual;": "\u227d", + "SucceedsTilde;": "\u227f", + "SuchThat;": "\u220b", + "Sum;": "\u2211", + "Sup;": "\u22d1", + "Superset;": "\u2283", + "SupersetEqual;": "\u2287", + "Supset;": "\u22d1", + "THORN": "\xde", + "THORN;": "\xde", + "TRADE;": "\u2122", + "TSHcy;": "\u040b", + "TScy;": "\u0426", + "Tab;": "\t", + "Tau;": "\u03a4", + "Tcaron;": "\u0164", + "Tcedil;": "\u0162", + "Tcy;": "\u0422", + "Tfr;": "\U0001d517", + "Therefore;": "\u2234", + "Theta;": "\u0398", + "ThickSpace;": "\u205f\u200a", + "ThinSpace;": "\u2009", + "Tilde;": "\u223c", + "TildeEqual;": "\u2243", + "TildeFullEqual;": "\u2245", + "TildeTilde;": "\u2248", + "Topf;": "\U0001d54b", + "TripleDot;": "\u20db", + "Tscr;": "\U0001d4af", + "Tstrok;": "\u0166", + "Uacute": "\xda", + "Uacute;": "\xda", + "Uarr;": "\u219f", + "Uarrocir;": "\u2949", + "Ubrcy;": "\u040e", + "Ubreve;": "\u016c", + "Ucirc": "\xdb", + "Ucirc;": "\xdb", + "Ucy;": "\u0423", + "Udblac;": "\u0170", + "Ufr;": "\U0001d518", + "Ugrave": "\xd9", + "Ugrave;": "\xd9", + "Umacr;": "\u016a", + "UnderBar;": "_", + "UnderBrace;": "\u23df", + "UnderBracket;": "\u23b5", + "UnderParenthesis;": "\u23dd", + "Union;": "\u22c3", + "UnionPlus;": "\u228e", + "Uogon;": "\u0172", + "Uopf;": "\U0001d54c", + "UpArrow;": "\u2191", + "UpArrowBar;": "\u2912", + "UpArrowDownArrow;": "\u21c5", + "UpDownArrow;": "\u2195", + "UpEquilibrium;": "\u296e", + "UpTee;": "\u22a5", + "UpTeeArrow;": "\u21a5", + "Uparrow;": "\u21d1", + "Updownarrow;": "\u21d5", + "UpperLeftArrow;": "\u2196", + "UpperRightArrow;": "\u2197", + "Upsi;": "\u03d2", + "Upsilon;": "\u03a5", + "Uring;": "\u016e", + "Uscr;": "\U0001d4b0", + "Utilde;": "\u0168", + "Uuml": "\xdc", + "Uuml;": "\xdc", + "VDash;": "\u22ab", + "Vbar;": "\u2aeb", + "Vcy;": "\u0412", + "Vdash;": "\u22a9", + "Vdashl;": "\u2ae6", + "Vee;": "\u22c1", + "Verbar;": "\u2016", + "Vert;": "\u2016", + "VerticalBar;": "\u2223", + "VerticalLine;": "|", + "VerticalSeparator;": "\u2758", + "VerticalTilde;": "\u2240", + "VeryThinSpace;": "\u200a", + "Vfr;": "\U0001d519", + "Vopf;": "\U0001d54d", + "Vscr;": "\U0001d4b1", + "Vvdash;": "\u22aa", + "Wcirc;": "\u0174", + "Wedge;": "\u22c0", + "Wfr;": "\U0001d51a", + "Wopf;": "\U0001d54e", + "Wscr;": "\U0001d4b2", + "Xfr;": "\U0001d51b", + "Xi;": "\u039e", + "Xopf;": "\U0001d54f", + "Xscr;": "\U0001d4b3", + "YAcy;": "\u042f", + "YIcy;": "\u0407", + "YUcy;": "\u042e", + "Yacute": "\xdd", + "Yacute;": "\xdd", + "Ycirc;": "\u0176", + "Ycy;": "\u042b", + "Yfr;": "\U0001d51c", + "Yopf;": "\U0001d550", + "Yscr;": "\U0001d4b4", + "Yuml;": "\u0178", + "ZHcy;": "\u0416", + "Zacute;": "\u0179", + "Zcaron;": "\u017d", + "Zcy;": "\u0417", + "Zdot;": "\u017b", + "ZeroWidthSpace;": "\u200b", + "Zeta;": "\u0396", + "Zfr;": "\u2128", + "Zopf;": "\u2124", + "Zscr;": "\U0001d4b5", + "aacute": "\xe1", + "aacute;": "\xe1", + "abreve;": "\u0103", + "ac;": "\u223e", + "acE;": "\u223e\u0333", + "acd;": "\u223f", + "acirc": "\xe2", + "acirc;": "\xe2", + "acute": "\xb4", + "acute;": "\xb4", + "acy;": "\u0430", + "aelig": "\xe6", + "aelig;": "\xe6", + "af;": "\u2061", + "afr;": "\U0001d51e", + "agrave": "\xe0", + "agrave;": "\xe0", + "alefsym;": "\u2135", + "aleph;": "\u2135", + "alpha;": "\u03b1", + "amacr;": "\u0101", + "amalg;": "\u2a3f", + "amp": "&", + "amp;": "&", + "and;": "\u2227", + "andand;": "\u2a55", + "andd;": "\u2a5c", + "andslope;": "\u2a58", + "andv;": "\u2a5a", + "ang;": "\u2220", + "ange;": "\u29a4", + "angle;": "\u2220", + "angmsd;": "\u2221", + "angmsdaa;": "\u29a8", + "angmsdab;": "\u29a9", + "angmsdac;": "\u29aa", + "angmsdad;": "\u29ab", + "angmsdae;": "\u29ac", + "angmsdaf;": "\u29ad", + "angmsdag;": "\u29ae", + "angmsdah;": "\u29af", + "angrt;": "\u221f", + "angrtvb;": "\u22be", + "angrtvbd;": "\u299d", + "angsph;": "\u2222", + "angst;": "\xc5", + "angzarr;": "\u237c", + "aogon;": "\u0105", + "aopf;": "\U0001d552", + "ap;": "\u2248", + "apE;": "\u2a70", + "apacir;": "\u2a6f", + "ape;": "\u224a", + "apid;": "\u224b", + "apos;": "'", + "approx;": "\u2248", + "approxeq;": "\u224a", + "aring": "\xe5", + "aring;": "\xe5", + "ascr;": "\U0001d4b6", + "ast;": "*", + "asymp;": "\u2248", + "asympeq;": "\u224d", + "atilde": "\xe3", + "atilde;": "\xe3", + "auml": "\xe4", + "auml;": "\xe4", + "awconint;": "\u2233", + "awint;": "\u2a11", + "bNot;": "\u2aed", + "backcong;": "\u224c", + "backepsilon;": "\u03f6", + "backprime;": "\u2035", + "backsim;": "\u223d", + "backsimeq;": "\u22cd", + "barvee;": "\u22bd", + "barwed;": "\u2305", + "barwedge;": "\u2305", + "bbrk;": "\u23b5", + "bbrktbrk;": "\u23b6", + "bcong;": "\u224c", + "bcy;": "\u0431", + "bdquo;": "\u201e", + "becaus;": "\u2235", + "because;": "\u2235", + "bemptyv;": "\u29b0", + "bepsi;": "\u03f6", + "bernou;": "\u212c", + "beta;": "\u03b2", + "beth;": "\u2136", + "between;": "\u226c", + "bfr;": "\U0001d51f", + "bigcap;": "\u22c2", + "bigcirc;": "\u25ef", + "bigcup;": "\u22c3", + "bigodot;": "\u2a00", + "bigoplus;": "\u2a01", + "bigotimes;": "\u2a02", + "bigsqcup;": "\u2a06", + "bigstar;": "\u2605", + "bigtriangledown;": "\u25bd", + "bigtriangleup;": "\u25b3", + "biguplus;": "\u2a04", + "bigvee;": "\u22c1", + "bigwedge;": "\u22c0", + "bkarow;": "\u290d", + "blacklozenge;": "\u29eb", + "blacksquare;": "\u25aa", + "blacktriangle;": "\u25b4", + "blacktriangledown;": "\u25be", + "blacktriangleleft;": "\u25c2", + "blacktriangleright;": "\u25b8", + "blank;": "\u2423", + "blk12;": "\u2592", + "blk14;": "\u2591", + "blk34;": "\u2593", + "block;": "\u2588", + "bne;": "=\u20e5", + "bnequiv;": "\u2261\u20e5", + "bnot;": "\u2310", + "bopf;": "\U0001d553", + "bot;": "\u22a5", + "bottom;": "\u22a5", + "bowtie;": "\u22c8", + "boxDL;": "\u2557", + "boxDR;": "\u2554", + "boxDl;": "\u2556", + "boxDr;": "\u2553", + "boxH;": "\u2550", + "boxHD;": "\u2566", + "boxHU;": "\u2569", + "boxHd;": "\u2564", + "boxHu;": "\u2567", + "boxUL;": "\u255d", + "boxUR;": "\u255a", + "boxUl;": "\u255c", + "boxUr;": "\u2559", + "boxV;": "\u2551", + "boxVH;": "\u256c", + "boxVL;": "\u2563", + "boxVR;": "\u2560", + "boxVh;": "\u256b", + "boxVl;": "\u2562", + "boxVr;": "\u255f", + "boxbox;": "\u29c9", + "boxdL;": "\u2555", + "boxdR;": "\u2552", + "boxdl;": "\u2510", + "boxdr;": "\u250c", + "boxh;": "\u2500", + "boxhD;": "\u2565", + "boxhU;": "\u2568", + "boxhd;": "\u252c", + "boxhu;": "\u2534", + "boxminus;": "\u229f", + "boxplus;": "\u229e", + "boxtimes;": "\u22a0", + "boxuL;": "\u255b", + "boxuR;": "\u2558", + "boxul;": "\u2518", + "boxur;": "\u2514", + "boxv;": "\u2502", + "boxvH;": "\u256a", + "boxvL;": "\u2561", + "boxvR;": "\u255e", + "boxvh;": "\u253c", + "boxvl;": "\u2524", + "boxvr;": "\u251c", + "bprime;": "\u2035", + "breve;": "\u02d8", + "brvbar": "\xa6", + "brvbar;": "\xa6", + "bscr;": "\U0001d4b7", + "bsemi;": "\u204f", + "bsim;": "\u223d", + "bsime;": "\u22cd", + "bsol;": "\\", + "bsolb;": "\u29c5", + "bsolhsub;": "\u27c8", + "bull;": "\u2022", + "bullet;": "\u2022", + "bump;": "\u224e", + "bumpE;": "\u2aae", + "bumpe;": "\u224f", + "bumpeq;": "\u224f", + "cacute;": "\u0107", + "cap;": "\u2229", + "capand;": "\u2a44", + "capbrcup;": "\u2a49", + "capcap;": "\u2a4b", + "capcup;": "\u2a47", + "capdot;": "\u2a40", + "caps;": "\u2229\ufe00", + "caret;": "\u2041", + "caron;": "\u02c7", + "ccaps;": "\u2a4d", + "ccaron;": "\u010d", + "ccedil": "\xe7", + "ccedil;": "\xe7", + "ccirc;": "\u0109", + "ccups;": "\u2a4c", + "ccupssm;": "\u2a50", + "cdot;": "\u010b", + "cedil": "\xb8", + "cedil;": "\xb8", + "cemptyv;": "\u29b2", + "cent": "\xa2", + "cent;": "\xa2", + "centerdot;": "\xb7", + "cfr;": "\U0001d520", + "chcy;": "\u0447", + "check;": "\u2713", + "checkmark;": "\u2713", + "chi;": "\u03c7", + "cir;": "\u25cb", + "cirE;": "\u29c3", + "circ;": "\u02c6", + "circeq;": "\u2257", + "circlearrowleft;": "\u21ba", + "circlearrowright;": "\u21bb", + "circledR;": "\xae", + "circledS;": "\u24c8", + "circledast;": "\u229b", + "circledcirc;": "\u229a", + "circleddash;": "\u229d", + "cire;": "\u2257", + "cirfnint;": "\u2a10", + "cirmid;": "\u2aef", + "cirscir;": "\u29c2", + "clubs;": "\u2663", + "clubsuit;": "\u2663", + "colon;": ":", + "colone;": "\u2254", + "coloneq;": "\u2254", + "comma;": ",", + "commat;": "@", + "comp;": "\u2201", + "compfn;": "\u2218", + "complement;": "\u2201", + "complexes;": "\u2102", + "cong;": "\u2245", + "congdot;": "\u2a6d", + "conint;": "\u222e", + "copf;": "\U0001d554", + "coprod;": "\u2210", + "copy": "\xa9", + "copy;": "\xa9", + "copysr;": "\u2117", + "crarr;": "\u21b5", + "cross;": "\u2717", + "cscr;": "\U0001d4b8", + "csub;": "\u2acf", + "csube;": "\u2ad1", + "csup;": "\u2ad0", + "csupe;": "\u2ad2", + "ctdot;": "\u22ef", + "cudarrl;": "\u2938", + "cudarrr;": "\u2935", + "cuepr;": "\u22de", + "cuesc;": "\u22df", + "cularr;": "\u21b6", + "cularrp;": "\u293d", + "cup;": "\u222a", + "cupbrcap;": "\u2a48", + "cupcap;": "\u2a46", + "cupcup;": "\u2a4a", + "cupdot;": "\u228d", + "cupor;": "\u2a45", + "cups;": "\u222a\ufe00", + "curarr;": "\u21b7", + "curarrm;": "\u293c", + "curlyeqprec;": "\u22de", + "curlyeqsucc;": "\u22df", + "curlyvee;": "\u22ce", + "curlywedge;": "\u22cf", + "curren": "\xa4", + "curren;": "\xa4", + "curvearrowleft;": "\u21b6", + "curvearrowright;": "\u21b7", + "cuvee;": "\u22ce", + "cuwed;": "\u22cf", + "cwconint;": "\u2232", + "cwint;": "\u2231", + "cylcty;": "\u232d", + "dArr;": "\u21d3", + "dHar;": "\u2965", + "dagger;": "\u2020", + "daleth;": "\u2138", + "darr;": "\u2193", + "dash;": "\u2010", + "dashv;": "\u22a3", + "dbkarow;": "\u290f", + "dblac;": "\u02dd", + "dcaron;": "\u010f", + "dcy;": "\u0434", + "dd;": "\u2146", + "ddagger;": "\u2021", + "ddarr;": "\u21ca", + "ddotseq;": "\u2a77", + "deg": "\xb0", + "deg;": "\xb0", + "delta;": "\u03b4", + "demptyv;": "\u29b1", + "dfisht;": "\u297f", + "dfr;": "\U0001d521", + "dharl;": "\u21c3", + "dharr;": "\u21c2", + "diam;": "\u22c4", + "diamond;": "\u22c4", + "diamondsuit;": "\u2666", + "diams;": "\u2666", + "die;": "\xa8", + "digamma;": "\u03dd", + "disin;": "\u22f2", + "div;": "\xf7", + "divide": "\xf7", + "divide;": "\xf7", + "divideontimes;": "\u22c7", + "divonx;": "\u22c7", + "djcy;": "\u0452", + "dlcorn;": "\u231e", + "dlcrop;": "\u230d", + "dollar;": "$", + "dopf;": "\U0001d555", + "dot;": "\u02d9", + "doteq;": "\u2250", + "doteqdot;": "\u2251", + "dotminus;": "\u2238", + "dotplus;": "\u2214", + "dotsquare;": "\u22a1", + "doublebarwedge;": "\u2306", + "downarrow;": "\u2193", + "downdownarrows;": "\u21ca", + "downharpoonleft;": "\u21c3", + "downharpoonright;": "\u21c2", + "drbkarow;": "\u2910", + "drcorn;": "\u231f", + "drcrop;": "\u230c", + "dscr;": "\U0001d4b9", + "dscy;": "\u0455", + "dsol;": "\u29f6", + "dstrok;": "\u0111", + "dtdot;": "\u22f1", + "dtri;": "\u25bf", + "dtrif;": "\u25be", + "duarr;": "\u21f5", + "duhar;": "\u296f", + "dwangle;": "\u29a6", + "dzcy;": "\u045f", + "dzigrarr;": "\u27ff", + "eDDot;": "\u2a77", + "eDot;": "\u2251", + "eacute": "\xe9", + "eacute;": "\xe9", + "easter;": "\u2a6e", + "ecaron;": "\u011b", + "ecir;": "\u2256", + "ecirc": "\xea", + "ecirc;": "\xea", + "ecolon;": "\u2255", + "ecy;": "\u044d", + "edot;": "\u0117", + "ee;": "\u2147", + "efDot;": "\u2252", + "efr;": "\U0001d522", + "eg;": "\u2a9a", + "egrave": "\xe8", + "egrave;": "\xe8", + "egs;": "\u2a96", + "egsdot;": "\u2a98", + "el;": "\u2a99", + "elinters;": "\u23e7", + "ell;": "\u2113", + "els;": "\u2a95", + "elsdot;": "\u2a97", + "emacr;": "\u0113", + "empty;": "\u2205", + "emptyset;": "\u2205", + "emptyv;": "\u2205", + "emsp13;": "\u2004", + "emsp14;": "\u2005", + "emsp;": "\u2003", + "eng;": "\u014b", + "ensp;": "\u2002", + "eogon;": "\u0119", + "eopf;": "\U0001d556", + "epar;": "\u22d5", + "eparsl;": "\u29e3", + "eplus;": "\u2a71", + "epsi;": "\u03b5", + "epsilon;": "\u03b5", + "epsiv;": "\u03f5", + "eqcirc;": "\u2256", + "eqcolon;": "\u2255", + "eqsim;": "\u2242", + "eqslantgtr;": "\u2a96", + "eqslantless;": "\u2a95", + "equals;": "=", + "equest;": "\u225f", + "equiv;": "\u2261", + "equivDD;": "\u2a78", + "eqvparsl;": "\u29e5", + "erDot;": "\u2253", + "erarr;": "\u2971", + "escr;": "\u212f", + "esdot;": "\u2250", + "esim;": "\u2242", + "eta;": "\u03b7", + "eth": "\xf0", + "eth;": "\xf0", + "euml": "\xeb", + "euml;": "\xeb", + "euro;": "\u20ac", + "excl;": "!", + "exist;": "\u2203", + "expectation;": "\u2130", + "exponentiale;": "\u2147", + "fallingdotseq;": "\u2252", + "fcy;": "\u0444", + "female;": "\u2640", + "ffilig;": "\ufb03", + "fflig;": "\ufb00", + "ffllig;": "\ufb04", + "ffr;": "\U0001d523", + "filig;": "\ufb01", + "fjlig;": "fj", + "flat;": "\u266d", + "fllig;": "\ufb02", + "fltns;": "\u25b1", + "fnof;": "\u0192", + "fopf;": "\U0001d557", + "forall;": "\u2200", + "fork;": "\u22d4", + "forkv;": "\u2ad9", + "fpartint;": "\u2a0d", + "frac12": "\xbd", + "frac12;": "\xbd", + "frac13;": "\u2153", + "frac14": "\xbc", + "frac14;": "\xbc", + "frac15;": "\u2155", + "frac16;": "\u2159", + "frac18;": "\u215b", + "frac23;": "\u2154", + "frac25;": "\u2156", + "frac34": "\xbe", + "frac34;": "\xbe", + "frac35;": "\u2157", + "frac38;": "\u215c", + "frac45;": "\u2158", + "frac56;": "\u215a", + "frac58;": "\u215d", + "frac78;": "\u215e", + "frasl;": "\u2044", + "frown;": "\u2322", + "fscr;": "\U0001d4bb", + "gE;": "\u2267", + "gEl;": "\u2a8c", + "gacute;": "\u01f5", + "gamma;": "\u03b3", + "gammad;": "\u03dd", + "gap;": "\u2a86", + "gbreve;": "\u011f", + "gcirc;": "\u011d", + "gcy;": "\u0433", + "gdot;": "\u0121", + "ge;": "\u2265", + "gel;": "\u22db", + "geq;": "\u2265", + "geqq;": "\u2267", + "geqslant;": "\u2a7e", + "ges;": "\u2a7e", + "gescc;": "\u2aa9", + "gesdot;": "\u2a80", + "gesdoto;": "\u2a82", + "gesdotol;": "\u2a84", + "gesl;": "\u22db\ufe00", + "gesles;": "\u2a94", + "gfr;": "\U0001d524", + "gg;": "\u226b", + "ggg;": "\u22d9", + "gimel;": "\u2137", + "gjcy;": "\u0453", + "gl;": "\u2277", + "glE;": "\u2a92", + "gla;": "\u2aa5", + "glj;": "\u2aa4", + "gnE;": "\u2269", + "gnap;": "\u2a8a", + "gnapprox;": "\u2a8a", + "gne;": "\u2a88", + "gneq;": "\u2a88", + "gneqq;": "\u2269", + "gnsim;": "\u22e7", + "gopf;": "\U0001d558", + "grave;": "`", + "gscr;": "\u210a", + "gsim;": "\u2273", + "gsime;": "\u2a8e", + "gsiml;": "\u2a90", + "gt": ">", + "gt;": ">", + "gtcc;": "\u2aa7", + "gtcir;": "\u2a7a", + "gtdot;": "\u22d7", + "gtlPar;": "\u2995", + "gtquest;": "\u2a7c", + "gtrapprox;": "\u2a86", + "gtrarr;": "\u2978", + "gtrdot;": "\u22d7", + "gtreqless;": "\u22db", + "gtreqqless;": "\u2a8c", + "gtrless;": "\u2277", + "gtrsim;": "\u2273", + "gvertneqq;": "\u2269\ufe00", + "gvnE;": "\u2269\ufe00", + "hArr;": "\u21d4", + "hairsp;": "\u200a", + "half;": "\xbd", + "hamilt;": "\u210b", + "hardcy;": "\u044a", + "harr;": "\u2194", + "harrcir;": "\u2948", + "harrw;": "\u21ad", + "hbar;": "\u210f", + "hcirc;": "\u0125", + "hearts;": "\u2665", + "heartsuit;": "\u2665", + "hellip;": "\u2026", + "hercon;": "\u22b9", + "hfr;": "\U0001d525", + "hksearow;": "\u2925", + "hkswarow;": "\u2926", + "hoarr;": "\u21ff", + "homtht;": "\u223b", + "hookleftarrow;": "\u21a9", + "hookrightarrow;": "\u21aa", + "hopf;": "\U0001d559", + "horbar;": "\u2015", + "hscr;": "\U0001d4bd", + "hslash;": "\u210f", + "hstrok;": "\u0127", + "hybull;": "\u2043", + "hyphen;": "\u2010", + "iacute": "\xed", + "iacute;": "\xed", + "ic;": "\u2063", + "icirc": "\xee", + "icirc;": "\xee", + "icy;": "\u0438", + "iecy;": "\u0435", + "iexcl": "\xa1", + "iexcl;": "\xa1", + "iff;": "\u21d4", + "ifr;": "\U0001d526", + "igrave": "\xec", + "igrave;": "\xec", + "ii;": "\u2148", + "iiiint;": "\u2a0c", + "iiint;": "\u222d", + "iinfin;": "\u29dc", + "iiota;": "\u2129", + "ijlig;": "\u0133", + "imacr;": "\u012b", + "image;": "\u2111", + "imagline;": "\u2110", + "imagpart;": "\u2111", + "imath;": "\u0131", + "imof;": "\u22b7", + "imped;": "\u01b5", + "in;": "\u2208", + "incare;": "\u2105", + "infin;": "\u221e", + "infintie;": "\u29dd", + "inodot;": "\u0131", + "int;": "\u222b", + "intcal;": "\u22ba", + "integers;": "\u2124", + "intercal;": "\u22ba", + "intlarhk;": "\u2a17", + "intprod;": "\u2a3c", + "iocy;": "\u0451", + "iogon;": "\u012f", + "iopf;": "\U0001d55a", + "iota;": "\u03b9", + "iprod;": "\u2a3c", + "iquest": "\xbf", + "iquest;": "\xbf", + "iscr;": "\U0001d4be", + "isin;": "\u2208", + "isinE;": "\u22f9", + "isindot;": "\u22f5", + "isins;": "\u22f4", + "isinsv;": "\u22f3", + "isinv;": "\u2208", + "it;": "\u2062", + "itilde;": "\u0129", + "iukcy;": "\u0456", + "iuml": "\xef", + "iuml;": "\xef", + "jcirc;": "\u0135", + "jcy;": "\u0439", + "jfr;": "\U0001d527", + "jmath;": "\u0237", + "jopf;": "\U0001d55b", + "jscr;": "\U0001d4bf", + "jsercy;": "\u0458", + "jukcy;": "\u0454", + "kappa;": "\u03ba", + "kappav;": "\u03f0", + "kcedil;": "\u0137", + "kcy;": "\u043a", + "kfr;": "\U0001d528", + "kgreen;": "\u0138", + "khcy;": "\u0445", + "kjcy;": "\u045c", + "kopf;": "\U0001d55c", + "kscr;": "\U0001d4c0", + "lAarr;": "\u21da", + "lArr;": "\u21d0", + "lAtail;": "\u291b", + "lBarr;": "\u290e", + "lE;": "\u2266", + "lEg;": "\u2a8b", + "lHar;": "\u2962", + "lacute;": "\u013a", + "laemptyv;": "\u29b4", + "lagran;": "\u2112", + "lambda;": "\u03bb", + "lang;": "\u27e8", + "langd;": "\u2991", + "langle;": "\u27e8", + "lap;": "\u2a85", + "laquo": "\xab", + "laquo;": "\xab", + "larr;": "\u2190", + "larrb;": "\u21e4", + "larrbfs;": "\u291f", + "larrfs;": "\u291d", + "larrhk;": "\u21a9", + "larrlp;": "\u21ab", + "larrpl;": "\u2939", + "larrsim;": "\u2973", + "larrtl;": "\u21a2", + "lat;": "\u2aab", + "latail;": "\u2919", + "late;": "\u2aad", + "lates;": "\u2aad\ufe00", + "lbarr;": "\u290c", + "lbbrk;": "\u2772", + "lbrace;": "{", + "lbrack;": "[", + "lbrke;": "\u298b", + "lbrksld;": "\u298f", + "lbrkslu;": "\u298d", + "lcaron;": "\u013e", + "lcedil;": "\u013c", + "lceil;": "\u2308", + "lcub;": "{", + "lcy;": "\u043b", + "ldca;": "\u2936", + "ldquo;": "\u201c", + "ldquor;": "\u201e", + "ldrdhar;": "\u2967", + "ldrushar;": "\u294b", + "ldsh;": "\u21b2", + "le;": "\u2264", + "leftarrow;": "\u2190", + "leftarrowtail;": "\u21a2", + "leftharpoondown;": "\u21bd", + "leftharpoonup;": "\u21bc", + "leftleftarrows;": "\u21c7", + "leftrightarrow;": "\u2194", + "leftrightarrows;": "\u21c6", + "leftrightharpoons;": "\u21cb", + "leftrightsquigarrow;": "\u21ad", + "leftthreetimes;": "\u22cb", + "leg;": "\u22da", + "leq;": "\u2264", + "leqq;": "\u2266", + "leqslant;": "\u2a7d", + "les;": "\u2a7d", + "lescc;": "\u2aa8", + "lesdot;": "\u2a7f", + "lesdoto;": "\u2a81", + "lesdotor;": "\u2a83", + "lesg;": "\u22da\ufe00", + "lesges;": "\u2a93", + "lessapprox;": "\u2a85", + "lessdot;": "\u22d6", + "lesseqgtr;": "\u22da", + "lesseqqgtr;": "\u2a8b", + "lessgtr;": "\u2276", + "lesssim;": "\u2272", + "lfisht;": "\u297c", + "lfloor;": "\u230a", + "lfr;": "\U0001d529", + "lg;": "\u2276", + "lgE;": "\u2a91", + "lhard;": "\u21bd", + "lharu;": "\u21bc", + "lharul;": "\u296a", + "lhblk;": "\u2584", + "ljcy;": "\u0459", + "ll;": "\u226a", + "llarr;": "\u21c7", + "llcorner;": "\u231e", + "llhard;": "\u296b", + "lltri;": "\u25fa", + "lmidot;": "\u0140", + "lmoust;": "\u23b0", + "lmoustache;": "\u23b0", + "lnE;": "\u2268", + "lnap;": "\u2a89", + "lnapprox;": "\u2a89", + "lne;": "\u2a87", + "lneq;": "\u2a87", + "lneqq;": "\u2268", + "lnsim;": "\u22e6", + "loang;": "\u27ec", + "loarr;": "\u21fd", + "lobrk;": "\u27e6", + "longleftarrow;": "\u27f5", + "longleftrightarrow;": "\u27f7", + "longmapsto;": "\u27fc", + "longrightarrow;": "\u27f6", + "looparrowleft;": "\u21ab", + "looparrowright;": "\u21ac", + "lopar;": "\u2985", + "lopf;": "\U0001d55d", + "loplus;": "\u2a2d", + "lotimes;": "\u2a34", + "lowast;": "\u2217", + "lowbar;": "_", + "loz;": "\u25ca", + "lozenge;": "\u25ca", + "lozf;": "\u29eb", + "lpar;": "(", + "lparlt;": "\u2993", + "lrarr;": "\u21c6", + "lrcorner;": "\u231f", + "lrhar;": "\u21cb", + "lrhard;": "\u296d", + "lrm;": "\u200e", + "lrtri;": "\u22bf", + "lsaquo;": "\u2039", + "lscr;": "\U0001d4c1", + "lsh;": "\u21b0", + "lsim;": "\u2272", + "lsime;": "\u2a8d", + "lsimg;": "\u2a8f", + "lsqb;": "[", + "lsquo;": "\u2018", + "lsquor;": "\u201a", + "lstrok;": "\u0142", + "lt": "<", + "lt;": "<", + "ltcc;": "\u2aa6", + "ltcir;": "\u2a79", + "ltdot;": "\u22d6", + "lthree;": "\u22cb", + "ltimes;": "\u22c9", + "ltlarr;": "\u2976", + "ltquest;": "\u2a7b", + "ltrPar;": "\u2996", + "ltri;": "\u25c3", + "ltrie;": "\u22b4", + "ltrif;": "\u25c2", + "lurdshar;": "\u294a", + "luruhar;": "\u2966", + "lvertneqq;": "\u2268\ufe00", + "lvnE;": "\u2268\ufe00", + "mDDot;": "\u223a", + "macr": "\xaf", + "macr;": "\xaf", + "male;": "\u2642", + "malt;": "\u2720", + "maltese;": "\u2720", + "map;": "\u21a6", + "mapsto;": "\u21a6", + "mapstodown;": "\u21a7", + "mapstoleft;": "\u21a4", + "mapstoup;": "\u21a5", + "marker;": "\u25ae", + "mcomma;": "\u2a29", + "mcy;": "\u043c", + "mdash;": "\u2014", + "measuredangle;": "\u2221", + "mfr;": "\U0001d52a", + "mho;": "\u2127", + "micro": "\xb5", + "micro;": "\xb5", + "mid;": "\u2223", + "midast;": "*", + "midcir;": "\u2af0", + "middot": "\xb7", + "middot;": "\xb7", + "minus;": "\u2212", + "minusb;": "\u229f", + "minusd;": "\u2238", + "minusdu;": "\u2a2a", + "mlcp;": "\u2adb", + "mldr;": "\u2026", + "mnplus;": "\u2213", + "models;": "\u22a7", + "mopf;": "\U0001d55e", + "mp;": "\u2213", + "mscr;": "\U0001d4c2", + "mstpos;": "\u223e", + "mu;": "\u03bc", + "multimap;": "\u22b8", + "mumap;": "\u22b8", + "nGg;": "\u22d9\u0338", + "nGt;": "\u226b\u20d2", + "nGtv;": "\u226b\u0338", + "nLeftarrow;": "\u21cd", + "nLeftrightarrow;": "\u21ce", + "nLl;": "\u22d8\u0338", + "nLt;": "\u226a\u20d2", + "nLtv;": "\u226a\u0338", + "nRightarrow;": "\u21cf", + "nVDash;": "\u22af", + "nVdash;": "\u22ae", + "nabla;": "\u2207", + "nacute;": "\u0144", + "nang;": "\u2220\u20d2", + "nap;": "\u2249", + "napE;": "\u2a70\u0338", + "napid;": "\u224b\u0338", + "napos;": "\u0149", + "napprox;": "\u2249", + "natur;": "\u266e", + "natural;": "\u266e", + "naturals;": "\u2115", + "nbsp": "\xa0", + "nbsp;": "\xa0", + "nbump;": "\u224e\u0338", + "nbumpe;": "\u224f\u0338", + "ncap;": "\u2a43", + "ncaron;": "\u0148", + "ncedil;": "\u0146", + "ncong;": "\u2247", + "ncongdot;": "\u2a6d\u0338", + "ncup;": "\u2a42", + "ncy;": "\u043d", + "ndash;": "\u2013", + "ne;": "\u2260", + "neArr;": "\u21d7", + "nearhk;": "\u2924", + "nearr;": "\u2197", + "nearrow;": "\u2197", + "nedot;": "\u2250\u0338", + "nequiv;": "\u2262", + "nesear;": "\u2928", + "nesim;": "\u2242\u0338", + "nexist;": "\u2204", + "nexists;": "\u2204", + "nfr;": "\U0001d52b", + "ngE;": "\u2267\u0338", + "nge;": "\u2271", + "ngeq;": "\u2271", + "ngeqq;": "\u2267\u0338", + "ngeqslant;": "\u2a7e\u0338", + "nges;": "\u2a7e\u0338", + "ngsim;": "\u2275", + "ngt;": "\u226f", + "ngtr;": "\u226f", + "nhArr;": "\u21ce", + "nharr;": "\u21ae", + "nhpar;": "\u2af2", + "ni;": "\u220b", + "nis;": "\u22fc", + "nisd;": "\u22fa", + "niv;": "\u220b", + "njcy;": "\u045a", + "nlArr;": "\u21cd", + "nlE;": "\u2266\u0338", + "nlarr;": "\u219a", + "nldr;": "\u2025", + "nle;": "\u2270", + "nleftarrow;": "\u219a", + "nleftrightarrow;": "\u21ae", + "nleq;": "\u2270", + "nleqq;": "\u2266\u0338", + "nleqslant;": "\u2a7d\u0338", + "nles;": "\u2a7d\u0338", + "nless;": "\u226e", + "nlsim;": "\u2274", + "nlt;": "\u226e", + "nltri;": "\u22ea", + "nltrie;": "\u22ec", + "nmid;": "\u2224", + "nopf;": "\U0001d55f", + "not": "\xac", + "not;": "\xac", + "notin;": "\u2209", + "notinE;": "\u22f9\u0338", + "notindot;": "\u22f5\u0338", + "notinva;": "\u2209", + "notinvb;": "\u22f7", + "notinvc;": "\u22f6", + "notni;": "\u220c", + "notniva;": "\u220c", + "notnivb;": "\u22fe", + "notnivc;": "\u22fd", + "npar;": "\u2226", + "nparallel;": "\u2226", + "nparsl;": "\u2afd\u20e5", + "npart;": "\u2202\u0338", + "npolint;": "\u2a14", + "npr;": "\u2280", + "nprcue;": "\u22e0", + "npre;": "\u2aaf\u0338", + "nprec;": "\u2280", + "npreceq;": "\u2aaf\u0338", + "nrArr;": "\u21cf", + "nrarr;": "\u219b", + "nrarrc;": "\u2933\u0338", + "nrarrw;": "\u219d\u0338", + "nrightarrow;": "\u219b", + "nrtri;": "\u22eb", + "nrtrie;": "\u22ed", + "nsc;": "\u2281", + "nsccue;": "\u22e1", + "nsce;": "\u2ab0\u0338", + "nscr;": "\U0001d4c3", + "nshortmid;": "\u2224", + "nshortparallel;": "\u2226", + "nsim;": "\u2241", + "nsime;": "\u2244", + "nsimeq;": "\u2244", + "nsmid;": "\u2224", + "nspar;": "\u2226", + "nsqsube;": "\u22e2", + "nsqsupe;": "\u22e3", + "nsub;": "\u2284", + "nsubE;": "\u2ac5\u0338", + "nsube;": "\u2288", + "nsubset;": "\u2282\u20d2", + "nsubseteq;": "\u2288", + "nsubseteqq;": "\u2ac5\u0338", + "nsucc;": "\u2281", + "nsucceq;": "\u2ab0\u0338", + "nsup;": "\u2285", + "nsupE;": "\u2ac6\u0338", + "nsupe;": "\u2289", + "nsupset;": "\u2283\u20d2", + "nsupseteq;": "\u2289", + "nsupseteqq;": "\u2ac6\u0338", + "ntgl;": "\u2279", + "ntilde": "\xf1", + "ntilde;": "\xf1", + "ntlg;": "\u2278", + "ntriangleleft;": "\u22ea", + "ntrianglelefteq;": "\u22ec", + "ntriangleright;": "\u22eb", + "ntrianglerighteq;": "\u22ed", + "nu;": "\u03bd", + "num;": "#", + "numero;": "\u2116", + "numsp;": "\u2007", + "nvDash;": "\u22ad", + "nvHarr;": "\u2904", + "nvap;": "\u224d\u20d2", + "nvdash;": "\u22ac", + "nvge;": "\u2265\u20d2", + "nvgt;": ">\u20d2", + "nvinfin;": "\u29de", + "nvlArr;": "\u2902", + "nvle;": "\u2264\u20d2", + "nvlt;": "<\u20d2", + "nvltrie;": "\u22b4\u20d2", + "nvrArr;": "\u2903", + "nvrtrie;": "\u22b5\u20d2", + "nvsim;": "\u223c\u20d2", + "nwArr;": "\u21d6", + "nwarhk;": "\u2923", + "nwarr;": "\u2196", + "nwarrow;": "\u2196", + "nwnear;": "\u2927", + "oS;": "\u24c8", + "oacute": "\xf3", + "oacute;": "\xf3", + "oast;": "\u229b", + "ocir;": "\u229a", + "ocirc": "\xf4", + "ocirc;": "\xf4", + "ocy;": "\u043e", + "odash;": "\u229d", + "odblac;": "\u0151", + "odiv;": "\u2a38", + "odot;": "\u2299", + "odsold;": "\u29bc", + "oelig;": "\u0153", + "ofcir;": "\u29bf", + "ofr;": "\U0001d52c", + "ogon;": "\u02db", + "ograve": "\xf2", + "ograve;": "\xf2", + "ogt;": "\u29c1", + "ohbar;": "\u29b5", + "ohm;": "\u03a9", + "oint;": "\u222e", + "olarr;": "\u21ba", + "olcir;": "\u29be", + "olcross;": "\u29bb", + "oline;": "\u203e", + "olt;": "\u29c0", + "omacr;": "\u014d", + "omega;": "\u03c9", + "omicron;": "\u03bf", + "omid;": "\u29b6", + "ominus;": "\u2296", + "oopf;": "\U0001d560", + "opar;": "\u29b7", + "operp;": "\u29b9", + "oplus;": "\u2295", + "or;": "\u2228", + "orarr;": "\u21bb", + "ord;": "\u2a5d", + "order;": "\u2134", + "orderof;": "\u2134", + "ordf": "\xaa", + "ordf;": "\xaa", + "ordm": "\xba", + "ordm;": "\xba", + "origof;": "\u22b6", + "oror;": "\u2a56", + "orslope;": "\u2a57", + "orv;": "\u2a5b", + "oscr;": "\u2134", + "oslash": "\xf8", + "oslash;": "\xf8", + "osol;": "\u2298", + "otilde": "\xf5", + "otilde;": "\xf5", + "otimes;": "\u2297", + "otimesas;": "\u2a36", + "ouml": "\xf6", + "ouml;": "\xf6", + "ovbar;": "\u233d", + "par;": "\u2225", + "para": "\xb6", + "para;": "\xb6", + "parallel;": "\u2225", + "parsim;": "\u2af3", + "parsl;": "\u2afd", + "part;": "\u2202", + "pcy;": "\u043f", + "percnt;": "%", + "period;": ".", + "permil;": "\u2030", + "perp;": "\u22a5", + "pertenk;": "\u2031", + "pfr;": "\U0001d52d", + "phi;": "\u03c6", + "phiv;": "\u03d5", + "phmmat;": "\u2133", + "phone;": "\u260e", + "pi;": "\u03c0", + "pitchfork;": "\u22d4", + "piv;": "\u03d6", + "planck;": "\u210f", + "planckh;": "\u210e", + "plankv;": "\u210f", + "plus;": "+", + "plusacir;": "\u2a23", + "plusb;": "\u229e", + "pluscir;": "\u2a22", + "plusdo;": "\u2214", + "plusdu;": "\u2a25", + "pluse;": "\u2a72", + "plusmn": "\xb1", + "plusmn;": "\xb1", + "plussim;": "\u2a26", + "plustwo;": "\u2a27", + "pm;": "\xb1", + "pointint;": "\u2a15", + "popf;": "\U0001d561", + "pound": "\xa3", + "pound;": "\xa3", + "pr;": "\u227a", + "prE;": "\u2ab3", + "prap;": "\u2ab7", + "prcue;": "\u227c", + "pre;": "\u2aaf", + "prec;": "\u227a", + "precapprox;": "\u2ab7", + "preccurlyeq;": "\u227c", + "preceq;": "\u2aaf", + "precnapprox;": "\u2ab9", + "precneqq;": "\u2ab5", + "precnsim;": "\u22e8", + "precsim;": "\u227e", + "prime;": "\u2032", + "primes;": "\u2119", + "prnE;": "\u2ab5", + "prnap;": "\u2ab9", + "prnsim;": "\u22e8", + "prod;": "\u220f", + "profalar;": "\u232e", + "profline;": "\u2312", + "profsurf;": "\u2313", + "prop;": "\u221d", + "propto;": "\u221d", + "prsim;": "\u227e", + "prurel;": "\u22b0", + "pscr;": "\U0001d4c5", + "psi;": "\u03c8", + "puncsp;": "\u2008", + "qfr;": "\U0001d52e", + "qint;": "\u2a0c", + "qopf;": "\U0001d562", + "qprime;": "\u2057", + "qscr;": "\U0001d4c6", + "quaternions;": "\u210d", + "quatint;": "\u2a16", + "quest;": "?", + "questeq;": "\u225f", + "quot": "\"", + "quot;": "\"", + "rAarr;": "\u21db", + "rArr;": "\u21d2", + "rAtail;": "\u291c", + "rBarr;": "\u290f", + "rHar;": "\u2964", + "race;": "\u223d\u0331", + "racute;": "\u0155", + "radic;": "\u221a", + "raemptyv;": "\u29b3", + "rang;": "\u27e9", + "rangd;": "\u2992", + "range;": "\u29a5", + "rangle;": "\u27e9", + "raquo": "\xbb", + "raquo;": "\xbb", + "rarr;": "\u2192", + "rarrap;": "\u2975", + "rarrb;": "\u21e5", + "rarrbfs;": "\u2920", + "rarrc;": "\u2933", + "rarrfs;": "\u291e", + "rarrhk;": "\u21aa", + "rarrlp;": "\u21ac", + "rarrpl;": "\u2945", + "rarrsim;": "\u2974", + "rarrtl;": "\u21a3", + "rarrw;": "\u219d", + "ratail;": "\u291a", + "ratio;": "\u2236", + "rationals;": "\u211a", + "rbarr;": "\u290d", + "rbbrk;": "\u2773", + "rbrace;": "}", + "rbrack;": "]", + "rbrke;": "\u298c", + "rbrksld;": "\u298e", + "rbrkslu;": "\u2990", + "rcaron;": "\u0159", + "rcedil;": "\u0157", + "rceil;": "\u2309", + "rcub;": "}", + "rcy;": "\u0440", + "rdca;": "\u2937", + "rdldhar;": "\u2969", + "rdquo;": "\u201d", + "rdquor;": "\u201d", + "rdsh;": "\u21b3", + "real;": "\u211c", + "realine;": "\u211b", + "realpart;": "\u211c", + "reals;": "\u211d", + "rect;": "\u25ad", + "reg": "\xae", + "reg;": "\xae", + "rfisht;": "\u297d", + "rfloor;": "\u230b", + "rfr;": "\U0001d52f", + "rhard;": "\u21c1", + "rharu;": "\u21c0", + "rharul;": "\u296c", + "rho;": "\u03c1", + "rhov;": "\u03f1", + "rightarrow;": "\u2192", + "rightarrowtail;": "\u21a3", + "rightharpoondown;": "\u21c1", + "rightharpoonup;": "\u21c0", + "rightleftarrows;": "\u21c4", + "rightleftharpoons;": "\u21cc", + "rightrightarrows;": "\u21c9", + "rightsquigarrow;": "\u219d", + "rightthreetimes;": "\u22cc", + "ring;": "\u02da", + "risingdotseq;": "\u2253", + "rlarr;": "\u21c4", + "rlhar;": "\u21cc", + "rlm;": "\u200f", + "rmoust;": "\u23b1", + "rmoustache;": "\u23b1", + "rnmid;": "\u2aee", + "roang;": "\u27ed", + "roarr;": "\u21fe", + "robrk;": "\u27e7", + "ropar;": "\u2986", + "ropf;": "\U0001d563", + "roplus;": "\u2a2e", + "rotimes;": "\u2a35", + "rpar;": ")", + "rpargt;": "\u2994", + "rppolint;": "\u2a12", + "rrarr;": "\u21c9", + "rsaquo;": "\u203a", + "rscr;": "\U0001d4c7", + "rsh;": "\u21b1", + "rsqb;": "]", + "rsquo;": "\u2019", + "rsquor;": "\u2019", + "rthree;": "\u22cc", + "rtimes;": "\u22ca", + "rtri;": "\u25b9", + "rtrie;": "\u22b5", + "rtrif;": "\u25b8", + "rtriltri;": "\u29ce", + "ruluhar;": "\u2968", + "rx;": "\u211e", + "sacute;": "\u015b", + "sbquo;": "\u201a", + "sc;": "\u227b", + "scE;": "\u2ab4", + "scap;": "\u2ab8", + "scaron;": "\u0161", + "sccue;": "\u227d", + "sce;": "\u2ab0", + "scedil;": "\u015f", + "scirc;": "\u015d", + "scnE;": "\u2ab6", + "scnap;": "\u2aba", + "scnsim;": "\u22e9", + "scpolint;": "\u2a13", + "scsim;": "\u227f", + "scy;": "\u0441", + "sdot;": "\u22c5", + "sdotb;": "\u22a1", + "sdote;": "\u2a66", + "seArr;": "\u21d8", + "searhk;": "\u2925", + "searr;": "\u2198", + "searrow;": "\u2198", + "sect": "\xa7", + "sect;": "\xa7", + "semi;": ";", + "seswar;": "\u2929", + "setminus;": "\u2216", + "setmn;": "\u2216", + "sext;": "\u2736", + "sfr;": "\U0001d530", + "sfrown;": "\u2322", + "sharp;": "\u266f", + "shchcy;": "\u0449", + "shcy;": "\u0448", + "shortmid;": "\u2223", + "shortparallel;": "\u2225", + "shy": "\xad", + "shy;": "\xad", + "sigma;": "\u03c3", + "sigmaf;": "\u03c2", + "sigmav;": "\u03c2", + "sim;": "\u223c", + "simdot;": "\u2a6a", + "sime;": "\u2243", + "simeq;": "\u2243", + "simg;": "\u2a9e", + "simgE;": "\u2aa0", + "siml;": "\u2a9d", + "simlE;": "\u2a9f", + "simne;": "\u2246", + "simplus;": "\u2a24", + "simrarr;": "\u2972", + "slarr;": "\u2190", + "smallsetminus;": "\u2216", + "smashp;": "\u2a33", + "smeparsl;": "\u29e4", + "smid;": "\u2223", + "smile;": "\u2323", + "smt;": "\u2aaa", + "smte;": "\u2aac", + "smtes;": "\u2aac\ufe00", + "softcy;": "\u044c", + "sol;": "/", + "solb;": "\u29c4", + "solbar;": "\u233f", + "sopf;": "\U0001d564", + "spades;": "\u2660", + "spadesuit;": "\u2660", + "spar;": "\u2225", + "sqcap;": "\u2293", + "sqcaps;": "\u2293\ufe00", + "sqcup;": "\u2294", + "sqcups;": "\u2294\ufe00", + "sqsub;": "\u228f", + "sqsube;": "\u2291", + "sqsubset;": "\u228f", + "sqsubseteq;": "\u2291", + "sqsup;": "\u2290", + "sqsupe;": "\u2292", + "sqsupset;": "\u2290", + "sqsupseteq;": "\u2292", + "squ;": "\u25a1", + "square;": "\u25a1", + "squarf;": "\u25aa", + "squf;": "\u25aa", + "srarr;": "\u2192", + "sscr;": "\U0001d4c8", + "ssetmn;": "\u2216", + "ssmile;": "\u2323", + "sstarf;": "\u22c6", + "star;": "\u2606", + "starf;": "\u2605", + "straightepsilon;": "\u03f5", + "straightphi;": "\u03d5", + "strns;": "\xaf", + "sub;": "\u2282", + "subE;": "\u2ac5", + "subdot;": "\u2abd", + "sube;": "\u2286", + "subedot;": "\u2ac3", + "submult;": "\u2ac1", + "subnE;": "\u2acb", + "subne;": "\u228a", + "subplus;": "\u2abf", + "subrarr;": "\u2979", + "subset;": "\u2282", + "subseteq;": "\u2286", + "subseteqq;": "\u2ac5", + "subsetneq;": "\u228a", + "subsetneqq;": "\u2acb", + "subsim;": "\u2ac7", + "subsub;": "\u2ad5", + "subsup;": "\u2ad3", + "succ;": "\u227b", + "succapprox;": "\u2ab8", + "succcurlyeq;": "\u227d", + "succeq;": "\u2ab0", + "succnapprox;": "\u2aba", + "succneqq;": "\u2ab6", + "succnsim;": "\u22e9", + "succsim;": "\u227f", + "sum;": "\u2211", + "sung;": "\u266a", + "sup1": "\xb9", + "sup1;": "\xb9", + "sup2": "\xb2", + "sup2;": "\xb2", + "sup3": "\xb3", + "sup3;": "\xb3", + "sup;": "\u2283", + "supE;": "\u2ac6", + "supdot;": "\u2abe", + "supdsub;": "\u2ad8", + "supe;": "\u2287", + "supedot;": "\u2ac4", + "suphsol;": "\u27c9", + "suphsub;": "\u2ad7", + "suplarr;": "\u297b", + "supmult;": "\u2ac2", + "supnE;": "\u2acc", + "supne;": "\u228b", + "supplus;": "\u2ac0", + "supset;": "\u2283", + "supseteq;": "\u2287", + "supseteqq;": "\u2ac6", + "supsetneq;": "\u228b", + "supsetneqq;": "\u2acc", + "supsim;": "\u2ac8", + "supsub;": "\u2ad4", + "supsup;": "\u2ad6", + "swArr;": "\u21d9", + "swarhk;": "\u2926", + "swarr;": "\u2199", + "swarrow;": "\u2199", + "swnwar;": "\u292a", + "szlig": "\xdf", + "szlig;": "\xdf", + "target;": "\u2316", + "tau;": "\u03c4", + "tbrk;": "\u23b4", + "tcaron;": "\u0165", + "tcedil;": "\u0163", + "tcy;": "\u0442", + "tdot;": "\u20db", + "telrec;": "\u2315", + "tfr;": "\U0001d531", + "there4;": "\u2234", + "therefore;": "\u2234", + "theta;": "\u03b8", + "thetasym;": "\u03d1", + "thetav;": "\u03d1", + "thickapprox;": "\u2248", + "thicksim;": "\u223c", + "thinsp;": "\u2009", + "thkap;": "\u2248", + "thksim;": "\u223c", + "thorn": "\xfe", + "thorn;": "\xfe", + "tilde;": "\u02dc", + "times": "\xd7", + "times;": "\xd7", + "timesb;": "\u22a0", + "timesbar;": "\u2a31", + "timesd;": "\u2a30", + "tint;": "\u222d", + "toea;": "\u2928", + "top;": "\u22a4", + "topbot;": "\u2336", + "topcir;": "\u2af1", + "topf;": "\U0001d565", + "topfork;": "\u2ada", + "tosa;": "\u2929", + "tprime;": "\u2034", + "trade;": "\u2122", + "triangle;": "\u25b5", + "triangledown;": "\u25bf", + "triangleleft;": "\u25c3", + "trianglelefteq;": "\u22b4", + "triangleq;": "\u225c", + "triangleright;": "\u25b9", + "trianglerighteq;": "\u22b5", + "tridot;": "\u25ec", + "trie;": "\u225c", + "triminus;": "\u2a3a", + "triplus;": "\u2a39", + "trisb;": "\u29cd", + "tritime;": "\u2a3b", + "trpezium;": "\u23e2", + "tscr;": "\U0001d4c9", + "tscy;": "\u0446", + "tshcy;": "\u045b", + "tstrok;": "\u0167", + "twixt;": "\u226c", + "twoheadleftarrow;": "\u219e", + "twoheadrightarrow;": "\u21a0", + "uArr;": "\u21d1", + "uHar;": "\u2963", + "uacute": "\xfa", + "uacute;": "\xfa", + "uarr;": "\u2191", + "ubrcy;": "\u045e", + "ubreve;": "\u016d", + "ucirc": "\xfb", + "ucirc;": "\xfb", + "ucy;": "\u0443", + "udarr;": "\u21c5", + "udblac;": "\u0171", + "udhar;": "\u296e", + "ufisht;": "\u297e", + "ufr;": "\U0001d532", + "ugrave": "\xf9", + "ugrave;": "\xf9", + "uharl;": "\u21bf", + "uharr;": "\u21be", + "uhblk;": "\u2580", + "ulcorn;": "\u231c", + "ulcorner;": "\u231c", + "ulcrop;": "\u230f", + "ultri;": "\u25f8", + "umacr;": "\u016b", + "uml": "\xa8", + "uml;": "\xa8", + "uogon;": "\u0173", + "uopf;": "\U0001d566", + "uparrow;": "\u2191", + "updownarrow;": "\u2195", + "upharpoonleft;": "\u21bf", + "upharpoonright;": "\u21be", + "uplus;": "\u228e", + "upsi;": "\u03c5", + "upsih;": "\u03d2", + "upsilon;": "\u03c5", + "upuparrows;": "\u21c8", + "urcorn;": "\u231d", + "urcorner;": "\u231d", + "urcrop;": "\u230e", + "uring;": "\u016f", + "urtri;": "\u25f9", + "uscr;": "\U0001d4ca", + "utdot;": "\u22f0", + "utilde;": "\u0169", + "utri;": "\u25b5", + "utrif;": "\u25b4", + "uuarr;": "\u21c8", + "uuml": "\xfc", + "uuml;": "\xfc", + "uwangle;": "\u29a7", + "vArr;": "\u21d5", + "vBar;": "\u2ae8", + "vBarv;": "\u2ae9", + "vDash;": "\u22a8", + "vangrt;": "\u299c", + "varepsilon;": "\u03f5", + "varkappa;": "\u03f0", + "varnothing;": "\u2205", + "varphi;": "\u03d5", + "varpi;": "\u03d6", + "varpropto;": "\u221d", + "varr;": "\u2195", + "varrho;": "\u03f1", + "varsigma;": "\u03c2", + "varsubsetneq;": "\u228a\ufe00", + "varsubsetneqq;": "\u2acb\ufe00", + "varsupsetneq;": "\u228b\ufe00", + "varsupsetneqq;": "\u2acc\ufe00", + "vartheta;": "\u03d1", + "vartriangleleft;": "\u22b2", + "vartriangleright;": "\u22b3", + "vcy;": "\u0432", + "vdash;": "\u22a2", + "vee;": "\u2228", + "veebar;": "\u22bb", + "veeeq;": "\u225a", + "vellip;": "\u22ee", + "verbar;": "|", + "vert;": "|", + "vfr;": "\U0001d533", + "vltri;": "\u22b2", + "vnsub;": "\u2282\u20d2", + "vnsup;": "\u2283\u20d2", + "vopf;": "\U0001d567", + "vprop;": "\u221d", + "vrtri;": "\u22b3", + "vscr;": "\U0001d4cb", + "vsubnE;": "\u2acb\ufe00", + "vsubne;": "\u228a\ufe00", + "vsupnE;": "\u2acc\ufe00", + "vsupne;": "\u228b\ufe00", + "vzigzag;": "\u299a", + "wcirc;": "\u0175", + "wedbar;": "\u2a5f", + "wedge;": "\u2227", + "wedgeq;": "\u2259", + "weierp;": "\u2118", + "wfr;": "\U0001d534", + "wopf;": "\U0001d568", + "wp;": "\u2118", + "wr;": "\u2240", + "wreath;": "\u2240", + "wscr;": "\U0001d4cc", + "xcap;": "\u22c2", + "xcirc;": "\u25ef", + "xcup;": "\u22c3", + "xdtri;": "\u25bd", + "xfr;": "\U0001d535", + "xhArr;": "\u27fa", + "xharr;": "\u27f7", + "xi;": "\u03be", + "xlArr;": "\u27f8", + "xlarr;": "\u27f5", + "xmap;": "\u27fc", + "xnis;": "\u22fb", + "xodot;": "\u2a00", + "xopf;": "\U0001d569", + "xoplus;": "\u2a01", + "xotime;": "\u2a02", + "xrArr;": "\u27f9", + "xrarr;": "\u27f6", + "xscr;": "\U0001d4cd", + "xsqcup;": "\u2a06", + "xuplus;": "\u2a04", + "xutri;": "\u25b3", + "xvee;": "\u22c1", + "xwedge;": "\u22c0", + "yacute": "\xfd", + "yacute;": "\xfd", + "yacy;": "\u044f", + "ycirc;": "\u0177", + "ycy;": "\u044b", + "yen": "\xa5", + "yen;": "\xa5", + "yfr;": "\U0001d536", + "yicy;": "\u0457", + "yopf;": "\U0001d56a", + "yscr;": "\U0001d4ce", + "yucy;": "\u044e", + "yuml": "\xff", + "yuml;": "\xff", + "zacute;": "\u017a", + "zcaron;": "\u017e", + "zcy;": "\u0437", + "zdot;": "\u017c", + "zeetrf;": "\u2128", + "zeta;": "\u03b6", + "zfr;": "\U0001d537", + "zhcy;": "\u0436", + "zigrarr;": "\u21dd", + "zopf;": "\U0001d56b", + "zscr;": "\U0001d4cf", + "zwj;": "\u200d", + "zwnj;": "\u200c", +} + +replacementCharacters = { + 0x0: "\uFFFD", + 0x0d: "\u000D", + 0x80: "\u20AC", + 0x81: "\u0081", + 0x82: "\u201A", + 0x83: "\u0192", + 0x84: "\u201E", + 0x85: "\u2026", + 0x86: "\u2020", + 0x87: "\u2021", + 0x88: "\u02C6", + 0x89: "\u2030", + 0x8A: "\u0160", + 0x8B: "\u2039", + 0x8C: "\u0152", + 0x8D: "\u008D", + 0x8E: "\u017D", + 0x8F: "\u008F", + 0x90: "\u0090", + 0x91: "\u2018", + 0x92: "\u2019", + 0x93: "\u201C", + 0x94: "\u201D", + 0x95: "\u2022", + 0x96: "\u2013", + 0x97: "\u2014", + 0x98: "\u02DC", + 0x99: "\u2122", + 0x9A: "\u0161", + 0x9B: "\u203A", + 0x9C: "\u0153", + 0x9D: "\u009D", + 0x9E: "\u017E", + 0x9F: "\u0178", +} + +tokenTypes = { + "Doctype": 0, + "Characters": 1, + "SpaceCharacters": 2, + "StartTag": 3, + "EndTag": 4, + "EmptyTag": 5, + "Comment": 6, + "ParseError": 7 +} + +tagTokenTypes = frozenset([tokenTypes["StartTag"], tokenTypes["EndTag"], + tokenTypes["EmptyTag"]]) + + +prefixes = {v: k for k, v in namespaces.items()} +prefixes["http://www.w3.org/1998/Math/MathML"] = "math" + + +class DataLossWarning(UserWarning): + """Raised when the current tree is unable to represent the input data""" + pass + + +class _ReparseException(Exception): + pass diff --git a/Scripts/Lib/site-packages/pip/_vendor/html5lib/filters/__init__.py b/Scripts/Lib/site-packages/pip/_vendor/html5lib/filters/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/Scripts/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/__init__.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2886c5b3d631b325c984b72d8e84ad5e99205726 GIT binary patch literal 221 zcmYk0F$w}P5Jj_MA%b_Xwa~TDMnuF~w^=J02yrvI!)8rLvZ7XA$2)ic&tNNF!pdx= zAO8FNfe)iQoi+=)Ki+wruNwb~LYW7qW_p+4}s$=en6df+wFTT}c>@_>#6( z*fa38*2+Or6$lH`xwr@`VI`bL+g)R6l<){?X32O5VFivn_KnC2u}24nOw5mXklMz% jFV$GlHr|m6a~E??2lAW`%=y`xmReQ{XZ2^U5zu5`u!28R literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/alphabeticalattributes.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/alphabeticalattributes.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f3df80204c8734e874b89af9c32856f7b6cc0f5e GIT binary patch literal 1352 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 NjGEDcuvh7%`8O)hs$c*B literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/optionaltags.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/optionaltags.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..812b4a3907af85d397a23d35632b1a185d68c10d GIT binary patch literal 2750 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 literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_vendor/html5lib/filters/alphabeticalattributes.py b/Scripts/Lib/site-packages/pip/_vendor/html5lib/filters/alphabeticalattributes.py new file mode 100644 index 0000000..5ba926e --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/html5lib/filters/alphabeticalattributes.py @@ -0,0 +1,29 @@ +from __future__ import absolute_import, division, unicode_literals + +from . import base + +from collections import OrderedDict + + +def _attr_key(attr): + """Return an appropriate key for an attribute for sorting + + Attributes have a namespace that can be either ``None`` or a string. We + can't compare the two because they're different types, so we convert + ``None`` to an empty string first. + + """ + return (attr[0][0] or ''), attr[0][1] + + +class Filter(base.Filter): + """Alphabetizes attributes for elements""" + def __iter__(self): + for token in base.Filter.__iter__(self): + if token["type"] in ("StartTag", "EmptyTag"): + attrs = OrderedDict() + for name, value in sorted(token["data"].items(), + key=_attr_key): + attrs[name] = value + token["data"] = attrs + yield token diff --git a/Scripts/Lib/site-packages/pip/_vendor/html5lib/filters/base.py b/Scripts/Lib/site-packages/pip/_vendor/html5lib/filters/base.py new file mode 100644 index 0000000..c7dbaed --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/html5lib/filters/base.py @@ -0,0 +1,12 @@ +from __future__ import absolute_import, division, unicode_literals + + +class Filter(object): + def __init__(self, source): + self.source = source + + def __iter__(self): + return iter(self.source) + + def __getattr__(self, name): + return getattr(self.source, name) diff --git a/Scripts/Lib/site-packages/pip/_vendor/html5lib/filters/inject_meta_charset.py b/Scripts/Lib/site-packages/pip/_vendor/html5lib/filters/inject_meta_charset.py new file mode 100644 index 0000000..aefb5c8 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/html5lib/filters/inject_meta_charset.py @@ -0,0 +1,73 @@ +from __future__ import absolute_import, division, unicode_literals + +from . import base + + +class Filter(base.Filter): + """Injects ```` tag into head of document""" + def __init__(self, source, encoding): + """Creates a Filter + + :arg source: the source token stream + + :arg encoding: the encoding to set + + """ + base.Filter.__init__(self, source) + self.encoding = encoding + + def __iter__(self): + state = "pre_head" + meta_found = (self.encoding is None) + pending = [] + + for token in base.Filter.__iter__(self): + type = token["type"] + if type == "StartTag": + if token["name"].lower() == "head": + state = "in_head" + + elif type == "EmptyTag": + if token["name"].lower() == "meta": + # replace charset with actual encoding + has_http_equiv_content_type = False + for (namespace, name), value in token["data"].items(): + if namespace is not None: + continue + elif name.lower() == 'charset': + token["data"][(namespace, name)] = self.encoding + meta_found = True + break + elif name == 'http-equiv' and value.lower() == 'content-type': + has_http_equiv_content_type = True + else: + if has_http_equiv_content_type and (None, "content") in token["data"]: + token["data"][(None, "content")] = 'text/html; charset=%s' % self.encoding + meta_found = True + + elif token["name"].lower() == "head" and not meta_found: + # insert meta into empty head + yield {"type": "StartTag", "name": "head", + "data": token["data"]} + yield {"type": "EmptyTag", "name": "meta", + "data": {(None, "charset"): self.encoding}} + yield {"type": "EndTag", "name": "head"} + meta_found = True + continue + + elif type == "EndTag": + if token["name"].lower() == "head" and pending: + # insert meta into head (if necessary) and flush pending queue + yield pending.pop(0) + if not meta_found: + yield {"type": "EmptyTag", "name": "meta", + "data": {(None, "charset"): self.encoding}} + while pending: + yield pending.pop(0) + meta_found = True + state = "post_head" + + if state == "in_head": + pending.append(token) + else: + yield token diff --git a/Scripts/Lib/site-packages/pip/_vendor/html5lib/filters/lint.py b/Scripts/Lib/site-packages/pip/_vendor/html5lib/filters/lint.py new file mode 100644 index 0000000..fcc07ee --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/html5lib/filters/lint.py @@ -0,0 +1,93 @@ +from __future__ import absolute_import, division, unicode_literals + +from pip._vendor.six import text_type + +from . import base +from ..constants import namespaces, voidElements + +from ..constants import spaceCharacters +spaceCharacters = "".join(spaceCharacters) + + +class Filter(base.Filter): + """Lints the token stream for errors + + If it finds any errors, it'll raise an ``AssertionError``. + + """ + def __init__(self, source, require_matching_tags=True): + """Creates a Filter + + :arg source: the source token stream + + :arg require_matching_tags: whether or not to require matching tags + + """ + super(Filter, self).__init__(source) + self.require_matching_tags = require_matching_tags + + def __iter__(self): + open_elements = [] + for token in base.Filter.__iter__(self): + type = token["type"] + if type in ("StartTag", "EmptyTag"): + namespace = token["namespace"] + name = token["name"] + assert namespace is None or isinstance(namespace, text_type) + assert namespace != "" + assert isinstance(name, text_type) + assert name != "" + assert isinstance(token["data"], dict) + if (not namespace or namespace == namespaces["html"]) and name in voidElements: + assert type == "EmptyTag" + else: + assert type == "StartTag" + if type == "StartTag" and self.require_matching_tags: + open_elements.append((namespace, name)) + for (namespace, name), value in token["data"].items(): + assert namespace is None or isinstance(namespace, text_type) + assert namespace != "" + assert isinstance(name, text_type) + assert name != "" + assert isinstance(value, text_type) + + elif type == "EndTag": + namespace = token["namespace"] + name = token["name"] + assert namespace is None or isinstance(namespace, text_type) + assert namespace != "" + assert isinstance(name, text_type) + assert name != "" + if (not namespace or namespace == namespaces["html"]) and name in voidElements: + assert False, "Void element reported as EndTag token: %(tag)s" % {"tag": name} + elif self.require_matching_tags: + start = open_elements.pop() + assert start == (namespace, name) + + elif type == "Comment": + data = token["data"] + assert isinstance(data, text_type) + + elif type in ("Characters", "SpaceCharacters"): + data = token["data"] + assert isinstance(data, text_type) + assert data != "" + if type == "SpaceCharacters": + assert data.strip(spaceCharacters) == "" + + elif type == "Doctype": + name = token["name"] + assert name is None or isinstance(name, text_type) + assert token["publicId"] is None or isinstance(name, text_type) + assert token["systemId"] is None or isinstance(name, text_type) + + elif type == "Entity": + assert isinstance(token["name"], text_type) + + elif type == "SerializerError": + assert isinstance(token["data"], text_type) + + else: + assert False, "Unknown token type: %(type)s" % {"type": type} + + yield token diff --git a/Scripts/Lib/site-packages/pip/_vendor/html5lib/filters/optionaltags.py b/Scripts/Lib/site-packages/pip/_vendor/html5lib/filters/optionaltags.py new file mode 100644 index 0000000..4a86501 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/html5lib/filters/optionaltags.py @@ -0,0 +1,207 @@ +from __future__ import absolute_import, division, unicode_literals + +from . import base + + +class Filter(base.Filter): + """Removes optional tags from the token stream""" + def slider(self): + previous1 = previous2 = None + for token in self.source: + if previous1 is not None: + yield previous2, previous1, token + previous2 = previous1 + previous1 = token + if previous1 is not None: + yield previous2, previous1, None + + def __iter__(self): + for previous, token, next in self.slider(): + type = token["type"] + if type == "StartTag": + if (token["data"] or + not self.is_optional_start(token["name"], previous, next)): + yield token + elif type == "EndTag": + if not self.is_optional_end(token["name"], next): + yield token + else: + yield token + + def is_optional_start(self, tagname, previous, next): + type = next and next["type"] or None + if tagname in 'html': + # An html element's start tag may be omitted if the first thing + # inside the html element is not a space character or a comment. + return type not in ("Comment", "SpaceCharacters") + elif tagname == 'head': + # A head element's start tag may be omitted if the first thing + # inside the head element is an element. + # XXX: we also omit the start tag if the head element is empty + if type in ("StartTag", "EmptyTag"): + return True + elif type == "EndTag": + return next["name"] == "head" + elif tagname == 'body': + # A body element's start tag may be omitted if the first thing + # inside the body element is not a space character or a comment, + # except if the first thing inside the body element is a script + # or style element and the node immediately preceding the body + # element is a head element whose end tag has been omitted. + if type in ("Comment", "SpaceCharacters"): + return False + elif type == "StartTag": + # XXX: we do not look at the preceding event, so we never omit + # the body element's start tag if it's followed by a script or + # a style element. + return next["name"] not in ('script', 'style') + else: + return True + elif tagname == 'colgroup': + # A colgroup element's start tag may be omitted if the first thing + # inside the colgroup element is a col element, and if the element + # is not immediately preceded by another colgroup element whose + # end tag has been omitted. + if type in ("StartTag", "EmptyTag"): + # XXX: we do not look at the preceding event, so instead we never + # omit the colgroup element's end tag when it is immediately + # followed by another colgroup element. See is_optional_end. + return next["name"] == "col" + else: + return False + elif tagname == 'tbody': + # A tbody element's start tag may be omitted if the first thing + # inside the tbody element is a tr element, and if the element is + # not immediately preceded by a tbody, thead, or tfoot element + # whose end tag has been omitted. + if type == "StartTag": + # omit the thead and tfoot elements' end tag when they are + # immediately followed by a tbody element. See is_optional_end. + if previous and previous['type'] == 'EndTag' and \ + previous['name'] in ('tbody', 'thead', 'tfoot'): + return False + return next["name"] == 'tr' + else: + return False + return False + + def is_optional_end(self, tagname, next): + type = next and next["type"] or None + if tagname in ('html', 'head', 'body'): + # An html element's end tag may be omitted if the html element + # is not immediately followed by a space character or a comment. + return type not in ("Comment", "SpaceCharacters") + elif tagname in ('li', 'optgroup', 'tr'): + # A li element's end tag may be omitted if the li element is + # immediately followed by another li element or if there is + # no more content in the parent element. + # An optgroup element's end tag may be omitted if the optgroup + # element is immediately followed by another optgroup element, + # or if there is no more content in the parent element. + # A tr element's end tag may be omitted if the tr element is + # immediately followed by another tr element, or if there is + # no more content in the parent element. + if type == "StartTag": + return next["name"] == tagname + else: + return type == "EndTag" or type is None + elif tagname in ('dt', 'dd'): + # A dt element's end tag may be omitted if the dt element is + # immediately followed by another dt element or a dd element. + # A dd element's end tag may be omitted if the dd element is + # immediately followed by another dd element or a dt element, + # or if there is no more content in the parent element. + if type == "StartTag": + return next["name"] in ('dt', 'dd') + elif tagname == 'dd': + return type == "EndTag" or type is None + else: + return False + elif tagname == 'p': + # A p element's end tag may be omitted if the p element is + # immediately followed by an address, article, aside, + # blockquote, datagrid, dialog, dir, div, dl, fieldset, + # footer, form, h1, h2, h3, h4, h5, h6, header, hr, menu, + # nav, ol, p, pre, section, table, or ul, element, or if + # there is no more content in the parent element. + if type in ("StartTag", "EmptyTag"): + return next["name"] in ('address', 'article', 'aside', + 'blockquote', 'datagrid', 'dialog', + 'dir', 'div', 'dl', 'fieldset', 'footer', + 'form', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', + 'header', 'hr', 'menu', 'nav', 'ol', + 'p', 'pre', 'section', 'table', 'ul') + else: + return type == "EndTag" or type is None + elif tagname == 'option': + # An option element's end tag may be omitted if the option + # element is immediately followed by another option element, + # or if it is immediately followed by an optgroup + # element, or if there is no more content in the parent + # element. + if type == "StartTag": + return next["name"] in ('option', 'optgroup') + else: + return type == "EndTag" or type is None + elif tagname in ('rt', 'rp'): + # An rt element's end tag may be omitted if the rt element is + # immediately followed by an rt or rp element, or if there is + # no more content in the parent element. + # An rp element's end tag may be omitted if the rp element is + # immediately followed by an rt or rp element, or if there is + # no more content in the parent element. + if type == "StartTag": + return next["name"] in ('rt', 'rp') + else: + return type == "EndTag" or type is None + elif tagname == 'colgroup': + # A colgroup element's end tag may be omitted if the colgroup + # element is not immediately followed by a space character or + # a comment. + if type in ("Comment", "SpaceCharacters"): + return False + elif type == "StartTag": + # XXX: we also look for an immediately following colgroup + # element. See is_optional_start. + return next["name"] != 'colgroup' + else: + return True + elif tagname in ('thead', 'tbody'): + # A thead element's end tag may be omitted if the thead element + # is immediately followed by a tbody or tfoot element. + # A tbody element's end tag may be omitted if the tbody element + # is immediately followed by a tbody or tfoot element, or if + # there is no more content in the parent element. + # A tfoot element's end tag may be omitted if the tfoot element + # is immediately followed by a tbody element, or if there is no + # more content in the parent element. + # XXX: we never omit the end tag when the following element is + # a tbody. See is_optional_start. + if type == "StartTag": + return next["name"] in ['tbody', 'tfoot'] + elif tagname == 'tbody': + return type == "EndTag" or type is None + else: + return False + elif tagname == 'tfoot': + # A tfoot element's end tag may be omitted if the tfoot element + # is immediately followed by a tbody element, or if there is no + # more content in the parent element. + # XXX: we never omit the end tag when the following element is + # a tbody. See is_optional_start. + if type == "StartTag": + return next["name"] == 'tbody' + else: + return type == "EndTag" or type is None + elif tagname in ('td', 'th'): + # A td element's end tag may be omitted if the td element is + # immediately followed by a td or th element, or if there is + # no more content in the parent element. + # A th element's end tag may be omitted if the th element is + # immediately followed by a td or th element, or if there is + # no more content in the parent element. + if type == "StartTag": + return next["name"] in ('td', 'th') + else: + return type == "EndTag" or type is None + return False diff --git a/Scripts/Lib/site-packages/pip/_vendor/html5lib/filters/sanitizer.py b/Scripts/Lib/site-packages/pip/_vendor/html5lib/filters/sanitizer.py new file mode 100644 index 0000000..aa7431d --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/html5lib/filters/sanitizer.py @@ -0,0 +1,916 @@ +"""Deprecated from html5lib 1.1. + +See `here `_ for +information about its deprecation; `Bleach `_ +is recommended as a replacement. Please let us know in the aforementioned issue +if Bleach is unsuitable for your needs. + +""" +from __future__ import absolute_import, division, unicode_literals + +import re +import warnings +from xml.sax.saxutils import escape, unescape + +from pip._vendor.six.moves import urllib_parse as urlparse + +from . import base +from ..constants import namespaces, prefixes + +__all__ = ["Filter"] + + +_deprecation_msg = ( + "html5lib's sanitizer is deprecated; see " + + "https://github.com/html5lib/html5lib-python/issues/443 and please let " + + "us know if Bleach is unsuitable for your needs" +) + +warnings.warn(_deprecation_msg, DeprecationWarning) + +allowed_elements = frozenset(( + (namespaces['html'], 'a'), + (namespaces['html'], 'abbr'), + (namespaces['html'], 'acronym'), + (namespaces['html'], 'address'), + (namespaces['html'], 'area'), + (namespaces['html'], 'article'), + (namespaces['html'], 'aside'), + (namespaces['html'], 'audio'), + (namespaces['html'], 'b'), + (namespaces['html'], 'big'), + (namespaces['html'], 'blockquote'), + (namespaces['html'], 'br'), + (namespaces['html'], 'button'), + (namespaces['html'], 'canvas'), + (namespaces['html'], 'caption'), + (namespaces['html'], 'center'), + (namespaces['html'], 'cite'), + (namespaces['html'], 'code'), + (namespaces['html'], 'col'), + (namespaces['html'], 'colgroup'), + (namespaces['html'], 'command'), + (namespaces['html'], 'datagrid'), + (namespaces['html'], 'datalist'), + (namespaces['html'], 'dd'), + (namespaces['html'], 'del'), + (namespaces['html'], 'details'), + (namespaces['html'], 'dfn'), + (namespaces['html'], 'dialog'), + (namespaces['html'], 'dir'), + (namespaces['html'], 'div'), + (namespaces['html'], 'dl'), + (namespaces['html'], 'dt'), + (namespaces['html'], 'em'), + (namespaces['html'], 'event-source'), + (namespaces['html'], 'fieldset'), + (namespaces['html'], 'figcaption'), + (namespaces['html'], 'figure'), + (namespaces['html'], 'footer'), + (namespaces['html'], 'font'), + (namespaces['html'], 'form'), + (namespaces['html'], 'header'), + (namespaces['html'], 'h1'), + (namespaces['html'], 'h2'), + (namespaces['html'], 'h3'), + (namespaces['html'], 'h4'), + (namespaces['html'], 'h5'), + (namespaces['html'], 'h6'), + (namespaces['html'], 'hr'), + (namespaces['html'], 'i'), + (namespaces['html'], 'img'), + (namespaces['html'], 'input'), + (namespaces['html'], 'ins'), + (namespaces['html'], 'keygen'), + (namespaces['html'], 'kbd'), + (namespaces['html'], 'label'), + (namespaces['html'], 'legend'), + (namespaces['html'], 'li'), + (namespaces['html'], 'm'), + (namespaces['html'], 'map'), + (namespaces['html'], 'menu'), + (namespaces['html'], 'meter'), + (namespaces['html'], 'multicol'), + (namespaces['html'], 'nav'), + (namespaces['html'], 'nextid'), + (namespaces['html'], 'ol'), + (namespaces['html'], 'output'), + (namespaces['html'], 'optgroup'), + (namespaces['html'], 'option'), + (namespaces['html'], 'p'), + (namespaces['html'], 'pre'), + (namespaces['html'], 'progress'), + (namespaces['html'], 'q'), + (namespaces['html'], 's'), + (namespaces['html'], 'samp'), + (namespaces['html'], 'section'), + (namespaces['html'], 'select'), + (namespaces['html'], 'small'), + (namespaces['html'], 'sound'), + (namespaces['html'], 'source'), + (namespaces['html'], 'spacer'), + (namespaces['html'], 'span'), + (namespaces['html'], 'strike'), + (namespaces['html'], 'strong'), + (namespaces['html'], 'sub'), + (namespaces['html'], 'sup'), + (namespaces['html'], 'table'), + (namespaces['html'], 'tbody'), + (namespaces['html'], 'td'), + (namespaces['html'], 'textarea'), + (namespaces['html'], 'time'), + (namespaces['html'], 'tfoot'), + (namespaces['html'], 'th'), + (namespaces['html'], 'thead'), + (namespaces['html'], 'tr'), + (namespaces['html'], 'tt'), + (namespaces['html'], 'u'), + (namespaces['html'], 'ul'), + (namespaces['html'], 'var'), + (namespaces['html'], 'video'), + (namespaces['mathml'], 'maction'), + (namespaces['mathml'], 'math'), + (namespaces['mathml'], 'merror'), + (namespaces['mathml'], 'mfrac'), + (namespaces['mathml'], 'mi'), + (namespaces['mathml'], 'mmultiscripts'), + (namespaces['mathml'], 'mn'), + (namespaces['mathml'], 'mo'), + (namespaces['mathml'], 'mover'), + (namespaces['mathml'], 'mpadded'), + (namespaces['mathml'], 'mphantom'), + (namespaces['mathml'], 'mprescripts'), + (namespaces['mathml'], 'mroot'), + (namespaces['mathml'], 'mrow'), + (namespaces['mathml'], 'mspace'), + (namespaces['mathml'], 'msqrt'), + (namespaces['mathml'], 'mstyle'), + (namespaces['mathml'], 'msub'), + (namespaces['mathml'], 'msubsup'), + (namespaces['mathml'], 'msup'), + (namespaces['mathml'], 'mtable'), + (namespaces['mathml'], 'mtd'), + (namespaces['mathml'], 'mtext'), + (namespaces['mathml'], 'mtr'), + (namespaces['mathml'], 'munder'), + (namespaces['mathml'], 'munderover'), + (namespaces['mathml'], 'none'), + (namespaces['svg'], 'a'), + (namespaces['svg'], 'animate'), + (namespaces['svg'], 'animateColor'), + (namespaces['svg'], 'animateMotion'), + (namespaces['svg'], 'animateTransform'), + (namespaces['svg'], 'clipPath'), + (namespaces['svg'], 'circle'), + (namespaces['svg'], 'defs'), + (namespaces['svg'], 'desc'), + (namespaces['svg'], 'ellipse'), + (namespaces['svg'], 'font-face'), + (namespaces['svg'], 'font-face-name'), + (namespaces['svg'], 'font-face-src'), + (namespaces['svg'], 'g'), + (namespaces['svg'], 'glyph'), + (namespaces['svg'], 'hkern'), + (namespaces['svg'], 'linearGradient'), + (namespaces['svg'], 'line'), + (namespaces['svg'], 'marker'), + (namespaces['svg'], 'metadata'), + (namespaces['svg'], 'missing-glyph'), + (namespaces['svg'], 'mpath'), + (namespaces['svg'], 'path'), + (namespaces['svg'], 'polygon'), + (namespaces['svg'], 'polyline'), + (namespaces['svg'], 'radialGradient'), + (namespaces['svg'], 'rect'), + (namespaces['svg'], 'set'), + (namespaces['svg'], 'stop'), + (namespaces['svg'], 'svg'), + (namespaces['svg'], 'switch'), + (namespaces['svg'], 'text'), + (namespaces['svg'], 'title'), + (namespaces['svg'], 'tspan'), + (namespaces['svg'], 'use'), +)) + +allowed_attributes = frozenset(( + # HTML attributes + (None, 'abbr'), + (None, 'accept'), + (None, 'accept-charset'), + (None, 'accesskey'), + (None, 'action'), + (None, 'align'), + (None, 'alt'), + (None, 'autocomplete'), + (None, 'autofocus'), + (None, 'axis'), + (None, 'background'), + (None, 'balance'), + (None, 'bgcolor'), + (None, 'bgproperties'), + (None, 'border'), + (None, 'bordercolor'), + (None, 'bordercolordark'), + (None, 'bordercolorlight'), + (None, 'bottompadding'), + (None, 'cellpadding'), + (None, 'cellspacing'), + (None, 'ch'), + (None, 'challenge'), + (None, 'char'), + (None, 'charoff'), + (None, 'choff'), + (None, 'charset'), + (None, 'checked'), + (None, 'cite'), + (None, 'class'), + (None, 'clear'), + (None, 'color'), + (None, 'cols'), + (None, 'colspan'), + (None, 'compact'), + (None, 'contenteditable'), + (None, 'controls'), + (None, 'coords'), + (None, 'data'), + (None, 'datafld'), + (None, 'datapagesize'), + (None, 'datasrc'), + (None, 'datetime'), + (None, 'default'), + (None, 'delay'), + (None, 'dir'), + (None, 'disabled'), + (None, 'draggable'), + (None, 'dynsrc'), + (None, 'enctype'), + (None, 'end'), + (None, 'face'), + (None, 'for'), + (None, 'form'), + (None, 'frame'), + (None, 'galleryimg'), + (None, 'gutter'), + (None, 'headers'), + (None, 'height'), + (None, 'hidefocus'), + (None, 'hidden'), + (None, 'high'), + (None, 'href'), + (None, 'hreflang'), + (None, 'hspace'), + (None, 'icon'), + (None, 'id'), + (None, 'inputmode'), + (None, 'ismap'), + (None, 'keytype'), + (None, 'label'), + (None, 'leftspacing'), + (None, 'lang'), + (None, 'list'), + (None, 'longdesc'), + (None, 'loop'), + (None, 'loopcount'), + (None, 'loopend'), + (None, 'loopstart'), + (None, 'low'), + (None, 'lowsrc'), + (None, 'max'), + (None, 'maxlength'), + (None, 'media'), + (None, 'method'), + (None, 'min'), + (None, 'multiple'), + (None, 'name'), + (None, 'nohref'), + (None, 'noshade'), + (None, 'nowrap'), + (None, 'open'), + (None, 'optimum'), + (None, 'pattern'), + (None, 'ping'), + (None, 'point-size'), + (None, 'poster'), + (None, 'pqg'), + (None, 'preload'), + (None, 'prompt'), + (None, 'radiogroup'), + (None, 'readonly'), + (None, 'rel'), + (None, 'repeat-max'), + (None, 'repeat-min'), + (None, 'replace'), + (None, 'required'), + (None, 'rev'), + (None, 'rightspacing'), + (None, 'rows'), + (None, 'rowspan'), + (None, 'rules'), + (None, 'scope'), + (None, 'selected'), + (None, 'shape'), + (None, 'size'), + (None, 'span'), + (None, 'src'), + (None, 'start'), + (None, 'step'), + (None, 'style'), + (None, 'summary'), + (None, 'suppress'), + (None, 'tabindex'), + (None, 'target'), + (None, 'template'), + (None, 'title'), + (None, 'toppadding'), + (None, 'type'), + (None, 'unselectable'), + (None, 'usemap'), + (None, 'urn'), + (None, 'valign'), + (None, 'value'), + (None, 'variable'), + (None, 'volume'), + (None, 'vspace'), + (None, 'vrml'), + (None, 'width'), + (None, 'wrap'), + (namespaces['xml'], 'lang'), + # MathML attributes + (None, 'actiontype'), + (None, 'align'), + (None, 'columnalign'), + (None, 'columnalign'), + (None, 'columnalign'), + (None, 'columnlines'), + (None, 'columnspacing'), + (None, 'columnspan'), + (None, 'depth'), + (None, 'display'), + (None, 'displaystyle'), + (None, 'equalcolumns'), + (None, 'equalrows'), + (None, 'fence'), + (None, 'fontstyle'), + (None, 'fontweight'), + (None, 'frame'), + (None, 'height'), + (None, 'linethickness'), + (None, 'lspace'), + (None, 'mathbackground'), + (None, 'mathcolor'), + (None, 'mathvariant'), + (None, 'mathvariant'), + (None, 'maxsize'), + (None, 'minsize'), + (None, 'other'), + (None, 'rowalign'), + (None, 'rowalign'), + (None, 'rowalign'), + (None, 'rowlines'), + (None, 'rowspacing'), + (None, 'rowspan'), + (None, 'rspace'), + (None, 'scriptlevel'), + (None, 'selection'), + (None, 'separator'), + (None, 'stretchy'), + (None, 'width'), + (None, 'width'), + (namespaces['xlink'], 'href'), + (namespaces['xlink'], 'show'), + (namespaces['xlink'], 'type'), + # SVG attributes + (None, 'accent-height'), + (None, 'accumulate'), + (None, 'additive'), + (None, 'alphabetic'), + (None, 'arabic-form'), + (None, 'ascent'), + (None, 'attributeName'), + (None, 'attributeType'), + (None, 'baseProfile'), + (None, 'bbox'), + (None, 'begin'), + (None, 'by'), + (None, 'calcMode'), + (None, 'cap-height'), + (None, 'class'), + (None, 'clip-path'), + (None, 'color'), + (None, 'color-rendering'), + (None, 'content'), + (None, 'cx'), + (None, 'cy'), + (None, 'd'), + (None, 'dx'), + (None, 'dy'), + (None, 'descent'), + (None, 'display'), + (None, 'dur'), + (None, 'end'), + (None, 'fill'), + (None, 'fill-opacity'), + (None, 'fill-rule'), + (None, 'font-family'), + (None, 'font-size'), + (None, 'font-stretch'), + (None, 'font-style'), + (None, 'font-variant'), + (None, 'font-weight'), + (None, 'from'), + (None, 'fx'), + (None, 'fy'), + (None, 'g1'), + (None, 'g2'), + (None, 'glyph-name'), + (None, 'gradientUnits'), + (None, 'hanging'), + (None, 'height'), + (None, 'horiz-adv-x'), + (None, 'horiz-origin-x'), + (None, 'id'), + (None, 'ideographic'), + (None, 'k'), + (None, 'keyPoints'), + (None, 'keySplines'), + (None, 'keyTimes'), + (None, 'lang'), + (None, 'marker-end'), + (None, 'marker-mid'), + (None, 'marker-start'), + (None, 'markerHeight'), + (None, 'markerUnits'), + (None, 'markerWidth'), + (None, 'mathematical'), + (None, 'max'), + (None, 'min'), + (None, 'name'), + (None, 'offset'), + (None, 'opacity'), + (None, 'orient'), + (None, 'origin'), + (None, 'overline-position'), + (None, 'overline-thickness'), + (None, 'panose-1'), + (None, 'path'), + (None, 'pathLength'), + (None, 'points'), + (None, 'preserveAspectRatio'), + (None, 'r'), + (None, 'refX'), + (None, 'refY'), + (None, 'repeatCount'), + (None, 'repeatDur'), + (None, 'requiredExtensions'), + (None, 'requiredFeatures'), + (None, 'restart'), + (None, 'rotate'), + (None, 'rx'), + (None, 'ry'), + (None, 'slope'), + (None, 'stemh'), + (None, 'stemv'), + (None, 'stop-color'), + (None, 'stop-opacity'), + (None, 'strikethrough-position'), + (None, 'strikethrough-thickness'), + (None, 'stroke'), + (None, 'stroke-dasharray'), + (None, 'stroke-dashoffset'), + (None, 'stroke-linecap'), + (None, 'stroke-linejoin'), + (None, 'stroke-miterlimit'), + (None, 'stroke-opacity'), + (None, 'stroke-width'), + (None, 'systemLanguage'), + (None, 'target'), + (None, 'text-anchor'), + (None, 'to'), + (None, 'transform'), + (None, 'type'), + (None, 'u1'), + (None, 'u2'), + (None, 'underline-position'), + (None, 'underline-thickness'), + (None, 'unicode'), + (None, 'unicode-range'), + (None, 'units-per-em'), + (None, 'values'), + (None, 'version'), + (None, 'viewBox'), + (None, 'visibility'), + (None, 'width'), + (None, 'widths'), + (None, 'x'), + (None, 'x-height'), + (None, 'x1'), + (None, 'x2'), + (namespaces['xlink'], 'actuate'), + (namespaces['xlink'], 'arcrole'), + (namespaces['xlink'], 'href'), + (namespaces['xlink'], 'role'), + (namespaces['xlink'], 'show'), + (namespaces['xlink'], 'title'), + (namespaces['xlink'], 'type'), + (namespaces['xml'], 'base'), + (namespaces['xml'], 'lang'), + (namespaces['xml'], 'space'), + (None, 'y'), + (None, 'y1'), + (None, 'y2'), + (None, 'zoomAndPan'), +)) + +attr_val_is_uri = frozenset(( + (None, 'href'), + (None, 'src'), + (None, 'cite'), + (None, 'action'), + (None, 'longdesc'), + (None, 'poster'), + (None, 'background'), + (None, 'datasrc'), + (None, 'dynsrc'), + (None, 'lowsrc'), + (None, 'ping'), + (namespaces['xlink'], 'href'), + (namespaces['xml'], 'base'), +)) + +svg_attr_val_allows_ref = frozenset(( + (None, 'clip-path'), + (None, 'color-profile'), + (None, 'cursor'), + (None, 'fill'), + (None, 'filter'), + (None, 'marker'), + (None, 'marker-start'), + (None, 'marker-mid'), + (None, 'marker-end'), + (None, 'mask'), + (None, 'stroke'), +)) + +svg_allow_local_href = frozenset(( + (None, 'altGlyph'), + (None, 'animate'), + (None, 'animateColor'), + (None, 'animateMotion'), + (None, 'animateTransform'), + (None, 'cursor'), + (None, 'feImage'), + (None, 'filter'), + (None, 'linearGradient'), + (None, 'pattern'), + (None, 'radialGradient'), + (None, 'textpath'), + (None, 'tref'), + (None, 'set'), + (None, 'use') +)) + +allowed_css_properties = frozenset(( + 'azimuth', + 'background-color', + 'border-bottom-color', + 'border-collapse', + 'border-color', + 'border-left-color', + 'border-right-color', + 'border-top-color', + 'clear', + 'color', + 'cursor', + 'direction', + 'display', + 'elevation', + 'float', + 'font', + 'font-family', + 'font-size', + 'font-style', + 'font-variant', + 'font-weight', + 'height', + 'letter-spacing', + 'line-height', + 'overflow', + 'pause', + 'pause-after', + 'pause-before', + 'pitch', + 'pitch-range', + 'richness', + 'speak', + 'speak-header', + 'speak-numeral', + 'speak-punctuation', + 'speech-rate', + 'stress', + 'text-align', + 'text-decoration', + 'text-indent', + 'unicode-bidi', + 'vertical-align', + 'voice-family', + 'volume', + 'white-space', + 'width', +)) + +allowed_css_keywords = frozenset(( + 'auto', + 'aqua', + 'black', + 'block', + 'blue', + 'bold', + 'both', + 'bottom', + 'brown', + 'center', + 'collapse', + 'dashed', + 'dotted', + 'fuchsia', + 'gray', + 'green', + '!important', + 'italic', + 'left', + 'lime', + 'maroon', + 'medium', + 'none', + 'navy', + 'normal', + 'nowrap', + 'olive', + 'pointer', + 'purple', + 'red', + 'right', + 'solid', + 'silver', + 'teal', + 'top', + 'transparent', + 'underline', + 'white', + 'yellow', +)) + +allowed_svg_properties = frozenset(( + 'fill', + 'fill-opacity', + 'fill-rule', + 'stroke', + 'stroke-width', + 'stroke-linecap', + 'stroke-linejoin', + 'stroke-opacity', +)) + +allowed_protocols = frozenset(( + 'ed2k', + 'ftp', + 'http', + 'https', + 'irc', + 'mailto', + 'news', + 'gopher', + 'nntp', + 'telnet', + 'webcal', + 'xmpp', + 'callto', + 'feed', + 'urn', + 'aim', + 'rsync', + 'tag', + 'ssh', + 'sftp', + 'rtsp', + 'afs', + 'data', +)) + +allowed_content_types = frozenset(( + 'image/png', + 'image/jpeg', + 'image/gif', + 'image/webp', + 'image/bmp', + 'text/plain', +)) + + +data_content_type = re.compile(r''' + ^ + # Match a content type / + (?P[-a-zA-Z0-9.]+/[-a-zA-Z0-9.]+) + # Match any character set and encoding + (?:(?:;charset=(?:[-a-zA-Z0-9]+)(?:;(?:base64))?) + |(?:;(?:base64))?(?:;charset=(?:[-a-zA-Z0-9]+))?) + # Assume the rest is data + ,.* + $ + ''', + re.VERBOSE) + + +class Filter(base.Filter): + """Sanitizes token stream of XHTML+MathML+SVG and of inline style attributes""" + def __init__(self, + source, + allowed_elements=allowed_elements, + allowed_attributes=allowed_attributes, + allowed_css_properties=allowed_css_properties, + allowed_css_keywords=allowed_css_keywords, + allowed_svg_properties=allowed_svg_properties, + allowed_protocols=allowed_protocols, + allowed_content_types=allowed_content_types, + attr_val_is_uri=attr_val_is_uri, + svg_attr_val_allows_ref=svg_attr_val_allows_ref, + svg_allow_local_href=svg_allow_local_href): + """Creates a Filter + + :arg allowed_elements: set of elements to allow--everything else will + be escaped + + :arg allowed_attributes: set of attributes to allow in + elements--everything else will be stripped + + :arg allowed_css_properties: set of CSS properties to allow--everything + else will be stripped + + :arg allowed_css_keywords: set of CSS keywords to allow--everything + else will be stripped + + :arg allowed_svg_properties: set of SVG properties to allow--everything + else will be removed + + :arg allowed_protocols: set of allowed protocols for URIs + + :arg allowed_content_types: set of allowed content types for ``data`` URIs. + + :arg attr_val_is_uri: set of attributes that have URI values--values + that have a scheme not listed in ``allowed_protocols`` are removed + + :arg svg_attr_val_allows_ref: set of SVG attributes that can have + references + + :arg svg_allow_local_href: set of SVG elements that can have local + hrefs--these are removed + + """ + super(Filter, self).__init__(source) + + warnings.warn(_deprecation_msg, DeprecationWarning) + + self.allowed_elements = allowed_elements + self.allowed_attributes = allowed_attributes + self.allowed_css_properties = allowed_css_properties + self.allowed_css_keywords = allowed_css_keywords + self.allowed_svg_properties = allowed_svg_properties + self.allowed_protocols = allowed_protocols + self.allowed_content_types = allowed_content_types + self.attr_val_is_uri = attr_val_is_uri + self.svg_attr_val_allows_ref = svg_attr_val_allows_ref + self.svg_allow_local_href = svg_allow_local_href + + def __iter__(self): + for token in base.Filter.__iter__(self): + token = self.sanitize_token(token) + if token: + yield token + + # Sanitize the +html+, escaping all elements not in ALLOWED_ELEMENTS, and + # stripping out all attributes not in ALLOWED_ATTRIBUTES. Style attributes + # are parsed, and a restricted set, specified by ALLOWED_CSS_PROPERTIES and + # ALLOWED_CSS_KEYWORDS, are allowed through. attributes in ATTR_VAL_IS_URI + # are scanned, and only URI schemes specified in ALLOWED_PROTOCOLS are + # allowed. + # + # sanitize_html('') + # => <script> do_nasty_stuff() </script> + # sanitize_html('Click here for $100') + # => Click here for $100 + def sanitize_token(self, token): + + # accommodate filters which use token_type differently + token_type = token["type"] + if token_type in ("StartTag", "EndTag", "EmptyTag"): + name = token["name"] + namespace = token["namespace"] + if ((namespace, name) in self.allowed_elements or + (namespace is None and + (namespaces["html"], name) in self.allowed_elements)): + return self.allowed_token(token) + else: + return self.disallowed_token(token) + elif token_type == "Comment": + pass + else: + return token + + def allowed_token(self, token): + if "data" in token: + attrs = token["data"] + attr_names = set(attrs.keys()) + + # Remove forbidden attributes + for to_remove in (attr_names - self.allowed_attributes): + del token["data"][to_remove] + attr_names.remove(to_remove) + + # Remove attributes with disallowed URL values + for attr in (attr_names & self.attr_val_is_uri): + assert attr in attrs + # I don't have a clue where this regexp comes from or why it matches those + # characters, nor why we call unescape. I just know it's always been here. + # Should you be worried by this comment in a sanitizer? Yes. On the other hand, all + # this will do is remove *more* than it otherwise would. + val_unescaped = re.sub("[`\x00-\x20\x7f-\xa0\\s]+", '', + unescape(attrs[attr])).lower() + # remove replacement characters from unescaped characters + val_unescaped = val_unescaped.replace("\ufffd", "") + try: + uri = urlparse.urlparse(val_unescaped) + except ValueError: + uri = None + del attrs[attr] + if uri and uri.scheme: + if uri.scheme not in self.allowed_protocols: + del attrs[attr] + if uri.scheme == 'data': + m = data_content_type.match(uri.path) + if not m: + del attrs[attr] + elif m.group('content_type') not in self.allowed_content_types: + del attrs[attr] + + for attr in self.svg_attr_val_allows_ref: + if attr in attrs: + attrs[attr] = re.sub(r'url\s*\(\s*[^#\s][^)]+?\)', + ' ', + unescape(attrs[attr])) + if (token["name"] in self.svg_allow_local_href and + (namespaces['xlink'], 'href') in attrs and re.search(r'^\s*[^#\s].*', + attrs[(namespaces['xlink'], 'href')])): + del attrs[(namespaces['xlink'], 'href')] + if (None, 'style') in attrs: + attrs[(None, 'style')] = self.sanitize_css(attrs[(None, 'style')]) + token["data"] = attrs + return token + + def disallowed_token(self, token): + token_type = token["type"] + if token_type == "EndTag": + token["data"] = "" % token["name"] + elif token["data"]: + assert token_type in ("StartTag", "EmptyTag") + attrs = [] + for (ns, name), v in token["data"].items(): + attrs.append(' %s="%s"' % (name if ns is None else "%s:%s" % (prefixes[ns], name), escape(v))) + token["data"] = "<%s%s>" % (token["name"], ''.join(attrs)) + else: + token["data"] = "<%s>" % token["name"] + if token.get("selfClosing"): + token["data"] = token["data"][:-1] + "/>" + + token["type"] = "Characters" + + del token["name"] + return token + + def sanitize_css(self, style): + # disallow urls + style = re.compile(r'url\s*\(\s*[^\s)]+?\s*\)\s*').sub(' ', style) + + # gauntlet + if not re.match(r"""^([:,;#%.\sa-zA-Z0-9!]|\w-\w|'[\s\w]+'|"[\s\w]+"|\([\d,\s]+\))*$""", style): + return '' + if not re.match(r"^\s*([-\w]+\s*:[^:;]*(;\s*|$))*$", style): + return '' + + clean = [] + for prop, value in re.findall(r"([-\w]+)\s*:\s*([^:;]*)", style): + if not value: + continue + if prop.lower() in self.allowed_css_properties: + clean.append(prop + ': ' + value + ';') + elif prop.split('-')[0].lower() in ['background', 'border', 'margin', + 'padding']: + for keyword in value.split(): + if keyword not in self.allowed_css_keywords and \ + not re.match(r"^(#[0-9a-fA-F]+|rgb\(\d+%?,\d*%?,?\d*%?\)?|\d{0,2}\.?\d{0,2}(cm|em|ex|in|mm|pc|pt|px|%|,|\))?)$", keyword): # noqa + break + else: + clean.append(prop + ': ' + value + ';') + elif prop.lower() in self.allowed_svg_properties: + clean.append(prop + ': ' + value + ';') + + return ' '.join(clean) diff --git a/Scripts/Lib/site-packages/pip/_vendor/html5lib/filters/whitespace.py b/Scripts/Lib/site-packages/pip/_vendor/html5lib/filters/whitespace.py new file mode 100644 index 0000000..0d12584 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/html5lib/filters/whitespace.py @@ -0,0 +1,38 @@ +from __future__ import absolute_import, division, unicode_literals + +import re + +from . import base +from ..constants import rcdataElements, spaceCharacters +spaceCharacters = "".join(spaceCharacters) + +SPACES_REGEX = re.compile("[%s]+" % spaceCharacters) + + +class Filter(base.Filter): + """Collapses whitespace except in pre, textarea, and script elements""" + spacePreserveElements = frozenset(["pre", "textarea"] + list(rcdataElements)) + + def __iter__(self): + preserve = 0 + for token in base.Filter.__iter__(self): + type = token["type"] + if type == "StartTag" \ + and (preserve or token["name"] in self.spacePreserveElements): + preserve += 1 + + elif type == "EndTag" and preserve: + preserve -= 1 + + elif not preserve and type == "SpaceCharacters" and token["data"]: + # Test on token["data"] above to not introduce spaces where there were not + token["data"] = " " + + elif not preserve and type == "Characters": + token["data"] = collapse_spaces(token["data"]) + + yield token + + +def collapse_spaces(text): + return SPACES_REGEX.sub(' ', text) diff --git a/Scripts/Lib/site-packages/pip/_vendor/html5lib/html5parser.py b/Scripts/Lib/site-packages/pip/_vendor/html5lib/html5parser.py new file mode 100644 index 0000000..d06784f --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/html5lib/html5parser.py @@ -0,0 +1,2795 @@ +from __future__ import absolute_import, division, unicode_literals +from pip._vendor.six import with_metaclass, viewkeys + +import types + +from . import _inputstream +from . import _tokenizer + +from . import treebuilders +from .treebuilders.base import Marker + +from . import _utils +from .constants import ( + spaceCharacters, asciiUpper2Lower, + specialElements, headingElements, cdataElements, rcdataElements, + tokenTypes, tagTokenTypes, + namespaces, + htmlIntegrationPointElements, mathmlTextIntegrationPointElements, + adjustForeignAttributes as adjustForeignAttributesMap, + adjustMathMLAttributes, adjustSVGAttributes, + E, + _ReparseException +) + + +def parse(doc, treebuilder="etree", namespaceHTMLElements=True, **kwargs): + """Parse an HTML document as a string or file-like object into a tree + + :arg doc: the document to parse as a string or file-like object + + :arg treebuilder: the treebuilder to use when parsing + + :arg namespaceHTMLElements: whether or not to namespace HTML elements + + :returns: parsed tree + + Example: + + >>> from html5lib.html5parser import parse + >>> parse('

    *HW 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�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⊥Okk}knuII;XScecn(=%2&8hq2Nt@ff7 zI%HlW9V?sSUus=sleS&U+c*a`+`5m^A%)}?aPu6XaJ9r64{85d%6xI$?8{;eSMjWC zJ;ec%u7|K}6qlFKZvm?XU8Jk(aVpm`L;!}?0@>5dXpcYp-rhKpDVpRZi@4wE`6QSv z+%2{^xK2;m80g|{#~;XxF#tgRK4mT$I}M-c+Hf-h*U8y}$PLpo))^{T(VP@5BH2P= z{lIBs5>sXFw9JIwd-vad$6@lYaH-~|9@x7NiAuyC;|O2al-*bJMFTELeipd~iOf*& zUR;5O3uyXiz{a)AOHErrzT1s^R6npAn;w@dYI?=AU?6fLd0H`Wy zt&A`^#|(QHyK|53V%+FqZeTmcp2}H*%?`@o`lf(Aw+?&*Gf%67isP%>%ADdBX}f!G zno(C7y|fmVGqilF^92ebVh#GjSr__?JWzom$!yaly#zE(k>G0BJ-R5#Ds?XqIF{*I z>wtOOsgf;7b@hPb(a#;rv&_=|Pf|+xplf4ta~Bxe+%W9iTz)k&Z%X!DKC?F0K~UT# z)s~pNY15XC+x!hcQo1ayXP~F2zu%V){NHY@o$2X4^E0QnixJqGcd7nL#>XN4*tH3t zk7Hx++K9-uqfp9ricgh6Fz$Y_1*WX@7w!jT;32;Z!T>XKG}L2%KWkyfOn^G_{R`u1 z7k=gn#L`h~wQmBraz2@TBZqyo7O63Z3kdEISZyb5&%V#XoZ>=gDnL;vk#d8mp;&1+ z1d_}gW>Cfo{3m?>f~N7nV1kK`+Hfc>g#F+bjhe5su$2JaQ=)U(TnYo~PoY?I6>~gE zj@Bnp)2O+Z&mTb4s$UN*5=WfXu)bhN#cZp!OC8B_{B3uSVSVaV*-mlvde3B0ytB4B z2d4f~FzsZjAG2TK*~!!Z;>0T`Fb2bksV!-1!2g|nU_z~y*L=)eb{tZ>bD7zTCMiSo zV$t%?_(&5KN)YG_9!n9fGbKMX$mcpa43$KZ$P&p&eVQMMrA$g6rQ1p|jXRd23f+TN z7(G z9h6aB2)72{v=*g861Dzh42&6Zia{pA1_fA| zcIgGD^f(RZv_fJOj0%(~u_)^*t10HxbiGK=+TUH~s|M$*2>L{rLB(b;qHs?kt^6;P ztSv%P7wnbKl&0I8O5AiAKWNo=x{WCj(7$&CPF3BPST#4zw6zR0n_L{O&G#pa(BVK*@c zpcUz=I6g4N0MWo4=;&!sgy@)Zmk4%=QpWLI@oWy#DjxVL=i-nx+NyxMh|~I!6gVPm z@W$!%8%aQIu@K~rtOURRAd#W~$t4vN2pCCp`V_6Lm_?L|fZ&Dg)|0&h5?OpMpnq&z zh2H(~T(Az>bz6SU4d960?2oUBMRv7g=U1Yb^z8_i(p<;gB^-xlm0KdZFc zG_7_I3=*PJ{dl+Q+(L2b?8$-QmU?wQFHDd+qErcSCLa={_5u+lQ{4_>A&i2m-oHuhAdPn?G-=aF)kwB$f#B!caBuo zBY?PT5rMlbwx_&93t5nfL&fvcIrI=MvU_jsCNd6zyPXb4yuhY9IYOQ;XQ#RU?503| z3kcs5x!6L;;yOd2SH1EojlKfzJbn~nDu@S%62hz$_w+3|4t%gY~ z0sWdO&OtWhT#Bbv@&v6zFBmhyi!)&5;@VxBKC}uPxRU|CRJsQI@hN- z)6&3I){9tFx+gKpyEW(HzGPZWYgKZwpN(siV|iC~wa z3hkv=dcn-h*U11O!Cp>Dn@IZ`O-aXwNh`Mt9ZkwN1f84+baFzW$eYnijnKYntXFA~ zHyguIxSnAC5NPetn{hltr|0!}lqvC06geWuK^l5v@J3M6ux-lPCIE`_uL&_4_+VOL z16mAQ1&*-0tqe;8OtGgz?+i``#XVeXF)Z<@QU642F(UDp(SUdzjq2gHJ!C+kk(yw1 z{Ax5o9WYv~yAa^-Vss%w-LQ-G2JUSa>+Q5K^4A-@qmS7sFf@*o7Nj)5<=SL1hP!#( zqc7BhNDC~)a9ghkHc3UAT@!AW#f zu3vZ=tiN`ejYHHX3buowvfaU{Lvxs97i7RZ;ApxDcsPLP-4pJGj~$a77!@^{9JPxo z*DJ)y%MdM8pBzqEzN3EF%cmC)V|{%Zbl@$wqln=FPlEqpi}Pm0iLsWEkyN((c=v>_ zs*w?IT`Jpf%9kaXJbpau%_Rxm`X#}wcDGaQ9w)|UsnVW)fbbl`p zMZ-T5S57fRrd+(zGsDm&5i zIc$>vO;K15teXV)Q(CZYUzs96?&}kF6#wx{(Gk)`xgZnZr5dM7bsFZ3lU>`;P%`C| zzToY;1&{eJw@nyoP%PrKt~xB++0k~TPGvIKx~e^xObfhT*9Cd2^~{5rIb(j>Atdi{ z+}f}(Pc~c%z-h1vX&I2E?k7G2Qe4$;8=NnCPb(z>yR=Fq92hs|RG0T&kyb#QcHv&K zD@6?3VvvRhK+h}qQ6_atu?UHdt<;QW;|!!9)0#VyPQ-x)Kf4cy4s(flX9J38T@i*^Kb zhEfDbAo3(}#(?WBK(72;G&db8#c3XO{xprEPn;?>dA13aO;psIC>LH-c|J+Hpcy!+ z)#=-3T(ZcM*@w>(G6yx6X{wmjSOr@C>yDI_xH`2AR?IPCQ~>uiUX2 zAu2G~@vvjb5yqkaBTBVeAvXuzmuby8v=Ss3!3xg-wZUO;o`#cd=sY*qOAS0rM`gv5O>uHT$s_%GyjXcVQr|wd`|j88GPp+XXF$khOlPHaXwbZqm|&{v>oPIM`T!beU;kqqRGnI_%97&+awd2!FB1-J zc$|dpRu0qeG4%ly4Ski5_{L4lI(`dan-3w~y1oXWnp|r2uws?RP!dfoIZ(){iFc?6ca0uDv$6!g$sFm|^w%}I@@W&Z^g29)W_B>*x z$icmP?=3~|lg=td3p4T|R~y#oMdp>|Ck++_oG0<>0S?gsBJsDhgyP|NEMC7lwi378 zq@zJ$gT`J%$~+tcjlBj>AyC|Ha1q%UH2J-?ZXEXGC;EC28rvA$!ssNUlPWrS)LOwz z*?zt`K8e7%nXhj?YK1a`Ry|elpnhkqoB|?`-DT!Fwr;dNtnY2jT^G=wFz9o z6`}UIS4RMyC$^@aCQa@!qimUE6~Eal^MZMm7)s1 zs{E@(!1#Smz7rf&K3VOXk8G4%`;A8z7`tIJuKTUf#?4miZlKj*p9^p()M_2Np{Hm3 zNa4t#qZ@bj^z5+W0x$c9uS2~XtvJpT5z&MAUCvszd9#QW9GP7hf9S~UQ54*`d9zdA zvfZ0Dl~oa5heFylY3{9EO!T}KN;W{_0u^TWgZeU0aMB$?GbZr!{o}>{F8m7L#JtZ1 z#&EKZ!K&$4I2Xy)T?mdv8v=;cBNjufA&1NDi%oQ2a50{P8~U+kNrgEkq>`r+=XWq7 zg&bq8c$c6z6}&@U`-^2rT?W2PJO`eK0q%$qvq$ZryRY+ZxTR8$4 zP!dc*ja@7GmPtOCsj|ObgVcuHb;dP-b}hpTA(Y;ZdasxK%O!sYo|E#tLY`OR`G(vL z#;V*65NTN54z3Qqx)!OOXp2r?!*qy6T!*qNQss-a_+njd-NhS?>y;@i92Lo2Qr_Kw zck6Q-a-F&LXvI3|kIrWyQh=K9cdSd`Strjo;yH!qw6WdTV01l!Tw@#Yw8Kan8|7&e zdTx{C?MB{i`L;)%d-2>O&zt4B56``L-Ylch$8aPt){oNqje#f7p0NQywI#RJ*g|oO z+)Wo?;{q*g$Za#W7+ar)Q8KjlX5%JhWK0A-(EosX8%n+ealF|xY@Yn zX*kQk+gtH=h;7J4j6wDWzZ~0cr`+bG>@bF~qwF-_i@BY>9$d#e=njW`m;x2i?R^TW z0zJYd@o{zZoiJ~9!5|agHR?k1Bm@HC`W=Qc$iuRCDT6ZZbEmnswXC_wTf=_D1o1)_4PY>K{Mt6Utx}^yuZ!CX0}I+R=13A ziuswGFDnz=2I;K#-M4?w(ENPfsC*?mWRI37Fhs&&ND?znVusSx_*6#ZAjw{>6XTAy zt_qAWO8+08+posi>D-D8`*>?z`}H0)Z|S#eYef!TSDbc?u&6oIOuv}$ zj|2t>W#Bbr28K6gZ)>?ql@<^74dDP1P!37_5zAN?vjs^hmcKVs_N9^9WkjDAsdFk6Y%04XLL&og{&*$Y^%D5zKf-^Rk$?V@^ z#^urT`pO#b-!IBr+v{yoWqWzYS=#PZ4{ubQnf$-nN$`^(|*EjYcP+$HA5^g9Qn zajx}Lmri$cx-tE(E3J60rFt79wVF6C_Jg>ivtr|$dXDZqVr;TnltPm8n#N^IG2Q#M zNqw?yY1IxES%m9#Em%Ti>w&rs2xm+2B5R3~JO@iM;#}5RRk3Yp4v=`AvpO{_L^jkw z+D+-vZ@>d#b4YL-n~wAzF*YtR+?2M!5q7W>YnLY%>Hgf_qq-ZEq`v>-@+>>k){UOx z6px|`5^r6nOFhzyF5Z~(RkX8IZzCJ#56FOPbP;#!uGGLyP(Qfo=)wU0Y!y$0M;H2c zihsFB`nv}f)2So9m(P@bWXqxzCjzfge=FfpYd}d`7fYNJS`AGM-o8S{fwhcUQc2?X z`derM$)NrPLMt>lXtgPMO>dss^Mqt1^g`} z5j>6$jy5fV`+kys0^woU3>ks@!Hk5FA8?nH29x9SH6C-D!R zrKYU6vt($T?zINJLo=|L8XxTKISOCaju*;Dkcg?>?@vlUvUSmF0v)Hv>9yGU2Yc4f z^sF~3x|Iw%{>%s2h)9;U*qyD#X3$Z06w_M_ObQvSd3BWJv#B75L^j~~4LNNU6MSm( ztuzhS%ZR(7g2u{%X6|w71eG$0Yioqm$`@eBEbcc9q`xhEHh5Nv3c~a@ zr&KAXho}@GXi7GYwU`$XRNh#H&d@Mc7{jktC!xYM)|p~va`w-#HpOIB2%22nl`*NU**8}I9hHhJ_jp^R&RV;4Wv{jCxp#Q| z9fRxd9$bH@cm3pL7u*W$3ID2f=1fLC?3Y<{oEh$l__tbj-nL)a8Z2JX3Y2+WZ567| zuWk*puo~;oF0RHZJUp;v@TObwe=io-RWC`Y*1Ig}Aq^g&u}t|xk$ruASF}`lgJm`N zm#V!?L+7t^mMPTnuuP$tR(+Y)$uc#+#Mv);rMpn9tWERFOp|5d9+6xx|Ku*iHg_2g zEWI*h>>Lw--lb^%KI@Sx+%>q&w+8v~4|yQ$ zO8#1BgZCrY574+&m(WqfVkG7Q~A?}=TfSG3Nx=2vzq9W z!`pSNwxS$WfV20rGKE1Dohp4|Sz^Q9YebY^9E37q(dVz4sTIxy9H>Ch*e(H_iUsk< zb*n4bNm#vj)bW*N#|YW6iUwi*XKrduG9sB+T!vYOX&*PwS2 z^D~V727@oNE?#|F?ZVU7Msh&ilc(=Hhk@gYUd3*HljYYUv2dKRT4d=uz;~s7fXs=d zO4^`H8U@ktMdZYvKj5F8$~6+#qPdL0-!Y(LBXP-IN;n(ies$wesuMO*sl|CAHx1@N zeo|y0LJuPT@S6l_l4-xq*d2(KYzp6@^*+lt;$TEXBq&8uY8EQR$wDFrW&%Jv1HH4a zq|7InF{&8l=I2<*{j5klpZpdcOL6aQk@*ECwL#fzdRmcY_El5qnvBqozC?2y3%@2~ zgW4&M~+LL8)1832@JHn(DvialUwj0rfdbY9f|hE}8G(dxL>Xg1U$7d-38; zN{3uTBo=`1!lSWepYY@0n1|;*x!c@V>U)W***5}*l6#p{5vZG4*nEp@W)WK@X^o{YfKaX(xi)q(m#IVXX<4Ivl*t|Dio zZnRV{i_x6*ZE5TzN?>tO~QX@fhM%gkrn_aVkPF-iSC%j7l6LF_;(4=KE1> z_PgjtIirU~69j4>kO~ydR>v{|?1PbSGo78Cng_zxqkINH)PQH~EL$FRE>RLs$c<|7pxj~x>fga`<-D3fc$6lN6lTxz61!3WaKV#*CVI<9g*+-Xli z_Q2NnsQ^{L!1omX$5%2Ple8);9!5}aMioFnY*i<(Csg|_P_Xe--?_fN0l2E<-<#=t zK~l1I%H(9a+vf5+fJ+B@3}HGgP=@Lp?V#SlmH!?)Zq!Ng$tZceB%1XF=U%GP0PIl6{U zVv0d*NzLGgb}ocYhLD=T1_P}*QiH;phq01XFug+QCQ4B~oOl?LTt?j!(4&KS7Hnj+ zp?iUndQmUyo(tCp2{#@>a|l0KabiC{O5Q9>@!F2R7x~QJMLy3$;;I$Ll!vi~%w3qi z)=i$7(<{rFbGMMeytGHuv!e)ZM=zDwOt!WVN|vh_KWMRH2867%)35kcpsv-kJjmHW3iGcv){iMOJd4|%Wn7g*tQkK+Ya`7e zETT{Yei8j^3Cil7Ko;LW;x)VQEBq}2@5yO|a*>mDlc6b`nlKJ7sHH&x*6>&i&tgf+ zz_SSQ*}3BB;>gT z&&!N9Jh#bnE1s`0+VR|;YtFUgS})X%C6ER`qe$zJJj?LB!dQvtmGaz%=T*jPJg=7L zYw&!nu?Ej;7a9w(DbvYZ;bvK;tK0 zNuscd9_D=5h2N{7Jj#052v3E8u15e#owd?o31sZ4(|dq=tNqsI``i;x@C!-r>38st z-Ppq+KZCRJUT#*HtAB|J^vc^%VLJ56Mf`c?5`xj^EATIO^2vO11Ht&B3V??(v0mjw zA&lZG#{yLlC5zE-Wf^~Bb*Vs&M=?mllqt1LfZ^_BOmep9P+ z*_)^|e+j`7fW~w=Kj%!1f2jtmo*L#~;Vt$QkCcbrQ*7M0athloYD4-;02*5POCQGd zBB1U=d?$h>psu%ze9GzIH>&}SG}$={dl2#N93cgrP+dmZL~8X`@b_>+xQQ zIHO*kV@3@7OoLTrkTfk|9V;Is{iasaySewn0x3^{yRx$<^WDii@@94lMi3N{b{F(> zPvJ@7iiL{3v3yuO)`s=4Xc&5>0;{JSMoF#(AU6Eh(Tn-7VrZGLiIYYvk zR{?POoL^Tt=N*7`S5!`Z{iZh9`CXhwA6|MI#dJ9za3(*QL_ZbKdc>^$%8s_jatWv} z66#Brfm&DbOAgdQKs}mnsEq)=9}B?bfS7Ec$^2ChwV3Ywr%|@t-1B6HSLje8(jGBG z)q2O7ga3^3s~>KPMy@;_RC>++h;kDH=PLi}-<91wu#CNf0O@`Gh`$E`;>Vsx{80pm ze;Qfymk?ZTx<*yy|Jj+Z;cAU@=4(4*Aefd{&R6gSti$Dlt=2WJF{*G3$bGR}p2ElJ zTJ0Y-m!s0E;}phs&vJ+~@&vYSq#FFr;Mn_iM&RnUD<=v4xZsyKb!mrY6!XL`N7Zv6&Ay^7ZRmuy5Qjom*YEYKX zh&7cnVo&Z2&G5iXv^7vZFWh%aKpTLS+x(*l(AO`0f{-Iv0`f+;)XzA59Aj(K%d2i` zAH{xFYMjZQn^y#kDP*qfa-<;y3l|($FfWrRjY$+ib}*AGU6zZuKko@8YUi=dN`|TIM{Nfj0 z{NjtBl9Imrk?(x=yYKt%ClLP9cRx9gt_}R?nUDSGL!bKbCx1oC{n77y%a8xU%a5y1|LOxD`rn^>;V(bue^CmXNA6Nr0YQT3%3chb=bucgfW@NPhiWO=A$;k|;}>}dHV&w_7Dgb70rK|_44 zR68o*(-U2sc6;Gdcpu4Qa!v`80cQPJR59wuY$p9!OtI*#4SraAm7NJU5!bl9ug{)C zhX}P!ihZ|AwC!1mX{+Pfl{eiyS2jXyYtc{(Ja4;b93?d;^Ha7RUE7NgE1+u>aaSZd zj_41kYPejGR0D08J?WlyS2-v@|I`Y9M`gH+4;YKT8F0+e=X4KAI78EWCPzRn?~uID!3q z++BFgGo@kFM;^&V^h=}iqbYL^9>lcGAXv?zya);z@9ph9ia4z2RH+8~D1aS0N1_Q! zlVV+|beCt8MUj>kD)O@v)AO_pZQs|3kQ_UTI)=VcAT)*C^klCpTDoC)*4RzMBM0DN ztC$j4Y1TG-d;&tMTR73ua0fo#g#=ohK^p%cxy$Pdge3#wNive)0b78-3d+LUX&@7DubYDq0Vrh8kVEY{*Z^!wK&(U&F*^VmQ!mJa4(;U4CsH1V{=g4;z>j(v;}T4gtmqP#W1dk z84n?jOJ#}U`WSH-+(&vu;`I`*8?vd=V(erCZ+av(hSY{)}c}Ko7gt&MO=h4z}m|$th3jHa~;0G1n7{xW~+A6LEn7f^se2zd^_zM+?nv z1_T;93fM|Aa%#!P zcCt}1DQsNMU9JO6cdxjO=v_(+$@rFtAI;-*xJaR-IP$QVGN!_1Z8jXFQ5Y zRNhxH6ofrHlWB24xbodleOZe)Awn9`c&U8_L0HMa9WIHoYK z981KmiHFTqC};x7zJH(r0=w`l+>5}A6gGs67P*T8o4cV7w?;$?gJX3PrvwKLt%Qt( zNN@zl>T|JNg8?_|M%-u?!yJtUHn#M#3Uu)>W||zO_vQ+~$qK`AZWk=aq-k=PYH&E6 zm6!p}J4n_ERtHx@>Kps8r$=t(qEy^&+5)%4gJnvxrri*0Qw8PhyCWWtqZ8;0=O5$z zaXJ=uA)w|6JiWAF;nFQ{@M7>;_+>XjPh*)=@Br`D$~y`pK(|D{qtX_C;EVjO50e1V zs8Dkc;Aj{3aAjxJ+abxh<0o^#)&vQJUDY|;;y;gjq(j-8;sTDj4Yo%FSe(*ey8tJe z$f@Z5l0A8e5_tl6@L+b)^Fi~E&=;^p)THpAy${c4r_FBe9?u}a6}{{!Kf&rLHTz)m zJhEUZ$1{ax_OA3GRrXAf3JS}ystUwXV)gCVbXH>9sW{ha%potL<}35?1P@95k3t1{ zyk8x_0|fA7%rU|+!@PjII~>kYj_ie?91CGMK!y(-Bg`3K-y(j+H^RGVMq?HRPbPAp zWndNpn4M}N5jIZ8BrM-i2pt&Tw3sTELCepchK~v*w4_+v`YX8X@YO(^Rt+bKJ@14; zvw@BlQ)x;l!CNAQ&QT}w`$ok-zK6{pVBmmftU*`E2#rFQ=_#a{-{ug1iNRXDgGh>u zGktKCn%EK>A#%Sg)x(6y@j0}Olc9X1S9nI+gFY8;z(C9H-%`)Z&i0_SqiiR?f?@U+ zSaXog>)DPv>;I`C+k=&{)R0v!NoUBebB4@JmW_~k1K&9r%uYUD>8KE-9v*5p;;Wx# zG+59Cj~4xp#}Ronvc;~&Oj-y6gNnfCwAyMPQ#=SrTOs8_h?qPUVicIxsUu-}KVNJp zD$DAyUCy@@OJLlWfrU66;!MT4+3dGq&vdr$g^)4T83SRdiVTGDj9- zZx23z%{qchLBZbI`vZjoXR+M*--Gx)+>X*?Wu?Q?IRq~JH8wBA7n*VKHNr~fIn-LW z5Mv5zE~4h9ry>1}vZ6-(V*Nrr?OgF0`C{*czPh4uW+XIaK5)PdpO*Y?3rIQSXZOBG(>G6d+An_@`15-dK5TTX!Ip}0wGGtGwE zw&HOH%D+LhI6K3ypb7)#8rn|q2USm{X#E@nzcdCmo53u+MW3)yftN73^yjmJRRu0|oqEU5nsx(%g+ok`sOkLM9M8TgM(vSJ-|? z`I@|l?9bb><6*R^yg9gf3%rH<;u!!tKeN@&_O$=|s%y zksHiKt93G)2Sdl%AI#Ng2QHC+ll}A=)L4qEJ>}kP9=7IG7fZ(yO;T9Xo5)*gRN1(f zfQTpZR7#X@AEgebTYc+Wy4KB}v3Dp>ioNxgqL8DU${FgwmlM7VV8FBqT9KJ4OqrVq zmD_gzz?a(Xw)j@pt(*x50dOo%AEWra*%Aps-zIV?6ox(xe5{1(BCo|_WCz49!Fvjr z1Z&?2MO6-lWEFsqga7dT>xo!|_FgYpxBV20Wr91E{>M0XlL`C^LkPGsfWC{mKTdhL zcvUtuaJpk7P^UY&E;!#;c+Yp?#DqrGCbztPUtN=BQu)g?LzuuO3J$2L+*I}MPiEgb4)%HmTN#ktF?TVziI48sJ1f7m zq6T)oj1A$%7ug38YrPa|_WX9X2hD9Launtf$}~*=j@6OLAQ`IFX*S~RACW!5j$-*O zk+$8ES^`&P1{~~62G)l`AWalY5gw7|YHnZ4v7>`6bRGWCU(odY%xu9-qI1TgqA^-v zDlEs&8ri#$>KuCO=$@J=jQU2QKF9^%d-PNf%fWPUOXAr1L{*;L2y04nGs!~_9_oGT zgJWY4x)(O<;GKn;fHsIzcz6y;b{^V$VDIk3;QX_2yoVne8gwTe)~QPDbZSs}bq!K_ zcXD`Sx3>x#N7HZ%`K}6A=2i$o(k{s6TD#>-_a%piyGKU4cki|va=y@OfHL$};wXQp zKCCF9J2}#wEc?DYd6<1R;4LRVtK6&j;lX8^?QxPjl2iCwZRn~M?k|*Q`*aSNtv$3g z3OpnQ`af0h*n`f_Tk_lFLk~T~UOJaNRMAV8>xjf_=*wrV%x9ad+!R^4tu?=0H7n_K zjJJ4?;V{ef2d@oaxhApPn11IJXZ`_BEUcMlu+l)~Q`vZ*tz5Y8@IK|F{Ev|(mEc(_ zYqygNcpZZq8GHpnss3y(d&YN)1pmHH*NT3#A6S6p^TjtpP`;eFHU}Kd$yL@@h&=aI6lLd#`Dt z2yPuvjVYdhnvr3Ws4O+82k=Eotr&Ff9$*a?dT|M7l9Oc8g_lWD0JE9FX+SpC1YdwK zuxk)yHc6j)t}KL)ejU?@L7I?l4VXy=tJtRRGic*RcLUN&*QlEyx%)VqH7UG^{U{^P z8IxYiOL34MycvehBP88_z~1>~1f_aNY!vcV&U}MKUSth)xK;{JoG{H%be8C9n9uVC zb(WPaeJTN!VkT_(f}Lb2m*_#3N%cdspGECr=3xe}B5f>+dY~*{ik?$CHq<35HDxl# z=kxF$g-zG|4Ys6il553$gVo7ZREaUcBDb;VFEUeW78=v}46cizT8V8)C%`bVO7N&} zO!9kCrx;*k{+!=8IO;e`@8TDkN6@GpjO}7D!e9@B+ZlAR@-+;0a(9K{cgI)&P7~IO> zuUY6IV}}^L#z!JO=6(j78H_U6$e^FWCI$x>+{WMu2FDpZ#NY$$gNGSA&0vt_%`-N^ z;3)?0V(<$LMD0Gu*eM1l8C+oSb_O3qP>N@A1vpC183(bBORf6pj@&tFO1KI4OcW)d zDWlwu$wQ-Dw2C5yc|8GpE63n*7Cy(|Z44F|yobR%7#IxBGv5qjvkczJV3BE0Gj@i- zQ+#|EgP-T)Sq8@#JjUP=20zEZWbh<|2N;}Z;404xo$;GY`*jvI#aVTfkBbb(7)&wv z8liubu`GiOgA)ua1~e>SexC&#;p2N5h~Clr8G9cC3X&>$)R&o$bh#2rZD%aXK*Y5~ zaErq8NmwP9AF@DkITSomk@=!!}DCY80z|3}zQ}`~X&! zen*$hV-12CNVaAtD!Cd8u<<&bJM@+V=4));w+NFMP55obN(}yxK^vRr2G`)R6oVBT zx@_8k{tOg~_&&56SB-Z>aPJ#~MnBb^{r~aOkqYk6_75eHBf-l_P!>8C54H0xLeQ;s zOowhiLSAA<9z$A`Pp~6^Tjgjl+7tzK6K%y${=+>(C|VZ_w{`IDnYYjCzct|~sF_$O zvI2F(S^#Z!(W*d47*I9}4TKt?m>o{U6FU<}6LpE@iN-`@;8Fcw;~lY3tOe9mBd+1_ zUuZQT-lO08|0XsiZb-!NeM_P%5{**Ecr>vh(VW;Dcr=k@I{r4}w=!{8Vqc;@u{v>m zqCL@?ScY0xB+e&h5|1SA$NOmFp2Rxj=}rvd@Ab&JCvhfm5@q)!IuO4u)*A1NFOS_A zYly9lT^EnV9*B3vHpZgywd`U3w-UZE+i>^N9_&N=V@c#}IkOrW=&lv2wM)wPrD9D z#P}6c5~7icG2*xI&l!5N6ScM1v!6P8JK8!n$L{2a0-`sg7-jdrc0k&0KevYikG5=! gW0tgq)`V7K%ouiu65+O$ZH;XW@w$~5v&fhK59xL!hyVZp literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_vendor/__pycache__/six.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_vendor/__pycache__/six.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d0798d214458f1aaf9731f91bb5538fbec69fade GIT binary patch literal 27616 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 literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_vendor/appdirs.py b/Scripts/Lib/site-packages/pip/_vendor/appdirs.py new file mode 100644 index 0000000..33a3b77 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/appdirs.py @@ -0,0 +1,633 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- +# Copyright (c) 2005-2010 ActiveState Software Inc. +# Copyright (c) 2013 Eddy Petrișor + +"""Utilities for determining application-specific dirs. + +See for details and usage. +""" +# Dev Notes: +# - MSDN on where to store app data files: +# http://support.microsoft.com/default.aspx?scid=kb;en-us;310294#XSLTH3194121123120121120120 +# - Mac OS X: http://developer.apple.com/documentation/MacOSX/Conceptual/BPFileSystem/index.html +# - XDG spec for Un*x: http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html + +__version__ = "1.4.4" +__version_info__ = tuple(int(segment) for segment in __version__.split(".")) + + +import sys +import os + +PY3 = sys.version_info[0] == 3 + +if PY3: + unicode = str + +if sys.platform.startswith('java'): + import platform + os_name = platform.java_ver()[3][0] + if os_name.startswith('Windows'): # "Windows XP", "Windows 7", etc. + system = 'win32' + elif os_name.startswith('Mac'): # "Mac OS X", etc. + system = 'darwin' + else: # "Linux", "SunOS", "FreeBSD", etc. + # Setting this to "linux2" is not ideal, but only Windows or Mac + # are actually checked for and the rest of the module expects + # *sys.platform* style strings. + system = 'linux2' +elif sys.platform == 'cli' and os.name == 'nt': + # Detect Windows in IronPython to match pip._internal.utils.compat.WINDOWS + # Discussion: + system = 'win32' +else: + system = sys.platform + + + +def user_data_dir(appname=None, appauthor=None, version=None, roaming=False): + r"""Return full path to the user-specific data dir for this application. + + "appname" is the name of application. + If None, just the system directory is returned. + "appauthor" (only used on Windows) is the name of the + appauthor or distributing body for this application. Typically + it is the owning company name. This falls back to appname. You may + pass False to disable it. + "version" is 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 ".". + Only applied when appname is present. + "roaming" (boolean, default False) can be set True to use the Windows + roaming appdata directory. That means that for users on a Windows + network setup for roaming profiles, this user data will be + sync'd on login. See + + for a discussion of issues. + + Typical user data directories are: + Mac OS X: ~/Library/Application Support/ # or ~/.config/, if the other does not exist + Unix: ~/.local/share/ # or in $XDG_DATA_HOME, if defined + Win XP (not roaming): C:\Documents and Settings\\Application Data\\ + Win XP (roaming): C:\Documents and Settings\\Local Settings\Application Data\\ + Win 7 (not roaming): C:\Users\\AppData\Local\\ + Win 7 (roaming): C:\Users\\AppData\Roaming\\ + + For Unix, we follow the XDG spec and support $XDG_DATA_HOME. + That means, by default "~/.local/share/". + """ + if system == "win32": + if appauthor is None: + appauthor = appname + const = roaming and "CSIDL_APPDATA" or "CSIDL_LOCAL_APPDATA" + path = os.path.normpath(_get_win_folder(const)) + if appname: + if appauthor is not False: + path = os.path.join(path, appauthor, appname) + else: + path = os.path.join(path, appname) + elif system == 'darwin': + path = os.path.expanduser('~/Library/Application Support/') + if appname: + path = os.path.join(path, appname) + else: + path = os.getenv('XDG_DATA_HOME', os.path.expanduser("~/.local/share")) + if appname: + path = os.path.join(path, appname) + if appname and version: + path = os.path.join(path, version) + return path + + +def site_data_dir(appname=None, appauthor=None, version=None, multipath=False): + r"""Return full path to the user-shared data dir for this application. + + "appname" is the name of application. + If None, just the system directory is returned. + "appauthor" (only used on Windows) is the name of the + appauthor or distributing body for this application. Typically + it is the owning company name. This falls back to appname. You may + pass False to disable it. + "version" is 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 ".". + Only applied when appname is present. + "multipath" is an optional parameter only applicable to *nix + which indicates that the entire list of data dirs should be + returned. By default, the first item from XDG_DATA_DIRS is + returned, or '/usr/local/share/', + if XDG_DATA_DIRS is not set + + Typical site data directories are: + Mac OS X: /Library/Application Support/ + Unix: /usr/local/share/ or /usr/share/ + Win XP: C:\Documents and Settings\All Users\Application Data\\ + Vista: (Fail! "C:\ProgramData" is a hidden *system* directory on Vista.) + Win 7: C:\ProgramData\\ # Hidden, but writeable on Win 7. + + For Unix, this is using the $XDG_DATA_DIRS[0] default. + + WARNING: Do not use this on Windows. See the Vista-Fail note above for why. + """ + if system == "win32": + if appauthor is None: + appauthor = appname + path = os.path.normpath(_get_win_folder("CSIDL_COMMON_APPDATA")) + if appname: + if appauthor is not False: + path = os.path.join(path, appauthor, appname) + else: + path = os.path.join(path, appname) + elif system == 'darwin': + path = os.path.expanduser('/Library/Application Support') + if appname: + path = os.path.join(path, appname) + else: + # XDG default for $XDG_DATA_DIRS + # only first, if multipath is False + path = os.getenv('XDG_DATA_DIRS', + os.pathsep.join(['/usr/local/share', '/usr/share'])) + pathlist = [os.path.expanduser(x.rstrip(os.sep)) for x in path.split(os.pathsep)] + if appname: + if version: + appname = os.path.join(appname, version) + pathlist = [os.path.join(x, appname) for x in pathlist] + + if multipath: + path = os.pathsep.join(pathlist) + else: + path = pathlist[0] + return path + + if appname and version: + path = os.path.join(path, version) + return path + + +def user_config_dir(appname=None, appauthor=None, version=None, roaming=False): + r"""Return full path to the user-specific config dir for this application. + + "appname" is the name of application. + If None, just the system directory is returned. + "appauthor" (only used on Windows) is the name of the + appauthor or distributing body for this application. Typically + it is the owning company name. This falls back to appname. You may + pass False to disable it. + "version" is 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 ".". + Only applied when appname is present. + "roaming" (boolean, default False) can be set True to use the Windows + roaming appdata directory. That means that for users on a Windows + network setup for roaming profiles, this user data will be + sync'd on login. See + + for a discussion of issues. + + Typical user config directories are: + Mac OS X: same as user_data_dir + Unix: ~/.config/ # or in $XDG_CONFIG_HOME, if defined + Win *: same as user_data_dir + + For Unix, we follow the XDG spec and support $XDG_CONFIG_HOME. + That means, by default "~/.config/". + """ + if system in ["win32", "darwin"]: + path = user_data_dir(appname, appauthor, None, roaming) + else: + path = os.getenv('XDG_CONFIG_HOME', os.path.expanduser("~/.config")) + if appname: + path = os.path.join(path, appname) + if appname and version: + path = os.path.join(path, version) + return path + + +# for the discussion regarding site_config_dir locations +# see +def site_config_dir(appname=None, appauthor=None, version=None, multipath=False): + r"""Return full path to the user-shared data dir for this application. + + "appname" is the name of application. + If None, just the system directory is returned. + "appauthor" (only used on Windows) is the name of the + appauthor or distributing body for this application. Typically + it is the owning company name. This falls back to appname. You may + pass False to disable it. + "version" is 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 ".". + Only applied when appname is present. + "multipath" is an optional parameter only applicable to *nix + which indicates that the entire list of config dirs should be + returned. By default, the first item from XDG_CONFIG_DIRS is + returned, or '/etc/xdg/', if XDG_CONFIG_DIRS is not set + + Typical site config directories are: + Mac OS X: same as site_data_dir + Unix: /etc/xdg/ or $XDG_CONFIG_DIRS[i]/ for each value in + $XDG_CONFIG_DIRS + Win *: same as site_data_dir + Vista: (Fail! "C:\ProgramData" is a hidden *system* directory on Vista.) + + For Unix, this is using the $XDG_CONFIG_DIRS[0] default, if multipath=False + + WARNING: Do not use this on Windows. See the Vista-Fail note above for why. + """ + if system in ["win32", "darwin"]: + path = site_data_dir(appname, appauthor) + if appname and version: + path = os.path.join(path, version) + else: + # XDG default for $XDG_CONFIG_DIRS (missing or empty) + # see + # only first, if multipath is False + path = os.getenv('XDG_CONFIG_DIRS') or '/etc/xdg' + pathlist = [os.path.expanduser(x.rstrip(os.sep)) for x in path.split(os.pathsep) if x] + if appname: + if version: + appname = os.path.join(appname, version) + pathlist = [os.path.join(x, appname) for x in pathlist] + + if multipath: + path = os.pathsep.join(pathlist) + else: + path = pathlist[0] + return path + + +def user_cache_dir(appname=None, appauthor=None, version=None, opinion=True): + r"""Return full path to the user-specific cache dir for this application. + + "appname" is the name of application. + If None, just the system directory is returned. + "appauthor" (only used on Windows) is the name of the + appauthor or distributing body for this application. Typically + it is the owning company name. This falls back to appname. You may + pass False to disable it. + "version" is 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 ".". + Only applied when appname is present. + "opinion" (boolean) can be False to disable the appending of + "Cache" to the base app data dir for Windows. See + discussion below. + + Typical user cache directories are: + Mac OS X: ~/Library/Caches/ + Unix: ~/.cache/ (XDG default) + Win XP: C:\Documents and Settings\\Local Settings\Application Data\\\Cache + Vista: C:\Users\\AppData\Local\\\Cache + + On Windows the only suggestion in the MSDN docs is that local settings go in + the `CSIDL_LOCAL_APPDATA` directory. This is identical to the non-roaming + app data dir (the default returned by `user_data_dir` above). Apps typically + put cache data somewhere *under* the given dir here. Some examples: + ...\Mozilla\Firefox\Profiles\\Cache + ...\Acme\SuperApp\Cache\1.0 + OPINION: This function appends "Cache" to the `CSIDL_LOCAL_APPDATA` value. + This can be disabled with the `opinion=False` option. + """ + if system == "win32": + if appauthor is None: + appauthor = appname + path = os.path.normpath(_get_win_folder("CSIDL_LOCAL_APPDATA")) + # When using Python 2, return paths as bytes on Windows like we do on + # other operating systems. See helper function docs for more details. + if not PY3 and isinstance(path, unicode): + path = _win_path_to_bytes(path) + if appname: + if appauthor is not False: + path = os.path.join(path, appauthor, appname) + else: + path = os.path.join(path, appname) + if opinion: + path = os.path.join(path, "Cache") + elif system == 'darwin': + path = os.path.expanduser('~/Library/Caches') + if appname: + path = os.path.join(path, appname) + else: + path = os.getenv('XDG_CACHE_HOME', os.path.expanduser('~/.cache')) + if appname: + path = os.path.join(path, appname) + if appname and version: + path = os.path.join(path, version) + return path + + +def user_state_dir(appname=None, appauthor=None, version=None, roaming=False): + r"""Return full path to the user-specific state dir for this application. + + "appname" is the name of application. + If None, just the system directory is returned. + "appauthor" (only used on Windows) is the name of the + appauthor or distributing body for this application. Typically + it is the owning company name. This falls back to appname. You may + pass False to disable it. + "version" is 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 ".". + Only applied when appname is present. + "roaming" (boolean, default False) can be set True to use the Windows + roaming appdata directory. That means that for users on a Windows + network setup for roaming profiles, this user data will be + sync'd on login. See + + for a discussion of issues. + + Typical user state directories are: + Mac OS X: same as user_data_dir + Unix: ~/.local/state/ # or in $XDG_STATE_HOME, if defined + Win *: same as user_data_dir + + For Unix, we follow this Debian proposal + to extend the XDG spec and support $XDG_STATE_HOME. + + That means, by default "~/.local/state/". + """ + if system in ["win32", "darwin"]: + path = user_data_dir(appname, appauthor, None, roaming) + else: + path = os.getenv('XDG_STATE_HOME', os.path.expanduser("~/.local/state")) + if appname: + path = os.path.join(path, appname) + if appname and version: + path = os.path.join(path, version) + return path + + +def user_log_dir(appname=None, appauthor=None, version=None, opinion=True): + r"""Return full path to the user-specific log dir for this application. + + "appname" is the name of application. + If None, just the system directory is returned. + "appauthor" (only used on Windows) is the name of the + appauthor or distributing body for this application. Typically + it is the owning company name. This falls back to appname. You may + pass False to disable it. + "version" is 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 ".". + Only applied when appname is present. + "opinion" (boolean) can be False to disable the appending of + "Logs" to the base app data dir for Windows, and "log" to the + base cache dir for Unix. See discussion below. + + Typical user log directories are: + Mac OS X: ~/Library/Logs/ + Unix: ~/.cache//log # or under $XDG_CACHE_HOME if defined + Win XP: C:\Documents and Settings\\Local Settings\Application Data\\\Logs + Vista: C:\Users\\AppData\Local\\\Logs + + On Windows the only suggestion in the MSDN docs is that local settings + go in the `CSIDL_LOCAL_APPDATA` directory. (Note: I'm interested in + examples of what some windows apps use for a logs dir.) + + OPINION: This function appends "Logs" to the `CSIDL_LOCAL_APPDATA` + value for Windows and appends "log" to the user cache dir for Unix. + This can be disabled with the `opinion=False` option. + """ + if system == "darwin": + path = os.path.join( + os.path.expanduser('~/Library/Logs'), + appname) + elif system == "win32": + path = user_data_dir(appname, appauthor, version) + version = False + if opinion: + path = os.path.join(path, "Logs") + else: + path = user_cache_dir(appname, appauthor, version) + version = False + if opinion: + path = os.path.join(path, "log") + if appname and version: + path = os.path.join(path, version) + return path + + +class AppDirs(object): + """Convenience wrapper for getting application dirs.""" + def __init__(self, appname=None, appauthor=None, version=None, + roaming=False, multipath=False): + self.appname = appname + self.appauthor = appauthor + self.version = version + self.roaming = roaming + self.multipath = multipath + + @property + def user_data_dir(self): + return user_data_dir(self.appname, self.appauthor, + version=self.version, roaming=self.roaming) + + @property + def site_data_dir(self): + return site_data_dir(self.appname, self.appauthor, + version=self.version, multipath=self.multipath) + + @property + def user_config_dir(self): + return user_config_dir(self.appname, self.appauthor, + version=self.version, roaming=self.roaming) + + @property + def site_config_dir(self): + return site_config_dir(self.appname, self.appauthor, + version=self.version, multipath=self.multipath) + + @property + def user_cache_dir(self): + return user_cache_dir(self.appname, self.appauthor, + version=self.version) + + @property + def user_state_dir(self): + return user_state_dir(self.appname, self.appauthor, + version=self.version) + + @property + def user_log_dir(self): + return user_log_dir(self.appname, self.appauthor, + version=self.version) + + +#---- internal support stuff + +def _get_win_folder_from_registry(csidl_name): + """This is a fallback technique at best. I'm not sure if using the + registry for this guarantees us the correct answer for all CSIDL_* + names. + """ + if PY3: + import winreg as _winreg + else: + import _winreg + + shell_folder_name = { + "CSIDL_APPDATA": "AppData", + "CSIDL_COMMON_APPDATA": "Common AppData", + "CSIDL_LOCAL_APPDATA": "Local AppData", + }[csidl_name] + + key = _winreg.OpenKey( + _winreg.HKEY_CURRENT_USER, + r"Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders" + ) + dir, type = _winreg.QueryValueEx(key, shell_folder_name) + return dir + + +def _get_win_folder_with_pywin32(csidl_name): + from win32com.shell import shellcon, shell + dir = shell.SHGetFolderPath(0, getattr(shellcon, csidl_name), 0, 0) + # Try to make this a unicode path because SHGetFolderPath does + # not return unicode strings when there is unicode data in the + # path. + try: + dir = unicode(dir) + + # Downgrade to short path name if have highbit chars. See + # . + has_high_char = False + for c in dir: + if ord(c) > 255: + has_high_char = True + break + if has_high_char: + try: + import win32api + dir = win32api.GetShortPathName(dir) + except ImportError: + pass + except UnicodeError: + pass + return dir + + +def _get_win_folder_with_ctypes(csidl_name): + import ctypes + + csidl_const = { + "CSIDL_APPDATA": 26, + "CSIDL_COMMON_APPDATA": 35, + "CSIDL_LOCAL_APPDATA": 28, + }[csidl_name] + + buf = ctypes.create_unicode_buffer(1024) + ctypes.windll.shell32.SHGetFolderPathW(None, csidl_const, None, 0, buf) + + # Downgrade to short path name if have highbit chars. See + # . + has_high_char = False + for c in buf: + if ord(c) > 255: + has_high_char = True + break + if has_high_char: + buf2 = ctypes.create_unicode_buffer(1024) + if ctypes.windll.kernel32.GetShortPathNameW(buf.value, buf2, 1024): + buf = buf2 + + return buf.value + +def _get_win_folder_with_jna(csidl_name): + import array + from com.sun import jna + from com.sun.jna.platform import win32 + + buf_size = win32.WinDef.MAX_PATH * 2 + buf = array.zeros('c', buf_size) + shell = win32.Shell32.INSTANCE + shell.SHGetFolderPath(None, getattr(win32.ShlObj, csidl_name), None, win32.ShlObj.SHGFP_TYPE_CURRENT, buf) + dir = jna.Native.toString(buf.tostring()).rstrip("\0") + + # Downgrade to short path name if have highbit chars. See + # . + has_high_char = False + for c in dir: + if ord(c) > 255: + has_high_char = True + break + if has_high_char: + buf = array.zeros('c', buf_size) + kernel = win32.Kernel32.INSTANCE + if kernel.GetShortPathName(dir, buf, buf_size): + dir = jna.Native.toString(buf.tostring()).rstrip("\0") + + return dir + +if system == "win32": + try: + from ctypes import windll + _get_win_folder = _get_win_folder_with_ctypes + except ImportError: + try: + import com.sun.jna + _get_win_folder = _get_win_folder_with_jna + except ImportError: + _get_win_folder = _get_win_folder_from_registry + + +def _win_path_to_bytes(path): + """Encode Windows paths to bytes. Only used on Python 2. + + Motivation is to be consistent with other operating systems where paths + are also returned as bytes. This avoids problems mixing bytes and Unicode + elsewhere in the codebase. For more details and discussion see + . + + If encoding using ASCII and MBCS fails, return the original Unicode path. + """ + for encoding in ('ASCII', 'MBCS'): + try: + return path.encode(encoding) + except (UnicodeEncodeError, LookupError): + pass + return path + + +#---- self test code + +if __name__ == "__main__": + appname = "MyApp" + appauthor = "MyCompany" + + props = ("user_data_dir", + "user_config_dir", + "user_cache_dir", + "user_state_dir", + "user_log_dir", + "site_data_dir", + "site_config_dir") + + print("-- app dirs %s --" % __version__) + + print("-- app dirs (with optional 'version')") + dirs = AppDirs(appname, appauthor, version="1.0") + for prop in props: + print("%s: %s" % (prop, getattr(dirs, prop))) + + print("\n-- app dirs (without optional 'version')") + dirs = AppDirs(appname, appauthor) + for prop in props: + print("%s: %s" % (prop, getattr(dirs, prop))) + + print("\n-- app dirs (without optional 'appauthor')") + dirs = AppDirs(appname) + for prop in props: + print("%s: %s" % (prop, getattr(dirs, prop))) + + print("\n-- app dirs (with disabled 'appauthor')") + dirs = AppDirs(appname, appauthor=False) + for prop in props: + print("%s: %s" % (prop, getattr(dirs, prop))) diff --git a/Scripts/Lib/site-packages/pip/_vendor/cachecontrol/__init__.py b/Scripts/Lib/site-packages/pip/_vendor/cachecontrol/__init__.py new file mode 100644 index 0000000..a1bbbbe --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/cachecontrol/__init__.py @@ -0,0 +1,11 @@ +"""CacheControl import Interface. + +Make it easy to import from cachecontrol without long namespaces. +""" +__author__ = "Eric Larson" +__email__ = "eric@ionrock.org" +__version__ = "0.12.6" + +from .wrapper import CacheControl +from .adapter import CacheControlAdapter +from .controller import CacheController diff --git a/Scripts/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9b0f6bba4084e298af074d3feee0240e296d2d33 GIT binary patch literal 570 zcmYjN!EO^V5cMXTY_d(E5M)Cc}ukGuEv7bE|#)!xno$!j1W+l@}ndnhD z(&KWhQ$2BMJt-#%BRqA}IxDk#oVi&&FXx13S8O?NZ_ZVm30JthhqC4!CS zDcQ7B8xw@LenkQs4Y(RwyOPp2HcDCeLpOU{gWfyyuD2^ZqLi{UO_MZPj26jB@)wG~ Buyp_c literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e001dbd6dc3f28e1060e09fa019fd5f5af80ef12 GIT binary patch literal 1601 zcmZ`(%Z}Vc6s_{R-R_jp+*=Rdd+sSWqftnp{r<;a%SSFDf1+`- z*nC~QmOWMI^6^aB%s(ASUBO}fPrcMj7wQGwRWp!T`L{-*yKnsOi7oACopQ7z zVWTNUHyq$;!v$9q!W}#6@0gKcGP&V7 zGU4{BJL>gjber6M>oT*)=sLOc_C?)I25tAhBFM0-KkB4o48_^;xlf?ZDh>(YU+2bP k^d8);8n!O^Jye9mtpSNFctGlr71)6nM4=bF7gFcdzq7xW{r~^~ literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1482fa6ce1e3b4a692b7c4ce2682089c33547183 GIT binary patch literal 3119 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 c_DTX4=Bw~Y-OOL$i^E`meX`+iv%6dW0!Bwa z@Blmjr-&Qkz$yLM>cHPJA2ja&bZ}z+=4m)kf`w+1340|~x*u}L?(UCA=;dy&{NoM{pydjy< zdRS@kUh;B*aqxV(Jb4X9$k;a$Ru8iio~;Gc1J!<6q_~Qbk5J}PM;bm~>%Mzhz~)&|cH)jefzET_fWVN}kCa>H`a(Y+^SG!$n#^cQ4mi{h86)IxlkX|Ak^u_`v) z!riMm#Mt3{H>G)&W-G{KX|)vdOcpA&k=oRw$A!!*0Z%BlWA5YTkSPu5lsbPLFTf~h QqQU;m-ACRSwK1xH0a)DGUH||9 literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..59ae2953560c3f51f6bf1ae411c0f7c9ce92b352 GIT binary patch literal 7801 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 U?=eb3k!~U>ofn?v+4J`Q0VY+m#sB~S literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..89359ee19df76a8523ede1772a4f8fdfe3844762 GIT binary patch literal 708 zcmY*Xy^ho{5VrH5+w5`tR8+JnU@5LTA;hs%2-4hEt4NVAwl2{nYs+?k+w)e?@(xh) z4mEc?kB+_41@F*auyAe4ypiXSHmFRwY!Gs@3eVAoV4=V5$_Ym{srCigGy{TilI4doPI)Og<4; zHkXOm|= Xr$fh{yFW-h0LV~=y>S1n!@vIknwYUF literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_vendor/cachecontrol/_cmd.py b/Scripts/Lib/site-packages/pip/_vendor/cachecontrol/_cmd.py new file mode 100644 index 0000000..f1e0ad9 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/cachecontrol/_cmd.py @@ -0,0 +1,57 @@ +import logging + +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 + +from argparse import ArgumentParser + + +def setup_logging(): + logger.setLevel(logging.DEBUG) + handler = logging.StreamHandler() + logger.addHandler(handler) + + +def get_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 + return sess + + +def get_args(): + parser = ArgumentParser() + parser.add_argument("url", help="The URL to try and cache") + return parser.parse_args() + + +def main(args=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 + sess.cache_controller.cache_response(resp.request, resp.raw) + + # Now try to get it + if sess.cache_controller.cached_request(resp.request): + print("Cached!") + else: + print("Not cached :(") + + +if __name__ == "__main__": + main() diff --git a/Scripts/Lib/site-packages/pip/_vendor/cachecontrol/adapter.py b/Scripts/Lib/site-packages/pip/_vendor/cachecontrol/adapter.py new file mode 100644 index 0000000..815650e --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/cachecontrol/adapter.py @@ -0,0 +1,133 @@ +import types +import functools +import zlib + +from pip._vendor.requests.adapters import HTTPAdapter + +from .controller import CacheController +from .cache import DictCache +from .filewrapper import CallbackFileWrapper + + +class CacheControlAdapter(HTTPAdapter): + invalidating_methods = {"PUT", "DELETE"} + + def __init__( + self, + cache=None, + cache_etags=True, + controller_class=None, + serializer=None, + heuristic=None, + cacheable_methods=None, + *args, + **kw + ): + super(CacheControlAdapter, self).__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, cacheable_methods=None, **kw): + """ + 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(CacheControlAdapter, self).send(request, **kw) + + return resp + + def build_response( + self, request, response, from_cache=False, cacheable_methods=None + ): + """ + 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 response.status == 301: + 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( + response._fp, + functools.partial( + self.controller.cache_response, request, response + ), + ) + if response.chunked: + super_update_chunk_length = response._update_chunk_length + + def _update_chunk_length(self): + super_update_chunk_length() + if self.chunk_left == 0: + self._fp._close() + + response._update_chunk_length = types.MethodType( + _update_chunk_length, response + ) + + resp = super(CacheControlAdapter, self).build_response(request, response) + + # See if we should invalidate the cache. + if request.method in self.invalidating_methods and resp.ok: + 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 + + return resp + + def close(self): + self.cache.close() + super(CacheControlAdapter, self).close() diff --git a/Scripts/Lib/site-packages/pip/_vendor/cachecontrol/cache.py b/Scripts/Lib/site-packages/pip/_vendor/cachecontrol/cache.py new file mode 100644 index 0000000..94e0773 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/cachecontrol/cache.py @@ -0,0 +1,39 @@ +""" +The cache object API for implementing caches. The default is a thread +safe in-memory dictionary. +""" +from threading import Lock + + +class BaseCache(object): + + def get(self, key): + raise NotImplementedError() + + def set(self, key, value): + raise NotImplementedError() + + def delete(self, key): + raise NotImplementedError() + + def close(self): + pass + + +class DictCache(BaseCache): + + def __init__(self, init_dict=None): + self.lock = Lock() + self.data = init_dict or {} + + def get(self, key): + return self.data.get(key, None) + + def set(self, key, value): + with self.lock: + self.data.update({key: value}) + + def delete(self, key): + with self.lock: + if key in self.data: + self.data.pop(key) diff --git a/Scripts/Lib/site-packages/pip/_vendor/cachecontrol/caches/__init__.py b/Scripts/Lib/site-packages/pip/_vendor/cachecontrol/caches/__init__.py new file mode 100644 index 0000000..0e1658f --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/cachecontrol/caches/__init__.py @@ -0,0 +1,2 @@ +from .file_cache import FileCache # noqa +from .redis_cache import RedisCache # noqa diff --git a/Scripts/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3ccf42a52dfd9889ff5e7a036f5dda859305a30d GIT binary patch literal 314 zcmYk1F;2uV5Jl}ILJ(Mq15nVWfKX5&gb+wnkYaZW6j`!NJP>Q0*s>kO(sCN^zyUZz zT13GWs2B$dMw&nK=G!CN%w{>kczgeBZ?S$v_#X+vIi}x3kwj8WI$Bd2`$Q*QTBq2j z3sPiX6ps{i+`3X4E=AJy+lk7(L0B(N?oz)@$TQpAD;2GXxUIjR? zqFIRt@XRV(@<-^Uapm-y#`M7%{R_V2T=gn&erVU@=4of-py4e3&u1t*WS9N`P$XI= literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..722212ae30c07ffbac514509731c767c0048405c GIT binary patch literal 3373 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 Y7jN_11z+|M9wX(h?n4r?kiO6V1Lag<5dZ)H literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py b/Scripts/Lib/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py new file mode 100644 index 0000000..607b945 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py @@ -0,0 +1,146 @@ +import hashlib +import os +from textwrap import dedent + +from ..cache import BaseCache +from ..controller import CacheController + +try: + FileNotFoundError +except NameError: + # py2.X + FileNotFoundError = (IOError, OSError) + + +def _secure_open_write(filename, fmode): + # 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 (IOError, 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 FileCache(BaseCache): + + def __init__( + self, + directory, + forever=False, + filemode=0o0600, + dirmode=0o0700, + use_dir_lock=None, + lock_class=None, + ): + + if use_dir_lock is not None and lock_class is not None: + raise ValueError("Cannot use use_dir_lock and lock_class together") + + try: + from lockfile import LockFile + from lockfile.mkdirlockfile import MkdirLockFile + except ImportError: + notice = dedent( + """ + NOTE: In order to use the FileCache you must have + lockfile installed. You can install it via pip: + pip install lockfile + """ + ) + raise ImportError(notice) + + else: + if use_dir_lock: + lock_class = MkdirLockFile + + elif lock_class is None: + lock_class = LockFile + + self.directory = directory + self.forever = forever + self.filemode = filemode + self.dirmode = dirmode + self.lock_class = lock_class + + @staticmethod + def encode(x): + return hashlib.sha224(x.encode()).hexdigest() + + def _fn(self, name): + # 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): + name = self._fn(key) + try: + with open(name, "rb") as fh: + return fh.read() + + except FileNotFoundError: + return None + + def set(self, key, value): + name = self._fn(key) + + # Make sure the directory exists + try: + os.makedirs(os.path.dirname(name), self.dirmode) + except (IOError, OSError): + pass + + with self.lock_class(name) as lock: + # Write our actual file + with _secure_open_write(lock.path, self.filemode) as fh: + fh.write(value) + + def delete(self, key): + name = self._fn(key) + if not self.forever: + try: + os.remove(name) + except FileNotFoundError: + pass + + +def url_to_file_path(url, filecache): + """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/Scripts/Lib/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py b/Scripts/Lib/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py new file mode 100644 index 0000000..ed705ce --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py @@ -0,0 +1,33 @@ +from __future__ import division + +from datetime import datetime +from pip._vendor.cachecontrol.cache import BaseCache + + +class RedisCache(BaseCache): + + def __init__(self, conn): + self.conn = conn + + def get(self, key): + return self.conn.get(key) + + def set(self, key, value, expires=None): + if not expires: + self.conn.set(key, value) + else: + expires = expires - datetime.utcnow() + self.conn.setex(key, int(expires.total_seconds()), value) + + def delete(self, key): + self.conn.delete(key) + + def clear(self): + """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): + """Redis uses connection pooling, no need to close the connection.""" + pass diff --git a/Scripts/Lib/site-packages/pip/_vendor/cachecontrol/compat.py b/Scripts/Lib/site-packages/pip/_vendor/cachecontrol/compat.py new file mode 100644 index 0000000..33b5aed --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/cachecontrol/compat.py @@ -0,0 +1,29 @@ +try: + from urllib.parse import urljoin +except ImportError: + from urlparse import urljoin + + +try: + import cPickle as pickle +except ImportError: + import pickle + + +# Handle the case where the requests module has been patched to not have +# urllib3 bundled as part of its source. +try: + from pip._vendor.requests.packages.urllib3.response import HTTPResponse +except ImportError: + from pip._vendor.urllib3.response import HTTPResponse + +try: + from pip._vendor.requests.packages.urllib3.util import is_fp_closed +except ImportError: + from pip._vendor.urllib3.util import is_fp_closed + +# Replicate some six behaviour +try: + text_type = unicode +except NameError: + text_type = str diff --git a/Scripts/Lib/site-packages/pip/_vendor/cachecontrol/controller.py b/Scripts/Lib/site-packages/pip/_vendor/cachecontrol/controller.py new file mode 100644 index 0000000..dafe55c --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/cachecontrol/controller.py @@ -0,0 +1,376 @@ +""" +The httplib2 algorithms ported for use with requests. +""" +import logging +import re +import calendar +import time +from email.utils import parsedate_tz + +from pip._vendor.requests.structures import CaseInsensitiveDict + +from .cache import DictCache +from .serialize import Serializer + + +logger = logging.getLogger(__name__) + +URI = re.compile(r"^(([^:/?#]+):)?(//([^/?#]*))?([^?#]*)(\?([^#]*))?(#(.*))?") + + +def parse_uri(uri): + """Parses a URI using the regex given in Appendix B of RFC 3986. + + (scheme, authority, path, query, fragment) = parse_uri(uri) + """ + groups = URI.match(uri).groups() + return (groups[1], groups[3], groups[4], groups[6], groups[8]) + + +class CacheController(object): + """An interface to see if request should cached or not. + """ + + def __init__( + self, cache=None, cache_etags=True, serializer=None, status_codes=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) + + @classmethod + def _urlnorm(cls, uri): + """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): + return cls._urlnorm(uri) + + def parse_cache_control(self, headers): + 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 = {} + + 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 cached_request(self, request): + """ + Return a cached response if it exists in the cache, otherwise + return False. + """ + 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 + + # Request allows serving from the cache, let's see if we find something + cache_data = self.cache.get(cache_url) + if cache_data is None: + logger.debug("No cache entry available") + return False + + # Check whether it can be deserialized + resp = self.serializer.loads(request, cache_data) + if not resp: + logger.warning("Cache entry deserialization failed, entry ignored") + return False + + # If we have a cached 301, 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 resp.status == 301: + msg = ( + 'Returning cached "301 Moved Permanently" response ' + "(ignoring date and etag information)" + ) + logger.debug(msg) + return resp + + headers = 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() + date = calendar.timegm(parsedate_tz(headers["date"])) + 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 + if "max-age" in resp_cc: + freshness_lifetime = resp_cc["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) - 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. + if "max-age" in cc: + freshness_lifetime = cc["max-age"] + logger.debug( + "Freshness lifetime from request max-age: %i", freshness_lifetime + ) + + if "min-fresh" in cc: + min_fresh = cc["min-fresh"] + # 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): + cache_url = self.cache_url(request.url) + resp = self.serializer.loads(request, self.cache.get(cache_url)) + new_headers = {} + + if resp: + headers = 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_response(self, request, response, body=None, status_codes=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(response.headers) + + # 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) + + 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: + logger.debug("Caching due to etag") + self.cache.set( + cache_url, self.serializer.dumps(request, response, body=body) + ) + + # Add to the cache any 301s. We do this before looking that + # the Date headers. + elif response.status == 301: + logger.debug("Caching permanant redirect") + self.cache.set(cache_url, self.serializer.dumps(request, response)) + + # 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: + # cache when there is a max-age > 0 + if "max-age" in cc and cc["max-age"] > 0: + logger.debug("Caching b/c date exists and max-age > 0") + self.cache.set( + cache_url, self.serializer.dumps(request, response, body=body) + ) + + # If the request can expire, it means we should cache it + # in the meantime. + elif "expires" in response_headers: + if response_headers["expires"]: + logger.debug("Caching b/c of expires header") + self.cache.set( + cache_url, self.serializer.dumps(request, response, body=body) + ) + + def update_cached_response(self, request, response): + """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. + """ + cache_url = self.cache_url(request.url) + + cached_response = self.serializer.loads(request, self.cache.get(cache_url)) + + 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( + dict( + (k, v) + for k, v in response.headers.items() + if k.lower() not in excluded_headers + ) + ) + + # we want a 200 b/c we have content via the cache + cached_response.status = 200 + + # update our cache + self.cache.set(cache_url, self.serializer.dumps(request, cached_response)) + + return cached_response diff --git a/Scripts/Lib/site-packages/pip/_vendor/cachecontrol/filewrapper.py b/Scripts/Lib/site-packages/pip/_vendor/cachecontrol/filewrapper.py new file mode 100644 index 0000000..30ed4c5 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/cachecontrol/filewrapper.py @@ -0,0 +1,80 @@ +from io import BytesIO + + +class CallbackFileWrapper(object): + """ + 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. + """ + + def __init__(self, fp, callback): + self.__buf = BytesIO() + self.__fp = fp + self.__callback = callback + + def __getattr__(self, name): + # 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): + try: + return self.__fp.fp is None + + except AttributeError: + pass + + try: + return self.__fp.closed + + except AttributeError: + pass + + # We just don't cache it then. + # TODO: Add some logging here... + return False + + def _close(self): + if self.__callback: + self.__callback(self.__buf.getvalue()) + + # 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 + + def read(self, amt=None): + data = self.__fp.read(amt) + self.__buf.write(data) + if self.__is_fp_closed(): + self._close() + + return data + + def _safe_read(self, amt): + data = self.__fp._safe_read(amt) + 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/Scripts/Lib/site-packages/pip/_vendor/cachecontrol/heuristics.py b/Scripts/Lib/site-packages/pip/_vendor/cachecontrol/heuristics.py new file mode 100644 index 0000000..6c0e979 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/cachecontrol/heuristics.py @@ -0,0 +1,135 @@ +import calendar +import time + +from email.utils import formatdate, parsedate, parsedate_tz + +from datetime import datetime, timedelta + +TIME_FMT = "%a, %d %b %Y %H:%M:%S GMT" + + +def expire_after(delta, date=None): + date = date or datetime.utcnow() + return date + delta + + +def datetime_to_header(dt): + return formatdate(calendar.timegm(dt.timetuple())) + + +class BaseHeuristic(object): + + def warning(self, response): + """ + 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): + """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): + 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): + headers = {} + + if "expires" not in response.headers: + date = parsedate(response.headers["date"]) + expires = expire_after(timedelta(days=1), date=datetime(*date[:6])) + 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): + self.delta = timedelta(**kw) + + def update_headers(self, response): + expires = expire_after(self.delta) + return {"expires": datetime_to_header(expires), "cache-control": "public"} + + def warning(self, response): + 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): + headers = 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 {} + + date = calendar.timegm(parsedate_tz(headers["date"])) + last_modified = parsedate(headers["last-modified"]) + if date is None or 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): + return None diff --git a/Scripts/Lib/site-packages/pip/_vendor/cachecontrol/serialize.py b/Scripts/Lib/site-packages/pip/_vendor/cachecontrol/serialize.py new file mode 100644 index 0000000..3b6ec2d --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/cachecontrol/serialize.py @@ -0,0 +1,188 @@ +import base64 +import io +import json +import zlib + +from pip._vendor import msgpack +from pip._vendor.requests.structures import CaseInsensitiveDict + +from .compat import HTTPResponse, pickle, text_type + + +def _b64_decode_bytes(b): + return base64.b64decode(b.encode("ascii")) + + +def _b64_decode_str(s): + return _b64_decode_bytes(s).decode("utf8") + + +class Serializer(object): + + def dumps(self, request, response, body=None): + response_headers = CaseInsensitiveDict(response.headers) + + if body is None: + body = response.read(decode_content=False) + + # NOTE: 99% sure this is dead code. I'm only leaving it + # here b/c I don't have a test yet to prove + # it. Basically, before using + # `cachecontrol.filewrapper.CallbackFileWrapper`, + # this made an effort to reset the file handle. The + # `CallbackFileWrapper` short circuits this code by + # setting the body as the content is consumed, the + # result being a `body` argument is *always* passed + # into cache_response, and in turn, + # `Serializer.dump`. + response._fp = io.BytesIO(body) + + # NOTE: This is all a bit weird, but it's really important that on + # Python 2.x these objects are unicode and not str, even when + # they contain only ascii. The problem here is that msgpack + # understands the difference between unicode and bytes and we + # have it set to differentiate between them, however Python 2 + # doesn't know the difference. Forcing these to unicode will be + # enough to have msgpack know the difference. + data = { + u"response": { + u"body": body, + u"headers": dict( + (text_type(k), text_type(v)) for k, v in response.headers.items() + ), + u"status": response.status, + u"version": response.version, + u"reason": text_type(response.reason), + u"strict": response.strict, + u"decode_content": response.decode_content, + } + } + + # Construct our vary headers + data[u"vary"] = {} + if u"vary" in response_headers: + varied_headers = response_headers[u"vary"].split(",") + for header in varied_headers: + header = text_type(header).strip() + header_value = request.headers.get(header, None) + if header_value is not None: + header_value = text_type(header_value) + data[u"vary"][header] = header_value + + return b",".join([b"cc=4", msgpack.dumps(data, use_bin_type=True)]) + + def loads(self, request, data): + # Short circuit if we've been given an empty set of data + if not data: + return + + # 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 + ver = ver.split(b"=", 1)[-1].decode("ascii") + + # Dispatch to the actual load method for the given version + try: + return getattr(self, "_loads_v{}".format(ver))(request, data) + + 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 + + def prepare_response(self, request, cached): + """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 + + # 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 + + body_raw = cached["response"].pop("body") + + headers = CaseInsensitiveDict(data=cached["response"]["headers"]) + if headers.get("transfer-encoding", "") == "chunked": + headers.pop("transfer-encoding") + + cached["response"]["headers"] = headers + + try: + body = io.BytesIO(body_raw) + 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")) + + return HTTPResponse(body=body, preload_content=False, **cached["response"]) + + def _loads_v0(self, request, data): + # 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 + + def _loads_v1(self, request, data): + try: + cached = pickle.loads(data) + except ValueError: + return + + return self.prepare_response(request, cached) + + def _loads_v2(self, request, data): + try: + cached = json.loads(zlib.decompress(data).decode("utf8")) + except (ValueError, zlib.error): + return + + # We need to decode the items that we've base64 encoded + cached["response"]["body"] = _b64_decode_bytes(cached["response"]["body"]) + cached["response"]["headers"] = dict( + (_b64_decode_str(k), _b64_decode_str(v)) + for k, v in cached["response"]["headers"].items() + ) + cached["response"]["reason"] = _b64_decode_str(cached["response"]["reason"]) + cached["vary"] = dict( + (_b64_decode_str(k), _b64_decode_str(v) if v is not None else v) + for k, v in cached["vary"].items() + ) + + return self.prepare_response(request, cached) + + def _loads_v3(self, request, data): + # 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 + + def _loads_v4(self, request, data): + try: + cached = msgpack.loads(data, raw=False) + except ValueError: + return + + return self.prepare_response(request, cached) diff --git a/Scripts/Lib/site-packages/pip/_vendor/cachecontrol/wrapper.py b/Scripts/Lib/site-packages/pip/_vendor/cachecontrol/wrapper.py new file mode 100644 index 0000000..d8e6fc6 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/cachecontrol/wrapper.py @@ -0,0 +1,29 @@ +from .adapter import CacheControlAdapter +from .cache import DictCache + + +def CacheControl( + sess, + cache=None, + cache_etags=True, + serializer=None, + heuristic=None, + controller_class=None, + adapter_class=None, + cacheable_methods=None, +): + + 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/Scripts/Lib/site-packages/pip/_vendor/certifi/__init__.py b/Scripts/Lib/site-packages/pip/_vendor/certifi/__init__.py new file mode 100644 index 0000000..eebdf88 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/certifi/__init__.py @@ -0,0 +1,3 @@ +from .core import contents, where + +__version__ = "2021.05.30" diff --git a/Scripts/Lib/site-packages/pip/_vendor/certifi/__main__.py b/Scripts/Lib/site-packages/pip/_vendor/certifi/__main__.py new file mode 100644 index 0000000..0037634 --- /dev/null +++ b/Scripts/Lib/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/Scripts/Lib/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8b2fe5561c66c9b0e61a6d58922f65ecac36e7d8 GIT binary patch literal 296 zcmYk1u};G<5QZHmps1)4BO_}Dl2Bkl2mv$A(oT^j%h(68n#9)Gp|o$rJMaKJLsrDV zD=^_~{L+1=U%&27XXf)63Htc_Ztg?>n#_OEVD3V>lK@3j)RHc$qmI@zB8t|ridQ5{ zexeX(bWEk`J@np<2ipb^_OnH~IM2(g{GzO~WK5(%z-cMQ0pk(puYgXQp7VEthf^@& zcUxbx3f{bI&7fF$$shF-3fwWiHl}r~8aBWlv}wd%pkhnmJmBdXI@<~lY$Z`!?^u{( xPJ1}BLTvxopUjuntaUh>U+cJP6iq@nY zPFB-~m8^-%h!P;rqi>{)A>Je^QX>_s zJNT2ul=-wWt%KHCAK$M5VaJMUmlef7IkV0n2!}mPsZV6(v}vcAPbIE8i5C2Er@NWB zgH{=wRe(<4YGlD5qX0g?z*XOb6<5P+^vQk-{h?G!1e5)p&-UuTtsm_%?ohYxJHdRg z8sN`;`GGIs!Bw^C6+b-_pY;t&eB|QVnA-A1zXg7&&06jxD*i=U2Y7M~O;<|?d|9FH zoaJGPTkW9eWVMwmuskG~zb2T!CYTG+NZkrC>mGf2-Wb)_@G*QEv6BEPnXr^iXi5{7 H)13VUCP9p5 literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..876786fced792f2de4c8c4bbe623bf7b699467cf GIT binary patch literal 1570 zcmZuxL2nyH6rPzK+w1klNz+nLk-$X=$p;*eI3QF(Lx>=v7>igcSe8cHok=|DdS{s# zH%*jsz`0iZh4|S2zz^Uz%oTCq2XN^H-t5{msWPj1``+x#zW2TNy-{mx5rXmiAAe1F z3!y)~ae0Jb+=po{KyWld9CMQ45&jzSfYWotsUY)U6rA1__=sNAcx{14by3&v@H%gt zqftWybMz~Qb72-vo1{Ce1o@m ze2zygzE+)p9rzgWHeUxX>zwSP?u}Csr9xYIAbZ70^vnMviiQ(uI#b1GndoR?XF4|> zI}sh38=GWVVx`JEnMx}~9dy#f|EX7qX-Dafw5F4)+=|?qUi3F41NBocFAogHeV8T& zAE@ZLAo`{?)y|ql^R;sjsTxtUDJuE{(goxsD#oc0q zy#d=FZuh_1e(-&Nm+kESFuXP~JFCMMK|*l9i?t`$D_oVPFz!qgfr_?0LxcK09NVgJy0w#c82u2_3R^ak`NnMazPhpjuZF_aRmL-n*h7F zgxy=hei^+gf42s;*xB~L*kF73jSCNjWo00()%woxM;92YU6V1Oh|r8(2dsqgE<|QL z^e~KCF{Z@T5|c`q`q)>a%JLG+Jy^BK;yHBR8R6u4@LT*WI14Vw0zE_oP*Qm20R}`L zBlG4lUiA?4S%uPJ{Q|pC-RhA4L3aZ(%D75_3~z(& zn!8U^QTUstYMzG3pGd887XYKGZtytVO*t);wwZj?)555kPDPay?PIS3TKC$T-`(0P zckgPgbm{*3VDD8o%jdo-<^vFvg!PSp(3nyj;yT$Nlu#U#_$@D^T3jdp#5eu}8@66| literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_vendor/certifi/cacert.pem b/Scripts/Lib/site-packages/pip/_vendor/certifi/cacert.pem new file mode 100644 index 0000000..96e2fc6 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/certifi/cacert.pem @@ -0,0 +1,4257 @@ + +# Issuer: CN=GlobalSign Root CA O=GlobalSign nv-sa OU=Root CA +# Subject: CN=GlobalSign Root CA O=GlobalSign nv-sa OU=Root CA +# Label: "GlobalSign Root CA" +# Serial: 4835703278459707669005204 +# MD5 Fingerprint: 3e:45:52:15:09:51:92:e1:b7:5d:37:9f:b1:87:29:8a +# SHA1 Fingerprint: b1:bc:96:8b:d4:f4:9d:62:2a:a8:9a:81:f2:15:01:52:a4:1d:82:9c +# SHA256 Fingerprint: eb:d4:10:40:e4:bb:3e:c7:42:c9:e3:81:d3:1e:f2:a4:1a:48:b6:68:5c:96:e7:ce:f3:c1:df:6c:d4:33:1c:99 +-----BEGIN CERTIFICATE----- +MIIDdTCCAl2gAwIBAgILBAAAAAABFUtaw5QwDQYJKoZIhvcNAQEFBQAwVzELMAkG +A1UEBhMCQkUxGTAXBgNVBAoTEEdsb2JhbFNpZ24gbnYtc2ExEDAOBgNVBAsTB1Jv +b3QgQ0ExGzAZBgNVBAMTEkdsb2JhbFNpZ24gUm9vdCBDQTAeFw05ODA5MDExMjAw +MDBaFw0yODAxMjgxMjAwMDBaMFcxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9i +YWxTaWduIG52LXNhMRAwDgYDVQQLEwdSb290IENBMRswGQYDVQQDExJHbG9iYWxT +aWduIFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDaDuaZ +jc6j40+Kfvvxi4Mla+pIH/EqsLmVEQS98GPR4mdmzxzdzxtIK+6NiY6arymAZavp +xy0Sy6scTHAHoT0KMM0VjU/43dSMUBUc71DuxC73/OlS8pF94G3VNTCOXkNz8kHp +1Wrjsok6Vjk4bwY8iGlbKk3Fp1S4bInMm/k8yuX9ifUSPJJ4ltbcdG6TRGHRjcdG +snUOhugZitVtbNV4FpWi6cgKOOvyJBNPc1STE4U6G7weNLWLBYy5d4ux2x8gkasJ +U26Qzns3dLlwR5EiUWMWea6xrkEmCMgZK9FGqkjWZCrXgzT/LCrBbBlDSgeF59N8 +9iFo7+ryUp9/k5DPAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8E +BTADAQH/MB0GA1UdDgQWBBRge2YaRQ2XyolQL30EzTSo//z9SzANBgkqhkiG9w0B +AQUFAAOCAQEA1nPnfE920I2/7LqivjTFKDK1fPxsnCwrvQmeU79rXqoRSLblCKOz +yj1hTdNGCbM+w6DjY1Ub8rrvrTnhQ7k4o+YviiY776BQVvnGCv04zcQLcFGUl5gE +38NflNUVyRRBnMRddWQVDf9VMOyGj/8N7yy5Y0b2qvzfvGn9LhJIZJrglfCm7ymP +AbEVtQwdpf5pLGkkeB6zpxxxYu7KyJesF12KwvhHhm4qxFYxldBniYUr+WymXUad +DKqC5JlR3XC321Y9YeRq4VzW9v493kHMB65jUr9TU/Qr6cf9tveCX4XSQRjbgbME +HMUfpIBvFSDJ3gyICh3WZlXi/EjJKSZp4A== +-----END CERTIFICATE----- + +# Issuer: CN=GlobalSign O=GlobalSign OU=GlobalSign Root CA - R2 +# Subject: CN=GlobalSign O=GlobalSign OU=GlobalSign Root CA - R2 +# Label: "GlobalSign Root CA - R2" +# Serial: 4835703278459682885658125 +# MD5 Fingerprint: 94:14:77:7e:3e:5e:fd:8f:30:bd:41:b0:cf:e7:d0:30 +# SHA1 Fingerprint: 75:e0:ab:b6:13:85:12:27:1c:04:f8:5f:dd:de:38:e4:b7:24:2e:fe +# SHA256 Fingerprint: ca:42:dd:41:74:5f:d0:b8:1e:b9:02:36:2c:f9:d8:bf:71:9d:a1:bd:1b:1e:fc:94:6f:5b:4c:99:f4:2c:1b:9e +-----BEGIN CERTIFICATE----- +MIIDujCCAqKgAwIBAgILBAAAAAABD4Ym5g0wDQYJKoZIhvcNAQEFBQAwTDEgMB4G +A1UECxMXR2xvYmFsU2lnbiBSb290IENBIC0gUjIxEzARBgNVBAoTCkdsb2JhbFNp +Z24xEzARBgNVBAMTCkdsb2JhbFNpZ24wHhcNMDYxMjE1MDgwMDAwWhcNMjExMjE1 +MDgwMDAwWjBMMSAwHgYDVQQLExdHbG9iYWxTaWduIFJvb3QgQ0EgLSBSMjETMBEG +A1UEChMKR2xvYmFsU2lnbjETMBEGA1UEAxMKR2xvYmFsU2lnbjCCASIwDQYJKoZI +hvcNAQEBBQADggEPADCCAQoCggEBAKbPJA6+Lm8omUVCxKs+IVSbC9N/hHD6ErPL +v4dfxn+G07IwXNb9rfF73OX4YJYJkhD10FPe+3t+c4isUoh7SqbKSaZeqKeMWhG8 +eoLrvozps6yWJQeXSpkqBy+0Hne/ig+1AnwblrjFuTosvNYSuetZfeLQBoZfXklq +tTleiDTsvHgMCJiEbKjNS7SgfQx5TfC4LcshytVsW33hoCmEofnTlEnLJGKRILzd +C9XZzPnqJworc5HGnRusyMvo4KD0L5CLTfuwNhv2GXqF4G3yYROIXJ/gkwpRl4pa +zq+r1feqCapgvdzZX99yqWATXgAByUr6P6TqBwMhAo6CygPCm48CAwEAAaOBnDCB +mTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUm+IH +V2ccHsBqBt5ZtJot39wZhi4wNgYDVR0fBC8wLTAroCmgJ4YlaHR0cDovL2NybC5n +bG9iYWxzaWduLm5ldC9yb290LXIyLmNybDAfBgNVHSMEGDAWgBSb4gdXZxwewGoG +3lm0mi3f3BmGLjANBgkqhkiG9w0BAQUFAAOCAQEAmYFThxxol4aR7OBKuEQLq4Gs +J0/WwbgcQ3izDJr86iw8bmEbTUsp9Z8FHSbBuOmDAGJFtqkIk7mpM0sYmsL4h4hO +291xNBrBVNpGP+DTKqttVCL1OmLNIG+6KYnX3ZHu01yiPqFbQfXf5WRDLenVOavS +ot+3i9DAgBkcRcAtjOj4LaR0VknFBbVPFd5uRHg5h6h+u/N5GJG79G+dwfCMNYxd +AfvDbbnvRG15RjF+Cv6pgsH/76tuIMRQyV+dTZsXjAzlAcmgQWpzU/qlULRuJQ/7 +TBj0/VLZjmmx6BEP3ojY+x1J96relc8geMJgEtslQIxq/H5COEBkEveegeGTLg== +-----END CERTIFICATE----- + +# Issuer: CN=Entrust.net Certification Authority (2048) O=Entrust.net OU=www.entrust.net/CPS_2048 incorp. by ref. (limits liab.)/(c) 1999 Entrust.net Limited +# Subject: CN=Entrust.net Certification Authority (2048) O=Entrust.net OU=www.entrust.net/CPS_2048 incorp. by ref. (limits liab.)/(c) 1999 Entrust.net Limited +# Label: "Entrust.net Premium 2048 Secure Server CA" +# Serial: 946069240 +# MD5 Fingerprint: ee:29:31:bc:32:7e:9a:e6:e8:b5:f7:51:b4:34:71:90 +# SHA1 Fingerprint: 50:30:06:09:1d:97:d4:f5:ae:39:f7:cb:e7:92:7d:7d:65:2d:34:31 +# SHA256 Fingerprint: 6d:c4:71:72:e0:1c:bc:b0:bf:62:58:0d:89:5f:e2:b8:ac:9a:d4:f8:73:80:1e:0c:10:b9:c8:37:d2:1e:b1:77 +-----BEGIN CERTIFICATE----- +MIIEKjCCAxKgAwIBAgIEOGPe+DANBgkqhkiG9w0BAQUFADCBtDEUMBIGA1UEChML +RW50cnVzdC5uZXQxQDA+BgNVBAsUN3d3dy5lbnRydXN0Lm5ldC9DUFNfMjA0OCBp +bmNvcnAuIGJ5IHJlZi4gKGxpbWl0cyBsaWFiLikxJTAjBgNVBAsTHChjKSAxOTk5 +IEVudHJ1c3QubmV0IExpbWl0ZWQxMzAxBgNVBAMTKkVudHJ1c3QubmV0IENlcnRp +ZmljYXRpb24gQXV0aG9yaXR5ICgyMDQ4KTAeFw05OTEyMjQxNzUwNTFaFw0yOTA3 +MjQxNDE1MTJaMIG0MRQwEgYDVQQKEwtFbnRydXN0Lm5ldDFAMD4GA1UECxQ3d3d3 +LmVudHJ1c3QubmV0L0NQU18yMDQ4IGluY29ycC4gYnkgcmVmLiAobGltaXRzIGxp +YWIuKTElMCMGA1UECxMcKGMpIDE5OTkgRW50cnVzdC5uZXQgTGltaXRlZDEzMDEG +A1UEAxMqRW50cnVzdC5uZXQgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgKDIwNDgp +MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEArU1LqRKGsuqjIAcVFmQq +K0vRvwtKTY7tgHalZ7d4QMBzQshowNtTK91euHaYNZOLGp18EzoOH1u3Hs/lJBQe +sYGpjX24zGtLA/ECDNyrpUAkAH90lKGdCCmziAv1h3edVc3kw37XamSrhRSGlVuX +MlBvPci6Zgzj/L24ScF2iUkZ/cCovYmjZy/Gn7xxGWC4LeksyZB2ZnuU4q941mVT +XTzWnLLPKQP5L6RQstRIzgUyVYr9smRMDuSYB3Xbf9+5CFVghTAp+XtIpGmG4zU/ +HoZdenoVve8AjhUiVBcAkCaTvA5JaJG/+EfTnZVCwQ5N328mz8MYIWJmQ3DW1cAH +4QIDAQABo0IwQDAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNV +HQ4EFgQUVeSB0RGAvtiJuQijMfmhJAkWuXAwDQYJKoZIhvcNAQEFBQADggEBADub +j1abMOdTmXx6eadNl9cZlZD7Bh/KM3xGY4+WZiT6QBshJ8rmcnPyT/4xmf3IDExo +U8aAghOY+rat2l098c5u9hURlIIM7j+VrxGrD9cv3h8Dj1csHsm7mhpElesYT6Yf +zX1XEC+bBAlahLVu2B064dae0Wx5XnkcFMXj0EyTO2U87d89vqbllRrDtRnDvV5b +u/8j72gZyxKTJ1wDLW8w0B62GqzeWvfRqqgnpv55gcR5mTNXuhKwqeBCbJPKVt7+ +bYQLCIt+jerXmCHG8+c8eS9enNFMFY3h7CI3zJpDC5fcgJCNs2ebb0gIFVbPv/Er +fF6adulZkMV8gzURZVE= +-----END CERTIFICATE----- + +# Issuer: CN=Baltimore CyberTrust Root O=Baltimore OU=CyberTrust +# Subject: CN=Baltimore CyberTrust Root O=Baltimore OU=CyberTrust +# Label: "Baltimore CyberTrust Root" +# Serial: 33554617 +# MD5 Fingerprint: ac:b6:94:a5:9c:17:e0:d7:91:52:9b:b1:97:06:a6:e4 +# SHA1 Fingerprint: d4:de:20:d0:5e:66:fc:53:fe:1a:50:88:2c:78:db:28:52:ca:e4:74 +# SHA256 Fingerprint: 16:af:57:a9:f6:76:b0:ab:12:60:95:aa:5e:ba:de:f2:2a:b3:11:19:d6:44:ac:95:cd:4b:93:db:f3:f2:6a:eb +-----BEGIN CERTIFICATE----- +MIIDdzCCAl+gAwIBAgIEAgAAuTANBgkqhkiG9w0BAQUFADBaMQswCQYDVQQGEwJJ +RTESMBAGA1UEChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYD +VQQDExlCYWx0aW1vcmUgQ3liZXJUcnVzdCBSb290MB4XDTAwMDUxMjE4NDYwMFoX +DTI1MDUxMjIzNTkwMFowWjELMAkGA1UEBhMCSUUxEjAQBgNVBAoTCUJhbHRpbW9y +ZTETMBEGA1UECxMKQ3liZXJUcnVzdDEiMCAGA1UEAxMZQmFsdGltb3JlIEN5YmVy +VHJ1c3QgUm9vdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKMEuyKr +mD1X6CZymrV51Cni4eiVgLGw41uOKymaZN+hXe2wCQVt2yguzmKiYv60iNoS6zjr +IZ3AQSsBUnuId9Mcj8e6uYi1agnnc+gRQKfRzMpijS3ljwumUNKoUMMo6vWrJYeK +mpYcqWe4PwzV9/lSEy/CG9VwcPCPwBLKBsua4dnKM3p31vjsufFoREJIE9LAwqSu +XmD+tqYF/LTdB1kC1FkYmGP1pWPgkAx9XbIGevOF6uvUA65ehD5f/xXtabz5OTZy +dc93Uk3zyZAsuT3lySNTPx8kmCFcB5kpvcY67Oduhjprl3RjM71oGDHweI12v/ye +jl0qhqdNkNwnGjkCAwEAAaNFMEMwHQYDVR0OBBYEFOWdWTCCR1jMrPoIVDaGezq1 +BE3wMBIGA1UdEwEB/wQIMAYBAf8CAQMwDgYDVR0PAQH/BAQDAgEGMA0GCSqGSIb3 +DQEBBQUAA4IBAQCFDF2O5G9RaEIFoN27TyclhAO992T9Ldcw46QQF+vaKSm2eT92 +9hkTI7gQCvlYpNRhcL0EYWoSihfVCr3FvDB81ukMJY2GQE/szKN+OMY3EU/t3Wgx +jkzSswF07r51XgdIGn9w/xZchMB5hbgF/X++ZRGjD8ACtPhSNzkE1akxehi/oCr0 +Epn3o0WC4zxe9Z2etciefC7IpJ5OCBRLbf1wbWsaY71k5h+3zvDyny67G7fyUIhz +ksLi4xaNmjICq44Y3ekQEe5+NauQrz4wlHrQMz2nZQ/1/I6eYs9HRCwBXbsdtTLS +R9I4LtD+gdwyah617jzV/OeBHRnDJELqYzmp +-----END CERTIFICATE----- + +# Issuer: CN=Entrust Root Certification Authority O=Entrust, Inc. OU=www.entrust.net/CPS is incorporated by reference/(c) 2006 Entrust, Inc. +# Subject: CN=Entrust Root Certification Authority O=Entrust, Inc. OU=www.entrust.net/CPS is incorporated by reference/(c) 2006 Entrust, Inc. +# Label: "Entrust Root Certification Authority" +# Serial: 1164660820 +# MD5 Fingerprint: d6:a5:c3:ed:5d:dd:3e:00:c1:3d:87:92:1f:1d:3f:e4 +# SHA1 Fingerprint: b3:1e:b1:b7:40:e3:6c:84:02:da:dc:37:d4:4d:f5:d4:67:49:52:f9 +# SHA256 Fingerprint: 73:c1:76:43:4f:1b:c6:d5:ad:f4:5b:0e:76:e7:27:28:7c:8d:e5:76:16:c1:e6:e6:14:1a:2b:2c:bc:7d:8e:4c +-----BEGIN CERTIFICATE----- +MIIEkTCCA3mgAwIBAgIERWtQVDANBgkqhkiG9w0BAQUFADCBsDELMAkGA1UEBhMC +VVMxFjAUBgNVBAoTDUVudHJ1c3QsIEluYy4xOTA3BgNVBAsTMHd3dy5lbnRydXN0 +Lm5ldC9DUFMgaXMgaW5jb3Jwb3JhdGVkIGJ5IHJlZmVyZW5jZTEfMB0GA1UECxMW +KGMpIDIwMDYgRW50cnVzdCwgSW5jLjEtMCsGA1UEAxMkRW50cnVzdCBSb290IENl +cnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTA2MTEyNzIwMjM0MloXDTI2MTEyNzIw +NTM0MlowgbAxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1FbnRydXN0LCBJbmMuMTkw +NwYDVQQLEzB3d3cuZW50cnVzdC5uZXQvQ1BTIGlzIGluY29ycG9yYXRlZCBieSBy +ZWZlcmVuY2UxHzAdBgNVBAsTFihjKSAyMDA2IEVudHJ1c3QsIEluYy4xLTArBgNV +BAMTJEVudHJ1c3QgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTCCASIwDQYJ +KoZIhvcNAQEBBQADggEPADCCAQoCggEBALaVtkNC+sZtKm9I35RMOVcF7sN5EUFo +Nu3s/poBj6E4KPz3EEZmLk0eGrEaTsbRwJWIsMn/MYszA9u3g3s+IIRe7bJWKKf4 +4LlAcTfFy0cOlypowCKVYhXbR9n10Cv/gkvJrT7eTNuQgFA/CYqEAOwwCj0Yzfv9 +KlmaI5UXLEWeH25DeW0MXJj+SKfFI0dcXv1u5x609mhF0YaDW6KKjbHjKYD+JXGI +rb68j6xSlkuqUY3kEzEZ6E5Nn9uss2rVvDlUccp6en+Q3X0dgNmBu1kmwhH+5pPi +94DkZfs0Nw4pgHBNrziGLp5/V6+eF67rHMsoIV+2HNjnogQi+dPa2MsCAwEAAaOB +sDCBrTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zArBgNVHRAEJDAi +gA8yMDA2MTEyNzIwMjM0MlqBDzIwMjYxMTI3MjA1MzQyWjAfBgNVHSMEGDAWgBRo +kORnpKZTgMeGZqTx90tD+4S9bTAdBgNVHQ4EFgQUaJDkZ6SmU4DHhmak8fdLQ/uE +vW0wHQYJKoZIhvZ9B0EABBAwDhsIVjcuMTo0LjADAgSQMA0GCSqGSIb3DQEBBQUA +A4IBAQCT1DCw1wMgKtD5Y+iRDAUgqV8ZyntyTtSx29CW+1RaGSwMCPeyvIWonX9t +O1KzKtvn1ISMY/YPyyYBkVBs9F8U4pN0wBOeMDpQ47RgxRzwIkSNcUesyBrJ6Zua +AGAT/3B+XxFNSRuzFVJ7yVTav52Vr2ua2J7p8eRDjeIRRDq/r72DQnNSi6q7pynP +9WQcCk3RvKqsnyrQ/39/2n3qse0wJcGE2jTSW3iDVuycNsMm4hH2Z0kdkquM++v/ +eu6FSqdQgPCnXEqULl8FmTxSQeDNtGPPAUO6nIPcj2A781q0tHuu2guQOHXvgR1m +0vdXcDazv/wor3ElhVsT/h5/WrQ8 +-----END CERTIFICATE----- + +# Issuer: CN=AAA Certificate Services O=Comodo CA Limited +# Subject: CN=AAA Certificate Services O=Comodo CA Limited +# Label: "Comodo AAA Services root" +# Serial: 1 +# MD5 Fingerprint: 49:79:04:b0:eb:87:19:ac:47:b0:bc:11:51:9b:74:d0 +# SHA1 Fingerprint: d1:eb:23:a4:6d:17:d6:8f:d9:25:64:c2:f1:f1:60:17:64:d8:e3:49 +# SHA256 Fingerprint: d7:a7:a0:fb:5d:7e:27:31:d7:71:e9:48:4e:bc:de:f7:1d:5f:0c:3e:0a:29:48:78:2b:c8:3e:e0:ea:69:9e:f4 +-----BEGIN CERTIFICATE----- +MIIEMjCCAxqgAwIBAgIBATANBgkqhkiG9w0BAQUFADB7MQswCQYDVQQGEwJHQjEb +MBkGA1UECAwSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHDAdTYWxmb3JkMRow +GAYDVQQKDBFDb21vZG8gQ0EgTGltaXRlZDEhMB8GA1UEAwwYQUFBIENlcnRpZmlj +YXRlIFNlcnZpY2VzMB4XDTA0MDEwMTAwMDAwMFoXDTI4MTIzMTIzNTk1OVowezEL +MAkGA1UEBhMCR0IxGzAZBgNVBAgMEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UE +BwwHU2FsZm9yZDEaMBgGA1UECgwRQ29tb2RvIENBIExpbWl0ZWQxITAfBgNVBAMM +GEFBQSBDZXJ0aWZpY2F0ZSBTZXJ2aWNlczCCASIwDQYJKoZIhvcNAQEBBQADggEP +ADCCAQoCggEBAL5AnfRu4ep2hxxNRUSOvkbIgwadwSr+GB+O5AL686tdUIoWMQua +BtDFcCLNSS1UY8y2bmhGC1Pqy0wkwLxyTurxFa70VJoSCsN6sjNg4tqJVfMiWPPe +3M/vg4aijJRPn2jymJBGhCfHdr/jzDUsi14HZGWCwEiwqJH5YZ92IFCokcdmtet4 +YgNW8IoaE+oxox6gmf049vYnMlhvB/VruPsUK6+3qszWY19zjNoFmag4qMsXeDZR +rOme9Hg6jc8P2ULimAyrL58OAd7vn5lJ8S3frHRNG5i1R8XlKdH5kBjHYpy+g8cm +ez6KJcfA3Z3mNWgQIJ2P2N7Sw4ScDV7oL8kCAwEAAaOBwDCBvTAdBgNVHQ4EFgQU +oBEKIz6W8Qfs4q8p74Klf9AwpLQwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQF +MAMBAf8wewYDVR0fBHQwcjA4oDagNIYyaHR0cDovL2NybC5jb21vZG9jYS5jb20v +QUFBQ2VydGlmaWNhdGVTZXJ2aWNlcy5jcmwwNqA0oDKGMGh0dHA6Ly9jcmwuY29t +b2RvLm5ldC9BQUFDZXJ0aWZpY2F0ZVNlcnZpY2VzLmNybDANBgkqhkiG9w0BAQUF +AAOCAQEACFb8AvCb6P+k+tZ7xkSAzk/ExfYAWMymtrwUSWgEdujm7l3sAg9g1o1Q +GE8mTgHj5rCl7r+8dFRBv/38ErjHT1r0iWAFf2C3BUrz9vHCv8S5dIa2LX1rzNLz +Rt0vxuBqw8M0Ayx9lt1awg6nCpnBBYurDC/zXDrPbDdVCYfeU0BsWO/8tqtlbgT2 +G9w84FoVxp7Z8VlIMCFlA2zs6SFz7JsDoeA3raAVGI/6ugLOpyypEBMs1OUIJqsi +l2D4kF501KKaU73yqWjgom7C12yxow+ev+to51byrvLjKzg6CYG1a4XXvi3tPxq3 +smPi9WIsgtRqAEFQ8TmDn5XpNpaYbg== +-----END CERTIFICATE----- + +# Issuer: CN=QuoVadis Root CA 2 O=QuoVadis Limited +# Subject: CN=QuoVadis Root CA 2 O=QuoVadis Limited +# Label: "QuoVadis Root CA 2" +# Serial: 1289 +# MD5 Fingerprint: 5e:39:7b:dd:f8:ba:ec:82:e9:ac:62:ba:0c:54:00:2b +# SHA1 Fingerprint: ca:3a:fb:cf:12:40:36:4b:44:b2:16:20:88:80:48:39:19:93:7c:f7 +# SHA256 Fingerprint: 85:a0:dd:7d:d7:20:ad:b7:ff:05:f8:3d:54:2b:20:9d:c7:ff:45:28:f7:d6:77:b1:83:89:fe:a5:e5:c4:9e:86 +-----BEGIN CERTIFICATE----- +MIIFtzCCA5+gAwIBAgICBQkwDQYJKoZIhvcNAQEFBQAwRTELMAkGA1UEBhMCQk0x +GTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxGzAZBgNVBAMTElF1b1ZhZGlzIFJv +b3QgQ0EgMjAeFw0wNjExMjQxODI3MDBaFw0zMTExMjQxODIzMzNaMEUxCzAJBgNV +BAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMRswGQYDVQQDExJRdW9W +YWRpcyBSb290IENBIDIwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCa +GMpLlA0ALa8DKYrwD4HIrkwZhR0In6spRIXzL4GtMh6QRr+jhiYaHv5+HBg6XJxg +Fyo6dIMzMH1hVBHL7avg5tKifvVrbxi3Cgst/ek+7wrGsxDp3MJGF/hd/aTa/55J +WpzmM+Yklvc/ulsrHHo1wtZn/qtmUIttKGAr79dgw8eTvI02kfN/+NsRE8Scd3bB +rrcCaoF6qUWD4gXmuVbBlDePSHFjIuwXZQeVikvfj8ZaCuWw419eaxGrDPmF60Tp ++ARz8un+XJiM9XOva7R+zdRcAitMOeGylZUtQofX1bOQQ7dsE/He3fbE+Ik/0XX1 +ksOR1YqI0JDs3G3eicJlcZaLDQP9nL9bFqyS2+r+eXyt66/3FsvbzSUr5R/7mp/i +Ucw6UwxI5g69ybR2BlLmEROFcmMDBOAENisgGQLodKcftslWZvB1JdxnwQ5hYIiz +PtGo/KPaHbDRsSNU30R2be1B2MGyIrZTHN81Hdyhdyox5C315eXbyOD/5YDXC2Og +/zOhD7osFRXql7PSorW+8oyWHhqPHWykYTe5hnMz15eWniN9gqRMgeKh0bpnX5UH +oycR7hYQe7xFSkyyBNKr79X9DFHOUGoIMfmR2gyPZFwDwzqLID9ujWc9Otb+fVuI +yV77zGHcizN300QyNQliBJIWENieJ0f7OyHj+OsdWwIDAQABo4GwMIGtMA8GA1Ud +EwEB/wQFMAMBAf8wCwYDVR0PBAQDAgEGMB0GA1UdDgQWBBQahGK8SEwzJQTU7tD2 +A8QZRtGUazBuBgNVHSMEZzBlgBQahGK8SEwzJQTU7tD2A8QZRtGUa6FJpEcwRTEL +MAkGA1UEBhMCQk0xGTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxGzAZBgNVBAMT +ElF1b1ZhZGlzIFJvb3QgQ0EgMoICBQkwDQYJKoZIhvcNAQEFBQADggIBAD4KFk2f +BluornFdLwUvZ+YTRYPENvbzwCYMDbVHZF34tHLJRqUDGCdViXh9duqWNIAXINzn +g/iN/Ae42l9NLmeyhP3ZRPx3UIHmfLTJDQtyU/h2BwdBR5YM++CCJpNVjP4iH2Bl +fF/nJrP3MpCYUNQ3cVX2kiF495V5+vgtJodmVjB3pjd4M1IQWK4/YY7yarHvGH5K +WWPKjaJW1acvvFYfzznB4vsKqBUsfU16Y8Zsl0Q80m/DShcK+JDSV6IZUaUtl0Ha +B0+pUNqQjZRG4T7wlP0QADj1O+hA4bRuVhogzG9Yje0uRY/W6ZM/57Es3zrWIozc +hLsib9D45MY56QSIPMO661V6bYCZJPVsAfv4l7CUW+v90m/xd2gNNWQjrLhVoQPR +TUIZ3Ph1WVaj+ahJefivDrkRoHy3au000LYmYjgahwz46P0u05B/B5EqHdZ+XIWD +mbA4CD/pXvk1B+TJYm5Xf6dQlfe6yJvmjqIBxdZmv3lh8zwc4bmCXF2gw+nYSL0Z +ohEUGW6yhhtoPkg3Goi3XZZenMfvJ2II4pEZXNLxId26F0KCl3GBUzGpn/Z9Yr9y +4aOTHcyKJloJONDO1w2AFrR4pTqHTI2KpdVGl/IsELm8VCLAAVBpQ570su9t+Oza +8eOx79+Rj1QqCyXBJhnEUhAFZdWCEOrCMc0u +-----END CERTIFICATE----- + +# Issuer: CN=QuoVadis Root CA 3 O=QuoVadis Limited +# Subject: CN=QuoVadis Root CA 3 O=QuoVadis Limited +# Label: "QuoVadis Root CA 3" +# Serial: 1478 +# MD5 Fingerprint: 31:85:3c:62:94:97:63:b9:aa:fd:89:4e:af:6f:e0:cf +# SHA1 Fingerprint: 1f:49:14:f7:d8:74:95:1d:dd:ae:02:c0:be:fd:3a:2d:82:75:51:85 +# SHA256 Fingerprint: 18:f1:fc:7f:20:5d:f8:ad:dd:eb:7f:e0:07:dd:57:e3:af:37:5a:9c:4d:8d:73:54:6b:f4:f1:fe:d1:e1:8d:35 +-----BEGIN CERTIFICATE----- +MIIGnTCCBIWgAwIBAgICBcYwDQYJKoZIhvcNAQEFBQAwRTELMAkGA1UEBhMCQk0x +GTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxGzAZBgNVBAMTElF1b1ZhZGlzIFJv +b3QgQ0EgMzAeFw0wNjExMjQxOTExMjNaFw0zMTExMjQxOTA2NDRaMEUxCzAJBgNV +BAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMRswGQYDVQQDExJRdW9W +YWRpcyBSb290IENBIDMwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDM +V0IWVJzmmNPTTe7+7cefQzlKZbPoFog02w1ZkXTPkrgEQK0CSzGrvI2RaNggDhoB +4hp7Thdd4oq3P5kazethq8Jlph+3t723j/z9cI8LoGe+AaJZz3HmDyl2/7FWeUUr +H556VOijKTVopAFPD6QuN+8bv+OPEKhyq1hX51SGyMnzW9os2l2ObjyjPtr7guXd +8lyyBTNvijbO0BNO/79KDDRMpsMhvVAEVeuxu537RR5kFd5VAYwCdrXLoT9Cabwv +vWhDFlaJKjdhkf2mrk7AyxRllDdLkgbvBNDInIjbC3uBr7E9KsRlOni27tyAsdLT +mZw67mtaa7ONt9XOnMK+pUsvFrGeaDsGb659n/je7Mwpp5ijJUMv7/FfJuGITfhe +btfZFG4ZM2mnO4SJk8RTVROhUXhA+LjJou57ulJCg54U7QVSWllWp5f8nT8KKdjc +T5EOE7zelaTfi5m+rJsziO+1ga8bxiJTyPbH7pcUsMV8eFLI8M5ud2CEpukqdiDt +WAEXMJPpGovgc2PZapKUSU60rUqFxKMiMPwJ7Wgic6aIDFUhWMXhOp8q3crhkODZ +c6tsgLjoC2SToJyMGf+z0gzskSaHirOi4XCPLArlzW1oUevaPwV/izLmE1xr/l9A +4iLItLRkT9a6fUg+qGkM17uGcclzuD87nSVL2v9A6wIDAQABo4IBlTCCAZEwDwYD +VR0TAQH/BAUwAwEB/zCB4QYDVR0gBIHZMIHWMIHTBgkrBgEEAb5YAAMwgcUwgZMG +CCsGAQUFBwICMIGGGoGDQW55IHVzZSBvZiB0aGlzIENlcnRpZmljYXRlIGNvbnN0 +aXR1dGVzIGFjY2VwdGFuY2Ugb2YgdGhlIFF1b1ZhZGlzIFJvb3QgQ0EgMyBDZXJ0 +aWZpY2F0ZSBQb2xpY3kgLyBDZXJ0aWZpY2F0aW9uIFByYWN0aWNlIFN0YXRlbWVu +dC4wLQYIKwYBBQUHAgEWIWh0dHA6Ly93d3cucXVvdmFkaXNnbG9iYWwuY29tL2Nw +czALBgNVHQ8EBAMCAQYwHQYDVR0OBBYEFPLAE+CCQz777i9nMpY1XNu4ywLQMG4G +A1UdIwRnMGWAFPLAE+CCQz777i9nMpY1XNu4ywLQoUmkRzBFMQswCQYDVQQGEwJC +TTEZMBcGA1UEChMQUXVvVmFkaXMgTGltaXRlZDEbMBkGA1UEAxMSUXVvVmFkaXMg +Um9vdCBDQSAzggIFxjANBgkqhkiG9w0BAQUFAAOCAgEAT62gLEz6wPJv92ZVqyM0 +7ucp2sNbtrCD2dDQ4iH782CnO11gUyeim/YIIirnv6By5ZwkajGxkHon24QRiSem +d1o417+shvzuXYO8BsbRd2sPbSQvS3pspweWyuOEn62Iix2rFo1bZhfZFvSLgNLd ++LJ2w/w4E6oM3kJpK27zPOuAJ9v1pkQNn1pVWQvVDVJIxa6f8i+AxeoyUDUSly7B +4f/xI4hROJ/yZlZ25w9Rl6VSDE1JUZU2Pb+iSwwQHYaZTKrzchGT5Or2m9qoXadN +t54CrnMAyNojA+j56hl0YgCUyyIgvpSnWbWCar6ZeXqp8kokUvd0/bpO5qgdAm6x +DYBEwa7TIzdfu4V8K5Iu6H6li92Z4b8nby1dqnuH/grdS/yO9SbkbnBCbjPsMZ57 +k8HkyWkaPcBrTiJt7qtYTcbQQcEr6k8Sh17rRdhs9ZgC06DYVYoGmRmioHfRMJ6s +zHXug/WwYjnPbFfiTNKRCw51KBuav/0aQ/HKd/s7j2G4aSgWQgRecCocIdiP4b0j +Wy10QJLZYxkNc91pvGJHvOB0K7Lrfb5BG7XARsWhIstfTsEokt4YutUqKLsRixeT +mJlglFwjz1onl14LBQaTNx47aTbrqZ5hHY8y2o4M1nQ+ewkk2gF3R8Q7zTSMmfXK +4SVhM7JZG+Ju1zdXtg2pEto= +-----END CERTIFICATE----- + +# Issuer: O=SECOM Trust.net OU=Security Communication RootCA1 +# Subject: O=SECOM Trust.net OU=Security Communication RootCA1 +# Label: "Security Communication Root CA" +# Serial: 0 +# MD5 Fingerprint: f1:bc:63:6a:54:e0:b5:27:f5:cd:e7:1a:e3:4d:6e:4a +# SHA1 Fingerprint: 36:b1:2b:49:f9:81:9e:d7:4c:9e:bc:38:0f:c6:56:8f:5d:ac:b2:f7 +# SHA256 Fingerprint: e7:5e:72:ed:9f:56:0e:ec:6e:b4:80:00:73:a4:3f:c3:ad:19:19:5a:39:22:82:01:78:95:97:4a:99:02:6b:6c +-----BEGIN CERTIFICATE----- +MIIDWjCCAkKgAwIBAgIBADANBgkqhkiG9w0BAQUFADBQMQswCQYDVQQGEwJKUDEY +MBYGA1UEChMPU0VDT00gVHJ1c3QubmV0MScwJQYDVQQLEx5TZWN1cml0eSBDb21t +dW5pY2F0aW9uIFJvb3RDQTEwHhcNMDMwOTMwMDQyMDQ5WhcNMjMwOTMwMDQyMDQ5 +WjBQMQswCQYDVQQGEwJKUDEYMBYGA1UEChMPU0VDT00gVHJ1c3QubmV0MScwJQYD +VQQLEx5TZWN1cml0eSBDb21tdW5pY2F0aW9uIFJvb3RDQTEwggEiMA0GCSqGSIb3 +DQEBAQUAA4IBDwAwggEKAoIBAQCzs/5/022x7xZ8V6UMbXaKL0u/ZPtM7orw8yl8 +9f/uKuDp6bpbZCKamm8sOiZpUQWZJtzVHGpxxpp9Hp3dfGzGjGdnSj74cbAZJ6kJ +DKaVv0uMDPpVmDvY6CKhS3E4eayXkmmziX7qIWgGmBSWh9JhNrxtJ1aeV+7AwFb9 +Ms+k2Y7CI9eNqPPYJayX5HA49LY6tJ07lyZDo6G8SVlyTCMwhwFY9k6+HGhWZq/N +QV3Is00qVUarH9oe4kA92819uZKAnDfdDJZkndwi92SL32HeFZRSFaB9UslLqCHJ +xrHty8OVYNEP8Ktw+N/LTX7s1vqr2b1/VPKl6Xn62dZ2JChzAgMBAAGjPzA9MB0G +A1UdDgQWBBSgc0mZaNyFW2XjmygvV5+9M7wHSDALBgNVHQ8EBAMCAQYwDwYDVR0T +AQH/BAUwAwEB/zANBgkqhkiG9w0BAQUFAAOCAQEAaECpqLvkT115swW1F7NgE+vG +kl3g0dNq/vu+m22/xwVtWSDEHPC32oRYAmP6SBbvT6UL90qY8j+eG61Ha2POCEfr +Uj94nK9NrvjVT8+amCoQQTlSxN3Zmw7vkwGusi7KaEIkQmywszo+zenaSMQVy+n5 +Bw+SUEmK3TGXX8npN6o7WWWXlDLJs58+OmJYxUmtYg5xpTKqL8aJdkNAExNnPaJU +JRDL8Try2frbSVa7pv6nQTXD4IhhyYjH3zYQIphZ6rBK+1YWc26sTfcioU+tHXot +RSflMMFe8toTyyVCUZVHA4xsIcx0Qu1T/zOLjw9XARYvz6buyXAiFL39vmwLAw== +-----END CERTIFICATE----- + +# Issuer: CN=XRamp Global Certification Authority O=XRamp Security Services Inc OU=www.xrampsecurity.com +# Subject: CN=XRamp Global Certification Authority O=XRamp Security Services Inc OU=www.xrampsecurity.com +# Label: "XRamp Global CA Root" +# Serial: 107108908803651509692980124233745014957 +# MD5 Fingerprint: a1:0b:44:b3:ca:10:d8:00:6e:9d:0f:d8:0f:92:0a:d1 +# SHA1 Fingerprint: b8:01:86:d1:eb:9c:86:a5:41:04:cf:30:54:f3:4c:52:b7:e5:58:c6 +# SHA256 Fingerprint: ce:cd:dc:90:50:99:d8:da:df:c5:b1:d2:09:b7:37:cb:e2:c1:8c:fb:2c:10:c0:ff:0b:cf:0d:32:86:fc:1a:a2 +-----BEGIN CERTIFICATE----- +MIIEMDCCAxigAwIBAgIQUJRs7Bjq1ZxN1ZfvdY+grTANBgkqhkiG9w0BAQUFADCB +gjELMAkGA1UEBhMCVVMxHjAcBgNVBAsTFXd3dy54cmFtcHNlY3VyaXR5LmNvbTEk +MCIGA1UEChMbWFJhbXAgU2VjdXJpdHkgU2VydmljZXMgSW5jMS0wKwYDVQQDEyRY +UmFtcCBHbG9iYWwgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMDQxMTAxMTcx +NDA0WhcNMzUwMTAxMDUzNzE5WjCBgjELMAkGA1UEBhMCVVMxHjAcBgNVBAsTFXd3 +dy54cmFtcHNlY3VyaXR5LmNvbTEkMCIGA1UEChMbWFJhbXAgU2VjdXJpdHkgU2Vy +dmljZXMgSW5jMS0wKwYDVQQDEyRYUmFtcCBHbG9iYWwgQ2VydGlmaWNhdGlvbiBB +dXRob3JpdHkwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCYJB69FbS6 +38eMpSe2OAtp87ZOqCwuIR1cRN8hXX4jdP5efrRKt6atH67gBhbim1vZZ3RrXYCP +KZ2GG9mcDZhtdhAoWORlsH9KmHmf4MMxfoArtYzAQDsRhtDLooY2YKTVMIJt2W7Q +DxIEM5dfT2Fa8OT5kavnHTu86M/0ay00fOJIYRyO82FEzG+gSqmUsE3a56k0enI4 +qEHMPJQRfevIpoy3hsvKMzvZPTeL+3o+hiznc9cKV6xkmxnr9A8ECIqsAxcZZPRa +JSKNNCyy9mgdEm3Tih4U2sSPpuIjhdV6Db1q4Ons7Be7QhtnqiXtRYMh/MHJfNVi +PvryxS3T/dRlAgMBAAGjgZ8wgZwwEwYJKwYBBAGCNxQCBAYeBABDAEEwCwYDVR0P +BAQDAgGGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFMZPoj0GY4QJnM5i5ASs +jVy16bYbMDYGA1UdHwQvMC0wK6ApoCeGJWh0dHA6Ly9jcmwueHJhbXBzZWN1cml0 +eS5jb20vWEdDQS5jcmwwEAYJKwYBBAGCNxUBBAMCAQEwDQYJKoZIhvcNAQEFBQAD +ggEBAJEVOQMBG2f7Shz5CmBbodpNl2L5JFMn14JkTpAuw0kbK5rc/Kh4ZzXxHfAR +vbdI4xD2Dd8/0sm2qlWkSLoC295ZLhVbO50WfUfXN+pfTXYSNrsf16GBBEYgoyxt +qZ4Bfj8pzgCT3/3JknOJiWSe5yvkHJEs0rnOfc5vMZnT5r7SHpDwCRR5XCOrTdLa +IR9NmXmd4c8nnxCbHIgNsIpkQTG4DmyQJKSbXHGPurt+HBvbaoAPIbzp26a3QPSy +i6mx5O+aGtA9aZnuqCij4Tyz8LIRnM98QObd50N9otg6tamN8jSZxNQQ4Qb9CYQQ +O+7ETPTsJ3xCwnR8gooJybQDJbw= +-----END CERTIFICATE----- + +# Issuer: O=The Go Daddy Group, Inc. OU=Go Daddy Class 2 Certification Authority +# Subject: O=The Go Daddy Group, Inc. OU=Go Daddy Class 2 Certification Authority +# Label: "Go Daddy Class 2 CA" +# Serial: 0 +# MD5 Fingerprint: 91:de:06:25:ab:da:fd:32:17:0c:bb:25:17:2a:84:67 +# SHA1 Fingerprint: 27:96:ba:e6:3f:18:01:e2:77:26:1b:a0:d7:77:70:02:8f:20:ee:e4 +# SHA256 Fingerprint: c3:84:6b:f2:4b:9e:93:ca:64:27:4c:0e:c6:7c:1e:cc:5e:02:4f:fc:ac:d2:d7:40:19:35:0e:81:fe:54:6a:e4 +-----BEGIN CERTIFICATE----- +MIIEADCCAuigAwIBAgIBADANBgkqhkiG9w0BAQUFADBjMQswCQYDVQQGEwJVUzEh +MB8GA1UEChMYVGhlIEdvIERhZGR5IEdyb3VwLCBJbmMuMTEwLwYDVQQLEyhHbyBE +YWRkeSBDbGFzcyAyIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTA0MDYyOTE3 +MDYyMFoXDTM0MDYyOTE3MDYyMFowYzELMAkGA1UEBhMCVVMxITAfBgNVBAoTGFRo +ZSBHbyBEYWRkeSBHcm91cCwgSW5jLjExMC8GA1UECxMoR28gRGFkZHkgQ2xhc3Mg +MiBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTCCASAwDQYJKoZIhvcNAQEBBQADggEN +ADCCAQgCggEBAN6d1+pXGEmhW+vXX0iG6r7d/+TvZxz0ZWizV3GgXne77ZtJ6XCA +PVYYYwhv2vLM0D9/AlQiVBDYsoHUwHU9S3/Hd8M+eKsaA7Ugay9qK7HFiH7Eux6w +wdhFJ2+qN1j3hybX2C32qRe3H3I2TqYXP2WYktsqbl2i/ojgC95/5Y0V4evLOtXi +EqITLdiOr18SPaAIBQi2XKVlOARFmR6jYGB0xUGlcmIbYsUfb18aQr4CUWWoriMY +avx4A6lNf4DD+qta/KFApMoZFv6yyO9ecw3ud72a9nmYvLEHZ6IVDd2gWMZEewo+ +YihfukEHU1jPEX44dMX4/7VpkI+EdOqXG68CAQOjgcAwgb0wHQYDVR0OBBYEFNLE +sNKR1EwRcbNhyz2h/t2oatTjMIGNBgNVHSMEgYUwgYKAFNLEsNKR1EwRcbNhyz2h +/t2oatTjoWekZTBjMQswCQYDVQQGEwJVUzEhMB8GA1UEChMYVGhlIEdvIERhZGR5 +IEdyb3VwLCBJbmMuMTEwLwYDVQQLEyhHbyBEYWRkeSBDbGFzcyAyIENlcnRpZmlj +YXRpb24gQXV0aG9yaXR5ggEAMAwGA1UdEwQFMAMBAf8wDQYJKoZIhvcNAQEFBQAD +ggEBADJL87LKPpH8EsahB4yOd6AzBhRckB4Y9wimPQoZ+YeAEW5p5JYXMP80kWNy +OO7MHAGjHZQopDH2esRU1/blMVgDoszOYtuURXO1v0XJJLXVggKtI3lpjbi2Tc7P +TMozI+gciKqdi0FuFskg5YmezTvacPd+mSYgFFQlq25zheabIZ0KbIIOqPjCDPoQ +HmyW74cNxA9hi63ugyuV+I6ShHI56yDqg+2DzZduCLzrTia2cyvk0/ZM/iZx4mER +dEr/VxqHD3VILs9RaRegAhJhldXRQLIQTO7ErBBDpqWeCtWVYpoNz4iCxTIM5Cuf +ReYNnyicsbkqWletNw+vHX/bvZ8= +-----END CERTIFICATE----- + +# Issuer: O=Starfield Technologies, Inc. OU=Starfield Class 2 Certification Authority +# Subject: O=Starfield Technologies, Inc. OU=Starfield Class 2 Certification Authority +# Label: "Starfield Class 2 CA" +# Serial: 0 +# MD5 Fingerprint: 32:4a:4b:bb:c8:63:69:9b:be:74:9a:c6:dd:1d:46:24 +# SHA1 Fingerprint: ad:7e:1c:28:b0:64:ef:8f:60:03:40:20:14:c3:d0:e3:37:0e:b5:8a +# SHA256 Fingerprint: 14:65:fa:20:53:97:b8:76:fa:a6:f0:a9:95:8e:55:90:e4:0f:cc:7f:aa:4f:b7:c2:c8:67:75:21:fb:5f:b6:58 +-----BEGIN CERTIFICATE----- +MIIEDzCCAvegAwIBAgIBADANBgkqhkiG9w0BAQUFADBoMQswCQYDVQQGEwJVUzEl +MCMGA1UEChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjEyMDAGA1UECxMp +U3RhcmZpZWxkIENsYXNzIDIgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMDQw +NjI5MTczOTE2WhcNMzQwNjI5MTczOTE2WjBoMQswCQYDVQQGEwJVUzElMCMGA1UE +ChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjEyMDAGA1UECxMpU3RhcmZp +ZWxkIENsYXNzIDIgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwggEgMA0GCSqGSIb3 +DQEBAQUAA4IBDQAwggEIAoIBAQC3Msj+6XGmBIWtDBFk385N78gDGIc/oav7PKaf +8MOh2tTYbitTkPskpD6E8J7oX+zlJ0T1KKY/e97gKvDIr1MvnsoFAZMej2YcOadN ++lq2cwQlZut3f+dZxkqZJRRU6ybH838Z1TBwj6+wRir/resp7defqgSHo9T5iaU0 +X9tDkYI22WY8sbi5gv2cOj4QyDvvBmVmepsZGD3/cVE8MC5fvj13c7JdBmzDI1aa +K4UmkhynArPkPw2vCHmCuDY96pzTNbO8acr1zJ3o/WSNF4Azbl5KXZnJHoe0nRrA +1W4TNSNe35tfPe/W93bC6j67eA0cQmdrBNj41tpvi/JEoAGrAgEDo4HFMIHCMB0G +A1UdDgQWBBS/X7fRzt0fhvRbVazc1xDCDqmI5zCBkgYDVR0jBIGKMIGHgBS/X7fR +zt0fhvRbVazc1xDCDqmI56FspGowaDELMAkGA1UEBhMCVVMxJTAjBgNVBAoTHFN0 +YXJmaWVsZCBUZWNobm9sb2dpZXMsIEluYy4xMjAwBgNVBAsTKVN0YXJmaWVsZCBD +bGFzcyAyIENlcnRpZmljYXRpb24gQXV0aG9yaXR5ggEAMAwGA1UdEwQFMAMBAf8w +DQYJKoZIhvcNAQEFBQADggEBAAWdP4id0ckaVaGsafPzWdqbAYcaT1epoXkJKtv3 +L7IezMdeatiDh6GX70k1PncGQVhiv45YuApnP+yz3SFmH8lU+nLMPUxA2IGvd56D +eruix/U0F47ZEUD0/CwqTRV/p2JdLiXTAAsgGh1o+Re49L2L7ShZ3U0WixeDyLJl +xy16paq8U4Zt3VekyvggQQto8PT7dL5WXXp59fkdheMtlb71cZBDzI0fmgAKhynp +VSJYACPq4xJDKVtHCN2MQWplBqjlIapBtJUhlbl90TSrE9atvNziPTnNvT51cKEY +WQPJIrSPnNVeKtelttQKbfi3QBFGmh95DmK/D5fs4C8fF5Q= +-----END CERTIFICATE----- + +# Issuer: CN=DigiCert Assured ID Root CA O=DigiCert Inc OU=www.digicert.com +# Subject: CN=DigiCert Assured ID Root CA O=DigiCert Inc OU=www.digicert.com +# Label: "DigiCert Assured ID Root CA" +# Serial: 17154717934120587862167794914071425081 +# MD5 Fingerprint: 87:ce:0b:7b:2a:0e:49:00:e1:58:71:9b:37:a8:93:72 +# SHA1 Fingerprint: 05:63:b8:63:0d:62:d7:5a:bb:c8:ab:1e:4b:df:b5:a8:99:b2:4d:43 +# SHA256 Fingerprint: 3e:90:99:b5:01:5e:8f:48:6c:00:bc:ea:9d:11:1e:e7:21:fa:ba:35:5a:89:bc:f1:df:69:56:1e:3d:c6:32:5c +-----BEGIN CERTIFICATE----- +MIIDtzCCAp+gAwIBAgIQDOfg5RfYRv6P5WD8G/AwOTANBgkqhkiG9w0BAQUFADBl +MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 +d3cuZGlnaWNlcnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJv +b3QgQ0EwHhcNMDYxMTEwMDAwMDAwWhcNMzExMTEwMDAwMDAwWjBlMQswCQYDVQQG +EwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNl +cnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgQ0EwggEi +MA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCtDhXO5EOAXLGH87dg+XESpa7c +JpSIqvTO9SA5KFhgDPiA2qkVlTJhPLWxKISKityfCgyDF3qPkKyK53lTXDGEKvYP +mDI2dsze3Tyoou9q+yHyUmHfnyDXH+Kx2f4YZNISW1/5WBg1vEfNoTb5a3/UsDg+ +wRvDjDPZ2C8Y/igPs6eD1sNuRMBhNZYW/lmci3Zt1/GiSw0r/wty2p5g0I6QNcZ4 +VYcgoc/lbQrISXwxmDNsIumH0DJaoroTghHtORedmTpyoeb6pNnVFzF1roV9Iq4/ +AUaG9ih5yLHa5FcXxH4cDrC0kqZWs72yl+2qp/C3xag/lRbQ/6GW6whfGHdPAgMB +AAGjYzBhMA4GA1UdDwEB/wQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQW +BBRF66Kv9JLLgjEtUYunpyGd823IDzAfBgNVHSMEGDAWgBRF66Kv9JLLgjEtUYun +pyGd823IDzANBgkqhkiG9w0BAQUFAAOCAQEAog683+Lt8ONyc3pklL/3cmbYMuRC +dWKuh+vy1dneVrOfzM4UKLkNl2BcEkxY5NM9g0lFWJc1aRqoR+pWxnmrEthngYTf +fwk8lOa4JiwgvT2zKIn3X/8i4peEH+ll74fg38FnSbNd67IJKusm7Xi+fT8r87cm +NW1fiQG2SVufAQWbqz0lwcy2f8Lxb4bG+mRo64EtlOtCt/qMHt1i8b5QZ7dsvfPx +H2sMNgcWfzd8qVttevESRmCD1ycEvkvOl77DZypoEd+A5wwzZr8TDRRu838fYxAe ++o0bJW1sj6W3YQGx0qMmoRBxna3iw/nDmVG3KwcIzi7mULKn+gpFL6Lw8g== +-----END CERTIFICATE----- + +# Issuer: CN=DigiCert Global Root CA O=DigiCert Inc OU=www.digicert.com +# Subject: CN=DigiCert Global Root CA O=DigiCert Inc OU=www.digicert.com +# Label: "DigiCert Global Root CA" +# Serial: 10944719598952040374951832963794454346 +# MD5 Fingerprint: 79:e4:a9:84:0d:7d:3a:96:d7:c0:4f:e2:43:4c:89:2e +# SHA1 Fingerprint: a8:98:5d:3a:65:e5:e5:c4:b2:d7:d6:6d:40:c6:dd:2f:b1:9c:54:36 +# SHA256 Fingerprint: 43:48:a0:e9:44:4c:78:cb:26:5e:05:8d:5e:89:44:b4:d8:4f:96:62:bd:26:db:25:7f:89:34:a4:43:c7:01:61 +-----BEGIN CERTIFICATE----- +MIIDrzCCApegAwIBAgIQCDvgVpBCRrGhdWrJWZHHSjANBgkqhkiG9w0BAQUFADBh +MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 +d3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBD +QTAeFw0wNjExMTAwMDAwMDBaFw0zMTExMTAwMDAwMDBaMGExCzAJBgNVBAYTAlVT +MRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5j +b20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IENBMIIBIjANBgkqhkiG +9w0BAQEFAAOCAQ8AMIIBCgKCAQEA4jvhEXLeqKTTo1eqUKKPC3eQyaKl7hLOllsB +CSDMAZOnTjC3U/dDxGkAV53ijSLdhwZAAIEJzs4bg7/fzTtxRuLWZscFs3YnFo97 +nh6Vfe63SKMI2tavegw5BmV/Sl0fvBf4q77uKNd0f3p4mVmFaG5cIzJLv07A6Fpt +43C/dxC//AH2hdmoRBBYMql1GNXRor5H4idq9Joz+EkIYIvUX7Q6hL+hqkpMfT7P +T19sdl6gSzeRntwi5m3OFBqOasv+zbMUZBfHWymeMr/y7vrTC0LUq7dBMtoM1O/4 +gdW7jVg/tRvoSSiicNoxBN33shbyTApOB6jtSj1etX+jkMOvJwIDAQABo2MwYTAO +BgNVHQ8BAf8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUA95QNVbR +TLtm8KPiGxvDl7I90VUwHwYDVR0jBBgwFoAUA95QNVbRTLtm8KPiGxvDl7I90VUw +DQYJKoZIhvcNAQEFBQADggEBAMucN6pIExIK+t1EnE9SsPTfrgT1eXkIoyQY/Esr +hMAtudXH/vTBH1jLuG2cenTnmCmrEbXjcKChzUyImZOMkXDiqw8cvpOp/2PV5Adg +06O/nVsJ8dWO41P0jmP6P6fbtGbfYmbW0W5BjfIttep3Sp+dWOIrWcBAI+0tKIJF +PnlUkiaY4IBIqDfv8NZ5YBberOgOzW6sRBc4L0na4UU+Krk2U886UAb3LujEV0ls +YSEY1QSteDwsOoBrp+uvFRTp2InBuThs4pFsiv9kuXclVzDAGySj4dzp30d8tbQk +CAUw7C29C79Fv1C5qfPrmAESrciIxpg0X40KPMbp1ZWVbd4= +-----END CERTIFICATE----- + +# Issuer: CN=DigiCert High Assurance EV Root CA O=DigiCert Inc OU=www.digicert.com +# Subject: CN=DigiCert High Assurance EV Root CA O=DigiCert Inc OU=www.digicert.com +# Label: "DigiCert High Assurance EV Root CA" +# Serial: 3553400076410547919724730734378100087 +# MD5 Fingerprint: d4:74:de:57:5c:39:b2:d3:9c:85:83:c5:c0:65:49:8a +# SHA1 Fingerprint: 5f:b7:ee:06:33:e2:59:db:ad:0c:4c:9a:e6:d3:8f:1a:61:c7:dc:25 +# SHA256 Fingerprint: 74:31:e5:f4:c3:c1:ce:46:90:77:4f:0b:61:e0:54:40:88:3b:a9:a0:1e:d0:0b:a6:ab:d7:80:6e:d3:b1:18:cf +-----BEGIN CERTIFICATE----- +MIIDxTCCAq2gAwIBAgIQAqxcJmoLQJuPC3nyrkYldzANBgkqhkiG9w0BAQUFADBs +MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 +d3cuZGlnaWNlcnQuY29tMSswKQYDVQQDEyJEaWdpQ2VydCBIaWdoIEFzc3VyYW5j +ZSBFViBSb290IENBMB4XDTA2MTExMDAwMDAwMFoXDTMxMTExMDAwMDAwMFowbDEL +MAkGA1UEBhMCVVMxFTATBgNVBAoTDERpZ2lDZXJ0IEluYzEZMBcGA1UECxMQd3d3 +LmRpZ2ljZXJ0LmNvbTErMCkGA1UEAxMiRGlnaUNlcnQgSGlnaCBBc3N1cmFuY2Ug +RVYgUm9vdCBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMbM5XPm ++9S75S0tMqbf5YE/yc0lSbZxKsPVlDRnogocsF9ppkCxxLeyj9CYpKlBWTrT3JTW +PNt0OKRKzE0lgvdKpVMSOO7zSW1xkX5jtqumX8OkhPhPYlG++MXs2ziS4wblCJEM +xChBVfvLWokVfnHoNb9Ncgk9vjo4UFt3MRuNs8ckRZqnrG0AFFoEt7oT61EKmEFB +Ik5lYYeBQVCmeVyJ3hlKV9Uu5l0cUyx+mM0aBhakaHPQNAQTXKFx01p8VdteZOE3 +hzBWBOURtCmAEvF5OYiiAhF8J2a3iLd48soKqDirCmTCv2ZdlYTBoSUeh10aUAsg +EsxBu24LUTi4S8sCAwEAAaNjMGEwDgYDVR0PAQH/BAQDAgGGMA8GA1UdEwEB/wQF +MAMBAf8wHQYDVR0OBBYEFLE+w2kD+L9HAdSYJhoIAu9jZCvDMB8GA1UdIwQYMBaA +FLE+w2kD+L9HAdSYJhoIAu9jZCvDMA0GCSqGSIb3DQEBBQUAA4IBAQAcGgaX3Nec +nzyIZgYIVyHbIUf4KmeqvxgydkAQV8GK83rZEWWONfqe/EW1ntlMMUu4kehDLI6z +eM7b41N5cdblIZQB2lWHmiRk9opmzN6cN82oNLFpmyPInngiK3BD41VHMWEZ71jF +hS9OMPagMRYjyOfiZRYzy78aG6A9+MpeizGLYAiJLQwGXFK3xPkKmNEVX58Svnw2 +Yzi9RKR/5CYrCsSXaQ3pjOLAEFe4yHYSkVXySGnYvCoCWw9E1CAx2/S6cCZdkGCe +vEsXCS+0yx5DaMkHJ8HSXPfqIbloEpw8nL+e/IBcm2PN7EeqJSdnoDfzAIJ9VNep ++OkuE6N36B9K +-----END CERTIFICATE----- + +# Issuer: CN=DST Root CA X3 O=Digital Signature Trust Co. +# Subject: CN=DST Root CA X3 O=Digital Signature Trust Co. +# Label: "DST Root CA X3" +# Serial: 91299735575339953335919266965803778155 +# MD5 Fingerprint: 41:03:52:dc:0f:f7:50:1b:16:f0:02:8e:ba:6f:45:c5 +# SHA1 Fingerprint: da:c9:02:4f:54:d8:f6:df:94:93:5f:b1:73:26:38:ca:6a:d7:7c:13 +# SHA256 Fingerprint: 06:87:26:03:31:a7:24:03:d9:09:f1:05:e6:9b:cf:0d:32:e1:bd:24:93:ff:c6:d9:20:6d:11:bc:d6:77:07:39 +-----BEGIN CERTIFICATE----- +MIIDSjCCAjKgAwIBAgIQRK+wgNajJ7qJMDmGLvhAazANBgkqhkiG9w0BAQUFADA/ +MSQwIgYDVQQKExtEaWdpdGFsIFNpZ25hdHVyZSBUcnVzdCBDby4xFzAVBgNVBAMT +DkRTVCBSb290IENBIFgzMB4XDTAwMDkzMDIxMTIxOVoXDTIxMDkzMDE0MDExNVow +PzEkMCIGA1UEChMbRGlnaXRhbCBTaWduYXR1cmUgVHJ1c3QgQ28uMRcwFQYDVQQD +Ew5EU1QgUm9vdCBDQSBYMzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEB +AN+v6ZdQCINXtMxiZfaQguzH0yxrMMpb7NnDfcdAwRgUi+DoM3ZJKuM/IUmTrE4O +rz5Iy2Xu/NMhD2XSKtkyj4zl93ewEnu1lcCJo6m67XMuegwGMoOifooUMM0RoOEq +OLl5CjH9UL2AZd+3UWODyOKIYepLYYHsUmu5ouJLGiifSKOeDNoJjj4XLh7dIN9b +xiqKqy69cK3FCxolkHRyxXtqqzTWMIn/5WgTe1QLyNau7Fqckh49ZLOMxt+/yUFw +7BZy1SbsOFU5Q9D8/RhcQPGX69Wam40dutolucbY38EVAjqr2m7xPi71XAicPNaD +aeQQmxkqtilX4+U9m5/wAl0CAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNV +HQ8BAf8EBAMCAQYwHQYDVR0OBBYEFMSnsaR7LHH62+FLkHX/xBVghYkQMA0GCSqG +SIb3DQEBBQUAA4IBAQCjGiybFwBcqR7uKGY3Or+Dxz9LwwmglSBd49lZRNI+DT69 +ikugdB/OEIKcdBodfpga3csTS7MgROSR6cz8faXbauX+5v3gTt23ADq1cEmv8uXr +AvHRAosZy5Q6XkjEGB5YGV8eAlrwDPGxrancWYaLbumR9YbK+rlmM6pZW87ipxZz +R8srzJmwN0jP41ZL9c8PDHIyh8bwRLtTcm1D9SZImlJnt1ir/md2cXjbDaJWFBM5 +JDGFoqgCWjBH4d1QB7wCCZAA62RjYJsWvIjJEubSfZGL+T0yjWW06XyxV3bqxbYo +Ob8VZRzI9neWagqNdwvYkQsEjgfbKbYK7p2CNTUQ +-----END CERTIFICATE----- + +# Issuer: CN=SwissSign Gold CA - G2 O=SwissSign AG +# Subject: CN=SwissSign Gold CA - G2 O=SwissSign AG +# Label: "SwissSign Gold CA - G2" +# Serial: 13492815561806991280 +# MD5 Fingerprint: 24:77:d9:a8:91:d1:3b:fa:88:2d:c2:ff:f8:cd:33:93 +# SHA1 Fingerprint: d8:c5:38:8a:b7:30:1b:1b:6e:d4:7a:e6:45:25:3a:6f:9f:1a:27:61 +# SHA256 Fingerprint: 62:dd:0b:e9:b9:f5:0a:16:3e:a0:f8:e7:5c:05:3b:1e:ca:57:ea:55:c8:68:8f:64:7c:68:81:f2:c8:35:7b:95 +-----BEGIN CERTIFICATE----- +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 +-----END CERTIFICATE----- + +# Issuer: CN=SwissSign Silver CA - G2 O=SwissSign AG +# Subject: CN=SwissSign Silver CA - G2 O=SwissSign AG +# Label: "SwissSign Silver CA - G2" +# Serial: 5700383053117599563 +# MD5 Fingerprint: e0:06:a1:c9:7d:cf:c9:fc:0d:c0:56:75:96:d8:62:13 +# SHA1 Fingerprint: 9b:aa:e5:9f:56:ee:21:cb:43:5a:be:25:93:df:a7:f0:40:d1:1d:cb +# SHA256 Fingerprint: be:6c:4d:a2:bb:b9:ba:59:b6:f3:93:97:68:37:42:46:c3:c0:05:99:3f:a9:8f:02:0d:1d:ed:be:d4:8a:81:d5 +-----BEGIN CERTIFICATE----- +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 +-----END CERTIFICATE----- + +# Issuer: CN=SecureTrust CA O=SecureTrust Corporation +# Subject: CN=SecureTrust CA O=SecureTrust Corporation +# Label: "SecureTrust CA" +# Serial: 17199774589125277788362757014266862032 +# MD5 Fingerprint: dc:32:c3:a7:6d:25:57:c7:68:09:9d:ea:2d:a9:a2:d1 +# SHA1 Fingerprint: 87:82:c6:c3:04:35:3b:cf:d2:96:92:d2:59:3e:7d:44:d9:34:ff:11 +# SHA256 Fingerprint: f1:c1:b5:0a:e5:a2:0d:d8:03:0e:c9:f6:bc:24:82:3d:d3:67:b5:25:57:59:b4:e7:1b:61:fc:e9:f7:37:5d:73 +-----BEGIN CERTIFICATE----- +MIIDuDCCAqCgAwIBAgIQDPCOXAgWpa1Cf/DrJxhZ0DANBgkqhkiG9w0BAQUFADBI +MQswCQYDVQQGEwJVUzEgMB4GA1UEChMXU2VjdXJlVHJ1c3QgQ29ycG9yYXRpb24x +FzAVBgNVBAMTDlNlY3VyZVRydXN0IENBMB4XDTA2MTEwNzE5MzExOFoXDTI5MTIz +MTE5NDA1NVowSDELMAkGA1UEBhMCVVMxIDAeBgNVBAoTF1NlY3VyZVRydXN0IENv +cnBvcmF0aW9uMRcwFQYDVQQDEw5TZWN1cmVUcnVzdCBDQTCCASIwDQYJKoZIhvcN +AQEBBQADggEPADCCAQoCggEBAKukgeWVzfX2FI7CT8rU4niVWJxB4Q2ZQCQXOZEz +Zum+4YOvYlyJ0fwkW2Gz4BERQRwdbvC4u/jep4G6pkjGnx29vo6pQT64lO0pGtSO +0gMdA+9tDWccV9cGrcrI9f4Or2YlSASWC12juhbDCE/RRvgUXPLIXgGZbf2IzIao +wW8xQmxSPmjL8xk037uHGFaAJsTQ3MBv396gwpEWoGQRS0S8Hvbn+mPeZqx2pHGj +7DaUaHp3pLHnDi+BeuK1cobvomuL8A/b01k/unK8RCSc43Oz969XL0Imnal0ugBS +8kvNU3xHCzaFDmapCJcWNFfBZveA4+1wVMeT4C4oFVmHursCAwEAAaOBnTCBmjAT +BgkrBgEEAYI3FAIEBh4EAEMAQTALBgNVHQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB +/zAdBgNVHQ4EFgQUQjK2FvoE/f5dS3rD/fdMQB1aQ68wNAYDVR0fBC0wKzApoCeg +JYYjaHR0cDovL2NybC5zZWN1cmV0cnVzdC5jb20vU1RDQS5jcmwwEAYJKwYBBAGC +NxUBBAMCAQAwDQYJKoZIhvcNAQEFBQADggEBADDtT0rhWDpSclu1pqNlGKa7UTt3 +6Z3q059c4EVlew3KW+JwULKUBRSuSceNQQcSc5R+DCMh/bwQf2AQWnL1mA6s7Ll/ +3XpvXdMc9P+IBWlCqQVxyLesJugutIxq/3HcuLHfmbx8IVQr5Fiiu1cprp6poxkm +D5kuCLDv/WnPmRoJjeOnnyvJNjR7JLN4TJUXpAYmHrZkUjZfYGfZnMUFdAvnZyPS +CPyI6a6Lf+Ew9Dd+/cYy2i2eRDAwbO4H3tI0/NL/QPZL9GZGBlSm8jIKYyYwa5vR +3ItHuuG51WLQoqD0ZwV4KWMabwTW+MZMo5qxN7SN5ShLHZ4swrhovO0C7jE= +-----END CERTIFICATE----- + +# Issuer: CN=Secure Global CA O=SecureTrust Corporation +# Subject: CN=Secure Global CA O=SecureTrust Corporation +# Label: "Secure Global CA" +# Serial: 9751836167731051554232119481456978597 +# MD5 Fingerprint: cf:f4:27:0d:d4:ed:dc:65:16:49:6d:3d:da:bf:6e:de +# SHA1 Fingerprint: 3a:44:73:5a:e5:81:90:1f:24:86:61:46:1e:3b:9c:c4:5f:f5:3a:1b +# SHA256 Fingerprint: 42:00:f5:04:3a:c8:59:0e:bb:52:7d:20:9e:d1:50:30:29:fb:cb:d4:1c:a1:b5:06:ec:27:f1:5a:de:7d:ac:69 +-----BEGIN CERTIFICATE----- +MIIDvDCCAqSgAwIBAgIQB1YipOjUiolN9BPI8PjqpTANBgkqhkiG9w0BAQUFADBK +MQswCQYDVQQGEwJVUzEgMB4GA1UEChMXU2VjdXJlVHJ1c3QgQ29ycG9yYXRpb24x +GTAXBgNVBAMTEFNlY3VyZSBHbG9iYWwgQ0EwHhcNMDYxMTA3MTk0MjI4WhcNMjkx +MjMxMTk1MjA2WjBKMQswCQYDVQQGEwJVUzEgMB4GA1UEChMXU2VjdXJlVHJ1c3Qg +Q29ycG9yYXRpb24xGTAXBgNVBAMTEFNlY3VyZSBHbG9iYWwgQ0EwggEiMA0GCSqG +SIb3DQEBAQUAA4IBDwAwggEKAoIBAQCvNS7YrGxVaQZx5RNoJLNP2MwhR/jxYDiJ +iQPpvepeRlMJ3Fz1Wuj3RSoC6zFh1ykzTM7HfAo3fg+6MpjhHZevj8fcyTiW89sa +/FHtaMbQbqR8JNGuQsiWUGMu4P51/pinX0kuleM5M2SOHqRfkNJnPLLZ/kG5VacJ +jnIFHovdRIWCQtBJwB1g8NEXLJXr9qXBkqPFwqcIYA1gBBCWeZ4WNOaptvolRTnI +HmX5k/Wq8VLcmZg9pYYaDDUz+kulBAYVHDGA76oYa8J719rO+TMg1fW9ajMtgQT7 +sFzUnKPiXB3jqUJ1XnvUd+85VLrJChgbEplJL4hL/VBi0XPnj3pDAgMBAAGjgZ0w +gZowEwYJKwYBBAGCNxQCBAYeBABDAEEwCwYDVR0PBAQDAgGGMA8GA1UdEwEB/wQF +MAMBAf8wHQYDVR0OBBYEFK9EBMJBfkiD2045AuzshHrmzsmkMDQGA1UdHwQtMCsw +KaAnoCWGI2h0dHA6Ly9jcmwuc2VjdXJldHJ1c3QuY29tL1NHQ0EuY3JsMBAGCSsG +AQQBgjcVAQQDAgEAMA0GCSqGSIb3DQEBBQUAA4IBAQBjGghAfaReUw132HquHw0L +URYD7xh8yOOvaliTFGCRsoTciE6+OYo68+aCiV0BN7OrJKQVDpI1WkpEXk5X+nXO +H0jOZvQ8QCaSmGwb7iRGDBezUqXbpZGRzzfTb+cnCDpOGR86p1hcF895P4vkp9Mm +I50mD1hp/Ed+stCNi5O/KU9DaXR2Z0vPB4zmAve14bRDtUstFJ/53CYNv6ZHdAbY +iNE6KTCEztI5gGIbqMdXSbxqVVFnFUq+NQfk1XWYN3kwFNspnWzFacxHVaIw98xc +f8LDmBxrThaA63p4ZUWiABqvDA1VZDRIuJK58bRQKfJPIx/abKwfROHdI3hRW8cW +-----END CERTIFICATE----- + +# Issuer: CN=COMODO Certification Authority O=COMODO CA Limited +# Subject: CN=COMODO Certification Authority O=COMODO CA Limited +# Label: "COMODO Certification Authority" +# Serial: 104350513648249232941998508985834464573 +# MD5 Fingerprint: 5c:48:dc:f7:42:72:ec:56:94:6d:1c:cc:71:35:80:75 +# SHA1 Fingerprint: 66:31:bf:9e:f7:4f:9e:b6:c9:d5:a6:0c:ba:6a:be:d1:f7:bd:ef:7b +# SHA256 Fingerprint: 0c:2c:d6:3d:f7:80:6f:a3:99:ed:e8:09:11:6b:57:5b:f8:79:89:f0:65:18:f9:80:8c:86:05:03:17:8b:af:66 +-----BEGIN CERTIFICATE----- +MIIEHTCCAwWgAwIBAgIQToEtioJl4AsC7j41AkblPTANBgkqhkiG9w0BAQUFADCB +gTELMAkGA1UEBhMCR0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4G +A1UEBxMHU2FsZm9yZDEaMBgGA1UEChMRQ09NT0RPIENBIExpbWl0ZWQxJzAlBgNV +BAMTHkNPTU9ETyBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0wNjEyMDEwMDAw +MDBaFw0yOTEyMzEyMzU5NTlaMIGBMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3Jl +YXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFDT01P +RE8gQ0EgTGltaXRlZDEnMCUGA1UEAxMeQ09NT0RPIENlcnRpZmljYXRpb24gQXV0 +aG9yaXR5MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0ECLi3LjkRv3 +UcEbVASY06m/weaKXTuH+7uIzg3jLz8GlvCiKVCZrts7oVewdFFxze1CkU1B/qnI +2GqGd0S7WWaXUF601CxwRM/aN5VCaTwwxHGzUvAhTaHYujl8HJ6jJJ3ygxaYqhZ8 +Q5sVW7euNJH+1GImGEaaP+vB+fGQV+useg2L23IwambV4EajcNxo2f8ESIl33rXp ++2dtQem8Ob0y2WIC8bGoPW43nOIv4tOiJovGuFVDiOEjPqXSJDlqR6sA1KGzqSX+ +DT+nHbrTUcELpNqsOO9VUCQFZUaTNE8tja3G1CEZ0o7KBWFxB3NH5YoZEr0ETc5O +nKVIrLsm9wIDAQABo4GOMIGLMB0GA1UdDgQWBBQLWOWLxkwVN6RAqTCpIb5HNlpW +/zAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zBJBgNVHR8EQjBAMD6g +PKA6hjhodHRwOi8vY3JsLmNvbW9kb2NhLmNvbS9DT01PRE9DZXJ0aWZpY2F0aW9u +QXV0aG9yaXR5LmNybDANBgkqhkiG9w0BAQUFAAOCAQEAPpiem/Yb6dc5t3iuHXIY +SdOH5EOC6z/JqvWote9VfCFSZfnVDeFs9D6Mk3ORLgLETgdxb8CPOGEIqB6BCsAv +IC9Bi5HcSEW88cbeunZrM8gALTFGTO3nnc+IlP8zwFboJIYmuNg4ON8qa90SzMc/ +RxdMosIGlgnW2/4/PEZB31jiVg88O8EckzXZOFKs7sjsLjBOlDW0JB9LeGna8gI4 +zJVSk/BwJVmcIGfE7vmLV2H0knZ9P4SNVbfo5azV8fUZVqZa+5Acr5Pr5RzUZ5dd +BA6+C4OmF4O5MBKgxTMVBbkN+8cFduPYSo38NBejxiEovjBFMR7HeL5YYTisO+IB +ZQ== +-----END CERTIFICATE----- + +# Issuer: CN=Network Solutions Certificate Authority O=Network Solutions L.L.C. +# Subject: CN=Network Solutions Certificate Authority O=Network Solutions L.L.C. +# Label: "Network Solutions Certificate Authority" +# Serial: 116697915152937497490437556386812487904 +# MD5 Fingerprint: d3:f3:a6:16:c0:fa:6b:1d:59:b1:2d:96:4d:0e:11:2e +# SHA1 Fingerprint: 74:f8:a3:c3:ef:e7:b3:90:06:4b:83:90:3c:21:64:60:20:e5:df:ce +# SHA256 Fingerprint: 15:f0:ba:00:a3:ac:7a:f3:ac:88:4c:07:2b:10:11:a0:77:bd:77:c0:97:f4:01:64:b2:f8:59:8a:bd:83:86:0c +-----BEGIN CERTIFICATE----- +MIID5jCCAs6gAwIBAgIQV8szb8JcFuZHFhfjkDFo4DANBgkqhkiG9w0BAQUFADBi +MQswCQYDVQQGEwJVUzEhMB8GA1UEChMYTmV0d29yayBTb2x1dGlvbnMgTC5MLkMu +MTAwLgYDVQQDEydOZXR3b3JrIFNvbHV0aW9ucyBDZXJ0aWZpY2F0ZSBBdXRob3Jp +dHkwHhcNMDYxMjAxMDAwMDAwWhcNMjkxMjMxMjM1OTU5WjBiMQswCQYDVQQGEwJV +UzEhMB8GA1UEChMYTmV0d29yayBTb2x1dGlvbnMgTC5MLkMuMTAwLgYDVQQDEydO +ZXR3b3JrIFNvbHV0aW9ucyBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkwggEiMA0GCSqG +SIb3DQEBAQUAA4IBDwAwggEKAoIBAQDkvH6SMG3G2I4rC7xGzuAnlt7e+foS0zwz +c7MEL7xxjOWftiJgPl9dzgn/ggwbmlFQGiaJ3dVhXRncEg8tCqJDXRfQNJIg6nPP +OCwGJgl6cvf6UDL4wpPTaaIjzkGxzOTVHzbRijr4jGPiFFlp7Q3Tf2vouAPlT2rl +mGNpSAW+Lv8ztumXWWn4Zxmuk2GWRBXTcrA/vGp97Eh/jcOrqnErU2lBUzS1sLnF +BgrEsEX1QV1uiUV7PTsmjHTC5dLRfbIR1PtYMiKagMnc/Qzpf14Dl847ABSHJ3A4 +qY5usyd2mFHgBeMhqxrVhSI8KbWaFsWAqPS7azCPL0YCorEMIuDTAgMBAAGjgZcw +gZQwHQYDVR0OBBYEFCEwyfsA106Y2oeqKtCnLrFAMadMMA4GA1UdDwEB/wQEAwIB +BjAPBgNVHRMBAf8EBTADAQH/MFIGA1UdHwRLMEkwR6BFoEOGQWh0dHA6Ly9jcmwu +bmV0c29sc3NsLmNvbS9OZXR3b3JrU29sdXRpb25zQ2VydGlmaWNhdGVBdXRob3Jp +dHkuY3JsMA0GCSqGSIb3DQEBBQUAA4IBAQC7rkvnt1frf6ott3NHhWrB5KUd5Oc8 +6fRZZXe1eltajSU24HqXLjjAV2CDmAaDn7l2em5Q4LqILPxFzBiwmZVRDuwduIj/ +h1AcgsLj4DKAv6ALR8jDMe+ZZzKATxcheQxpXN5eNK4CtSbqUN9/GGUsyfJj4akH +/nxxH2szJGoeBfcFaMBqEssuXmHLrijTfsK0ZpEmXzwuJF/LWA/rKOyvEZbz3Htv +wKeI8lN3s2Berq4o2jUsbzRF0ybh3uxbTydrFny9RAQYgrOJeRcQcT16ohZO9QHN +pGxlaKFJdlxDydi8NmdspZS11My5vWo1ViHe2MPr+8ukYEywVaCge1ey +-----END CERTIFICATE----- + +# Issuer: CN=COMODO ECC Certification Authority O=COMODO CA Limited +# Subject: CN=COMODO ECC Certification Authority O=COMODO CA Limited +# Label: "COMODO ECC Certification Authority" +# Serial: 41578283867086692638256921589707938090 +# MD5 Fingerprint: 7c:62:ff:74:9d:31:53:5e:68:4a:d5:78:aa:1e:bf:23 +# SHA1 Fingerprint: 9f:74:4e:9f:2b:4d:ba:ec:0f:31:2c:50:b6:56:3b:8e:2d:93:c3:11 +# SHA256 Fingerprint: 17:93:92:7a:06:14:54:97:89:ad:ce:2f:8f:34:f7:f0:b6:6d:0f:3a:e3:a3:b8:4d:21:ec:15:db:ba:4f:ad:c7 +-----BEGIN CERTIFICATE----- +MIICiTCCAg+gAwIBAgIQH0evqmIAcFBUTAGem2OZKjAKBggqhkjOPQQDAzCBhTEL +MAkGA1UEBhMCR0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UE +BxMHU2FsZm9yZDEaMBgGA1UEChMRQ09NT0RPIENBIExpbWl0ZWQxKzApBgNVBAMT +IkNPTU9ETyBFQ0MgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMDgwMzA2MDAw +MDAwWhcNMzgwMTE4MjM1OTU5WjCBhTELMAkGA1UEBhMCR0IxGzAZBgNVBAgTEkdy +ZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEaMBgGA1UEChMRQ09N +T0RPIENBIExpbWl0ZWQxKzApBgNVBAMTIkNPTU9ETyBFQ0MgQ2VydGlmaWNhdGlv +biBBdXRob3JpdHkwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAAQDR3svdcmCFYX7deSR +FtSrYpn1PlILBs5BAH+X4QokPB0BBO490o0JlwzgdeT6+3eKKvUDYEs2ixYjFq0J +cfRK9ChQtP6IHG4/bC8vCVlbpVsLM5niwz2J+Wos77LTBumjQjBAMB0GA1UdDgQW +BBR1cacZSBm8nZ3qQUfflMRId5nTeTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/ +BAUwAwEB/zAKBggqhkjOPQQDAwNoADBlAjEA7wNbeqy3eApyt4jf/7VGFAkK+qDm +fQjGGoe9GKhzvSbKYAydzpmfz1wPMOG+FDHqAjAU9JM8SaczepBGR7NjfRObTrdv +GDeAU/7dIOA1mjbRxwG55tzd8/8dLDoWV9mSOdY= +-----END CERTIFICATE----- + +# Issuer: CN=Certigna O=Dhimyotis +# Subject: CN=Certigna O=Dhimyotis +# Label: "Certigna" +# Serial: 18364802974209362175 +# MD5 Fingerprint: ab:57:a6:5b:7d:42:82:19:b5:d8:58:26:28:5e:fd:ff +# SHA1 Fingerprint: b1:2e:13:63:45:86:a4:6f:1a:b2:60:68:37:58:2d:c4:ac:fd:94:97 +# SHA256 Fingerprint: e3:b6:a2:db:2e:d7:ce:48:84:2f:7a:c5:32:41:c7:b7:1d:54:14:4b:fb:40:c1:1f:3f:1d:0b:42:f5:ee:a1:2d +-----BEGIN CERTIFICATE----- +MIIDqDCCApCgAwIBAgIJAP7c4wEPyUj/MA0GCSqGSIb3DQEBBQUAMDQxCzAJBgNV +BAYTAkZSMRIwEAYDVQQKDAlEaGlteW90aXMxETAPBgNVBAMMCENlcnRpZ25hMB4X +DTA3MDYyOTE1MTMwNVoXDTI3MDYyOTE1MTMwNVowNDELMAkGA1UEBhMCRlIxEjAQ +BgNVBAoMCURoaW15b3RpczERMA8GA1UEAwwIQ2VydGlnbmEwggEiMA0GCSqGSIb3 +DQEBAQUAA4IBDwAwggEKAoIBAQDIaPHJ1tazNHUmgh7stL7qXOEm7RFHYeGifBZ4 +QCHkYJ5ayGPhxLGWkv8YbWkj4Sti993iNi+RB7lIzw7sebYs5zRLcAglozyHGxny +gQcPOJAZ0xH+hrTy0V4eHpbNgGzOOzGTtvKg0KmVEn2lmsxryIRWijOp5yIVUxbw +zBfsV1/pogqYCd7jX5xv3EjjhQsVWqa6n6xI4wmy9/Qy3l40vhx4XUJbzg4ij02Q +130yGLMLLGq/jj8UEYkgDncUtT2UCIf3JR7VsmAA7G8qKCVuKj4YYxclPz5EIBb2 +JsglrgVKtOdjLPOMFlN+XPsRGgjBRmKfIrjxwo1p3Po6WAbfAgMBAAGjgbwwgbkw +DwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUGu3+QTmQtCRZvgHyUtVF9lo53BEw +ZAYDVR0jBF0wW4AUGu3+QTmQtCRZvgHyUtVF9lo53BGhOKQ2MDQxCzAJBgNVBAYT +AkZSMRIwEAYDVQQKDAlEaGlteW90aXMxETAPBgNVBAMMCENlcnRpZ25hggkA/tzj +AQ/JSP8wDgYDVR0PAQH/BAQDAgEGMBEGCWCGSAGG+EIBAQQEAwIABzANBgkqhkiG +9w0BAQUFAAOCAQEAhQMeknH2Qq/ho2Ge6/PAD/Kl1NqV5ta+aDY9fm4fTIrv0Q8h +bV6lUmPOEvjvKtpv6zf+EwLHyzs+ImvaYS5/1HI93TDhHkxAGYwP15zRgzB7mFnc +fca5DClMoTOi62c6ZYTTluLtdkVwj7Ur3vkj1kluPBS1xp81HlDQwY9qcEQCYsuu +HWhBp6pX6FOqB9IG9tUUBguRA3UsbHK1YZWaDYu5Def131TN3ubY1gkIl2PlwS6w +t0QmwCbAr1UwnjvVNioZBPRcHv/PLLf/0P2HQBHVESO7SMAhqaQoLf0V+LBOK/Qw +WyH8EZE0vkHve52Xdf+XlcCWWC/qu0bXu+TZLg== +-----END CERTIFICATE----- + +# Issuer: CN=Cybertrust Global Root O=Cybertrust, Inc +# Subject: CN=Cybertrust Global Root O=Cybertrust, Inc +# Label: "Cybertrust Global Root" +# Serial: 4835703278459682877484360 +# MD5 Fingerprint: 72:e4:4a:87:e3:69:40:80:77:ea:bc:e3:f4:ff:f0:e1 +# SHA1 Fingerprint: 5f:43:e5:b1:bf:f8:78:8c:ac:1c:c7:ca:4a:9a:c6:22:2b:cc:34:c6 +# SHA256 Fingerprint: 96:0a:df:00:63:e9:63:56:75:0c:29:65:dd:0a:08:67:da:0b:9c:bd:6e:77:71:4a:ea:fb:23:49:ab:39:3d:a3 +-----BEGIN CERTIFICATE----- +MIIDoTCCAomgAwIBAgILBAAAAAABD4WqLUgwDQYJKoZIhvcNAQEFBQAwOzEYMBYG +A1UEChMPQ3liZXJ0cnVzdCwgSW5jMR8wHQYDVQQDExZDeWJlcnRydXN0IEdsb2Jh +bCBSb290MB4XDTA2MTIxNTA4MDAwMFoXDTIxMTIxNTA4MDAwMFowOzEYMBYGA1UE +ChMPQ3liZXJ0cnVzdCwgSW5jMR8wHQYDVQQDExZDeWJlcnRydXN0IEdsb2JhbCBS +b290MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA+Mi8vRRQZhP/8NN5 +7CPytxrHjoXxEnOmGaoQ25yiZXRadz5RfVb23CO21O1fWLE3TdVJDm71aofW0ozS +J8bi/zafmGWgE07GKmSb1ZASzxQG9Dvj1Ci+6A74q05IlG2OlTEQXO2iLb3VOm2y +HLtgwEZLAfVJrn5GitB0jaEMAs7u/OePuGtm839EAL9mJRQr3RAwHQeWP032a7iP +t3sMpTjr3kfb1V05/Iin89cqdPHoWqI7n1C6poxFNcJQZZXcY4Lv3b93TZxiyWNz +FtApD0mpSPCzqrdsxacwOUBdrsTiXSZT8M4cIwhhqJQZugRiQOwfOHB3EgZxpzAY +XSUnpQIDAQABo4GlMIGiMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/ +MB0GA1UdDgQWBBS2CHsNesysIEyGVjJez6tuhS1wVzA/BgNVHR8EODA2MDSgMqAw +hi5odHRwOi8vd3d3Mi5wdWJsaWMtdHJ1c3QuY29tL2NybC9jdC9jdHJvb3QuY3Js +MB8GA1UdIwQYMBaAFLYIew16zKwgTIZWMl7Pq26FLXBXMA0GCSqGSIb3DQEBBQUA +A4IBAQBW7wojoFROlZfJ+InaRcHUowAl9B8Tq7ejhVhpwjCt2BWKLePJzYFa+HMj +Wqd8BfP9IjsO0QbE2zZMcwSO5bAi5MXzLqXZI+O4Tkogp24CJJ8iYGd7ix1yCcUx +XOl5n4BHPa2hCwcUPUf/A2kaDAtE52Mlp3+yybh2hO0j9n0Hq0V+09+zv+mKts2o +omcrUtW3ZfA5TGOgkXmTUg9U3YO7n9GPp1Nzw8v/MOx8BLjYRB+TX3EJIrduPuoc +A06dGiBh+4E37F78CkWr1+cXVdCg6mCbpvbjjFspwgZgFJ0tl0ypkxWdYcQBX0jW +WL1WMRJOEcgh4LMRkWXbtKaIOM5V +-----END CERTIFICATE----- + +# Issuer: O=Chunghwa Telecom Co., Ltd. OU=ePKI Root Certification Authority +# Subject: O=Chunghwa Telecom Co., Ltd. OU=ePKI Root Certification Authority +# Label: "ePKI Root Certification Authority" +# Serial: 28956088682735189655030529057352760477 +# MD5 Fingerprint: 1b:2e:00:ca:26:06:90:3d:ad:fe:6f:15:68:d3:6b:b3 +# SHA1 Fingerprint: 67:65:0d:f1:7e:8e:7e:5b:82:40:a4:f4:56:4b:cf:e2:3d:69:c6:f0 +# SHA256 Fingerprint: c0:a6:f4:dc:63:a2:4b:fd:cf:54:ef:2a:6a:08:2a:0a:72:de:35:80:3e:2f:f5:ff:52:7a:e5:d8:72:06:df:d5 +-----BEGIN CERTIFICATE----- +MIIFsDCCA5igAwIBAgIQFci9ZUdcr7iXAF7kBtK8nTANBgkqhkiG9w0BAQUFADBe +MQswCQYDVQQGEwJUVzEjMCEGA1UECgwaQ2h1bmdod2EgVGVsZWNvbSBDby4sIEx0 +ZC4xKjAoBgNVBAsMIWVQS0kgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAe +Fw0wNDEyMjAwMjMxMjdaFw0zNDEyMjAwMjMxMjdaMF4xCzAJBgNVBAYTAlRXMSMw +IQYDVQQKDBpDaHVuZ2h3YSBUZWxlY29tIENvLiwgTHRkLjEqMCgGA1UECwwhZVBL +SSBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIICIjANBgkqhkiG9w0BAQEF +AAOCAg8AMIICCgKCAgEA4SUP7o3biDN1Z82tH306Tm2d0y8U82N0ywEhajfqhFAH +SyZbCUNsIZ5qyNUD9WBpj8zwIuQf5/dqIjG3LBXy4P4AakP/h2XGtRrBp0xtInAh +ijHyl3SJCRImHJ7K2RKilTza6We/CKBk49ZCt0Xvl/T29de1ShUCWH2YWEtgvM3X +DZoTM1PRYfl61dd4s5oz9wCGzh1NlDivqOx4UXCKXBCDUSH3ET00hl7lSM2XgYI1 +TBnsZfZrxQWh7kcT1rMhJ5QQCtkkO7q+RBNGMD+XPNjX12ruOzjjK9SXDrkb5wdJ +fzcq+Xd4z1TtW0ado4AOkUPB1ltfFLqfpo0kR0BZv3I4sjZsN/+Z0V0OWQqraffA +sgRFelQArr5T9rXn4fg8ozHSqf4hUmTFpmfwdQcGlBSBVcYn5AGPF8Fqcde+S/uU +WH1+ETOxQvdibBjWzwloPn9s9h6PYq2lY9sJpx8iQkEeb5mKPtf5P0B6ebClAZLS +nT0IFaUQAS2zMnaolQ2zepr7BxB4EW/hj8e6DyUadCrlHJhBmd8hh+iVBmoKs2pH +dmX2Os+PYhcZewoozRrSgx4hxyy/vv9haLdnG7t4TY3OZ+XkwY63I2binZB1NJip +NiuKmpS5nezMirH4JYlcWrYvjB9teSSnUmjDhDXiZo1jDiVN1Rmy5nk3pyKdVDEC +AwEAAaNqMGgwHQYDVR0OBBYEFB4M97Zn8uGSJglFwFU5Lnc/QkqiMAwGA1UdEwQF +MAMBAf8wOQYEZyoHAAQxMC8wLQIBADAJBgUrDgMCGgUAMAcGBWcqAwAABBRFsMLH +ClZ87lt4DJX5GFPBphzYEDANBgkqhkiG9w0BAQUFAAOCAgEACbODU1kBPpVJufGB +uvl2ICO1J2B01GqZNF5sAFPZn/KmsSQHRGoqxqWOeBLoR9lYGxMqXnmbnwoqZ6Yl +PwZpVnPDimZI+ymBV3QGypzqKOg4ZyYr8dW1P2WT+DZdjo2NQCCHGervJ8A9tDkP +JXtoUHRVnAxZfVo9QZQlUgjgRywVMRnVvwdVxrsStZf0X4OFunHB2WyBEXYKCrC/ +gpf36j36+uwtqSiUO1bd0lEursC9CBWMd1I0ltabrNMdjmEPNXubrjlpC2JgQCA2 +j6/7Nu4tCEoduL+bXPjqpRugc6bY+G7gMwRfaKonh+3ZwZCc7b3jajWvY9+rGNm6 +5ulK6lCKD2GTHuItGeIwlDWSXQ62B68ZgI9HkFFLLk3dheLSClIKF5r8GrBQAuUB +o2M3IUxExJtRmREOc5wGj1QupyheRDmHVi03vYVElOEMSyycw5KFNGHLD7ibSkNS +/jQ6fbjpKdx2qcgw+BRxgMYeNkh0IkFch4LoGHGLQYlE535YW6i4jRPpp2zDR+2z +Gp1iro2C6pSe3VkQw63d4k3jMdXH7OjysP6SHhYKGvzZ8/gntsm+HbRsZJB/9OTE +W9c3rkIO3aQab3yIVMUWbuF6aC74Or8NpDyJO3inTmODBCEIZ43ygknQW/2xzQ+D +hNQ+IIX3Sj0rnP0qCglN6oH4EZw= +-----END CERTIFICATE----- + +# Issuer: O=certSIGN OU=certSIGN ROOT CA +# Subject: O=certSIGN OU=certSIGN ROOT CA +# Label: "certSIGN ROOT CA" +# Serial: 35210227249154 +# MD5 Fingerprint: 18:98:c0:d6:e9:3a:fc:f9:b0:f5:0c:f7:4b:01:44:17 +# SHA1 Fingerprint: fa:b7:ee:36:97:26:62:fb:2d:b0:2a:f6:bf:03:fd:e8:7c:4b:2f:9b +# SHA256 Fingerprint: ea:a9:62:c4:fa:4a:6b:af:eb:e4:15:19:6d:35:1c:cd:88:8d:4f:53:f3:fa:8a:e6:d7:c4:66:a9:4e:60:42:bb +-----BEGIN CERTIFICATE----- +MIIDODCCAiCgAwIBAgIGIAYFFnACMA0GCSqGSIb3DQEBBQUAMDsxCzAJBgNVBAYT +AlJPMREwDwYDVQQKEwhjZXJ0U0lHTjEZMBcGA1UECxMQY2VydFNJR04gUk9PVCBD +QTAeFw0wNjA3MDQxNzIwMDRaFw0zMTA3MDQxNzIwMDRaMDsxCzAJBgNVBAYTAlJP +MREwDwYDVQQKEwhjZXJ0U0lHTjEZMBcGA1UECxMQY2VydFNJR04gUk9PVCBDQTCC +ASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALczuX7IJUqOtdu0KBuqV5Do +0SLTZLrTk+jUrIZhQGpgV2hUhE28alQCBf/fm5oqrl0Hj0rDKH/v+yv6efHHrfAQ +UySQi2bJqIirr1qjAOm+ukbuW3N7LBeCgV5iLKECZbO9xSsAfsT8AzNXDe3i+s5d +RdY4zTW2ssHQnIFKquSyAVwdj1+ZxLGt24gh65AIgoDzMKND5pCCrlUoSe1b16kQ +OA7+j0xbm0bqQfWwCHTD0IgztnzXdN/chNFDDnU5oSVAKOp4yw4sLjmdjItuFhwv +JoIQ4uNllAoEwF73XVv4EOLQunpL+943AAAaWyjj0pxzPjKHmKHJUS/X3qwzs08C +AwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAcYwHQYDVR0O +BBYEFOCMm9slSbPxfIbWskKHC9BroNnkMA0GCSqGSIb3DQEBBQUAA4IBAQA+0hyJ +LjX8+HXd5n9liPRyTMks1zJO890ZeUe9jjtbkw9QSSQTaxQGcu8J06Gh40CEyecY +MnQ8SG4Pn0vU9x7Tk4ZkVJdjclDVVc/6IJMCopvDI5NOFlV2oHB5bc0hH88vLbwZ +44gx+FkagQnIl6Z0x2DEW8xXjrJ1/RsCCdtZb3KTafcxQdaIOL+Hsr0Wefmq5L6I +Jd1hJyMctTEHBDa0GpC9oHRxUIltvBTjD4au8as+x6AJzKNI0eDbZOeStc+vckNw +i/nDhDwTqn6Sm1dTk/pwwpEOMfmbZ13pljheX7NzTogVZ96edhBiIL5VaZVDADlN +9u6wWk5JRFRYX0KD +-----END CERTIFICATE----- + +# Issuer: CN=NetLock Arany (Class Gold) F\u0151tan\xfas\xedtv\xe1ny O=NetLock Kft. OU=Tan\xfas\xedtv\xe1nykiad\xf3k (Certification Services) +# Subject: CN=NetLock Arany (Class Gold) F\u0151tan\xfas\xedtv\xe1ny O=NetLock Kft. OU=Tan\xfas\xedtv\xe1nykiad\xf3k (Certification Services) +# Label: "NetLock Arany (Class Gold) F\u0151tan\xfas\xedtv\xe1ny" +# Serial: 80544274841616 +# MD5 Fingerprint: c5:a1:b7:ff:73:dd:d6:d7:34:32:18:df:fc:3c:ad:88 +# SHA1 Fingerprint: 06:08:3f:59:3f:15:a1:04:a0:69:a4:6b:a9:03:d0:06:b7:97:09:91 +# SHA256 Fingerprint: 6c:61:da:c3:a2:de:f0:31:50:6b:e0:36:d2:a6:fe:40:19:94:fb:d1:3d:f9:c8:d4:66:59:92:74:c4:46:ec:98 +-----BEGIN CERTIFICATE----- +MIIEFTCCAv2gAwIBAgIGSUEs5AAQMA0GCSqGSIb3DQEBCwUAMIGnMQswCQYDVQQG +EwJIVTERMA8GA1UEBwwIQnVkYXBlc3QxFTATBgNVBAoMDE5ldExvY2sgS2Z0LjE3 +MDUGA1UECwwuVGFuw7pzw610dsOhbnlraWFkw7NrIChDZXJ0aWZpY2F0aW9uIFNl +cnZpY2VzKTE1MDMGA1UEAwwsTmV0TG9jayBBcmFueSAoQ2xhc3MgR29sZCkgRsWR +dGFuw7pzw610dsOhbnkwHhcNMDgxMjExMTUwODIxWhcNMjgxMjA2MTUwODIxWjCB +pzELMAkGA1UEBhMCSFUxETAPBgNVBAcMCEJ1ZGFwZXN0MRUwEwYDVQQKDAxOZXRM +b2NrIEtmdC4xNzA1BgNVBAsMLlRhbsO6c8OtdHbDoW55a2lhZMOzayAoQ2VydGlm +aWNhdGlvbiBTZXJ2aWNlcykxNTAzBgNVBAMMLE5ldExvY2sgQXJhbnkgKENsYXNz +IEdvbGQpIEbFkXRhbsO6c8OtdHbDoW55MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8A +MIIBCgKCAQEAxCRec75LbRTDofTjl5Bu0jBFHjzuZ9lk4BqKf8owyoPjIMHj9DrT +lF8afFttvzBPhCf2nx9JvMaZCpDyD/V/Q4Q3Y1GLeqVw/HpYzY6b7cNGbIRwXdrz +AZAj/E4wqX7hJ2Pn7WQ8oLjJM2P+FpD/sLj916jAwJRDC7bVWaaeVtAkH3B5r9s5 +VA1lddkVQZQBr17s9o3x/61k/iCa11zr/qYfCGSji3ZVrR47KGAuhyXoqq8fxmRG +ILdwfzzeSNuWU7c5d+Qa4scWhHaXWy+7GRWF+GmF9ZmnqfI0p6m2pgP8b4Y9VHx2 +BJtr+UBdADTHLpl1neWIA6pN+APSQnbAGwIDAKiLo0UwQzASBgNVHRMBAf8ECDAG +AQH/AgEEMA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUzPpnk/C2uNClwB7zU/2M +U9+D15YwDQYJKoZIhvcNAQELBQADggEBAKt/7hwWqZw8UQCgwBEIBaeZ5m8BiFRh +bvG5GK1Krf6BQCOUL/t1fC8oS2IkgYIL9WHxHG64YTjrgfpioTtaYtOUZcTh5m2C ++C8lcLIhJsFyUR+MLMOEkMNaj7rP9KdlpeuY0fsFskZ1FSNqb4VjMIDw1Z4fKRzC +bLBQWV2QWzuoDTDPv31/zvGdg73JRm4gpvlhUbohL3u+pRVjodSVh/GeufOJ8z2F +uLjbvrW5KfnaNwUASZQDhETnv0Mxz3WLJdH0pmT1kvarBes96aULNmLazAZfNou2 +XjG4Kvte9nHfRCaexOYNkbQudZWAUWpLMKawYqGT8ZvYzsRjdT9ZR7E= +-----END CERTIFICATE----- + +# Issuer: CN=Hongkong Post Root CA 1 O=Hongkong Post +# Subject: CN=Hongkong Post Root CA 1 O=Hongkong Post +# Label: "Hongkong Post Root CA 1" +# Serial: 1000 +# MD5 Fingerprint: a8:0d:6f:39:78:b9:43:6d:77:42:6d:98:5a:cc:23:ca +# SHA1 Fingerprint: d6:da:a8:20:8d:09:d2:15:4d:24:b5:2f:cb:34:6e:b2:58:b2:8a:58 +# SHA256 Fingerprint: f9:e6:7d:33:6c:51:00:2a:c0:54:c6:32:02:2d:66:dd:a2:e7:e3:ff:f1:0a:d0:61:ed:31:d8:bb:b4:10:cf:b2 +-----BEGIN CERTIFICATE----- +MIIDMDCCAhigAwIBAgICA+gwDQYJKoZIhvcNAQEFBQAwRzELMAkGA1UEBhMCSEsx +FjAUBgNVBAoTDUhvbmdrb25nIFBvc3QxIDAeBgNVBAMTF0hvbmdrb25nIFBvc3Qg +Um9vdCBDQSAxMB4XDTAzMDUxNTA1MTMxNFoXDTIzMDUxNTA0NTIyOVowRzELMAkG +A1UEBhMCSEsxFjAUBgNVBAoTDUhvbmdrb25nIFBvc3QxIDAeBgNVBAMTF0hvbmdr +b25nIFBvc3QgUm9vdCBDQSAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKC +AQEArP84tulmAknjorThkPlAj3n54r15/gK97iSSHSL22oVyaf7XPwnU3ZG1ApzQ +jVrhVcNQhrkpJsLj2aDxaQMoIIBFIi1WpztUlVYiWR8o3x8gPW2iNr4joLFutbEn +PzlTCeqrauh0ssJlXI6/fMN4hM2eFvz1Lk8gKgifd/PFHsSaUmYeSF7jEAaPIpjh +ZY4bXSNmO7ilMlHIhqqhqZ5/dpTCpmy3QfDVyAY45tQM4vM7TG1QjMSDJ8EThFk9 +nnV0ttgCXjqQesBCNnLsak3c78QA3xMYV18meMjWCnl3v/evt3a5pQuEF10Q6m/h +q5URX208o1xNg1vysxmKgIsLhwIDAQABoyYwJDASBgNVHRMBAf8ECDAGAQH/AgED +MA4GA1UdDwEB/wQEAwIBxjANBgkqhkiG9w0BAQUFAAOCAQEADkbVPK7ih9legYsC +mEEIjEy82tvuJxuC52pF7BaLT4Wg87JwvVqWuspube5Gi27nKi6Wsxkz67SfqLI3 +7piol7Yutmcn1KZJ/RyTZXaeQi/cImyaT/JaFTmxcdcrUehtHJjA2Sr0oYJ71clB +oiMBdDhViw+5LmeiIAQ32pwL0xch4I+XeTRvhEgCIDMb5jREn5Fw9IBehEPCKdJs +EhTkYY2sEJCehFC78JZvRZ+K88psT/oROhUVRsPNH4NbLUES7VBnQRM9IauUiqpO +fMGx+6fWtScvl6tu4B3i0RwsH0Ti/L6RoZz71ilTc4afU9hDDl3WY4JxHYB0yvbi +AmvZWg== +-----END CERTIFICATE----- + +# Issuer: CN=SecureSign RootCA11 O=Japan Certification Services, Inc. +# Subject: CN=SecureSign RootCA11 O=Japan Certification Services, Inc. +# Label: "SecureSign RootCA11" +# Serial: 1 +# MD5 Fingerprint: b7:52:74:e2:92:b4:80:93:f2:75:e4:cc:d7:f2:ea:26 +# SHA1 Fingerprint: 3b:c4:9f:48:f8:f3:73:a0:9c:1e:bd:f8:5b:b1:c3:65:c7:d8:11:b3 +# SHA256 Fingerprint: bf:0f:ee:fb:9e:3a:58:1a:d5:f9:e9:db:75:89:98:57:43:d2:61:08:5c:4d:31:4f:6f:5d:72:59:aa:42:16:12 +-----BEGIN CERTIFICATE----- +MIIDbTCCAlWgAwIBAgIBATANBgkqhkiG9w0BAQUFADBYMQswCQYDVQQGEwJKUDEr +MCkGA1UEChMiSmFwYW4gQ2VydGlmaWNhdGlvbiBTZXJ2aWNlcywgSW5jLjEcMBoG +A1UEAxMTU2VjdXJlU2lnbiBSb290Q0ExMTAeFw0wOTA0MDgwNDU2NDdaFw0yOTA0 +MDgwNDU2NDdaMFgxCzAJBgNVBAYTAkpQMSswKQYDVQQKEyJKYXBhbiBDZXJ0aWZp +Y2F0aW9uIFNlcnZpY2VzLCBJbmMuMRwwGgYDVQQDExNTZWN1cmVTaWduIFJvb3RD +QTExMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA/XeqpRyQBTvLTJsz +i1oURaTnkBbR31fSIRCkF/3frNYfp+TbfPfs37gD2pRY/V1yfIw/XwFndBWW4wI8 +h9uuywGOwvNmxoVF9ALGOrVisq/6nL+k5tSAMJjzDbaTj6nU2DbysPyKyiyhFTOV +MdrAG/LuYpmGYz+/3ZMqg6h2uRMft85OQoWPIucuGvKVCbIFtUROd6EgvanyTgp9 +UK31BQ1FT0Zx/Sg+U/sE2C3XZR1KG/rPO7AxmjVuyIsG0wCR8pQIZUyxNAYAeoni +8McDWc/V1uinMrPmmECGxc0nEovMe863ETxiYAcjPitAbpSACW22s293bzUIUPsC +h8U+iQIDAQABo0IwQDAdBgNVHQ4EFgQUW/hNT7KlhtQ60vFjmqC+CfZXt94wDgYD +VR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEFBQADggEB +AKChOBZmLqdWHyGcBvod7bkixTgm2E5P7KN/ed5GIaGHd48HCJqypMWvDzKYC3xm +KbabfSVSSUOrTC4rbnpwrxYO4wJs+0LmGJ1F2FXI6Dvd5+H0LgscNFxsWEr7jIhQ +X5Ucv+2rIrVls4W6ng+4reV6G4pQOh29Dbx7VFALuUKvVaAYga1lme++5Jy/xIWr +QbJUb9wlze144o4MjQlJ3WN7WmmWAiGovVJZ6X01y8hSyn+B/tlr0/cR7SXf+Of5 +pPpyl4RTDaXQMhhRdlkUbA/r7F+AjHVDg8OFmP9Mni0N5HeDk061lgeLKBObjBmN +QSdJQO7e5iNEOdyhIta6A/I= +-----END CERTIFICATE----- + +# Issuer: CN=Microsec e-Szigno Root CA 2009 O=Microsec Ltd. +# Subject: CN=Microsec e-Szigno Root CA 2009 O=Microsec Ltd. +# Label: "Microsec e-Szigno Root CA 2009" +# Serial: 14014712776195784473 +# MD5 Fingerprint: f8:49:f4:03:bc:44:2d:83:be:48:69:7d:29:64:fc:b1 +# SHA1 Fingerprint: 89:df:74:fe:5c:f4:0f:4a:80:f9:e3:37:7d:54:da:91:e1:01:31:8e +# SHA256 Fingerprint: 3c:5f:81:fe:a5:fa:b8:2c:64:bf:a2:ea:ec:af:cd:e8:e0:77:fc:86:20:a7:ca:e5:37:16:3d:f3:6e:db:f3:78 +-----BEGIN CERTIFICATE----- +MIIECjCCAvKgAwIBAgIJAMJ+QwRORz8ZMA0GCSqGSIb3DQEBCwUAMIGCMQswCQYD +VQQGEwJIVTERMA8GA1UEBwwIQnVkYXBlc3QxFjAUBgNVBAoMDU1pY3Jvc2VjIEx0 +ZC4xJzAlBgNVBAMMHk1pY3Jvc2VjIGUtU3ppZ25vIFJvb3QgQ0EgMjAwOTEfMB0G +CSqGSIb3DQEJARYQaW5mb0BlLXN6aWduby5odTAeFw0wOTA2MTYxMTMwMThaFw0y +OTEyMzAxMTMwMThaMIGCMQswCQYDVQQGEwJIVTERMA8GA1UEBwwIQnVkYXBlc3Qx +FjAUBgNVBAoMDU1pY3Jvc2VjIEx0ZC4xJzAlBgNVBAMMHk1pY3Jvc2VjIGUtU3pp +Z25vIFJvb3QgQ0EgMjAwOTEfMB0GCSqGSIb3DQEJARYQaW5mb0BlLXN6aWduby5o +dTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOn4j/NjrdqG2KfgQvvP +kd6mJviZpWNwrZuuyjNAfW2WbqEORO7hE52UQlKavXWFdCyoDh2Tthi3jCyoz/tc +cbna7P7ofo/kLx2yqHWH2Leh5TvPmUpG0IMZfcChEhyVbUr02MelTTMuhTlAdX4U +fIASmFDHQWe4oIBhVKZsTh/gnQ4H6cm6M+f+wFUoLAKApxn1ntxVUwOXewdI/5n7 +N4okxFnMUBBjjqqpGrCEGob5X7uxUG6k0QrM1XF+H6cbfPVTbiJfyyvm1HxdrtbC +xkzlBQHZ7Vf8wSN5/PrIJIOV87VqUQHQd9bpEqH5GoP7ghu5sJf0dgYzQ0mg/wu1 ++rUCAwEAAaOBgDB+MA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0G +A1UdDgQWBBTLD8bfQkPMPcu1SCOhGnqmKrs0aDAfBgNVHSMEGDAWgBTLD8bfQkPM +Pcu1SCOhGnqmKrs0aDAbBgNVHREEFDASgRBpbmZvQGUtc3ppZ25vLmh1MA0GCSqG +SIb3DQEBCwUAA4IBAQDJ0Q5eLtXMs3w+y/w9/w0olZMEyL/azXm4Q5DwpL7v8u8h +mLzU1F0G9u5C7DBsoKqpyvGvivo/C3NqPuouQH4frlRheesuCDfXI/OMn74dseGk +ddug4lQUsbocKaQY9hK6ohQU4zE1yED/t+AFdlfBHFny+L/k7SViXITwfn4fs775 +tyERzAMBVnCnEJIeGzSBHq2cGsMEPO0CYdYeBvNfOofyK/FFh+U9rNHHV4S9a67c +2Pm2G2JwCz02yULyMtd6YebS2z3PyKnJm9zbWETXbzivf3jTo60adbocwTZ8jx5t +HMN1Rq41Bab2XD0h7lbwyYIiLXpUq3DDfSJlgnCW +-----END CERTIFICATE----- + +# Issuer: CN=GlobalSign O=GlobalSign OU=GlobalSign Root CA - R3 +# Subject: CN=GlobalSign O=GlobalSign OU=GlobalSign Root CA - R3 +# Label: "GlobalSign Root CA - R3" +# Serial: 4835703278459759426209954 +# MD5 Fingerprint: c5:df:b8:49:ca:05:13:55:ee:2d:ba:1a:c3:3e:b0:28 +# SHA1 Fingerprint: d6:9b:56:11:48:f0:1c:77:c5:45:78:c1:09:26:df:5b:85:69:76:ad +# SHA256 Fingerprint: cb:b5:22:d7:b7:f1:27:ad:6a:01:13:86:5b:df:1c:d4:10:2e:7d:07:59:af:63:5a:7c:f4:72:0d:c9:63:c5:3b +-----BEGIN CERTIFICATE----- +MIIDXzCCAkegAwIBAgILBAAAAAABIVhTCKIwDQYJKoZIhvcNAQELBQAwTDEgMB4G +A1UECxMXR2xvYmFsU2lnbiBSb290IENBIC0gUjMxEzARBgNVBAoTCkdsb2JhbFNp +Z24xEzARBgNVBAMTCkdsb2JhbFNpZ24wHhcNMDkwMzE4MTAwMDAwWhcNMjkwMzE4 +MTAwMDAwWjBMMSAwHgYDVQQLExdHbG9iYWxTaWduIFJvb3QgQ0EgLSBSMzETMBEG +A1UEChMKR2xvYmFsU2lnbjETMBEGA1UEAxMKR2xvYmFsU2lnbjCCASIwDQYJKoZI +hvcNAQEBBQADggEPADCCAQoCggEBAMwldpB5BngiFvXAg7aEyiie/QV2EcWtiHL8 +RgJDx7KKnQRfJMsuS+FggkbhUqsMgUdwbN1k0ev1LKMPgj0MK66X17YUhhB5uzsT +gHeMCOFJ0mpiLx9e+pZo34knlTifBtc+ycsmWQ1z3rDI6SYOgxXG71uL0gRgykmm +KPZpO/bLyCiR5Z2KYVc3rHQU3HTgOu5yLy6c+9C7v/U9AOEGM+iCK65TpjoWc4zd +QQ4gOsC0p6Hpsk+QLjJg6VfLuQSSaGjlOCZgdbKfd/+RFO+uIEn8rUAVSNECMWEZ +XriX7613t2Saer9fwRPvm2L7DWzgVGkWqQPabumDk3F2xmmFghcCAwEAAaNCMEAw +DgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFI/wS3+o +LkUkrk1Q+mOai97i3Ru8MA0GCSqGSIb3DQEBCwUAA4IBAQBLQNvAUKr+yAzv95ZU +RUm7lgAJQayzE4aGKAczymvmdLm6AC2upArT9fHxD4q/c2dKg8dEe3jgr25sbwMp +jjM5RcOO5LlXbKr8EpbsU8Yt5CRsuZRj+9xTaGdWPoO4zzUhw8lo/s7awlOqzJCK +6fBdRoyV3XpYKBovHd7NADdBj+1EbddTKJd+82cEHhXXipa0095MJ6RMG3NzdvQX +mcIfeg7jLQitChws/zyrVQ4PkX4268NXSb7hLi18YIvDQVETI53O9zJrlAGomecs +Mx86OyXShkDOOyyGeMlhLxS67ttVb9+E7gUJTb0o2HLO02JQZR7rkpeDMdmztcpH +WD9f +-----END CERTIFICATE----- + +# Issuer: CN=Autoridad de Certificacion Firmaprofesional CIF A62634068 +# Subject: CN=Autoridad de Certificacion Firmaprofesional CIF A62634068 +# Label: "Autoridad de Certificacion Firmaprofesional CIF A62634068" +# Serial: 6047274297262753887 +# MD5 Fingerprint: 73:3a:74:7a:ec:bb:a3:96:a6:c2:e4:e2:c8:9b:c0:c3 +# SHA1 Fingerprint: ae:c5:fb:3f:c8:e1:bf:c4:e5:4f:03:07:5a:9a:e8:00:b7:f7:b6:fa +# SHA256 Fingerprint: 04:04:80:28:bf:1f:28:64:d4:8f:9a:d4:d8:32:94:36:6a:82:88:56:55:3f:3b:14:30:3f:90:14:7f:5d:40:ef +-----BEGIN CERTIFICATE----- +MIIGFDCCA/ygAwIBAgIIU+w77vuySF8wDQYJKoZIhvcNAQEFBQAwUTELMAkGA1UE +BhMCRVMxQjBABgNVBAMMOUF1dG9yaWRhZCBkZSBDZXJ0aWZpY2FjaW9uIEZpcm1h +cHJvZmVzaW9uYWwgQ0lGIEE2MjYzNDA2ODAeFw0wOTA1MjAwODM4MTVaFw0zMDEy +MzEwODM4MTVaMFExCzAJBgNVBAYTAkVTMUIwQAYDVQQDDDlBdXRvcmlkYWQgZGUg +Q2VydGlmaWNhY2lvbiBGaXJtYXByb2Zlc2lvbmFsIENJRiBBNjI2MzQwNjgwggIi +MA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDKlmuO6vj78aI14H9M2uDDUtd9 +thDIAl6zQyrET2qyyhxdKJp4ERppWVevtSBC5IsP5t9bpgOSL/UR5GLXMnE42QQM +cas9UX4PB99jBVzpv5RvwSmCwLTaUbDBPLutN0pcyvFLNg4kq7/DhHf9qFD0sefG +L9ItWY16Ck6WaVICqjaY7Pz6FIMMNx/Jkjd/14Et5cS54D40/mf0PmbR0/RAz15i +NA9wBj4gGFrO93IbJWyTdBSTo3OxDqqHECNZXyAFGUftaI6SEspd/NYrspI8IM/h +X68gvqB2f3bl7BqGYTM+53u0P6APjqK5am+5hyZvQWyIplD9amML9ZMWGxmPsu2b +m8mQ9QEM3xk9Dz44I8kvjwzRAv4bVdZO0I08r0+k8/6vKtMFnXkIoctXMbScyJCy +Z/QYFpM6/EfY0XiWMR+6KwxfXZmtY4laJCB22N/9q06mIqqdXuYnin1oKaPnirja +EbsXLZmdEyRG98Xi2J+Of8ePdG1asuhy9azuJBCtLxTa/y2aRnFHvkLfuwHb9H/T +KI8xWVvTyQKmtFLKbpf7Q8UIJm+K9Lv9nyiqDdVF8xM6HdjAeI9BZzwelGSuewvF +6NkBiDkal4ZkQdU7hwxu+g/GvUgUvzlN1J5Bto+WHWOWk9mVBngxaJ43BjuAiUVh +OSPHG0SjFeUc+JIwuwIDAQABo4HvMIHsMBIGA1UdEwEB/wQIMAYBAf8CAQEwDgYD +VR0PAQH/BAQDAgEGMB0GA1UdDgQWBBRlzeurNR4APn7VdMActHNHDhpkLzCBpgYD +VR0gBIGeMIGbMIGYBgRVHSAAMIGPMC8GCCsGAQUFBwIBFiNodHRwOi8vd3d3LmZp +cm1hcHJvZmVzaW9uYWwuY29tL2NwczBcBggrBgEFBQcCAjBQHk4AUABhAHMAZQBv +ACAAZABlACAAbABhACAAQgBvAG4AYQBuAG8AdgBhACAANAA3ACAAQgBhAHIAYwBl +AGwAbwBuAGEAIAAwADgAMAAxADcwDQYJKoZIhvcNAQEFBQADggIBABd9oPm03cXF +661LJLWhAqvdpYhKsg9VSytXjDvlMd3+xDLx51tkljYyGOylMnfX40S2wBEqgLk9 +am58m9Ot/MPWo+ZkKXzR4Tgegiv/J2Wv+xYVxC5xhOW1//qkR71kMrv2JYSiJ0L1 +ILDCExARzRAVukKQKtJE4ZYm6zFIEv0q2skGz3QeqUvVhyj5eTSSPi5E6PaPT481 +PyWzOdxjKpBrIF/EUhJOlywqrJ2X3kjyo2bbwtKDlaZmp54lD+kLM5FlClrD2VQS +3a/DTg4fJl4N3LON7NWBcN7STyQF82xO9UxJZo3R/9ILJUFI/lGExkKvgATP0H5k +SeTy36LssUzAKh3ntLFlosS88Zj0qnAHY7S42jtM+kAiMFsRpvAFDsYCA0irhpuF +3dvd6qJ2gHN99ZwExEWN57kci57q13XRcrHedUTnQn3iV2t93Jm8PYMo6oCTjcVM +ZcFwgbg4/EMxsvYDNEeyrPsiBsse3RdHHF9mudMaotoRsaS8I8nkvof/uZS2+F0g +StRf571oe2XyFR7SOqkt6dhrJKyXWERHrVkY8SFlcN7ONGCoQPHzPKTDKCOM/icz +Q0CgFzzr6juwcqajuUpLXhZI9LK8yIySxZ2frHI2vDSANGupi5LAuBft7HZT9SQB +jLMi6Et8Vcad+qMUu2WFbm5PEn4KPJ2V +-----END CERTIFICATE----- + +# Issuer: CN=Izenpe.com O=IZENPE S.A. +# Subject: CN=Izenpe.com O=IZENPE S.A. +# Label: "Izenpe.com" +# Serial: 917563065490389241595536686991402621 +# MD5 Fingerprint: a6:b0:cd:85:80:da:5c:50:34:a3:39:90:2f:55:67:73 +# SHA1 Fingerprint: 2f:78:3d:25:52:18:a7:4a:65:39:71:b5:2c:a2:9c:45:15:6f:e9:19 +# SHA256 Fingerprint: 25:30:cc:8e:98:32:15:02:ba:d9:6f:9b:1f:ba:1b:09:9e:2d:29:9e:0f:45:48:bb:91:4f:36:3b:c0:d4:53:1f +-----BEGIN CERTIFICATE----- +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 +-----END CERTIFICATE----- + +# Issuer: CN=Go Daddy Root Certificate Authority - G2 O=GoDaddy.com, Inc. +# Subject: CN=Go Daddy Root Certificate Authority - G2 O=GoDaddy.com, Inc. +# Label: "Go Daddy Root Certificate Authority - G2" +# Serial: 0 +# MD5 Fingerprint: 80:3a:bc:22:c1:e6:fb:8d:9b:3b:27:4a:32:1b:9a:01 +# SHA1 Fingerprint: 47:be:ab:c9:22:ea:e8:0e:78:78:34:62:a7:9f:45:c2:54:fd:e6:8b +# SHA256 Fingerprint: 45:14:0b:32:47:eb:9c:c8:c5:b4:f0:d7:b5:30:91:f7:32:92:08:9e:6e:5a:63:e2:74:9d:d3:ac:a9:19:8e:da +-----BEGIN CERTIFICATE----- +MIIDxTCCAq2gAwIBAgIBADANBgkqhkiG9w0BAQsFADCBgzELMAkGA1UEBhMCVVMx +EDAOBgNVBAgTB0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxGjAYBgNVBAoT +EUdvRGFkZHkuY29tLCBJbmMuMTEwLwYDVQQDEyhHbyBEYWRkeSBSb290IENlcnRp +ZmljYXRlIEF1dGhvcml0eSAtIEcyMB4XDTA5MDkwMTAwMDAwMFoXDTM3MTIzMTIz +NTk1OVowgYMxCzAJBgNVBAYTAlVTMRAwDgYDVQQIEwdBcml6b25hMRMwEQYDVQQH +EwpTY290dHNkYWxlMRowGAYDVQQKExFHb0RhZGR5LmNvbSwgSW5jLjExMC8GA1UE +AxMoR28gRGFkZHkgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgLSBHMjCCASIw +DQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL9xYgjx+lk09xvJGKP3gElY6SKD +E6bFIEMBO4Tx5oVJnyfq9oQbTqC023CYxzIBsQU+B07u9PpPL1kwIuerGVZr4oAH +/PMWdYA5UXvl+TW2dE6pjYIT5LY/qQOD+qK+ihVqf94Lw7YZFAXK6sOoBJQ7Rnwy +DfMAZiLIjWltNowRGLfTshxgtDj6AozO091GB94KPutdfMh8+7ArU6SSYmlRJQVh +GkSBjCypQ5Yj36w6gZoOKcUcqeldHraenjAKOc7xiID7S13MMuyFYkMlNAJWJwGR +tDtwKj9useiciAF9n9T521NtYJ2/LOdYq7hfRvzOxBsDPAnrSTFcaUaz4EcCAwEA +AaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYE +FDqahQcQZyi27/a9BUFuIMGU2g/eMA0GCSqGSIb3DQEBCwUAA4IBAQCZ21151fmX +WWcDYfF+OwYxdS2hII5PZYe096acvNjpL9DbWu7PdIxztDhC2gV7+AJ1uP2lsdeu +9tfeE8tTEH6KRtGX+rcuKxGrkLAngPnon1rpN5+r5N9ss4UXnT3ZJE95kTXWXwTr +gIOrmgIttRD02JDHBHNA7XIloKmf7J6raBKZV8aPEjoJpL1E/QYVN8Gb5DKj7Tjo +2GTzLH4U/ALqn83/B2gX2yKQOC16jdFU8WnjXzPKej17CuPKf1855eJ1usV2GDPO +LPAvTK33sefOT6jEm0pUBsV/fdUID+Ic/n4XuKxe9tQWskMJDE32p2u0mYRlynqI +4uJEvlz36hz1 +-----END CERTIFICATE----- + +# Issuer: CN=Starfield Root Certificate Authority - G2 O=Starfield Technologies, Inc. +# Subject: CN=Starfield Root Certificate Authority - G2 O=Starfield Technologies, Inc. +# Label: "Starfield Root Certificate Authority - G2" +# Serial: 0 +# MD5 Fingerprint: d6:39:81:c6:52:7e:96:69:fc:fc:ca:66:ed:05:f2:96 +# SHA1 Fingerprint: b5:1c:06:7c:ee:2b:0c:3d:f8:55:ab:2d:92:f4:fe:39:d4:e7:0f:0e +# SHA256 Fingerprint: 2c:e1:cb:0b:f9:d2:f9:e1:02:99:3f:be:21:51:52:c3:b2:dd:0c:ab:de:1c:68:e5:31:9b:83:91:54:db:b7:f5 +-----BEGIN CERTIFICATE----- +MIID3TCCAsWgAwIBAgIBADANBgkqhkiG9w0BAQsFADCBjzELMAkGA1UEBhMCVVMx +EDAOBgNVBAgTB0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxJTAjBgNVBAoT +HFN0YXJmaWVsZCBUZWNobm9sb2dpZXMsIEluYy4xMjAwBgNVBAMTKVN0YXJmaWVs +ZCBSb290IENlcnRpZmljYXRlIEF1dGhvcml0eSAtIEcyMB4XDTA5MDkwMTAwMDAw +MFoXDTM3MTIzMTIzNTk1OVowgY8xCzAJBgNVBAYTAlVTMRAwDgYDVQQIEwdBcml6 +b25hMRMwEQYDVQQHEwpTY290dHNkYWxlMSUwIwYDVQQKExxTdGFyZmllbGQgVGVj +aG5vbG9naWVzLCBJbmMuMTIwMAYDVQQDEylTdGFyZmllbGQgUm9vdCBDZXJ0aWZp +Y2F0ZSBBdXRob3JpdHkgLSBHMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC +ggEBAL3twQP89o/8ArFvW59I2Z154qK3A2FWGMNHttfKPTUuiUP3oWmb3ooa/RMg +nLRJdzIpVv257IzdIvpy3Cdhl+72WoTsbhm5iSzchFvVdPtrX8WJpRBSiUZV9Lh1 +HOZ/5FSuS/hVclcCGfgXcVnrHigHdMWdSL5stPSksPNkN3mSwOxGXn/hbVNMYq/N +Hwtjuzqd+/x5AJhhdM8mgkBj87JyahkNmcrUDnXMN/uLicFZ8WJ/X7NfZTD4p7dN +dloedl40wOiWVpmKs/B/pM293DIxfJHP4F8R+GuqSVzRmZTRouNjWwl2tVZi4Ut0 +HZbUJtQIBFnQmA4O5t78w+wfkPECAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAO +BgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFHwMMh+n2TB/xH1oo2Kooc6rB1snMA0G +CSqGSIb3DQEBCwUAA4IBAQARWfolTwNvlJk7mh+ChTnUdgWUXuEok21iXQnCoKjU +sHU48TRqneSfioYmUeYs0cYtbpUgSpIB7LiKZ3sx4mcujJUDJi5DnUox9g61DLu3 +4jd/IroAow57UvtruzvE03lRTs2Q9GcHGcg8RnoNAX3FWOdt5oUwF5okxBDgBPfg +8n/Uqgr/Qh037ZTlZFkSIHc40zI+OIF1lnP6aI+xy84fxez6nH7PfrHxBy22/L/K +pL/QlwVKvOoYKAKQvVR4CSFx09F9HdkWsKlhPdAKACL8x3vLCWRFCztAgfd9fDL1 +mMpYjn0q7pBZc2T5NnReJaH1ZgUufzkVqSr7UIuOhWn0 +-----END CERTIFICATE----- + +# Issuer: CN=Starfield Services Root Certificate Authority - G2 O=Starfield Technologies, Inc. +# Subject: CN=Starfield Services Root Certificate Authority - G2 O=Starfield Technologies, Inc. +# Label: "Starfield Services Root Certificate Authority - G2" +# Serial: 0 +# MD5 Fingerprint: 17:35:74:af:7b:61:1c:eb:f4:f9:3c:e2:ee:40:f9:a2 +# SHA1 Fingerprint: 92:5a:8f:8d:2c:6d:04:e0:66:5f:59:6a:ff:22:d8:63:e8:25:6f:3f +# SHA256 Fingerprint: 56:8d:69:05:a2:c8:87:08:a4:b3:02:51:90:ed:cf:ed:b1:97:4a:60:6a:13:c6:e5:29:0f:cb:2a:e6:3e:da:b5 +-----BEGIN CERTIFICATE----- +MIID7zCCAtegAwIBAgIBADANBgkqhkiG9w0BAQsFADCBmDELMAkGA1UEBhMCVVMx +EDAOBgNVBAgTB0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxJTAjBgNVBAoT +HFN0YXJmaWVsZCBUZWNobm9sb2dpZXMsIEluYy4xOzA5BgNVBAMTMlN0YXJmaWVs +ZCBTZXJ2aWNlcyBSb290IENlcnRpZmljYXRlIEF1dGhvcml0eSAtIEcyMB4XDTA5 +MDkwMTAwMDAwMFoXDTM3MTIzMTIzNTk1OVowgZgxCzAJBgNVBAYTAlVTMRAwDgYD +VQQIEwdBcml6b25hMRMwEQYDVQQHEwpTY290dHNkYWxlMSUwIwYDVQQKExxTdGFy +ZmllbGQgVGVjaG5vbG9naWVzLCBJbmMuMTswOQYDVQQDEzJTdGFyZmllbGQgU2Vy +dmljZXMgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgLSBHMjCCASIwDQYJKoZI +hvcNAQEBBQADggEPADCCAQoCggEBANUMOsQq+U7i9b4Zl1+OiFOxHz/Lz58gE20p +OsgPfTz3a3Y4Y9k2YKibXlwAgLIvWX/2h/klQ4bnaRtSmpDhcePYLQ1Ob/bISdm2 +8xpWriu2dBTrz/sm4xq6HZYuajtYlIlHVv8loJNwU4PahHQUw2eeBGg6345AWh1K +Ts9DkTvnVtYAcMtS7nt9rjrnvDH5RfbCYM8TWQIrgMw0R9+53pBlbQLPLJGmpufe +hRhJfGZOozptqbXuNC66DQO4M99H67FrjSXZm86B0UVGMpZwh94CDklDhbZsc7tk +6mFBrMnUVN+HL8cisibMn1lUaJ/8viovxFUcdUBgF4UCVTmLfwUCAwEAAaNCMEAw +DwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFJxfAN+q +AdcwKziIorhtSpzyEZGDMA0GCSqGSIb3DQEBCwUAA4IBAQBLNqaEd2ndOxmfZyMI +bw5hyf2E3F/YNoHN2BtBLZ9g3ccaaNnRbobhiCPPE95Dz+I0swSdHynVv/heyNXB +ve6SbzJ08pGCL72CQnqtKrcgfU28elUSwhXqvfdqlS5sdJ/PHLTyxQGjhdByPq1z +qwubdQxtRbeOlKyWN7Wg0I8VRw7j6IPdj/3vQQF3zCepYoUz8jcI73HPdwbeyBkd +iEDPfUYd/x7H4c7/I9vG+o1VTqkC50cRRj70/b17KSa7qWFiNyi2LSr2EIZkyXCn +0q23KXB56jzaYyWf/Wi3MOxw+3WKt21gZ7IeyLnp2KhvAotnDU0mV3HaIPzBSlCN +sSi6 +-----END CERTIFICATE----- + +# Issuer: CN=AffirmTrust Commercial O=AffirmTrust +# Subject: CN=AffirmTrust Commercial O=AffirmTrust +# Label: "AffirmTrust Commercial" +# Serial: 8608355977964138876 +# MD5 Fingerprint: 82:92:ba:5b:ef:cd:8a:6f:a6:3d:55:f9:84:f6:d6:b7 +# SHA1 Fingerprint: f9:b5:b6:32:45:5f:9c:be:ec:57:5f:80:dc:e9:6e:2c:c7:b2:78:b7 +# SHA256 Fingerprint: 03:76:ab:1d:54:c5:f9:80:3c:e4:b2:e2:01:a0:ee:7e:ef:7b:57:b6:36:e8:a9:3c:9b:8d:48:60:c9:6f:5f:a7 +-----BEGIN CERTIFICATE----- +MIIDTDCCAjSgAwIBAgIId3cGJyapsXwwDQYJKoZIhvcNAQELBQAwRDELMAkGA1UE +BhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MR8wHQYDVQQDDBZBZmZpcm1UcnVz +dCBDb21tZXJjaWFsMB4XDTEwMDEyOTE0MDYwNloXDTMwMTIzMTE0MDYwNlowRDEL +MAkGA1UEBhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MR8wHQYDVQQDDBZBZmZp +cm1UcnVzdCBDb21tZXJjaWFsMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKC +AQEA9htPZwcroRX1BiLLHwGy43NFBkRJLLtJJRTWzsO3qyxPxkEylFf6EqdbDuKP +Hx6GGaeqtS25Xw2Kwq+FNXkyLbscYjfysVtKPcrNcV/pQr6U6Mje+SJIZMblq8Yr +ba0F8PrVC8+a5fBQpIs7R6UjW3p6+DM/uO+Zl+MgwdYoic+U+7lF7eNAFxHUdPAL +MeIrJmqbTFeurCA+ukV6BfO9m2kVrn1OIGPENXY6BwLJN/3HR+7o8XYdcxXyl6S1 +yHp52UKqK39c/s4mT6NmgTWvRLpUHhwwMmWd5jyTXlBOeuM61G7MGvv50jeuJCqr +VwMiKA1JdX+3KNp1v47j3A55MQIDAQABo0IwQDAdBgNVHQ4EFgQUnZPGU4teyq8/ +nx4P5ZmVvCT2lI8wDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwDQYJ +KoZIhvcNAQELBQADggEBAFis9AQOzcAN/wr91LoWXym9e2iZWEnStB03TX8nfUYG +XUPGhi4+c7ImfU+TqbbEKpqrIZcUsd6M06uJFdhrJNTxFq7YpFzUf1GO7RgBsZNj +vbz4YYCanrHOQnDiqX0GJX0nof5v7LMeJNrjS1UaADs1tDvZ110w/YETifLCBivt +Z8SOyUOyXGsViQK8YvxO8rUzqrJv0wqiUOP2O+guRMLbZjipM1ZI8W0bM40NjD9g +N53Tym1+NH4Nn3J2ixufcv1SNUFFApYvHLKac0khsUlHRUe072o0EclNmsxZt9YC +nlpOZbWUrhvfKbAW8b8Angc6F2S1BLUjIZkKlTuXfO8= +-----END CERTIFICATE----- + +# Issuer: CN=AffirmTrust Networking O=AffirmTrust +# Subject: CN=AffirmTrust Networking O=AffirmTrust +# Label: "AffirmTrust Networking" +# Serial: 8957382827206547757 +# MD5 Fingerprint: 42:65:ca:be:01:9a:9a:4c:a9:8c:41:49:cd:c0:d5:7f +# SHA1 Fingerprint: 29:36:21:02:8b:20:ed:02:f5:66:c5:32:d1:d6:ed:90:9f:45:00:2f +# SHA256 Fingerprint: 0a:81:ec:5a:92:97:77:f1:45:90:4a:f3:8d:5d:50:9f:66:b5:e2:c5:8f:cd:b5:31:05:8b:0e:17:f3:f0:b4:1b +-----BEGIN CERTIFICATE----- +MIIDTDCCAjSgAwIBAgIIfE8EORzUmS0wDQYJKoZIhvcNAQEFBQAwRDELMAkGA1UE +BhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MR8wHQYDVQQDDBZBZmZpcm1UcnVz +dCBOZXR3b3JraW5nMB4XDTEwMDEyOTE0MDgyNFoXDTMwMTIzMTE0MDgyNFowRDEL +MAkGA1UEBhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MR8wHQYDVQQDDBZBZmZp +cm1UcnVzdCBOZXR3b3JraW5nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKC +AQEAtITMMxcua5Rsa2FSoOujz3mUTOWUgJnLVWREZY9nZOIG41w3SfYvm4SEHi3y +YJ0wTsyEheIszx6e/jarM3c1RNg1lho9Nuh6DtjVR6FqaYvZ/Ls6rnla1fTWcbua +kCNrmreIdIcMHl+5ni36q1Mr3Lt2PpNMCAiMHqIjHNRqrSK6mQEubWXLviRmVSRL +QESxG9fhwoXA3hA/Pe24/PHxI1Pcv2WXb9n5QHGNfb2V1M6+oF4nI979ptAmDgAp +6zxG8D1gvz9Q0twmQVGeFDdCBKNwV6gbh+0t+nvujArjqWaJGctB+d1ENmHP4ndG +yH329JKBNv3bNPFyfvMMFr20FQIDAQABo0IwQDAdBgNVHQ4EFgQUBx/S55zawm6i +QLSwelAQUHTEyL0wDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwDQYJ +KoZIhvcNAQEFBQADggEBAIlXshZ6qML91tmbmzTCnLQyFE2npN/svqe++EPbkTfO +tDIuUFUaNU52Q3Eg75N3ThVwLofDwR1t3Mu1J9QsVtFSUzpE0nPIxBsFZVpikpzu +QY0x2+c06lkh1QF612S4ZDnNye2v7UsDSKegmQGA3GWjNq5lWUhPgkvIZfFXHeVZ +Lgo/bNjR9eUJtGxUAArgFU2HdW23WJZa3W3SAKD0m0i+wzekujbgfIeFlxoVot4u +olu9rxj5kFDNcFn4J2dHy8egBzp90SxdbBk6ZrV9/ZFvgrG+CJPbFEfxojfHRZ48 +x3evZKiT3/Zpg4Jg8klCNO1aAFSFHBY2kgxc+qatv9s= +-----END CERTIFICATE----- + +# Issuer: CN=AffirmTrust Premium O=AffirmTrust +# Subject: CN=AffirmTrust Premium O=AffirmTrust +# Label: "AffirmTrust Premium" +# Serial: 7893706540734352110 +# MD5 Fingerprint: c4:5d:0e:48:b6:ac:28:30:4e:0a:bc:f9:38:16:87:57 +# SHA1 Fingerprint: d8:a6:33:2c:e0:03:6f:b1:85:f6:63:4f:7d:6a:06:65:26:32:28:27 +# SHA256 Fingerprint: 70:a7:3f:7f:37:6b:60:07:42:48:90:45:34:b1:14:82:d5:bf:0e:69:8e:cc:49:8d:f5:25:77:eb:f2:e9:3b:9a +-----BEGIN CERTIFICATE----- +MIIFRjCCAy6gAwIBAgIIbYwURrGmCu4wDQYJKoZIhvcNAQEMBQAwQTELMAkGA1UE +BhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MRwwGgYDVQQDDBNBZmZpcm1UcnVz +dCBQcmVtaXVtMB4XDTEwMDEyOTE0MTAzNloXDTQwMTIzMTE0MTAzNlowQTELMAkG +A1UEBhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MRwwGgYDVQQDDBNBZmZpcm1U +cnVzdCBQcmVtaXVtMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAxBLf +qV/+Qd3d9Z+K4/as4Tx4mrzY8H96oDMq3I0gW64tb+eT2TZwamjPjlGjhVtnBKAQ +JG9dKILBl1fYSCkTtuG+kU3fhQxTGJoeJKJPj/CihQvL9Cl/0qRY7iZNyaqoe5rZ ++jjeRFcV5fiMyNlI4g0WJx0eyIOFJbe6qlVBzAMiSy2RjYvmia9mx+n/K+k8rNrS +s8PhaJyJ+HoAVt70VZVs+7pk3WKL3wt3MutizCaam7uqYoNMtAZ6MMgpv+0GTZe5 +HMQxK9VfvFMSF5yZVylmd2EhMQcuJUmdGPLu8ytxjLW6OQdJd/zvLpKQBY0tL3d7 +70O/Nbua2Plzpyzy0FfuKE4mX4+QaAkvuPjcBukumj5Rp9EixAqnOEhss/n/fauG +V+O61oV4d7pD6kh/9ti+I20ev9E2bFhc8e6kGVQa9QPSdubhjL08s9NIS+LI+H+S +qHZGnEJlPqQewQcDWkYtuJfzt9WyVSHvutxMAJf7FJUnM7/oQ0dG0giZFmA7mn7S +5u046uwBHjxIVkkJx0w3AJ6IDsBz4W9m6XJHMD4Q5QsDyZpCAGzFlH5hxIrff4Ia +C1nEWTJ3s7xgaVY5/bQGeyzWZDbZvUjthB9+pSKPKrhC9IK31FOQeE4tGv2Bb0TX +OwF0lkLgAOIua+rF7nKsu7/+6qqo+Nz2snmKtmcCAwEAAaNCMEAwHQYDVR0OBBYE +FJ3AZ6YMItkm9UWrpmVSESfYRaxjMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/ +BAQDAgEGMA0GCSqGSIb3DQEBDAUAA4ICAQCzV00QYk465KzquByvMiPIs0laUZx2 +KI15qldGF9X1Uva3ROgIRL8YhNILgM3FEv0AVQVhh0HctSSePMTYyPtwni94loMg +Nt58D2kTiKV1NpgIpsbfrM7jWNa3Pt668+s0QNiigfV4Py/VpfzZotReBA4Xrf5B +8OWycvpEgjNC6C1Y91aMYj+6QrCcDFx+LmUmXFNPALJ4fqENmS2NuB2OosSw/WDQ +MKSOyARiqcTtNd56l+0OOF6SL5Nwpamcb6d9Ex1+xghIsV5n61EIJenmJWtSKZGc +0jlzCFfemQa0W50QBuHCAKi4HEoCChTQwUHK+4w1IX2COPKpVJEZNZOUbWo6xbLQ +u4mGk+ibyQ86p3q4ofB4Rvr8Ny/lioTz3/4E2aFooC8k4gmVBtWVyuEklut89pMF +u+1z6S3RdTnX5yTb2E5fQ4+e0BQ5v1VwSJlXMbSc7kqYA5YwH2AG7hsj/oFgIxpH +YoWlzBk0gG+zrBrjn/B7SK3VAdlntqlyk+otZrWyuOQ9PLLvTIzq6we/qzWaVYa8 +GKa1qF60g2xraUDTn9zxw2lrueFtCfTxqlB2Cnp9ehehVZZCmTEJ3WARjQUwfuaO +RtGdFNrHF+QFlozEJLUbzxQHskD4o55BhrwE0GuWyCqANP2/7waj3VjFhT0+j/6e +KeC2uAloGRwYQw== +-----END CERTIFICATE----- + +# Issuer: CN=AffirmTrust Premium ECC O=AffirmTrust +# Subject: CN=AffirmTrust Premium ECC O=AffirmTrust +# Label: "AffirmTrust Premium ECC" +# Serial: 8401224907861490260 +# MD5 Fingerprint: 64:b0:09:55:cf:b1:d5:99:e2:be:13:ab:a6:5d:ea:4d +# SHA1 Fingerprint: b8:23:6b:00:2f:1d:16:86:53:01:55:6c:11:a4:37:ca:eb:ff:c3:bb +# SHA256 Fingerprint: bd:71:fd:f6:da:97:e4:cf:62:d1:64:7a:dd:25:81:b0:7d:79:ad:f8:39:7e:b4:ec:ba:9c:5e:84:88:82:14:23 +-----BEGIN CERTIFICATE----- +MIIB/jCCAYWgAwIBAgIIdJclisc/elQwCgYIKoZIzj0EAwMwRTELMAkGA1UEBhMC +VVMxFDASBgNVBAoMC0FmZmlybVRydXN0MSAwHgYDVQQDDBdBZmZpcm1UcnVzdCBQ +cmVtaXVtIEVDQzAeFw0xMDAxMjkxNDIwMjRaFw00MDEyMzExNDIwMjRaMEUxCzAJ +BgNVBAYTAlVTMRQwEgYDVQQKDAtBZmZpcm1UcnVzdDEgMB4GA1UEAwwXQWZmaXJt +VHJ1c3QgUHJlbWl1bSBFQ0MwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAAQNMF4bFZ0D +0KF5Nbc6PJJ6yhUczWLznCZcBz3lVPqj1swS6vQUX+iOGasvLkjmrBhDeKzQN8O9 +ss0s5kfiGuZjuD0uL3jET9v0D6RoTFVya5UdThhClXjMNzyR4ptlKymjQjBAMB0G +A1UdDgQWBBSaryl6wBE1NSZRMADDav5A1a7WPDAPBgNVHRMBAf8EBTADAQH/MA4G +A1UdDwEB/wQEAwIBBjAKBggqhkjOPQQDAwNnADBkAjAXCfOHiFBar8jAQr9HX/Vs +aobgxCd05DhT1wV/GzTjxi+zygk8N53X57hG8f2h4nECMEJZh0PUUd+60wkyWs6I +flc9nF9Ca/UHLbXwgpP5WW+uZPpY5Yse42O+tYHNbwKMeQ== +-----END CERTIFICATE----- + +# Issuer: CN=Certum Trusted Network CA O=Unizeto Technologies S.A. OU=Certum Certification Authority +# Subject: CN=Certum Trusted Network CA O=Unizeto Technologies S.A. OU=Certum Certification Authority +# Label: "Certum Trusted Network CA" +# Serial: 279744 +# MD5 Fingerprint: d5:e9:81:40:c5:18:69:fc:46:2c:89:75:62:0f:aa:78 +# SHA1 Fingerprint: 07:e0:32:e0:20:b7:2c:3f:19:2f:06:28:a2:59:3a:19:a7:0f:06:9e +# SHA256 Fingerprint: 5c:58:46:8d:55:f5:8e:49:7e:74:39:82:d2:b5:00:10:b6:d1:65:37:4a:cf:83:a7:d4:a3:2d:b7:68:c4:40:8e +-----BEGIN CERTIFICATE----- +MIIDuzCCAqOgAwIBAgIDBETAMA0GCSqGSIb3DQEBBQUAMH4xCzAJBgNVBAYTAlBM +MSIwIAYDVQQKExlVbml6ZXRvIFRlY2hub2xvZ2llcyBTLkEuMScwJQYDVQQLEx5D +ZXJ0dW0gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkxIjAgBgNVBAMTGUNlcnR1bSBU +cnVzdGVkIE5ldHdvcmsgQ0EwHhcNMDgxMDIyMTIwNzM3WhcNMjkxMjMxMTIwNzM3 +WjB+MQswCQYDVQQGEwJQTDEiMCAGA1UEChMZVW5pemV0byBUZWNobm9sb2dpZXMg +Uy5BLjEnMCUGA1UECxMeQ2VydHVtIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MSIw +IAYDVQQDExlDZXJ0dW0gVHJ1c3RlZCBOZXR3b3JrIENBMIIBIjANBgkqhkiG9w0B +AQEFAAOCAQ8AMIIBCgKCAQEA4/t9o3K6wvDJFIf1awFO4W5AB7ptJ11/91sts1rH +UV+rpDKmYYe2bg+G0jACl/jXaVehGDldamR5xgFZrDwxSjh80gTSSyjoIF87B6LM +TXPb865Px1bVWqeWifrzq2jUI4ZZJ88JJ7ysbnKDHDBy3+Ci6dLhdHUZvSqeexVU +BBvXQzmtVSjF4hq79MDkrjhJM8x2hZ85RdKknvISjFH4fOQtf/WsX+sWn7Et0brM +kUJ3TCXJkDhv2/DM+44el1k+1WBO5gUo7Ul5E0u6SNsv+XLTOcr+H9g0cvW0QM8x +AcPs3hEtF10fuFDRXhmnad4HMyjKUJX5p1TLVIZQRan5SQIDAQABo0IwQDAPBgNV +HRMBAf8EBTADAQH/MB0GA1UdDgQWBBQIds3LB/8k9sXN7buQvOKEN0Z19zAOBgNV +HQ8BAf8EBAMCAQYwDQYJKoZIhvcNAQEFBQADggEBAKaorSLOAT2mo/9i0Eidi15y +sHhE49wcrwn9I0j6vSrEuVUEtRCjjSfeC4Jj0O7eDDd5QVsisrCaQVymcODU0HfL +I9MA4GxWL+FpDQ3Zqr8hgVDZBqWo/5U30Kr+4rP1mS1FhIrlQgnXdAIv94nYmem8 +J9RHjboNRhx3zxSkHLmkMcScKHQDNP8zGSal6Q10tz6XxnboJ5ajZt3hrvJBW8qY +VoNzcOSGGtIxQbovvi0TWnZvTuhOgQ4/WwMioBK+ZlgRSssDxLQqKi2WF+A5VLxI +03YnnZotBqbJ7DnSq9ufmgsnAjUpsUCV5/nonFWIGUbWtzT1fs45mtk48VH3Tyw= +-----END CERTIFICATE----- + +# Issuer: CN=TWCA Root Certification Authority O=TAIWAN-CA OU=Root CA +# Subject: CN=TWCA Root Certification Authority O=TAIWAN-CA OU=Root CA +# Label: "TWCA Root Certification Authority" +# Serial: 1 +# MD5 Fingerprint: aa:08:8f:f6:f9:7b:b7:f2:b1:a7:1e:9b:ea:ea:bd:79 +# SHA1 Fingerprint: cf:9e:87:6d:d3:eb:fc:42:26:97:a3:b5:a3:7a:a0:76:a9:06:23:48 +# SHA256 Fingerprint: bf:d8:8f:e1:10:1c:41:ae:3e:80:1b:f8:be:56:35:0e:e9:ba:d1:a6:b9:bd:51:5e:dc:5c:6d:5b:87:11:ac:44 +-----BEGIN CERTIFICATE----- +MIIDezCCAmOgAwIBAgIBATANBgkqhkiG9w0BAQUFADBfMQswCQYDVQQGEwJUVzES +MBAGA1UECgwJVEFJV0FOLUNBMRAwDgYDVQQLDAdSb290IENBMSowKAYDVQQDDCFU +V0NBIFJvb3QgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMDgwODI4MDcyNDMz +WhcNMzAxMjMxMTU1OTU5WjBfMQswCQYDVQQGEwJUVzESMBAGA1UECgwJVEFJV0FO +LUNBMRAwDgYDVQQLDAdSb290IENBMSowKAYDVQQDDCFUV0NBIFJvb3QgQ2VydGlm +aWNhdGlvbiBBdXRob3JpdHkwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB +AQCwfnK4pAOU5qfeCTiRShFAh6d8WWQUe7UREN3+v9XAu1bihSX0NXIP+FPQQeFE +AcK0HMMxQhZHhTMidrIKbw/lJVBPhYa+v5guEGcevhEFhgWQxFnQfHgQsIBct+HH +K3XLfJ+utdGdIzdjp9xCoi2SBBtQwXu4PhvJVgSLL1KbralW6cH/ralYhzC2gfeX +RfwZVzsrb+RH9JlF/h3x+JejiB03HFyP4HYlmlD4oFT/RJB2I9IyxsOrBr/8+7/z +rX2SYgJbKdM1o5OaQ2RgXbL6Mv87BK9NQGr5x+PvI/1ry+UPizgN7gr8/g+YnzAx +3WxSZfmLgb4i4RxYA7qRG4kHAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNV +HRMBAf8EBTADAQH/MB0GA1UdDgQWBBRqOFsmjd6LWvJPelSDGRjjCDWmujANBgkq +hkiG9w0BAQUFAAOCAQEAPNV3PdrfibqHDAhUaiBQkr6wQT25JmSDCi/oQMCXKCeC +MErJk/9q56YAf4lCmtYR5VPOL8zy2gXE/uJQxDqGfczafhAJO5I1KlOy/usrBdls +XebQ79NqZp4VKIV66IIArB6nCWlWQtNoURi+VJq/REG6Sb4gumlc7rh3zc5sH62D +lhh9DrUUOYTxKOkto557HnpyWoOzeW/vtPzQCqVYT0bf+215WfKEIlKuD8z7fDvn +aspHYcN6+NOSBB+4IIThNlQWx0DeO4pz3N/GCUzf7Nr/1FNCocnyYh0igzyXxfkZ +YiesZSLX0zzG5Y6yU8xJzrww/nsOM5D77dIUkR8Hrw== +-----END CERTIFICATE----- + +# Issuer: O=SECOM Trust Systems CO.,LTD. OU=Security Communication RootCA2 +# Subject: O=SECOM Trust Systems CO.,LTD. OU=Security Communication RootCA2 +# Label: "Security Communication RootCA2" +# Serial: 0 +# MD5 Fingerprint: 6c:39:7d:a4:0e:55:59:b2:3f:d6:41:b1:12:50:de:43 +# SHA1 Fingerprint: 5f:3b:8c:f2:f8:10:b3:7d:78:b4:ce:ec:19:19:c3:73:34:b9:c7:74 +# SHA256 Fingerprint: 51:3b:2c:ec:b8:10:d4:cd:e5:dd:85:39:1a:df:c6:c2:dd:60:d8:7b:b7:36:d2:b5:21:48:4a:a4:7a:0e:be:f6 +-----BEGIN CERTIFICATE----- +MIIDdzCCAl+gAwIBAgIBADANBgkqhkiG9w0BAQsFADBdMQswCQYDVQQGEwJKUDEl +MCMGA1UEChMcU0VDT00gVHJ1c3QgU3lzdGVtcyBDTy4sTFRELjEnMCUGA1UECxMe +U2VjdXJpdHkgQ29tbXVuaWNhdGlvbiBSb290Q0EyMB4XDTA5MDUyOTA1MDAzOVoX +DTI5MDUyOTA1MDAzOVowXTELMAkGA1UEBhMCSlAxJTAjBgNVBAoTHFNFQ09NIFRy +dXN0IFN5c3RlbXMgQ08uLExURC4xJzAlBgNVBAsTHlNlY3VyaXR5IENvbW11bmlj +YXRpb24gUm9vdENBMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANAV +OVKxUrO6xVmCxF1SrjpDZYBLx/KWvNs2l9amZIyoXvDjChz335c9S672XewhtUGr +zbl+dp+++T42NKA7wfYxEUV0kz1XgMX5iZnK5atq1LXaQZAQwdbWQonCv/Q4EpVM +VAX3NuRFg3sUZdbcDE3R3n4MqzvEFb46VqZab3ZpUql6ucjrappdUtAtCms1FgkQ +hNBqyjoGADdH5H5XTz+L62e4iKrFvlNVspHEfbmwhRkGeC7bYRr6hfVKkaHnFtWO +ojnflLhwHyg/i/xAXmODPIMqGplrz95Zajv8bxbXH/1KEOtOghY6rCcMU/Gt1SSw +awNQwS08Ft1ENCcadfsCAwEAAaNCMEAwHQYDVR0OBBYEFAqFqXdlBZh8QIH4D5cs +OPEK7DzPMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3 +DQEBCwUAA4IBAQBMOqNErLlFsceTfsgLCkLfZOoc7llsCLqJX2rKSpWeeo8HxdpF +coJxDjrSzG+ntKEju/Ykn8sX/oymzsLS28yN/HH8AynBbF0zX2S2ZTuJbxh2ePXc +okgfGT+Ok+vx+hfuzU7jBBJV1uXk3fs+BXziHV7Gp7yXT2g69ekuCkO2r1dcYmh8 +t/2jioSgrGK+KwmHNPBqAbubKVY8/gA3zyNs8U6qtnRGEmyR7jTV7JqR50S+kDFy +1UkC9gLl9B/rfNmWVan/7Ir5mUf/NVoCqgTLiluHcSmRvaS0eg29mvVXIwAHIRc/ +SjnRBUkLp7Y3gaVdjKozXoEofKd9J+sAro03 +-----END CERTIFICATE----- + +# Issuer: CN=EC-ACC O=Agencia Catalana de Certificacio (NIF Q-0801176-I) OU=Serveis Publics de Certificacio/Vegeu https://www.catcert.net/verarrel (c)03/Jerarquia Entitats de Certificacio Catalanes +# Subject: CN=EC-ACC O=Agencia Catalana de Certificacio (NIF Q-0801176-I) OU=Serveis Publics de Certificacio/Vegeu https://www.catcert.net/verarrel (c)03/Jerarquia Entitats de Certificacio Catalanes +# Label: "EC-ACC" +# Serial: -23701579247955709139626555126524820479 +# MD5 Fingerprint: eb:f5:9d:29:0d:61:f9:42:1f:7c:c2:ba:6d:e3:15:09 +# SHA1 Fingerprint: 28:90:3a:63:5b:52:80:fa:e6:77:4c:0b:6d:a7:d6:ba:a6:4a:f2:e8 +# SHA256 Fingerprint: 88:49:7f:01:60:2f:31:54:24:6a:e2:8c:4d:5a:ef:10:f1:d8:7e:bb:76:62:6f:4a:e0:b7:f9:5b:a7:96:87:99 +-----BEGIN CERTIFICATE----- +MIIFVjCCBD6gAwIBAgIQ7is969Qh3hSoYqwE893EATANBgkqhkiG9w0BAQUFADCB +8zELMAkGA1UEBhMCRVMxOzA5BgNVBAoTMkFnZW5jaWEgQ2F0YWxhbmEgZGUgQ2Vy +dGlmaWNhY2lvIChOSUYgUS0wODAxMTc2LUkpMSgwJgYDVQQLEx9TZXJ2ZWlzIFB1 +YmxpY3MgZGUgQ2VydGlmaWNhY2lvMTUwMwYDVQQLEyxWZWdldSBodHRwczovL3d3 +dy5jYXRjZXJ0Lm5ldC92ZXJhcnJlbCAoYykwMzE1MDMGA1UECxMsSmVyYXJxdWlh +IEVudGl0YXRzIGRlIENlcnRpZmljYWNpbyBDYXRhbGFuZXMxDzANBgNVBAMTBkVD +LUFDQzAeFw0wMzAxMDcyMzAwMDBaFw0zMTAxMDcyMjU5NTlaMIHzMQswCQYDVQQG +EwJFUzE7MDkGA1UEChMyQWdlbmNpYSBDYXRhbGFuYSBkZSBDZXJ0aWZpY2FjaW8g +KE5JRiBRLTA4MDExNzYtSSkxKDAmBgNVBAsTH1NlcnZlaXMgUHVibGljcyBkZSBD +ZXJ0aWZpY2FjaW8xNTAzBgNVBAsTLFZlZ2V1IGh0dHBzOi8vd3d3LmNhdGNlcnQu +bmV0L3ZlcmFycmVsIChjKTAzMTUwMwYDVQQLEyxKZXJhcnF1aWEgRW50aXRhdHMg +ZGUgQ2VydGlmaWNhY2lvIENhdGFsYW5lczEPMA0GA1UEAxMGRUMtQUNDMIIBIjAN +BgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsyLHT+KXQpWIR4NA9h0X84NzJB5R +85iKw5K4/0CQBXCHYMkAqbWUZRkiFRfCQ2xmRJoNBD45b6VLeqpjt4pEndljkYRm +4CgPukLjbo73FCeTae6RDqNfDrHrZqJyTxIThmV6PttPB/SnCWDaOkKZx7J/sxaV +HMf5NLWUhdWZXqBIoH7nF2W4onW4HvPlQn2v7fOKSGRdghST2MDk/7NQcvJ29rNd +QlB50JQ+awwAvthrDk4q7D7SzIKiGGUzE3eeml0aE9jD2z3Il3rucO2n5nzbcc8t +lGLfbdb1OL4/pYUKGbio2Al1QnDE6u/LDsg0qBIimAy4E5S2S+zw0JDnJwIDAQAB +o4HjMIHgMB0GA1UdEQQWMBSBEmVjX2FjY0BjYXRjZXJ0Lm5ldDAPBgNVHRMBAf8E +BTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUoMOLRKo3pUW/l4Ba0fF4 +opvpXY0wfwYDVR0gBHgwdjB0BgsrBgEEAfV4AQMBCjBlMCwGCCsGAQUFBwIBFiBo +dHRwczovL3d3dy5jYXRjZXJ0Lm5ldC92ZXJhcnJlbDA1BggrBgEFBQcCAjApGidW +ZWdldSBodHRwczovL3d3dy5jYXRjZXJ0Lm5ldC92ZXJhcnJlbCAwDQYJKoZIhvcN +AQEFBQADggEBAKBIW4IB9k1IuDlVNZyAelOZ1Vr/sXE7zDkJlF7W2u++AVtd0x7Y +/X1PzaBB4DSTv8vihpw3kpBWHNzrKQXlxJ7HNd+KDM3FIUPpqojlNcAZQmNaAl6k +SBg6hW/cnbw/nZzBh7h6YQjpdwt/cKt63dmXLGQehb+8dJahw3oS7AwaboMMPOhy +Rp/7SNVel+axofjk70YllJyJ22k4vuxcDlbHZVHlUIiIv0LVKz3l+bqeLrPK9HOS +Agu+TGbrIP65y7WZf+a2E/rKS03Z7lNGBjvGTq2TWoF+bCpLagVFjPIhpDGQh2xl +nJ2lYJU6Un/10asIbvPuW/mIPX64b24D5EI= +-----END CERTIFICATE----- + +# Issuer: CN=Hellenic Academic and Research Institutions RootCA 2011 O=Hellenic Academic and Research Institutions Cert. Authority +# Subject: CN=Hellenic Academic and Research Institutions RootCA 2011 O=Hellenic Academic and Research Institutions Cert. Authority +# Label: "Hellenic Academic and Research Institutions RootCA 2011" +# Serial: 0 +# MD5 Fingerprint: 73:9f:4c:4b:73:5b:79:e9:fa:ba:1c:ef:6e:cb:d5:c9 +# SHA1 Fingerprint: fe:45:65:9b:79:03:5b:98:a1:61:b5:51:2e:ac:da:58:09:48:22:4d +# SHA256 Fingerprint: bc:10:4f:15:a4:8b:e7:09:dc:a5:42:a7:e1:d4:b9:df:6f:05:45:27:e8:02:ea:a9:2d:59:54:44:25:8a:fe:71 +-----BEGIN CERTIFICATE----- +MIIEMTCCAxmgAwIBAgIBADANBgkqhkiG9w0BAQUFADCBlTELMAkGA1UEBhMCR1Ix +RDBCBgNVBAoTO0hlbGxlbmljIEFjYWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1 +dGlvbnMgQ2VydC4gQXV0aG9yaXR5MUAwPgYDVQQDEzdIZWxsZW5pYyBBY2FkZW1p +YyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIFJvb3RDQSAyMDExMB4XDTExMTIw +NjEzNDk1MloXDTMxMTIwMTEzNDk1MlowgZUxCzAJBgNVBAYTAkdSMUQwQgYDVQQK +EztIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENl +cnQuIEF1dGhvcml0eTFAMD4GA1UEAxM3SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJl +c2VhcmNoIEluc3RpdHV0aW9ucyBSb290Q0EgMjAxMTCCASIwDQYJKoZIhvcNAQEB +BQADggEPADCCAQoCggEBAKlTAOMupvaO+mDYLZU++CwqVE7NuYRhlFhPjz2L5EPz +dYmNUeTDN9KKiE15HrcS3UN4SoqS5tdI1Q+kOilENbgH9mgdVc04UfCMJDGFr4PJ +fel3r+0ae50X+bOdOFAPplp5kYCvN66m0zH7tSYJnTxa71HFK9+WXesyHgLacEns +bgzImjeN9/E2YEsmLIKe0HjzDQ9jpFEw4fkrJxIH2Oq9GGKYsFk3fb7u8yBRQlqD +75O6aRXxYp2fmTmCobd0LovUxQt7L/DICto9eQqakxylKHJzkUOap9FNhYS5qXSP +FEDH3N6sQWRstBmbAmNtJGSPRLIl6s5ddAxjMlyNh+UCAwEAAaOBiTCBhjAPBgNV +HRMBAf8EBTADAQH/MAsGA1UdDwQEAwIBBjAdBgNVHQ4EFgQUppFC/RNhSiOeCKQp +5dgTBCPuQSUwRwYDVR0eBEAwPqA8MAWCAy5ncjAFggMuZXUwBoIELmVkdTAGggQu +b3JnMAWBAy5ncjAFgQMuZXUwBoEELmVkdTAGgQQub3JnMA0GCSqGSIb3DQEBBQUA +A4IBAQAf73lB4XtuP7KMhjdCSk4cNx6NZrokgclPEg8hwAOXhiVtXdMiKahsog2p +6z0GW5k6x8zDmjR/qw7IThzh+uTczQ2+vyT+bOdrwg3IBp5OjWEopmr95fZi6hg8 +TqBTnbI6nOulnJEWtk2C4AwFSKls9cz4y51JtPACpf1wA+2KIaWuE4ZJwzNzvoc7 +dIsXRSZMFpGD/md9zU1jZ/rzAxKWeAaNsWftjj++n08C9bMJL/NMh98qy5V8Acys +Nnq/onN694/BtZqhFLKPM58N7yLcZnuEvUUXBj08yrl3NI/K6s8/MT7jiOOASSXI +l7WdmplNsDz4SgCbZN2fOUvRJ9e4 +-----END CERTIFICATE----- + +# Issuer: CN=Actalis Authentication Root CA O=Actalis S.p.A./03358520967 +# Subject: CN=Actalis Authentication Root CA O=Actalis S.p.A./03358520967 +# Label: "Actalis Authentication Root CA" +# Serial: 6271844772424770508 +# MD5 Fingerprint: 69:c1:0d:4f:07:a3:1b:c3:fe:56:3d:04:bc:11:f6:a6 +# SHA1 Fingerprint: f3:73:b3:87:06:5a:28:84:8a:f2:f3:4a:ce:19:2b:dd:c7:8e:9c:ac +# SHA256 Fingerprint: 55:92:60:84:ec:96:3a:64:b9:6e:2a:be:01:ce:0b:a8:6a:64:fb:fe:bc:c7:aa:b5:af:c1:55:b3:7f:d7:60:66 +-----BEGIN CERTIFICATE----- +MIIFuzCCA6OgAwIBAgIIVwoRl0LE48wwDQYJKoZIhvcNAQELBQAwazELMAkGA1UE +BhMCSVQxDjAMBgNVBAcMBU1pbGFuMSMwIQYDVQQKDBpBY3RhbGlzIFMucC5BLi8w +MzM1ODUyMDk2NzEnMCUGA1UEAwweQWN0YWxpcyBBdXRoZW50aWNhdGlvbiBSb290 +IENBMB4XDTExMDkyMjExMjIwMloXDTMwMDkyMjExMjIwMlowazELMAkGA1UEBhMC +SVQxDjAMBgNVBAcMBU1pbGFuMSMwIQYDVQQKDBpBY3RhbGlzIFMucC5BLi8wMzM1 +ODUyMDk2NzEnMCUGA1UEAwweQWN0YWxpcyBBdXRoZW50aWNhdGlvbiBSb290IENB +MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAp8bEpSmkLO/lGMWwUKNv +UTufClrJwkg4CsIcoBh/kbWHuUA/3R1oHwiD1S0eiKD4j1aPbZkCkpAW1V8IbInX +4ay8IMKx4INRimlNAJZaby/ARH6jDuSRzVju3PvHHkVH3Se5CAGfpiEd9UEtL0z9 +KK3giq0itFZljoZUj5NDKd45RnijMCO6zfB9E1fAXdKDa0hMxKufgFpbOr3JpyI/ +gCczWw63igxdBzcIy2zSekciRDXFzMwujt0q7bd9Zg1fYVEiVRvjRuPjPdA1Yprb +rxTIW6HMiRvhMCb8oJsfgadHHwTrozmSBp+Z07/T6k9QnBn+locePGX2oxgkg4YQ +51Q+qDp2JE+BIcXjDwL4k5RHILv+1A7TaLndxHqEguNTVHnd25zS8gebLra8Pu2F +be8lEfKXGkJh90qX6IuxEAf6ZYGyojnP9zz/GPvG8VqLWeICrHuS0E4UT1lF9gxe +KF+w6D9Fz8+vm2/7hNN3WpVvrJSEnu68wEqPSpP4RCHiMUVhUE4Q2OM1fEwZtN4F +v6MGn8i1zeQf1xcGDXqVdFUNaBr8EBtiZJ1t4JWgw5QHVw0U5r0F+7if5t+L4sbn +fpb2U8WANFAoWPASUHEXMLrmeGO89LKtmyuy/uE5jF66CyCU3nuDuP/jVo23Eek7 +jPKxwV2dpAtMK9myGPW1n0sCAwEAAaNjMGEwHQYDVR0OBBYEFFLYiDrIn3hm7Ynz +ezhwlMkCAjbQMA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAUUtiIOsifeGbt +ifN7OHCUyQICNtAwDgYDVR0PAQH/BAQDAgEGMA0GCSqGSIb3DQEBCwUAA4ICAQAL +e3KHwGCmSUyIWOYdiPcUZEim2FgKDk8TNd81HdTtBjHIgT5q1d07GjLukD0R0i70 +jsNjLiNmsGe+b7bAEzlgqqI0JZN1Ut6nna0Oh4lScWoWPBkdg/iaKWW+9D+a2fDz +WochcYBNy+A4mz+7+uAwTc+G02UQGRjRlwKxK3JCaKygvU5a2hi/a5iB0P2avl4V +SM0RFbnAKVy06Ij3Pjaut2L9HmLecHgQHEhb2rykOLpn7VU+Xlff1ANATIGk0k9j +pwlCCRT8AKnCgHNPLsBA2RF7SOp6AsDT6ygBJlh0wcBzIm2Tlf05fbsq4/aC4yyX +X04fkZT6/iyj2HYauE2yOE+b+h1IYHkm4vP9qdCa6HCPSXrW5b0KDtst842/6+Ok +fcvHlXHo2qN8xcL4dJIEG4aspCJTQLas/kx2z/uUMsA1n3Y/buWQbqCmJqK4LL7R +K4X9p2jIugErsWx0Hbhzlefut8cl8ABMALJ+tguLHPPAUJ4lueAI3jZm/zel0btU +ZCzJJ7VLkn5l/9Mt4blOvH+kQSGQQXemOR/qnuOf0GZvBeyqdn6/axag67XH/JJU +LysRJyU3eExRarDzzFhdFPFqSBX/wge2sY0PjlxQRrM9vwGYT7JZVEc+NHt4bVaT +LnPqZih4zR0Uv6CPLy64Lo7yFIrM6bV8+2ydDKXhlg== +-----END CERTIFICATE----- + +# Issuer: CN=Buypass Class 2 Root CA O=Buypass AS-983163327 +# Subject: CN=Buypass Class 2 Root CA O=Buypass AS-983163327 +# Label: "Buypass Class 2 Root CA" +# Serial: 2 +# MD5 Fingerprint: 46:a7:d2:fe:45:fb:64:5a:a8:59:90:9b:78:44:9b:29 +# SHA1 Fingerprint: 49:0a:75:74:de:87:0a:47:fe:58:ee:f6:c7:6b:eb:c6:0b:12:40:99 +# SHA256 Fingerprint: 9a:11:40:25:19:7c:5b:b9:5d:94:e6:3d:55:cd:43:79:08:47:b6:46:b2:3c:df:11:ad:a4:a0:0e:ff:15:fb:48 +-----BEGIN CERTIFICATE----- +MIIFWTCCA0GgAwIBAgIBAjANBgkqhkiG9w0BAQsFADBOMQswCQYDVQQGEwJOTzEd +MBsGA1UECgwUQnV5cGFzcyBBUy05ODMxNjMzMjcxIDAeBgNVBAMMF0J1eXBhc3Mg +Q2xhc3MgMiBSb290IENBMB4XDTEwMTAyNjA4MzgwM1oXDTQwMTAyNjA4MzgwM1ow +TjELMAkGA1UEBhMCTk8xHTAbBgNVBAoMFEJ1eXBhc3MgQVMtOTgzMTYzMzI3MSAw +HgYDVQQDDBdCdXlwYXNzIENsYXNzIDIgUm9vdCBDQTCCAiIwDQYJKoZIhvcNAQEB +BQADggIPADCCAgoCggIBANfHXvfBB9R3+0Mh9PT1aeTuMgHbo4Yf5FkNuud1g1Lr +6hxhFUi7HQfKjK6w3Jad6sNgkoaCKHOcVgb/S2TwDCo3SbXlzwx87vFKu3MwZfPV +L4O2fuPn9Z6rYPnT8Z2SdIrkHJasW4DptfQxh6NR/Md+oW+OU3fUl8FVM5I+GC91 +1K2GScuVr1QGbNgGE41b/+EmGVnAJLqBcXmQRFBoJJRfuLMR8SlBYaNByyM21cHx +MlAQTn/0hpPshNOOvEu/XAFOBz3cFIqUCqTqc/sLUegTBxj6DvEr0VQVfTzh97QZ +QmdiXnfgolXsttlpF9U6r0TtSsWe5HonfOV116rLJeffawrbD02TTqigzXsu8lkB +arcNuAeBfos4GzjmCleZPe4h6KP1DBbdi+w0jpwqHAAVF41og9JwnxgIzRFo1clr +Us3ERo/ctfPYV3Me6ZQ5BL/T3jjetFPsaRyifsSP5BtwrfKi+fv3FmRmaZ9JUaLi +FRhnBkp/1Wy1TbMz4GHrXb7pmA8y1x1LPC5aAVKRCfLf6o3YBkBjqhHk/sM3nhRS +P/TizPJhk9H9Z2vXUq6/aKtAQ6BXNVN48FP4YUIHZMbXb5tMOA1jrGKvNouicwoN +9SG9dKpN6nIDSdvHXx1iY8f93ZHsM+71bbRuMGjeyNYmsHVee7QHIJihdjK4TWxP +AgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFMmAd+BikoL1Rpzz +uvdMw964o605MA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQsFAAOCAgEAU18h +9bqwOlI5LJKwbADJ784g7wbylp7ppHR/ehb8t/W2+xUbP6umwHJdELFx7rxP462s +A20ucS6vxOOto70MEae0/0qyexAQH6dXQbLArvQsWdZHEIjzIVEpMMpghq9Gqx3t +OluwlN5E40EIosHsHdb9T7bWR9AUC8rmyrV7d35BH16Dx7aMOZawP5aBQW9gkOLo ++fsicdl9sz1Gv7SEr5AcD48Saq/v7h56rgJKihcrdv6sVIkkLE8/trKnToyokZf7 +KcZ7XC25y2a2t6hbElGFtQl+Ynhw/qlqYLYdDnkM/crqJIByw5c/8nerQyIKx+u2 +DISCLIBrQYoIwOula9+ZEsuK1V6ADJHgJgg2SMX6OBE1/yWDLfJ6v9r9jv6ly0Us +H8SIU653DtmadsWOLB2jutXsMq7Aqqz30XpN69QH4kj3Io6wpJ9qzo6ysmD0oyLQ +I+uUWnpp3Q+/QFesa1lQ2aOZ4W7+jQF5JyMV3pKdewlNWudLSDBaGOYKbeaP4NK7 +5t98biGCwWg5TbSYWGZizEqQXsP6JwSxeRV0mcy+rSDeJmAc61ZRpqPq5KM/p/9h +3PFaTWwyI0PurKju7koSCTxdccK+efrCh2gdC/1cacwG0Jp9VJkqyTkaGa9LKkPz +Y11aWOIv4x3kqdbQCtCev9eBCfHJxyYNrJgWVqA= +-----END CERTIFICATE----- + +# Issuer: CN=Buypass Class 3 Root CA O=Buypass AS-983163327 +# Subject: CN=Buypass Class 3 Root CA O=Buypass AS-983163327 +# Label: "Buypass Class 3 Root CA" +# Serial: 2 +# MD5 Fingerprint: 3d:3b:18:9e:2c:64:5a:e8:d5:88:ce:0e:f9:37:c2:ec +# SHA1 Fingerprint: da:fa:f7:fa:66:84:ec:06:8f:14:50:bd:c7:c2:81:a5:bc:a9:64:57 +# SHA256 Fingerprint: ed:f7:eb:bc:a2:7a:2a:38:4d:38:7b:7d:40:10:c6:66:e2:ed:b4:84:3e:4c:29:b4:ae:1d:5b:93:32:e6:b2:4d +-----BEGIN CERTIFICATE----- +MIIFWTCCA0GgAwIBAgIBAjANBgkqhkiG9w0BAQsFADBOMQswCQYDVQQGEwJOTzEd +MBsGA1UECgwUQnV5cGFzcyBBUy05ODMxNjMzMjcxIDAeBgNVBAMMF0J1eXBhc3Mg +Q2xhc3MgMyBSb290IENBMB4XDTEwMTAyNjA4Mjg1OFoXDTQwMTAyNjA4Mjg1OFow +TjELMAkGA1UEBhMCTk8xHTAbBgNVBAoMFEJ1eXBhc3MgQVMtOTgzMTYzMzI3MSAw +HgYDVQQDDBdCdXlwYXNzIENsYXNzIDMgUm9vdCBDQTCCAiIwDQYJKoZIhvcNAQEB +BQADggIPADCCAgoCggIBAKXaCpUWUOOV8l6ddjEGMnqb8RB2uACatVI2zSRHsJ8Y +ZLya9vrVediQYkwiL944PdbgqOkcLNt4EemOaFEVcsfzM4fkoF0LXOBXByow9c3E +N3coTRiR5r/VUv1xLXA+58bEiuPwKAv0dpihi4dVsjoT/Lc+JzeOIuOoTyrvYLs9 +tznDDgFHmV0ST9tD+leh7fmdvhFHJlsTmKtdFoqwNxxXnUX/iJY2v7vKB3tvh2PX +0DJq1l1sDPGzbjniazEuOQAnFN44wOwZZoYS6J1yFhNkUsepNxz9gjDthBgd9K5c +/3ATAOux9TN6S9ZV+AWNS2mw9bMoNlwUxFFzTWsL8TQH2xc519woe2v1n/MuwU8X +KhDzzMro6/1rqy6any2CbgTUUgGTLT2G/H783+9CHaZr77kgxve9oKeV/afmiSTY +zIw0bOIjL9kSGiG5VZFvC5F5GQytQIgLcOJ60g7YaEi7ghM5EFjp2CoHxhLbWNvS +O1UQRwUVZ2J+GGOmRj8JDlQyXr8NYnon74Do29lLBlo3WiXQCBJ31G8JUJc9yB3D +34xFMFbG02SrZvPAXpacw8Tvw3xrizp5f7NJzz3iiZ+gMEuFuZyUJHmPfWupRWgP +K9Dx2hzLabjKSWJtyNBjYt1gD1iqj6G8BaVmos8bdrKEZLFMOVLAMLrwjEsCsLa3 +AgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFEe4zf/lb+74suwv +Tg75JbCOPGvDMA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQsFAAOCAgEAACAj +QTUEkMJAYmDv4jVM1z+s4jSQuKFvdvoWFqRINyzpkMLyPPgKn9iB5btb2iUspKdV +cSQy9sgL8rxq+JOssgfCX5/bzMiKqr5qb+FJEMwx14C7u8jYog5kV+qi9cKpMRXS +IGrs/CIBKM+GuIAeqcwRpTzyFrNHnfzSgCHEy9BHcEGhyoMZCCxt8l13nIoUE9Q2 +HJLw5QY33KbmkJs4j1xrG0aGQ0JfPgEHU1RdZX33inOhmlRaHylDFCfChQ+1iHsa +O5S3HWCntZznKWlXWpuTekMwGwPXYshApqr8ZORK15FTAaggiG6cX0S5y2CBNOxv +033aSF/rtJC8LakcC6wc1aJoIIAE1vyxjy+7SjENSoYc6+I2KSb12tjE8nVhz36u +dmNKekBlk4f4HoCMhuWG1o8O/FMsYOgWYRqiPkN7zTlgVGr18okmAWiDSKIz6MkE +kbIRNBE+6tBDGR8Dk5AM/1E9V/RBbuHLoL7ryWPNbczk+DaqaJ3tvV2XcEQNtg41 +3OEMXbugUZTLfhbrES+jkkXITHHZvMmZUldGL1DPvTVp9D0VzgalLA8+9oG6lLvD +u79leNKGef9JOxqDDPDeeOzI8k1MGt6CKfjBWtrt7uYnXuhF0J0cUahoq0Tj0Itq +4/g7u9xN12TyUb7mqqta6THuBrxzvxNiCp/HuZc= +-----END CERTIFICATE----- + +# Issuer: CN=T-TeleSec GlobalRoot Class 3 O=T-Systems Enterprise Services GmbH OU=T-Systems Trust Center +# Subject: CN=T-TeleSec GlobalRoot Class 3 O=T-Systems Enterprise Services GmbH OU=T-Systems Trust Center +# Label: "T-TeleSec GlobalRoot Class 3" +# Serial: 1 +# MD5 Fingerprint: ca:fb:40:a8:4e:39:92:8a:1d:fe:8e:2f:c4:27:ea:ef +# SHA1 Fingerprint: 55:a6:72:3e:cb:f2:ec:cd:c3:23:74:70:19:9d:2a:be:11:e3:81:d1 +# SHA256 Fingerprint: fd:73:da:d3:1c:64:4f:f1:b4:3b:ef:0c:cd:da:96:71:0b:9c:d9:87:5e:ca:7e:31:70:7a:f3:e9:6d:52:2b:bd +-----BEGIN CERTIFICATE----- +MIIDwzCCAqugAwIBAgIBATANBgkqhkiG9w0BAQsFADCBgjELMAkGA1UEBhMCREUx +KzApBgNVBAoMIlQtU3lzdGVtcyBFbnRlcnByaXNlIFNlcnZpY2VzIEdtYkgxHzAd +BgNVBAsMFlQtU3lzdGVtcyBUcnVzdCBDZW50ZXIxJTAjBgNVBAMMHFQtVGVsZVNl +YyBHbG9iYWxSb290IENsYXNzIDMwHhcNMDgxMDAxMTAyOTU2WhcNMzMxMDAxMjM1 +OTU5WjCBgjELMAkGA1UEBhMCREUxKzApBgNVBAoMIlQtU3lzdGVtcyBFbnRlcnBy +aXNlIFNlcnZpY2VzIEdtYkgxHzAdBgNVBAsMFlQtU3lzdGVtcyBUcnVzdCBDZW50 +ZXIxJTAjBgNVBAMMHFQtVGVsZVNlYyBHbG9iYWxSb290IENsYXNzIDMwggEiMA0G +CSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC9dZPwYiJvJK7genasfb3ZJNW4t/zN +8ELg63iIVl6bmlQdTQyK9tPPcPRStdiTBONGhnFBSivwKixVA9ZIw+A5OO3yXDw/ +RLyTPWGrTs0NvvAgJ1gORH8EGoel15YUNpDQSXuhdfsaa3Ox+M6pCSzyU9XDFES4 +hqX2iys52qMzVNn6chr3IhUciJFrf2blw2qAsCTz34ZFiP0Zf3WHHx+xGwpzJFu5 +ZeAsVMhg02YXP+HMVDNzkQI6pn97djmiH5a2OK61yJN0HZ65tOVgnS9W0eDrXltM +EnAMbEQgqxHY9Bn20pxSN+f6tsIxO0rUFJmtxxr1XV/6B7h8DR/Wgx6zAgMBAAGj +QjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBS1 +A/d2O2GCahKqGFPrAyGUv/7OyjANBgkqhkiG9w0BAQsFAAOCAQEAVj3vlNW92nOy +WL6ukK2YJ5f+AbGwUgC4TeQbIXQbfsDuXmkqJa9c1h3a0nnJ85cp4IaH3gRZD/FZ +1GSFS5mvJQQeyUapl96Cshtwn5z2r3Ex3XsFpSzTucpH9sry9uetuUg/vBa3wW30 +6gmv7PO15wWeph6KU1HWk4HMdJP2udqmJQV0eVp+QD6CSyYRMG7hP0HHRwA11fXT +91Q+gT3aSWqas+8QPebrb9HIIkfLzM8BMZLZGOMivgkeGj5asuRrDFR6fUNOuIml +e9eiPZaGzPImNC1qkp2aGtAw4l1OBLBfiyB+d8E9lYLRRpo7PHi4b6HQDWSieB4p +TpPDpFQUWw== +-----END CERTIFICATE----- + +# Issuer: CN=D-TRUST Root Class 3 CA 2 2009 O=D-Trust GmbH +# Subject: CN=D-TRUST Root Class 3 CA 2 2009 O=D-Trust GmbH +# Label: "D-TRUST Root Class 3 CA 2 2009" +# Serial: 623603 +# MD5 Fingerprint: cd:e0:25:69:8d:47:ac:9c:89:35:90:f7:fd:51:3d:2f +# SHA1 Fingerprint: 58:e8:ab:b0:36:15:33:fb:80:f7:9b:1b:6d:29:d3:ff:8d:5f:00:f0 +# SHA256 Fingerprint: 49:e7:a4:42:ac:f0:ea:62:87:05:00:54:b5:25:64:b6:50:e4:f4:9e:42:e3:48:d6:aa:38:e0:39:e9:57:b1:c1 +-----BEGIN CERTIFICATE----- +MIIEMzCCAxugAwIBAgIDCYPzMA0GCSqGSIb3DQEBCwUAME0xCzAJBgNVBAYTAkRF +MRUwEwYDVQQKDAxELVRydXN0IEdtYkgxJzAlBgNVBAMMHkQtVFJVU1QgUm9vdCBD +bGFzcyAzIENBIDIgMjAwOTAeFw0wOTExMDUwODM1NThaFw0yOTExMDUwODM1NTha +ME0xCzAJBgNVBAYTAkRFMRUwEwYDVQQKDAxELVRydXN0IEdtYkgxJzAlBgNVBAMM +HkQtVFJVU1QgUm9vdCBDbGFzcyAzIENBIDIgMjAwOTCCASIwDQYJKoZIhvcNAQEB +BQADggEPADCCAQoCggEBANOySs96R+91myP6Oi/WUEWJNTrGa9v+2wBoqOADER03 +UAifTUpolDWzU9GUY6cgVq/eUXjsKj3zSEhQPgrfRlWLJ23DEE0NkVJD2IfgXU42 +tSHKXzlABF9bfsyjxiupQB7ZNoTWSPOSHjRGICTBpFGOShrvUD9pXRl/RcPHAY9R +ySPocq60vFYJfxLLHLGvKZAKyVXMD9O0Gu1HNVpK7ZxzBCHQqr0ME7UAyiZsxGsM +lFqVlNpQmvH/pStmMaTJOKDfHR+4CS7zp+hnUquVH+BGPtikw8paxTGA6Eian5Rp +/hnd2HN8gcqW3o7tszIFZYQ05ub9VxC1X3a/L7AQDcUCAwEAAaOCARowggEWMA8G +A1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFP3aFMSfMN4hvR5COfyrYyNJ4PGEMA4G +A1UdDwEB/wQEAwIBBjCB0wYDVR0fBIHLMIHIMIGAoH6gfIZ6bGRhcDovL2RpcmVj +dG9yeS5kLXRydXN0Lm5ldC9DTj1ELVRSVVNUJTIwUm9vdCUyMENsYXNzJTIwMyUy +MENBJTIwMiUyMDIwMDksTz1ELVRydXN0JTIwR21iSCxDPURFP2NlcnRpZmljYXRl +cmV2b2NhdGlvbmxpc3QwQ6BBoD+GPWh0dHA6Ly93d3cuZC10cnVzdC5uZXQvY3Js +L2QtdHJ1c3Rfcm9vdF9jbGFzc18zX2NhXzJfMjAwOS5jcmwwDQYJKoZIhvcNAQEL +BQADggEBAH+X2zDI36ScfSF6gHDOFBJpiBSVYEQBrLLpME+bUMJm2H6NMLVwMeni +acfzcNsgFYbQDfC+rAF1hM5+n02/t2A7nPPKHeJeaNijnZflQGDSNiH+0LS4F9p0 +o3/U37CYAqxva2ssJSRyoWXuJVrl5jLn8t+rSfrzkGkj2wTZ51xY/GXUl77M/C4K +zCUqNQT4YJEVdT1B/yMfGchs64JTBKbkTCJNjYy6zltz7GRUUG3RnFX7acM2w4y8 +PIWmawomDeCTmGCufsYkl4phX5GOZpIJhzbNi5stPvZR1FDUWSi9g/LMKHtThm3Y +Johw1+qRzT65ysCQblrGXnRl11z+o+I= +-----END CERTIFICATE----- + +# Issuer: CN=D-TRUST Root Class 3 CA 2 EV 2009 O=D-Trust GmbH +# Subject: CN=D-TRUST Root Class 3 CA 2 EV 2009 O=D-Trust GmbH +# Label: "D-TRUST Root Class 3 CA 2 EV 2009" +# Serial: 623604 +# MD5 Fingerprint: aa:c6:43:2c:5e:2d:cd:c4:34:c0:50:4f:11:02:4f:b6 +# SHA1 Fingerprint: 96:c9:1b:0b:95:b4:10:98:42:fa:d0:d8:22:79:fe:60:fa:b9:16:83 +# SHA256 Fingerprint: ee:c5:49:6b:98:8c:e9:86:25:b9:34:09:2e:ec:29:08:be:d0:b0:f3:16:c2:d4:73:0c:84:ea:f1:f3:d3:48:81 +-----BEGIN CERTIFICATE----- +MIIEQzCCAyugAwIBAgIDCYP0MA0GCSqGSIb3DQEBCwUAMFAxCzAJBgNVBAYTAkRF +MRUwEwYDVQQKDAxELVRydXN0IEdtYkgxKjAoBgNVBAMMIUQtVFJVU1QgUm9vdCBD +bGFzcyAzIENBIDIgRVYgMjAwOTAeFw0wOTExMDUwODUwNDZaFw0yOTExMDUwODUw +NDZaMFAxCzAJBgNVBAYTAkRFMRUwEwYDVQQKDAxELVRydXN0IEdtYkgxKjAoBgNV +BAMMIUQtVFJVU1QgUm9vdCBDbGFzcyAzIENBIDIgRVYgMjAwOTCCASIwDQYJKoZI +hvcNAQEBBQADggEPADCCAQoCggEBAJnxhDRwui+3MKCOvXwEz75ivJn9gpfSegpn +ljgJ9hBOlSJzmY3aFS3nBfwZcyK3jpgAvDw9rKFs+9Z5JUut8Mxk2og+KbgPCdM0 +3TP1YtHhzRnp7hhPTFiu4h7WDFsVWtg6uMQYZB7jM7K1iXdODL/ZlGsTl28So/6Z +qQTMFexgaDbtCHu39b+T7WYxg4zGcTSHThfqr4uRjRxWQa4iN1438h3Z0S0NL2lR +p75mpoo6Kr3HGrHhFPC+Oh25z1uxav60sUYgovseO3Dvk5h9jHOW8sXvhXCtKSb8 +HgQ+HKDYD8tSg2J87otTlZCpV6LqYQXY+U3EJ/pure3511H3a6UCAwEAAaOCASQw +ggEgMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFNOUikxiEyoZLsyvcop9Ntea +HNxnMA4GA1UdDwEB/wQEAwIBBjCB3QYDVR0fBIHVMIHSMIGHoIGEoIGBhn9sZGFw +Oi8vZGlyZWN0b3J5LmQtdHJ1c3QubmV0L0NOPUQtVFJVU1QlMjBSb290JTIwQ2xh +c3MlMjAzJTIwQ0ElMjAyJTIwRVYlMjAyMDA5LE89RC1UcnVzdCUyMEdtYkgsQz1E +RT9jZXJ0aWZpY2F0ZXJldm9jYXRpb25saXN0MEagRKBChkBodHRwOi8vd3d3LmQt +dHJ1c3QubmV0L2NybC9kLXRydXN0X3Jvb3RfY2xhc3NfM19jYV8yX2V2XzIwMDku +Y3JsMA0GCSqGSIb3DQEBCwUAA4IBAQA07XtaPKSUiO8aEXUHL7P+PPoeUSbrh/Yp +3uDx1MYkCenBz1UbtDDZzhr+BlGmFaQt77JLvyAoJUnRpjZ3NOhk31KxEcdzes05 +nsKtjHEh8lprr988TlWvsoRlFIm5d8sqMb7Po23Pb0iUMkZv53GMoKaEGTcH8gNF +CSuGdXzfX2lXANtu2KZyIktQ1HWYVt+3GP9DQ1CuekR78HlR10M9p9OB0/DJT7na +xpeG0ILD5EJt/rDiZE4OJudANCa1CInXCGNjOCd1HjPqbqjdn5lPdE2BiYBL3ZqX +KVwvvoFBuYz/6n1gBp7N1z3TLqMVvKjmJuVvw9y4AyHqnxbxLFS1 +-----END CERTIFICATE----- + +# Issuer: CN=CA Disig Root R2 O=Disig a.s. +# Subject: CN=CA Disig Root R2 O=Disig a.s. +# Label: "CA Disig Root R2" +# Serial: 10572350602393338211 +# MD5 Fingerprint: 26:01:fb:d8:27:a7:17:9a:45:54:38:1a:43:01:3b:03 +# SHA1 Fingerprint: b5:61:eb:ea:a4:de:e4:25:4b:69:1a:98:a5:57:47:c2:34:c7:d9:71 +# SHA256 Fingerprint: e2:3d:4a:03:6d:7b:70:e9:f5:95:b1:42:20:79:d2:b9:1e:df:bb:1f:b6:51:a0:63:3e:aa:8a:9d:c5:f8:07:03 +-----BEGIN CERTIFICATE----- +MIIFaTCCA1GgAwIBAgIJAJK4iNuwisFjMA0GCSqGSIb3DQEBCwUAMFIxCzAJBgNV +BAYTAlNLMRMwEQYDVQQHEwpCcmF0aXNsYXZhMRMwEQYDVQQKEwpEaXNpZyBhLnMu +MRkwFwYDVQQDExBDQSBEaXNpZyBSb290IFIyMB4XDTEyMDcxOTA5MTUzMFoXDTQy +MDcxOTA5MTUzMFowUjELMAkGA1UEBhMCU0sxEzARBgNVBAcTCkJyYXRpc2xhdmEx +EzARBgNVBAoTCkRpc2lnIGEucy4xGTAXBgNVBAMTEENBIERpc2lnIFJvb3QgUjIw +ggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCio8QACdaFXS1tFPbCw3Oe +NcJxVX6B+6tGUODBfEl45qt5WDza/3wcn9iXAng+a0EE6UG9vgMsRfYvZNSrXaNH +PWSb6WiaxswbP7q+sos0Ai6YVRn8jG+qX9pMzk0DIaPY0jSTVpbLTAwAFjxfGs3I +x2ymrdMxp7zo5eFm1tL7A7RBZckQrg4FY8aAamkw/dLukO8NJ9+flXP04SXabBbe +QTg06ov80egEFGEtQX6sx3dOy1FU+16SGBsEWmjGycT6txOgmLcRK7fWV8x8nhfR +yyX+hk4kLlYMeE2eARKmK6cBZW58Yh2EhN/qwGu1pSqVg8NTEQxzHQuyRpDRQjrO +QG6Vrf/GlK1ul4SOfW+eioANSW1z4nuSHsPzwfPrLgVv2RvPN3YEyLRa5Beny912 +H9AZdugsBbPWnDTYltxhh5EF5EQIM8HauQhl1K6yNg3ruji6DOWbnuuNZt2Zz9aJ +QfYEkoopKW1rOhzndX0CcQ7zwOe9yxndnWCywmZgtrEE7snmhrmaZkCo5xHtgUUD +i/ZnWejBBhG93c+AAk9lQHhcR1DIm+YfgXvkRKhbhZri3lrVx/k6RGZL5DJUfORs +nLMOPReisjQS1n6yqEm70XooQL6iFh/f5DcfEXP7kAplQ6INfPgGAVUzfbANuPT1 +rqVCV3w2EYx7XsQDnYx5nQIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1Ud +DwEB/wQEAwIBBjAdBgNVHQ4EFgQUtZn4r7CU9eMg1gqtzk5WpC5uQu0wDQYJKoZI +hvcNAQELBQADggIBACYGXnDnZTPIgm7ZnBc6G3pmsgH2eDtpXi/q/075KMOYKmFM +tCQSin1tERT3nLXK5ryeJ45MGcipvXrA1zYObYVybqjGom32+nNjf7xueQgcnYqf +GopTpti72TVVsRHFqQOzVju5hJMiXn7B9hJSi+osZ7z+Nkz1uM/Rs0mSO9MpDpkb +lvdhuDvEK7Z4bLQjb/D907JedR+Zlais9trhxTF7+9FGs9K8Z7RiVLoJ92Owk6Ka ++elSLotgEqv89WBW7xBci8QaQtyDW2QOy7W81k/BfDxujRNt+3vrMNDcTa/F1bal +TFtxyegxvug4BkihGuLq0t4SOVga/4AOgnXmt8kHbA7v/zjxmHHEt38OFdAlab0i +nSvtBfZGR6ztwPDUO+Ls7pZbkBNOHlY667DvlruWIxG68kOGdGSVyCh13x01utI3 +gzhTODY7z2zp+WsO0PsE6E9312UBeIYMej4hYvF/Y3EMyZ9E26gnonW+boE+18Dr +G5gPcFw0sorMwIUY6256s/daoQe/qUKS82Ail+QUoQebTnbAjn39pCXHR+3/H3Os +zMOl6W8KjptlwlCFtaOgUxLMVYdh84GuEEZhvUQhuMI9dM9+JDX6HAcOmz0iyu8x +L4ysEr3vQCj8KWefshNPZiTEUxnpHikV7+ZtsH8tZ/3zbBt1RqPlShfppNcL +-----END CERTIFICATE----- + +# Issuer: CN=ACCVRAIZ1 O=ACCV OU=PKIACCV +# Subject: CN=ACCVRAIZ1 O=ACCV OU=PKIACCV +# Label: "ACCVRAIZ1" +# Serial: 6828503384748696800 +# MD5 Fingerprint: d0:a0:5a:ee:05:b6:09:94:21:a1:7d:f1:b2:29:82:02 +# SHA1 Fingerprint: 93:05:7a:88:15:c6:4f:ce:88:2f:fa:91:16:52:28:78:bc:53:64:17 +# SHA256 Fingerprint: 9a:6e:c0:12:e1:a7:da:9d:be:34:19:4d:47:8a:d7:c0:db:18:22:fb:07:1d:f1:29:81:49:6e:d1:04:38:41:13 +-----BEGIN CERTIFICATE----- +MIIH0zCCBbugAwIBAgIIXsO3pkN/pOAwDQYJKoZIhvcNAQEFBQAwQjESMBAGA1UE +AwwJQUNDVlJBSVoxMRAwDgYDVQQLDAdQS0lBQ0NWMQ0wCwYDVQQKDARBQ0NWMQsw +CQYDVQQGEwJFUzAeFw0xMTA1MDUwOTM3MzdaFw0zMDEyMzEwOTM3MzdaMEIxEjAQ +BgNVBAMMCUFDQ1ZSQUlaMTEQMA4GA1UECwwHUEtJQUNDVjENMAsGA1UECgwEQUND +VjELMAkGA1UEBhMCRVMwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCb +qau/YUqXry+XZpp0X9DZlv3P4uRm7x8fRzPCRKPfmt4ftVTdFXxpNRFvu8gMjmoY +HtiP2Ra8EEg2XPBjs5BaXCQ316PWywlxufEBcoSwfdtNgM3802/J+Nq2DoLSRYWo +G2ioPej0RGy9ocLLA76MPhMAhN9KSMDjIgro6TenGEyxCQ0jVn8ETdkXhBilyNpA +lHPrzg5XPAOBOp0KoVdDaaxXbXmQeOW1tDvYvEyNKKGno6e6Ak4l0Squ7a4DIrhr +IA8wKFSVf+DuzgpmndFALW4ir50awQUZ0m/A8p/4e7MCQvtQqR0tkw8jq8bBD5L/ +0KIV9VMJcRz/RROE5iZe+OCIHAr8Fraocwa48GOEAqDGWuzndN9wrqODJerWx5eH +k6fGioozl2A3ED6XPm4pFdahD9GILBKfb6qkxkLrQaLjlUPTAYVtjrs78yM2x/47 +4KElB0iryYl0/wiPgL/AlmXz7uxLaL2diMMxs0Dx6M/2OLuc5NF/1OVYm3z61PMO +m3WR5LpSLhl+0fXNWhn8ugb2+1KoS5kE3fj5tItQo05iifCHJPqDQsGH+tUtKSpa +cXpkatcnYGMN285J9Y0fkIkyF/hzQ7jSWpOGYdbhdQrqeWZ2iE9x6wQl1gpaepPl +uUsXQA+xtrn13k/c4LOsOxFwYIRKQ26ZIMApcQrAZQIDAQABo4ICyzCCAscwfQYI +KwYBBQUHAQEEcTBvMEwGCCsGAQUFBzAChkBodHRwOi8vd3d3LmFjY3YuZXMvZmls +ZWFkbWluL0FyY2hpdm9zL2NlcnRpZmljYWRvcy9yYWl6YWNjdjEuY3J0MB8GCCsG +AQUFBzABhhNodHRwOi8vb2NzcC5hY2N2LmVzMB0GA1UdDgQWBBTSh7Tj3zcnk1X2 +VuqB5TbMjB4/vTAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFNKHtOPfNyeT +VfZW6oHlNsyMHj+9MIIBcwYDVR0gBIIBajCCAWYwggFiBgRVHSAAMIIBWDCCASIG +CCsGAQUFBwICMIIBFB6CARAAQQB1AHQAbwByAGkAZABhAGQAIABkAGUAIABDAGUA +cgB0AGkAZgBpAGMAYQBjAGkA8wBuACAAUgBhAO0AegAgAGQAZQAgAGwAYQAgAEEA +QwBDAFYAIAAoAEEAZwBlAG4AYwBpAGEAIABkAGUAIABUAGUAYwBuAG8AbABvAGcA +7QBhACAAeQAgAEMAZQByAHQAaQBmAGkAYwBhAGMAaQDzAG4AIABFAGwAZQBjAHQA +cgDzAG4AaQBjAGEALAAgAEMASQBGACAAUQA0ADYAMAAxADEANQA2AEUAKQAuACAA +QwBQAFMAIABlAG4AIABoAHQAdABwADoALwAvAHcAdwB3AC4AYQBjAGMAdgAuAGUA +czAwBggrBgEFBQcCARYkaHR0cDovL3d3dy5hY2N2LmVzL2xlZ2lzbGFjaW9uX2Mu +aHRtMFUGA1UdHwROMEwwSqBIoEaGRGh0dHA6Ly93d3cuYWNjdi5lcy9maWxlYWRt +aW4vQXJjaGl2b3MvY2VydGlmaWNhZG9zL3JhaXphY2N2MV9kZXIuY3JsMA4GA1Ud +DwEB/wQEAwIBBjAXBgNVHREEEDAOgQxhY2N2QGFjY3YuZXMwDQYJKoZIhvcNAQEF +BQADggIBAJcxAp/n/UNnSEQU5CmH7UwoZtCPNdpNYbdKl02125DgBS4OxnnQ8pdp +D70ER9m+27Up2pvZrqmZ1dM8MJP1jaGo/AaNRPTKFpV8M9xii6g3+CfYCS0b78gU +JyCpZET/LtZ1qmxNYEAZSUNUY9rizLpm5U9EelvZaoErQNV/+QEnWCzI7UiRfD+m +AM/EKXMRNt6GGT6d7hmKG9Ww7Y49nCrADdg9ZuM8Db3VlFzi4qc1GwQA9j9ajepD +vV+JHanBsMyZ4k0ACtrJJ1vnE5Bc5PUzolVt3OAJTS+xJlsndQAJxGJ3KQhfnlms +tn6tn1QwIgPBHnFk/vk4CpYY3QIUrCPLBhwepH2NDd4nQeit2hW3sCPdK6jT2iWH +7ehVRE2I9DZ+hJp4rPcOVkkO1jMl1oRQQmwgEh0q1b688nCBpHBgvgW1m54ERL5h +I6zppSSMEYCUWqKiuUnSwdzRp+0xESyeGabu4VXhwOrPDYTkF7eifKXeVSUG7szA +h1xA2syVP1XgNce4hL60Xc16gwFy7ofmXx2utYXGJt/mwZrpHgJHnyqobalbz+xF +d3+YJ5oyXSrjhO7FmGYvliAd3djDJ9ew+f7Zfc3Qn48LFFhRny+Lwzgt3uiP1o2H +pPVWQxaZLPSkVrQ0uGE3ycJYgBugl6H8WY3pEfbRD0tVNEYqi4Y7 +-----END CERTIFICATE----- + +# Issuer: CN=TWCA Global Root CA O=TAIWAN-CA OU=Root CA +# Subject: CN=TWCA Global Root CA O=TAIWAN-CA OU=Root CA +# Label: "TWCA Global Root CA" +# Serial: 3262 +# MD5 Fingerprint: f9:03:7e:cf:e6:9e:3c:73:7a:2a:90:07:69:ff:2b:96 +# SHA1 Fingerprint: 9c:bb:48:53:f6:a4:f6:d3:52:a4:e8:32:52:55:60:13:f5:ad:af:65 +# SHA256 Fingerprint: 59:76:90:07:f7:68:5d:0f:cd:50:87:2f:9f:95:d5:75:5a:5b:2b:45:7d:81:f3:69:2b:61:0a:98:67:2f:0e:1b +-----BEGIN CERTIFICATE----- +MIIFQTCCAymgAwIBAgICDL4wDQYJKoZIhvcNAQELBQAwUTELMAkGA1UEBhMCVFcx +EjAQBgNVBAoTCVRBSVdBTi1DQTEQMA4GA1UECxMHUm9vdCBDQTEcMBoGA1UEAxMT +VFdDQSBHbG9iYWwgUm9vdCBDQTAeFw0xMjA2MjcwNjI4MzNaFw0zMDEyMzExNTU5 +NTlaMFExCzAJBgNVBAYTAlRXMRIwEAYDVQQKEwlUQUlXQU4tQ0ExEDAOBgNVBAsT +B1Jvb3QgQ0ExHDAaBgNVBAMTE1RXQ0EgR2xvYmFsIFJvb3QgQ0EwggIiMA0GCSqG +SIb3DQEBAQUAA4ICDwAwggIKAoICAQCwBdvI64zEbooh745NnHEKH1Jw7W2CnJfF +10xORUnLQEK1EjRsGcJ0pDFfhQKX7EMzClPSnIyOt7h52yvVavKOZsTuKwEHktSz +0ALfUPZVr2YOy+BHYC8rMjk1Ujoog/h7FsYYuGLWRyWRzvAZEk2tY/XTP3VfKfCh +MBwqoJimFb3u/Rk28OKRQ4/6ytYQJ0lM793B8YVwm8rqqFpD/G2Gb3PpN0Wp8DbH +zIh1HrtsBv+baz4X7GGqcXzGHaL3SekVtTzWoWH1EfcFbx39Eb7QMAfCKbAJTibc +46KokWofwpFFiFzlmLhxpRUZyXx1EcxwdE8tmx2RRP1WKKD+u4ZqyPpcC1jcxkt2 +yKsi2XMPpfRaAok/T54igu6idFMqPVMnaR1sjjIsZAAmY2E2TqNGtz99sy2sbZCi +laLOz9qC5wc0GZbpuCGqKX6mOL6OKUohZnkfs8O1CWfe1tQHRvMq2uYiN2DLgbYP +oA/pyJV/v1WRBXrPPRXAb94JlAGD1zQbzECl8LibZ9WYkTunhHiVJqRaCPgrdLQA +BDzfuBSO6N+pjWxnkjMdwLfS7JLIvgm/LCkFbwJrnu+8vyq8W8BQj0FwcYeyTbcE +qYSjMq+u7msXi7Kx/mzhkIyIqJdIzshNy/MGz19qCkKxHh53L46g5pIOBvwFItIm +4TFRfTLcDwIDAQABoyMwITAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB +/zANBgkqhkiG9w0BAQsFAAOCAgEAXzSBdu+WHdXltdkCY4QWwa6gcFGn90xHNcgL +1yg9iXHZqjNB6hQbbCEAwGxCGX6faVsgQt+i0trEfJdLjbDorMjupWkEmQqSpqsn +LhpNgb+E1HAerUf+/UqdM+DyucRFCCEK2mlpc3INvjT+lIutwx4116KD7+U4x6WF +H6vPNOw/KP4M8VeGTslV9xzU2KV9Bnpv1d8Q34FOIWWxtuEXeZVFBs5fzNxGiWNo +RI2T9GRwoD2dKAXDOXC4Ynsg/eTb6QihuJ49CcdP+yz4k3ZB3lLg4VfSnQO8d57+ +nile98FRYB/e2guyLXW3Q0iT5/Z5xoRdgFlglPx4mI88k1HtQJAH32RjJMtOcQWh +15QaiDLxInQirqWm2BJpTGCjAu4r7NRjkgtevi92a6O2JryPA9gK8kxkRr05YuWW +6zRjESjMlfGt7+/cgFhI6Uu46mWs6fyAtbXIRfmswZ/ZuepiiI7E8UuDEq3mi4TW +nsLrgxifarsbJGAzcMzs9zLzXNl5fe+epP7JI8Mk7hWSsT2RTyaGvWZzJBPqpK5j +wa19hAM8EHiGG3njxPPyBJUgriOCxLM6AGK/5jYk4Ve6xx6QddVfP5VhK8E7zeWz +aGHQRiapIVJpLesux+t3zqY6tQMzT3bR51xUAV3LePTJDL/PEo4XLSNolOer/qmy +KwbQBM0= +-----END CERTIFICATE----- + +# Issuer: CN=TeliaSonera Root CA v1 O=TeliaSonera +# Subject: CN=TeliaSonera Root CA v1 O=TeliaSonera +# Label: "TeliaSonera Root CA v1" +# Serial: 199041966741090107964904287217786801558 +# MD5 Fingerprint: 37:41:49:1b:18:56:9a:26:f5:ad:c2:66:fb:40:a5:4c +# SHA1 Fingerprint: 43:13:bb:96:f1:d5:86:9b:c1:4e:6a:92:f6:cf:f6:34:69:87:82:37 +# SHA256 Fingerprint: dd:69:36:fe:21:f8:f0:77:c1:23:a1:a5:21:c1:22:24:f7:22:55:b7:3e:03:a7:26:06:93:e8:a2:4b:0f:a3:89 +-----BEGIN CERTIFICATE----- +MIIFODCCAyCgAwIBAgIRAJW+FqD3LkbxezmCcvqLzZYwDQYJKoZIhvcNAQEFBQAw +NzEUMBIGA1UECgwLVGVsaWFTb25lcmExHzAdBgNVBAMMFlRlbGlhU29uZXJhIFJv +b3QgQ0EgdjEwHhcNMDcxMDE4MTIwMDUwWhcNMzIxMDE4MTIwMDUwWjA3MRQwEgYD +VQQKDAtUZWxpYVNvbmVyYTEfMB0GA1UEAwwWVGVsaWFTb25lcmEgUm9vdCBDQSB2 +MTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAMK+6yfwIaPzaSZVfp3F +VRaRXP3vIb9TgHot0pGMYzHw7CTww6XScnwQbfQ3t+XmfHnqjLWCi65ItqwA3GV1 +7CpNX8GH9SBlK4GoRz6JI5UwFpB/6FcHSOcZrr9FZ7E3GwYq/t75rH2D+1665I+X +Z75Ljo1kB1c4VWk0Nj0TSO9P4tNmHqTPGrdeNjPUtAa9GAH9d4RQAEX1jF3oI7x+ +/jXh7VB7qTCNGdMJjmhnXb88lxhTuylixcpecsHHltTbLaC0H2kD7OriUPEMPPCs +81Mt8Bz17Ww5OXOAFshSsCPN4D7c3TxHoLs1iuKYaIu+5b9y7tL6pe0S7fyYGKkm +dtwoSxAgHNN/Fnct7W+A90m7UwW7XWjH1Mh1Fj+JWov3F0fUTPHSiXk+TT2YqGHe +Oh7S+F4D4MHJHIzTjU3TlTazN19jY5szFPAtJmtTfImMMsJu7D0hADnJoWjiUIMu +sDor8zagrC/kb2HCUQk5PotTubtn2txTuXZZNp1D5SDgPTJghSJRt8czu90VL6R4 +pgd7gUY2BIbdeTXHlSw7sKMXNeVzH7RcWe/a6hBle3rQf5+ztCo3O3CLm1u5K7fs +slESl1MpWtTwEhDcTwK7EpIvYtQ/aUN8Ddb8WHUBiJ1YFkveupD/RwGJBmr2X7KQ +arMCpgKIv7NHfirZ1fpoeDVNAgMBAAGjPzA9MA8GA1UdEwEB/wQFMAMBAf8wCwYD +VR0PBAQDAgEGMB0GA1UdDgQWBBTwj1k4ALP1j5qWDNXr+nuqF+gTEjANBgkqhkiG +9w0BAQUFAAOCAgEAvuRcYk4k9AwI//DTDGjkk0kiP0Qnb7tt3oNmzqjMDfz1mgbl +dxSR651Be5kqhOX//CHBXfDkH1e3damhXwIm/9fH907eT/j3HEbAek9ALCI18Bmx +0GtnLLCo4MBANzX2hFxc469CeP6nyQ1Q6g2EdvZR74NTxnr/DlZJLo961gzmJ1Tj +TQpgcmLNkQfWpb/ImWvtxBnmq0wROMVvMeJuScg/doAmAyYp4Db29iBT4xdwNBed +Y2gea+zDTYa4EzAvXUYNR0PVG6pZDrlcjQZIrXSHX8f8MVRBE+LHIQ6e4B4N4cB7 +Q4WQxYpYxmUKeFfyxiMPAdkgS94P+5KFdSpcc41teyWRyu5FrgZLAMzTsVlQ2jqI +OylDRl6XK1TOU2+NSueW+r9xDkKLfP0ooNBIytrEgUy7onOTJsjrDNYmiLbAJM+7 +vVvrdX3pCI6GMyx5dwlppYn8s3CQh3aP0yK7Qs69cwsgJirQmz1wHiRszYd2qReW +t88NkvuOGKmYSdGe/mBEciG5Ge3C9THxOUiIkCR1VBatzvT4aRRkOfujuLpwQMcn +HL/EVlP6Y2XQ8xwOFvVrhlhNGNTkDY6lnVuR3HYkUD/GKvvZt5y11ubQ2egZixVx +SK236thZiNSQvxaz2emsWWFUyBy6ysHK4bkgTI86k4mloMy/0/Z1pHWWbVY= +-----END CERTIFICATE----- + +# Issuer: CN=E-Tugra Certification Authority O=E-Tu\u011fra EBG Bili\u015fim Teknolojileri ve Hizmetleri A.\u015e. OU=E-Tugra Sertifikasyon Merkezi +# Subject: CN=E-Tugra Certification Authority O=E-Tu\u011fra EBG Bili\u015fim Teknolojileri ve Hizmetleri A.\u015e. OU=E-Tugra Sertifikasyon Merkezi +# Label: "E-Tugra Certification Authority" +# Serial: 7667447206703254355 +# MD5 Fingerprint: b8:a1:03:63:b0:bd:21:71:70:8a:6f:13:3a:bb:79:49 +# SHA1 Fingerprint: 51:c6:e7:08:49:06:6e:f3:92:d4:5c:a0:0d:6d:a3:62:8f:c3:52:39 +# SHA256 Fingerprint: b0:bf:d5:2b:b0:d7:d9:bd:92:bf:5d:4d:c1:3d:a2:55:c0:2c:54:2f:37:83:65:ea:89:39:11:f5:5e:55:f2:3c +-----BEGIN CERTIFICATE----- +MIIGSzCCBDOgAwIBAgIIamg+nFGby1MwDQYJKoZIhvcNAQELBQAwgbIxCzAJBgNV +BAYTAlRSMQ8wDQYDVQQHDAZBbmthcmExQDA+BgNVBAoMN0UtVHXEn3JhIEVCRyBC +aWxpxZ9pbSBUZWtub2xvamlsZXJpIHZlIEhpem1ldGxlcmkgQS7Fni4xJjAkBgNV +BAsMHUUtVHVncmEgU2VydGlmaWthc3lvbiBNZXJrZXppMSgwJgYDVQQDDB9FLVR1 +Z3JhIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTEzMDMwNTEyMDk0OFoXDTIz +MDMwMzEyMDk0OFowgbIxCzAJBgNVBAYTAlRSMQ8wDQYDVQQHDAZBbmthcmExQDA+ +BgNVBAoMN0UtVHXEn3JhIEVCRyBCaWxpxZ9pbSBUZWtub2xvamlsZXJpIHZlIEhp +em1ldGxlcmkgQS7Fni4xJjAkBgNVBAsMHUUtVHVncmEgU2VydGlmaWthc3lvbiBN +ZXJrZXppMSgwJgYDVQQDDB9FLVR1Z3JhIENlcnRpZmljYXRpb24gQXV0aG9yaXR5 +MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA4vU/kwVRHoViVF56C/UY +B4Oufq9899SKa6VjQzm5S/fDxmSJPZQuVIBSOTkHS0vdhQd2h8y/L5VMzH2nPbxH +D5hw+IyFHnSOkm0bQNGZDbt1bsipa5rAhDGvykPL6ys06I+XawGb1Q5KCKpbknSF +Q9OArqGIW66z6l7LFpp3RMih9lRozt6Plyu6W0ACDGQXwLWTzeHxE2bODHnv0ZEo +q1+gElIwcxmOj+GMB6LDu0rw6h8VqO4lzKRG+Bsi77MOQ7osJLjFLFzUHPhdZL3D +k14opz8n8Y4e0ypQBaNV2cvnOVPAmJ6MVGKLJrD3fY185MaeZkJVgkfnsliNZvcH +fC425lAcP9tDJMW/hkd5s3kc91r0E+xs+D/iWR+V7kI+ua2oMoVJl0b+SzGPWsut +dEcf6ZG33ygEIqDUD13ieU/qbIWGvaimzuT6w+Gzrt48Ue7LE3wBf4QOXVGUnhMM +ti6lTPk5cDZvlsouDERVxcr6XQKj39ZkjFqzAQqptQpHF//vkUAqjqFGOjGY5RH8 +zLtJVor8udBhmm9lbObDyz51Sf6Pp+KJxWfXnUYTTjF2OySznhFlhqt/7x3U+Lzn +rFpct1pHXFXOVbQicVtbC/DP3KBhZOqp12gKY6fgDT+gr9Oq0n7vUaDmUStVkhUX +U8u3Zg5mTPj5dUyQ5xJwx0UCAwEAAaNjMGEwHQYDVR0OBBYEFC7j27JJ0JxUeVz6 +Jyr+zE7S6E5UMA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAULuPbsknQnFR5 +XPonKv7MTtLoTlQwDgYDVR0PAQH/BAQDAgEGMA0GCSqGSIb3DQEBCwUAA4ICAQAF +Nzr0TbdF4kV1JI+2d1LoHNgQk2Xz8lkGpD4eKexd0dCrfOAKkEh47U6YA5n+KGCR +HTAduGN8qOY1tfrTYXbm1gdLymmasoR6d5NFFxWfJNCYExL/u6Au/U5Mh/jOXKqY +GwXgAEZKgoClM4so3O0409/lPun++1ndYYRP0lSWE2ETPo+Aab6TR7U1Q9Jauz1c +77NCR807VRMGsAnb/WP2OogKmW9+4c4bU2pEZiNRCHu8W1Ki/QY3OEBhj0qWuJA3 ++GbHeJAAFS6LrVE1Uweoa2iu+U48BybNCAVwzDk/dr2l02cmAYamU9JgO3xDf1WK +vJUawSg5TB9D0pH0clmKuVb8P7Sd2nCcdlqMQ1DujjByTd//SffGqWfZbawCEeI6 +FiWnWAjLb1NBnEg4R2gz0dfHj9R0IdTDBZB6/86WiLEVKV0jq9BgoRJP3vQXzTLl +yb/IQ639Lo7xr+L0mPoSHyDYwKcMhcWQ9DstliaxLL5Mq+ux0orJ23gTDx4JnW2P +AJ8C2sH6H3p6CcRK5ogql5+Ji/03X186zjhZhkuvcQu02PJwT58yE+Owp1fl2tpD +y4Q08ijE6m30Ku/Ba3ba+367hTzSU8JNvnHhRdH9I2cNE3X7z2VnIp2usAnRCf8d +NL/+I5c30jn6PQ0GC7TbO6Orb1wdtn7os4I07QZcJA== +-----END CERTIFICATE----- + +# Issuer: CN=T-TeleSec GlobalRoot Class 2 O=T-Systems Enterprise Services GmbH OU=T-Systems Trust Center +# Subject: CN=T-TeleSec GlobalRoot Class 2 O=T-Systems Enterprise Services GmbH OU=T-Systems Trust Center +# Label: "T-TeleSec GlobalRoot Class 2" +# Serial: 1 +# MD5 Fingerprint: 2b:9b:9e:e4:7b:6c:1f:00:72:1a:cc:c1:77:79:df:6a +# SHA1 Fingerprint: 59:0d:2d:7d:88:4f:40:2e:61:7e:a5:62:32:17:65:cf:17:d8:94:e9 +# SHA256 Fingerprint: 91:e2:f5:78:8d:58:10:eb:a7:ba:58:73:7d:e1:54:8a:8e:ca:cd:01:45:98:bc:0b:14:3e:04:1b:17:05:25:52 +-----BEGIN CERTIFICATE----- +MIIDwzCCAqugAwIBAgIBATANBgkqhkiG9w0BAQsFADCBgjELMAkGA1UEBhMCREUx +KzApBgNVBAoMIlQtU3lzdGVtcyBFbnRlcnByaXNlIFNlcnZpY2VzIEdtYkgxHzAd +BgNVBAsMFlQtU3lzdGVtcyBUcnVzdCBDZW50ZXIxJTAjBgNVBAMMHFQtVGVsZVNl +YyBHbG9iYWxSb290IENsYXNzIDIwHhcNMDgxMDAxMTA0MDE0WhcNMzMxMDAxMjM1 +OTU5WjCBgjELMAkGA1UEBhMCREUxKzApBgNVBAoMIlQtU3lzdGVtcyBFbnRlcnBy +aXNlIFNlcnZpY2VzIEdtYkgxHzAdBgNVBAsMFlQtU3lzdGVtcyBUcnVzdCBDZW50 +ZXIxJTAjBgNVBAMMHFQtVGVsZVNlYyBHbG9iYWxSb290IENsYXNzIDIwggEiMA0G +CSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCqX9obX+hzkeXaXPSi5kfl82hVYAUd +AqSzm1nzHoqvNK38DcLZSBnuaY/JIPwhqgcZ7bBcrGXHX+0CfHt8LRvWurmAwhiC +FoT6ZrAIxlQjgeTNuUk/9k9uN0goOA/FvudocP05l03Sx5iRUKrERLMjfTlH6VJi +1hKTXrcxlkIF+3anHqP1wvzpesVsqXFP6st4vGCvx9702cu+fjOlbpSD8DT6Iavq +jnKgP6TeMFvvhk1qlVtDRKgQFRzlAVfFmPHmBiiRqiDFt1MmUUOyCxGVWOHAD3bZ +wI18gfNycJ5v/hqO2V81xrJvNHy+SE/iWjnX2J14np+GPgNeGYtEotXHAgMBAAGj +QjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBS/ +WSA2AHmgoCJrjNXyYdK4LMuCSjANBgkqhkiG9w0BAQsFAAOCAQEAMQOiYQsfdOhy +NsZt+U2e+iKo4YFWz827n+qrkRk4r6p8FU3ztqONpfSO9kSpp+ghla0+AGIWiPAC +uvxhI+YzmzB6azZie60EI4RYZeLbK4rnJVM3YlNfvNoBYimipidx5joifsFvHZVw +IEoHNN/q/xWA5brXethbdXwFeilHfkCoMRN3zUA7tFFHei4R40cR3p1m0IvVVGb6 +g1XqfMIpiRvpb7PO4gWEyS8+eIVibslfwXhjdFjASBgMmTnrpMwatXlajRWc2BQN +9noHV8cigwUtPJslJj0Ys6lDfMjIq2SPDqO/nBudMNva0Bkuqjzx+zOAduTNrRlP +BSeOE6Fuwg== +-----END CERTIFICATE----- + +# Issuer: CN=Atos TrustedRoot 2011 O=Atos +# Subject: CN=Atos TrustedRoot 2011 O=Atos +# Label: "Atos TrustedRoot 2011" +# Serial: 6643877497813316402 +# MD5 Fingerprint: ae:b9:c4:32:4b:ac:7f:5d:66:cc:77:94:bb:2a:77:56 +# SHA1 Fingerprint: 2b:b1:f5:3e:55:0c:1d:c5:f1:d4:e6:b7:6a:46:4b:55:06:02:ac:21 +# SHA256 Fingerprint: f3:56:be:a2:44:b7:a9:1e:b3:5d:53:ca:9a:d7:86:4a:ce:01:8e:2d:35:d5:f8:f9:6d:df:68:a6:f4:1a:a4:74 +-----BEGIN CERTIFICATE----- +MIIDdzCCAl+gAwIBAgIIXDPLYixfszIwDQYJKoZIhvcNAQELBQAwPDEeMBwGA1UE +AwwVQXRvcyBUcnVzdGVkUm9vdCAyMDExMQ0wCwYDVQQKDARBdG9zMQswCQYDVQQG +EwJERTAeFw0xMTA3MDcxNDU4MzBaFw0zMDEyMzEyMzU5NTlaMDwxHjAcBgNVBAMM +FUF0b3MgVHJ1c3RlZFJvb3QgMjAxMTENMAsGA1UECgwEQXRvczELMAkGA1UEBhMC +REUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCVhTuXbyo7LjvPpvMp +Nb7PGKw+qtn4TaA+Gke5vJrf8v7MPkfoepbCJI419KkM/IL9bcFyYie96mvr54rM +VD6QUM+A1JX76LWC1BTFtqlVJVfbsVD2sGBkWXppzwO3bw2+yj5vdHLqqjAqc2K+ +SZFhyBH+DgMq92og3AIVDV4VavzjgsG1xZ1kCWyjWZgHJ8cblithdHFsQ/H3NYkQ +4J7sVaE3IqKHBAUsR320HLliKWYoyrfhk/WklAOZuXCFteZI6o1Q/NnezG8HDt0L +cp2AMBYHlT8oDv3FdU9T1nSatCQujgKRz3bFmx5VdJx4IbHwLfELn8LVlhgf8FQi +eowHAgMBAAGjfTB7MB0GA1UdDgQWBBSnpQaxLKYJYO7Rl+lwrrw7GWzbITAPBgNV +HRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFKelBrEspglg7tGX6XCuvDsZbNshMBgG +A1UdIAQRMA8wDQYLKwYBBAGwLQMEAQEwDgYDVR0PAQH/BAQDAgGGMA0GCSqGSIb3 +DQEBCwUAA4IBAQAmdzTblEiGKkGdLD4GkGDEjKwLVLgfuXvTBznk+j57sj1O7Z8j +vZfza1zv7v1Apt+hk6EKhqzvINB5Ab149xnYJDE0BAGmuhWawyfc2E8PzBhj/5kP +DpFrdRbhIfzYJsdHt6bPWHJxfrrhTZVHO8mvbaG0weyJ9rQPOLXiZNwlz6bb65pc +maHFCN795trV1lpFDMS3wrUU77QR/w4VtfX128a961qn8FYiqTxlVMYVqL2Gns2D +lmh6cYGJ4Qvh6hEbaAjMaZ7snkGeRDImeuKHCnE96+RapNLbxc3G3mB/ufNPRJLv +KrcYPqcZ2Qt9sTdBQrC6YB3y/gkRsPCHe6ed +-----END CERTIFICATE----- + +# Issuer: CN=QuoVadis Root CA 1 G3 O=QuoVadis Limited +# Subject: CN=QuoVadis Root CA 1 G3 O=QuoVadis Limited +# Label: "QuoVadis Root CA 1 G3" +# Serial: 687049649626669250736271037606554624078720034195 +# MD5 Fingerprint: a4:bc:5b:3f:fe:37:9a:fa:64:f0:e2:fa:05:3d:0b:ab +# SHA1 Fingerprint: 1b:8e:ea:57:96:29:1a:c9:39:ea:b8:0a:81:1a:73:73:c0:93:79:67 +# SHA256 Fingerprint: 8a:86:6f:d1:b2:76:b5:7e:57:8e:92:1c:65:82:8a:2b:ed:58:e9:f2:f2:88:05:41:34:b7:f1:f4:bf:c9:cc:74 +-----BEGIN CERTIFICATE----- +MIIFYDCCA0igAwIBAgIUeFhfLq0sGUvjNwc1NBMotZbUZZMwDQYJKoZIhvcNAQEL +BQAwSDELMAkGA1UEBhMCQk0xGTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxHjAc +BgNVBAMTFVF1b1ZhZGlzIFJvb3QgQ0EgMSBHMzAeFw0xMjAxMTIxNzI3NDRaFw00 +MjAxMTIxNzI3NDRaMEgxCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBM +aW1pdGVkMR4wHAYDVQQDExVRdW9WYWRpcyBSb290IENBIDEgRzMwggIiMA0GCSqG +SIb3DQEBAQUAA4ICDwAwggIKAoICAQCgvlAQjunybEC0BJyFuTHK3C3kEakEPBtV +wedYMB0ktMPvhd6MLOHBPd+C5k+tR4ds7FtJwUrVu4/sh6x/gpqG7D0DmVIB0jWe +rNrwU8lmPNSsAgHaJNM7qAJGr6Qc4/hzWHa39g6QDbXwz8z6+cZM5cOGMAqNF341 +68Xfuw6cwI2H44g4hWf6Pser4BOcBRiYz5P1sZK0/CPTz9XEJ0ngnjybCKOLXSoh +4Pw5qlPafX7PGglTvF0FBM+hSo+LdoINofjSxxR3W5A2B4GbPgb6Ul5jxaYA/qXp +UhtStZI5cgMJYr2wYBZupt0lwgNm3fME0UDiTouG9G/lg6AnhF4EwfWQvTA9xO+o +abw4m6SkltFi2mnAAZauy8RRNOoMqv8hjlmPSlzkYZqn0ukqeI1RPToV7qJZjqlc +3sX5kCLliEVx3ZGZbHqfPT2YfF72vhZooF6uCyP8Wg+qInYtyaEQHeTTRCOQiJ/G +KubX9ZqzWB4vMIkIG1SitZgj7Ah3HJVdYdHLiZxfokqRmu8hqkkWCKi9YSgxyXSt +hfbZxbGL0eUQMk1fiyA6PEkfM4VZDdvLCXVDaXP7a3F98N/ETH3Goy7IlXnLc6KO +Tk0k+17kBL5yG6YnLUlamXrXXAkgt3+UuU/xDRxeiEIbEbfnkduebPRq34wGmAOt +zCjvpUfzUwIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIB +BjAdBgNVHQ4EFgQUo5fW816iEOGrRZ88F2Q87gFwnMwwDQYJKoZIhvcNAQELBQAD +ggIBABj6W3X8PnrHX3fHyt/PX8MSxEBd1DKquGrX1RUVRpgjpeaQWxiZTOOtQqOC +MTaIzen7xASWSIsBx40Bz1szBpZGZnQdT+3Btrm0DWHMY37XLneMlhwqI2hrhVd2 +cDMT/uFPpiN3GPoajOi9ZcnPP/TJF9zrx7zABC4tRi9pZsMbj/7sPtPKlL92CiUN +qXsCHKnQO18LwIE6PWThv6ctTr1NxNgpxiIY0MWscgKCP6o6ojoilzHdCGPDdRS5 +YCgtW2jgFqlmgiNR9etT2DGbe+m3nUvriBbP+V04ikkwj+3x6xn0dxoxGE1nVGwv +b2X52z3sIexe9PSLymBlVNFxZPT5pqOBMzYzcfCkeF9OrYMh3jRJjehZrJ3ydlo2 +8hP0r+AJx2EqbPfgna67hkooby7utHnNkDPDs3b69fBsnQGQ+p6Q9pxyz0fawx/k +NSBT8lTR32GDpgLiJTjehTItXnOQUl1CxM49S+H5GYQd1aJQzEH7QRTDvdbJWqNj +ZgKAvQU6O0ec7AAmTPWIUb+oI38YB7AL7YsmoWTTYUrrXJ/es69nA7Mf3W1daWhp +q1467HxpvMc7hU6eFbm0FU/DlXpY18ls6Wy58yljXrQs8C097Vpl4KlbQMJImYFt +nh8GKjwStIsPm6Ik8KaN1nrgS7ZklmOVhMJKzRwuJIczYOXD +-----END CERTIFICATE----- + +# Issuer: CN=QuoVadis Root CA 2 G3 O=QuoVadis Limited +# Subject: CN=QuoVadis Root CA 2 G3 O=QuoVadis Limited +# Label: "QuoVadis Root CA 2 G3" +# Serial: 390156079458959257446133169266079962026824725800 +# MD5 Fingerprint: af:0c:86:6e:bf:40:2d:7f:0b:3e:12:50:ba:12:3d:06 +# SHA1 Fingerprint: 09:3c:61:f3:8b:8b:dc:7d:55:df:75:38:02:05:00:e1:25:f5:c8:36 +# SHA256 Fingerprint: 8f:e4:fb:0a:f9:3a:4d:0d:67:db:0b:eb:b2:3e:37:c7:1b:f3:25:dc:bc:dd:24:0e:a0:4d:af:58:b4:7e:18:40 +-----BEGIN CERTIFICATE----- +MIIFYDCCA0igAwIBAgIURFc0JFuBiZs18s64KztbpybwdSgwDQYJKoZIhvcNAQEL +BQAwSDELMAkGA1UEBhMCQk0xGTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxHjAc +BgNVBAMTFVF1b1ZhZGlzIFJvb3QgQ0EgMiBHMzAeFw0xMjAxMTIxODU5MzJaFw00 +MjAxMTIxODU5MzJaMEgxCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBM +aW1pdGVkMR4wHAYDVQQDExVRdW9WYWRpcyBSb290IENBIDIgRzMwggIiMA0GCSqG +SIb3DQEBAQUAA4ICDwAwggIKAoICAQChriWyARjcV4g/Ruv5r+LrI3HimtFhZiFf +qq8nUeVuGxbULX1QsFN3vXg6YOJkApt8hpvWGo6t/x8Vf9WVHhLL5hSEBMHfNrMW +n4rjyduYNM7YMxcoRvynyfDStNVNCXJJ+fKH46nafaF9a7I6JaltUkSs+L5u+9ym +c5GQYaYDFCDy54ejiK2toIz/pgslUiXnFgHVy7g1gQyjO/Dh4fxaXc6AcW34Sas+ +O7q414AB+6XrW7PFXmAqMaCvN+ggOp+oMiwMzAkd056OXbxMmO7FGmh77FOm6RQ1 +o9/NgJ8MSPsc9PG/Srj61YxxSscfrf5BmrODXfKEVu+lV0POKa2Mq1W/xPtbAd0j +IaFYAI7D0GoT7RPjEiuA3GfmlbLNHiJuKvhB1PLKFAeNilUSxmn1uIZoL1NesNKq +IcGY5jDjZ1XHm26sGahVpkUG0CM62+tlXSoREfA7T8pt9DTEceT/AFr2XK4jYIVz +8eQQsSWu1ZK7E8EM4DnatDlXtas1qnIhO4M15zHfeiFuuDIIfR0ykRVKYnLP43eh +vNURG3YBZwjgQQvD6xVu+KQZ2aKrr+InUlYrAoosFCT5v0ICvybIxo/gbjh9Uy3l +7ZizlWNof/k19N+IxWA1ksB8aRxhlRbQ694Lrz4EEEVlWFA4r0jyWbYW8jwNkALG +cC4BrTwV1wIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIB +BjAdBgNVHQ4EFgQU7edvdlq/YOxJW8ald7tyFnGbxD0wDQYJKoZIhvcNAQELBQAD +ggIBAJHfgD9DCX5xwvfrs4iP4VGyvD11+ShdyLyZm3tdquXK4Qr36LLTn91nMX66 +AarHakE7kNQIXLJgapDwyM4DYvmL7ftuKtwGTTwpD4kWilhMSA/ohGHqPHKmd+RC +roijQ1h5fq7KpVMNqT1wvSAZYaRsOPxDMuHBR//47PERIjKWnML2W2mWeyAMQ0Ga +W/ZZGYjeVYg3UQt4XAoeo0L9x52ID8DyeAIkVJOviYeIyUqAHerQbj5hLja7NQ4n +lv1mNDthcnPxFlxHBlRJAHpYErAK74X9sbgzdWqTHBLmYF5vHX/JHyPLhGGfHoJE ++V+tYlUkmlKY7VHnoX6XOuYvHxHaU4AshZ6rNRDbIl9qxV6XU/IyAgkwo1jwDQHV +csaxfGl7w/U2Rcxhbl5MlMVerugOXou/983g7aEOGzPuVBj+D77vfoRrQ+NwmNtd +dbINWQeFFSM51vHfqSYP1kjHs6Yi9TM3WpVHn3u6GBVv/9YUZINJ0gpnIdsPNWNg +KCLjsZWDzYWm3S8P52dSbrsvhXz1SnPnxT7AvSESBT/8twNJAlvIJebiVDj1eYeM +HVOyToV7BjjHLPj4sHKNJeV3UvQDHEimUF+IIDBu8oJDqz2XhOdT+yHBTw8imoa4 +WSr2Rz0ZiC3oheGe7IUIarFsNMkd7EgrO3jtZsSOeWmD3n+M +-----END CERTIFICATE----- + +# Issuer: CN=QuoVadis Root CA 3 G3 O=QuoVadis Limited +# Subject: CN=QuoVadis Root CA 3 G3 O=QuoVadis Limited +# Label: "QuoVadis Root CA 3 G3" +# Serial: 268090761170461462463995952157327242137089239581 +# MD5 Fingerprint: df:7d:b9:ad:54:6f:68:a1:df:89:57:03:97:43:b0:d7 +# SHA1 Fingerprint: 48:12:bd:92:3c:a8:c4:39:06:e7:30:6d:27:96:e6:a4:cf:22:2e:7d +# SHA256 Fingerprint: 88:ef:81:de:20:2e:b0:18:45:2e:43:f8:64:72:5c:ea:5f:bd:1f:c2:d9:d2:05:73:07:09:c5:d8:b8:69:0f:46 +-----BEGIN CERTIFICATE----- +MIIFYDCCA0igAwIBAgIULvWbAiin23r/1aOp7r0DoM8Sah0wDQYJKoZIhvcNAQEL +BQAwSDELMAkGA1UEBhMCQk0xGTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxHjAc +BgNVBAMTFVF1b1ZhZGlzIFJvb3QgQ0EgMyBHMzAeFw0xMjAxMTIyMDI2MzJaFw00 +MjAxMTIyMDI2MzJaMEgxCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBM +aW1pdGVkMR4wHAYDVQQDExVRdW9WYWRpcyBSb290IENBIDMgRzMwggIiMA0GCSqG +SIb3DQEBAQUAA4ICDwAwggIKAoICAQCzyw4QZ47qFJenMioKVjZ/aEzHs286IxSR +/xl/pcqs7rN2nXrpixurazHb+gtTTK/FpRp5PIpM/6zfJd5O2YIyC0TeytuMrKNu +FoM7pmRLMon7FhY4futD4tN0SsJiCnMK3UmzV9KwCoWdcTzeo8vAMvMBOSBDGzXR +U7Ox7sWTaYI+FrUoRqHe6okJ7UO4BUaKhvVZR74bbwEhELn9qdIoyhA5CcoTNs+c +ra1AdHkrAj80//ogaX3T7mH1urPnMNA3I4ZyYUUpSFlob3emLoG+B01vr87ERROR +FHAGjx+f+IdpsQ7vw4kZ6+ocYfx6bIrc1gMLnia6Et3UVDmrJqMz6nWB2i3ND0/k +A9HvFZcba5DFApCTZgIhsUfei5pKgLlVj7WiL8DWM2fafsSntARE60f75li59wzw +eyuxwHApw0BiLTtIadwjPEjrewl5qW3aqDCYz4ByA4imW0aucnl8CAMhZa634Ryl +sSqiMd5mBPfAdOhx3v89WcyWJhKLhZVXGqtrdQtEPREoPHtht+KPZ0/l7DxMYIBp +VzgeAVuNVejH38DMdyM0SXV89pgR6y3e7UEuFAUCf+D+IOs15xGsIs5XPd7JMG0Q +A4XN8f+MFrXBsj6IbGB/kE+V9/YtrQE5BwT6dYB9v0lQ7e/JxHwc64B+27bQ3RP+ +ydOc17KXqQIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIB +BjAdBgNVHQ4EFgQUxhfQvKjqAkPyGwaZXSuQILnXnOQwDQYJKoZIhvcNAQELBQAD +ggIBADRh2Va1EodVTd2jNTFGu6QHcrxfYWLopfsLN7E8trP6KZ1/AvWkyaiTt3px +KGmPc+FSkNrVvjrlt3ZqVoAh313m6Tqe5T72omnHKgqwGEfcIHB9UqM+WXzBusnI +FUBhynLWcKzSt/Ac5IYp8M7vaGPQtSCKFWGafoaYtMnCdvvMujAWzKNhxnQT5Wvv +oxXqA/4Ti2Tk08HS6IT7SdEQTXlm66r99I0xHnAUrdzeZxNMgRVhvLfZkXdxGYFg +u/BYpbWcC/ePIlUnwEsBbTuZDdQdm2NnL9DuDcpmvJRPpq3t/O5jrFc/ZSXPsoaP +0Aj/uHYUbt7lJ+yreLVTubY/6CD50qi+YUbKh4yE8/nxoGibIh6BJpsQBJFxwAYf +3KDTuVan45gtf4Od34wrnDKOMpTwATwiKp9Dwi7DmDkHOHv8XgBCH/MyJnmDhPbl +8MFREsALHgQjDFSlTC9JxUrRtm5gDWv8a4uFJGS3iQ6rJUdbPM9+Sb3H6QrG2vd+ +DhcI00iX0HGS8A85PjRqHH3Y8iKuu2n0M7SmSFXRDw4m6Oy2Cy2nhTXN/VnIn9HN +PlopNLk9hM6xZdRZkZFWdSHBd575euFgndOtBBj0fOtek49TSiIp+EgrPk2GrFt/ +ywaZWWDYWGWVjUTR939+J399roD1B0y2PpxxVJkES/1Y+Zj0 +-----END CERTIFICATE----- + +# Issuer: CN=DigiCert Assured ID Root G2 O=DigiCert Inc OU=www.digicert.com +# Subject: CN=DigiCert Assured ID Root G2 O=DigiCert Inc OU=www.digicert.com +# Label: "DigiCert Assured ID Root G2" +# Serial: 15385348160840213938643033620894905419 +# MD5 Fingerprint: 92:38:b9:f8:63:24:82:65:2c:57:33:e6:fe:81:8f:9d +# SHA1 Fingerprint: a1:4b:48:d9:43:ee:0a:0e:40:90:4f:3c:e0:a4:c0:91:93:51:5d:3f +# SHA256 Fingerprint: 7d:05:eb:b6:82:33:9f:8c:94:51:ee:09:4e:eb:fe:fa:79:53:a1:14:ed:b2:f4:49:49:45:2f:ab:7d:2f:c1:85 +-----BEGIN CERTIFICATE----- +MIIDljCCAn6gAwIBAgIQC5McOtY5Z+pnI7/Dr5r0SzANBgkqhkiG9w0BAQsFADBl +MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 +d3cuZGlnaWNlcnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJv +b3QgRzIwHhcNMTMwODAxMTIwMDAwWhcNMzgwMTE1MTIwMDAwWjBlMQswCQYDVQQG +EwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNl +cnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgRzIwggEi +MA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDZ5ygvUj82ckmIkzTz+GoeMVSA +n61UQbVH35ao1K+ALbkKz3X9iaV9JPrjIgwrvJUXCzO/GU1BBpAAvQxNEP4Htecc +biJVMWWXvdMX0h5i89vqbFCMP4QMls+3ywPgym2hFEwbid3tALBSfK+RbLE4E9Hp +EgjAALAcKxHad3A2m67OeYfcgnDmCXRwVWmvo2ifv922ebPynXApVfSr/5Vh88lA +bx3RvpO704gqu52/clpWcTs/1PPRCv4o76Pu2ZmvA9OPYLfykqGxvYmJHzDNw6Yu +YjOuFgJ3RFrngQo8p0Quebg/BLxcoIfhG69Rjs3sLPr4/m3wOnyqi+RnlTGNAgMB +AAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgGGMB0GA1UdDgQW +BBTOw0q5mVXyuNtgv6l+vVa1lzan1jANBgkqhkiG9w0BAQsFAAOCAQEAyqVVjOPI +QW5pJ6d1Ee88hjZv0p3GeDgdaZaikmkuOGybfQTUiaWxMTeKySHMq2zNixya1r9I +0jJmwYrA8y8678Dj1JGG0VDjA9tzd29KOVPt3ibHtX2vK0LRdWLjSisCx1BL4Gni +lmwORGYQRI+tBev4eaymG+g3NJ1TyWGqolKvSnAWhsI6yLETcDbYz+70CjTVW0z9 +B5yiutkBclzzTcHdDrEcDcRjvq30FPuJ7KJBDkzMyFdA0G4Dqs0MjomZmWzwPDCv +ON9vvKO+KSAnq3T/EyJ43pdSVR6DtVQgA+6uwE9W3jfMw3+qBCe703e4YtsXfJwo +IhNzbM8m9Yop5w== +-----END CERTIFICATE----- + +# Issuer: CN=DigiCert Assured ID Root G3 O=DigiCert Inc OU=www.digicert.com +# Subject: CN=DigiCert Assured ID Root G3 O=DigiCert Inc OU=www.digicert.com +# Label: "DigiCert Assured ID Root G3" +# Serial: 15459312981008553731928384953135426796 +# MD5 Fingerprint: 7c:7f:65:31:0c:81:df:8d:ba:3e:99:e2:5c:ad:6e:fb +# SHA1 Fingerprint: f5:17:a2:4f:9a:48:c6:c9:f8:a2:00:26:9f:dc:0f:48:2c:ab:30:89 +# SHA256 Fingerprint: 7e:37:cb:8b:4c:47:09:0c:ab:36:55:1b:a6:f4:5d:b8:40:68:0f:ba:16:6a:95:2d:b1:00:71:7f:43:05:3f:c2 +-----BEGIN CERTIFICATE----- +MIICRjCCAc2gAwIBAgIQC6Fa+h3foLVJRK/NJKBs7DAKBggqhkjOPQQDAzBlMQsw +CQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cu +ZGlnaWNlcnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3Qg +RzMwHhcNMTMwODAxMTIwMDAwWhcNMzgwMTE1MTIwMDAwWjBlMQswCQYDVQQGEwJV +UzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQu +Y29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgRzMwdjAQBgcq +hkjOPQIBBgUrgQQAIgNiAAQZ57ysRGXtzbg/WPuNsVepRC0FFfLvC/8QdJ+1YlJf +Zn4f5dwbRXkLzMZTCp2NXQLZqVneAlr2lSoOjThKiknGvMYDOAdfVdp+CW7if17Q +RSAPWXYQ1qAk8C3eNvJsKTmjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/ +BAQDAgGGMB0GA1UdDgQWBBTL0L2p4ZgFUaFNN6KDec6NHSrkhDAKBggqhkjOPQQD +AwNnADBkAjAlpIFFAmsSS3V0T8gj43DydXLefInwz5FyYZ5eEJJZVrmDxxDnOOlY +JjZ91eQ0hjkCMHw2U/Aw5WJjOpnitqM7mzT6HtoQknFekROn3aRukswy1vUhZscv +6pZjamVFkpUBtA== +-----END CERTIFICATE----- + +# Issuer: CN=DigiCert Global Root G2 O=DigiCert Inc OU=www.digicert.com +# Subject: CN=DigiCert Global Root G2 O=DigiCert Inc OU=www.digicert.com +# Label: "DigiCert Global Root G2" +# Serial: 4293743540046975378534879503202253541 +# MD5 Fingerprint: e4:a6:8a:c8:54:ac:52:42:46:0a:fd:72:48:1b:2a:44 +# SHA1 Fingerprint: df:3c:24:f9:bf:d6:66:76:1b:26:80:73:fe:06:d1:cc:8d:4f:82:a4 +# SHA256 Fingerprint: cb:3c:cb:b7:60:31:e5:e0:13:8f:8d:d3:9a:23:f9:de:47:ff:c3:5e:43:c1:14:4c:ea:27:d4:6a:5a:b1:cb:5f +-----BEGIN CERTIFICATE----- +MIIDjjCCAnagAwIBAgIQAzrx5qcRqaC7KGSxHQn65TANBgkqhkiG9w0BAQsFADBh +MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 +d3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH +MjAeFw0xMzA4MDExMjAwMDBaFw0zODAxMTUxMjAwMDBaMGExCzAJBgNVBAYTAlVT +MRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5j +b20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEcyMIIBIjANBgkqhkiG +9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuzfNNNx7a8myaJCtSnX/RrohCgiN9RlUyfuI +2/Ou8jqJkTx65qsGGmvPrC3oXgkkRLpimn7Wo6h+4FR1IAWsULecYxpsMNzaHxmx +1x7e/dfgy5SDN67sH0NO3Xss0r0upS/kqbitOtSZpLYl6ZtrAGCSYP9PIUkY92eQ +q2EGnI/yuum06ZIya7XzV+hdG82MHauVBJVJ8zUtluNJbd134/tJS7SsVQepj5Wz +tCO7TG1F8PapspUwtP1MVYwnSlcUfIKdzXOS0xZKBgyMUNGPHgm+F6HmIcr9g+UQ +vIOlCsRnKPZzFBQ9RnbDhxSJITRNrw9FDKZJobq7nMWxM4MphQIDAQABo0IwQDAP +BgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUTiJUIBiV +5uNu5g/6+rkS7QYXjzkwDQYJKoZIhvcNAQELBQADggEBAGBnKJRvDkhj6zHd6mcY +1Yl9PMWLSn/pvtsrF9+wX3N3KjITOYFnQoQj8kVnNeyIv/iPsGEMNKSuIEyExtv4 +NeF22d+mQrvHRAiGfzZ0JFrabA0UWTW98kndth/Jsw1HKj2ZL7tcu7XUIOGZX1NG +Fdtom/DzMNU+MeKNhJ7jitralj41E6Vf8PlwUHBHQRFXGU7Aj64GxJUTFy8bJZ91 +8rGOmaFvE7FBcf6IKshPECBV1/MUReXgRPTqh5Uykw7+U0b6LJ3/iyK5S9kJRaTe +pLiaWN0bfVKfjllDiIGknibVb63dDcY3fe0Dkhvld1927jyNxF1WW6LZZm6zNTfl +MrY= +-----END CERTIFICATE----- + +# Issuer: CN=DigiCert Global Root G3 O=DigiCert Inc OU=www.digicert.com +# Subject: CN=DigiCert Global Root G3 O=DigiCert Inc OU=www.digicert.com +# Label: "DigiCert Global Root G3" +# Serial: 7089244469030293291760083333884364146 +# MD5 Fingerprint: f5:5d:a4:50:a5:fb:28:7e:1e:0f:0d:cc:96:57:56:ca +# SHA1 Fingerprint: 7e:04:de:89:6a:3e:66:6d:00:e6:87:d3:3f:fa:d9:3b:e8:3d:34:9e +# SHA256 Fingerprint: 31:ad:66:48:f8:10:41:38:c7:38:f3:9e:a4:32:01:33:39:3e:3a:18:cc:02:29:6e:f9:7c:2a:c9:ef:67:31:d0 +-----BEGIN CERTIFICATE----- +MIICPzCCAcWgAwIBAgIQBVVWvPJepDU1w6QP1atFcjAKBggqhkjOPQQDAzBhMQsw +CQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cu +ZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAe +Fw0xMzA4MDExMjAwMDBaFw0zODAxMTUxMjAwMDBaMGExCzAJBgNVBAYTAlVTMRUw +EwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20x +IDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEczMHYwEAYHKoZIzj0CAQYF +K4EEACIDYgAE3afZu4q4C/sLfyHS8L6+c/MzXRq8NOrexpu80JX28MzQC7phW1FG +fp4tn+6OYwwX7Adw9c+ELkCDnOg/QW07rdOkFFk2eJ0DQ+4QE2xy3q6Ip6FrtUPO +Z9wj/wMco+I+o0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAd +BgNVHQ4EFgQUs9tIpPmhxdiuNkHMEWNpYim8S8YwCgYIKoZIzj0EAwMDaAAwZQIx +AK288mw/EkrRLTnDCgmXc/SINoyIJ7vmiI1Qhadj+Z4y3maTD/HMsQmP3Wyr+mt/ +oAIwOWZbwmSNuJ5Q3KjVSaLtx9zRSX8XAbjIho9OjIgrqJqpisXRAL34VOKa5Vt8 +sycX +-----END CERTIFICATE----- + +# Issuer: CN=DigiCert Trusted Root G4 O=DigiCert Inc OU=www.digicert.com +# Subject: CN=DigiCert Trusted Root G4 O=DigiCert Inc OU=www.digicert.com +# Label: "DigiCert Trusted Root G4" +# Serial: 7451500558977370777930084869016614236 +# MD5 Fingerprint: 78:f2:fc:aa:60:1f:2f:b4:eb:c9:37:ba:53:2e:75:49 +# SHA1 Fingerprint: dd:fb:16:cd:49:31:c9:73:a2:03:7d:3f:c8:3a:4d:7d:77:5d:05:e4 +# SHA256 Fingerprint: 55:2f:7b:dc:f1:a7:af:9e:6c:e6:72:01:7f:4f:12:ab:f7:72:40:c7:8e:76:1a:c2:03:d1:d9:d2:0a:c8:99:88 +-----BEGIN CERTIFICATE----- +MIIFkDCCA3igAwIBAgIQBZsbV56OITLiOQe9p3d1XDANBgkqhkiG9w0BAQwFADBi +MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 +d3cuZGlnaWNlcnQuY29tMSEwHwYDVQQDExhEaWdpQ2VydCBUcnVzdGVkIFJvb3Qg +RzQwHhcNMTMwODAxMTIwMDAwWhcNMzgwMTE1MTIwMDAwWjBiMQswCQYDVQQGEwJV +UzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQu +Y29tMSEwHwYDVQQDExhEaWdpQ2VydCBUcnVzdGVkIFJvb3QgRzQwggIiMA0GCSqG +SIb3DQEBAQUAA4ICDwAwggIKAoICAQC/5pBzaN675F1KPDAiMGkz7MKnJS7JIT3y +ithZwuEppz1Yq3aaza57G4QNxDAf8xukOBbrVsaXbR2rsnnyyhHS5F/WBTxSD1If +xp4VpX6+n6lXFllVcq9ok3DCsrp1mWpzMpTREEQQLt+C8weE5nQ7bXHiLQwb7iDV +ySAdYyktzuxeTsiT+CFhmzTrBcZe7FsavOvJz82sNEBfsXpm7nfISKhmV1efVFiO +DCu3T6cw2Vbuyntd463JT17lNecxy9qTXtyOj4DatpGYQJB5w3jHtrHEtWoYOAMQ +jdjUN6QuBX2I9YI+EJFwq1WCQTLX2wRzKm6RAXwhTNS8rhsDdV14Ztk6MUSaM0C/ +CNdaSaTC5qmgZ92kJ7yhTzm1EVgX9yRcRo9k98FpiHaYdj1ZXUJ2h4mXaXpI8OCi +EhtmmnTK3kse5w5jrubU75KSOp493ADkRSWJtppEGSt+wJS00mFt6zPZxd9LBADM +fRyVw4/3IbKyEbe7f/LVjHAsQWCqsWMYRJUadmJ+9oCw++hkpjPRiQfhvbfmQ6QY +uKZ3AeEPlAwhHbJUKSWJbOUOUlFHdL4mrLZBdd56rF+NP8m800ERElvlEFDrMcXK +chYiCd98THU/Y+whX8QgUWtvsauGi0/C1kVfnSD8oR7FwI+isX4KJpn15GkvmB0t +9dmpsh3lGwIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIB +hjAdBgNVHQ4EFgQU7NfjgtJxXWRM3y5nP+e6mK4cD08wDQYJKoZIhvcNAQEMBQAD +ggIBALth2X2pbL4XxJEbw6GiAI3jZGgPVs93rnD5/ZpKmbnJeFwMDF/k5hQpVgs2 +SV1EY+CtnJYYZhsjDT156W1r1lT40jzBQ0CuHVD1UvyQO7uYmWlrx8GnqGikJ9yd ++SeuMIW59mdNOj6PWTkiU0TryF0Dyu1Qen1iIQqAyHNm0aAFYF/opbSnr6j3bTWc +fFqK1qI4mfN4i/RN0iAL3gTujJtHgXINwBQy7zBZLq7gcfJW5GqXb5JQbZaNaHqa +sjYUegbyJLkJEVDXCLG4iXqEI2FCKeWjzaIgQdfRnGTZ6iahixTXTBmyUEFxPT9N +cCOGDErcgdLMMpSEDQgJlxxPwO5rIHQw0uA5NBCFIRUBCOhVMt5xSdkoF1BN5r5N +0XWs0Mr7QbhDparTwwVETyw2m+L64kW4I1NsBm9nVX9GtUw/bihaeSbSpKhil9Ie +4u1Ki7wb/UdKDd9nZn6yW0HQO+T0O/QEY+nvwlQAUaCKKsnOeMzV6ocEGLPOr0mI +r/OSmbaz5mEP0oUA51Aa5BuVnRmhuZyxm7EAHu/QD09CbMkKvO5D+jpxpchNJqU1 +/YldvIViHTLSoCtU7ZpXwdv6EM8Zt4tKG48BtieVU+i2iW1bvGjUI+iLUaJW+fCm +gKDWHrO8Dw9TdSmq6hN35N6MgSGtBxBHEa2HPQfRdbzP82Z+ +-----END CERTIFICATE----- + +# Issuer: CN=COMODO RSA Certification Authority O=COMODO CA Limited +# Subject: CN=COMODO RSA Certification Authority O=COMODO CA Limited +# Label: "COMODO RSA Certification Authority" +# Serial: 101909084537582093308941363524873193117 +# MD5 Fingerprint: 1b:31:b0:71:40:36:cc:14:36:91:ad:c4:3e:fd:ec:18 +# SHA1 Fingerprint: af:e5:d2:44:a8:d1:19:42:30:ff:47:9f:e2:f8:97:bb:cd:7a:8c:b4 +# SHA256 Fingerprint: 52:f0:e1:c4:e5:8e:c6:29:29:1b:60:31:7f:07:46:71:b8:5d:7e:a8:0d:5b:07:27:34:63:53:4b:32:b4:02:34 +-----BEGIN CERTIFICATE----- +MIIF2DCCA8CgAwIBAgIQTKr5yttjb+Af907YWwOGnTANBgkqhkiG9w0BAQwFADCB +hTELMAkGA1UEBhMCR0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4G +A1UEBxMHU2FsZm9yZDEaMBgGA1UEChMRQ09NT0RPIENBIExpbWl0ZWQxKzApBgNV +BAMTIkNPTU9ETyBSU0EgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMTAwMTE5 +MDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCBhTELMAkGA1UEBhMCR0IxGzAZBgNVBAgT +EkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEaMBgGA1UEChMR +Q09NT0RPIENBIExpbWl0ZWQxKzApBgNVBAMTIkNPTU9ETyBSU0EgQ2VydGlmaWNh +dGlvbiBBdXRob3JpdHkwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCR +6FSS0gpWsawNJN3Fz0RndJkrN6N9I3AAcbxT38T6KhKPS38QVr2fcHK3YX/JSw8X +pz3jsARh7v8Rl8f0hj4K+j5c+ZPmNHrZFGvnnLOFoIJ6dq9xkNfs/Q36nGz637CC +9BR++b7Epi9Pf5l/tfxnQ3K9DADWietrLNPtj5gcFKt+5eNu/Nio5JIk2kNrYrhV +/erBvGy2i/MOjZrkm2xpmfh4SDBF1a3hDTxFYPwyllEnvGfDyi62a+pGx8cgoLEf +Zd5ICLqkTqnyg0Y3hOvozIFIQ2dOciqbXL1MGyiKXCJ7tKuY2e7gUYPDCUZObT6Z ++pUX2nwzV0E8jVHtC7ZcryxjGt9XyD+86V3Em69FmeKjWiS0uqlWPc9vqv9JWL7w +qP/0uK3pN/u6uPQLOvnoQ0IeidiEyxPx2bvhiWC4jChWrBQdnArncevPDt09qZah +SL0896+1DSJMwBGB7FY79tOi4lu3sgQiUpWAk2nojkxl8ZEDLXB0AuqLZxUpaVIC +u9ffUGpVRr+goyhhf3DQw6KqLCGqR84onAZFdr+CGCe01a60y1Dma/RMhnEw6abf +Fobg2P9A3fvQQoh/ozM6LlweQRGBY84YcWsr7KaKtzFcOmpH4MN5WdYgGq/yapiq +crxXStJLnbsQ/LBMQeXtHT1eKJ2czL+zUdqnR+WEUwIDAQABo0IwQDAdBgNVHQ4E +FgQUu69+Aj36pvE8hI6t7jiY7NkyMtQwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB +/wQFMAMBAf8wDQYJKoZIhvcNAQEMBQADggIBAArx1UaEt65Ru2yyTUEUAJNMnMvl +wFTPoCWOAvn9sKIN9SCYPBMtrFaisNZ+EZLpLrqeLppysb0ZRGxhNaKatBYSaVqM +4dc+pBroLwP0rmEdEBsqpIt6xf4FpuHA1sj+nq6PK7o9mfjYcwlYRm6mnPTXJ9OV +2jeDchzTc+CiR5kDOF3VSXkAKRzH7JsgHAckaVd4sjn8OoSgtZx8jb8uk2Intzna +FxiuvTwJaP+EmzzV1gsD41eeFPfR60/IvYcjt7ZJQ3mFXLrrkguhxuhoqEwWsRqZ +CuhTLJK7oQkYdQxlqHvLI7cawiiFwxv/0Cti76R7CZGYZ4wUAc1oBmpjIXUDgIiK +boHGhfKppC3n9KUkEEeDys30jXlYsQab5xoq2Z0B15R97QNKyvDb6KkBPvVWmcke +jkk9u+UJueBPSZI9FoJAzMxZxuY67RIuaTxslbH9qh17f4a+Hg4yRvv7E491f0yL +S0Zj/gA0QHDBw7mh3aZw4gSzQbzpgJHqZJx64SIDqZxubw5lT2yHh17zbqD5daWb +QOhTsiedSrnAdyGN/4fy3ryM7xfft0kL0fJuMAsaDk527RH89elWsn2/x20Kk4yl +0MC2Hb46TpSi125sC8KKfPog88Tk5c0NqMuRkrF8hey1FGlmDoLnzc7ILaZRfyHB +NVOFBkpdn627G190 +-----END CERTIFICATE----- + +# Issuer: CN=USERTrust RSA Certification Authority O=The USERTRUST Network +# Subject: CN=USERTrust RSA Certification Authority O=The USERTRUST Network +# Label: "USERTrust RSA Certification Authority" +# Serial: 2645093764781058787591871645665788717 +# MD5 Fingerprint: 1b:fe:69:d1:91:b7:19:33:a3:72:a8:0f:e1:55:e5:b5 +# SHA1 Fingerprint: 2b:8f:1b:57:33:0d:bb:a2:d0:7a:6c:51:f7:0e:e9:0d:da:b9:ad:8e +# SHA256 Fingerprint: e7:93:c9:b0:2f:d8:aa:13:e2:1c:31:22:8a:cc:b0:81:19:64:3b:74:9c:89:89:64:b1:74:6d:46:c3:d4:cb:d2 +-----BEGIN CERTIFICATE----- +MIIF3jCCA8agAwIBAgIQAf1tMPyjylGoG7xkDjUDLTANBgkqhkiG9w0BAQwFADCB +iDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCk5ldyBKZXJzZXkxFDASBgNVBAcTC0pl +cnNleSBDaXR5MR4wHAYDVQQKExVUaGUgVVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNV +BAMTJVVTRVJUcnVzdCBSU0EgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMTAw +MjAxMDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCBiDELMAkGA1UEBhMCVVMxEzARBgNV +BAgTCk5ldyBKZXJzZXkxFDASBgNVBAcTC0plcnNleSBDaXR5MR4wHAYDVQQKExVU +aGUgVVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNVBAMTJVVTRVJUcnVzdCBSU0EgQ2Vy +dGlmaWNhdGlvbiBBdXRob3JpdHkwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIK +AoICAQCAEmUXNg7D2wiz0KxXDXbtzSfTTK1Qg2HiqiBNCS1kCdzOiZ/MPans9s/B +3PHTsdZ7NygRK0faOca8Ohm0X6a9fZ2jY0K2dvKpOyuR+OJv0OwWIJAJPuLodMkY +tJHUYmTbf6MG8YgYapAiPLz+E/CHFHv25B+O1ORRxhFnRghRy4YUVD+8M/5+bJz/ +Fp0YvVGONaanZshyZ9shZrHUm3gDwFA66Mzw3LyeTP6vBZY1H1dat//O+T23LLb2 +VN3I5xI6Ta5MirdcmrS3ID3KfyI0rn47aGYBROcBTkZTmzNg95S+UzeQc0PzMsNT +79uq/nROacdrjGCT3sTHDN/hMq7MkztReJVni+49Vv4M0GkPGw/zJSZrM233bkf6 +c0Plfg6lZrEpfDKEY1WJxA3Bk1QwGROs0303p+tdOmw1XNtB1xLaqUkL39iAigmT +Yo61Zs8liM2EuLE/pDkP2QKe6xJMlXzzawWpXhaDzLhn4ugTncxbgtNMs+1b/97l +c6wjOy0AvzVVdAlJ2ElYGn+SNuZRkg7zJn0cTRe8yexDJtC/QV9AqURE9JnnV4ee +UB9XVKg+/XRjL7FQZQnmWEIuQxpMtPAlR1n6BB6T1CZGSlCBst6+eLf8ZxXhyVeE +Hg9j1uliutZfVS7qXMYoCAQlObgOK6nyTJccBz8NUvXt7y+CDwIDAQABo0IwQDAd +BgNVHQ4EFgQUU3m/WqorSs9UgOHYm8Cd8rIDZsswDgYDVR0PAQH/BAQDAgEGMA8G +A1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEMBQADggIBAFzUfA3P9wF9QZllDHPF +Up/L+M+ZBn8b2kMVn54CVVeWFPFSPCeHlCjtHzoBN6J2/FNQwISbxmtOuowhT6KO +VWKR82kV2LyI48SqC/3vqOlLVSoGIG1VeCkZ7l8wXEskEVX/JJpuXior7gtNn3/3 +ATiUFJVDBwn7YKnuHKsSjKCaXqeYalltiz8I+8jRRa8YFWSQEg9zKC7F4iRO/Fjs +8PRF/iKz6y+O0tlFYQXBl2+odnKPi4w2r78NBc5xjeambx9spnFixdjQg3IM8WcR +iQycE0xyNN+81XHfqnHd4blsjDwSXWXavVcStkNr/+XeTWYRUc+ZruwXtuhxkYze +Sf7dNXGiFSeUHM9h4ya7b6NnJSFd5t0dCy5oGzuCr+yDZ4XUmFF0sbmZgIn/f3gZ +XHlKYC6SQK5MNyosycdiyA5d9zZbyuAlJQG03RoHnHcAP9Dc1ew91Pq7P8yF1m9/ +qS3fuQL39ZeatTXaw2ewh0qpKJ4jjv9cJ2vhsE/zB+4ALtRZh8tSQZXq9EfX7mRB +VXyNWQKV3WKdwrnuWih0hKWbt5DHDAff9Yk2dDLWKMGwsAvgnEzDHNb842m1R0aB +L6KCq9NjRHDEjf8tM7qtj3u1cIiuPhnPQCjY/MiQu12ZIvVS5ljFH4gxQ+6IHdfG +jjxDah2nGN59PRbxYvnKkKj9 +-----END CERTIFICATE----- + +# Issuer: CN=USERTrust ECC Certification Authority O=The USERTRUST Network +# Subject: CN=USERTrust ECC Certification Authority O=The USERTRUST Network +# Label: "USERTrust ECC Certification Authority" +# Serial: 123013823720199481456569720443997572134 +# MD5 Fingerprint: fa:68:bc:d9:b5:7f:ad:fd:c9:1d:06:83:28:cc:24:c1 +# SHA1 Fingerprint: d1:cb:ca:5d:b2:d5:2a:7f:69:3b:67:4d:e5:f0:5a:1d:0c:95:7d:f0 +# SHA256 Fingerprint: 4f:f4:60:d5:4b:9c:86:da:bf:bc:fc:57:12:e0:40:0d:2b:ed:3f:bc:4d:4f:bd:aa:86:e0:6a:dc:d2:a9:ad:7a +-----BEGIN CERTIFICATE----- +MIICjzCCAhWgAwIBAgIQXIuZxVqUxdJxVt7NiYDMJjAKBggqhkjOPQQDAzCBiDEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCk5ldyBKZXJzZXkxFDASBgNVBAcTC0plcnNl +eSBDaXR5MR4wHAYDVQQKExVUaGUgVVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNVBAMT +JVVTRVJUcnVzdCBFQ0MgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMTAwMjAx +MDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCBiDELMAkGA1UEBhMCVVMxEzARBgNVBAgT +Ck5ldyBKZXJzZXkxFDASBgNVBAcTC0plcnNleSBDaXR5MR4wHAYDVQQKExVUaGUg +VVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNVBAMTJVVTRVJUcnVzdCBFQ0MgQ2VydGlm +aWNhdGlvbiBBdXRob3JpdHkwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAAQarFRaqflo +I+d61SRvU8Za2EurxtW20eZzca7dnNYMYf3boIkDuAUU7FfO7l0/4iGzzvfUinng +o4N+LZfQYcTxmdwlkWOrfzCjtHDix6EznPO/LlxTsV+zfTJ/ijTjeXmjQjBAMB0G +A1UdDgQWBBQ64QmG1M8ZwpZ2dEl23OA1xmNjmjAOBgNVHQ8BAf8EBAMCAQYwDwYD +VR0TAQH/BAUwAwEB/zAKBggqhkjOPQQDAwNoADBlAjA2Z6EWCNzklwBBHU6+4WMB +zzuqQhFkoJ2UOQIReVx7Hfpkue4WQrO/isIJxOzksU0CMQDpKmFHjFJKS04YcPbW +RNZu9YO6bVi9JNlWSOrvxKJGgYhqOkbRqZtNyWHa0V1Xahg= +-----END CERTIFICATE----- + +# Issuer: CN=GlobalSign O=GlobalSign OU=GlobalSign ECC Root CA - R4 +# Subject: CN=GlobalSign O=GlobalSign OU=GlobalSign ECC Root CA - R4 +# Label: "GlobalSign ECC Root CA - R4" +# Serial: 14367148294922964480859022125800977897474 +# MD5 Fingerprint: 20:f0:27:68:d1:7e:a0:9d:0e:e6:2a:ca:df:5c:89:8e +# SHA1 Fingerprint: 69:69:56:2e:40:80:f4:24:a1:e7:19:9f:14:ba:f3:ee:58:ab:6a:bb +# SHA256 Fingerprint: be:c9:49:11:c2:95:56:76:db:6c:0a:55:09:86:d7:6e:3b:a0:05:66:7c:44:2c:97:62:b4:fb:b7:73:de:22:8c +-----BEGIN CERTIFICATE----- +MIIB4TCCAYegAwIBAgIRKjikHJYKBN5CsiilC+g0mAIwCgYIKoZIzj0EAwIwUDEk +MCIGA1UECxMbR2xvYmFsU2lnbiBFQ0MgUm9vdCBDQSAtIFI0MRMwEQYDVQQKEwpH +bG9iYWxTaWduMRMwEQYDVQQDEwpHbG9iYWxTaWduMB4XDTEyMTExMzAwMDAwMFoX +DTM4MDExOTAzMTQwN1owUDEkMCIGA1UECxMbR2xvYmFsU2lnbiBFQ0MgUm9vdCBD +QSAtIFI0MRMwEQYDVQQKEwpHbG9iYWxTaWduMRMwEQYDVQQDEwpHbG9iYWxTaWdu +MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEuMZ5049sJQ6fLjkZHAOkrprlOQcJ +FspjsbmG+IpXwVfOQvpzofdlQv8ewQCybnMO/8ch5RikqtlxP6jUuc6MHaNCMEAw +DgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFFSwe61F +uOJAf/sKbvu+M8k8o4TVMAoGCCqGSM49BAMCA0gAMEUCIQDckqGgE6bPA7DmxCGX +kPoUVy0D7O48027KqGx2vKLeuwIgJ6iFJzWbVsaj8kfSt24bAgAXqmemFZHe+pTs +ewv4n4Q= +-----END CERTIFICATE----- + +# Issuer: CN=GlobalSign O=GlobalSign OU=GlobalSign ECC Root CA - R5 +# Subject: CN=GlobalSign O=GlobalSign OU=GlobalSign ECC Root CA - R5 +# Label: "GlobalSign ECC Root CA - R5" +# Serial: 32785792099990507226680698011560947931244 +# MD5 Fingerprint: 9f:ad:3b:1c:02:1e:8a:ba:17:74:38:81:0c:a2:bc:08 +# SHA1 Fingerprint: 1f:24:c6:30:cd:a4:18:ef:20:69:ff:ad:4f:dd:5f:46:3a:1b:69:aa +# SHA256 Fingerprint: 17:9f:bc:14:8a:3d:d0:0f:d2:4e:a1:34:58:cc:43:bf:a7:f5:9c:81:82:d7:83:a5:13:f6:eb:ec:10:0c:89:24 +-----BEGIN CERTIFICATE----- +MIICHjCCAaSgAwIBAgIRYFlJ4CYuu1X5CneKcflK2GwwCgYIKoZIzj0EAwMwUDEk +MCIGA1UECxMbR2xvYmFsU2lnbiBFQ0MgUm9vdCBDQSAtIFI1MRMwEQYDVQQKEwpH +bG9iYWxTaWduMRMwEQYDVQQDEwpHbG9iYWxTaWduMB4XDTEyMTExMzAwMDAwMFoX +DTM4MDExOTAzMTQwN1owUDEkMCIGA1UECxMbR2xvYmFsU2lnbiBFQ0MgUm9vdCBD +QSAtIFI1MRMwEQYDVQQKEwpHbG9iYWxTaWduMRMwEQYDVQQDEwpHbG9iYWxTaWdu +MHYwEAYHKoZIzj0CAQYFK4EEACIDYgAER0UOlvt9Xb/pOdEh+J8LttV7HpI6SFkc +8GIxLcB6KP4ap1yztsyX50XUWPrRd21DosCHZTQKH3rd6zwzocWdTaRvQZU4f8ke +hOvRnkmSh5SHDDqFSmafnVmTTZdhBoZKo0IwQDAOBgNVHQ8BAf8EBAMCAQYwDwYD +VR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUPeYpSJvqB8ohREom3m7e0oPQn1kwCgYI +KoZIzj0EAwMDaAAwZQIxAOVpEslu28YxuglB4Zf4+/2a4n0Sye18ZNPLBSWLVtmg +515dTguDnFt2KaAJJiFqYgIwcdK1j1zqO+F4CYWodZI7yFz9SO8NdCKoCOJuxUnO +xwy8p2Fp8fc74SrL+SvzZpA3 +-----END CERTIFICATE----- + +# Issuer: CN=Staat der Nederlanden EV Root CA O=Staat der Nederlanden +# Subject: CN=Staat der Nederlanden EV Root CA O=Staat der Nederlanden +# Label: "Staat der Nederlanden EV Root CA" +# Serial: 10000013 +# MD5 Fingerprint: fc:06:af:7b:e8:1a:f1:9a:b4:e8:d2:70:1f:c0:f5:ba +# SHA1 Fingerprint: 76:e2:7e:c1:4f:db:82:c1:c0:a6:75:b5:05:be:3d:29:b4:ed:db:bb +# SHA256 Fingerprint: 4d:24:91:41:4c:fe:95:67:46:ec:4c:ef:a6:cf:6f:72:e2:8a:13:29:43:2f:9d:8a:90:7a:c4:cb:5d:ad:c1:5a +-----BEGIN CERTIFICATE----- +MIIFcDCCA1igAwIBAgIEAJiWjTANBgkqhkiG9w0BAQsFADBYMQswCQYDVQQGEwJO +TDEeMBwGA1UECgwVU3RhYXQgZGVyIE5lZGVybGFuZGVuMSkwJwYDVQQDDCBTdGFh +dCBkZXIgTmVkZXJsYW5kZW4gRVYgUm9vdCBDQTAeFw0xMDEyMDgxMTE5MjlaFw0y +MjEyMDgxMTEwMjhaMFgxCzAJBgNVBAYTAk5MMR4wHAYDVQQKDBVTdGFhdCBkZXIg +TmVkZXJsYW5kZW4xKTAnBgNVBAMMIFN0YWF0IGRlciBOZWRlcmxhbmRlbiBFViBS +b290IENBMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA48d+ifkkSzrS +M4M1LGns3Amk41GoJSt5uAg94JG6hIXGhaTK5skuU6TJJB79VWZxXSzFYGgEt9nC +UiY4iKTWO0Cmws0/zZiTs1QUWJZV1VD+hq2kY39ch/aO5ieSZxeSAgMs3NZmdO3d +Z//BYY1jTw+bbRcwJu+r0h8QoPnFfxZpgQNH7R5ojXKhTbImxrpsX23Wr9GxE46p +rfNeaXUmGD5BKyF/7otdBwadQ8QpCiv8Kj6GyzyDOvnJDdrFmeK8eEEzduG/L13l +pJhQDBXd4Pqcfzho0LKmeqfRMb1+ilgnQ7O6M5HTp5gVXJrm0w912fxBmJc+qiXb +j5IusHsMX/FjqTf5m3VpTCgmJdrV8hJwRVXj33NeN/UhbJCONVrJ0yPr08C+eKxC +KFhmpUZtcALXEPlLVPxdhkqHz3/KRawRWrUgUY0viEeXOcDPusBCAUCZSCELa6fS +/ZbV0b5GnUngC6agIk440ME8MLxwjyx1zNDFjFE7PZQIZCZhfbnDZY8UnCHQqv0X +cgOPvZuM5l5Tnrmd74K74bzickFbIZTTRTeU0d8JOV3nI6qaHcptqAqGhYqCvkIH +1vI4gnPah1vlPNOePqc7nvQDs/nxfRN0Av+7oeX6AHkcpmZBiFxgV6YuCcS6/ZrP +px9Aw7vMWgpVSzs4dlG4Y4uElBbmVvMCAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB +/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFP6rAJCYniT8qcwaivsnuL8wbqg7 +MA0GCSqGSIb3DQEBCwUAA4ICAQDPdyxuVr5Os7aEAJSrR8kN0nbHhp8dB9O2tLsI +eK9p0gtJ3jPFrK3CiAJ9Brc1AsFgyb/E6JTe1NOpEyVa/m6irn0F3H3zbPB+po3u +2dfOWBfoqSmuc0iH55vKbimhZF8ZE/euBhD/UcabTVUlT5OZEAFTdfETzsemQUHS +v4ilf0X8rLiltTMMgsT7B/Zq5SWEXwbKwYY5EdtYzXc7LMJMD16a4/CrPmEbUCTC +wPTxGfARKbalGAKb12NMcIxHowNDXLldRqANb/9Zjr7dn3LDWyvfjFvO5QxGbJKy +CqNMVEIYFRIYvdr8unRu/8G2oGTYqV9Vrp9canaW2HNnh/tNf1zuacpzEPuKqf2e +vTY4SUmH9A4U8OmHuD+nT3pajnnUk+S7aFKErGzp85hwVXIy+TSrK0m1zSBi5Dp6 +Z2Orltxtrpfs/J92VoguZs9btsmksNcFuuEnL5O7Jiqik7Ab846+HUCjuTaPPoIa +Gl6I6lD4WeKDRikL40Rc4ZW2aZCaFG+XroHPaO+Zmr615+F/+PoTRxZMzG0IQOeL +eG9QgkRQP2YGiqtDhFZKDyAthg710tvSeopLzaXoTvFeJiUBWSOgftL2fiFX1ye8 +FVdMpEbB4IMeDExNH08GGeL5qPQ6gqGyeUN51q1veieQA6TqJIc/2b3Z6fJfUEkc +7uzXLg== +-----END CERTIFICATE----- + +# Issuer: CN=IdenTrust Commercial Root CA 1 O=IdenTrust +# Subject: CN=IdenTrust Commercial Root CA 1 O=IdenTrust +# Label: "IdenTrust Commercial Root CA 1" +# Serial: 13298821034946342390520003877796839426 +# MD5 Fingerprint: b3:3e:77:73:75:ee:a0:d3:e3:7e:49:63:49:59:bb:c7 +# SHA1 Fingerprint: df:71:7e:aa:4a:d9:4e:c9:55:84:99:60:2d:48:de:5f:bc:f0:3a:25 +# SHA256 Fingerprint: 5d:56:49:9b:e4:d2:e0:8b:cf:ca:d0:8a:3e:38:72:3d:50:50:3b:de:70:69:48:e4:2f:55:60:30:19:e5:28:ae +-----BEGIN CERTIFICATE----- +MIIFYDCCA0igAwIBAgIQCgFCgAAAAUUjyES1AAAAAjANBgkqhkiG9w0BAQsFADBK +MQswCQYDVQQGEwJVUzESMBAGA1UEChMJSWRlblRydXN0MScwJQYDVQQDEx5JZGVu +VHJ1c3QgQ29tbWVyY2lhbCBSb290IENBIDEwHhcNMTQwMTE2MTgxMjIzWhcNMzQw +MTE2MTgxMjIzWjBKMQswCQYDVQQGEwJVUzESMBAGA1UEChMJSWRlblRydXN0MScw +JQYDVQQDEx5JZGVuVHJ1c3QgQ29tbWVyY2lhbCBSb290IENBIDEwggIiMA0GCSqG +SIb3DQEBAQUAA4ICDwAwggIKAoICAQCnUBneP5k91DNG8W9RYYKyqU+PZ4ldhNlT +3Qwo2dfw/66VQ3KZ+bVdfIrBQuExUHTRgQ18zZshq0PirK1ehm7zCYofWjK9ouuU ++ehcCuz/mNKvcbO0U59Oh++SvL3sTzIwiEsXXlfEU8L2ApeN2WIrvyQfYo3fw7gp +S0l4PJNgiCL8mdo2yMKi1CxUAGc1bnO/AljwpN3lsKImesrgNqUZFvX9t++uP0D1 +bVoE/c40yiTcdCMbXTMTEl3EASX2MN0CXZ/g1Ue9tOsbobtJSdifWwLziuQkkORi +T0/Br4sOdBeo0XKIanoBScy0RnnGF7HamB4HWfp1IYVl3ZBWzvurpWCdxJ35UrCL +vYf5jysjCiN2O/cz4ckA82n5S6LgTrx+kzmEB/dEcH7+B1rlsazRGMzyNeVJSQjK +Vsk9+w8YfYs7wRPCTY/JTw436R+hDmrfYi7LNQZReSzIJTj0+kuniVyc0uMNOYZK +dHzVWYfCP04MXFL0PfdSgvHqo6z9STQaKPNBiDoT7uje/5kdX7rL6B7yuVBgwDHT +c+XvvqDtMwt0viAgxGds8AgDelWAf0ZOlqf0Hj7h9tgJ4TNkK2PXMl6f+cB7D3hv +l7yTmvmcEpB4eoCHFddydJxVdHixuuFucAS6T6C6aMN7/zHwcz09lCqxC0EOoP5N +iGVreTO01wIDAQABo0IwQDAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB +/zAdBgNVHQ4EFgQU7UQZwNPwBovupHu+QucmVMiONnYwDQYJKoZIhvcNAQELBQAD +ggIBAA2ukDL2pkt8RHYZYR4nKM1eVO8lvOMIkPkp165oCOGUAFjvLi5+U1KMtlwH +6oi6mYtQlNeCgN9hCQCTrQ0U5s7B8jeUeLBfnLOic7iPBZM4zY0+sLj7wM+x8uwt +LRvM7Kqas6pgghstO8OEPVeKlh6cdbjTMM1gCIOQ045U8U1mwF10A0Cj7oV+wh93 +nAbowacYXVKV7cndJZ5t+qntozo00Fl72u1Q8zW/7esUTTHHYPTa8Yec4kjixsU3 ++wYQ+nVZZjFHKdp2mhzpgq7vmrlR94gjmmmVYjzlVYA211QC//G5Xc7UI2/YRYRK +W2XviQzdFKcgyxilJbQN+QHwotL0AMh0jqEqSI5l2xPE4iUXfeu+h1sXIFRRk0pT +AwvsXcoz7WL9RccvW9xYoIA55vrX/hMUpu09lEpCdNTDd1lzzY9GvlU47/rokTLq +l1gEIt44w8y8bckzOmoKaT+gyOpyj4xjhiO9bTyWnpXgSUyqorkqG5w2gXjtw+hG +4iZZRHUe2XWJUc0QhJ1hYMtd+ZciTY6Y5uN/9lu7rs3KSoFrXgvzUeF0K+l+J6fZ +mUlO+KWA2yUPHGNiiskzZ2s8EIPGrd6ozRaOjfAHN3Gf8qv8QfXBi+wAN10J5U6A +7/qxXDgGpRtK4dw4LTzcqx+QGtVKnO7RcGzM7vRX+Bi6hG6H +-----END CERTIFICATE----- + +# Issuer: CN=IdenTrust Public Sector Root CA 1 O=IdenTrust +# Subject: CN=IdenTrust Public Sector Root CA 1 O=IdenTrust +# Label: "IdenTrust Public Sector Root CA 1" +# Serial: 13298821034946342390521976156843933698 +# MD5 Fingerprint: 37:06:a5:b0:fc:89:9d:ba:f4:6b:8c:1a:64:cd:d5:ba +# SHA1 Fingerprint: ba:29:41:60:77:98:3f:f4:f3:ef:f2:31:05:3b:2e:ea:6d:4d:45:fd +# SHA256 Fingerprint: 30:d0:89:5a:9a:44:8a:26:20:91:63:55:22:d1:f5:20:10:b5:86:7a:ca:e1:2c:78:ef:95:8f:d4:f4:38:9f:2f +-----BEGIN CERTIFICATE----- +MIIFZjCCA06gAwIBAgIQCgFCgAAAAUUjz0Z8AAAAAjANBgkqhkiG9w0BAQsFADBN +MQswCQYDVQQGEwJVUzESMBAGA1UEChMJSWRlblRydXN0MSowKAYDVQQDEyFJZGVu +VHJ1c3QgUHVibGljIFNlY3RvciBSb290IENBIDEwHhcNMTQwMTE2MTc1MzMyWhcN +MzQwMTE2MTc1MzMyWjBNMQswCQYDVQQGEwJVUzESMBAGA1UEChMJSWRlblRydXN0 +MSowKAYDVQQDEyFJZGVuVHJ1c3QgUHVibGljIFNlY3RvciBSb290IENBIDEwggIi +MA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQC2IpT8pEiv6EdrCvsnduTyP4o7 +ekosMSqMjbCpwzFrqHd2hCa2rIFCDQjrVVi7evi8ZX3yoG2LqEfpYnYeEe4IFNGy +RBb06tD6Hi9e28tzQa68ALBKK0CyrOE7S8ItneShm+waOh7wCLPQ5CQ1B5+ctMlS +bdsHyo+1W/CD80/HLaXIrcuVIKQxKFdYWuSNG5qrng0M8gozOSI5Cpcu81N3uURF +/YTLNiCBWS2ab21ISGHKTN9T0a9SvESfqy9rg3LvdYDaBjMbXcjaY8ZNzaxmMc3R +3j6HEDbhuaR672BQssvKplbgN6+rNBM5Jeg5ZuSYeqoSmJxZZoY+rfGwyj4GD3vw +EUs3oERte8uojHH01bWRNszwFcYr3lEXsZdMUD2xlVl8BX0tIdUAvwFnol57plzy +9yLxkA2T26pEUWbMfXYD62qoKjgZl3YNa4ph+bz27nb9cCvdKTz4Ch5bQhyLVi9V +GxyhLrXHFub4qjySjmm2AcG1hp2JDws4lFTo6tyePSW8Uybt1as5qsVATFSrsrTZ +2fjXctscvG29ZV/viDUqZi/u9rNl8DONfJhBaUYPQxxp+pu10GFqzcpL2UyQRqsV +WaFHVCkugyhfHMKiq3IXAAaOReyL4jM9f9oZRORicsPfIsbyVtTdX5Vy7W1f90gD +W/3FKqD2cyOEEBsB5wIDAQABo0IwQDAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/ +BAUwAwEB/zAdBgNVHQ4EFgQU43HgntinQtnbcZFrlJPrw6PRFKMwDQYJKoZIhvcN +AQELBQADggIBAEf63QqwEZE4rU1d9+UOl1QZgkiHVIyqZJnYWv6IAcVYpZmxI1Qj +t2odIFflAWJBF9MJ23XLblSQdf4an4EKwt3X9wnQW3IV5B4Jaj0z8yGa5hV+rVHV +DRDtfULAj+7AmgjVQdZcDiFpboBhDhXAuM/FSRJSzL46zNQuOAXeNf0fb7iAaJg9 +TaDKQGXSc3z1i9kKlT/YPyNtGtEqJBnZhbMX73huqVjRI9PHE+1yJX9dsXNw0H8G +lwmEKYBhHfpe/3OsoOOJuBxxFcbeMX8S3OFtm6/n6J91eEyrRjuazr8FGF1NFTwW +mhlQBJqymm9li1JfPFgEKCXAZmExfrngdbkaqIHWchezxQMxNRF4eKLg6TCMf4Df +WN88uieW4oA0beOY02QnrEh+KHdcxiVhJfiFDGX6xDIvpZgF5PgLZxYWxoK4Mhn5 ++bl53B/N66+rDt0b20XkeucC4pVd/GnwU2lhlXV5C15V5jgclKlZM57IcXR5f1GJ +tshquDDIajjDbp7hNxbqBWJMWxJH7ae0s1hWx0nzfxJoCTFx8G34Tkf71oXuxVhA +GaQdp/lLQzfcaFpPz+vCZHTetBXZ9FRUGi8c15dxVJCO2SCdUyt/q4/i6jC8UDfv +8Ue1fXwsBOxonbRJRBD0ckscZOf85muQ3Wl9af0AVqW3rLatt8o+Ae+c +-----END CERTIFICATE----- + +# Issuer: CN=Entrust Root Certification Authority - G2 O=Entrust, Inc. OU=See www.entrust.net/legal-terms/(c) 2009 Entrust, Inc. - for authorized use only +# Subject: CN=Entrust Root Certification Authority - G2 O=Entrust, Inc. OU=See www.entrust.net/legal-terms/(c) 2009 Entrust, Inc. - for authorized use only +# Label: "Entrust Root Certification Authority - G2" +# Serial: 1246989352 +# MD5 Fingerprint: 4b:e2:c9:91:96:65:0c:f4:0e:5a:93:92:a0:0a:fe:b2 +# SHA1 Fingerprint: 8c:f4:27:fd:79:0c:3a:d1:66:06:8d:e8:1e:57:ef:bb:93:22:72:d4 +# SHA256 Fingerprint: 43:df:57:74:b0:3e:7f:ef:5f:e4:0d:93:1a:7b:ed:f1:bb:2e:6b:42:73:8c:4e:6d:38:41:10:3d:3a:a7:f3:39 +-----BEGIN CERTIFICATE----- +MIIEPjCCAyagAwIBAgIESlOMKDANBgkqhkiG9w0BAQsFADCBvjELMAkGA1UEBhMC +VVMxFjAUBgNVBAoTDUVudHJ1c3QsIEluYy4xKDAmBgNVBAsTH1NlZSB3d3cuZW50 +cnVzdC5uZXQvbGVnYWwtdGVybXMxOTA3BgNVBAsTMChjKSAyMDA5IEVudHJ1c3Qs +IEluYy4gLSBmb3IgYXV0aG9yaXplZCB1c2Ugb25seTEyMDAGA1UEAxMpRW50cnVz +dCBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRzIwHhcNMDkwNzA3MTcy +NTU0WhcNMzAxMjA3MTc1NTU0WjCBvjELMAkGA1UEBhMCVVMxFjAUBgNVBAoTDUVu +dHJ1c3QsIEluYy4xKDAmBgNVBAsTH1NlZSB3d3cuZW50cnVzdC5uZXQvbGVnYWwt +dGVybXMxOTA3BgNVBAsTMChjKSAyMDA5IEVudHJ1c3QsIEluYy4gLSBmb3IgYXV0 +aG9yaXplZCB1c2Ugb25seTEyMDAGA1UEAxMpRW50cnVzdCBSb290IENlcnRpZmlj +YXRpb24gQXV0aG9yaXR5IC0gRzIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEK +AoIBAQC6hLZy254Ma+KZ6TABp3bqMriVQRrJ2mFOWHLP/vaCeb9zYQYKpSfYs1/T +RU4cctZOMvJyig/3gxnQaoCAAEUesMfnmr8SVycco2gvCoe9amsOXmXzHHfV1IWN +cCG0szLni6LVhjkCsbjSR87kyUnEO6fe+1R9V77w6G7CebI6C1XiUJgWMhNcL3hW +wcKUs/Ja5CeanyTXxuzQmyWC48zCxEXFjJd6BmsqEZ+pCm5IO2/b1BEZQvePB7/1 +U1+cPvQXLOZprE4yTGJ36rfo5bs0vBmLrpxR57d+tVOxMyLlbc9wPBr64ptntoP0 +jaWvYkxN4FisZDQSA/i2jZRjJKRxAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAP +BgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBRqciZ60B7vfec7aVHUbI2fkBJmqzAN +BgkqhkiG9w0BAQsFAAOCAQEAeZ8dlsa2eT8ijYfThwMEYGprmi5ZiXMRrEPR9RP/ +jTkrwPK9T3CMqS/qF8QLVJ7UG5aYMzyorWKiAHarWWluBh1+xLlEjZivEtRh2woZ +Rkfz6/djwUAFQKXSt/S1mja/qYh2iARVBCuch38aNzx+LaUa2NSJXsq9rD1s2G2v +1fN2D807iDginWyTmsQ9v4IbZT+mD12q/OWyFcq1rca8PdCE6OoGcrBNOTJ4vz4R +nAuknZoh8/CbCzB428Hch0P+vGOaysXCHMnHjf87ElgI5rY97HosTvuDls4MPGmH +VHOkc8KT/1EQrBVUAdj8BbGJoX90g5pJ19xOe4pIb4tF9g== +-----END CERTIFICATE----- + +# Issuer: CN=Entrust Root Certification Authority - EC1 O=Entrust, Inc. OU=See www.entrust.net/legal-terms/(c) 2012 Entrust, Inc. - for authorized use only +# Subject: CN=Entrust Root Certification Authority - EC1 O=Entrust, Inc. OU=See www.entrust.net/legal-terms/(c) 2012 Entrust, Inc. - for authorized use only +# Label: "Entrust Root Certification Authority - EC1" +# Serial: 51543124481930649114116133369 +# MD5 Fingerprint: b6:7e:1d:f0:58:c5:49:6c:24:3b:3d:ed:98:18:ed:bc +# SHA1 Fingerprint: 20:d8:06:40:df:9b:25:f5:12:25:3a:11:ea:f7:59:8a:eb:14:b5:47 +# SHA256 Fingerprint: 02:ed:0e:b2:8c:14:da:45:16:5c:56:67:91:70:0d:64:51:d7:fb:56:f0:b2:ab:1d:3b:8e:b0:70:e5:6e:df:f5 +-----BEGIN CERTIFICATE----- +MIIC+TCCAoCgAwIBAgINAKaLeSkAAAAAUNCR+TAKBggqhkjOPQQDAzCBvzELMAkG +A1UEBhMCVVMxFjAUBgNVBAoTDUVudHJ1c3QsIEluYy4xKDAmBgNVBAsTH1NlZSB3 +d3cuZW50cnVzdC5uZXQvbGVnYWwtdGVybXMxOTA3BgNVBAsTMChjKSAyMDEyIEVu +dHJ1c3QsIEluYy4gLSBmb3IgYXV0aG9yaXplZCB1c2Ugb25seTEzMDEGA1UEAxMq +RW50cnVzdCBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRUMxMB4XDTEy +MTIxODE1MjUzNloXDTM3MTIxODE1NTUzNlowgb8xCzAJBgNVBAYTAlVTMRYwFAYD +VQQKEw1FbnRydXN0LCBJbmMuMSgwJgYDVQQLEx9TZWUgd3d3LmVudHJ1c3QubmV0 +L2xlZ2FsLXRlcm1zMTkwNwYDVQQLEzAoYykgMjAxMiBFbnRydXN0LCBJbmMuIC0g +Zm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxMzAxBgNVBAMTKkVudHJ1c3QgUm9vdCBD +ZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAtIEVDMTB2MBAGByqGSM49AgEGBSuBBAAi +A2IABIQTydC6bUF74mzQ61VfZgIaJPRbiWlH47jCffHyAsWfoPZb1YsGGYZPUxBt +ByQnoaD41UcZYUx9ypMn6nQM72+WCf5j7HBdNq1nd67JnXxVRDqiY1Ef9eNi1KlH +Bz7MIKNCMEAwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0O +BBYEFLdj5xrdjekIplWDpOBqUEFlEUJJMAoGCCqGSM49BAMDA2cAMGQCMGF52OVC +R98crlOZF7ZvHH3hvxGU0QOIdeSNiaSKd0bebWHvAvX7td/M/k7//qnmpwIwW5nX +hTcGtXsI/esni0qU+eH6p44mCOh8kmhtc9hvJqwhAriZtyZBWyVgrtBIGu4G +-----END CERTIFICATE----- + +# Issuer: CN=CFCA EV ROOT O=China Financial Certification Authority +# Subject: CN=CFCA EV ROOT O=China Financial Certification Authority +# Label: "CFCA EV ROOT" +# Serial: 407555286 +# MD5 Fingerprint: 74:e1:b6:ed:26:7a:7a:44:30:33:94:ab:7b:27:81:30 +# SHA1 Fingerprint: e2:b8:29:4b:55:84:ab:6b:58:c2:90:46:6c:ac:3f:b8:39:8f:84:83 +# SHA256 Fingerprint: 5c:c3:d7:8e:4e:1d:5e:45:54:7a:04:e6:87:3e:64:f9:0c:f9:53:6d:1c:cc:2e:f8:00:f3:55:c4:c5:fd:70:fd +-----BEGIN CERTIFICATE----- +MIIFjTCCA3WgAwIBAgIEGErM1jANBgkqhkiG9w0BAQsFADBWMQswCQYDVQQGEwJD +TjEwMC4GA1UECgwnQ2hpbmEgRmluYW5jaWFsIENlcnRpZmljYXRpb24gQXV0aG9y +aXR5MRUwEwYDVQQDDAxDRkNBIEVWIFJPT1QwHhcNMTIwODA4MDMwNzAxWhcNMjkx +MjMxMDMwNzAxWjBWMQswCQYDVQQGEwJDTjEwMC4GA1UECgwnQ2hpbmEgRmluYW5j +aWFsIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MRUwEwYDVQQDDAxDRkNBIEVWIFJP +T1QwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDXXWvNED8fBVnVBU03 +sQ7smCuOFR36k0sXgiFxEFLXUWRwFsJVaU2OFW2fvwwbwuCjZ9YMrM8irq93VCpL +TIpTUnrD7i7es3ElweldPe6hL6P3KjzJIx1qqx2hp/Hz7KDVRM8Vz3IvHWOX6Jn5 +/ZOkVIBMUtRSqy5J35DNuF++P96hyk0g1CXohClTt7GIH//62pCfCqktQT+x8Rgp +7hZZLDRJGqgG16iI0gNyejLi6mhNbiyWZXvKWfry4t3uMCz7zEasxGPrb382KzRz +EpR/38wmnvFyXVBlWY9ps4deMm/DGIq1lY+wejfeWkU7xzbh72fROdOXW3NiGUgt +hxwG+3SYIElz8AXSG7Ggo7cbcNOIabla1jj0Ytwli3i/+Oh+uFzJlU9fpy25IGvP +a931DfSCt/SyZi4QKPaXWnuWFo8BGS1sbn85WAZkgwGDg8NNkt0yxoekN+kWzqot +aK8KgWU6cMGbrU1tVMoqLUuFG7OA5nBFDWteNfB/O7ic5ARwiRIlk9oKmSJgamNg +TnYGmE69g60dWIolhdLHZR4tjsbftsbhf4oEIRUpdPA+nJCdDC7xij5aqgwJHsfV +PKPtl8MeNPo4+QgO48BdK4PRVmrJtqhUUy54Mmc9gn900PvhtgVguXDbjgv5E1hv +cWAQUhC5wUEJ73IfZzF4/5YFjQIDAQABo2MwYTAfBgNVHSMEGDAWgBTj/i39KNAL +tbq2osS/BqoFjJP7LzAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBBjAd +BgNVHQ4EFgQU4/4t/SjQC7W6tqLEvwaqBYyT+y8wDQYJKoZIhvcNAQELBQADggIB +ACXGumvrh8vegjmWPfBEp2uEcwPenStPuiB/vHiyz5ewG5zz13ku9Ui20vsXiObT +ej/tUxPQ4i9qecsAIyjmHjdXNYmEwnZPNDatZ8POQQaIxffu2Bq41gt/UP+TqhdL +jOztUmCypAbqTuv0axn96/Ua4CUqmtzHQTb3yHQFhDmVOdYLO6Qn+gjYXB74BGBS +ESgoA//vU2YApUo0FmZ8/Qmkrp5nGm9BC2sGE5uPhnEFtC+NiWYzKXZUmhH4J/qy +P5Hgzg0b8zAarb8iXRvTvyUFTeGSGn+ZnzxEk8rUQElsgIfXBDrDMlI1Dlb4pd19 +xIsNER9Tyx6yF7Zod1rg1MvIB671Oi6ON7fQAUtDKXeMOZePglr4UeWJoBjnaH9d +Ci77o0cOPaYjesYBx4/IXr9tgFa+iiS6M+qf4TIRnvHST4D2G0CvOJ4RUHlzEhLN +5mydLIhyPDCBBpEi6lmt2hkuIsKNuYyH4Ga8cyNfIWRjgEj1oDwYPZTISEEdQLpe +/v5WOaHIz16eGWRGENoXkbcFgKyLmZJ956LYBws2J+dIeWCKw9cTXPhyQN9Ky8+Z +AAoACxGV2lZFA4gKn2fQ1XmxqI1AbQ3CekD6819kR5LLU7m7Wc5P/dAVUwHY3+vZ +5nbv0CO7O6l5s9UCKc2Jo5YPSjXnTkLAdc0Hz+Ys63su +-----END CERTIFICATE----- + +# Issuer: CN=OISTE WISeKey Global Root GB CA O=WISeKey OU=OISTE Foundation Endorsed +# Subject: CN=OISTE WISeKey Global Root GB CA O=WISeKey OU=OISTE Foundation Endorsed +# Label: "OISTE WISeKey Global Root GB CA" +# Serial: 157768595616588414422159278966750757568 +# MD5 Fingerprint: a4:eb:b9:61:28:2e:b7:2f:98:b0:35:26:90:99:51:1d +# SHA1 Fingerprint: 0f:f9:40:76:18:d3:d7:6a:4b:98:f0:a8:35:9e:0c:fd:27:ac:cc:ed +# SHA256 Fingerprint: 6b:9c:08:e8:6e:b0:f7:67:cf:ad:65:cd:98:b6:21:49:e5:49:4a:67:f5:84:5e:7b:d1:ed:01:9f:27:b8:6b:d6 +-----BEGIN CERTIFICATE----- +MIIDtTCCAp2gAwIBAgIQdrEgUnTwhYdGs/gjGvbCwDANBgkqhkiG9w0BAQsFADBt +MQswCQYDVQQGEwJDSDEQMA4GA1UEChMHV0lTZUtleTEiMCAGA1UECxMZT0lTVEUg +Rm91bmRhdGlvbiBFbmRvcnNlZDEoMCYGA1UEAxMfT0lTVEUgV0lTZUtleSBHbG9i +YWwgUm9vdCBHQiBDQTAeFw0xNDEyMDExNTAwMzJaFw0zOTEyMDExNTEwMzFaMG0x +CzAJBgNVBAYTAkNIMRAwDgYDVQQKEwdXSVNlS2V5MSIwIAYDVQQLExlPSVNURSBG +b3VuZGF0aW9uIEVuZG9yc2VkMSgwJgYDVQQDEx9PSVNURSBXSVNlS2V5IEdsb2Jh +bCBSb290IEdCIENBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2Be3 +HEokKtaXscriHvt9OO+Y9bI5mE4nuBFde9IllIiCFSZqGzG7qFshISvYD06fWvGx +WuR51jIjK+FTzJlFXHtPrby/h0oLS5daqPZI7H17Dc0hBt+eFf1Biki3IPShehtX +1F1Q/7pn2COZH8g/497/b1t3sWtuuMlk9+HKQUYOKXHQuSP8yYFfTvdv37+ErXNk +u7dCjmn21HYdfp2nuFeKUWdy19SouJVUQHMD9ur06/4oQnc/nSMbsrY9gBQHTC5P +99UKFg29ZkM3fiNDecNAhvVMKdqOmq0NpQSHiB6F4+lT1ZvIiwNjeOvgGUpuuy9r +M2RYk61pv48b74JIxwIDAQABo1EwTzALBgNVHQ8EBAMCAYYwDwYDVR0TAQH/BAUw +AwEB/zAdBgNVHQ4EFgQUNQ/INmNe4qPs+TtmFc5RUuORmj0wEAYJKwYBBAGCNxUB +BAMCAQAwDQYJKoZIhvcNAQELBQADggEBAEBM+4eymYGQfp3FsLAmzYh7KzKNbrgh +cViXfa43FK8+5/ea4n32cZiZBKpDdHij40lhPnOMTZTg+XHEthYOU3gf1qKHLwI5 +gSk8rxWYITD+KJAAjNHhy/peyP34EEY7onhCkRd0VQreUGdNZtGn//3ZwLWoo4rO +ZvUPQ82nK1d7Y0Zqqi5S2PTt4W2tKZB4SLrhI6qjiey1q5bAtEuiHZeeevJuQHHf +aPFlTc58Bd9TZaml8LGXBHAVRgOY1NK/VLSgWH1Sb9pWJmLU2NuJMW8c8CLC02Ic +Nc1MaRVUGpCY3useX8p3x8uOPUNpnJpY0CQ73xtAln41rYHHTnG6iBM= +-----END CERTIFICATE----- + +# Issuer: CN=SZAFIR ROOT CA2 O=Krajowa Izba Rozliczeniowa S.A. +# Subject: CN=SZAFIR ROOT CA2 O=Krajowa Izba Rozliczeniowa S.A. +# Label: "SZAFIR ROOT CA2" +# Serial: 357043034767186914217277344587386743377558296292 +# MD5 Fingerprint: 11:64:c1:89:b0:24:b1:8c:b1:07:7e:89:9e:51:9e:99 +# SHA1 Fingerprint: e2:52:fa:95:3f:ed:db:24:60:bd:6e:28:f3:9c:cc:cf:5e:b3:3f:de +# SHA256 Fingerprint: a1:33:9d:33:28:1a:0b:56:e5:57:d3:d3:2b:1c:e7:f9:36:7e:b0:94:bd:5f:a7:2a:7e:50:04:c8:de:d7:ca:fe +-----BEGIN CERTIFICATE----- +MIIDcjCCAlqgAwIBAgIUPopdB+xV0jLVt+O2XwHrLdzk1uQwDQYJKoZIhvcNAQEL +BQAwUTELMAkGA1UEBhMCUEwxKDAmBgNVBAoMH0tyYWpvd2EgSXpiYSBSb3psaWN6 +ZW5pb3dhIFMuQS4xGDAWBgNVBAMMD1NaQUZJUiBST09UIENBMjAeFw0xNTEwMTkw +NzQzMzBaFw0zNTEwMTkwNzQzMzBaMFExCzAJBgNVBAYTAlBMMSgwJgYDVQQKDB9L +cmFqb3dhIEl6YmEgUm96bGljemVuaW93YSBTLkEuMRgwFgYDVQQDDA9TWkFGSVIg +Uk9PVCBDQTIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC3vD5QqEvN +QLXOYeeWyrSh2gwisPq1e3YAd4wLz32ohswmUeQgPYUM1ljj5/QqGJ3a0a4m7utT +3PSQ1hNKDJA8w/Ta0o4NkjrcsbH/ON7Dui1fgLkCvUqdGw+0w8LBZwPd3BucPbOw +3gAeqDRHu5rr/gsUvTaE2g0gv/pby6kWIK05YO4vdbbnl5z5Pv1+TW9NL++IDWr6 +3fE9biCloBK0TXC5ztdyO4mTp4CEHCdJckm1/zuVnsHMyAHs6A6KCpbns6aH5db5 +BSsNl0BwPLqsdVqc1U2dAgrSS5tmS0YHF2Wtn2yIANwiieDhZNRnvDF5YTy7ykHN +XGoAyDw4jlivAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQD +AgEGMB0GA1UdDgQWBBQuFqlKGLXLzPVvUPMjX/hd56zwyDANBgkqhkiG9w0BAQsF +AAOCAQEAtXP4A9xZWx126aMqe5Aosk3AM0+qmrHUuOQn/6mWmc5G4G18TKI4pAZw +8PRBEew/R40/cof5O/2kbytTAOD/OblqBw7rHRz2onKQy4I9EYKL0rufKq8h5mOG +nXkZ7/e7DDWQw4rtTw/1zBLZpD67oPwglV9PJi8RI4NOdQcPv5vRtB3pEAT+ymCP +oky4rc/hkA/NrgrHXXu3UNLUYfrVFdvXn4dRVOul4+vJhaAlIDf7js4MNIThPIGy +d05DpYhfhmehPea0XGG2Ptv+tyjFogeutcrKjSoS75ftwjCkySp6+/NNIxuZMzSg +LvWpCz/UXeHPhJ/iGcJfitYgHuNztw== +-----END CERTIFICATE----- + +# Issuer: CN=Certum Trusted Network CA 2 O=Unizeto Technologies S.A. OU=Certum Certification Authority +# Subject: CN=Certum Trusted Network CA 2 O=Unizeto Technologies S.A. OU=Certum Certification Authority +# Label: "Certum Trusted Network CA 2" +# Serial: 44979900017204383099463764357512596969 +# MD5 Fingerprint: 6d:46:9e:d9:25:6d:08:23:5b:5e:74:7d:1e:27:db:f2 +# SHA1 Fingerprint: d3:dd:48:3e:2b:bf:4c:05:e8:af:10:f5:fa:76:26:cf:d3:dc:30:92 +# SHA256 Fingerprint: b6:76:f2:ed:da:e8:77:5c:d3:6c:b0:f6:3c:d1:d4:60:39:61:f4:9e:62:65:ba:01:3a:2f:03:07:b6:d0:b8:04 +-----BEGIN CERTIFICATE----- +MIIF0jCCA7qgAwIBAgIQIdbQSk8lD8kyN/yqXhKN6TANBgkqhkiG9w0BAQ0FADCB +gDELMAkGA1UEBhMCUEwxIjAgBgNVBAoTGVVuaXpldG8gVGVjaG5vbG9naWVzIFMu +QS4xJzAlBgNVBAsTHkNlcnR1bSBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTEkMCIG +A1UEAxMbQ2VydHVtIFRydXN0ZWQgTmV0d29yayBDQSAyMCIYDzIwMTExMDA2MDgz +OTU2WhgPMjA0NjEwMDYwODM5NTZaMIGAMQswCQYDVQQGEwJQTDEiMCAGA1UEChMZ +VW5pemV0byBUZWNobm9sb2dpZXMgUy5BLjEnMCUGA1UECxMeQ2VydHVtIENlcnRp +ZmljYXRpb24gQXV0aG9yaXR5MSQwIgYDVQQDExtDZXJ0dW0gVHJ1c3RlZCBOZXR3 +b3JrIENBIDIwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQC9+Xj45tWA +DGSdhhuWZGc/IjoedQF97/tcZ4zJzFxrqZHmuULlIEub2pt7uZld2ZuAS9eEQCsn +0+i6MLs+CRqnSZXvK0AkwpfHp+6bJe+oCgCXhVqqndwpyeI1B+twTUrWwbNWuKFB +OJvR+zF/j+Bf4bE/D44WSWDXBo0Y+aomEKsq09DRZ40bRr5HMNUuctHFY9rnY3lE +fktjJImGLjQ/KUxSiyqnwOKRKIm5wFv5HdnnJ63/mgKXwcZQkpsCLL2puTRZCr+E +Sv/f/rOf69me4Jgj7KZrdxYq28ytOxykh9xGc14ZYmhFV+SQgkK7QtbwYeDBoz1m +o130GO6IyY0XRSmZMnUCMe4pJshrAua1YkV/NxVaI2iJ1D7eTiew8EAMvE0Xy02i +sx7QBlrd9pPPV3WZ9fqGGmd4s7+W/jTcvedSVuWz5XV710GRBdxdaeOVDUO5/IOW +OZV7bIBaTxNyxtd9KXpEulKkKtVBRgkg/iKgtlswjbyJDNXXcPiHUv3a76xRLgez +Tv7QCdpw75j6VuZt27VXS9zlLCUVyJ4ueE742pyehizKV/Ma5ciSixqClnrDvFAS +adgOWkaLOusm+iPJtrCBvkIApPjW/jAux9JG9uWOdf3yzLnQh1vMBhBgu4M1t15n +3kfsmUjxpKEV/q2MYo45VU85FrmxY53/twIDAQABo0IwQDAPBgNVHRMBAf8EBTAD +AQH/MB0GA1UdDgQWBBS2oVQ5AsOgP46KvPrU+Bym0ToO/TAOBgNVHQ8BAf8EBAMC +AQYwDQYJKoZIhvcNAQENBQADggIBAHGlDs7k6b8/ONWJWsQCYftMxRQXLYtPU2sQ +F/xlhMcQSZDe28cmk4gmb3DWAl45oPePq5a1pRNcgRRtDoGCERuKTsZPpd1iHkTf +CVn0W3cLN+mLIMb4Ck4uWBzrM9DPhmDJ2vuAL55MYIR4PSFk1vtBHxgP58l1cb29 +XN40hz5BsA72udY/CROWFC/emh1auVbONTqwX3BNXuMp8SMoclm2q8KMZiYcdywm +djWLKKdpoPk79SPdhRB0yZADVpHnr7pH1BKXESLjokmUbOe3lEu6LaTaM4tMpkT/ +WjzGHWTYtTHkpjx6qFcL2+1hGsvxznN3Y6SHb0xRONbkX8eftoEq5IVIeVheO/jb +AoJnwTnbw3RLPTYe+SmTiGhbqEQZIfCn6IENLOiTNrQ3ssqwGyZ6miUfmpqAnksq +P/ujmv5zMnHCnsZy4YpoJ/HkD7TETKVhk/iXEAcqMCWpuchxuO9ozC1+9eB+D4Ko +b7a6bINDd82Kkhehnlt4Fj1F4jNy3eFmypnTycUm/Q1oBEauttmbjL4ZvrHG8hnj +XALKLNhvSgfZyTXaQHXyxKcZb55CEJh15pWLYLztxRLXis7VmFxWlgPF7ncGNf/P +5O4/E2Hu29othfDNrp2yGAlFw5Khchf8R7agCyzxxN5DaAhqXzvwdmP7zAYspsbi +DrW5viSP +-----END CERTIFICATE----- + +# Issuer: CN=Hellenic Academic and Research Institutions RootCA 2015 O=Hellenic Academic and Research Institutions Cert. Authority +# Subject: CN=Hellenic Academic and Research Institutions RootCA 2015 O=Hellenic Academic and Research Institutions Cert. Authority +# Label: "Hellenic Academic and Research Institutions RootCA 2015" +# Serial: 0 +# MD5 Fingerprint: ca:ff:e2:db:03:d9:cb:4b:e9:0f:ad:84:fd:7b:18:ce +# SHA1 Fingerprint: 01:0c:06:95:a6:98:19:14:ff:bf:5f:c6:b0:b6:95:ea:29:e9:12:a6 +# SHA256 Fingerprint: a0:40:92:9a:02:ce:53:b4:ac:f4:f2:ff:c6:98:1c:e4:49:6f:75:5e:6d:45:fe:0b:2a:69:2b:cd:52:52:3f:36 +-----BEGIN CERTIFICATE----- +MIIGCzCCA/OgAwIBAgIBADANBgkqhkiG9w0BAQsFADCBpjELMAkGA1UEBhMCR1Ix +DzANBgNVBAcTBkF0aGVuczFEMEIGA1UEChM7SGVsbGVuaWMgQWNhZGVtaWMgYW5k +IFJlc2VhcmNoIEluc3RpdHV0aW9ucyBDZXJ0LiBBdXRob3JpdHkxQDA+BgNVBAMT +N0hlbGxlbmljIEFjYWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1dGlvbnMgUm9v +dENBIDIwMTUwHhcNMTUwNzA3MTAxMTIxWhcNNDAwNjMwMTAxMTIxWjCBpjELMAkG +A1UEBhMCR1IxDzANBgNVBAcTBkF0aGVuczFEMEIGA1UEChM7SGVsbGVuaWMgQWNh +ZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9ucyBDZXJ0LiBBdXRob3JpdHkx +QDA+BgNVBAMTN0hlbGxlbmljIEFjYWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1 +dGlvbnMgUm9vdENBIDIwMTUwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoIC +AQDC+Kk/G4n8PDwEXT2QNrCROnk8ZlrvbTkBSRq0t89/TSNTt5AA4xMqKKYx8ZEA +4yjsriFBzh/a/X0SWwGDD7mwX5nh8hKDgE0GPt+sr+ehiGsxr/CL0BgzuNtFajT0 +AoAkKAoCFZVedioNmToUW/bLy1O8E00BiDeUJRtCvCLYjqOWXjrZMts+6PAQZe10 +4S+nfK8nNLspfZu2zwnI5dMK/IhlZXQK3HMcXM1AsRzUtoSMTFDPaI6oWa7CJ06C +ojXdFPQf/7J31Ycvqm59JCfnxssm5uX+Zwdj2EUN3TpZZTlYepKZcj2chF6IIbjV +9Cz82XBST3i4vTwri5WY9bPRaM8gFH5MXF/ni+X1NYEZN9cRCLdmvtNKzoNXADrD +gfgXy5I2XdGj2HUb4Ysn6npIQf1FGQatJ5lOwXBH3bWfgVMS5bGMSF0xQxfjjMZ6 +Y5ZLKTBOhE5iGV48zpeQpX8B653g+IuJ3SWYPZK2fu/Z8VFRfS0myGlZYeCsargq +NhEEelC9MoS+L9xy1dcdFkfkR2YgP/SWxa+OAXqlD3pk9Q0Yh9muiNX6hME6wGko +LfINaFGq46V3xqSQDqE3izEjR8EJCOtu93ib14L8hCCZSRm2Ekax+0VVFqmjZayc +Bw/qa9wfLgZy7IaIEuQt218FL+TwA9MmM+eAws1CoRc0CwIDAQABo0IwQDAPBgNV +HRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUcRVnyMjJvXVd +ctA4GGqd83EkVAswDQYJKoZIhvcNAQELBQADggIBAHW7bVRLqhBYRjTyYtcWNl0I +XtVsyIe9tC5G8jH4fOpCtZMWVdyhDBKg2mF+D1hYc2Ryx+hFjtyp8iY/xnmMsVMI +M4GwVhO+5lFc2JsKT0ucVlMC6U/2DWDqTUJV6HwbISHTGzrMd/K4kPFox/la/vot +9L/J9UUbzjgQKjeKeaO04wlshYaT/4mWJ3iBj2fjRnRUjtkNaeJK9E10A/+yd+2V +Z5fkscWrv2oj6NSU4kQoYsRL4vDY4ilrGnB+JGGTe08DMiUNRSQrlrRGar9KC/ea +j8GsGsVn82800vpzY4zvFrCopEYq+OsS7HK07/grfoxSwIuEVPkvPuNVqNxmsdnh +X9izjFk0WaSrT2y7HxjbdavYy5LNlDhhDgcGH0tGEPEVvo2FXDtKK4F5D7Rpn0lQ +l033DlZdwJVqwjbDG2jJ9SrcR5q+ss7FJej6A7na+RZukYT1HCjI/CbM1xyQVqdf +bzoEvM14iQuODy+jqk+iGxI9FghAD/FGTNeqewjBCvVtJ94Cj8rDtSvK6evIIVM4 +pcw72Hc3MKJP2W/R8kCtQXoXxdZKNYm3QdV8hn9VTYNKpXMgwDqvkPGaJI7ZjnHK +e7iG2rKPmT4dEw0SEe7Uq/DpFXYC5ODfqiAeW2GFZECpkJcNrVPSWh2HagCXZWK0 +vm9qp/UsQu0yrbYhnr68 +-----END CERTIFICATE----- + +# Issuer: CN=Hellenic Academic and Research Institutions ECC RootCA 2015 O=Hellenic Academic and Research Institutions Cert. Authority +# Subject: CN=Hellenic Academic and Research Institutions ECC RootCA 2015 O=Hellenic Academic and Research Institutions Cert. Authority +# Label: "Hellenic Academic and Research Institutions ECC RootCA 2015" +# Serial: 0 +# MD5 Fingerprint: 81:e5:b4:17:eb:c2:f5:e1:4b:0d:41:7b:49:92:fe:ef +# SHA1 Fingerprint: 9f:f1:71:8d:92:d5:9a:f3:7d:74:97:b4:bc:6f:84:68:0b:ba:b6:66 +# SHA256 Fingerprint: 44:b5:45:aa:8a:25:e6:5a:73:ca:15:dc:27:fc:36:d2:4c:1c:b9:95:3a:06:65:39:b1:15:82:dc:48:7b:48:33 +-----BEGIN CERTIFICATE----- +MIICwzCCAkqgAwIBAgIBADAKBggqhkjOPQQDAjCBqjELMAkGA1UEBhMCR1IxDzAN +BgNVBAcTBkF0aGVuczFEMEIGA1UEChM7SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJl +c2VhcmNoIEluc3RpdHV0aW9ucyBDZXJ0LiBBdXRob3JpdHkxRDBCBgNVBAMTO0hl +bGxlbmljIEFjYWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1dGlvbnMgRUNDIFJv +b3RDQSAyMDE1MB4XDTE1MDcwNzEwMzcxMloXDTQwMDYzMDEwMzcxMlowgaoxCzAJ +BgNVBAYTAkdSMQ8wDQYDVQQHEwZBdGhlbnMxRDBCBgNVBAoTO0hlbGxlbmljIEFj +YWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1dGlvbnMgQ2VydC4gQXV0aG9yaXR5 +MUQwQgYDVQQDEztIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0 +dXRpb25zIEVDQyBSb290Q0EgMjAxNTB2MBAGByqGSM49AgEGBSuBBAAiA2IABJKg +QehLgoRc4vgxEZmGZE4JJS+dQS8KrjVPdJWyUWRrjWvmP3CV8AVER6ZyOFB2lQJa +jq4onvktTpnvLEhvTCUp6NFxW98dwXU3tNf6e3pCnGoKVlp8aQuqgAkkbH7BRqNC +MEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFLQi +C4KZJAEOnLvkDv2/+5cgk5kqMAoGCCqGSM49BAMCA2cAMGQCMGfOFmI4oqxiRaep +lSTAGiecMjvAwNW6qef4BENThe5SId6d9SWDPp5YSy/XZxMOIQIwBeF1Ad5o7Sof +TUwJCA3sS61kFyjndc5FZXIhF8siQQ6ME5g4mlRtm8rifOoCWCKR +-----END CERTIFICATE----- + +# Issuer: CN=ISRG Root X1 O=Internet Security Research Group +# Subject: CN=ISRG Root X1 O=Internet Security Research Group +# Label: "ISRG Root X1" +# Serial: 172886928669790476064670243504169061120 +# MD5 Fingerprint: 0c:d2:f9:e0:da:17:73:e9:ed:86:4d:a5:e3:70:e7:4e +# SHA1 Fingerprint: ca:bd:2a:79:a1:07:6a:31:f2:1d:25:36:35:cb:03:9d:43:29:a5:e8 +# SHA256 Fingerprint: 96:bc:ec:06:26:49:76:f3:74:60:77:9a:cf:28:c5:a7:cf:e8:a3:c0:aa:e1:1a:8f:fc:ee:05:c0:bd:df:08:c6 +-----BEGIN CERTIFICATE----- +MIIFazCCA1OgAwIBAgIRAIIQz7DSQONZRGPgu2OCiwAwDQYJKoZIhvcNAQELBQAw +TzELMAkGA1UEBhMCVVMxKTAnBgNVBAoTIEludGVybmV0IFNlY3VyaXR5IFJlc2Vh +cmNoIEdyb3VwMRUwEwYDVQQDEwxJU1JHIFJvb3QgWDEwHhcNMTUwNjA0MTEwNDM4 +WhcNMzUwNjA0MTEwNDM4WjBPMQswCQYDVQQGEwJVUzEpMCcGA1UEChMgSW50ZXJu +ZXQgU2VjdXJpdHkgUmVzZWFyY2ggR3JvdXAxFTATBgNVBAMTDElTUkcgUm9vdCBY +MTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAK3oJHP0FDfzm54rVygc +h77ct984kIxuPOZXoHj3dcKi/vVqbvYATyjb3miGbESTtrFj/RQSa78f0uoxmyF+ +0TM8ukj13Xnfs7j/EvEhmkvBioZxaUpmZmyPfjxwv60pIgbz5MDmgK7iS4+3mX6U +A5/TR5d8mUgjU+g4rk8Kb4Mu0UlXjIB0ttov0DiNewNwIRt18jA8+o+u3dpjq+sW +T8KOEUt+zwvo/7V3LvSye0rgTBIlDHCNAymg4VMk7BPZ7hm/ELNKjD+Jo2FR3qyH +B5T0Y3HsLuJvW5iB4YlcNHlsdu87kGJ55tukmi8mxdAQ4Q7e2RCOFvu396j3x+UC +B5iPNgiV5+I3lg02dZ77DnKxHZu8A/lJBdiB3QW0KtZB6awBdpUKD9jf1b0SHzUv +KBds0pjBqAlkd25HN7rOrFleaJ1/ctaJxQZBKT5ZPt0m9STJEadao0xAH0ahmbWn +OlFuhjuefXKnEgV4We0+UXgVCwOPjdAvBbI+e0ocS3MFEvzG6uBQE3xDk3SzynTn +jh8BCNAw1FtxNrQHusEwMFxIt4I7mKZ9YIqioymCzLq9gwQbooMDQaHWBfEbwrbw +qHyGO0aoSCqI3Haadr8faqU9GY/rOPNk3sgrDQoo//fb4hVC1CLQJ13hef4Y53CI +rU7m2Ys6xt0nUW7/vGT1M0NPAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNV +HRMBAf8EBTADAQH/MB0GA1UdDgQWBBR5tFnme7bl5AFzgAiIyBpY9umbbjANBgkq +hkiG9w0BAQsFAAOCAgEAVR9YqbyyqFDQDLHYGmkgJykIrGF1XIpu+ILlaS/V9lZL +ubhzEFnTIZd+50xx+7LSYK05qAvqFyFWhfFQDlnrzuBZ6brJFe+GnY+EgPbk6ZGQ +3BebYhtF8GaV0nxvwuo77x/Py9auJ/GpsMiu/X1+mvoiBOv/2X/qkSsisRcOj/KK +NFtY2PwByVS5uCbMiogziUwthDyC3+6WVwW6LLv3xLfHTjuCvjHIInNzktHCgKQ5 +ORAzI4JMPJ+GslWYHb4phowim57iaztXOoJwTdwJx4nLCgdNbOhdjsnvzqvHu7Ur +TkXWStAmzOVyyghqpZXjFaH3pO3JLF+l+/+sKAIuvtd7u+Nxe5AW0wdeRlN8NwdC +jNPElpzVmbUq4JUagEiuTDkHzsxHpFKVK7q4+63SM1N95R1NbdWhscdCb+ZAJzVc +oyi3B43njTOQ5yOf+1CceWxG1bQVs5ZufpsMljq4Ui0/1lvh+wjChP4kqKOJ2qxq +4RgqsahDYVvTH9w7jXbyLeiNdd8XM2w9U/t7y0Ff/9yi0GE44Za4rF2LN9d11TPA +mRGunUHBcnWEvgJBQl9nJEiU0Zsnvgc/ubhPgXRR4Xq37Z0j4r7g1SgEEzwxA57d +emyPxgcYxn/eR44/KJ4EBs+lVDR3veyJm+kXQ99b21/+jh5Xos1AnX5iItreGCc= +-----END CERTIFICATE----- + +# Issuer: O=FNMT-RCM OU=AC RAIZ FNMT-RCM +# Subject: O=FNMT-RCM OU=AC RAIZ FNMT-RCM +# Label: "AC RAIZ FNMT-RCM" +# Serial: 485876308206448804701554682760554759 +# MD5 Fingerprint: e2:09:04:b4:d3:bd:d1:a0:14:fd:1a:d2:47:c4:57:1d +# SHA1 Fingerprint: ec:50:35:07:b2:15:c4:95:62:19:e2:a8:9a:5b:42:99:2c:4c:2c:20 +# SHA256 Fingerprint: eb:c5:57:0c:29:01:8c:4d:67:b1:aa:12:7b:af:12:f7:03:b4:61:1e:bc:17:b7:da:b5:57:38:94:17:9b:93:fa +-----BEGIN CERTIFICATE----- +MIIFgzCCA2ugAwIBAgIPXZONMGc2yAYdGsdUhGkHMA0GCSqGSIb3DQEBCwUAMDsx +CzAJBgNVBAYTAkVTMREwDwYDVQQKDAhGTk1ULVJDTTEZMBcGA1UECwwQQUMgUkFJ +WiBGTk1ULVJDTTAeFw0wODEwMjkxNTU5NTZaFw0zMDAxMDEwMDAwMDBaMDsxCzAJ +BgNVBAYTAkVTMREwDwYDVQQKDAhGTk1ULVJDTTEZMBcGA1UECwwQQUMgUkFJWiBG +Tk1ULVJDTTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBALpxgHpMhm5/ +yBNtwMZ9HACXjywMI7sQmkCpGreHiPibVmr75nuOi5KOpyVdWRHbNi63URcfqQgf +BBckWKo3Shjf5TnUV/3XwSyRAZHiItQDwFj8d0fsjz50Q7qsNI1NOHZnjrDIbzAz +WHFctPVrbtQBULgTfmxKo0nRIBnuvMApGGWn3v7v3QqQIecaZ5JCEJhfTzC8PhxF +tBDXaEAUwED653cXeuYLj2VbPNmaUtu1vZ5Gzz3rkQUCwJaydkxNEJY7kvqcfw+Z +374jNUUeAlz+taibmSXaXvMiwzn15Cou08YfxGyqxRxqAQVKL9LFwag0Jl1mpdIC +IfkYtwb1TplvqKtMUejPUBjFd8g5CSxJkjKZqLsXF3mwWsXmo8RZZUc1g16p6DUL +mbvkzSDGm0oGObVo/CK67lWMK07q87Hj/LaZmtVC+nFNCM+HHmpxffnTtOmlcYF7 +wk5HlqX2doWjKI/pgG6BU6VtX7hI+cL5NqYuSf+4lsKMB7ObiFj86xsc3i1w4peS +MKGJ47xVqCfWS+2QrYv6YyVZLag13cqXM7zlzced0ezvXg5KkAYmY6252TUtB7p2 +ZSysV4999AeU14ECll2jB0nVetBX+RvnU0Z1qrB5QstocQjpYL05ac70r8NWQMet +UqIJ5G+GR4of6ygnXYMgrwTJbFaai0b1AgMBAAGjgYMwgYAwDwYDVR0TAQH/BAUw +AwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFPd9xf3E6Jobd2Sn9R2gzL+H +YJptMD4GA1UdIAQ3MDUwMwYEVR0gADArMCkGCCsGAQUFBwIBFh1odHRwOi8vd3d3 +LmNlcnQuZm5tdC5lcy9kcGNzLzANBgkqhkiG9w0BAQsFAAOCAgEAB5BK3/MjTvDD +nFFlm5wioooMhfNzKWtN/gHiqQxjAb8EZ6WdmF/9ARP67Jpi6Yb+tmLSbkyU+8B1 +RXxlDPiyN8+sD8+Nb/kZ94/sHvJwnvDKuO+3/3Y3dlv2bojzr2IyIpMNOmqOFGYM +LVN0V2Ue1bLdI4E7pWYjJ2cJj+F3qkPNZVEI7VFY/uY5+ctHhKQV8Xa7pO6kO8Rf +77IzlhEYt8llvhjho6Tc+hj507wTmzl6NLrTQfv6MooqtyuGC2mDOL7Nii4LcK2N +JpLuHvUBKwrZ1pebbuCoGRw6IYsMHkCtA+fdZn71uSANA+iW+YJF1DngoABd15jm +fZ5nc8OaKveri6E6FO80vFIOiZiaBECEHX5FaZNXzuvO+FB8TxxuBEOb+dY7Ixjp +6o7RTUaN8Tvkasq6+yO3m/qZASlaWFot4/nUbQ4mrcFuNLwy+AwF+mWj2zs3gyLp +1txyM/1d8iC9djwj2ij3+RvrWWTV3F9yfiD8zYm1kGdNYno/Tq0dwzn+evQoFt9B +9kiABdcPUXmsEKvU7ANm5mqwujGSQkBqvjrTcuFqN1W8rB2Vt2lh8kORdOag0wok +RqEIr9baRRmW1FMdW4R58MD3R++Lj8UGrp1MYp3/RgT408m2ECVAdf4WqslKYIYv +uu8wd+RU4riEmViAqhOLUTpPSPaLtrM= +-----END CERTIFICATE----- + +# Issuer: CN=Amazon Root CA 1 O=Amazon +# Subject: CN=Amazon Root CA 1 O=Amazon +# Label: "Amazon Root CA 1" +# Serial: 143266978916655856878034712317230054538369994 +# MD5 Fingerprint: 43:c6:bf:ae:ec:fe:ad:2f:18:c6:88:68:30:fc:c8:e6 +# SHA1 Fingerprint: 8d:a7:f9:65:ec:5e:fc:37:91:0f:1c:6e:59:fd:c1:cc:6a:6e:de:16 +# SHA256 Fingerprint: 8e:cd:e6:88:4f:3d:87:b1:12:5b:a3:1a:c3:fc:b1:3d:70:16:de:7f:57:cc:90:4f:e1:cb:97:c6:ae:98:19:6e +-----BEGIN CERTIFICATE----- +MIIDQTCCAimgAwIBAgITBmyfz5m/jAo54vB4ikPmljZbyjANBgkqhkiG9w0BAQsF +ADA5MQswCQYDVQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRkwFwYDVQQDExBBbWF6 +b24gUm9vdCBDQSAxMB4XDTE1MDUyNjAwMDAwMFoXDTM4MDExNzAwMDAwMFowOTEL +MAkGA1UEBhMCVVMxDzANBgNVBAoTBkFtYXpvbjEZMBcGA1UEAxMQQW1hem9uIFJv +b3QgQ0EgMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJ4gHHKeNXj +ca9HgFB0fW7Y14h29Jlo91ghYPl0hAEvrAIthtOgQ3pOsqTQNroBvo3bSMgHFzZM +9O6II8c+6zf1tRn4SWiw3te5djgdYZ6k/oI2peVKVuRF4fn9tBb6dNqcmzU5L/qw +IFAGbHrQgLKm+a/sRxmPUDgH3KKHOVj4utWp+UhnMJbulHheb4mjUcAwhmahRWa6 +VOujw5H5SNz/0egwLX0tdHA114gk957EWW67c4cX8jJGKLhD+rcdqsq08p8kDi1L +93FcXmn/6pUCyziKrlA4b9v7LWIbxcceVOF34GfID5yHI9Y/QCB/IIDEgEw+OyQm +jgSubJrIqg0CAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMC +AYYwHQYDVR0OBBYEFIQYzIU07LwMlJQuCFmcx7IQTgoIMA0GCSqGSIb3DQEBCwUA +A4IBAQCY8jdaQZChGsV2USggNiMOruYou6r4lK5IpDB/G/wkjUu0yKGX9rbxenDI +U5PMCCjjmCXPI6T53iHTfIUJrU6adTrCC2qJeHZERxhlbI1Bjjt/msv0tadQ1wUs +N+gDS63pYaACbvXy8MWy7Vu33PqUXHeeE6V/Uq2V8viTO96LXFvKWlJbYK8U90vv +o/ufQJVtMVT8QtPHRh8jrdkPSHCa2XV4cdFyQzR1bldZwgJcJmApzyMZFo6IQ6XU +5MsI+yMRQ+hDKXJioaldXgjUkK642M4UwtBV8ob2xJNDd2ZhwLnoQdeXeGADbkpy +rqXRfboQnoZsG4q5WTP468SQvvG5 +-----END CERTIFICATE----- + +# Issuer: CN=Amazon Root CA 2 O=Amazon +# Subject: CN=Amazon Root CA 2 O=Amazon +# Label: "Amazon Root CA 2" +# Serial: 143266982885963551818349160658925006970653239 +# MD5 Fingerprint: c8:e5:8d:ce:a8:42:e2:7a:c0:2a:5c:7c:9e:26:bf:66 +# SHA1 Fingerprint: 5a:8c:ef:45:d7:a6:98:59:76:7a:8c:8b:44:96:b5:78:cf:47:4b:1a +# SHA256 Fingerprint: 1b:a5:b2:aa:8c:65:40:1a:82:96:01:18:f8:0b:ec:4f:62:30:4d:83:ce:c4:71:3a:19:c3:9c:01:1e:a4:6d:b4 +-----BEGIN CERTIFICATE----- +MIIFQTCCAymgAwIBAgITBmyf0pY1hp8KD+WGePhbJruKNzANBgkqhkiG9w0BAQwF +ADA5MQswCQYDVQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRkwFwYDVQQDExBBbWF6 +b24gUm9vdCBDQSAyMB4XDTE1MDUyNjAwMDAwMFoXDTQwMDUyNjAwMDAwMFowOTEL +MAkGA1UEBhMCVVMxDzANBgNVBAoTBkFtYXpvbjEZMBcGA1UEAxMQQW1hem9uIFJv +b3QgQ0EgMjCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAK2Wny2cSkxK +gXlRmeyKy2tgURO8TW0G/LAIjd0ZEGrHJgw12MBvIITplLGbhQPDW9tK6Mj4kHbZ +W0/jTOgGNk3Mmqw9DJArktQGGWCsN0R5hYGCrVo34A3MnaZMUnbqQ523BNFQ9lXg +1dKmSYXpN+nKfq5clU1Imj+uIFptiJXZNLhSGkOQsL9sBbm2eLfq0OQ6PBJTYv9K +8nu+NQWpEjTj82R0Yiw9AElaKP4yRLuH3WUnAnE72kr3H9rN9yFVkE8P7K6C4Z9r +2UXTu/Bfh+08LDmG2j/e7HJV63mjrdvdfLC6HM783k81ds8P+HgfajZRRidhW+me +z/CiVX18JYpvL7TFz4QuK/0NURBs+18bvBt+xa47mAExkv8LV/SasrlX6avvDXbR +8O70zoan4G7ptGmh32n2M8ZpLpcTnqWHsFcQgTfJU7O7f/aS0ZzQGPSSbtqDT6Zj +mUyl+17vIWR6IF9sZIUVyzfpYgwLKhbcAS4y2j5L9Z469hdAlO+ekQiG+r5jqFoz +7Mt0Q5X5bGlSNscpb/xVA1wf+5+9R+vnSUeVC06JIglJ4PVhHvG/LopyboBZ/1c6 ++XUyo05f7O0oYtlNc/LMgRdg7c3r3NunysV+Ar3yVAhU/bQtCSwXVEqY0VThUWcI +0u1ufm8/0i2BWSlmy5A5lREedCf+3euvAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMB +Af8wDgYDVR0PAQH/BAQDAgGGMB0GA1UdDgQWBBSwDPBMMPQFWAJI/TPlUq9LhONm +UjANBgkqhkiG9w0BAQwFAAOCAgEAqqiAjw54o+Ci1M3m9Zh6O+oAA7CXDpO8Wqj2 +LIxyh6mx/H9z/WNxeKWHWc8w4Q0QshNabYL1auaAn6AFC2jkR2vHat+2/XcycuUY ++gn0oJMsXdKMdYV2ZZAMA3m3MSNjrXiDCYZohMr/+c8mmpJ5581LxedhpxfL86kS +k5Nrp+gvU5LEYFiwzAJRGFuFjWJZY7attN6a+yb3ACfAXVU3dJnJUH/jWS5E4ywl +7uxMMne0nxrpS10gxdr9HIcWxkPo1LsmmkVwXqkLN1PiRnsn/eBG8om3zEK2yygm +btmlyTrIQRNg91CMFa6ybRoVGld45pIq2WWQgj9sAq+uEjonljYE1x2igGOpm/Hl +urR8FLBOybEfdF849lHqm/osohHUqS0nGkWxr7JOcQ3AWEbWaQbLU8uz/mtBzUF+ +fUwPfHJ5elnNXkoOrJupmHN5fLT0zLm4BwyydFy4x2+IoZCn9Kr5v2c69BoVYh63 +n749sSmvZ6ES8lgQGVMDMBu4Gon2nL2XA46jCfMdiyHxtN/kHNGfZQIG6lzWE7OE +76KlXIx3KadowGuuQNKotOrN8I1LOJwZmhsoVLiJkO/KdYE+HvJkJMcYr07/R54H +9jVlpNMKVv/1F2Rs76giJUmTtt8AF9pYfl3uxRuw0dFfIRDH+fO6AgonB8Xx1sfT +4PsJYGw= +-----END CERTIFICATE----- + +# Issuer: CN=Amazon Root CA 3 O=Amazon +# Subject: CN=Amazon Root CA 3 O=Amazon +# Label: "Amazon Root CA 3" +# Serial: 143266986699090766294700635381230934788665930 +# MD5 Fingerprint: a0:d4:ef:0b:f7:b5:d8:49:95:2a:ec:f5:c4:fc:81:87 +# SHA1 Fingerprint: 0d:44:dd:8c:3c:8c:1a:1a:58:75:64:81:e9:0f:2e:2a:ff:b3:d2:6e +# SHA256 Fingerprint: 18:ce:6c:fe:7b:f1:4e:60:b2:e3:47:b8:df:e8:68:cb:31:d0:2e:bb:3a:da:27:15:69:f5:03:43:b4:6d:b3:a4 +-----BEGIN CERTIFICATE----- +MIIBtjCCAVugAwIBAgITBmyf1XSXNmY/Owua2eiedgPySjAKBggqhkjOPQQDAjA5 +MQswCQYDVQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRkwFwYDVQQDExBBbWF6b24g +Um9vdCBDQSAzMB4XDTE1MDUyNjAwMDAwMFoXDTQwMDUyNjAwMDAwMFowOTELMAkG +A1UEBhMCVVMxDzANBgNVBAoTBkFtYXpvbjEZMBcGA1UEAxMQQW1hem9uIFJvb3Qg +Q0EgMzBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABCmXp8ZBf8ANm+gBG1bG8lKl +ui2yEujSLtf6ycXYqm0fc4E7O5hrOXwzpcVOho6AF2hiRVd9RFgdszflZwjrZt6j +QjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgGGMB0GA1UdDgQWBBSr +ttvXBp43rDCGB5Fwx5zEGbF4wDAKBggqhkjOPQQDAgNJADBGAiEA4IWSoxe3jfkr +BqWTrBqYaGFy+uGh0PsceGCmQ5nFuMQCIQCcAu/xlJyzlvnrxir4tiz+OpAUFteM +YyRIHN8wfdVoOw== +-----END CERTIFICATE----- + +# Issuer: CN=Amazon Root CA 4 O=Amazon +# Subject: CN=Amazon Root CA 4 O=Amazon +# Label: "Amazon Root CA 4" +# Serial: 143266989758080763974105200630763877849284878 +# MD5 Fingerprint: 89:bc:27:d5:eb:17:8d:06:6a:69:d5:fd:89:47:b4:cd +# SHA1 Fingerprint: f6:10:84:07:d6:f8:bb:67:98:0c:c2:e2:44:c2:eb:ae:1c:ef:63:be +# SHA256 Fingerprint: e3:5d:28:41:9e:d0:20:25:cf:a6:90:38:cd:62:39:62:45:8d:a5:c6:95:fb:de:a3:c2:2b:0b:fb:25:89:70:92 +-----BEGIN CERTIFICATE----- +MIIB8jCCAXigAwIBAgITBmyf18G7EEwpQ+Vxe3ssyBrBDjAKBggqhkjOPQQDAzA5 +MQswCQYDVQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRkwFwYDVQQDExBBbWF6b24g +Um9vdCBDQSA0MB4XDTE1MDUyNjAwMDAwMFoXDTQwMDUyNjAwMDAwMFowOTELMAkG +A1UEBhMCVVMxDzANBgNVBAoTBkFtYXpvbjEZMBcGA1UEAxMQQW1hem9uIFJvb3Qg +Q0EgNDB2MBAGByqGSM49AgEGBSuBBAAiA2IABNKrijdPo1MN/sGKe0uoe0ZLY7Bi +9i0b2whxIdIA6GO9mif78DluXeo9pcmBqqNbIJhFXRbb/egQbeOc4OO9X4Ri83Bk +M6DLJC9wuoihKqB1+IGuYgbEgds5bimwHvouXKNCMEAwDwYDVR0TAQH/BAUwAwEB +/zAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0OBBYEFNPsxzplbszh2naaVvuc84ZtV+WB +MAoGCCqGSM49BAMDA2gAMGUCMDqLIfG9fhGt0O9Yli/W651+kI0rz2ZVwyzjKKlw +CkcO8DdZEv8tmZQoTipPNU0zWgIxAOp1AE47xDqUEpHJWEadIRNyp4iciuRMStuW +1KyLa2tJElMzrdfkviT8tQp21KW8EA== +-----END CERTIFICATE----- + +# Issuer: CN=TUBITAK Kamu SM SSL Kok Sertifikasi - Surum 1 O=Turkiye Bilimsel ve Teknolojik Arastirma Kurumu - TUBITAK OU=Kamu Sertifikasyon Merkezi - Kamu SM +# Subject: CN=TUBITAK Kamu SM SSL Kok Sertifikasi - Surum 1 O=Turkiye Bilimsel ve Teknolojik Arastirma Kurumu - TUBITAK OU=Kamu Sertifikasyon Merkezi - Kamu SM +# Label: "TUBITAK Kamu SM SSL Kok Sertifikasi - Surum 1" +# Serial: 1 +# MD5 Fingerprint: dc:00:81:dc:69:2f:3e:2f:b0:3b:f6:3d:5a:91:8e:49 +# SHA1 Fingerprint: 31:43:64:9b:ec:ce:27:ec:ed:3a:3f:0b:8f:0d:e4:e8:91:dd:ee:ca +# SHA256 Fingerprint: 46:ed:c3:68:90:46:d5:3a:45:3f:b3:10:4a:b8:0d:ca:ec:65:8b:26:60:ea:16:29:dd:7e:86:79:90:64:87:16 +-----BEGIN CERTIFICATE----- +MIIEYzCCA0ugAwIBAgIBATANBgkqhkiG9w0BAQsFADCB0jELMAkGA1UEBhMCVFIx +GDAWBgNVBAcTD0dlYnplIC0gS29jYWVsaTFCMEAGA1UEChM5VHVya2l5ZSBCaWxp +bXNlbCB2ZSBUZWtub2xvamlrIEFyYXN0aXJtYSBLdXJ1bXUgLSBUVUJJVEFLMS0w +KwYDVQQLEyRLYW11IFNlcnRpZmlrYXN5b24gTWVya2V6aSAtIEthbXUgU00xNjA0 +BgNVBAMTLVRVQklUQUsgS2FtdSBTTSBTU0wgS29rIFNlcnRpZmlrYXNpIC0gU3Vy +dW0gMTAeFw0xMzExMjUwODI1NTVaFw00MzEwMjUwODI1NTVaMIHSMQswCQYDVQQG +EwJUUjEYMBYGA1UEBxMPR2ViemUgLSBLb2NhZWxpMUIwQAYDVQQKEzlUdXJraXll +IEJpbGltc2VsIHZlIFRla25vbG9qaWsgQXJhc3Rpcm1hIEt1cnVtdSAtIFRVQklU +QUsxLTArBgNVBAsTJEthbXUgU2VydGlmaWthc3lvbiBNZXJrZXppIC0gS2FtdSBT +TTE2MDQGA1UEAxMtVFVCSVRBSyBLYW11IFNNIFNTTCBLb2sgU2VydGlmaWthc2kg +LSBTdXJ1bSAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAr3UwM6q7 +a9OZLBI3hNmNe5eA027n/5tQlT6QlVZC1xl8JoSNkvoBHToP4mQ4t4y86Ij5iySr +LqP1N+RAjhgleYN1Hzv/bKjFxlb4tO2KRKOrbEz8HdDc72i9z+SqzvBV96I01INr +N3wcwv61A+xXzry0tcXtAA9TNypN9E8Mg/uGz8v+jE69h/mniyFXnHrfA2eJLJ2X +YacQuFWQfw4tJzh03+f92k4S400VIgLI4OD8D62K18lUUMw7D8oWgITQUVbDjlZ/ +iSIzL+aFCr2lqBs23tPcLG07xxO9WSMs5uWk99gL7eqQQESolbuT1dCANLZGeA4f +AJNG4e7p+exPFwIDAQABo0IwQDAdBgNVHQ4EFgQUZT/HiobGPN08VFw1+DrtUgxH +V8gwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEL +BQADggEBACo/4fEyjq7hmFxLXs9rHmoJ0iKpEsdeV31zVmSAhHqT5Am5EM2fKifh +AHe+SMg1qIGf5LgsyX8OsNJLN13qudULXjS99HMpw+0mFZx+CFOKWI3QSyjfwbPf +IPP54+M638yclNhOT8NrF7f3cuitZjO1JVOr4PhMqZ398g26rrnZqsZr+ZO7rqu4 +lzwDGrpDxpa5RXI4s6ehlj2Re37AIVNMh+3yC1SVUZPVIqUNivGTDj5UDrDYyU7c +8jEyVupk+eq1nRZmQnLzf9OxMUP8pI4X8W0jq5Rm+K37DwhuJi1/FwcJsoz7UMCf +lo3Ptv0AnVoUmr8CRPXBwp8iXqIPoeM= +-----END CERTIFICATE----- + +# Issuer: CN=GDCA TrustAUTH R5 ROOT O=GUANG DONG CERTIFICATE AUTHORITY CO.,LTD. +# Subject: CN=GDCA TrustAUTH R5 ROOT O=GUANG DONG CERTIFICATE AUTHORITY CO.,LTD. +# Label: "GDCA TrustAUTH R5 ROOT" +# Serial: 9009899650740120186 +# MD5 Fingerprint: 63:cc:d9:3d:34:35:5c:6f:53:a3:e2:08:70:48:1f:b4 +# SHA1 Fingerprint: 0f:36:38:5b:81:1a:25:c3:9b:31:4e:83:ca:e9:34:66:70:cc:74:b4 +# SHA256 Fingerprint: bf:ff:8f:d0:44:33:48:7d:6a:8a:a6:0c:1a:29:76:7a:9f:c2:bb:b0:5e:42:0f:71:3a:13:b9:92:89:1d:38:93 +-----BEGIN CERTIFICATE----- +MIIFiDCCA3CgAwIBAgIIfQmX/vBH6nowDQYJKoZIhvcNAQELBQAwYjELMAkGA1UE +BhMCQ04xMjAwBgNVBAoMKUdVQU5HIERPTkcgQ0VSVElGSUNBVEUgQVVUSE9SSVRZ +IENPLixMVEQuMR8wHQYDVQQDDBZHRENBIFRydXN0QVVUSCBSNSBST09UMB4XDTE0 +MTEyNjA1MTMxNVoXDTQwMTIzMTE1NTk1OVowYjELMAkGA1UEBhMCQ04xMjAwBgNV +BAoMKUdVQU5HIERPTkcgQ0VSVElGSUNBVEUgQVVUSE9SSVRZIENPLixMVEQuMR8w +HQYDVQQDDBZHRENBIFRydXN0QVVUSCBSNSBST09UMIICIjANBgkqhkiG9w0BAQEF +AAOCAg8AMIICCgKCAgEA2aMW8Mh0dHeb7zMNOwZ+Vfy1YI92hhJCfVZmPoiC7XJj +Dp6L3TQsAlFRwxn9WVSEyfFrs0yw6ehGXTjGoqcuEVe6ghWinI9tsJlKCvLriXBj +TnnEt1u9ol2x8kECK62pOqPseQrsXzrj/e+APK00mxqriCZ7VqKChh/rNYmDf1+u +KU49tm7srsHwJ5uu4/Ts765/94Y9cnrrpftZTqfrlYwiOXnhLQiPzLyRuEH3FMEj +qcOtmkVEs7LXLM3GKeJQEK5cy4KOFxg2fZfmiJqwTTQJ9Cy5WmYqsBebnh52nUpm +MUHfP/vFBu8btn4aRjb3ZGM74zkYI+dndRTVdVeSN72+ahsmUPI2JgaQxXABZG12 +ZuGR224HwGGALrIuL4xwp9E7PLOR5G62xDtw8mySlwnNR30YwPO7ng/Wi64HtloP +zgsMR6flPri9fcebNaBhlzpBdRfMK5Z3KpIhHtmVdiBnaM8Nvd/WHwlqmuLMc3Gk +L30SgLdTMEZeS1SZD2fJpcjyIMGC7J0R38IC+xo70e0gmu9lZJIQDSri3nDxGGeC +jGHeuLzRL5z7D9Ar7Rt2ueQ5Vfj4oR24qoAATILnsn8JuLwwoC8N9VKejveSswoA +HQBUlwbgsQfZxw9cZX08bVlX5O2ljelAU58VS6Bx9hoh49pwBiFYFIeFd3mqgnkC +AwEAAaNCMEAwHQYDVR0OBBYEFOLJQJ9NzuiaoXzPDj9lxSmIahlRMA8GA1UdEwEB +/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgGGMA0GCSqGSIb3DQEBCwUAA4ICAQDRSVfg +p8xoWLoBDysZzY2wYUWsEe1jUGn4H3++Fo/9nesLqjJHdtJnJO29fDMylyrHBYZm +DRd9FBUb1Ov9H5r2XpdptxolpAqzkT9fNqyL7FeoPueBihhXOYV0GkLH6VsTX4/5 +COmSdI31R9KrO9b7eGZONn356ZLpBN79SWP8bfsUcZNnL0dKt7n/HipzcEYwv1ry +L3ml4Y0M2fmyYzeMN2WFcGpcWwlyua1jPLHd+PwyvzeG5LuOmCd+uh8W4XAR8gPf +JWIyJyYYMoSf/wA6E7qaTfRPuBRwIrHKK5DOKcFw9C+df/KQHtZa37dG/OaG+svg +IHZ6uqbL9XzeYqWxi+7egmaKTjowHz+Ay60nugxe19CxVsp3cbK1daFQqUBDF8Io +2c9Si1vIY9RCPqAzekYu9wogRlR+ak8x8YF+QnQ4ZXMn7sZ8uI7XpTrXmKGcjBBV +09tL7ECQ8s1uV9JiDnxXk7Gnbc2dg7sq5+W2O3FYrf3RRbxake5TFW/TRQl1brqQ +XR4EzzffHqhmsYzmIGrv/EhOdJhCrylvLmrH+33RZjEizIYAfmaDDEL0vTSSwxrq +T8p+ck0LcIymSLumoRT2+1hEmRSuqguTaaApJUqlyyvdimYHFngVV3Eb7PVHhPOe +MTd61X8kreS8/f3MboPoDKi3QWwH3b08hpcv0g== +-----END CERTIFICATE----- + +# Issuer: CN=TrustCor RootCert CA-1 O=TrustCor Systems S. de R.L. OU=TrustCor Certificate Authority +# Subject: CN=TrustCor RootCert CA-1 O=TrustCor Systems S. de R.L. OU=TrustCor Certificate Authority +# Label: "TrustCor RootCert CA-1" +# Serial: 15752444095811006489 +# MD5 Fingerprint: 6e:85:f1:dc:1a:00:d3:22:d5:b2:b2:ac:6b:37:05:45 +# SHA1 Fingerprint: ff:bd:cd:e7:82:c8:43:5e:3c:6f:26:86:5c:ca:a8:3a:45:5b:c3:0a +# SHA256 Fingerprint: d4:0e:9c:86:cd:8f:e4:68:c1:77:69:59:f4:9e:a7:74:fa:54:86:84:b6:c4:06:f3:90:92:61:f4:dc:e2:57:5c +-----BEGIN CERTIFICATE----- +MIIEMDCCAxigAwIBAgIJANqb7HHzA7AZMA0GCSqGSIb3DQEBCwUAMIGkMQswCQYD +VQQGEwJQQTEPMA0GA1UECAwGUGFuYW1hMRQwEgYDVQQHDAtQYW5hbWEgQ2l0eTEk +MCIGA1UECgwbVHJ1c3RDb3IgU3lzdGVtcyBTLiBkZSBSLkwuMScwJQYDVQQLDB5U +cnVzdENvciBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkxHzAdBgNVBAMMFlRydXN0Q29y +IFJvb3RDZXJ0IENBLTEwHhcNMTYwMjA0MTIzMjE2WhcNMjkxMjMxMTcyMzE2WjCB +pDELMAkGA1UEBhMCUEExDzANBgNVBAgMBlBhbmFtYTEUMBIGA1UEBwwLUGFuYW1h +IENpdHkxJDAiBgNVBAoMG1RydXN0Q29yIFN5c3RlbXMgUy4gZGUgUi5MLjEnMCUG +A1UECwweVHJ1c3RDb3IgQ2VydGlmaWNhdGUgQXV0aG9yaXR5MR8wHQYDVQQDDBZU +cnVzdENvciBSb290Q2VydCBDQS0xMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB +CgKCAQEAv463leLCJhJrMxnHQFgKq1mqjQCj/IDHUHuO1CAmujIS2CNUSSUQIpid +RtLByZ5OGy4sDjjzGiVoHKZaBeYei0i/mJZ0PmnK6bV4pQa81QBeCQryJ3pS/C3V +seq0iWEk8xoT26nPUu0MJLq5nux+AHT6k61sKZKuUbS701e/s/OojZz0JEsq1pme +9J7+wH5COucLlVPat2gOkEz7cD+PSiyU8ybdY2mplNgQTsVHCJCZGxdNuWxu72CV +EY4hgLW9oHPY0LJ3xEXqWib7ZnZ2+AYfYW0PVcWDtxBWcgYHpfOxGgMFZA6dWorW +hnAbJN7+KIor0Gqw/Hqi3LJ5DotlDwIDAQABo2MwYTAdBgNVHQ4EFgQU7mtJPHo/ +DeOxCbeKyKsZn3MzUOcwHwYDVR0jBBgwFoAU7mtJPHo/DeOxCbeKyKsZn3MzUOcw +DwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAYYwDQYJKoZIhvcNAQELBQAD +ggEBACUY1JGPE+6PHh0RU9otRCkZoB5rMZ5NDp6tPVxBb5UrJKF5mDo4Nvu7Zp5I +/5CQ7z3UuJu0h3U/IJvOcs+hVcFNZKIZBqEHMwwLKeXx6quj7LUKdJDHfXLy11yf +ke+Ri7fc7Waiz45mO7yfOgLgJ90WmMCV1Aqk5IGadZQ1nJBfiDcGrVmVCrDRZ9MZ +yonnMlo2HD6CqFqTvsbQZJG2z9m2GM/bftJlo6bEjhcxwft+dtvTheNYsnd6djts +L1Ac59v2Z3kf9YKVmgenFK+P3CghZwnS1k1aHBkcjndcw5QkPTJrS37UeJSDvjdN +zl/HHk484IkzlQsPpTLWPFp5LBk= +-----END CERTIFICATE----- + +# Issuer: CN=TrustCor RootCert CA-2 O=TrustCor Systems S. de R.L. OU=TrustCor Certificate Authority +# Subject: CN=TrustCor RootCert CA-2 O=TrustCor Systems S. de R.L. OU=TrustCor Certificate Authority +# Label: "TrustCor RootCert CA-2" +# Serial: 2711694510199101698 +# MD5 Fingerprint: a2:e1:f8:18:0b:ba:45:d5:c7:41:2a:bb:37:52:45:64 +# SHA1 Fingerprint: b8:be:6d:cb:56:f1:55:b9:63:d4:12:ca:4e:06:34:c7:94:b2:1c:c0 +# SHA256 Fingerprint: 07:53:e9:40:37:8c:1b:d5:e3:83:6e:39:5d:ae:a5:cb:83:9e:50:46:f1:bd:0e:ae:19:51:cf:10:fe:c7:c9:65 +-----BEGIN CERTIFICATE----- +MIIGLzCCBBegAwIBAgIIJaHfyjPLWQIwDQYJKoZIhvcNAQELBQAwgaQxCzAJBgNV +BAYTAlBBMQ8wDQYDVQQIDAZQYW5hbWExFDASBgNVBAcMC1BhbmFtYSBDaXR5MSQw +IgYDVQQKDBtUcnVzdENvciBTeXN0ZW1zIFMuIGRlIFIuTC4xJzAlBgNVBAsMHlRy +dXN0Q29yIENlcnRpZmljYXRlIEF1dGhvcml0eTEfMB0GA1UEAwwWVHJ1c3RDb3Ig +Um9vdENlcnQgQ0EtMjAeFw0xNjAyMDQxMjMyMjNaFw0zNDEyMzExNzI2MzlaMIGk +MQswCQYDVQQGEwJQQTEPMA0GA1UECAwGUGFuYW1hMRQwEgYDVQQHDAtQYW5hbWEg +Q2l0eTEkMCIGA1UECgwbVHJ1c3RDb3IgU3lzdGVtcyBTLiBkZSBSLkwuMScwJQYD +VQQLDB5UcnVzdENvciBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkxHzAdBgNVBAMMFlRy +dXN0Q29yIFJvb3RDZXJ0IENBLTIwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIK +AoICAQCnIG7CKqJiJJWQdsg4foDSq8GbZQWU9MEKENUCrO2fk8eHyLAnK0IMPQo+ +QVqedd2NyuCb7GgypGmSaIwLgQ5WoD4a3SwlFIIvl9NkRvRUqdw6VC0xK5mC8tkq +1+9xALgxpL56JAfDQiDyitSSBBtlVkxs1Pu2YVpHI7TYabS3OtB0PAx1oYxOdqHp +2yqlO/rOsP9+aij9JxzIsekp8VduZLTQwRVtDr4uDkbIXvRR/u8OYzo7cbrPb1nK +DOObXUm4TOJXsZiKQlecdu/vvdFoqNL0Cbt3Nb4lggjEFixEIFapRBF37120Hape +az6LMvYHL1cEksr1/p3C6eizjkxLAjHZ5DxIgif3GIJ2SDpxsROhOdUuxTTCHWKF +3wP+TfSvPd9cW436cOGlfifHhi5qjxLGhF5DUVCcGZt45vz27Ud+ez1m7xMTiF88 +oWP7+ayHNZ/zgp6kPwqcMWmLmaSISo5uZk3vFsQPeSghYA2FFn3XVDjxklb9tTNM +g9zXEJ9L/cb4Qr26fHMC4P99zVvh1Kxhe1fVSntb1IVYJ12/+CtgrKAmrhQhJ8Z3 +mjOAPF5GP/fDsaOGM8boXg25NSyqRsGFAnWAoOsk+xWq5Gd/bnc/9ASKL3x74xdh +8N0JqSDIvgmk0H5Ew7IwSjiqqewYmgeCK9u4nBit2uBGF6zPXQIDAQABo2MwYTAd +BgNVHQ4EFgQU2f4hQG6UnrybPZx9mCAZ5YwwYrIwHwYDVR0jBBgwFoAU2f4hQG6U +nrybPZx9mCAZ5YwwYrIwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAYYw +DQYJKoZIhvcNAQELBQADggIBAJ5Fngw7tu/hOsh80QA9z+LqBrWyOrsGS2h60COX +dKcs8AjYeVrXWoSK2BKaG9l9XE1wxaX5q+WjiYndAfrs3fnpkpfbsEZC89NiqpX+ +MWcUaViQCqoL7jcjx1BRtPV+nuN79+TMQjItSQzL/0kMmx40/W5ulop5A7Zv2wnL +/V9lFDfhOPXzYRZY5LVtDQsEGz9QLX+zx3oaFoBg+Iof6Rsqxvm6ARppv9JYx1RX +CI/hOWB3S6xZhBqI8d3LT3jX5+EzLfzuQfogsL7L9ziUwOHQhQ+77Sxzq+3+knYa +ZH9bDTMJBzN7Bj8RpFxwPIXAz+OQqIN3+tvmxYxoZxBnpVIt8MSZj3+/0WvitUfW +2dCFmU2Umw9Lje4AWkcdEQOsQRivh7dvDDqPys/cA8GiCcjl/YBeyGBCARsaU1q7 +N6a3vLqE6R5sGtRk2tRD/pOLS/IseRYQ1JMLiI+h2IYURpFHmygk71dSTlxCnKr3 +Sewn6EAes6aJInKc9Q0ztFijMDvd1GpUk74aTfOTlPf8hAs/hCBcNANExdqtvArB +As8e5ZTZ845b2EzwnexhF7sUMlQMAimTHpKG9n/v55IFDlndmQguLvqcAFLTxWYp +5KeXRKQOKIETNcX2b2TmQcTVL8w0RSXPQQCWPUouwpaYT05KnJe32x+SMsj/D1Fu +1uwJ +-----END CERTIFICATE----- + +# Issuer: CN=TrustCor ECA-1 O=TrustCor Systems S. de R.L. OU=TrustCor Certificate Authority +# Subject: CN=TrustCor ECA-1 O=TrustCor Systems S. de R.L. OU=TrustCor Certificate Authority +# Label: "TrustCor ECA-1" +# Serial: 9548242946988625984 +# MD5 Fingerprint: 27:92:23:1d:0a:f5:40:7c:e9:e6:6b:9d:d8:f5:e7:6c +# SHA1 Fingerprint: 58:d1:df:95:95:67:6b:63:c0:f0:5b:1c:17:4d:8b:84:0b:c8:78:bd +# SHA256 Fingerprint: 5a:88:5d:b1:9c:01:d9:12:c5:75:93:88:93:8c:af:bb:df:03:1a:b2:d4:8e:91:ee:15:58:9b:42:97:1d:03:9c +-----BEGIN CERTIFICATE----- +MIIEIDCCAwigAwIBAgIJAISCLF8cYtBAMA0GCSqGSIb3DQEBCwUAMIGcMQswCQYD +VQQGEwJQQTEPMA0GA1UECAwGUGFuYW1hMRQwEgYDVQQHDAtQYW5hbWEgQ2l0eTEk +MCIGA1UECgwbVHJ1c3RDb3IgU3lzdGVtcyBTLiBkZSBSLkwuMScwJQYDVQQLDB5U +cnVzdENvciBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkxFzAVBgNVBAMMDlRydXN0Q29y +IEVDQS0xMB4XDTE2MDIwNDEyMzIzM1oXDTI5MTIzMTE3MjgwN1owgZwxCzAJBgNV +BAYTAlBBMQ8wDQYDVQQIDAZQYW5hbWExFDASBgNVBAcMC1BhbmFtYSBDaXR5MSQw +IgYDVQQKDBtUcnVzdENvciBTeXN0ZW1zIFMuIGRlIFIuTC4xJzAlBgNVBAsMHlRy +dXN0Q29yIENlcnRpZmljYXRlIEF1dGhvcml0eTEXMBUGA1UEAwwOVHJ1c3RDb3Ig +RUNBLTEwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDPj+ARtZ+odnbb +3w9U73NjKYKtR8aja+3+XzP4Q1HpGjORMRegdMTUpwHmspI+ap3tDvl0mEDTPwOA +BoJA6LHip1GnHYMma6ve+heRK9jGrB6xnhkB1Zem6g23xFUfJ3zSCNV2HykVh0A5 +3ThFEXXQmqc04L/NyFIduUd+Dbi7xgz2c1cWWn5DkR9VOsZtRASqnKmcp0yJF4Ou +owReUoCLHhIlERnXDH19MURB6tuvsBzvgdAsxZohmz3tQjtQJvLsznFhBmIhVE5/ +wZ0+fyCMgMsq2JdiyIMzkX2woloPV+g7zPIlstR8L+xNxqE6FXrntl019fZISjZF +ZtS6mFjBAgMBAAGjYzBhMB0GA1UdDgQWBBREnkj1zG1I1KBLf/5ZJC+Dl5mahjAf +BgNVHSMEGDAWgBREnkj1zG1I1KBLf/5ZJC+Dl5mahjAPBgNVHRMBAf8EBTADAQH/ +MA4GA1UdDwEB/wQEAwIBhjANBgkqhkiG9w0BAQsFAAOCAQEABT41XBVwm8nHc2Fv +civUwo/yQ10CzsSUuZQRg2dd4mdsdXa/uwyqNsatR5Nj3B5+1t4u/ukZMjgDfxT2 +AHMsWbEhBuH7rBiVDKP/mZb3Kyeb1STMHd3BOuCYRLDE5D53sXOpZCz2HAF8P11F +hcCF5yWPldwX8zyfGm6wyuMdKulMY/okYWLW2n62HGz1Ah3UKt1VkOsqEUc8Ll50 +soIipX1TH0XsJ5F95yIW6MBoNtjG8U+ARDL54dHRHareqKucBK+tIA5kmE2la8BI +WJZpTdwHjFGTot+fDz2LYLSCjaoITmJF4PkL0uDgPFveXHEnJcLmA4GLEFPjx1Wi +tJ/X5g== +-----END CERTIFICATE----- + +# Issuer: CN=SSL.com Root Certification Authority RSA O=SSL Corporation +# Subject: CN=SSL.com Root Certification Authority RSA O=SSL Corporation +# Label: "SSL.com Root Certification Authority RSA" +# Serial: 8875640296558310041 +# MD5 Fingerprint: 86:69:12:c0:70:f1:ec:ac:ac:c2:d5:bc:a5:5b:a1:29 +# SHA1 Fingerprint: b7:ab:33:08:d1:ea:44:77:ba:14:80:12:5a:6f:bd:a9:36:49:0c:bb +# SHA256 Fingerprint: 85:66:6a:56:2e:e0:be:5c:e9:25:c1:d8:89:0a:6f:76:a8:7e:c1:6d:4d:7d:5f:29:ea:74:19:cf:20:12:3b:69 +-----BEGIN CERTIFICATE----- +MIIF3TCCA8WgAwIBAgIIeyyb0xaAMpkwDQYJKoZIhvcNAQELBQAwfDELMAkGA1UE +BhMCVVMxDjAMBgNVBAgMBVRleGFzMRAwDgYDVQQHDAdIb3VzdG9uMRgwFgYDVQQK +DA9TU0wgQ29ycG9yYXRpb24xMTAvBgNVBAMMKFNTTC5jb20gUm9vdCBDZXJ0aWZp +Y2F0aW9uIEF1dGhvcml0eSBSU0EwHhcNMTYwMjEyMTczOTM5WhcNNDEwMjEyMTcz +OTM5WjB8MQswCQYDVQQGEwJVUzEOMAwGA1UECAwFVGV4YXMxEDAOBgNVBAcMB0hv +dXN0b24xGDAWBgNVBAoMD1NTTCBDb3Jwb3JhdGlvbjExMC8GA1UEAwwoU1NMLmNv +bSBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IFJTQTCCAiIwDQYJKoZIhvcN +AQEBBQADggIPADCCAgoCggIBAPkP3aMrfcvQKv7sZ4Wm5y4bunfh4/WvpOz6Sl2R +xFdHaxh3a3by/ZPkPQ/CFp4LZsNWlJ4Xg4XOVu/yFv0AYvUiCVToZRdOQbngT0aX +qhvIuG5iXmmxX9sqAn78bMrzQdjt0Oj8P2FI7bADFB0QDksZ4LtO7IZl/zbzXmcC +C52GVWH9ejjt/uIZALdvoVBidXQ8oPrIJZK0bnoix/geoeOy3ZExqysdBP+lSgQ3 +6YWkMyv94tZVNHwZpEpox7Ko07fKoZOI68GXvIz5HdkihCR0xwQ9aqkpk8zruFvh +/l8lqjRYyMEjVJ0bmBHDOJx+PYZspQ9AhnwC9FwCTyjLrnGfDzrIM/4RJTXq/LrF +YD3ZfBjVsqnTdXgDciLKOsMf7yzlLqn6niy2UUb9rwPW6mBo6oUWNmuF6R7As93E +JNyAKoFBbZQ+yODJgUEAnl6/f8UImKIYLEJAs/lvOCdLToD0PYFH4Ih86hzOtXVc +US4cK38acijnALXRdMbX5J+tB5O2UzU1/Dfkw/ZdFr4hc96SCvigY2q8lpJqPvi8 +ZVWb3vUNiSYE/CUapiVpy8JtynziWV+XrOvvLsi81xtZPCvM8hnIk2snYxnP/Okm ++Mpxm3+T/jRnhE6Z6/yzeAkzcLpmpnbtG3PrGqUNxCITIJRWCk4sbE6x/c+cCbqi +M+2HAgMBAAGjYzBhMB0GA1UdDgQWBBTdBAkHovV6fVJTEpKV7jiAJQ2mWTAPBgNV +HRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFN0ECQei9Xp9UlMSkpXuOIAlDaZZMA4G +A1UdDwEB/wQEAwIBhjANBgkqhkiG9w0BAQsFAAOCAgEAIBgRlCn7Jp0cHh5wYfGV +cpNxJK1ok1iOMq8bs3AD/CUrdIWQPXhq9LmLpZc7tRiRux6n+UBbkflVma8eEdBc +Hadm47GUBwwyOabqG7B52B2ccETjit3E+ZUfijhDPwGFpUenPUayvOUiaPd7nNgs +PgohyC0zrL/FgZkxdMF1ccW+sfAjRfSda/wZY52jvATGGAslu1OJD7OAUN5F7kR/ +q5R4ZJjT9ijdh9hwZXT7DrkT66cPYakylszeu+1jTBi7qUD3oFRuIIhxdRjqerQ0 +cuAjJ3dctpDqhiVAq+8zD8ufgr6iIPv2tS0a5sKFsXQP+8hlAqRSAUfdSSLBv9jr +a6x+3uxjMxW3IwiPxg+NQVrdjsW5j+VFP3jbutIbQLH+cU0/4IGiul607BXgk90I +H37hVZkLId6Tngr75qNJvTYw/ud3sqB1l7UtgYgXZSD32pAAn8lSzDLKNXz1PQ/Y +K9f1JmzJBjSWFupwWRoyeXkLtoh/D1JIPb9s2KJELtFOt3JY04kTlf5Eq/jXixtu +nLwsoFvVagCvXzfh1foQC5ichucmj87w7G6KVwuA406ywKBjYZC6VWg3dGq2ktuf +oYYitmUnDuy2n0Jg5GfCtdpBC8TTi2EbvPofkSvXRAdeuims2cXp71NIWuuA8ShY +Ic2wBlX7Jz9TkHCpBB5XJ7k= +-----END CERTIFICATE----- + +# Issuer: CN=SSL.com Root Certification Authority ECC O=SSL Corporation +# Subject: CN=SSL.com Root Certification Authority ECC O=SSL Corporation +# Label: "SSL.com Root Certification Authority ECC" +# Serial: 8495723813297216424 +# MD5 Fingerprint: 2e:da:e4:39:7f:9c:8f:37:d1:70:9f:26:17:51:3a:8e +# SHA1 Fingerprint: c3:19:7c:39:24:e6:54:af:1b:c4:ab:20:95:7a:e2:c3:0e:13:02:6a +# SHA256 Fingerprint: 34:17:bb:06:cc:60:07:da:1b:96:1c:92:0b:8a:b4:ce:3f:ad:82:0e:4a:a3:0b:9a:cb:c4:a7:4e:bd:ce:bc:65 +-----BEGIN CERTIFICATE----- +MIICjTCCAhSgAwIBAgIIdebfy8FoW6gwCgYIKoZIzj0EAwIwfDELMAkGA1UEBhMC +VVMxDjAMBgNVBAgMBVRleGFzMRAwDgYDVQQHDAdIb3VzdG9uMRgwFgYDVQQKDA9T +U0wgQ29ycG9yYXRpb24xMTAvBgNVBAMMKFNTTC5jb20gUm9vdCBDZXJ0aWZpY2F0 +aW9uIEF1dGhvcml0eSBFQ0MwHhcNMTYwMjEyMTgxNDAzWhcNNDEwMjEyMTgxNDAz +WjB8MQswCQYDVQQGEwJVUzEOMAwGA1UECAwFVGV4YXMxEDAOBgNVBAcMB0hvdXN0 +b24xGDAWBgNVBAoMD1NTTCBDb3Jwb3JhdGlvbjExMC8GA1UEAwwoU1NMLmNvbSBS +b290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IEVDQzB2MBAGByqGSM49AgEGBSuB +BAAiA2IABEVuqVDEpiM2nl8ojRfLliJkP9x6jh3MCLOicSS6jkm5BBtHllirLZXI +7Z4INcgn64mMU1jrYor+8FsPazFSY0E7ic3s7LaNGdM0B9y7xgZ/wkWV7Mt/qCPg +CemB+vNH06NjMGEwHQYDVR0OBBYEFILRhXMw5zUE044CkvvlpNHEIejNMA8GA1Ud +EwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAUgtGFczDnNQTTjgKS++Wk0cQh6M0wDgYD +VR0PAQH/BAQDAgGGMAoGCCqGSM49BAMCA2cAMGQCMG/n61kRpGDPYbCWe+0F+S8T +kdzt5fxQaxFGRrMcIQBiu77D5+jNB5n5DQtdcj7EqgIwH7y6C+IwJPt8bYBVCpk+ +gA0z5Wajs6O7pdWLjwkspl1+4vAHCGht0nxpbl/f5Wpl +-----END CERTIFICATE----- + +# Issuer: CN=SSL.com EV Root Certification Authority RSA R2 O=SSL Corporation +# Subject: CN=SSL.com EV Root Certification Authority RSA R2 O=SSL Corporation +# Label: "SSL.com EV Root Certification Authority RSA R2" +# Serial: 6248227494352943350 +# MD5 Fingerprint: e1:1e:31:58:1a:ae:54:53:02:f6:17:6a:11:7b:4d:95 +# SHA1 Fingerprint: 74:3a:f0:52:9b:d0:32:a0:f4:4a:83:cd:d4:ba:a9:7b:7c:2e:c4:9a +# SHA256 Fingerprint: 2e:7b:f1:6c:c2:24:85:a7:bb:e2:aa:86:96:75:07:61:b0:ae:39:be:3b:2f:e9:d0:cc:6d:4e:f7:34:91:42:5c +-----BEGIN CERTIFICATE----- +MIIF6zCCA9OgAwIBAgIIVrYpzTS8ePYwDQYJKoZIhvcNAQELBQAwgYIxCzAJBgNV +BAYTAlVTMQ4wDAYDVQQIDAVUZXhhczEQMA4GA1UEBwwHSG91c3RvbjEYMBYGA1UE +CgwPU1NMIENvcnBvcmF0aW9uMTcwNQYDVQQDDC5TU0wuY29tIEVWIFJvb3QgQ2Vy +dGlmaWNhdGlvbiBBdXRob3JpdHkgUlNBIFIyMB4XDTE3MDUzMTE4MTQzN1oXDTQy +MDUzMDE4MTQzN1owgYIxCzAJBgNVBAYTAlVTMQ4wDAYDVQQIDAVUZXhhczEQMA4G +A1UEBwwHSG91c3RvbjEYMBYGA1UECgwPU1NMIENvcnBvcmF0aW9uMTcwNQYDVQQD +DC5TU0wuY29tIEVWIFJvb3QgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgUlNBIFIy +MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAjzZlQOHWTcDXtOlG2mvq +M0fNTPl9fb69LT3w23jhhqXZuglXaO1XPqDQCEGD5yhBJB/jchXQARr7XnAjssuf +OePPxU7Gkm0mxnu7s9onnQqG6YE3Bf7wcXHswxzpY6IXFJ3vG2fThVUCAtZJycxa +4bH3bzKfydQ7iEGonL3Lq9ttewkfokxykNorCPzPPFTOZw+oz12WGQvE43LrrdF9 +HSfvkusQv1vrO6/PgN3B0pYEW3p+pKk8OHakYo6gOV7qd89dAFmPZiw+B6KjBSYR +aZfqhbcPlgtLyEDhULouisv3D5oi53+aNxPN8k0TayHRwMwi8qFG9kRpnMphNQcA +b9ZhCBHqurj26bNg5U257J8UZslXWNvNh2n4ioYSA0e/ZhN2rHd9NCSFg83XqpyQ +Gp8hLH94t2S42Oim9HizVcuE0jLEeK6jj2HdzghTreyI/BXkmg3mnxp3zkyPuBQV +PWKchjgGAGYS5Fl2WlPAApiiECtoRHuOec4zSnaqW4EWG7WK2NAAe15itAnWhmMO +pgWVSbooi4iTsjQc2KRVbrcc0N6ZVTsj9CLg+SlmJuwgUHfbSguPvuUCYHBBXtSu +UDkiFCbLsjtzdFVHB3mBOagwE0TlBIqulhMlQg+5U8Sb/M3kHN48+qvWBkofZ6aY +MBzdLNvcGJVXZsb/XItW9XcCAwEAAaNjMGEwDwYDVR0TAQH/BAUwAwEB/zAfBgNV +HSMEGDAWgBT5YLvU49U09rj1BoAlp3PbRmmonjAdBgNVHQ4EFgQU+WC71OPVNPa4 +9QaAJadz20ZpqJ4wDgYDVR0PAQH/BAQDAgGGMA0GCSqGSIb3DQEBCwUAA4ICAQBW +s47LCp1Jjr+kxJG7ZhcFUZh1++VQLHqe8RT6q9OKPv+RKY9ji9i0qVQBDb6Thi/5 +Sm3HXvVX+cpVHBK+Rw82xd9qt9t1wkclf7nxY/hoLVUE0fKNsKTPvDxeH3jnpaAg +cLAExbf3cqfeIg29MyVGjGSSJuM+LmOW2puMPfgYCdcDzH2GguDKBAdRUNf/ktUM +79qGn5nX67evaOI5JpS6aLe/g9Pqemc9YmeuJeVy6OLk7K4S9ksrPJ/psEDzOFSz +/bdoyNrGj1E8svuR3Bznm53htw1yj+KkxKl4+esUrMZDBcJlOSgYAsOCsp0FvmXt +ll9ldDz7CTUue5wT/RsPXcdtgTpWD8w74a8CLyKsRspGPKAcTNZEtF4uXBVmCeEm +Kf7GUmG6sXP/wwyc5WxqlD8UykAWlYTzWamsX0xhk23RO8yilQwipmdnRC652dKK +QbNmC1r7fSOl8hqw/96bg5Qu0T/fkreRrwU7ZcegbLHNYhLDkBvjJc40vG93drEQ +w/cFGsDWr3RiSBd3kmmQYRzelYB0VI8YHMPzA9C/pEN1hlMYegouCRw2n5H9gooi +S9EOUCXdywMMF8mDAAhONU2Ki+3wApRmLER/y5UnlhetCTCstnEXbosX9hwJ1C07 +mKVx01QT2WDz9UtmT/rx7iASjbSsV7FFY6GsdqnC+w== +-----END CERTIFICATE----- + +# Issuer: CN=SSL.com EV Root Certification Authority ECC O=SSL Corporation +# Subject: CN=SSL.com EV Root Certification Authority ECC O=SSL Corporation +# Label: "SSL.com EV Root Certification Authority ECC" +# Serial: 3182246526754555285 +# MD5 Fingerprint: 59:53:22:65:83:42:01:54:c0:ce:42:b9:5a:7c:f2:90 +# SHA1 Fingerprint: 4c:dd:51:a3:d1:f5:20:32:14:b0:c6:c5:32:23:03:91:c7:46:42:6d +# SHA256 Fingerprint: 22:a2:c1:f7:bd:ed:70:4c:c1:e7:01:b5:f4:08:c3:10:88:0f:e9:56:b5:de:2a:4a:44:f9:9c:87:3a:25:a7:c8 +-----BEGIN CERTIFICATE----- +MIIClDCCAhqgAwIBAgIILCmcWxbtBZUwCgYIKoZIzj0EAwIwfzELMAkGA1UEBhMC +VVMxDjAMBgNVBAgMBVRleGFzMRAwDgYDVQQHDAdIb3VzdG9uMRgwFgYDVQQKDA9T +U0wgQ29ycG9yYXRpb24xNDAyBgNVBAMMK1NTTC5jb20gRVYgUm9vdCBDZXJ0aWZp +Y2F0aW9uIEF1dGhvcml0eSBFQ0MwHhcNMTYwMjEyMTgxNTIzWhcNNDEwMjEyMTgx +NTIzWjB/MQswCQYDVQQGEwJVUzEOMAwGA1UECAwFVGV4YXMxEDAOBgNVBAcMB0hv +dXN0b24xGDAWBgNVBAoMD1NTTCBDb3Jwb3JhdGlvbjE0MDIGA1UEAwwrU1NMLmNv +bSBFViBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IEVDQzB2MBAGByqGSM49 +AgEGBSuBBAAiA2IABKoSR5CYG/vvw0AHgyBO8TCCogbR8pKGYfL2IWjKAMTH6kMA +VIbc/R/fALhBYlzccBYy3h+Z1MzFB8gIH2EWB1E9fVwHU+M1OIzfzZ/ZLg1Kthku +WnBaBu2+8KGwytAJKaNjMGEwHQYDVR0OBBYEFFvKXuXe0oGqzagtZFG22XKbl+ZP +MA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAUW8pe5d7SgarNqC1kUbbZcpuX +5k8wDgYDVR0PAQH/BAQDAgGGMAoGCCqGSM49BAMCA2gAMGUCMQCK5kCJN+vp1RPZ +ytRrJPOwPYdGWBrssd9v+1a6cGvHOMzosYxPD/fxZ3YOg9AeUY8CMD32IygmTMZg +h5Mmm7I1HrrW9zzRHM76JTymGoEVW/MSD2zuZYrJh6j5B+BimoxcSg== +-----END CERTIFICATE----- + +# Issuer: CN=GlobalSign O=GlobalSign OU=GlobalSign Root CA - R6 +# Subject: CN=GlobalSign O=GlobalSign OU=GlobalSign Root CA - R6 +# Label: "GlobalSign Root CA - R6" +# Serial: 1417766617973444989252670301619537 +# MD5 Fingerprint: 4f:dd:07:e4:d4:22:64:39:1e:0c:37:42:ea:d1:c6:ae +# SHA1 Fingerprint: 80:94:64:0e:b5:a7:a1:ca:11:9c:1f:dd:d5:9f:81:02:63:a7:fb:d1 +# SHA256 Fingerprint: 2c:ab:ea:fe:37:d0:6c:a2:2a:ba:73:91:c0:03:3d:25:98:29:52:c4:53:64:73:49:76:3a:3a:b5:ad:6c:cf:69 +-----BEGIN CERTIFICATE----- +MIIFgzCCA2ugAwIBAgIORea7A4Mzw4VlSOb/RVEwDQYJKoZIhvcNAQEMBQAwTDEg +MB4GA1UECxMXR2xvYmFsU2lnbiBSb290IENBIC0gUjYxEzARBgNVBAoTCkdsb2Jh +bFNpZ24xEzARBgNVBAMTCkdsb2JhbFNpZ24wHhcNMTQxMjEwMDAwMDAwWhcNMzQx +MjEwMDAwMDAwWjBMMSAwHgYDVQQLExdHbG9iYWxTaWduIFJvb3QgQ0EgLSBSNjET +MBEGA1UEChMKR2xvYmFsU2lnbjETMBEGA1UEAxMKR2xvYmFsU2lnbjCCAiIwDQYJ +KoZIhvcNAQEBBQADggIPADCCAgoCggIBAJUH6HPKZvnsFMp7PPcNCPG0RQssgrRI +xutbPK6DuEGSMxSkb3/pKszGsIhrxbaJ0cay/xTOURQh7ErdG1rG1ofuTToVBu1k +ZguSgMpE3nOUTvOniX9PeGMIyBJQbUJmL025eShNUhqKGoC3GYEOfsSKvGRMIRxD +aNc9PIrFsmbVkJq3MQbFvuJtMgamHvm566qjuL++gmNQ0PAYid/kD3n16qIfKtJw +LnvnvJO7bVPiSHyMEAc4/2ayd2F+4OqMPKq0pPbzlUoSB239jLKJz9CgYXfIWHSw +1CM69106yqLbnQneXUQtkPGBzVeS+n68UARjNN9rkxi+azayOeSsJDa38O+2HBNX +k7besvjihbdzorg1qkXy4J02oW9UivFyVm4uiMVRQkQVlO6jxTiWm05OWgtH8wY2 +SXcwvHE35absIQh1/OZhFj931dmRl4QKbNQCTXTAFO39OfuD8l4UoQSwC+n+7o/h +bguyCLNhZglqsQY6ZZZZwPA1/cnaKI0aEYdwgQqomnUdnjqGBQCe24DWJfncBZ4n +WUx2OVvq+aWh2IMP0f/fMBH5hc8zSPXKbWQULHpYT9NLCEnFlWQaYw55PfWzjMpY +rZxCRXluDocZXFSxZba/jJvcE+kNb7gu3GduyYsRtYQUigAZcIN5kZeR1Bonvzce +MgfYFGM8KEyvAgMBAAGjYzBhMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTAD +AQH/MB0GA1UdDgQWBBSubAWjkxPioufi1xzWx/B/yGdToDAfBgNVHSMEGDAWgBSu +bAWjkxPioufi1xzWx/B/yGdToDANBgkqhkiG9w0BAQwFAAOCAgEAgyXt6NH9lVLN +nsAEoJFp5lzQhN7craJP6Ed41mWYqVuoPId8AorRbrcWc+ZfwFSY1XS+wc3iEZGt +Ixg93eFyRJa0lV7Ae46ZeBZDE1ZXs6KzO7V33EByrKPrmzU+sQghoefEQzd5Mr61 +55wsTLxDKZmOMNOsIeDjHfrYBzN2VAAiKrlNIC5waNrlU/yDXNOd8v9EDERm8tLj +vUYAGm0CuiVdjaExUd1URhxN25mW7xocBFymFe944Hn+Xds+qkxV/ZoVqW/hpvvf +cDDpw+5CRu3CkwWJ+n1jez/QcYF8AOiYrg54NMMl+68KnyBr3TsTjxKM4kEaSHpz +oHdpx7Zcf4LIHv5YGygrqGytXm3ABdJ7t+uA/iU3/gKbaKxCXcPu9czc8FB10jZp +nOZ7BN9uBmm23goJSFmH63sUYHpkqmlD75HHTOwY3WzvUy2MmeFe8nI+z1TIvWfs +pA9MRf/TuTAjB0yPEL+GltmZWrSZVxykzLsViVO6LAUP5MSeGbEYNNVMnbrt9x+v +JJUEeKgDu+6B5dpffItKoZB0JaezPkvILFa9x8jvOOJckvB595yEunQtYQEgfn7R +8k8HWV+LLUNS60YMlOH1Zkd5d9VUWx+tJDfLRVpOoERIyNiwmcUVhAn21klJwGW4 +5hpxbqCo8YLoRT5s1gLXCmeDBVrJpBA= +-----END CERTIFICATE----- + +# Issuer: CN=OISTE WISeKey Global Root GC CA O=WISeKey OU=OISTE Foundation Endorsed +# Subject: CN=OISTE WISeKey Global Root GC CA O=WISeKey OU=OISTE Foundation Endorsed +# Label: "OISTE WISeKey Global Root GC CA" +# Serial: 44084345621038548146064804565436152554 +# MD5 Fingerprint: a9:d6:b9:2d:2f:93:64:f8:a5:69:ca:91:e9:68:07:23 +# SHA1 Fingerprint: e0:11:84:5e:34:de:be:88:81:b9:9c:f6:16:26:d1:96:1f:c3:b9:31 +# SHA256 Fingerprint: 85:60:f9:1c:36:24:da:ba:95:70:b5:fe:a0:db:e3:6f:f1:1a:83:23:be:94:86:85:4f:b3:f3:4a:55:71:19:8d +-----BEGIN CERTIFICATE----- +MIICaTCCAe+gAwIBAgIQISpWDK7aDKtARb8roi066jAKBggqhkjOPQQDAzBtMQsw +CQYDVQQGEwJDSDEQMA4GA1UEChMHV0lTZUtleTEiMCAGA1UECxMZT0lTVEUgRm91 +bmRhdGlvbiBFbmRvcnNlZDEoMCYGA1UEAxMfT0lTVEUgV0lTZUtleSBHbG9iYWwg +Um9vdCBHQyBDQTAeFw0xNzA1MDkwOTQ4MzRaFw00MjA1MDkwOTU4MzNaMG0xCzAJ +BgNVBAYTAkNIMRAwDgYDVQQKEwdXSVNlS2V5MSIwIAYDVQQLExlPSVNURSBGb3Vu +ZGF0aW9uIEVuZG9yc2VkMSgwJgYDVQQDEx9PSVNURSBXSVNlS2V5IEdsb2JhbCBS +b290IEdDIENBMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAETOlQwMYPchi82PG6s4ni +eUqjFqdrVCTbUf/q9Akkwwsin8tqJ4KBDdLArzHkdIJuyiXZjHWd8dvQmqJLIX4W +p2OQ0jnUsYd4XxiWD1AbNTcPasbc2RNNpI6QN+a9WzGRo1QwUjAOBgNVHQ8BAf8E +BAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUSIcUrOPDnpBgOtfKie7T +rYy0UGYwEAYJKwYBBAGCNxUBBAMCAQAwCgYIKoZIzj0EAwMDaAAwZQIwJsdpW9zV +57LnyAyMjMPdeYwbY9XJUpROTYJKcx6ygISpJcBMWm1JKWB4E+J+SOtkAjEA2zQg +Mgj/mkkCtojeFK9dbJlxjRo/i9fgojaGHAeCOnZT/cKi7e97sIBPWA9LUzm9 +-----END CERTIFICATE----- + +# Issuer: CN=GTS Root R1 O=Google Trust Services LLC +# Subject: CN=GTS Root R1 O=Google Trust Services LLC +# Label: "GTS Root R1" +# Serial: 146587175971765017618439757810265552097 +# MD5 Fingerprint: 82:1a:ef:d4:d2:4a:f2:9f:e2:3d:97:06:14:70:72:85 +# SHA1 Fingerprint: e1:c9:50:e6:ef:22:f8:4c:56:45:72:8b:92:20:60:d7:d5:a7:a3:e8 +# SHA256 Fingerprint: 2a:57:54:71:e3:13:40:bc:21:58:1c:bd:2c:f1:3e:15:84:63:20:3e:ce:94:bc:f9:d3:cc:19:6b:f0:9a:54:72 +-----BEGIN CERTIFICATE----- +MIIFWjCCA0KgAwIBAgIQbkepxUtHDA3sM9CJuRz04TANBgkqhkiG9w0BAQwFADBH +MQswCQYDVQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZpY2VzIExM +QzEUMBIGA1UEAxMLR1RTIFJvb3QgUjEwHhcNMTYwNjIyMDAwMDAwWhcNMzYwNjIy +MDAwMDAwWjBHMQswCQYDVQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNl +cnZpY2VzIExMQzEUMBIGA1UEAxMLR1RTIFJvb3QgUjEwggIiMA0GCSqGSIb3DQEB +AQUAA4ICDwAwggIKAoICAQC2EQKLHuOhd5s73L+UPreVp0A8of2C+X0yBoJx9vaM +f/vo27xqLpeXo4xL+Sv2sfnOhB2x+cWX3u+58qPpvBKJXqeqUqv4IyfLpLGcY9vX +mX7wCl7raKb0xlpHDU0QM+NOsROjyBhsS+z8CZDfnWQpJSMHobTSPS5g4M/SCYe7 +zUjwTcLCeoiKu7rPWRnWr4+wB7CeMfGCwcDfLqZtbBkOtdh+JhpFAz2weaSUKK0P +fyblqAj+lug8aJRT7oM6iCsVlgmy4HqMLnXWnOunVmSPlk9orj2XwoSPwLxAwAtc +vfaHszVsrBhQf4TgTM2S0yDpM7xSma8ytSmzJSq0SPly4cpk9+aCEI3oncKKiPo4 +Zor8Y/kB+Xj9e1x3+naH+uzfsQ55lVe0vSbv1gHR6xYKu44LtcXFilWr06zqkUsp +zBmkMiVOKvFlRNACzqrOSbTqn3yDsEB750Orp2yjj32JgfpMpf/VjsPOS+C12LOO +Rc92wO1AK/1TD7Cn1TsNsYqiA94xrcx36m97PtbfkSIS5r762DL8EGMUUXLeXdYW +k70paDPvOmbsB4om3xPXV2V4J95eSRQAogB/mqghtqmxlbCluQ0WEdrHbEg8QOB+ +DVrNVjzRlwW5y0vtOUucxD/SVRNuJLDWcfr0wbrM7Rv1/oFB2ACYPTrIrnqYNxgF +lQIDAQABo0IwQDAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNV +HQ4EFgQU5K8rJnEaK0gnhS9SZizv8IkTcT4wDQYJKoZIhvcNAQEMBQADggIBADiW +Cu49tJYeX++dnAsznyvgyv3SjgofQXSlfKqE1OXyHuY3UjKcC9FhHb8owbZEKTV1 +d5iyfNm9dKyKaOOpMQkpAWBz40d8U6iQSifvS9efk+eCNs6aaAyC58/UEBZvXw6Z +XPYfcX3v73svfuo21pdwCxXu11xWajOl40k4DLh9+42FpLFZXvRq4d2h9mREruZR +gyFmxhE+885H7pwoHyXa/6xmld01D1zvICxi/ZG6qcz8WpyTgYMpl0p8WnK0OdC3 +d8t5/Wk6kjftbjhlRn7pYL15iJdfOBL07q9bgsiG1eGZbYwE8na6SfZu6W0eX6Dv +J4J2QPim01hcDyxC2kLGe4g0x8HYRZvBPsVhHdljUEn2NIVq4BjFbkerQUIpm/Zg +DdIx02OYI5NaAIFItO/Nis3Jz5nu2Z6qNuFoS3FJFDYoOj0dzpqPJeaAcWErtXvM ++SUWgeExX6GjfhaknBZqlxi9dnKlC54dNuYvoS++cJEPqOba+MSSQGwlfnuzCdyy +F62ARPBopY+Udf90WuioAnwMCeKpSwughQtiue+hMZL77/ZRBIls6Kl0obsXs7X9 +SQ98POyDGCBDTtWTurQ0sR8WNh8M5mQ5Fkzc4P4dyKliPUDqysU0ArSuiYgzNdws +E3PYJ/HQcu51OyLemGhmW/HGY0dVHLqlCFF1pkgl +-----END CERTIFICATE----- + +# Issuer: CN=GTS Root R2 O=Google Trust Services LLC +# Subject: CN=GTS Root R2 O=Google Trust Services LLC +# Label: "GTS Root R2" +# Serial: 146587176055767053814479386953112547951 +# MD5 Fingerprint: 44:ed:9a:0e:a4:09:3b:00:f2:ae:4c:a3:c6:61:b0:8b +# SHA1 Fingerprint: d2:73:96:2a:2a:5e:39:9f:73:3f:e1:c7:1e:64:3f:03:38:34:fc:4d +# SHA256 Fingerprint: c4:5d:7b:b0:8e:6d:67:e6:2e:42:35:11:0b:56:4e:5f:78:fd:92:ef:05:8c:84:0a:ea:4e:64:55:d7:58:5c:60 +-----BEGIN CERTIFICATE----- +MIIFWjCCA0KgAwIBAgIQbkepxlqz5yDFMJo/aFLybzANBgkqhkiG9w0BAQwFADBH +MQswCQYDVQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZpY2VzIExM +QzEUMBIGA1UEAxMLR1RTIFJvb3QgUjIwHhcNMTYwNjIyMDAwMDAwWhcNMzYwNjIy +MDAwMDAwWjBHMQswCQYDVQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNl +cnZpY2VzIExMQzEUMBIGA1UEAxMLR1RTIFJvb3QgUjIwggIiMA0GCSqGSIb3DQEB +AQUAA4ICDwAwggIKAoICAQDO3v2m++zsFDQ8BwZabFn3GTXd98GdVarTzTukk3Lv +CvptnfbwhYBboUhSnznFt+4orO/LdmgUud+tAWyZH8QiHZ/+cnfgLFuv5AS/T3Kg +GjSY6Dlo7JUle3ah5mm5hRm9iYz+re026nO8/4Piy33B0s5Ks40FnotJk9/BW9Bu +XvAuMC6C/Pq8tBcKSOWIm8Wba96wyrQD8Nr0kLhlZPdcTK3ofmZemde4wj7I0BOd +re7kRXuJVfeKH2JShBKzwkCX44ofR5GmdFrS+LFjKBC4swm4VndAoiaYecb+3yXu +PuWgf9RhD1FLPD+M2uFwdNjCaKH5wQzpoeJ/u1U8dgbuak7MkogwTZq9TwtImoS1 +mKPV+3PBV2HdKFZ1E66HjucMUQkQdYhMvI35ezzUIkgfKtzra7tEscszcTJGr61K +8YzodDqs5xoic4DSMPclQsciOzsSrZYuxsN2B6ogtzVJV+mSSeh2FnIxZyuWfoqj +x5RWIr9qS34BIbIjMt/kmkRtWVtd9QCgHJvGeJeNkP+byKq0rxFROV7Z+2et1VsR +nTKaG73VululycslaVNVJ1zgyjbLiGH7HrfQy+4W+9OmTN6SpdTi3/UGVN4unUu0 +kzCqgc7dGtxRcw1PcOnlthYhGXmy5okLdWTK1au8CcEYof/UVKGFPP0UJAOyh9Ok +twIDAQABo0IwQDAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNV +HQ4EFgQUu//KjiOfT5nK2+JopqUVJxce2Q4wDQYJKoZIhvcNAQEMBQADggIBALZp +8KZ3/p7uC4Gt4cCpx/k1HUCCq+YEtN/L9x0Pg/B+E02NjO7jMyLDOfxA325BS0JT +vhaI8dI4XsRomRyYUpOM52jtG2pzegVATX9lO9ZY8c6DR2Dj/5epnGB3GFW1fgiT +z9D2PGcDFWEJ+YF59exTpJ/JjwGLc8R3dtyDovUMSRqodt6Sm2T4syzFJ9MHwAiA +pJiS4wGWAqoC7o87xdFtCjMwc3i5T1QWvwsHoaRc5svJXISPD+AVdyx+Jn7axEvb +pxZ3B7DNdehyQtaVhJ2Gg/LkkM0JR9SLA3DaWsYDQvTtN6LwG1BUSw7YhN4ZKJmB +R64JGz9I0cNv4rBgF/XuIwKl2gBbbZCr7qLpGzvpx0QnRY5rn/WkhLx3+WuXrD5R +RaIRpsyF7gpo8j5QOHokYh4XIDdtak23CZvJ/KRY9bb7nE4Yu5UC56GtmwfuNmsk +0jmGwZODUNKBRqhfYlcsu2xkiAhu7xNUX90txGdj08+JN7+dIPT7eoOboB6BAFDC +5AwiWVIQ7UNWhwD4FFKnHYuTjKJNRn8nxnGbJN7k2oaLDX5rIMHAnuFl2GqjpuiF +izoHCBy69Y9Vmhh1fuXsgWbRIXOhNUQLgD1bnF5vKheW0YMjiGZt5obicDIvUiLn +yOd/xCxgXS/Dr55FBcOEArf9LAhST4Ldo/DUhgkC +-----END CERTIFICATE----- + +# Issuer: CN=GTS Root R3 O=Google Trust Services LLC +# Subject: CN=GTS Root R3 O=Google Trust Services LLC +# Label: "GTS Root R3" +# Serial: 146587176140553309517047991083707763997 +# MD5 Fingerprint: 1a:79:5b:6b:04:52:9c:5d:c7:74:33:1b:25:9a:f9:25 +# SHA1 Fingerprint: 30:d4:24:6f:07:ff:db:91:89:8a:0b:e9:49:66:11:eb:8c:5e:46:e5 +# SHA256 Fingerprint: 15:d5:b8:77:46:19:ea:7d:54:ce:1c:a6:d0:b0:c4:03:e0:37:a9:17:f1:31:e8:a0:4e:1e:6b:7a:71:ba:bc:e5 +-----BEGIN CERTIFICATE----- +MIICDDCCAZGgAwIBAgIQbkepx2ypcyRAiQ8DVd2NHTAKBggqhkjOPQQDAzBHMQsw +CQYDVQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZpY2VzIExMQzEU +MBIGA1UEAxMLR1RTIFJvb3QgUjMwHhcNMTYwNjIyMDAwMDAwWhcNMzYwNjIyMDAw +MDAwWjBHMQswCQYDVQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZp +Y2VzIExMQzEUMBIGA1UEAxMLR1RTIFJvb3QgUjMwdjAQBgcqhkjOPQIBBgUrgQQA +IgNiAAQfTzOHMymKoYTey8chWEGJ6ladK0uFxh1MJ7x/JlFyb+Kf1qPKzEUURout +736GjOyxfi//qXGdGIRFBEFVbivqJn+7kAHjSxm65FSWRQmx1WyRRK2EE46ajA2A +DDL24CejQjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MB0GA1Ud +DgQWBBTB8Sa6oC2uhYHP0/EqEr24Cmf9vDAKBggqhkjOPQQDAwNpADBmAjEAgFuk +fCPAlaUs3L6JbyO5o91lAFJekazInXJ0glMLfalAvWhgxeG4VDvBNhcl2MG9AjEA +njWSdIUlUfUk7GRSJFClH9voy8l27OyCbvWFGFPouOOaKaqW04MjyaR7YbPMAuhd +-----END CERTIFICATE----- + +# Issuer: CN=GTS Root R4 O=Google Trust Services LLC +# Subject: CN=GTS Root R4 O=Google Trust Services LLC +# Label: "GTS Root R4" +# Serial: 146587176229350439916519468929765261721 +# MD5 Fingerprint: 5d:b6:6a:c4:60:17:24:6a:1a:99:a8:4b:ee:5e:b4:26 +# SHA1 Fingerprint: 2a:1d:60:27:d9:4a:b1:0a:1c:4d:91:5c:cd:33:a0:cb:3e:2d:54:cb +# SHA256 Fingerprint: 71:cc:a5:39:1f:9e:79:4b:04:80:25:30:b3:63:e1:21:da:8a:30:43:bb:26:66:2f:ea:4d:ca:7f:c9:51:a4:bd +-----BEGIN CERTIFICATE----- +MIICCjCCAZGgAwIBAgIQbkepyIuUtui7OyrYorLBmTAKBggqhkjOPQQDAzBHMQsw +CQYDVQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZpY2VzIExMQzEU +MBIGA1UEAxMLR1RTIFJvb3QgUjQwHhcNMTYwNjIyMDAwMDAwWhcNMzYwNjIyMDAw +MDAwWjBHMQswCQYDVQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZp +Y2VzIExMQzEUMBIGA1UEAxMLR1RTIFJvb3QgUjQwdjAQBgcqhkjOPQIBBgUrgQQA +IgNiAATzdHOnaItgrkO4NcWBMHtLSZ37wWHO5t5GvWvVYRg1rkDdc/eJkTBa6zzu +hXyiQHY7qca4R9gq55KRanPpsXI5nymfopjTX15YhmUPoYRlBtHci8nHc8iMai/l +xKvRHYqjQjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MB0GA1Ud +DgQWBBSATNbrdP9JNqPV2Py1PsVq8JQdjDAKBggqhkjOPQQDAwNnADBkAjBqUFJ0 +CMRw3J5QdCHojXohw0+WbhXRIjVhLfoIN+4Zba3bssx9BzT1YBkstTTZbyACMANx +sbqjYAuG7ZoIapVon+Kz4ZNkfF6Tpt95LY2F45TPI11xzPKwTdb+mciUqXWi4w== +-----END CERTIFICATE----- + +# Issuer: CN=UCA Global G2 Root O=UniTrust +# Subject: CN=UCA Global G2 Root O=UniTrust +# Label: "UCA Global G2 Root" +# Serial: 124779693093741543919145257850076631279 +# MD5 Fingerprint: 80:fe:f0:c4:4a:f0:5c:62:32:9f:1c:ba:78:a9:50:f8 +# SHA1 Fingerprint: 28:f9:78:16:19:7a:ff:18:25:18:aa:44:fe:c1:a0:ce:5c:b6:4c:8a +# SHA256 Fingerprint: 9b:ea:11:c9:76:fe:01:47:64:c1:be:56:a6:f9:14:b5:a5:60:31:7a:bd:99:88:39:33:82:e5:16:1a:a0:49:3c +-----BEGIN CERTIFICATE----- +MIIFRjCCAy6gAwIBAgIQXd+x2lqj7V2+WmUgZQOQ7zANBgkqhkiG9w0BAQsFADA9 +MQswCQYDVQQGEwJDTjERMA8GA1UECgwIVW5pVHJ1c3QxGzAZBgNVBAMMElVDQSBH +bG9iYWwgRzIgUm9vdDAeFw0xNjAzMTEwMDAwMDBaFw00MDEyMzEwMDAwMDBaMD0x +CzAJBgNVBAYTAkNOMREwDwYDVQQKDAhVbmlUcnVzdDEbMBkGA1UEAwwSVUNBIEds +b2JhbCBHMiBSb290MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAxeYr +b3zvJgUno4Ek2m/LAfmZmqkywiKHYUGRO8vDaBsGxUypK8FnFyIdK+35KYmToni9 +kmugow2ifsqTs6bRjDXVdfkX9s9FxeV67HeToI8jrg4aA3++1NDtLnurRiNb/yzm +VHqUwCoV8MmNsHo7JOHXaOIxPAYzRrZUEaalLyJUKlgNAQLx+hVRZ2zA+te2G3/R +VogvGjqNO7uCEeBHANBSh6v7hn4PJGtAnTRnvI3HLYZveT6OqTwXS3+wmeOwcWDc +C/Vkw85DvG1xudLeJ1uK6NjGruFZfc8oLTW4lVYa8bJYS7cSN8h8s+1LgOGN+jIj +tm+3SJUIsUROhYw6AlQgL9+/V087OpAh18EmNVQg7Mc/R+zvWr9LesGtOxdQXGLY +D0tK3Cv6brxzks3sx1DoQZbXqX5t2Okdj4q1uViSukqSKwxW/YDrCPBeKW4bHAyv +j5OJrdu9o54hyokZ7N+1wxrrFv54NkzWbtA+FxyQF2smuvt6L78RHBgOLXMDj6Dl +NaBa4kx1HXHhOThTeEDMg5PXCp6dW4+K5OXgSORIskfNTip1KnvyIvbJvgmRlld6 +iIis7nCs+dwp4wwcOxJORNanTrAmyPPZGpeRaOrvjUYG0lZFWJo8DA+DuAUlwznP +O6Q0ibd5Ei9Hxeepl2n8pndntd978XplFeRhVmUCAwEAAaNCMEAwDgYDVR0PAQH/ +BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFIHEjMz15DD/pQwIX4wV +ZyF0Ad/fMA0GCSqGSIb3DQEBCwUAA4ICAQATZSL1jiutROTL/7lo5sOASD0Ee/oj +L3rtNtqyzm325p7lX1iPyzcyochltq44PTUbPrw7tgTQvPlJ9Zv3hcU2tsu8+Mg5 +1eRfB70VVJd0ysrtT7q6ZHafgbiERUlMjW+i67HM0cOU2kTC5uLqGOiiHycFutfl +1qnN3e92mI0ADs0b+gO3joBYDic/UvuUospeZcnWhNq5NXHzJsBPd+aBJ9J3O5oU +b3n09tDh05S60FdRvScFDcH9yBIw7m+NESsIndTUv4BFFJqIRNow6rSn4+7vW4LV +PtateJLbXDzz2K36uGt/xDYotgIVilQsnLAXc47QN6MUPJiVAAwpBVueSUmxX8fj +y88nZY41F7dXyDDZQVu5FLbowg+UMaeUmMxq67XhJ/UQqAHojhJi6IjMtX9Gl8Cb +EGY4GjZGXyJoPd/JxhMnq1MGrKI8hgZlb7F+sSlEmqO6SWkoaY/X5V+tBIZkbxqg +DMUIYs6Ao9Dz7GjevjPHF1t/gMRMTLGmhIrDO7gJzRSBuhjjVFc2/tsvfEehOjPI ++Vg7RE+xygKJBJYoaMVLuCaJu9YzL1DV/pqJuhgyklTGW+Cd+V7lDSKb9triyCGy +YiGqhkCyLmTTX8jjfhFnRR8F/uOi77Oos/N9j/gMHyIfLXC0uAE0djAA5SN4p1bX +UB+K+wb1whnw0A== +-----END CERTIFICATE----- + +# Issuer: CN=UCA Extended Validation Root O=UniTrust +# Subject: CN=UCA Extended Validation Root O=UniTrust +# Label: "UCA Extended Validation Root" +# Serial: 106100277556486529736699587978573607008 +# MD5 Fingerprint: a1:f3:5f:43:c6:34:9b:da:bf:8c:7e:05:53:ad:96:e2 +# SHA1 Fingerprint: a3:a1:b0:6f:24:61:23:4a:e3:36:a5:c2:37:fc:a6:ff:dd:f0:d7:3a +# SHA256 Fingerprint: d4:3a:f9:b3:54:73:75:5c:96:84:fc:06:d7:d8:cb:70:ee:5c:28:e7:73:fb:29:4e:b4:1e:e7:17:22:92:4d:24 +-----BEGIN CERTIFICATE----- +MIIFWjCCA0KgAwIBAgIQT9Irj/VkyDOeTzRYZiNwYDANBgkqhkiG9w0BAQsFADBH +MQswCQYDVQQGEwJDTjERMA8GA1UECgwIVW5pVHJ1c3QxJTAjBgNVBAMMHFVDQSBF +eHRlbmRlZCBWYWxpZGF0aW9uIFJvb3QwHhcNMTUwMzEzMDAwMDAwWhcNMzgxMjMx +MDAwMDAwWjBHMQswCQYDVQQGEwJDTjERMA8GA1UECgwIVW5pVHJ1c3QxJTAjBgNV +BAMMHFVDQSBFeHRlbmRlZCBWYWxpZGF0aW9uIFJvb3QwggIiMA0GCSqGSIb3DQEB +AQUAA4ICDwAwggIKAoICAQCpCQcoEwKwmeBkqh5DFnpzsZGgdT6o+uM4AHrsiWog +D4vFsJszA1qGxliG1cGFu0/GnEBNyr7uaZa4rYEwmnySBesFK5pI0Lh2PpbIILvS +sPGP2KxFRv+qZ2C0d35qHzwaUnoEPQc8hQ2E0B92CvdqFN9y4zR8V05WAT558aop +O2z6+I9tTcg1367r3CTueUWnhbYFiN6IXSV8l2RnCdm/WhUFhvMJHuxYMjMR83dk +sHYf5BA1FxvyDrFspCqjc/wJHx4yGVMR59mzLC52LqGj3n5qiAno8geK+LLNEOfi +c0CTuwjRP+H8C5SzJe98ptfRr5//lpr1kXuYC3fUfugH0mK1lTnj8/FtDw5lhIpj +VMWAtuCeS31HJqcBCF3RiJ7XwzJE+oJKCmhUfzhTA8ykADNkUVkLo4KRel7sFsLz +KuZi2irbWWIQJUoqgQtHB0MGcIfS+pMRKXpITeuUx3BNr2fVUbGAIAEBtHoIppB/ +TuDvB0GHr2qlXov7z1CymlSvw4m6WC31MJixNnI5fkkE/SmnTHnkBVfblLkWU41G +sx2VYVdWf6/wFlthWG82UBEL2KwrlRYaDh8IzTY0ZRBiZtWAXxQgXy0MoHgKaNYs +1+lvK9JKBZP8nm9rZ/+I8U6laUpSNwXqxhaN0sSZ0YIrO7o1dfdRUVjzyAfd5LQD +fwIDAQABo0IwQDAdBgNVHQ4EFgQU2XQ65DA9DfcS3H5aBZ8eNJr34RQwDwYDVR0T +AQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAYYwDQYJKoZIhvcNAQELBQADggIBADaN +l8xCFWQpN5smLNb7rhVpLGsaGvdftvkHTFnq88nIua7Mui563MD1sC3AO6+fcAUR +ap8lTwEpcOPlDOHqWnzcSbvBHiqB9RZLcpHIojG5qtr8nR/zXUACE/xOHAbKsxSQ +VBcZEhrxH9cMaVr2cXj0lH2RC47skFSOvG+hTKv8dGT9cZr4QQehzZHkPJrgmzI5 +c6sq1WnIeJEmMX3ixzDx/BR4dxIOE/TdFpS/S2d7cFOFyrC78zhNLJA5wA3CXWvp +4uXViI3WLL+rG761KIcSF3Ru/H38j9CHJrAb+7lsq+KePRXBOy5nAliRn+/4Qh8s +t2j1da3Ptfb/EX3C8CSlrdP6oDyp+l3cpaDvRKS+1ujl5BOWF3sGPjLtx7dCvHaj +2GU4Kzg1USEODm8uNBNA4StnDG1KQTAYI1oyVZnJF+A83vbsea0rWBmirSwiGpWO +vpaQXUJXxPkUAzUrHC1RVwinOt4/5Mi0A3PCwSaAuwtCH60NryZy2sy+s6ODWA2C +xR9GUeOcGMyNm43sSet1UNWMKFnKdDTajAshqx7qG+XH/RU+wBeq+yNuJkbL+vmx +cmtpzyKEC2IPrNkZAJSidjzULZrtBJ4tBmIQN1IchXIbJ+XMxjHsN+xjWZsLHXbM +fjKaiJUINlK73nZfdklJrX+9ZSCyycErdhh2n1ax +-----END CERTIFICATE----- + +# Issuer: CN=Certigna Root CA O=Dhimyotis OU=0002 48146308100036 +# Subject: CN=Certigna Root CA O=Dhimyotis OU=0002 48146308100036 +# Label: "Certigna Root CA" +# Serial: 269714418870597844693661054334862075617 +# MD5 Fingerprint: 0e:5c:30:62:27:eb:5b:bc:d7:ae:62:ba:e9:d5:df:77 +# SHA1 Fingerprint: 2d:0d:52:14:ff:9e:ad:99:24:01:74:20:47:6e:6c:85:27:27:f5:43 +# SHA256 Fingerprint: d4:8d:3d:23:ee:db:50:a4:59:e5:51:97:60:1c:27:77:4b:9d:7b:18:c9:4d:5a:05:95:11:a1:02:50:b9:31:68 +-----BEGIN CERTIFICATE----- +MIIGWzCCBEOgAwIBAgIRAMrpG4nxVQMNo+ZBbcTjpuEwDQYJKoZIhvcNAQELBQAw +WjELMAkGA1UEBhMCRlIxEjAQBgNVBAoMCURoaW15b3RpczEcMBoGA1UECwwTMDAw +MiA0ODE0NjMwODEwMDAzNjEZMBcGA1UEAwwQQ2VydGlnbmEgUm9vdCBDQTAeFw0x +MzEwMDEwODMyMjdaFw0zMzEwMDEwODMyMjdaMFoxCzAJBgNVBAYTAkZSMRIwEAYD +VQQKDAlEaGlteW90aXMxHDAaBgNVBAsMEzAwMDIgNDgxNDYzMDgxMDAwMzYxGTAX +BgNVBAMMEENlcnRpZ25hIFJvb3QgQ0EwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw +ggIKAoICAQDNGDllGlmx6mQWDoyUJJV8g9PFOSbcDO8WV43X2KyjQn+Cyu3NW9sO +ty3tRQgXstmzy9YXUnIo245Onoq2C/mehJpNdt4iKVzSs9IGPjA5qXSjklYcoW9M +CiBtnyN6tMbaLOQdLNyzKNAT8kxOAkmhVECe5uUFoC2EyP+YbNDrihqECB63aCPu +I9Vwzm1RaRDuoXrC0SIxwoKF0vJVdlB8JXrJhFwLrN1CTivngqIkicuQstDuI7pm +TLtipPlTWmR7fJj6o0ieD5Wupxj0auwuA0Wv8HT4Ks16XdG+RCYyKfHx9WzMfgIh +C59vpD++nVPiz32pLHxYGpfhPTc3GGYo0kDFUYqMwy3OU4gkWGQwFsWq4NYKpkDf +ePb1BHxpE4S80dGnBs8B92jAqFe7OmGtBIyT46388NtEbVncSVmurJqZNjBBe3Yz +IoejwpKGbvlw7q6Hh5UbxHq9MfPU0uWZ/75I7HX1eBYdpnDBfzwboZL7z8g81sWT +Co/1VTp2lc5ZmIoJlXcymoO6LAQ6l73UL77XbJuiyn1tJslV1c/DeVIICZkHJC1k +JWumIWmbat10TWuXekG9qxf5kBdIjzb5LdXF2+6qhUVB+s06RbFo5jZMm5BX7CO5 +hwjCxAnxl4YqKE3idMDaxIzb3+KhF1nOJFl0Mdp//TBt2dzhauH8XwIDAQABo4IB +GjCCARYwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYE +FBiHVuBud+4kNTxOc5of1uHieX4rMB8GA1UdIwQYMBaAFBiHVuBud+4kNTxOc5of +1uHieX4rMEQGA1UdIAQ9MDswOQYEVR0gADAxMC8GCCsGAQUFBwIBFiNodHRwczov +L3d3d3cuY2VydGlnbmEuZnIvYXV0b3JpdGVzLzBtBgNVHR8EZjBkMC+gLaArhilo +dHRwOi8vY3JsLmNlcnRpZ25hLmZyL2NlcnRpZ25hcm9vdGNhLmNybDAxoC+gLYYr +aHR0cDovL2NybC5kaGlteW90aXMuY29tL2NlcnRpZ25hcm9vdGNhLmNybDANBgkq +hkiG9w0BAQsFAAOCAgEAlLieT/DjlQgi581oQfccVdV8AOItOoldaDgvUSILSo3L +6btdPrtcPbEo/uRTVRPPoZAbAh1fZkYJMyjhDSSXcNMQH+pkV5a7XdrnxIxPTGRG +HVyH41neQtGbqH6mid2PHMkwgu07nM3A6RngatgCdTer9zQoKJHyBApPNeNgJgH6 +0BGM+RFq7q89w1DTj18zeTyGqHNFkIwgtnJzFyO+B2XleJINugHA64wcZr+shncB +lA2c5uk5jR+mUYyZDDl34bSb+hxnV29qao6pK0xXeXpXIs/NX2NGjVxZOob4Mkdi +o2cNGJHc+6Zr9UhhcyNZjgKnvETq9Emd8VRY+WCv2hikLyhF3HqgiIZd8zvn/yk1 +gPxkQ5Tm4xxvvq0OKmOZK8l+hfZx6AYDlf7ej0gcWtSS6Cvu5zHbugRqh5jnxV/v +faci9wHYTfmJ0A6aBVmknpjZbyvKcL5kwlWj9Omvw5Ip3IgWJJk8jSaYtlu3zM63 +Nwf9JtmYhST/WSMDmu2dnajkXjjO11INb9I/bbEFa0nOipFGc/T2L/Coc3cOZayh +jWZSaX5LaAzHHjcng6WMxwLkFM1JAbBzs/3GkDpv0mztO+7skb6iQ12LAEpmJURw +3kAP+HwV96LOPNdeE4yBFxgX0b3xdxA61GU5wSesVywlVP+i2k+KYTlerj1KjL0= +-----END CERTIFICATE----- + +# Issuer: CN=emSign Root CA - G1 O=eMudhra Technologies Limited OU=emSign PKI +# Subject: CN=emSign Root CA - G1 O=eMudhra Technologies Limited OU=emSign PKI +# Label: "emSign Root CA - G1" +# Serial: 235931866688319308814040 +# MD5 Fingerprint: 9c:42:84:57:dd:cb:0b:a7:2e:95:ad:b6:f3:da:bc:ac +# SHA1 Fingerprint: 8a:c7:ad:8f:73:ac:4e:c1:b5:75:4d:a5:40:f4:fc:cf:7c:b5:8e:8c +# SHA256 Fingerprint: 40:f6:af:03:46:a9:9a:a1:cd:1d:55:5a:4e:9c:ce:62:c7:f9:63:46:03:ee:40:66:15:83:3d:c8:c8:d0:03:67 +-----BEGIN CERTIFICATE----- +MIIDlDCCAnygAwIBAgIKMfXkYgxsWO3W2DANBgkqhkiG9w0BAQsFADBnMQswCQYD +VQQGEwJJTjETMBEGA1UECxMKZW1TaWduIFBLSTElMCMGA1UEChMcZU11ZGhyYSBU +ZWNobm9sb2dpZXMgTGltaXRlZDEcMBoGA1UEAxMTZW1TaWduIFJvb3QgQ0EgLSBH +MTAeFw0xODAyMTgxODMwMDBaFw00MzAyMTgxODMwMDBaMGcxCzAJBgNVBAYTAklO +MRMwEQYDVQQLEwplbVNpZ24gUEtJMSUwIwYDVQQKExxlTXVkaHJhIFRlY2hub2xv +Z2llcyBMaW1pdGVkMRwwGgYDVQQDExNlbVNpZ24gUm9vdCBDQSAtIEcxMIIBIjAN +BgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAk0u76WaK7p1b1TST0Bsew+eeuGQz +f2N4aLTNLnF115sgxk0pvLZoYIr3IZpWNVrzdr3YzZr/k1ZLpVkGoZM0Kd0WNHVO +8oG0x5ZOrRkVUkr+PHB1cM2vK6sVmjM8qrOLqs1D/fXqcP/tzxE7lM5OMhbTI0Aq +d7OvPAEsbO2ZLIvZTmmYsvePQbAyeGHWDV/D+qJAkh1cF+ZwPjXnorfCYuKrpDhM +tTk1b+oDafo6VGiFbdbyL0NVHpENDtjVaqSW0RM8LHhQ6DqS0hdW5TUaQBw+jSzt +Od9C4INBdN+jzcKGYEho42kLVACL5HZpIQ15TjQIXhTCzLG3rdd8cIrHhQIDAQAB +o0IwQDAdBgNVHQ4EFgQU++8Nhp6w492pufEhF38+/PB3KxowDgYDVR0PAQH/BAQD +AgEGMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQELBQADggEBAFn/8oz1h31x +PaOfG1vR2vjTnGs2vZupYeveFix0PZ7mddrXuqe8QhfnPZHr5X3dPpzxz5KsbEjM +wiI/aTvFthUvozXGaCocV685743QNcMYDHsAVhzNixl03r4PEuDQqqE/AjSxcM6d +GNYIAwlG7mDgfrbESQRRfXBgvKqy/3lyeqYdPV8q+Mri/Tm3R7nrft8EI6/6nAYH +6ftjk4BAtcZsCjEozgyfz7MjNYBBjWzEN3uBL4ChQEKF6dk4jeihU80Bv2noWgby +RQuQ+q7hv53yrlc8pa6yVvSLZUDp/TGBLPQ5Cdjua6e0ph0VpZj3AYHYhX3zUVxx +iN66zB+Afko= +-----END CERTIFICATE----- + +# Issuer: CN=emSign ECC Root CA - G3 O=eMudhra Technologies Limited OU=emSign PKI +# Subject: CN=emSign ECC Root CA - G3 O=eMudhra Technologies Limited OU=emSign PKI +# Label: "emSign ECC Root CA - G3" +# Serial: 287880440101571086945156 +# MD5 Fingerprint: ce:0b:72:d1:9f:88:8e:d0:50:03:e8:e3:b8:8b:67:40 +# SHA1 Fingerprint: 30:43:fa:4f:f2:57:dc:a0:c3:80:ee:2e:58:ea:78:b2:3f:e6:bb:c1 +# SHA256 Fingerprint: 86:a1:ec:ba:08:9c:4a:8d:3b:be:27:34:c6:12:ba:34:1d:81:3e:04:3c:f9:e8:a8:62:cd:5c:57:a3:6b:be:6b +-----BEGIN CERTIFICATE----- +MIICTjCCAdOgAwIBAgIKPPYHqWhwDtqLhDAKBggqhkjOPQQDAzBrMQswCQYDVQQG +EwJJTjETMBEGA1UECxMKZW1TaWduIFBLSTElMCMGA1UEChMcZU11ZGhyYSBUZWNo +bm9sb2dpZXMgTGltaXRlZDEgMB4GA1UEAxMXZW1TaWduIEVDQyBSb290IENBIC0g +RzMwHhcNMTgwMjE4MTgzMDAwWhcNNDMwMjE4MTgzMDAwWjBrMQswCQYDVQQGEwJJ +TjETMBEGA1UECxMKZW1TaWduIFBLSTElMCMGA1UEChMcZU11ZGhyYSBUZWNobm9s +b2dpZXMgTGltaXRlZDEgMB4GA1UEAxMXZW1TaWduIEVDQyBSb290IENBIC0gRzMw +djAQBgcqhkjOPQIBBgUrgQQAIgNiAAQjpQy4LRL1KPOxst3iAhKAnjlfSU2fySU0 +WXTsuwYc58Byr+iuL+FBVIcUqEqy6HyC5ltqtdyzdc6LBtCGI79G1Y4PPwT01xyS +fvalY8L1X44uT6EYGQIrMgqCZH0Wk9GjQjBAMB0GA1UdDgQWBBR8XQKEE9TMipuB +zhccLikenEhjQjAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAKBggq +hkjOPQQDAwNpADBmAjEAvvNhzwIQHWSVB7gYboiFBS+DCBeQyh+KTOgNG3qxrdWB +CUfvO6wIBHxcmbHtRwfSAjEAnbpV/KlK6O3t5nYBQnvI+GDZjVGLVTv7jHvrZQnD ++JbNR6iC8hZVdyR+EhCVBCyj +-----END CERTIFICATE----- + +# Issuer: CN=emSign Root CA - C1 O=eMudhra Inc OU=emSign PKI +# Subject: CN=emSign Root CA - C1 O=eMudhra Inc OU=emSign PKI +# Label: "emSign Root CA - C1" +# Serial: 825510296613316004955058 +# MD5 Fingerprint: d8:e3:5d:01:21:fa:78:5a:b0:df:ba:d2:ee:2a:5f:68 +# SHA1 Fingerprint: e7:2e:f1:df:fc:b2:09:28:cf:5d:d4:d5:67:37:b1:51:cb:86:4f:01 +# SHA256 Fingerprint: 12:56:09:aa:30:1d:a0:a2:49:b9:7a:82:39:cb:6a:34:21:6f:44:dc:ac:9f:39:54:b1:42:92:f2:e8:c8:60:8f +-----BEGIN CERTIFICATE----- +MIIDczCCAlugAwIBAgILAK7PALrEzzL4Q7IwDQYJKoZIhvcNAQELBQAwVjELMAkG +A1UEBhMCVVMxEzARBgNVBAsTCmVtU2lnbiBQS0kxFDASBgNVBAoTC2VNdWRocmEg +SW5jMRwwGgYDVQQDExNlbVNpZ24gUm9vdCBDQSAtIEMxMB4XDTE4MDIxODE4MzAw +MFoXDTQzMDIxODE4MzAwMFowVjELMAkGA1UEBhMCVVMxEzARBgNVBAsTCmVtU2ln +biBQS0kxFDASBgNVBAoTC2VNdWRocmEgSW5jMRwwGgYDVQQDExNlbVNpZ24gUm9v +dCBDQSAtIEMxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAz+upufGZ +BczYKCFK83M0UYRWEPWgTywS4/oTmifQz/l5GnRfHXk5/Fv4cI7gklL35CX5VIPZ +HdPIWoU/Xse2B+4+wM6ar6xWQio5JXDWv7V7Nq2s9nPczdcdioOl+yuQFTdrHCZH +3DspVpNqs8FqOp099cGXOFgFixwR4+S0uF2FHYP+eF8LRWgYSKVGczQ7/g/IdrvH +GPMF0Ybzhe3nudkyrVWIzqa2kbBPrH4VI5b2P/AgNBbeCsbEBEV5f6f9vtKppa+c +xSMq9zwhbL2vj07FOrLzNBL834AaSaTUqZX3noleoomslMuoaJuvimUnzYnu3Yy1 +aylwQ6BpC+S5DwIDAQABo0IwQDAdBgNVHQ4EFgQU/qHgcB4qAzlSWkK+XJGFehiq +TbUwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEL +BQADggEBAMJKVvoVIXsoounlHfv4LcQ5lkFMOycsxGwYFYDGrK9HWS8mC+M2sO87 +/kOXSTKZEhVb3xEp/6tT+LvBeA+snFOvV71ojD1pM/CjoCNjO2RnIkSt1XHLVip4 +kqNPEjE2NuLe/gDEo2APJ62gsIq1NnpSob0n9CAnYuhNlCQT5AoE6TyrLshDCUrG +YQTlSTR+08TI9Q/Aqum6VF7zYytPT1DU/rl7mYw9wC68AivTxEDkigcxHpvOJpkT ++xHqmiIMERnHXhuBUDDIlhJu58tBf5E7oke3VIAb3ADMmpDqw8NQBmIMMMAVSKeo +WXzhriKi4gp6D/piq1JM4fHfyr6DDUI= +-----END CERTIFICATE----- + +# Issuer: CN=emSign ECC Root CA - C3 O=eMudhra Inc OU=emSign PKI +# Subject: CN=emSign ECC Root CA - C3 O=eMudhra Inc OU=emSign PKI +# Label: "emSign ECC Root CA - C3" +# Serial: 582948710642506000014504 +# MD5 Fingerprint: 3e:53:b3:a3:81:ee:d7:10:f8:d3:b0:1d:17:92:f5:d5 +# SHA1 Fingerprint: b6:af:43:c2:9b:81:53:7d:f6:ef:6b:c3:1f:1f:60:15:0c:ee:48:66 +# SHA256 Fingerprint: bc:4d:80:9b:15:18:9d:78:db:3e:1d:8c:f4:f9:72:6a:79:5d:a1:64:3c:a5:f1:35:8e:1d:db:0e:dc:0d:7e:b3 +-----BEGIN CERTIFICATE----- +MIICKzCCAbGgAwIBAgIKe3G2gla4EnycqDAKBggqhkjOPQQDAzBaMQswCQYDVQQG +EwJVUzETMBEGA1UECxMKZW1TaWduIFBLSTEUMBIGA1UEChMLZU11ZGhyYSBJbmMx +IDAeBgNVBAMTF2VtU2lnbiBFQ0MgUm9vdCBDQSAtIEMzMB4XDTE4MDIxODE4MzAw +MFoXDTQzMDIxODE4MzAwMFowWjELMAkGA1UEBhMCVVMxEzARBgNVBAsTCmVtU2ln +biBQS0kxFDASBgNVBAoTC2VNdWRocmEgSW5jMSAwHgYDVQQDExdlbVNpZ24gRUND +IFJvb3QgQ0EgLSBDMzB2MBAGByqGSM49AgEGBSuBBAAiA2IABP2lYa57JhAd6bci +MK4G9IGzsUJxlTm801Ljr6/58pc1kjZGDoeVjbk5Wum739D+yAdBPLtVb4Ojavti +sIGJAnB9SMVK4+kiVCJNk7tCDK93nCOmfddhEc5lx/h//vXyqaNCMEAwHQYDVR0O +BBYEFPtaSNCAIEDyqOkAB2kZd6fmw/TPMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMB +Af8EBTADAQH/MAoGCCqGSM49BAMDA2gAMGUCMQC02C8Cif22TGK6Q04ThHK1rt0c +3ta13FaPWEBaLd4gTCKDypOofu4SQMfWh0/434UCMBwUZOR8loMRnLDRWmFLpg9J +0wD8ofzkpf9/rdcw0Md3f76BB1UwUCAU9Vc4CqgxUQ== +-----END CERTIFICATE----- + +# Issuer: CN=Hongkong Post Root CA 3 O=Hongkong Post +# Subject: CN=Hongkong Post Root CA 3 O=Hongkong Post +# Label: "Hongkong Post Root CA 3" +# Serial: 46170865288971385588281144162979347873371282084 +# MD5 Fingerprint: 11:fc:9f:bd:73:30:02:8a:fd:3f:f3:58:b9:cb:20:f0 +# SHA1 Fingerprint: 58:a2:d0:ec:20:52:81:5b:c1:f3:f8:64:02:24:4e:c2:8e:02:4b:02 +# SHA256 Fingerprint: 5a:2f:c0:3f:0c:83:b0:90:bb:fa:40:60:4b:09:88:44:6c:76:36:18:3d:f9:84:6e:17:10:1a:44:7f:b8:ef:d6 +-----BEGIN CERTIFICATE----- +MIIFzzCCA7egAwIBAgIUCBZfikyl7ADJk0DfxMauI7gcWqQwDQYJKoZIhvcNAQEL +BQAwbzELMAkGA1UEBhMCSEsxEjAQBgNVBAgTCUhvbmcgS29uZzESMBAGA1UEBxMJ +SG9uZyBLb25nMRYwFAYDVQQKEw1Ib25na29uZyBQb3N0MSAwHgYDVQQDExdIb25n +a29uZyBQb3N0IFJvb3QgQ0EgMzAeFw0xNzA2MDMwMjI5NDZaFw00MjA2MDMwMjI5 +NDZaMG8xCzAJBgNVBAYTAkhLMRIwEAYDVQQIEwlIb25nIEtvbmcxEjAQBgNVBAcT +CUhvbmcgS29uZzEWMBQGA1UEChMNSG9uZ2tvbmcgUG9zdDEgMB4GA1UEAxMXSG9u +Z2tvbmcgUG9zdCBSb290IENBIDMwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIK +AoICAQCziNfqzg8gTr7m1gNt7ln8wlffKWihgw4+aMdoWJwcYEuJQwy51BWy7sFO +dem1p+/l6TWZ5Mwc50tfjTMwIDNT2aa71T4Tjukfh0mtUC1Qyhi+AViiE3CWu4mI +VoBc+L0sPOFMV4i707mV78vH9toxdCim5lSJ9UExyuUmGs2C4HDaOym71QP1mbpV +9WTRYA6ziUm4ii8F0oRFKHyPaFASePwLtVPLwpgchKOesL4jpNrcyCse2m5FHomY +2vkALgbpDDtw1VAliJnLzXNg99X/NWfFobxeq81KuEXryGgeDQ0URhLj0mRiikKY +vLTGCAj4/ahMZJx2Ab0vqWwzD9g/KLg8aQFChn5pwckGyuV6RmXpwtZQQS4/t+Tt +bNe/JgERohYpSms0BpDsE9K2+2p20jzt8NYt3eEV7KObLyzJPivkaTv/ciWxNoZb +x39ri1UbSsUgYT2uy1DhCDq+sI9jQVMwCFk8mB13umOResoQUGC/8Ne8lYePl8X+ +l2oBlKN8W4UdKjk60FSh0Tlxnf0h+bV78OLgAo9uliQlLKAeLKjEiafv7ZkGL7YK +TE/bosw3Gq9HhS2KX8Q0NEwA/RiTZxPRN+ZItIsGxVd7GYYKecsAyVKvQv83j+Gj +Hno9UKtjBucVtT+2RTeUN7F+8kjDf8V1/peNRY8apxpyKBpADwIDAQABo2MwYTAP +BgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBBjAfBgNVHSMEGDAWgBQXnc0e +i9Y5K3DTXNSguB+wAPzFYTAdBgNVHQ4EFgQUF53NHovWOStw01zUoLgfsAD8xWEw +DQYJKoZIhvcNAQELBQADggIBAFbVe27mIgHSQpsY1Q7XZiNc4/6gx5LS6ZStS6LG +7BJ8dNVI0lkUmcDrudHr9EgwW62nV3OZqdPlt9EuWSRY3GguLmLYauRwCy0gUCCk +MpXRAJi70/33MvJJrsZ64Ee+bs7Lo3I6LWldy8joRTnU+kLBEUx3XZL7av9YROXr +gZ6voJmtvqkBZss4HTzfQx/0TW60uhdG/H39h4F5ag0zD/ov+BS5gLNdTaqX4fnk +GMX41TiMJjz98iji7lpJiCzfeT2OnpA8vUFKOt1b9pq0zj8lMH8yfaIDlNDceqFS +3m6TjRgm/VWsvY+b0s+v54Ysyx8Jb6NvqYTUc79NoXQbTiNg8swOqn+knEwlqLJm +Ozj/2ZQw9nKEvmhVEA/GcywWaZMH/rFF7buiVWqw2rVKAiUnhde3t4ZEFolsgCs+ +l6mc1X5VTMbeRRAc6uk7nwNT7u56AQIWeNTowr5GdogTPyK7SBIdUgC0An4hGh6c +JfTzPV4e0hz5sy229zdcxsshTrD3mUcYhcErulWuBurQB7Lcq9CClnXO0lD+mefP +L5/ndtFhKvshuzHQqp9HpLIiyhY6UFfEW0NnxWViA0kB60PZ2Pierc+xYw5F9KBa +LJstxabArahH9CdMOA0uG0k7UvToiIMrVCjU8jVStDKDYmlkDJGcn5fqdBb9HxEG +mpv0 +-----END CERTIFICATE----- + +# Issuer: CN=Entrust Root Certification Authority - G4 O=Entrust, Inc. OU=See www.entrust.net/legal-terms/(c) 2015 Entrust, Inc. - for authorized use only +# Subject: CN=Entrust Root Certification Authority - G4 O=Entrust, Inc. OU=See www.entrust.net/legal-terms/(c) 2015 Entrust, Inc. - for authorized use only +# Label: "Entrust Root Certification Authority - G4" +# Serial: 289383649854506086828220374796556676440 +# MD5 Fingerprint: 89:53:f1:83:23:b7:7c:8e:05:f1:8c:71:38:4e:1f:88 +# SHA1 Fingerprint: 14:88:4e:86:26:37:b0:26:af:59:62:5c:40:77:ec:35:29:ba:96:01 +# SHA256 Fingerprint: db:35:17:d1:f6:73:2a:2d:5a:b9:7c:53:3e:c7:07:79:ee:32:70:a6:2f:b4:ac:42:38:37:24:60:e6:f0:1e:88 +-----BEGIN CERTIFICATE----- +MIIGSzCCBDOgAwIBAgIRANm1Q3+vqTkPAAAAAFVlrVgwDQYJKoZIhvcNAQELBQAw +gb4xCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1FbnRydXN0LCBJbmMuMSgwJgYDVQQL +Ex9TZWUgd3d3LmVudHJ1c3QubmV0L2xlZ2FsLXRlcm1zMTkwNwYDVQQLEzAoYykg +MjAxNSBFbnRydXN0LCBJbmMuIC0gZm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxMjAw +BgNVBAMTKUVudHJ1c3QgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAtIEc0 +MB4XDTE1MDUyNzExMTExNloXDTM3MTIyNzExNDExNlowgb4xCzAJBgNVBAYTAlVT +MRYwFAYDVQQKEw1FbnRydXN0LCBJbmMuMSgwJgYDVQQLEx9TZWUgd3d3LmVudHJ1 +c3QubmV0L2xlZ2FsLXRlcm1zMTkwNwYDVQQLEzAoYykgMjAxNSBFbnRydXN0LCBJ +bmMuIC0gZm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxMjAwBgNVBAMTKUVudHJ1c3Qg +Um9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAtIEc0MIICIjANBgkqhkiG9w0B +AQEFAAOCAg8AMIICCgKCAgEAsewsQu7i0TD/pZJH4i3DumSXbcr3DbVZwbPLqGgZ +2K+EbTBwXX7zLtJTmeH+H17ZSK9dE43b/2MzTdMAArzE+NEGCJR5WIoV3imz/f3E +T+iq4qA7ec2/a0My3dl0ELn39GjUu9CH1apLiipvKgS1sqbHoHrmSKvS0VnM1n4j +5pds8ELl3FFLFUHtSUrJ3hCX1nbB76W1NhSXNdh4IjVS70O92yfbYVaCNNzLiGAM +C1rlLAHGVK/XqsEQe9IFWrhAnoanw5CGAlZSCXqc0ieCU0plUmr1POeo8pyvi73T +DtTUXm6Hnmo9RR3RXRv06QqsYJn7ibT/mCzPfB3pAqoEmh643IhuJbNsZvc8kPNX +wbMv9W3y+8qh+CmdRouzavbmZwe+LGcKKh9asj5XxNMhIWNlUpEbsZmOeX7m640A +2Vqq6nPopIICR5b+W45UYaPrL0swsIsjdXJ8ITzI9vF01Bx7owVV7rtNOzK+mndm +nqxpkCIHH2E6lr7lmk/MBTwoWdPBDFSoWWG9yHJM6Nyfh3+9nEg2XpWjDrk4JFX8 +dWbrAuMINClKxuMrLzOg2qOGpRKX/YAr2hRC45K9PvJdXmd0LhyIRyk0X+IyqJwl +N4y6mACXi0mWHv0liqzc2thddG5msP9E36EYxr5ILzeUePiVSj9/E15dWf10hkNj +c0kCAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYD +VR0OBBYEFJ84xFYjwznooHFs6FRM5Og6sb9nMA0GCSqGSIb3DQEBCwUAA4ICAQAS +5UKme4sPDORGpbZgQIeMJX6tuGguW8ZAdjwD+MlZ9POrYs4QjbRaZIxowLByQzTS +Gwv2LFPSypBLhmb8qoMi9IsabyZIrHZ3CL/FmFz0Jomee8O5ZDIBf9PD3Vht7LGr +hFV0d4QEJ1JrhkzO3bll/9bGXp+aEJlLdWr+aumXIOTkdnrG0CSqkM0gkLpHZPt/ +B7NTeLUKYvJzQ85BK4FqLoUWlFPUa19yIqtRLULVAJyZv967lDtX/Zr1hstWO1uI +AeV8KEsD+UmDfLJ/fOPtjqF/YFOOVZ1QNBIPt5d7bIdKROf1beyAN/BYGW5KaHbw +H5Lk6rWS02FREAutp9lfx1/cH6NcjKF+m7ee01ZvZl4HliDtC3T7Zk6LERXpgUl+ +b7DUUH8i119lAg2m9IUe2K4GS0qn0jFmwvjO5QimpAKWRGhXxNUzzxkvFMSUHHuk +2fCfDrGA4tGeEWSpiBE6doLlYsKA2KSD7ZPvfC+QsDJMlhVoSFLUmQjAJOgc47Ol +IQ6SwJAfzyBfyjs4x7dtOvPmRLgOMWuIjnDrnBdSqEGULoe256YSxXXfW8AKbnuk +5F6G+TaU33fD6Q3AOfF5u0aOq0NZJ7cguyPpVkAh7DE9ZapD8j3fcEThuk0mEDuY +n/PIjhs4ViFqUZPTkcpG2om3PVODLAgfi49T3f+sHw== +-----END CERTIFICATE----- + +# Issuer: CN=Microsoft ECC Root Certificate Authority 2017 O=Microsoft Corporation +# Subject: CN=Microsoft ECC Root Certificate Authority 2017 O=Microsoft Corporation +# Label: "Microsoft ECC Root Certificate Authority 2017" +# Serial: 136839042543790627607696632466672567020 +# MD5 Fingerprint: dd:a1:03:e6:4a:93:10:d1:bf:f0:19:42:cb:fe:ed:67 +# SHA1 Fingerprint: 99:9a:64:c3:7f:f4:7d:9f:ab:95:f1:47:69:89:14:60:ee:c4:c3:c5 +# SHA256 Fingerprint: 35:8d:f3:9d:76:4a:f9:e1:b7:66:e9:c9:72:df:35:2e:e1:5c:fa:c2:27:af:6a:d1:d7:0e:8e:4a:6e:dc:ba:02 +-----BEGIN CERTIFICATE----- +MIICWTCCAd+gAwIBAgIQZvI9r4fei7FK6gxXMQHC7DAKBggqhkjOPQQDAzBlMQsw +CQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYD +VQQDEy1NaWNyb3NvZnQgRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIw +MTcwHhcNMTkxMjE4MjMwNjQ1WhcNNDIwNzE4MjMxNjA0WjBlMQswCQYDVQQGEwJV +UzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNy +b3NvZnQgRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwdjAQBgcq +hkjOPQIBBgUrgQQAIgNiAATUvD0CQnVBEyPNgASGAlEvaqiBYgtlzPbKnR5vSmZR +ogPZnZH6thaxjG7efM3beaYvzrvOcS/lpaso7GMEZpn4+vKTEAXhgShC48Zo9OYb +hGBKia/teQ87zvH2RPUBeMCjVDBSMA4GA1UdDwEB/wQEAwIBhjAPBgNVHRMBAf8E +BTADAQH/MB0GA1UdDgQWBBTIy5lycFIM+Oa+sgRXKSrPQhDtNTAQBgkrBgEEAYI3 +FQEEAwIBADAKBggqhkjOPQQDAwNoADBlAjBY8k3qDPlfXu5gKcs68tvWMoQZP3zV +L8KxzJOuULsJMsbG7X7JNpQS5GiFBqIb0C8CMQCZ6Ra0DvpWSNSkMBaReNtUjGUB +iudQZsIxtzm6uBoiB078a1QWIP8rtedMDE2mT3M= +-----END CERTIFICATE----- + +# Issuer: CN=Microsoft RSA Root Certificate Authority 2017 O=Microsoft Corporation +# Subject: CN=Microsoft RSA Root Certificate Authority 2017 O=Microsoft Corporation +# Label: "Microsoft RSA Root Certificate Authority 2017" +# Serial: 40975477897264996090493496164228220339 +# MD5 Fingerprint: 10:ff:00:ff:cf:c9:f8:c7:7a:c0:ee:35:8e:c9:0f:47 +# SHA1 Fingerprint: 73:a5:e6:4a:3b:ff:83:16:ff:0e:dc:cc:61:8a:90:6e:4e:ae:4d:74 +# SHA256 Fingerprint: c7:41:f7:0f:4b:2a:8d:88:bf:2e:71:c1:41:22:ef:53:ef:10:eb:a0:cf:a5:e6:4c:fa:20:f4:18:85:30:73:e0 +-----BEGIN CERTIFICATE----- +MIIFqDCCA5CgAwIBAgIQHtOXCV/YtLNHcB6qvn9FszANBgkqhkiG9w0BAQwFADBl +MQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYw +NAYDVQQDEy1NaWNyb3NvZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5 +IDIwMTcwHhcNMTkxMjE4MjI1MTIyWhcNNDIwNzE4MjMwMDIzWjBlMQswCQYDVQQG +EwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1N +aWNyb3NvZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwggIi +MA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDKW76UM4wplZEWCpW9R2LBifOZ +Nt9GkMml7Xhqb0eRaPgnZ1AzHaGm++DlQ6OEAlcBXZxIQIJTELy/xztokLaCLeX0 +ZdDMbRnMlfl7rEqUrQ7eS0MdhweSE5CAg2Q1OQT85elss7YfUJQ4ZVBcF0a5toW1 +HLUX6NZFndiyJrDKxHBKrmCk3bPZ7Pw71VdyvD/IybLeS2v4I2wDwAW9lcfNcztm +gGTjGqwu+UcF8ga2m3P1eDNbx6H7JyqhtJqRjJHTOoI+dkC0zVJhUXAoP8XFWvLJ +jEm7FFtNyP9nTUwSlq31/niol4fX/V4ggNyhSyL71Imtus5Hl0dVe49FyGcohJUc +aDDv70ngNXtk55iwlNpNhTs+VcQor1fznhPbRiefHqJeRIOkpcrVE7NLP8TjwuaG +YaRSMLl6IE9vDzhTyzMMEyuP1pq9KsgtsRx9S1HKR9FIJ3Jdh+vVReZIZZ2vUpC6 +W6IYZVcSn2i51BVrlMRpIpj0M+Dt+VGOQVDJNE92kKz8OMHY4Xu54+OU4UZpyw4K +UGsTuqwPN1q3ErWQgR5WrlcihtnJ0tHXUeOrO8ZV/R4O03QK0dqq6mm4lyiPSMQH ++FJDOvTKVTUssKZqwJz58oHhEmrARdlns87/I6KJClTUFLkqqNfs+avNJVgyeY+Q +W5g5xAgGwax/Dj0ApQIDAQABo1QwUjAOBgNVHQ8BAf8EBAMCAYYwDwYDVR0TAQH/ +BAUwAwEB/zAdBgNVHQ4EFgQUCctZf4aycI8awznjwNnpv7tNsiMwEAYJKwYBBAGC +NxUBBAMCAQAwDQYJKoZIhvcNAQEMBQADggIBAKyvPl3CEZaJjqPnktaXFbgToqZC +LgLNFgVZJ8og6Lq46BrsTaiXVq5lQ7GPAJtSzVXNUzltYkyLDVt8LkS/gxCP81OC +gMNPOsduET/m4xaRhPtthH80dK2Jp86519efhGSSvpWhrQlTM93uCupKUY5vVau6 +tZRGrox/2KJQJWVggEbbMwSubLWYdFQl3JPk+ONVFT24bcMKpBLBaYVu32TxU5nh +SnUgnZUP5NbcA/FZGOhHibJXWpS2qdgXKxdJ5XbLwVaZOjex/2kskZGT4d9Mozd2 +TaGf+G0eHdP67Pv0RR0Tbc/3WeUiJ3IrhvNXuzDtJE3cfVa7o7P4NHmJweDyAmH3 +pvwPuxwXC65B2Xy9J6P9LjrRk5Sxcx0ki69bIImtt2dmefU6xqaWM/5TkshGsRGR +xpl/j8nWZjEgQRCHLQzWwa80mMpkg/sTV9HB8Dx6jKXB/ZUhoHHBk2dxEuqPiApp +GWSZI1b7rCoucL5mxAyE7+WL85MB+GqQk2dLsmijtWKP6T+MejteD+eMuMZ87zf9 +dOLITzNy4ZQ5bb0Sr74MTnB8G2+NszKTc0QWbej09+CVgI+WXTik9KveCjCHk9hN +AHFiRSdLOkKEW39lt2c0Ui2cFmuqqNh7o0JMcccMyj6D5KbvtwEwXlGjefVwaaZB +RA+GsCyRxj3qrg+E +-----END CERTIFICATE----- + +# Issuer: CN=e-Szigno Root CA 2017 O=Microsec Ltd. +# Subject: CN=e-Szigno Root CA 2017 O=Microsec Ltd. +# Label: "e-Szigno Root CA 2017" +# Serial: 411379200276854331539784714 +# MD5 Fingerprint: de:1f:f6:9e:84:ae:a7:b4:21:ce:1e:58:7d:d1:84:98 +# SHA1 Fingerprint: 89:d4:83:03:4f:9e:9a:48:80:5f:72:37:d4:a9:a6:ef:cb:7c:1f:d1 +# SHA256 Fingerprint: be:b0:0b:30:83:9b:9b:c3:2c:32:e4:44:79:05:95:06:41:f2:64:21:b1:5e:d0:89:19:8b:51:8a:e2:ea:1b:99 +-----BEGIN CERTIFICATE----- +MIICQDCCAeWgAwIBAgIMAVRI7yH9l1kN9QQKMAoGCCqGSM49BAMCMHExCzAJBgNV +BAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEWMBQGA1UECgwNTWljcm9zZWMgTHRk +LjEXMBUGA1UEYQwOVkFUSFUtMjM1ODQ0OTcxHjAcBgNVBAMMFWUtU3ppZ25vIFJv +b3QgQ0EgMjAxNzAeFw0xNzA4MjIxMjA3MDZaFw00MjA4MjIxMjA3MDZaMHExCzAJ +BgNVBAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEWMBQGA1UECgwNTWljcm9zZWMg +THRkLjEXMBUGA1UEYQwOVkFUSFUtMjM1ODQ0OTcxHjAcBgNVBAMMFWUtU3ppZ25v +IFJvb3QgQ0EgMjAxNzBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJbcPYrYsHtv +xie+RJCxs1YVe45DJH0ahFnuY2iyxl6H0BVIHqiQrb1TotreOpCmYF9oMrWGQd+H +Wyx7xf58etqjYzBhMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0G +A1UdDgQWBBSHERUI0arBeAyxr87GyZDvvzAEwDAfBgNVHSMEGDAWgBSHERUI0arB +eAyxr87GyZDvvzAEwDAKBggqhkjOPQQDAgNJADBGAiEAtVfd14pVCzbhhkT61Nlo +jbjcI4qKDdQvfepz7L9NbKgCIQDLpbQS+ue16M9+k/zzNY9vTlp8tLxOsvxyqltZ ++efcMQ== +-----END CERTIFICATE----- + +# Issuer: O=CERTSIGN SA OU=certSIGN ROOT CA G2 +# Subject: O=CERTSIGN SA OU=certSIGN ROOT CA G2 +# Label: "certSIGN Root CA G2" +# Serial: 313609486401300475190 +# MD5 Fingerprint: 8c:f1:75:8a:c6:19:cf:94:b7:f7:65:20:87:c3:97:c7 +# SHA1 Fingerprint: 26:f9:93:b4:ed:3d:28:27:b0:b9:4b:a7:e9:15:1d:a3:8d:92:e5:32 +# SHA256 Fingerprint: 65:7c:fe:2f:a7:3f:aa:38:46:25:71:f3:32:a2:36:3a:46:fc:e7:02:09:51:71:07:02:cd:fb:b6:ee:da:33:05 +-----BEGIN CERTIFICATE----- +MIIFRzCCAy+gAwIBAgIJEQA0tk7GNi02MA0GCSqGSIb3DQEBCwUAMEExCzAJBgNV +BAYTAlJPMRQwEgYDVQQKEwtDRVJUU0lHTiBTQTEcMBoGA1UECxMTY2VydFNJR04g +Uk9PVCBDQSBHMjAeFw0xNzAyMDYwOTI3MzVaFw00MjAyMDYwOTI3MzVaMEExCzAJ +BgNVBAYTAlJPMRQwEgYDVQQKEwtDRVJUU0lHTiBTQTEcMBoGA1UECxMTY2VydFNJ +R04gUk9PVCBDQSBHMjCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAMDF +dRmRfUR0dIf+DjuW3NgBFszuY5HnC2/OOwppGnzC46+CjobXXo9X69MhWf05N0Iw +vlDqtg+piNguLWkh59E3GE59kdUWX2tbAMI5Qw02hVK5U2UPHULlj88F0+7cDBrZ +uIt4ImfkabBoxTzkbFpG583H+u/E7Eu9aqSs/cwoUe+StCmrqzWaTOTECMYmzPhp +n+Sc8CnTXPnGFiWeI8MgwT0PPzhAsP6CRDiqWhqKa2NYOLQV07YRaXseVO6MGiKs +cpc/I1mbySKEwQdPzH/iV8oScLumZfNpdWO9lfsbl83kqK/20U6o2YpxJM02PbyW +xPFsqa7lzw1uKA2wDrXKUXt4FMMgL3/7FFXhEZn91QqhngLjYl/rNUssuHLoPj1P +rCy7Lobio3aP5ZMqz6WryFyNSwb/EkaseMsUBzXgqd+L6a8VTxaJW732jcZZroiF +DsGJ6x9nxUWO/203Nit4ZoORUSs9/1F3dmKh7Gc+PoGD4FapUB8fepmrY7+EF3fx +DTvf95xhszWYijqy7DwaNz9+j5LP2RIUZNoQAhVB/0/E6xyjyfqZ90bp4RjZsbgy +LcsUDFDYg2WD7rlcz8sFWkz6GZdr1l0T08JcVLwyc6B49fFtHsufpaafItzRUZ6C +eWRgKRM+o/1Pcmqr4tTluCRVLERLiohEnMqE0yo7AgMBAAGjQjBAMA8GA1UdEwEB +/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBSCIS1mxteg4BXrzkwJ +d8RgnlRuAzANBgkqhkiG9w0BAQsFAAOCAgEAYN4auOfyYILVAzOBywaK8SJJ6ejq +kX/GM15oGQOGO0MBzwdw5AgeZYWR5hEit/UCI46uuR59H35s5r0l1ZUa8gWmr4UC +b6741jH/JclKyMeKqdmfS0mbEVeZkkMR3rYzpMzXjWR91M08KCy0mpbqTfXERMQl +qiCA2ClV9+BB/AYm/7k29UMUA2Z44RGx2iBfRgB4ACGlHgAoYXhvqAEBj500mv/0 +OJD7uNGzcgbJceaBxXntC6Z58hMLnPddDnskk7RI24Zf3lCGeOdA5jGokHZwYa+c +NywRtYK3qq4kNFtyDGkNzVmf9nGvnAvRCjj5BiKDUyUM/FHE5r7iOZULJK2v0ZXk +ltd0ZGtxTgI8qoXzIKNDOXZbbFD+mpwUHmUUihW9o4JFWklWatKcsWMy5WHgUyIO +pwpJ6st+H6jiYoD2EEVSmAYY3qXNL3+q1Ok+CHLsIwMCPKaq2LxndD0UF/tUSxfj +03k9bWtJySgOLnRQvwzZRjoQhsmnP+mg7H/rpXdYaXHmgwo38oZJar55CJD2AhZk +PuXaTH4MNMn5X7azKFGnpyuqSfqNZSlO42sTp5SjLVFteAxEy9/eCG/Oo2Sr05WE +1LlSVHJ7liXMvGnjSG4N0MedJ5qq+BOS3R7fY581qRY27Iy4g/Q9iY/NtBde17MX +QRBdJ3NghVdJIgc= +-----END CERTIFICATE----- + +# Issuer: CN=Trustwave Global Certification Authority O=Trustwave Holdings, Inc. +# Subject: CN=Trustwave Global Certification Authority O=Trustwave Holdings, Inc. +# Label: "Trustwave Global Certification Authority" +# Serial: 1846098327275375458322922162 +# MD5 Fingerprint: f8:1c:18:2d:2f:ba:5f:6d:a1:6c:bc:c7:ab:91:c7:0e +# SHA1 Fingerprint: 2f:8f:36:4f:e1:58:97:44:21:59:87:a5:2a:9a:d0:69:95:26:7f:b5 +# SHA256 Fingerprint: 97:55:20:15:f5:dd:fc:3c:87:88:c0:06:94:45:55:40:88:94:45:00:84:f1:00:86:70:86:bc:1a:2b:b5:8d:c8 +-----BEGIN CERTIFICATE----- +MIIF2jCCA8KgAwIBAgIMBfcOhtpJ80Y1LrqyMA0GCSqGSIb3DQEBCwUAMIGIMQsw +CQYDVQQGEwJVUzERMA8GA1UECAwISWxsaW5vaXMxEDAOBgNVBAcMB0NoaWNhZ28x +ITAfBgNVBAoMGFRydXN0d2F2ZSBIb2xkaW5ncywgSW5jLjExMC8GA1UEAwwoVHJ1 +c3R3YXZlIEdsb2JhbCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0xNzA4MjMx +OTM0MTJaFw00MjA4MjMxOTM0MTJaMIGIMQswCQYDVQQGEwJVUzERMA8GA1UECAwI +SWxsaW5vaXMxEDAOBgNVBAcMB0NoaWNhZ28xITAfBgNVBAoMGFRydXN0d2F2ZSBI +b2xkaW5ncywgSW5jLjExMC8GA1UEAwwoVHJ1c3R3YXZlIEdsb2JhbCBDZXJ0aWZp +Y2F0aW9uIEF1dGhvcml0eTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIB +ALldUShLPDeS0YLOvR29zd24q88KPuFd5dyqCblXAj7mY2Hf8g+CY66j96xz0Xzn +swuvCAAJWX/NKSqIk4cXGIDtiLK0thAfLdZfVaITXdHG6wZWiYj+rDKd/VzDBcdu +7oaJuogDnXIhhpCujwOl3J+IKMujkkkP7NAP4m1ET4BqstTnoApTAbqOl5F2brz8 +1Ws25kCI1nsvXwXoLG0R8+eyvpJETNKXpP7ScoFDB5zpET71ixpZfR9oWN0EACyW +80OzfpgZdNmcc9kYvkHHNHnZ9GLCQ7mzJ7Aiy/k9UscwR7PJPrhq4ufogXBeQotP +JqX+OsIgbrv4Fo7NDKm0G2x2EOFYeUY+VM6AqFcJNykbmROPDMjWLBz7BegIlT1l +RtzuzWniTY+HKE40Cz7PFNm73bZQmq131BnW2hqIyE4bJ3XYsgjxroMwuREOzYfw +hI0Vcnyh78zyiGG69Gm7DIwLdVcEuE4qFC49DxweMqZiNu5m4iK4BUBjECLzMx10 +coos9TkpoNPnG4CELcU9402x/RpvumUHO1jsQkUm+9jaJXLE9gCxInm943xZYkqc +BW89zubWR2OZxiRvchLIrH+QtAuRcOi35hYQcRfO3gZPSEF9NUqjifLJS3tBEW1n +twiYTOURGa5CgNz7kAXU+FDKvuStx8KU1xad5hePrzb7AgMBAAGjQjBAMA8GA1Ud +EwEB/wQFMAMBAf8wHQYDVR0OBBYEFJngGWcNYtt2s9o9uFvo/ULSMQ6HMA4GA1Ud +DwEB/wQEAwIBBjANBgkqhkiG9w0BAQsFAAOCAgEAmHNw4rDT7TnsTGDZqRKGFx6W +0OhUKDtkLSGm+J1WE2pIPU/HPinbbViDVD2HfSMF1OQc3Og4ZYbFdada2zUFvXfe +uyk3QAUHw5RSn8pk3fEbK9xGChACMf1KaA0HZJDmHvUqoai7PF35owgLEQzxPy0Q +lG/+4jSHg9bP5Rs1bdID4bANqKCqRieCNqcVtgimQlRXtpla4gt5kNdXElE1GYhB +aCXUNxeEFfsBctyV3lImIJgm4nb1J2/6ADtKYdkNy1GTKv0WBpanI5ojSP5RvbbE +sLFUzt5sQa0WZ37b/TjNuThOssFgy50X31ieemKyJo90lZvkWx3SD92YHJtZuSPT +MaCm/zjdzyBP6VhWOmfD0faZmZ26NraAL4hHT4a/RDqA5Dccprrql5gR0IRiR2Qe +qu5AvzSxnI9O4fKSTx+O856X3vOmeWqJcU9LJxdI/uz0UA9PSX3MReO9ekDFQdxh +VicGaeVyQYHTtgGJoC86cnn+OjC/QezHYj6RS8fZMXZC+fc8Y+wmjHMMfRod6qh8 +h6jCJ3zhM0EPz8/8AKAigJ5Kp28AsEFFtyLKaEjFQqKu3R3y4G5OBVixwJAWKqQ9 +EEC+j2Jjg6mcgn0tAumDMHzLJ8n9HmYAsC7TIS+OMxZsmO0QqAfWzJPP29FpHOTK +yeC2nOnOcXHebD8WpHk= +-----END CERTIFICATE----- + +# Issuer: CN=Trustwave Global ECC P256 Certification Authority O=Trustwave Holdings, Inc. +# Subject: CN=Trustwave Global ECC P256 Certification Authority O=Trustwave Holdings, Inc. +# Label: "Trustwave Global ECC P256 Certification Authority" +# Serial: 4151900041497450638097112925 +# MD5 Fingerprint: 5b:44:e3:8d:5d:36:86:26:e8:0d:05:d2:59:a7:83:54 +# SHA1 Fingerprint: b4:90:82:dd:45:0c:be:8b:5b:b1:66:d3:e2:a4:08:26:cd:ed:42:cf +# SHA256 Fingerprint: 94:5b:bc:82:5e:a5:54:f4:89:d1:fd:51:a7:3d:df:2e:a6:24:ac:70:19:a0:52:05:22:5c:22:a7:8c:cf:a8:b4 +-----BEGIN CERTIFICATE----- +MIICYDCCAgegAwIBAgIMDWpfCD8oXD5Rld9dMAoGCCqGSM49BAMCMIGRMQswCQYD +VQQGEwJVUzERMA8GA1UECBMISWxsaW5vaXMxEDAOBgNVBAcTB0NoaWNhZ28xITAf +BgNVBAoTGFRydXN0d2F2ZSBIb2xkaW5ncywgSW5jLjE6MDgGA1UEAxMxVHJ1c3R3 +YXZlIEdsb2JhbCBFQ0MgUDI1NiBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0x +NzA4MjMxOTM1MTBaFw00MjA4MjMxOTM1MTBaMIGRMQswCQYDVQQGEwJVUzERMA8G +A1UECBMISWxsaW5vaXMxEDAOBgNVBAcTB0NoaWNhZ28xITAfBgNVBAoTGFRydXN0 +d2F2ZSBIb2xkaW5ncywgSW5jLjE6MDgGA1UEAxMxVHJ1c3R3YXZlIEdsb2JhbCBF +Q0MgUDI1NiBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTBZMBMGByqGSM49AgEGCCqG +SM49AwEHA0IABH77bOYj43MyCMpg5lOcunSNGLB4kFKA3TjASh3RqMyTpJcGOMoN +FWLGjgEqZZ2q3zSRLoHB5DOSMcT9CTqmP62jQzBBMA8GA1UdEwEB/wQFMAMBAf8w +DwYDVR0PAQH/BAUDAwcGADAdBgNVHQ4EFgQUo0EGrJBt0UrrdaVKEJmzsaGLSvcw +CgYIKoZIzj0EAwIDRwAwRAIgB+ZU2g6gWrKuEZ+Hxbb/ad4lvvigtwjzRM4q3wgh +DDcCIC0mA6AFvWvR9lz4ZcyGbbOcNEhjhAnFjXca4syc4XR7 +-----END CERTIFICATE----- + +# Issuer: CN=Trustwave Global ECC P384 Certification Authority O=Trustwave Holdings, Inc. +# Subject: CN=Trustwave Global ECC P384 Certification Authority O=Trustwave Holdings, Inc. +# Label: "Trustwave Global ECC P384 Certification Authority" +# Serial: 2704997926503831671788816187 +# MD5 Fingerprint: ea:cf:60:c4:3b:b9:15:29:40:a1:97:ed:78:27:93:d6 +# SHA1 Fingerprint: e7:f3:a3:c8:cf:6f:c3:04:2e:6d:0e:67:32:c5:9e:68:95:0d:5e:d2 +# SHA256 Fingerprint: 55:90:38:59:c8:c0:c3:eb:b8:75:9e:ce:4e:25:57:22:5f:f5:75:8b:bd:38:eb:d4:82:76:60:1e:1b:d5:80:97 +-----BEGIN CERTIFICATE----- +MIICnTCCAiSgAwIBAgIMCL2Fl2yZJ6SAaEc7MAoGCCqGSM49BAMDMIGRMQswCQYD +VQQGEwJVUzERMA8GA1UECBMISWxsaW5vaXMxEDAOBgNVBAcTB0NoaWNhZ28xITAf +BgNVBAoTGFRydXN0d2F2ZSBIb2xkaW5ncywgSW5jLjE6MDgGA1UEAxMxVHJ1c3R3 +YXZlIEdsb2JhbCBFQ0MgUDM4NCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0x +NzA4MjMxOTM2NDNaFw00MjA4MjMxOTM2NDNaMIGRMQswCQYDVQQGEwJVUzERMA8G +A1UECBMISWxsaW5vaXMxEDAOBgNVBAcTB0NoaWNhZ28xITAfBgNVBAoTGFRydXN0 +d2F2ZSBIb2xkaW5ncywgSW5jLjE6MDgGA1UEAxMxVHJ1c3R3YXZlIEdsb2JhbCBF +Q0MgUDM4NCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTB2MBAGByqGSM49AgEGBSuB +BAAiA2IABGvaDXU1CDFHBa5FmVXxERMuSvgQMSOjfoPTfygIOiYaOs+Xgh+AtycJ +j9GOMMQKmw6sWASr9zZ9lCOkmwqKi6vr/TklZvFe/oyujUF5nQlgziip04pt89ZF +1PKYhDhloKNDMEEwDwYDVR0TAQH/BAUwAwEB/zAPBgNVHQ8BAf8EBQMDBwYAMB0G +A1UdDgQWBBRVqYSJ0sEyvRjLbKYHTsjnnb6CkDAKBggqhkjOPQQDAwNnADBkAjA3 +AZKXRRJ+oPM+rRk6ct30UJMDEr5E0k9BpIycnR+j9sKS50gU/k6bpZFXrsY3crsC +MGclCrEMXu6pY5Jv5ZAL/mYiykf9ijH3g/56vxC+GCsej/YpHpRZ744hN8tRmKVu +Sw== +-----END CERTIFICATE----- + +# Issuer: CN=NAVER Global Root Certification Authority O=NAVER BUSINESS PLATFORM Corp. +# Subject: CN=NAVER Global Root Certification Authority O=NAVER BUSINESS PLATFORM Corp. +# Label: "NAVER Global Root Certification Authority" +# Serial: 9013692873798656336226253319739695165984492813 +# MD5 Fingerprint: c8:7e:41:f6:25:3b:f5:09:b3:17:e8:46:3d:bf:d0:9b +# SHA1 Fingerprint: 8f:6b:f2:a9:27:4a:da:14:a0:c4:f4:8e:61:27:f9:c0:1e:78:5d:d1 +# SHA256 Fingerprint: 88:f4:38:dc:f8:ff:d1:fa:8f:42:91:15:ff:e5:f8:2a:e1:e0:6e:0c:70:c3:75:fa:ad:71:7b:34:a4:9e:72:65 +-----BEGIN CERTIFICATE----- +MIIFojCCA4qgAwIBAgIUAZQwHqIL3fXFMyqxQ0Rx+NZQTQ0wDQYJKoZIhvcNAQEM +BQAwaTELMAkGA1UEBhMCS1IxJjAkBgNVBAoMHU5BVkVSIEJVU0lORVNTIFBMQVRG +T1JNIENvcnAuMTIwMAYDVQQDDClOQVZFUiBHbG9iYWwgUm9vdCBDZXJ0aWZpY2F0 +aW9uIEF1dGhvcml0eTAeFw0xNzA4MTgwODU4NDJaFw0zNzA4MTgyMzU5NTlaMGkx +CzAJBgNVBAYTAktSMSYwJAYDVQQKDB1OQVZFUiBCVVNJTkVTUyBQTEFURk9STSBD +b3JwLjEyMDAGA1UEAwwpTkFWRVIgR2xvYmFsIFJvb3QgQ2VydGlmaWNhdGlvbiBB +dXRob3JpdHkwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQC21PGTXLVA +iQqrDZBbUGOukJR0F0Vy1ntlWilLp1agS7gvQnXp2XskWjFlqxcX0TM62RHcQDaH +38dq6SZeWYp34+hInDEW+j6RscrJo+KfziFTowI2MMtSAuXaMl3Dxeb57hHHi8lE +HoSTGEq0n+USZGnQJoViAbbJAh2+g1G7XNr4rRVqmfeSVPc0W+m/6imBEtRTkZaz +kVrd/pBzKPswRrXKCAfHcXLJZtM0l/aM9BhK4dA9WkW2aacp+yPOiNgSnABIqKYP +szuSjXEOdMWLyEz59JuOuDxp7W87UC9Y7cSw0BwbagzivESq2M0UXZR4Yb8Obtoq +vC8MC3GmsxY/nOb5zJ9TNeIDoKAYv7vxvvTWjIcNQvcGufFt7QSUqP620wbGQGHf +nZ3zVHbOUzoBppJB7ASjjw2i1QnK1sua8e9DXcCrpUHPXFNwcMmIpi3Ua2FzUCaG +YQ5fG8Ir4ozVu53BA0K6lNpfqbDKzE0K70dpAy8i+/Eozr9dUGWokG2zdLAIx6yo +0es+nPxdGoMuK8u180SdOqcXYZaicdNwlhVNt0xz7hlcxVs+Qf6sdWA7G2POAN3a +CJBitOUt7kinaxeZVL6HSuOpXgRM6xBtVNbv8ejyYhbLgGvtPe31HzClrkvJE+2K +AQHJuFFYwGY6sWZLxNUxAmLpdIQM201GLQIDAQABo0IwQDAdBgNVHQ4EFgQU0p+I +36HNLL3s9TsBAZMzJ7LrYEswDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMB +Af8wDQYJKoZIhvcNAQEMBQADggIBADLKgLOdPVQG3dLSLvCkASELZ0jKbY7gyKoN +qo0hV4/GPnrK21HUUrPUloSlWGB/5QuOH/XcChWB5Tu2tyIvCZwTFrFsDDUIbatj +cu3cvuzHV+YwIHHW1xDBE1UBjCpD5EHxzzp6U5LOogMFDTjfArsQLtk70pt6wKGm ++LUx5vR1yblTmXVHIloUFcd4G7ad6Qz4G3bxhYTeodoS76TiEJd6eN4MUZeoIUCL +hr0N8F5OSza7OyAfikJW4Qsav3vQIkMsRIz75Sq0bBwcupTgE34h5prCy8VCZLQe +lHsIJchxzIdFV4XTnyliIoNRlwAYl3dqmJLJfGBs32x9SuRwTMKeuB330DTHD8z7 +p/8Dvq1wkNoL3chtl1+afwkyQf3NosxabUzyqkn+Zvjp2DXrDige7kgvOtB5CTh8 +piKCk5XQA76+AqAF3SAi428diDRgxuYKuQl1C/AH6GmWNcf7I4GOODm4RStDeKLR +LBT/DShycpWbXgnbiUSYqqFJu3FS8r/2/yehNq+4tneI3TqkbZs0kNwUXTC/t+sX +5Ie3cdCh13cV1ELX8vMxmV2b3RZtP+oGI/hGoiLtk/bdmuYqh7GYVPEi92tF4+KO +dh2ajcQGjTa3FPOdVGm3jjzVpG2Tgbet9r1ke8LJaDmgkpzNNIaRkPpkUZ3+/uul +9XXeifdy +-----END CERTIFICATE----- + +# Issuer: CN=AC RAIZ FNMT-RCM SERVIDORES SEGUROS O=FNMT-RCM OU=Ceres +# Subject: CN=AC RAIZ FNMT-RCM SERVIDORES SEGUROS O=FNMT-RCM OU=Ceres +# Label: "AC RAIZ FNMT-RCM SERVIDORES SEGUROS" +# Serial: 131542671362353147877283741781055151509 +# MD5 Fingerprint: 19:36:9c:52:03:2f:d2:d1:bb:23:cc:dd:1e:12:55:bb +# SHA1 Fingerprint: 62:ff:d9:9e:c0:65:0d:03:ce:75:93:d2:ed:3f:2d:32:c9:e3:e5:4a +# SHA256 Fingerprint: 55:41:53:b1:3d:2c:f9:dd:b7:53:bf:be:1a:4e:0a:e0:8d:0a:a4:18:70:58:fe:60:a2:b8:62:b2:e4:b8:7b:cb +-----BEGIN CERTIFICATE----- +MIICbjCCAfOgAwIBAgIQYvYybOXE42hcG2LdnC6dlTAKBggqhkjOPQQDAzB4MQsw +CQYDVQQGEwJFUzERMA8GA1UECgwIRk5NVC1SQ00xDjAMBgNVBAsMBUNlcmVzMRgw +FgYDVQRhDA9WQVRFUy1RMjgyNjAwNEoxLDAqBgNVBAMMI0FDIFJBSVogRk5NVC1S +Q00gU0VSVklET1JFUyBTRUdVUk9TMB4XDTE4MTIyMDA5MzczM1oXDTQzMTIyMDA5 +MzczM1oweDELMAkGA1UEBhMCRVMxETAPBgNVBAoMCEZOTVQtUkNNMQ4wDAYDVQQL +DAVDZXJlczEYMBYGA1UEYQwPVkFURVMtUTI4MjYwMDRKMSwwKgYDVQQDDCNBQyBS +QUlaIEZOTVQtUkNNIFNFUlZJRE9SRVMgU0VHVVJPUzB2MBAGByqGSM49AgEGBSuB +BAAiA2IABPa6V1PIyqvfNkpSIeSX0oNnnvBlUdBeh8dHsVnyV0ebAAKTRBdp20LH +sbI6GA60XYyzZl2hNPk2LEnb80b8s0RpRBNm/dfF/a82Tc4DTQdxz69qBdKiQ1oK +Um8BA06Oi6NCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYD +VR0OBBYEFAG5L++/EYZg8k/QQW6rcx/n0m5JMAoGCCqGSM49BAMDA2kAMGYCMQCu +SuMrQMN0EfKVrRYj3k4MGuZdpSRea0R7/DjiT8ucRRcRTBQnJlU5dUoDzBOQn5IC +MQD6SmxgiHPz7riYYqnOK8LZiqZwMR2vsJRM60/G49HzYqc8/5MuB1xJAWdpEgJy +v+c= +-----END CERTIFICATE----- + +# Issuer: CN=GlobalSign Root R46 O=GlobalSign nv-sa +# Subject: CN=GlobalSign Root R46 O=GlobalSign nv-sa +# Label: "GlobalSign Root R46" +# Serial: 1552617688466950547958867513931858518042577 +# MD5 Fingerprint: c4:14:30:e4:fa:66:43:94:2a:6a:1b:24:5f:19:d0:ef +# SHA1 Fingerprint: 53:a2:b0:4b:ca:6b:d6:45:e6:39:8a:8e:c4:0d:d2:bf:77:c3:a2:90 +# SHA256 Fingerprint: 4f:a3:12:6d:8d:3a:11:d1:c4:85:5a:4f:80:7c:ba:d6:cf:91:9d:3a:5a:88:b0:3b:ea:2c:63:72:d9:3c:40:c9 +-----BEGIN CERTIFICATE----- +MIIFWjCCA0KgAwIBAgISEdK7udcjGJ5AXwqdLdDfJWfRMA0GCSqGSIb3DQEBDAUA +MEYxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMRwwGgYD +VQQDExNHbG9iYWxTaWduIFJvb3QgUjQ2MB4XDTE5MDMyMDAwMDAwMFoXDTQ2MDMy +MDAwMDAwMFowRjELMAkGA1UEBhMCQkUxGTAXBgNVBAoTEEdsb2JhbFNpZ24gbnYt +c2ExHDAaBgNVBAMTE0dsb2JhbFNpZ24gUm9vdCBSNDYwggIiMA0GCSqGSIb3DQEB +AQUAA4ICDwAwggIKAoICAQCsrHQy6LNl5brtQyYdpokNRbopiLKkHWPd08EsCVeJ +OaFV6Wc0dwxu5FUdUiXSE2te4R2pt32JMl8Nnp8semNgQB+msLZ4j5lUlghYruQG +vGIFAha/r6gjA7aUD7xubMLL1aa7DOn2wQL7Id5m3RerdELv8HQvJfTqa1VbkNud +316HCkD7rRlr+/fKYIje2sGP1q7Vf9Q8g+7XFkyDRTNrJ9CG0Bwta/OrffGFqfUo +0q3v84RLHIf8E6M6cqJaESvWJ3En7YEtbWaBkoe0G1h6zD8K+kZPTXhc+CtI4wSE +y132tGqzZfxCnlEmIyDLPRT5ge1lFgBPGmSXZgjPjHvjK8Cd+RTyG/FWaha/LIWF +zXg4mutCagI0GIMXTpRW+LaCtfOW3T3zvn8gdz57GSNrLNRyc0NXfeD412lPFzYE ++cCQYDdF3uYM2HSNrpyibXRdQr4G9dlkbgIQrImwTDsHTUB+JMWKmIJ5jqSngiCN +I/onccnfxkF0oE32kRbcRoxfKWMxWXEM2G/CtjJ9++ZdU6Z+Ffy7dXxd7Pj2Fxzs +x2sZy/N78CsHpdlseVR2bJ0cpm4O6XkMqCNqo98bMDGfsVR7/mrLZqrcZdCinkqa +ByFrgY/bxFn63iLABJzjqls2k+g9vXqhnQt2sQvHnf3PmKgGwvgqo6GDoLclcqUC +4wIDAQABo0IwQDAOBgNVHQ8BAf8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAdBgNV +HQ4EFgQUA1yrc4GHqMywptWU4jaWSf8FmSwwDQYJKoZIhvcNAQEMBQADggIBAHx4 +7PYCLLtbfpIrXTncvtgdokIzTfnvpCo7RGkerNlFo048p9gkUbJUHJNOxO97k4Vg +JuoJSOD1u8fpaNK7ajFxzHmuEajwmf3lH7wvqMxX63bEIaZHU1VNaL8FpO7XJqti +2kM3S+LGteWygxk6x9PbTZ4IevPuzz5i+6zoYMzRx6Fcg0XERczzF2sUyQQCPtIk +pnnpHs6i58FZFZ8d4kuaPp92CC1r2LpXFNqD6v6MVenQTqnMdzGxRBF6XLE+0xRF +FRhiJBPSy03OXIPBNvIQtQ6IbbjhVp+J3pZmOUdkLG5NrmJ7v2B0GbhWrJKsFjLt +rWhV/pi60zTe9Mlhww6G9kuEYO4Ne7UyWHmRVSyBQ7N0H3qqJZ4d16GLuc1CLgSk +ZoNNiTW2bKg2SnkheCLQQrzRQDGQob4Ez8pn7fXwgNNgyYMqIgXQBztSvwyeqiv5 +u+YfjyW6hY0XHgL+XVAEV8/+LbzvXMAaq7afJMbfc2hIkCwU9D9SGuTSyxTDYWnP +4vkYxboznxSjBF25cfe1lNj2M8FawTSLfJvdkzrnE6JwYZ+vj+vYxXX4M2bUdGc6 +N3ec592kD3ZDZopD8p/7DEJ4Y9HiD2971KE9dJeFt0g5QdYg/NA6s/rob8SKunE3 +vouXsXgxT7PntgMTzlSdriVZzH81Xwj3QEUxeCp6 +-----END CERTIFICATE----- + +# Issuer: CN=GlobalSign Root E46 O=GlobalSign nv-sa +# Subject: CN=GlobalSign Root E46 O=GlobalSign nv-sa +# Label: "GlobalSign Root E46" +# Serial: 1552617690338932563915843282459653771421763 +# MD5 Fingerprint: b5:b8:66:ed:de:08:83:e3:c9:e2:01:34:06:ac:51:6f +# SHA1 Fingerprint: 39:b4:6c:d5:fe:80:06:eb:e2:2f:4a:bb:08:33:a0:af:db:b9:dd:84 +# SHA256 Fingerprint: cb:b9:c4:4d:84:b8:04:3e:10:50:ea:31:a6:9f:51:49:55:d7:bf:d2:e2:c6:b4:93:01:01:9a:d6:1d:9f:50:58 +-----BEGIN CERTIFICATE----- +MIICCzCCAZGgAwIBAgISEdK7ujNu1LzmJGjFDYQdmOhDMAoGCCqGSM49BAMDMEYx +CzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMRwwGgYDVQQD +ExNHbG9iYWxTaWduIFJvb3QgRTQ2MB4XDTE5MDMyMDAwMDAwMFoXDTQ2MDMyMDAw +MDAwMFowRjELMAkGA1UEBhMCQkUxGTAXBgNVBAoTEEdsb2JhbFNpZ24gbnYtc2Ex +HDAaBgNVBAMTE0dsb2JhbFNpZ24gUm9vdCBFNDYwdjAQBgcqhkjOPQIBBgUrgQQA +IgNiAAScDrHPt+ieUnd1NPqlRqetMhkytAepJ8qUuwzSChDH2omwlwxwEwkBjtjq +R+q+soArzfwoDdusvKSGN+1wCAB16pMLey5SnCNoIwZD7JIvU4Tb+0cUB+hflGdd +yXqBPCCjQjBAMA4GA1UdDwEB/wQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB0GA1Ud +DgQWBBQxCpCPtsad0kRLgLWi5h+xEk8blTAKBggqhkjOPQQDAwNoADBlAjEA31SQ +7Zvvi5QCkxeCmb6zniz2C5GMn0oUsfZkvLtoURMMA/cVi4RguYv/Uo7njLwcAjA8 ++RHUjE7AwWHCFUyqqx0LMV87HOIAl0Qx5v5zli/altP+CAezNIm8BZ/3Hobui3A= +-----END CERTIFICATE----- + +# Issuer: CN=GLOBALTRUST 2020 O=e-commerce monitoring GmbH +# Subject: CN=GLOBALTRUST 2020 O=e-commerce monitoring GmbH +# Label: "GLOBALTRUST 2020" +# Serial: 109160994242082918454945253 +# MD5 Fingerprint: 8a:c7:6f:cb:6d:e3:cc:a2:f1:7c:83:fa:0e:78:d7:e8 +# SHA1 Fingerprint: d0:67:c1:13:51:01:0c:aa:d0:c7:6a:65:37:31:16:26:4f:53:71:a2 +# SHA256 Fingerprint: 9a:29:6a:51:82:d1:d4:51:a2:e3:7f:43:9b:74:da:af:a2:67:52:33:29:f9:0f:9a:0d:20:07:c3:34:e2:3c:9a +-----BEGIN CERTIFICATE----- +MIIFgjCCA2qgAwIBAgILWku9WvtPilv6ZeUwDQYJKoZIhvcNAQELBQAwTTELMAkG +A1UEBhMCQVQxIzAhBgNVBAoTGmUtY29tbWVyY2UgbW9uaXRvcmluZyBHbWJIMRkw +FwYDVQQDExBHTE9CQUxUUlVTVCAyMDIwMB4XDTIwMDIxMDAwMDAwMFoXDTQwMDYx +MDAwMDAwMFowTTELMAkGA1UEBhMCQVQxIzAhBgNVBAoTGmUtY29tbWVyY2UgbW9u +aXRvcmluZyBHbWJIMRkwFwYDVQQDExBHTE9CQUxUUlVTVCAyMDIwMIICIjANBgkq +hkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAri5WrRsc7/aVj6B3GyvTY4+ETUWiD59b +RatZe1E0+eyLinjF3WuvvcTfk0Uev5E4C64OFudBc/jbu9G4UeDLgztzOG53ig9Z +YybNpyrOVPu44sB8R85gfD+yc/LAGbaKkoc1DZAoouQVBGM+uq/ufF7MpotQsjj3 +QWPKzv9pj2gOlTblzLmMCcpL3TGQlsjMH/1WljTbjhzqLL6FLmPdqqmV0/0plRPw +yJiT2S0WR5ARg6I6IqIoV6Lr/sCMKKCmfecqQjuCgGOlYx8ZzHyyZqjC0203b+J+ +BlHZRYQfEs4kUmSFC0iAToexIiIwquuuvuAC4EDosEKAA1GqtH6qRNdDYfOiaxaJ +SaSjpCuKAsR49GiKweR6NrFvG5Ybd0mN1MkGco/PU+PcF4UgStyYJ9ORJitHHmkH +r96i5OTUawuzXnzUJIBHKWk7buis/UDr2O1xcSvy6Fgd60GXIsUf1DnQJ4+H4xj0 +4KlGDfV0OoIu0G4skaMxXDtG6nsEEFZegB31pWXogvziB4xiRfUg3kZwhqG8k9Me +dKZssCz3AwyIDMvUclOGvGBG85hqwvG/Q/lwIHfKN0F5VVJjjVsSn8VoxIidrPIw +q7ejMZdnrY8XD2zHc+0klGvIg5rQmjdJBKuxFshsSUktq6HQjJLyQUp5ISXbY9e2 +nKd+Qmn7OmMCAwEAAaNjMGEwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMC +AQYwHQYDVR0OBBYEFNwuH9FhN3nkq9XVsxJxaD1qaJwiMB8GA1UdIwQYMBaAFNwu +H9FhN3nkq9XVsxJxaD1qaJwiMA0GCSqGSIb3DQEBCwUAA4ICAQCR8EICaEDuw2jA +VC/f7GLDw56KoDEoqoOOpFaWEhCGVrqXctJUMHytGdUdaG/7FELYjQ7ztdGl4wJC +XtzoRlgHNQIw4Lx0SsFDKv/bGtCwr2zD/cuz9X9tAy5ZVp0tLTWMstZDFyySCstd +6IwPS3BD0IL/qMy/pJTAvoe9iuOTe8aPmxadJ2W8esVCgmxcB9CpwYhgROmYhRZf ++I/KARDOJcP5YBugxZfD0yyIMaK9MOzQ0MAS8cE54+X1+NZK3TTN+2/BT+MAi1bi +kvcoskJ3ciNnxz8RFbLEAwW+uxF7Cr+obuf/WEPPm2eggAe2HcqtbepBEX4tdJP7 +wry+UUTF72glJ4DjyKDUEuzZpTcdN3y0kcra1LGWge9oXHYQSa9+pTeAsRxSvTOB +TI/53WXZFM2KJVj04sWDpQmQ1GwUY7VA3+vA/MRYfg0UFodUJ25W5HCEuGwyEn6C +MUO+1918oa2u1qsgEu8KwxCMSZY13At1XrFP1U80DhEgB3VDRemjEdqso5nCtnkn +4rnvyOL2NSl6dPrFf4IFYqYK6miyeUcGbvJXqBUzxvd4Sj1Ce2t+/vdG6tHrju+I +aFvowdlxfv1k7/9nR4hYJS8+hge9+6jlgqispdNpQ80xiEmEU5LAsTkbOYMBMMTy +qfrQA71yN2BWHzZ8vTmR9W0Nv3vXkg== +-----END CERTIFICATE----- + +# Issuer: CN=ANF Secure Server Root CA O=ANF Autoridad de Certificacion OU=ANF CA Raiz +# Subject: CN=ANF Secure Server Root CA O=ANF Autoridad de Certificacion OU=ANF CA Raiz +# Label: "ANF Secure Server Root CA" +# Serial: 996390341000653745 +# MD5 Fingerprint: 26:a6:44:5a:d9:af:4e:2f:b2:1d:b6:65:b0:4e:e8:96 +# SHA1 Fingerprint: 5b:6e:68:d0:cc:15:b6:a0:5f:1e:c1:5f:ae:02:fc:6b:2f:5d:6f:74 +# SHA256 Fingerprint: fb:8f:ec:75:91:69:b9:10:6b:1e:51:16:44:c6:18:c5:13:04:37:3f:6c:06:43:08:8d:8b:ef:fd:1b:99:75:99 +-----BEGIN CERTIFICATE----- +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 +-----END CERTIFICATE----- + +# Issuer: CN=Certum EC-384 CA O=Asseco Data Systems S.A. OU=Certum Certification Authority +# Subject: CN=Certum EC-384 CA O=Asseco Data Systems S.A. OU=Certum Certification Authority +# Label: "Certum EC-384 CA" +# Serial: 160250656287871593594747141429395092468 +# MD5 Fingerprint: b6:65:b3:96:60:97:12:a1:ec:4e:e1:3d:a3:c6:c9:f1 +# SHA1 Fingerprint: f3:3e:78:3c:ac:df:f4:a2:cc:ac:67:55:69:56:d7:e5:16:3c:e1:ed +# SHA256 Fingerprint: 6b:32:80:85:62:53:18:aa:50:d1:73:c9:8d:8b:da:09:d5:7e:27:41:3d:11:4c:f7:87:a0:f5:d0:6c:03:0c:f6 +-----BEGIN CERTIFICATE----- +MIICZTCCAeugAwIBAgIQeI8nXIESUiClBNAt3bpz9DAKBggqhkjOPQQDAzB0MQsw +CQYDVQQGEwJQTDEhMB8GA1UEChMYQXNzZWNvIERhdGEgU3lzdGVtcyBTLkEuMScw +JQYDVQQLEx5DZXJ0dW0gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkxGTAXBgNVBAMT +EENlcnR1bSBFQy0zODQgQ0EwHhcNMTgwMzI2MDcyNDU0WhcNNDMwMzI2MDcyNDU0 +WjB0MQswCQYDVQQGEwJQTDEhMB8GA1UEChMYQXNzZWNvIERhdGEgU3lzdGVtcyBT +LkEuMScwJQYDVQQLEx5DZXJ0dW0gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkxGTAX +BgNVBAMTEENlcnR1bSBFQy0zODQgQ0EwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAATE +KI6rGFtqvm5kN2PkzeyrOvfMobgOgknXhimfoZTy42B4mIF4Bk3y7JoOV2CDn7Tm +Fy8as10CW4kjPMIRBSqniBMY81CE1700LCeJVf/OTOffph8oxPBUw7l8t1Ot68Kj +QjBAMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFI0GZnQkdjrzife81r1HfS+8 +EF9LMA4GA1UdDwEB/wQEAwIBBjAKBggqhkjOPQQDAwNoADBlAjADVS2m5hjEfO/J +UG7BJw+ch69u1RsIGL2SKcHvlJF40jocVYli5RsJHrpka/F2tNQCMQC0QoSZ/6vn +nvuRlydd3LBbMHHOXjgaatkl5+r3YZJW+OraNsKHZZYuciUvf9/DE8k= +-----END CERTIFICATE----- + +# Issuer: CN=Certum Trusted Root CA O=Asseco Data Systems S.A. OU=Certum Certification Authority +# Subject: CN=Certum Trusted Root CA O=Asseco Data Systems S.A. OU=Certum Certification Authority +# Label: "Certum Trusted Root CA" +# Serial: 40870380103424195783807378461123655149 +# MD5 Fingerprint: 51:e1:c2:e7:fe:4c:84:af:59:0e:2f:f4:54:6f:ea:29 +# SHA1 Fingerprint: c8:83:44:c0:18:ae:9f:cc:f1:87:b7:8f:22:d1:c5:d7:45:84:ba:e5 +# SHA256 Fingerprint: fe:76:96:57:38:55:77:3e:37:a9:5e:7a:d4:d9:cc:96:c3:01:57:c1:5d:31:76:5b:a9:b1:57:04:e1:ae:78:fd +-----BEGIN CERTIFICATE----- +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 +-----END CERTIFICATE----- diff --git a/Scripts/Lib/site-packages/pip/_vendor/certifi/core.py b/Scripts/Lib/site-packages/pip/_vendor/certifi/core.py new file mode 100644 index 0000000..b8140cf --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/certifi/core.py @@ -0,0 +1,76 @@ +# -*- coding: utf-8 -*- + +""" +certifi.py +~~~~~~~~~~ + +This module returns the installation location of cacert.pem or its contents. +""" +import os + + +class _PipPatchedCertificate(Exception): + pass + + +try: + # Return a certificate file on disk for a standalone pip zipapp running in + # an isolated build environment to use. Passing --cert to the standalone + # pip does not work since requests calls where() unconditionally on import. + _PIP_STANDALONE_CERT = os.environ.get("_PIP_STANDALONE_CERT") + if _PIP_STANDALONE_CERT: + def where(): + return _PIP_STANDALONE_CERT + raise _PipPatchedCertificate() + + from importlib.resources import path as get_path, read_text + + _CACERT_CTX = None + _CACERT_PATH = None + + def where(): + # 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 + +except _PipPatchedCertificate: + pass + +except ImportError: + # 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(_module, _path, encoding="ascii"): + with open(where(), "r", 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(): + f = os.path.dirname(__file__) + + return os.path.join(f, "cacert.pem") + + +def contents(): + return read_text("certifi", "cacert.pem", encoding="ascii") diff --git a/Scripts/Lib/site-packages/pip/_vendor/chardet/__init__.py b/Scripts/Lib/site-packages/pip/_vendor/chardet/__init__.py new file mode 100644 index 0000000..80ad254 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/chardet/__init__.py @@ -0,0 +1,83 @@ +######################## 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 .universaldetector import UniversalDetector +from .enums import InputState +from .version import __version__, VERSION + + +__all__ = ['UniversalDetector', 'detect', 'detect_all', '__version__', 'VERSION'] + + +def detect(byte_str): + """ + Detect the encoding of the given byte string. + + :param byte_str: The byte sequence to examine. + :type byte_str: ``bytes`` or ``bytearray`` + """ + if not isinstance(byte_str, bytearray): + if not isinstance(byte_str, bytes): + raise TypeError('Expected object of type bytes or bytearray, got: ' + '{}'.format(type(byte_str))) + else: + byte_str = bytearray(byte_str) + detector = UniversalDetector() + detector.feed(byte_str) + return detector.close() + + +def detect_all(byte_str): + """ + Detect all the possible encodings of the given byte string. + + :param byte_str: The byte sequence to examine. + :type byte_str: ``bytes`` or ``bytearray`` + """ + if not isinstance(byte_str, bytearray): + if not isinstance(byte_str, bytes): + raise TypeError('Expected object of type bytes or bytearray, got: ' + '{}'.format(type(byte_str))) + else: + byte_str = bytearray(byte_str) + + detector = UniversalDetector() + detector.feed(byte_str) + detector.close() + + if detector._input_state == InputState.HIGH_BYTE: + results = [] + for prober in detector._charset_probers: + if prober.get_confidence() > detector.MINIMUM_THRESHOLD: + charset_name = prober.charset_name + lower_charset_name = prober.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'): + if detector._has_win_bytes: + charset_name = detector.ISO_WIN_MAP.get(lower_charset_name, + 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/Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/__init__.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..841f5ed3ba8dd3b8736bf0469c4a6023b23b2c31 GIT binary patch literal 1922 zcmd5-&2A$_5T2etk0(wxKg)(J9EPK%O@ahSOSFn$Ng$Rs4y?T(ETi$*)3GNRPtSI@ zNgT!!B3yX`4mO-Pa_0efhQ1;W`wA-|sG5m431<$B)YaA9Rn;}!-&f5R7hMg$-+upd zaDP$L{=mV_Plv$=(8L~yPzy<{4M~d-)b&^&8Z9H&jo2JoEo*4EY@+qG(EN$CN}(0n z-)k)=EQJpA<*?k)s_qK{p{hi!JWHalDHlP!M5j62J2&rY7B$v8a&ov#i zHED!oYDz29F3F5slJAHls82L$UuqMQk!dN@X7KBvIWrA@#kly{_24V=_vC@R@tP2zFs08&5Q%z{dGtIOMhV?2 z+~hbdY_7e$P6wStr{ghxH3&El#+^>?^YWej^AygPh92vlfRg7nk0a0t{d1QGUZ2Sw z@0&@zT2^i(qD0655>e$>Cd$fpQ{^Uv*yo&aWgjy>45TtKyW(=pV@gA1^ zl$BH57UREYd=0MRhz){^fQRkF zKuF5HCLN|RfTZ2%@hFv|4PI>#NxGQ^z0;siMLUhsZGcY_GQQm#fG?HXz8@u#^!=@L z%x&2H4MfB$2)E=ClR*31F>L4^lCR%_5jvEhEerg|dqj`CB-2g`=46BDe(JX=SxSAOXWMDy#nhn->X@ literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/big5freq.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/big5freq.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..54fd34b8fca3a3e649ae03b86e2b3f2a5ac19bf6 GIT binary patch literal 27199 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 P_fw+8$QvVioM`_CV-2?j literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/big5prober.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/big5prober.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5e1314e5bafd282e931d93e83d9bc6b3e9c57cdf GIT binary patch literal 1150 zcmZ`(&2G~`5Z?7)+{h^R{ga%e9IAxMfUq$VJxC(F{x@op2V{$qEINYq;@ z^)XV?2hN}`^L^&ttNr>**C6B<9+sB{hj*~m zJ_t@YO-M?8N>MiwBQ<@q*3HC9ZQrhSD{<0>-=O4xaGN`4ggb)HP2c5>A?dh(D1_?J z>T$nJbljb4(VK*FDD-EUkAwtEyO;Ag8xM7;ML&!taVFsQNjDzv?Z-;XcvR{*&)#QY zGF7nxTdVu=V2=&^tp92M!(jvo?kw~Aq;^3O#HXD2#yL5roO0vL^-W=MlUrwGPJJ8n zx@yp!b7B!6t8P?HOur~G!VYd0>KGrldI>@kO;5?(xG=sGO0=o1Ih>iTojHML1s{p(L6>G6ogwaVj7Ah#>VuyVd8PDZT1Wa9I>y`tQMIlqjYN{bjNEpGKF7Vy7=nq8LZZ7R+mO@F@+99Q81D? dqIKw{YHrDJ-z-{ui%cr~*?3Pqpx>kG=08Z&8;k$| literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/chardistribution.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/chardistribution.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..119b99d3e57070ea13e868e6de8946e4ca392a82 GIT binary patch literal 5761 zcmbtYOK%(36`nVT6h%=IEm3~bvRj9RV>?bG{q`A|;Em3lA}8?zxXM z=brC8?y%9{pHS%f;&1<6`~5c*R%v^AJ>Uf z(a7S&~7alB1b3ZX0IJ4aDWH8#GQ#cjuJNV!Cdh$St;~)i8{@E zPf2A$W8b9_cav`a4iQgrRG~PUP#s-pjv;i%6oz97Q&^7`CnjRTrYE_LNYFDb`b3hR z3DGZ7^z0J@B2CYv7$oS2!tB&qNlsV%KvtGFgG!@5Q7=`u{EA;u$op46pZ#Yu^Z8dd zR)3s9^YM+gPCAs~FuNDp&~S=w{|XVIv=ld@q$#yEraDuDso7GVSWguMK~Z_87V@!h z*e#PLZqRU7r1!vWNa4w_&kah;RnPS+O)oqiY;9D^rK&5s)OBTvv<^*IH0oZMr1b&K zfGD3ryCpyHWNy)`ZB$Evw^S_4%0}QX(W)iC5_oTJl*;R+RnK4A zsBBzzf8^CgLtcgg!V98jm+qG~wnE!=EA>j?x|d+S6cJ0eRLi8Beo3`?cB%(Jmv&e7 zMq>nMsEme2R286_&&=D>2@lyqGIjy^*okH<#f_yB9Jocy=N|jTSlhx+W9kC`wCxs&4Cb zO=#PCOBedODKECjJ@2c+xK6(3sx7^x+}G9>c}b9K-KSY&%DN%1@GN6zmLaSn<=4)g zk2S|vJWu3GIY3k@1KWp{U@f;^Z#=B$s$P9HSZl+%+h5ZqbJUXX_X<3|kT=8lsux7Q z8X4#qW@JEMs=Ogj(jzn=KD0qy5*nK9-3M$K8qnny&G&(uttB->v(*%tGNlfw#(xdn zP@AWE8WpSexdQawv*{u+WEpaYb=B{q7P$pkOqD6vtH@*MUDxG>ol*3uSx_URoKUva z7S@<#v#Z72(y(UT(SMlUW<}ocDzmZk-Kw+xx4r7y3-Sj6Yk>eg_+{*`8(5Ltaxu>#x2ZCm?E^9`*^09*CKt6Zv~WCgM*fo=V)eyZdSxFo8!F|+4cQGz8{IKUaEPn8zx-0))1SNwp~id z?t{%zH5!p`LWysIL>ZvXas*T2Hlw2G*w;7J{Ip?qf`GR{u zJZ=^rC;>&wr`i(@WiFun2Gd$QociLBXa=7D2qUzd1rGG~Uua?bheSAKwx6Q4=Z4R8j%0b6dc(v@ zMfw!Jlpnhg=M9~s@key?hHTSTv#Oyr&-LEWUP69mNt{OHTOe0K*f{Y9~ z_G1UTj(PlIpz(n2=cs75l2p?cBUC1K-=*(x@@;DDc+7_j|Ch(eYqWI78|1gqo(5rk zO|&u~P$cq&7+T1TQC4B4JMn>KKgHm8h%okttMhW~<+~(d56?e9=6fK>FcRgygQt8S zEGyB`1h)Pe`fn0p(0XXH2b!F~^p2Pg9gf&wuWK@mrb z!xA5mM?>)o%wQ7?lxrGbAelkn!w9WprTSsFXKoQrPEvR8>XK*!&e#gJFiuw3m=j>!<_1bHqJcn0u!1bZU0f#alq1=zwkpcHR%wUwy_R{7RFkT=jJu$wp zgYl^sF&5S+vhRNEV~o8`895$h%I%v(x?*`2Y$pi!67e6Y--lI( zC=nwSXXuF99Phc|SAZLK|1DkzAD7@>4tJ5hpI;O10^Y`ONHwM!u@B= zh~Vy}&Eaq(o$GXCyS^mS6YeYpvOx#*YzNkDqdrW%76p2qo-rED^Qe`jKZ-`F9McR< z#OZKuv=IJ@EcKAv^wG!AbrGjFomTV7Zg=CpZ)$QK}Af_w$S*5S->7wjiQ*eCL4 zr*dGQ$NAIBsg--MYH87=yyjr3f4 Kn13UgvHt<#BDbXg literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e16ea8fa594e112e2f3e9184350e26c5f3f9c0c6 GIT binary patch literal 2249 zcmZ`)OK%)S5bo}I?Cg5iNsRNtD0U7J41xqCBpw0+PDlWe4Z?=QYEf&v-QMhayu0q6 zjqoy-f?_EbxbXw*qc8ad`~ZH#+z{fB69;ab_^M}(?O81RbN&0u+gY7e82qq z$AkVE#(pQ^_~%3T2+h6*qL|_-+vF|Ii5IEZ^jaQgcbW2(zsr=by~ke5SHTL4!)F{@ zVqVn0G{d#tpu3VKnTFiB^&l}TI-_B2I#_h#qZ{e7Ux8@W;)=C|ntj67xf06Tt+qVJ z z2<&*IjUnTTNXp)zmq}U7$fT3?9%?xlZx)r2bBHbG;ai=qn*awK z@S-YZCrvOd57^&7wBBns^>^e`uf`_}|8?~BL)$wP9fuz|oLoarx1WO?I($#;GdLU0mtM~L z{%!W{+z!vVSI3ey zFBLx0`Xa7)lkOsOLqYnI)|16kv^{>@|0-?fagaF=GF8i50AECu0b|6FxkU3$fg>$m z#Mrwuei`J{AUWKAA}c9CsFAbmk09g}1jNl9kqaAbdAaCwTc>^xL9x$wyxg<%kiE?7 z`y0Ys%PDIElF*0PUlDLK+)FDWtXM{<35jq+I8~K+hr+3fbyekUaI;LSPVU6%I0c#S zH}ALzbHNtZTtFELj>2EpS{Z`5i0<6~x_MiEwpv0MN=r2n#ldx9^Zu&5_lXP0*e}B` zTHDSvmKpN`4lq}UJm<~@jD3veDpd`D3cxCmf5g?mN1)Wtf)Xztg?w`H6v#=@6HrsN zp?q;J{}~LqoboT@eF1mX6o>Oj@*tg4h*0J22$y|uaX$b&v4i2t*5%ymhxS!+*IuN2 zNY#D88IAAN_Sp`trM7uzEC*#y&d^&!^#E^8P0G!o8mGk9rQ8}PX*uJHw<~Bxgkpzh zD%&n?BeM*JSDDp~>7&!pX)5KhFm$!il|{v^_PndR%{V9m pjTg_BNzs^AnrWe>H^8kscEP{3qln%wjrfpCr=`MPU#RnW?;kl%?0f(K literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/charsetprober.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/charsetprober.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..dbeab08ea3cdbdfff1f591ad1f11461bb1137054 GIT binary patch literal 3503 zcmai1TW{OQ73Po>Ei1C)buQb@rtP4cZlmtn*+q*MHPURdak?8IRTr^}0*X?a;*2E5 z6sZhHNoB}rfTZZ(aDcw#KNKj?ec9i@*P;)3=}X@Fl745Xi{;oT0Ugc^&z#$w@61uU zvQn||{QbLs_x^g`vi?PrqmPTpP5iRYK!hb&Y&DBFYcgRAC${@e(_z+EmT*Psg(XVT zeeN_%g6&u}?=^N=_16rv#`5YnDs4wecSi?WhV<#^<6v?VzbpZf7Q|akTd<}hE(k}s zFIW=_g!jT~mZT?^MEQmFoHdukvZ!FKjI}eOYSxy;ide;3MV=97#hO{GV*H+1H{%tI z&x!M9yee!MdNE(Q-3!!?)MTPm-Hv(w^F=+hVa@cRF`0QAzw9!Iu*Q~ejTtD@_MxNQ zmozR3YsY%U>NPL-{EWQK&%{B}^*d3lrOKD$wA)1>^5w47_b|p<+4qy6FMU7v=&MvU zJ9je~chnLTy|UB_UjH38w_0`iCmqJ=P_#b#xqmNet3Zufej`oetW_WG$<~)q+6(pr zC0f4?GU($C*&oEPqO}vMXrQwecD1rd%Z))0?gd?$wFc4Pn*T&5B30KyghEJd-kH<` z6Ozrrh-{3KNc;XzC;%Ra$2_*i_Af3(Z*$5P(!oz38dCsG@TwSS>k$RZreLWO7HW>7 z=;q7YcN%wYH}2NIQl#S*Q^alpP>@yPDk%x$KE*I2u~oKzZqW+!{T&m?3^L&jrS?p9 zA@@Bj9amGOXh4xUooiq)+FX18(xSGbZ0{t^RH-^g8pv0pre+(@a;H7)9M|i1q!d2` z=Nt0QW&7)k`snki&Y80rTaRXuWhRp9BnL|-L4N@y#xu`89!K;2bX6vfgm$~$g%It$MNZ8`kvogM1 zePC_;`C;voH*^3Th_aQ;oov{yF?9h;$Af;M0I1)Kx;?)=($Y_pc=T&D z(a;ljEZ9r7QXU(7TNr5TxplxaJ4AVd&GvykwzsW^{JBdpk@z)$o`mqhP;&sJgF+St32&1t z>9E_=T&EnVq=P8o0nen03fG>dN@Q?5j{2x^VkWLV;)Mm-CU5kjjCY1fNKSC<*vm*< zahmWwrZq^>y+F^E=$WioqO|f9aXrQRO@0eP$h@dKOotildpx9+H_@NiF%uUk$(2Nr z4yC}+kUNM@EO~|sEqRcIQ8bV2W@Waq@WWgyJQxgO3IY5e2eP8r^QXNi>~WFuB-MO~ zaNn7n@cg7UXY#TiBSEJJ{?iA~Hr_t`WImmo6RmzxfBhDZLDn;M3A<{ge3`N;P%0Ry z53!OjA@c-m$vxazxLoq3C^LCgD;fOd@bFmnL{yh`Mj~ zehH1)MG)_-SF)M=w(P94s<*~mR%IyIS5E})34#{TYi>CRHR$~t1_gQrJFta);Aq_Y zV>BYq84&zS;L#cbr^0#PGMFumOTenFen9+*hgk`;E5ZZjOJWHq-X50@9iVy}`6OU$wwPh!T(liW*O3k2l;}o<^YDobaaWZJ8 z)uo;4-V`=7b#wTbNE8_k_}<#NefRDWUq40l(j4WcFiRuGCeVN)VSOfVclRDjYVvu} zg6{6lWAqzE_m`qZz~JqMq1PMghqO%Cs{>FRZ*)cIGjYeoGEpDV*B^n@yyCXILL6R{ z_&Vt3?m)>Wxl2anWhBFiaQkoqx2KWr`IDQ$kEN#aPPctVBE6~$jIG&gcG>n=nZ{1l zUUw>Xnc2@=XWaq%YA2%aB)LT|cvjIrlf2^l{ZtHNYK*JC|9BY0lQwyM=j-3yZ`}TU z!*6_j{|+Yiw$)i|QPdLTWpu3rsq{$UZ;hp>EU51h`GCGwsi%p;zQj!;)c0xqDv{5L zP@{c>P_wD%_NQ=W9HeZyHhe4DPKA}7Iknviv#+c&!;P3z2U66*l1zsEtmtmNwEaki e+AtkaW3-yawtT(t_y!%iX=BQl%dBdjcm4+z)QM66 literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachine.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachine.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..87d079f84970f506533009793d95ae10aaccb1c6 GIT binary patch literal 2922 zcmaJ@%Wm676djU!(6X$id7ue`w9^(SA~bOVv_OEMX!C40iCb7k7lKe?%o#~^C{mdj zIkDj^isT!*PL}zHen7v0+oFrCyX&SscPQGHt&|4G9L~(SXU;u$sC;d$#c=)p$6w=L zI*k2Eo#R&xojbVARWy=GFJ*lueHo=ttiNKiu7a0Azb3sN>o(qDHrsgT zq3wD_`>}|}Nv3*MSQXRI@hd>*4sP=RjbeRIvc509en4SfF+jQi{km+(Ci)E-$`$-? z%9dQk|4^;Swp@F~UV8nO>>&IH#o7D0OtO&+I1eswwq!_qldp3LxbwJ62pOY|vtrR>&ZBaU4oiEX0E*&FmN(C;d}366s=Q92Dj9 z@Vc6;LlnVxMVd&CEGa(C!Kdqz2x&BgR+^86;oC|<4yiJm3=<{SOJJ(oCK+W&mb0Bpjj*SopfJtO za-IW2W1Ge#u*so0`Ll5XQ^v?ZoM%=bX_ka0iYMVJt5e1?#W@w^QYGLFm&9Z;Q8J-= zL7;@Ziqx8C2n?Dh;b>D;!soI++}!+evr@K9_%UJsPgCS5J<9#bP<*jWoy14wd9<5l zTRDxD!DA=(R*H56`Jk$8Cz5&|r!$z0lsyest>QzSPbdopX3>a%I&`m)I8;ow?v}$dTR-Zu}}>+lWpa6;qw^Eb3Rcvp%> zG(jPxMJI}9T1RAn2wAN9WWOj?S+QDL=^~7xOiWZ16%882 zn>y-T*{)yIj7o=vZzgYG!3u(YkO^P|MKat!+NzMCh4k+o+%$L7X)M34(W{y z^w?W(qZ?>SRZ(}Rnhx>&*3wD;hF**lq z2Tr&IPh4UzeDpl)?*vbLeNmzp)!cZ1aUVB}>NLZ>t6gH}@%AJ3B5?gW#%Ufrb--$D zrzRV>uvLdZU-0Heu^Oksn8?y6$Qi2WRE8;E7VUDz5GQM{i&d9}`Fz@Dx1sC!=VWm@ z>GRZWP}8LGnv<&V;-clO>EMc%^Qr?Y1teEF6^m8|Uqx={9$p&4>jZ7&_Ker@eXsWK z8NY+x{*@*29<4oxb(dQ6|gW7l&;^#wei*hWgZ>;>|Lp^ye7(`H+CWwEQZRjqa*m#oVG5(b+Xi>C9ZSsj&1FYCfjsGc-jw)%jFuyXQh5OWdK8G*uQ6HUtu~nipOO!!QUt wVc-WH&y9EMdWGQXDw|DAS?P^@dk4Sp-1su!BK)SL{VjRQke|ZKZU21mAIM1+;s5{u literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/compat.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/compat.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..34a268ab826303c6189e37176ca1c68b49c7e046 GIT binary patch literal 421 zcmYjM!AiqG5Zxpjo5U7RLXTd1(29Bz5%J(jgV0_K3n9%;+ilZq*xeN4ANdb{fFIy# zui~M<;K@luaA4ldN<|D$q7G@NBx>QZ901Lt#K+Z?yGi zjlmPYW3NOVv`@D1T_=|;Mq^&cnzPf3^j^$VrW%$`r7Sdy>ou@jA(z=prZ{`ZG=?5c zVN(^E0XE5%sElUlVj9zrt1Mq<3(%|*)i~Wk$)y_SOZ0*n=W$DaJ7-VF5tTT Uw;mz{hml7e>IB%4L*2ja2a=z7TmS$7 literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/cp949prober.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/cp949prober.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f76d9bf1c383e9ae893d293c92c72f0f7088ae11 GIT binary patch literal 1157 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 UG;SkiBwkF;+YXr~7s<5wKa|gX!vFvP literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/escsm.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/escsm.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..72db666ecb0512e159ee96eeca3ea41fad7e6a1c GIT binary patch literal 8398 zcmeHMOK;mo5GL0Y_4YGq1N2g$m#Tp3MCqw0irB7D$Cl(k(up8IFxri+L@$t3(fD8F zo_sDC}1AjqMyRTV3Rx65ROvA8(R5oV0yE8jG^X=}(H9anu3j+N7^6MXG z(iej8J8kekS!g^0F@MSk0v5115Qd^6iULLoIu(fceC?G8rSwX~UTv`iooA6yW?Y-( zlJ~=A!K@d1qiG~^FeB}AWo9*3qoX+wb2^CD^T_6cp2&JzP-L7{vIJq7$Rvw%IFAdj zWhIA;Ni+Uf^TLM z=Yby!2*bJ*a7ihWJT8+0DdKg1T}pUEDPMbCytRvq;VS)ct8kV6kpJ1P=h1n``hgGs zjPQu@_0TN5Z&v4{U9?Z@&GW#IVrK-_aUE|e8>Ec4$U51;+jz%4Uz_-jvUSCET#RtB zhtDXk9vby-q&>W%*NI`td-Y~!*@F$M0}|W7G&^Jqm}Z;o;Jf%E7l}Lg&!K$63_746ONGW~PmR>F|k8_#ymsy`^>c_8WD(NHtBZdGcMoVVB`PORuvBE!S6R)`Y?LX04Eq?U`o5)zOnVSJ32K zQRRF%fh%ekj_SBQ=L(vfE2@lkMeTf7KMMx@bI~gdq8IJLEK)$7K6Z1EC3za^R5c*6K(Z5uX z{|wsfiO@e_7cXn*Zz)2M--jghmjuE;X`Qt*=u!efoCIz6DWeN1R^$sQj}XM}|H_wA z*2^h2ADU-UK2#Tx&s?9M6U~d4ASW7kk|4;3N^D+P^e5yIFFEv9iWT{-RD6FhVfgs# z%i}`VoV7VTBC$!rgX&`O@UhCHH?UV?M1CWcZU?jAT)6uwZvO=RJU$C`*y}ky=ECKF D1i1P1 literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/eucjpprober.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/eucjpprober.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7bed3dc860b8673af4bd5b25478b1400eee957d4 GIT binary patch literal 2455 zcmZ`*TTdHD6rP#Aur|gxBqWej6_J`sR+ErQd8n!=Y63JD1%t4osw-F1WoIx8dvRvh zQLr4T5>)vC`2+Bn|Ii=M-!QLLAM)I{zO?7enqXS7X3m^5w{zy3b0M3VsS@~p`~A;d zI!nkOC`^7f2;V`=e+D9mpfO3PPZQ=diZY9>#P)5&Td|Y4zH4|po=QC5GrSX5lB!=d zyciQrqqQ?h?T-gm&TNb!lDwvsD$;9cl@g^8uTzk3ld~-F*3l(h-iYQATr9pg$Mh zF_SAE>x_p!A?-Bz2`wcNa4*dR_nz<+8e+#q2H=SAm=eZoet5O z(+~X-T?}uT--i1d%;_QgR>@D}MMx7G+kV9(iS>Pwh$kEaBL!=4AN zGGZr?tBUI0Gz11@p;xcX+8J2;HH_BJjn2a8z?|JUA#d#w6AVUv7(sk5LSXG(64nFk z=Z-Ish_ymj`uGog z&Fc`n@KRD+u}swrjO%I&!OC+?$O==BcGkAGHny}IXT6?O+7WVl&{GR|&T*y>RM-QrSq)yM9=oJg3B};^me%jia^)RnOV9M37Ljc&$XX!Y;{&%c6jIM z)*1*eR-2BR!_zzj0&G;8Mi3n1v}dZ1ht_b!;d~6KuVCXh(DH{s8nnSMk5sAskH>72 zQ;_0Voi^wkU0@96O3HqzTQyi;qYPHNY}l9#JG|t%a6`PYnF#nC7qXqI7liI|lHZ<#*EoMQ2;y?aq+pZqvW2jAM zPhfJVNt;-{zJQkFOM0Y6Yg5dwQf2}6R^z70ysc(kJ2D+4x$(==gJ+ZNafT~HLtzTl zbLHzB_e#otJWNT13WwEXq5_sh(cSBZY4N74f-W4HL%GEAS*H9mi_fyJ_n<`OAx2z| O?%cQmW{-bYtbYN7|5xe& literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/euckrfreq.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/euckrfreq.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4901619597f911c6358b4061d3f2bc7e2a1912f7 GIT binary patch literal 12083 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 GQ~eLAVqMAr literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/euckrprober.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/euckrprober.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..15e9d82dbc6cec00d53402a35c157d8f5e528a69 GIT binary patch literal 1158 zcmZ`(Pfyf96rbt8Eo(tsk!ZXaJ#8Z3fs-*tS%?SN)v$PJnoMRp1KTkDI``d}qG8vUR$+Pzv z6%&;xP%hOZb!>(mcz?l7AeCd=3qalH&S0nAn}L1?7$37T2w)^~)FwzV^ZGjX*yL-1^!pmX17 z7y`$5&|RopRTf-I4~#3HkR(eqA<{UMuDM%?Yf6YprD;j^h|Tdps3Bs?W#vk)xW2%Z zqqsPP=K>+Iph^*Pf&Naz*U^A~)3L})7QNaed&x*rIf=+Yo(mNX%3~gFCHa_6sbo=~ zD$V7y1D+NFIuQ+HnG{+@U=^uE^RK61 zR)NU`*dQ5Ac^7UjEf9`1eLNp@{-rwu%MMsV(8}A*C8yclL4859qY_A20}HtV;&zSK z>aK6vY%(LHY7>&?tP}Kss1~pK8gn6FP;N?JGOw8W z>sfjZKpAp;6kyA1W6SQ~T4RRpemc4;zv+`S1XZ18)Rg)9(&p={2eDeNTRS&*%_w@{ iMZsK}IjvpKWpmRF|4mckThmNsemcR^07f9dEA~G`g&j@+ literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/euctwfreq.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/euctwfreq.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..15a2edb91377a43a1f8bcd5f613e0c7ec947fe32 GIT binary patch literal 27203 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 lI``|;H(#G2H{-n9vv);A&MBJW&;`A& z8+7jsIVd!BH>!Jej#-tlY2tbr-6Swut%1-;;}bNs&aLkVBW-JE3N~@IH%0JloS<{x zco>4fxYu5&TvZlaN)IkqJ|Rh#XhNh3C|z^55Z90pl}a;`>Jgj6flvd)gv-j6TycGY zD@Sp00M7+NVnLN6|E6P+mn?dKCw;QI>EM`#8Xpl{rW^uG{_(TZ3;0_N8f^VZhAlO+2`|KG>Jba3%vIYONLz zz^npO37|nTn(~)$a%q8ZtjXi~r1LM`nOL^qCM2!A0Zoo+c6U-=(Cn}TPz(*^3W(c1 zUc1}A8MCR3kg7>YnzK?EJs{*uNyW@lqgMHVB9KFm!?-TicU)&6Ww(g0MoW>iz=>q}=}UroenxgPBt?`Bl= jAc_KB8lKjn=c>7xhW}>P;#)IJWqvxr(*P(C;1%m1OduV* literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/gb2312freq.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/gb2312freq.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4bd3896ef9045aead446fe7fb264567d6bbf90f8 GIT binary patch literal 19127 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 literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/gb2312prober.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/gb2312prober.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..402d6a6561077116a4a0b53851f7ee47c596e8ac GIT binary patch literal 1166 zcmZ`(&2G~`5Z?7)+{i5@YC*sSI8g~&C_N#BpegF52}tS5vb1u%+r+B>*j*zMdP}9g zMmhE!cmSTkSHyvHZ=9I1TQvoBr5(@gc<1Mv&(0SY+XUA4AHT+Ki;$ma%r6U!x3JX? z2u?UnNJ@Q5Q8yAJHGQ+z&BRJ=->!8lanhFGqGXqFn>)vZJA%$k-{q|VS#y6=2(?D5 zJH0Z|@%BWE?l_bKp+CxeC?t3~-JHkSXrMzadSNt13~Xj=XGY-JIwGeo zdN_f|w7<4c*{Uprlnz|3T*l%o){IFEC~Z7jh-y@rN+nLETIF*{un?h`3R&4wD51}2 zWhs#yz;l7IC<&Ef?2P>R>c0y5;){-wyyU_2Ew&dAWhf^B+t2ev1^x0+1lw^w4yU2y zK`&HV$cOtPEfN?;Fo7l5#THFS+ z@~{@bgJoeVp1{eu0m3q-_pW7~f9uA~vIAE!YpaWtRO05eZW3mr5`aM}$W;*kw0Y@Y zb8*&K9Aj0Ru{7spg1X1pr!q_$PmNsV0+PTGJ&`LI^)85N@nX1Jcak@o|Yq4W~^FvqNhSGVfM8ya1q?l|+oHPQy2aUt!vOg*6+i<$Atz6Hi2J%}@eR&X;m^l=-~kOhx?=nVkuw}a literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/hebrewprober.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/hebrewprober.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..22376873f2377caced23294741f379f32a6a5181 GIT binary patch literal 3043 zcmZuzNpBlB6eef$NFFQR*E9=|E-LCcaqGlM+BA->I7Tfwh@2J}s37Fw$d)Zj3P*Bc zM*#xFK>kBdHqeVNLD54`J@(Mwz*|xD;1*qgE{9y)_c)Rw*%^T!AIV4RBi}-ny1JqS zzVCnhWo_~*AwOfI^)sMx3rg?-04JOl$R>3uMOiCoo4Tu0GEcb9ja|YGpFY=JgPUm* zw+<;xiBs7%yOtGczj9BMR(t^+4odmrYPyoG_#P;=eR{nW?1A7DmvZ82oVq&KU}fDk zx#3#ebUV1^+PuS!aNCXYh}+4duERUsF7CK7-sPU+F}M2#$x(iackkM65AWfHBhKEg+#9`uL!7(cyBo>O-iFKF!o1g0`sveQ@u)O|YS|Y8EiP@w^2L0GF*(9=`C_)fJTM|FlveW|Gy<~EF} z;AWY$C-UV=kbzm5AYbvv%UN$DyXps-a=tvlwtP5hF@d|}eq~}!*)-&JvAivM;ZVN9 z!|n!%QLE+W(4B!+7r59sx)T=DVD2m~avFexy;z8pYanY1!D`@Ddg>5V$SZm-ZiqgR zL_fj+!XUyZ!kH$VMQH@!Ybb#Ypcooay3^anO`WjU2rKgo9qF@vdt3r3*ZZw27;HcM1a0#QDAwdjpYet z4;eN-lr1RDqeRB*;PUHO1MhVmijgz7n(R#(xwDX(S!AEh+-Zo(M6w~K9;BolD%?xR z&QMxT&&(|xXyIO|cYH^7J_z0aTc8pkpBS~Nb#%-b8d@iIfMKt8fJb_A2RY+4dqYN3 zOZSs?`VATRH)PyEq^@%>A>M~2kMnhaNwHK6Ie!NVigUD6aUN+q{#MO4-sm@IGR6BF z5a664@vLhbnuuVXhMqmWM)&DcTBCF1%ekjo4U#vEUqzdMq>C${V?xW?ry^d11=l;c zc9m#^brdha7^EgO26`|SsgFg9gY^|Ok!)EZsn*xAuT>k@01q~lA6pN*fn8JumN*Z* zg}RzLA?4u}ByeBSN-Zt3WI_()@&)K)Yx&hRwz6IES*cjq4#N&F!7vI{P+rC+My8C+ zC6*Jj%L}RbMs(O}YEThU_p0K!HH@6^^B-Vl@E(9OW@%B))@&Np9KBm}XiV3hMfE7v zjw~oK-A3Osc6!?Egln`V8QcdJWuM0&z$vJ>7$#^BXlWa!h(WD`rBu69|E4O#PU6irG#72$%<$UL8oG7ImQ5 zU<2bQs?}QtBv@moJ#Jc8XtN7?8y0033?NRy7qyhMLVJc>-jLI!UC0(!t8h(?!u$X; zpP?PgFb$0p|Jcmx=we_U$d46mU58lgL0i3UVQ-oM!m};R_EwnfCt;!r4)GyMn5o1R z!W*axR6c_&@j)5W9rRr|tz#FE3b^=bd|==~!viDA@M5SIP<9x52(O56M7)iEHIDEO z!bOC45hf6DSK<;v96&nt^rzCcxQ6|oAlyK>j(~T#x+KK~lvFIM2%d(fwBcTY=TBu@ z+``e@2)HHLReywdexblvi`(EWF4WD7CVd7axB_5y^b^`)@ z6pG$U)w3%VH)U7di^6MCpb@3%7pt2=XbJqU782?WfFz{-ad?b3(bH6Ncg7sr@BI%x Ca<=*a literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/jisfreq.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/jisfreq.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e50c955058c64d99d8d67e3921e0fd119c85511e GIT binary patch literal 22155 zcmYk^Wt3G{5{BW%-QC^Yo!|)x4ha(6FYX>(g2sgy4spRDBzS-b?(T4KcbW6_ugO|@ zr}nO@ufDy{xtHl)%=Ar?BwCiEJ4Df?aQ5KF1-Ocf$3Whnmx`Q-#oh1nq7 ziVBw5+ohyMtPt;njv_bo?zY!6W>_*tNjEcA!#C#kG;Lv699*VyUP;n8AyPtSo-@H? zbx$A<(Y)ps*HHorLlM2dDP9W6)un**45fk06^0P_QO91<$Iz6@Q|J=?NfC8b^0n9OYjZm%2vJD! z5!hg_gOZ_2_K7~Tw^6n(fg3Pd;u!ql-HqwBc!iB>P#tPOO{fJi)WuR)#0MfVl^9$_ zy!Qtr*7!h-ao*ZG+NvuGXQ7lt28gJuqokNbOM5HXJ!cumQ@v=f2j#Qo#>oUN2w1X)N?}%6BX2kxljqx!q-qPM5LTor96|p?d64ZkO9KS5#?Jc zDrguY@kK^4(xGdeRAK9i^*tG#-jQGI9t4WSVK}jRXZm*ZU;iB{I z?>kW<7h5Zgf~)X>y;b3Z3krz3JNZ7#I5HQ?%q zJ7#f)AB6QBvCSRm;vW77m7pyk}Y;Q5+@RMT0!3vPw!p zZfFiQLquLU%oKLtBG3bRLNDkIeV{M&gZ?l82Erg%8-AoBgGEDNC=7$) zFak!xD0u8JH^Wm#;`4Vf{E~?D3P0$PcVu6>gVCa-_Qr@3sGH+U>vx03+KZ#@5G0g6 zt@yBITo|V$o+v&flO1nw0!)NSFd3%6yD$}|!E~4bGhr6I2k*lN@F9EzAHyf`DSQT> z!)*8hzJ#yfYxoA{z+9LI^I-ujghj9zmcY009efWzz>n|~{0zUqukafzg=MfDR=`SF z1*>5VtcBlU9sB`*!g|;M8(|Y{hApra{(^0=9d^Lq@DKb8|G`e!1-oGn?1g=>9}d7l zI0T2`2polDa2!s+NjL?k;S8LGb8sFmz(u$Ommz>Fa22k>b+`dH;TGJ6J8&27!F_lD z58)9!h9~e8p22f?0WTpc`~xWx17bofhz)U|XZS@C8SgvioG*Z?(O&?f3y|1nf3EjF ziKvH{|Cq0bMZO+B^$}_n{y`IY8(Kpfh)X$m8b}N2AU$M&jF1U3Ll(#i*&sXQfSiyEazh@-3;7^F6o7(I2ns_HC*d{_VrVG%5bCGahL2j9aF@FV;LKf^EZ zEBppaVHqrk6|fRk!D?6oYvFfT2YCNsI0I+l9Gr&>a1k!SWeDI3T!m|J9d5u) zxCOW24%~%%a33DPLwE#_;R!s2XYd?ez)Oe<|4Vfw2E>F|5F6q^T!;tpApsGr6TWAOEp#yY;PS6>;Kv(Dn-5~-!peOW# z-p~j7LOn0AU1egeuU@}aBcVQ|_gXu5> zX2L9Z58j6l;6wNbK88==Q}_%%huQE2d+QtbmoU3Rc4!SPQ?yI`{+rg!QliHo_*@3|n9;`~}-!JM4hJ z;UD-H{)3&c3wFaE*bDn$KOBIAa0m{=5jYCR;5eLslW+=7!x=aW=ioeCfQxVmE<*rU z;3`~$>u>{Z!Y#NBci=AEgZuCR9>ODd3{T)GJcH-(0$xH?_#1;r42TJ_AU4E-xDXHG zLjp($i6Ai~fuxWOl0yne38^48q=B@M4$?yg$OxGrGh~6RkPWg!4#)|)AUEWJypRv_ zLjfoVg`hALfuc|hibDw~38kPkl!3BP4$4CXs0fvyGE{-8@CsCe>QDn}LM^Bbb>LNa z4eG+{@CMX_`p^IxLL+DlO`s_>gE!$VXbvr)CA5OKp*6IDw$KjRLkH*xouD&xfv(UE zxt!r|=nk4zuA4_!7Q?ui+b*19M>>%!dWA5Ej8= zSOVX|ckn&@06)S{@H6}Zzrt^@6qdnqSOF_x6|9CeuoixYb?^uL3F~14Y=lj)8MeSy z_zSkdcGv-b!$0sZ{0BQ>7wm>Tuow2hemDRJ;Sd~#BXAUs!ErbNC*c&FhBI&$p81(G zv0vaM@l)l6@ONpEeSS@K#1FFbMM)(-mniAy)pOd;!$>8~qKo}brh}hwe}T4sXuY81 zjNj9Y^5gJ4KlN4-#njPTq9?s?qJKn|eZocpQg4|yTw;!&lcyS#hH`()OjK?`RQQX* z$e$9whKXQ?pQ5LdU#(+{k{sc0AS1Iy8};tBOr-5DtPW=c3$@jhXlQOJi3~dab2%4D zJ%g{644|@9Vi~)AbZjxQkdnBf9rk7rSkGENQGbaGPFX433#uD=(egQ|Gn8wJirbqe z>f?sixuMSpTvF1Ea!u$fo5aYMvI*T)F4i(|KUT?TBV&ph>AmQAJkfDdNha>^$sW=c zPjpx`hg5FS2+>i`W4|b`j_pK0%?yGSi!3`H6E}HnJ3f<3=X)cIH;sTyF_p%Ft`X%T@AI z2&B||i^^G7_lx4&mMzR(O<;k&-}Uw)9~iWe%4-Ck5O|kfJkdnG`?aMJEmxPsa-wJ6 z+}>e&qecCUOdjpj-Z%DASf&tFBVW(lOWYqd<8z4zp4Pua2a96pO~mf&qPpsu!&N1# zb+lvc3gdGnDpP(}@hypzMz-O!7QIc{j%yodFEey!xvVZ)=A!w@L3_QBjG3mT!~4%~c`Gv_@`lFX=>Ih-&EQB>FM>l#0*T zo1tSB`HZF&;2^ozr?A8!%fS-qNhKAfm8d`^FTD&BX$kCNWKe6l#OUQrV(4$D@cj)1k@#+05$|hO>m7T4;y`5}C zER#tj)tkuh&fJ&r;Au?M#+# zwP7_^uZ!x+UYETl`by#OM7hn8a>TEdCNoloXwiSY$>_(GI=y^%k_8 zsN+vjNAF7=Gal<5qVBdgqO)it2eT#4Kn{CNv~6_CJ(i92&N4De$%pnD!A&JGIY{9! zvz4S2eJDEZy!jbAuI@W%=fX1iaJCn{PvrxNu5RrkZDkqSNwm6UQYt5ubkK2Bbcg%F zN}6$+%-xr?ydk^7UM9V5#@2zXR>EFxIn%S z`5cPt$o{CVm1SF^XVt|N?bp^>M{+o2@1lDd<~EkuTcV^5_-huC8dRd(b0<%0GaFYV zeo^unfkuY+hfGuw>3EHUmX?zl+G&~JvF^H|jiOyTx)FFs#~WrW(D9Gr%;ZZObWgUq z;z{-v+Pf~Q3EfB)q0*VZi;mD!M+$nSqvbt?j}-UkezavF%jKrsV`!bW?wnS$Hx%UYx=QeMK}OdVZ}yu`sJm)KuosFF*vi}il4?Xv8BgN`bh!&+zAJ+iGVpNk3_ zS)bn9_U^!UTn&U)vXf-jiu~QlNLAC`CzVfB#Idfrq08!$dGK*8w<{^&9BI{EW#a)u z_jC**Uq_;x8`>1T$51YNJ7qsNZIZpckWQi{(Qy(BEW29vRNT?X5|$quw1wy_ZDlF< zRoqEQY`y*A25S#x=MdNq{>n^buxPpKtO#d`-h&3Rn@GJ0Rp2I-A@uGj?iKb14Sd_) zH2iP!&(*adI$d2Q%e$ieoNgle7x|gcOSYbDX3Fnqo2%}CL<}YSDAx$H!4!kaJ8ENz zEfTpDx3_EtTP;_R8pca%dIL!9vX@ylw!IId4G}mEw`5N^Q7PyHnSE955@l3;OI;Rw zvqdALj|!ieTaEHHH-6EybV~LbR3Wq*d>7Vq@t1C*hsYEg-Z(`Yy zp?jnnq?)JYgt-ixQ;IsS8_Sa4H{wZk*FW6kXYnw+0D2v`iV+Kp7Yxq-uEy_#$cazh0ukFi%aYzy8{ zGMU~5ZRN>7pw~!UR!_CN>?86wO!N2XB8hp~1f>+`X8el8aRLSPRtfilj^w*&OC!70 zDN7svJ<+T7{$j1D!<3^pj#O)R`huay=BAbCL3s(OEQ+5DTx>E{(wQX8E-=VsNzJj z^NH3L^>COQ?x36A=1LyQPS){;-qohn@qP50QvZDz+KLMUikX_$e$2+QM1IKe~fb^bS(VNj{|~_@&}YN_Ml6G%N`^SoU;| zlsYPT9z#V_%vcLQn0t}H2kgFdIg@n^=PEv_rM#R|e9Fj160x-{w*1zyhN@c-mIULB zyhLx1X}8#2DjQIVYk67rhH0%dS}%cr6?L@!(ZrR{*ZGr}3c$CTqJS#B?#x_Z!^ zN;dF!pCczkTO4692R%5Qr7oF7E*DnQ5e`}|q?g4$*pW0E$Kzi}I36Z%_igm35Sp zy(K%4e086mZ!M=w)K|B|QGc}@2xrVFNTo1=Joc7~wmHXKDm}GbabbB$bqx;_TyW@y z9Q0r}r?x++P{Q^u|!`b9l0;8B&|Cg zXT}S4u^eWQx^1$*+Z$uXaV0U`-*v}-i@*yuZdgXN#gbj4_lf0I0z(}uof+w&pW&|& zJrU{!Z@G;hEF;lRP+Kd}Oe4#OQ7}NsP`%^T!94I72%<Vi$^|N0E#v99N98`euzZD$n?&z%a55AK z7C6F)=!CoKEjx-pLdvndaH$OH2F1y5fP+f1E4fd(AVV`*dth2Zd+pT?m549#k!2Ed zbA@}sUUNICDFAM8}k(SLYr)aCdRUC7Fv#d{LJVOJ*xxrz@vCOC>krDD+CSx*> zjt?x~mgu0ZBgFB@*4nE@`BV52ve_$Qcxz4{I$LZ{FrG*DDKC9xYm@Ko`?-J@?vg|f zbw5hPCEv-Q4HAV(l^`EaqK)Mb+>hseB7ap4sv8yuzuH?u>Xf=>67jX2qkPNz_mG$M zO5U?K+y^2f^t2oy8Yb(1FBNG(AOV3b_9nZMce#opUq<#3y;JPwRC0*Z*Ys9~&JvGx z#B=hWbbKw*oxoj~<_HPR=%-|?;-yL|Dy~Pbgymm`FOmJnhbcL`tDvg3t%mm(y`rO) zWqrkU$^XGdaw;`MZXp4f%mvo}S_q3B}6i<3ViF$?bN9Zs*5sH^NR z2367V1#1(u^`a6>-FUY;JDT;;36KT4P#$(SlGac&Oy8Wlx8WqTJ7u+0IZ~%Ka^qcna;Q zjB*=)aynLajNXKbM{)3;y&aaR*jOw3zP*Ixzt#3Lm2(mwNW5y9TJa;M$3CKGaCL74w)8<-dqBo zlA6l>94IHzQClwp2|~T#8}j!Q-(_+nfqSB&lw<3dWaM_o8ezt2(Z4QdF44I2p zKBQM%NC6+iJ1$~D^oe9U(EHHxfoYk-y`V8yA6j-+TuJsV#YZ_P##&oZ zE!GY@(JPM7+uZ+H+X)r))-`gv-s3t>a+TRKol_ps_P6CoHr{cB>^h!8GKU$f?ZdDx zn9NmP9fyn@t@ymQ7D`@5w{h@};k)1<;}s+(b9z}@MSJsE%c-q3L+N=rLph;DyYS?} zKGVuuHYYHeURwfrppoK%1b#DesFE-2{b^8Y%ku8;nQT2Ory;o$6?NXrmS4ke%J&>5 zg=~YcH`r$QKG{a>E`p};kr`*mUxA9y#1ZmI6!&C0T4tg5JEzM{yKng)y)V^Wl^7vP zY2-sr<7&&`B4RjJDv38l+d>3?F?8D5=F=NM;0x$aC5yd_{GHa(C;HGt;~DuKlNl-h zY{oKmb77p~`w|zTA0xeLq%P^`7WM{_aBeWq@O6qy!?#9OG$XFI$(El<3=n;1?l+_w zTi&LZ+F{~IRFcR?{yBlFmS@#vo_T5Q|3P4?;#8%bxOw=*ZGr?)$NV793-k> zMjF!|>Bt0WEkBazYh+u~-Zf~N+bGG)FQQIx)-qe@AUJ0DQXPq4fUnJ&O2(P?!d?z4 zS)+$bWUwsZ6&T6dndlFv#DwUl5Y7!gBD#`;f%MX`wp_`5d!IV_dToCz9;P@(m<@)A zI#B6n?qkO~Z#l-hyVCz?)Qs`!{-d&(N`A|+9K_*%y^{X?)i$!My{sO}KTy)W3^unc8+9>_9H{tTqO%Ch=lNA7uj=igW02dOWv@A8bdK>v-&g#z zw)XJQ@h89(@`JUVWh0Z06=vKqa-@-sDW{_Mh*U#~nno^j=qGM%oZC1{`E}XH>f%Ko z269u`2ak+ALaLa=Ka?{Y*-kbKslNzhvDZUM6Nz7SloQ1_W4X3sOvY!Ulq;?keGYqN z9kqqJ(h`r2yl5{myICneH7J`zRnx{QP7T?hIFnm$rnx(~%1&j0 zk^vGa2rM_KfaM`=W!SiC`5GJl*vqctD^WI5qe%_W_S}pavM)q8warlX6+<6~hJvrW zgqiKN(Y8~`FO=iKN)EE>z3Q40Lp6`*57Cb367n7B?X)+<(|<^B7JSZ7F)BHntt|If zEDyjECFSf5)wa<~lYoO#vYlkh%MO#x#@`|(4@|3J?r|lD*r@MzUxrSD_nfGXI85|<|u4y?5>~RO9EuZVy zEjq{AOdZ47jX^Jsy~S`xU3NBdKm%U(QYr1c)kV8Roel32A_&5f!F_W_&>KTw8qeoU zJ5Tgqd$+W$q*vTIt}A)zSSdy8V3N9T)TJkX9Yzv8>>_q4nL=+N_fH(Ks~P#-K`+IZ zEnkK2&6pIH1Y22aD_ev6-e%OHGKz8>)7~V1lKdBXOF|P)kJ~$~BbSmJRK`>JQpqKI zbwYvQgc(W0!vt@N)<~>{r%aa6w#mp&_IeumoxKK3HWmF4M!}@8H@HdQjstFUtVagr z*49w*m%OAU)snyI{B2bCu4NQ!Cw07PFPYm-FYyeT6HP#%rsx%OS15@e$_JmCJDT1( zz3+?OBvnVpHlDw=H%AoHOB2YRqVlzp35M5%b)0^t?jMO*io0+SL-vTn%roPAB`GY6 zIZqS(Yu}GL>AE-+}^`l^M#Tc(UjFju&a8ZMiwkWm;WrJ!OAYoXwZ?l<0FnMNc6Cr&BE(>rKyEUx(=~ddr~Pq$atS+wO0W zy7%cV7cC&r(oqX*+ifqEy+rn=QmLhPJ%8JI8SRnnvo{&mnDK|UJO-^*mx_FL(RX1Y zSmjElF_}p5Cdb;ZH@g#+Gp(57grR)!v*LZBm*Ar4QzL8BdrRG2gAVAe4TB}7L0-fE zru@*1qz<#%)7nGeI{Ch`Q>i@XrIo$+>_v2}5>0d7)H;&d`;f{vjYuXo-n?euEcO+V~8_zk8Nj!pAxmv>5Tvf1-I@P7PirP$}V9{iuw0 zj-1|?OH?w{3w|@`J<12&OI&(WOsht!yWyXU zDv^2;W`iGf#CMJ~RNm8(z;dM->lEi@Jfp-|ALq-_cfimGRPtEPWb!v9V<4qh>J`%# zs{4`hF?t%YD^dfe{+A1$&U!^ zq*vYYOGs=vOWPo#bKTX~FgyCF5>*XK=)7+*R7%GRBR{sR63z{-m=VLWHI<88U4ncB zs!J5|Hg$83zuD+W{tXW1nRZm$OSq&si6d-LoKVSbC~fX?*@6=9Q|?XWC)hw`k&?dT z8}Jw9Q54skUvY$?`ej4YuU)OWO`A2TTjR}UbsIKl*Q9#*A4ii$=d0JKSG!%)x~*y- zO>15AwdzgUHEYevtG9sLO!t&ARmN*Q>*zF0Gq( z8W8C>XkhEGtM$Ohpe{xFb?DTyL$@viTlb6fE7opEmp+~Q4k*^Cd)V7$P_Z77fn5i5 i>0h+p@T2i7_wL(yaIY?Y9TVl3_))P7#f}v}=Klbng5!z+ literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/jpcntx.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/jpcntx.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1b49f93ffd11fbaab9b2df26e36ae2ecc2497e43 GIT binary patch literal 37662 zcmeI5OKhEITF1}L&T-4mhJwnJxt8C;;983qlP3bm7_X-nf&b;`xEbmaOwX`Q&X zImbcMkVv2wbq71POr_Zbi5(IwX2BA%hRsst)>3b%F@byVrY%pwb}2~p1B9z z+i%oA07|=s{VU~;p*goLt&H-C?B^4ouCDR+rEPMfxr`&!aHND(h2T*Qg^&{m3v&Zs z&g}Duj~o!@T5y5jLYpBt!A_G(FjWd+8Zv?rjOPsaaxNVZWEkt_9whHU z*Z1Szt9-)s0eO_1F{AXX;!(iEaN6Yb*h_QbLYsx=&P*SGnKLBC(>PoR^Z|l2z~PDm zX61NR4a2g4IM-f02~YqF#t<*G8D{X^gHI5p|2GFdkq^9HenR_FKS5jr&koO=Ubq1i zf&oI#n{sr{Dqb+Kz-Pgbs)G!<>~vVA&9xEwKv{KA2@D@#4Y`^7Cm$Vz_S%LP1!Y`) zK!6@}gY*YoWA|te^Acz#~uF*?JuGR-c_NUgcM?badj}%@XkVok)^HzAg z-UV`mULkXOFl(BtG5uxDLSV6gXVsD9EZD(tmK|hR5Dd;4@P#c4U=%=wp-PT6JqqS1 zu)B7Yz;rarN(a>V;SZ|QKaV;95AK=okx(U6O{gMHBQESJ1w=ZRoHz@3hHi?3Tu0bs zNL{aUo#tMV!#G1`Jm}>M(iABK57SiZCy0cl(1Q?jNK%|y%>{6&!yIj{-Hi`?jp_rJ z%A6ZTTZttU7)ee;n>g1YBnYQKPB0z?b3v&rLJ&mQNUIMBGWRG9@Ghvv0k*k1aYuWy z*b84+jx+2C5C)O6;BecZ3eyNNt~`XaQH366jr8Wia3C1s(RJjeebW;QcmGig+LYNGTc?-p|k{c39^uz zxqnoZYv@RF;ec|kKA>=vt`1KFP9vk9V8@p{*KRL33xqRs3=*uzVuK8-7z&WOXu*Nh zP>8A|ASWbvR8bW?+w|y#Ip@*=HU9LsIFXJI3j^Xjcg9@^Il+3cI1OEd^m^aS*^4xv z3<|+W9|~@Oash|+8qxt64?Y*@AeT_;P=>uM-Pldq)3^#_V1bU9wD^=AM1{ngO zH{^om04eEnTJV$>3L)gIVa9}!B^ET(rU^I-4r)5m0X6>A3)h(*$>0GJMv()D2~|P{ z3DI*K#W@3;#VvZN3d(t{~& zGQBWbb!f-|#!$dWuMGImBE%dW%_63MTNj)V>D?5m92AzN7QFy=1_eV8!;yGGN+E-w zQeQ)G_<$gz2aw%*2*EgyHci+qsnn_mxREsdUC^ppX67ikTZFXXsgxPu+z*Ch$k9ef zo5Sr@hMFBojyCzI+UEX&bB1jVbA3S4mPR319!JqewPBq8{T{(q$(4Eoy}hckSADdx z*g#s^S|L!md9Y}x5;~mFBXz0d3>7Ymo;b8%U={-3{e$WQ5=kRHdO@qB@RSLQRJPdx zscnQ1DAVEMLXMDgkQo;EG*H`W$)dKWD8tP&r>978hM&rV4^=WNQcqHHF2=S131Jpl9}wNt z^?Xw}6mC}MJUooj>43l-^yH|PWCkiAGCS9m*x@da0|Egf$$2ccfeV6YQy*YMtFquZ zQc^ss497r#svrok9T{@e0XY=?HkNb=4lAKo0;}fKMKu%*nISqLW*Aa+kTVo+jEx92e?E$G%y8l$k7%$ zz+tEw>d68`dLWFH0Eo+$ls0?uz$vH{!c0L@a#A@`Fr;<>Q41czg*c;GOnpGo1`iF6 zY8t11I3(0C05C>1KwOR;i&7Sb3-T94(z?>iunj$$%7bj=*4YC1Gb(YTV} z5xVCNl8RgiW!6JIpAmm)99uPVdjE7MWo)AKfU^~dMSaPL7%w;cS#tYyO z(m~D{VF{%Uz!-(AARK9iqyr-Bn!JAIV1$QUbG!%sv`S8`C67VkpaO?6bOr^tf?jbH z>~2}5H*B|j;216yo*jUJXe0nksDg&Heu5kT(jGh;!O30n;Kqci zyVZ=J{?k2hEGKjjVvu2*`h?)24;*~Tut096alI~DFgXU9!;_w>!$Vb425BU{zqdXh zvcO>sp4I!ir~Av$AUF^x1e`1u@SxJDMLw4Z3t?$fWG+c_Ma~U5hpSl`(uc(aeRjyA zpunPn22vl8w3KKhM-Lldj)L=4i070*N+I+*4SIXMQFb({5B%Y}R8<&Pr-VsIl4ofy`>IT0>l;LNno2)B}l2m-v2WXY3}YZRAoqgK)}O(NTJ7+U~JP1 z5JMEg=SV&E9S61lR?t zR8IoIcnzdJAhO3bbe9;9L16FEU~$27O(hRf3rElR?5b+^dU;gGots(e1Cj@Bmgp2c zr;rO^+e%)k1Fe$MhVdz&O^74OVZ77MfLSUDEC43dD^=;GAeascF4ZcYZGaJ}AxCd$ zGt7{~2V{=}=)tIlYDpmwan1v*F6s3`FJO!;5&)J|Pl!2ZxDLFT#<>g<2bII|1nb#B z&a=TIrz$<#2s5reAjwptXBDqhDCI(%y?~F~Aq%R*N+cEc6ZK{;ivq_o6B2}HaD6~D zQrB}U%;9N(5W0DxO=Lz!`Y<;?Zjk z2nsOHmDvue8CM^WB}bV9?obD?c5vhzrAO731e`NM2RN!iU{RmL$stlmXtU}%@Manb z0>mWk^RSwOYbKu?ut$p^}HmfEN~NP63X2iVh}c9@&#g*^!LA(Vvz>VpxYhoJHSxdD1M;!%LYg$XvNR&#+WgyQ6r#U zfRog=qrFexaWtP*mqjip71yjNJwfRDv~A)e;w990aYdW4up()7RSWC1W+ zW-oI~IS0*@#@eX5Jz+RicS|bwMS@VZH+U{uPY5|fyqv3FaiQcQN?y|)|B-iCr$gyD z+BgW7(92Vkpe4!fcg$LJk%Rgf2l+71*J^(59+pSw|g^lEO;D z0B9MdRy=T4)oM;EW>BySX;?%l2aCf)hchey#<-WR5|1`K+YISNsdGb{^g%%gX@d&S z8F}vE15%d*RESp^KtZEwy;3i^po5%=dV9rLWg2|W4PMwSz;>{FAQ+{= z;)-OU!(9vd6y%IXZhb)XfP@Fn+{{t%P{q?QN=bO+6c?%vhc8s^r68D413e)f2r>t= z((uH&O4=weh%ofJRJ@?dwvy7&D;%5Dnw6R&Cu!Z z7Sby-uuyO-N{<2%wdgU;;WD!rNZk~1E)@tNRl!g>NDnX}o*hux7CdK!k$G1&qa@p(xYCIr47=dU47%Fgj zgy!ggzydkKP$e`+n{oqzU_D7~!!uM%sV&SP486ALIhULp#&(90f+^6EXVeEIt##fg z7W5t9T&neJifEb1xRg9Z#i078MVhT_pm=M$GAE|``;mjNb z=>xMN9>&eHswxHH3C0UK2<$)$IKhqtmm!A_DA0zXVG3Y!7&lp5@X!@+)TMvjbp=}rs z{BMVVP{6QaLpzji&Kb}L2viir0Wq}A9Q3XOh#>?pV`x(|9$-a=8CE65gUU8NsI)vr5)x))aQy@YBs~ZTqufD85eBW~O2(B~C8sV6!E@~vT$oz$Fmzzdg+Wwd z5iF@y+L%jD1%}KBdnG~W1?OBmr4g$6MDdhh42|ZP9Ik0l%>af1c8N|VXBe&nZB${# zQ@Ydeq{oBGHX-7m!ccXo?yABC>p=ws1B<;>0V`ZVVbOy1=xvzm$H?(NqNlI`fKg;&& z1r~QY6x;y3KtLD@e(b0b^XOUZ_$iRRcko;fAt02-Kn{bAUikFGf{*q2N*3E4^*xJPbUj%t=5&W={mq zjttpI-}imx<`>iV_|0U7t<`qbTJ2Qr)o#^U?N!~?xvIB1U(KzasOGB^AGKEdRlizD zKNqT#)v5IJWVKkGPCrjoXR3$N&&BF&^>F%mx_V@#we;xZ@z>XP*SCk`;f0;;z2Ud^ zUfN#Y`e3{{-p~8H|KI6rze?Wbe zjrZ0^gYBE|PtFdu*2jC(cxO}%N0YfhwX;2(%#G3__U^VPz437C+TGUZXOf)n-(3C8 zwdJ&|jjf%V)!J9SK6qpEozeQ}gSElcot>@m+VagC!?ka2?!32tYkgF$T~6G?(KAc0ZW(2ZPP+&Aq|kkMqVXCNtlz|5|L{dS=F^KUcT?kWFs0$?bR3&+F~SrrVrz z=~5({u0^tQd6SoV%hOM{lS#rWOY@`C>F4C3<+m>nuDmk1@Y2g>8^Bcw^P)u+K;#XtaHBgNqenxr*~&A<>tQ8x`*tIp3NOk zTuInJ(!|VBb?nZBPu}WUPu`5~0{N9P& zbG~)EcfK{(I^W72-PQ{!PN;j@#)}!v_RcL&|3$C7AN(Qt>QaBYeR(%03-1p12Heu= z#$_jOkZ#hw2QeMiW0|A>&IfzL!FX>p zSxEPPkfZUWy*Zhi-u^yM#@28Sfkr>8bOlH2_YtJwA+n;Oq(_bgk_amJ% z?ZtE{d+n!^J^Q^|Pt7{SOf>sK=F6S-EPuCe^j2DD92@!qu8Q z^zP2yV7R?=^WFCb)%xE0UuWg{)sh~UFV9jIdJc)q7mthfi^);s=;3>QdXb)Q<*ReO z_2l#dbkj4_nLaa1z3CdxU4Cu(wae*=dHJQQFU3P!c=^im)xqy9U-`Y#12Z|3FTlpm z_O;DwxVnZ62e7WUOJQCYTN7Y4+n$v+8(^WQ{CLk{^DTphd0-^ zrj^kXdD<^zlds+AbJ_fSHjihMUm&9|Wb<>`d?}l(<$ykv^0w)x!e06wXU=}Bm#*sc zuYRZB?=SYB>~|MWj52B?ec$)hy%&wYlAQWe^W)aFc9q@{AN5ze!}KnwdLOkuY^P7q zxoSRrBF=x@>a|u+q|H1rd35FV*H*$OV)1t6LFn6S?WH&Hhn;VC_<)7);>PA@@jv`3Fry&LWE&u+KVZwhlw_UURq)qZWe z({62_t4^f%f2Zo-=#0NwEi{Cur+0a$cd~u9%kAGt`TM@|o9)H)J?&-e`l%JdZ?_~46oa5TGN57T*7qTh5-2Wxz$4@0Qy$tyx^z(=P{a4}h zrQLk4xeLqbBQRWsnJ?>?(yV{ZL-VUCpY$kamY3#6Po|%f`JH#J4>$IBTTkD8xqLu* e^V*;EUzmQh{B}Db#`*Q$d;09}p1ttc)BgkVsWb`z literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/langbulgarianmodel.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/langbulgarianmodel.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7798b8bb992196dcacdd00c9dd50ea574140b26f GIT binary patch literal 47943 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 literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..034d143cf859f59b5582a15e825cbcd4fd4b6744 GIT binary patch literal 44582 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 X=|{cr`NxsTT7F51zYnF8GB*AXilSqt literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/langhungarianmodel.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/langhungarianmodel.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8fb56e5892895c01c7e57ec7091a7d5999fa0c23 GIT binary patch literal 47903 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 h?^Pt8LnNLmolt};p literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/langthaimodel.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/langthaimodel.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d5dbbb91cba9bc96b9701c9a27322ef1f362d5d1 GIT binary patch literal 44758 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 JY4uM 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 Xei@g1{w2S?*I!cN_n~}oxA*=BE~2gR literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/latin1prober.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/latin1prober.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..48094eacb84bf2b41a7c6dd03ed9c0ef8cafbc32 GIT binary patch literal 4449 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 literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b83025b24b64c687ccc4c795f6b8b793a03960ad GIT binary patch literal 1153 zcmZ8g&2G~`5Z<+&Kig?(C>0kF*C5eCDN>6NLM>47)2JdvNS39QV{cNo>)Px(K&uKN zwNg*K0~~n=9)M@qE8@T#AWqC|LK;|WM&HctW@o-{k~f-tdDYmrF5B zN5adctQV^Rj>xFM#o|!TKuy=d)B?B`bu5QYf7M^Udvy6fRTlp;(xx2{4G21jGR~NG z8O!oyC=mOMy>lv}2yp&2i%~7Xs*ZV*I_(d7IPT*^D5N>GFUJ{FReNy(LqE=- t#Ma9|x4Bfl9cNH`Q|?q}rbp~d*YAy}xsQKYg?ayqPyhYq?LUHgBRK#7 literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcssm.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcssm.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..72cd1102797b7477b3d2830e9e6f111f4be48a14 GIT binary patch literal 18780 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 aehm*@0JF}zgG;z%IQWt2SPph@#rzLijKgaH literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/sjisprober.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/sjisprober.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c52ca7c29e18de98666db9d79478beb1637731f9 GIT binary patch literal 2493 zcmZ`5+inv_bY}MAwPQObAvao8K`NE3wuDMNR28a#BtQ^xP;4G*8BI5yiL=Ri*UYXf zVi^@FsrU+{}4biua@f%-nh` zf~ZqZ{ZwxI?SmkaaJpQ7x>er@l2iqI{WOT92az8hCqV+ZdBm;9Q7T`j6UQYy=Jjp9 zy|c0Ttjcr|d5lTx;)u9m)CQ@hK5Mi~o&z9BlM2#g@5nwCRIpR8X&KlOHo&%Ygd^Nj zazdLfz(#F=b0RMar=;nL8Bv5a|Bl$CSpYMXbOD9SbZ(~NKV)p zJ13N+R%)NXo;#^~LSW6Mo>}ula#p|_g4D?eTC2`zC+YX3Qh6YvJD19vJT_RG;5zyE^UP6T0gS7xroE?r&yT?InPx`OX@=Sh{ixFiUt#bXt~Q&p{TSay ziN+rWSq_F#_dY0YY)?<%w?SSWzhR(0JF|v#$X3WXePazF5e}UrroI7;dzKTB6o(#+ z{E(g7kSK-28AuPPL$BVNyCt~$1DuwpPG{ltcSE~!PTtrpvkWZ>mIIi zXY*!f5A9`0u|E)NpEHWM>lrTFzj8;nK~iBY!L4Nikdr~5yfe4V4Y+%S1u9gyBMF$1 zU;$)b1lisj`b*~op|j<4lwjq^R`18U!F~a}m8%VI-bz;CFH4QpgCJdnbdJ@kpRVpf z;RW0U+FxOuU7$BEusB>?!dJZk2@Z~w+6rZ)N^q_V5hOHEur4c%NbPLy?(XbrH;g+S zsk9^HUcaL-;?xRG=uqv}b{c$pQ@hzq?QS*dxc46Iyr^yPt%i2$jR(68J>P*iZugav z5v&l`z*rYJl$30nMZCQ)rBG$V-iV^}8=H;I^~P51v7YV3DVI^)?;LR9r@k&5nsKxr z2pP4do~u9E*=?-9Xz<39-A&j$+o(Ef4yk!)5|B}88bDr+N+T+(J(Px{9j0SleG3nN zgpoXgsX{BJ*c7OJ=`q{DIAZ}S(?!bQe2y(MM%_z<5wb7Y+p<+;1t?GqUb$>AJCUHM z>r`T*e{h&I`3eAVHaVjZx)}bB;7!p^GF8eGo|XLbG8RVz~)G&Oyb!@94F zqZVLxA8U&Qeu0r-_dvZ0bg(iZ?X<0-0YTHjy2LrSk#}R!4-qbM{;KbX8OBs=QyjGi zaSHt^J)VdlG_XRxx-{x8Z5f8p#jYG->Z~cT*yz57k)S_4Ql!NkvkR12-~p?0(^TnN zwXA2md!x#iWro7g*K?W6O-yyOe>+UCgw}^`W}-D_-O@emwWIWP)*f9TnLr;kebtds mznhroH+hn^hbxHf#q5w)s`)b?ZNV3tP_s literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/universaldetector.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/universaldetector.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fb4de56d4e61e89ee4613650e5bbcdfa5d894381 GIT binary patch literal 5845 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 ZzfC78<{{i}(DR=+? literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/utf8prober.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/utf8prober.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d3da03ffb02f2e1237048deade7f98930d2310c9 GIT binary patch literal 2002 zcmZ`)Pj4GV6rb6DUOQ_yBqxU8I34K-Ab*@j_k~d95c65H}fLT=uTS6{K%)|G2t%v zjtKVzJ+z}Luk=XMKcVnklj{1)PAq$(cq&JmLN+ZOpf1Y@&R_7)Ap0NZFxM+E{=(+r6f$VFr!K^P<8Jx3F=ecro6>-6^qmX#E}nU#S-Auk!K6No_-7%{bSY3uy|I%s|RzEW@)Q$nH zp^Gzz?9OrP3t|yAw}-N&R)Y40JGgbL5HOwmwA(0UCW`k znL;{|=)HDZ-EOBVu@SY`?u2ZkrM>ci_MU`2ocoVD&)Tc(NvPdk_@Eo=#cjw;GLcf` z@C((Pirkb9^rc~{>S`-&t%Oh7k9EVG9pzgCF7ia^h2C1H8?HPHS-941!DM~4>Bt7! z_c!+o0k);42~@yo2OD4iRUXck5d0q8QOh8FXp|cDsdFwHv_Y*O0;>V5o;AI4p=j{t zrD8#hFnp6pC&q|?w?>& zoU+}Y_nTIUN4?W-v6Zz4UG}uwc?hc}P;Zi_gP|zP|Genshw#EW425lo!OUY&*7V&A z?q5c;86f*%k1(cdjAbJ}Nl_0N+ndB`xg$S@_YA+77S=wH4zOpjFR$XpH55%0=m79# z$%lzZQ{dFs$Qw2=M1ZvW0Stw`<%6q%6?m3gqm~VMu;&*IrL>zhT|e#7lIA30tz7|x ztW3$3HMmfw+LTUK{>2$8*Iu@nD3uvXFInofH|MZv|En_Wud&b#cENk|P!a)Ma{d8t CE61_` literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/version.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_vendor/chardet/__pycache__/version.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..dbe95661addefe1261b90280a683c58d166c4984 GIT binary patch literal 459 zcmYk3K}*9h6vtcFIjPK}=XZ1myB&5KB4g-5&U_+oMlyqfX>dH*%T#d_WIg z+^9ucQ>W)`-uzk0HRO_(83VTF+Gvm>tH4OmJTEdnuRt-QI9qYC0FyFUF{QZ_Aj&*u z3gjG;lqkxKKUXq`CvH+MKr>SoK~Vt_6m}2I6zDQ8NU|ggrUTy}kziAJHK`^M@AnbW{2V*J|jO$~J8!#){+LD{P^LYI*y}1ux z9d&49*tPFfG(sU;n=x48u=BkaRPds283dK8-+1jeNH&N1=;ANtOLzM%TOQBxIw$Tg!o!p< literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_vendor/chardet/big5freq.py b/Scripts/Lib/site-packages/pip/_vendor/chardet/big5freq.py new file mode 100644 index 0000000..38f3251 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/chardet/big5freq.py @@ -0,0 +1,386 @@ +######################## 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 ######################### + +# Big5 frequency table +# by Taiwan's Mandarin Promotion Council +# +# +# 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 + +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 +) + diff --git a/Scripts/Lib/site-packages/pip/_vendor/chardet/big5prober.py b/Scripts/Lib/site-packages/pip/_vendor/chardet/big5prober.py new file mode 100644 index 0000000..98f9970 --- /dev/null +++ b/Scripts/Lib/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 .mbcharsetprober import MultiByteCharSetProber +from .codingstatemachine import CodingStateMachine +from .chardistribution import Big5DistributionAnalysis +from .mbcssm import BIG5_SM_MODEL + + +class Big5Prober(MultiByteCharSetProber): + def __init__(self): + super(Big5Prober, self).__init__() + self.coding_sm = CodingStateMachine(BIG5_SM_MODEL) + self.distribution_analyzer = Big5DistributionAnalysis() + self.reset() + + @property + def charset_name(self): + return "Big5" + + @property + def language(self): + return "Chinese" diff --git a/Scripts/Lib/site-packages/pip/_vendor/chardet/chardistribution.py b/Scripts/Lib/site-packages/pip/_vendor/chardet/chardistribution.py new file mode 100644 index 0000000..c0395f4 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/chardet/chardistribution.py @@ -0,0 +1,233 @@ +######################## 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 .euctwfreq import (EUCTW_CHAR_TO_FREQ_ORDER, EUCTW_TABLE_SIZE, + EUCTW_TYPICAL_DISTRIBUTION_RATIO) +from .euckrfreq import (EUCKR_CHAR_TO_FREQ_ORDER, EUCKR_TABLE_SIZE, + EUCKR_TYPICAL_DISTRIBUTION_RATIO) +from .gb2312freq import (GB2312_CHAR_TO_FREQ_ORDER, GB2312_TABLE_SIZE, + GB2312_TYPICAL_DISTRIBUTION_RATIO) +from .big5freq import (BIG5_CHAR_TO_FREQ_ORDER, BIG5_TABLE_SIZE, + BIG5_TYPICAL_DISTRIBUTION_RATIO) +from .jisfreq import (JIS_CHAR_TO_FREQ_ORDER, JIS_TABLE_SIZE, + JIS_TYPICAL_DISTRIBUTION_RATIO) + + +class CharDistributionAnalysis(object): + ENOUGH_DATA_THRESHOLD = 1024 + SURE_YES = 0.99 + SURE_NO = 0.01 + MINIMUM_DATA_THRESHOLD = 3 + + def __init__(self): + # Mapping table to get frequency order from char order (get from + # GetOrder()) + self._char_to_freq_order = None + self._table_size = None # 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 = None + self._done = None + self._total_chars = None + self._freq_chars = None + self.reset() + + def reset(self): + """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, char_len): + """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): + """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): + # 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, byte_str): + # 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): + super(EUCTWDistributionAnalysis, self).__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): + # 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 + else: + return -1 + + +class EUCKRDistributionAnalysis(CharDistributionAnalysis): + def __init__(self): + super(EUCKRDistributionAnalysis, self).__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): + # 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 + else: + return -1 + + +class GB2312DistributionAnalysis(CharDistributionAnalysis): + def __init__(self): + super(GB2312DistributionAnalysis, self).__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): + # 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 + else: + return -1 + + +class Big5DistributionAnalysis(CharDistributionAnalysis): + def __init__(self): + super(Big5DistributionAnalysis, self).__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): + # 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 + else: + return 157 * (first_char - 0xA4) + second_char - 0x40 + else: + return -1 + + +class SJISDistributionAnalysis(CharDistributionAnalysis): + def __init__(self): + super(SJISDistributionAnalysis, self).__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): + # 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 (first_char >= 0x81) and (first_char <= 0x9F): + order = 188 * (first_char - 0x81) + elif (first_char >= 0xE0) and (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): + super(EUCJPDistributionAnalysis, self).__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): + # 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 + else: + return -1 diff --git a/Scripts/Lib/site-packages/pip/_vendor/chardet/charsetgroupprober.py b/Scripts/Lib/site-packages/pip/_vendor/chardet/charsetgroupprober.py new file mode 100644 index 0000000..5812cef --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/chardet/charsetgroupprober.py @@ -0,0 +1,107 @@ +######################## 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 .enums import ProbingState +from .charsetprober import CharSetProber + + +class CharSetGroupProber(CharSetProber): + def __init__(self, lang_filter=None): + super(CharSetGroupProber, self).__init__(lang_filter=lang_filter) + self._active_num = 0 + self.probers = [] + self._best_guess_prober = None + + def reset(self): + super(CharSetGroupProber, self).reset() + self._active_num = 0 + for prober in self.probers: + if prober: + prober.reset() + prober.active = True + self._active_num += 1 + self._best_guess_prober = None + + @property + def charset_name(self): + 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): + 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): + for prober in self.probers: + if not prober: + continue + 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 + elif 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): + state = self.state + if state == ProbingState.FOUND_IT: + return 0.99 + elif state == ProbingState.NOT_ME: + return 0.01 + best_conf = 0.0 + self._best_guess_prober = None + for prober in self.probers: + if not prober: + continue + 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/Scripts/Lib/site-packages/pip/_vendor/chardet/charsetprober.py b/Scripts/Lib/site-packages/pip/_vendor/chardet/charsetprober.py new file mode 100644 index 0000000..eac4e59 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/chardet/charsetprober.py @@ -0,0 +1,145 @@ +######################## 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 .enums import ProbingState + + +class CharSetProber(object): + + SHORTCUT_THRESHOLD = 0.95 + + def __init__(self, lang_filter=None): + self._state = None + self.lang_filter = lang_filter + self.logger = logging.getLogger(__name__) + + def reset(self): + self._state = ProbingState.DETECTING + + @property + def charset_name(self): + return None + + def feed(self, buf): + pass + + @property + def state(self): + return self._state + + def get_confidence(self): + return 0.0 + + @staticmethod + def filter_high_byte_only(buf): + buf = re.sub(b'([\x00-\x7F])+', b' ', buf) + return buf + + @staticmethod + def filter_international_words(buf): + """ + 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 = re.findall(b'[a-zA-Z]*[\x80-\xFF]+[a-zA-Z]*[^a-zA-Z\x80-\xFF]?', + 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 filter_with_english_letters(buf): + """ + Returns a copy of ``buf`` that retains only the sequences of English + alphabet and high byte characters that are not between <> characters. + Also retains English alphabet and high byte characters immediately + before occurrences of >. + + 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 + + for curr in range(len(buf)): + # Slice here to get bytes instead of an int with Python 3 + buf_char = buf[curr:curr + 1] + # Check if we're coming out of or entering an HTML tag + if buf_char == b'>': + in_tag = False + elif buf_char == b'<': + in_tag = True + + # If current character is not extended-ASCII and not alphabetic... + if buf_char < b'\x80' and not buf_char.isalpha(): + # ...and we're not in a tag + 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' ') + prev = curr + 1 + + # 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/Scripts/Lib/site-packages/pip/_vendor/chardet/cli/__init__.py b/Scripts/Lib/site-packages/pip/_vendor/chardet/cli/__init__.py new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/chardet/cli/__init__.py @@ -0,0 +1 @@ + diff --git a/Scripts/Lib/site-packages/pip/_vendor/chardet/cli/__pycache__/__init__.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_vendor/chardet/cli/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d52e500ffdd2bfbccb86315e859c7e1f23dc35dc GIT binary patch literal 216 zcmYjMu?oU46ilUq2>yesgVw=GM8sLUw39ptF?ra~v!9@B{n?SMevDOeZ~f z_qc=DR9!`#4uj6BRVkBB=m%}&^F;k f$f8fUk_n}U~xT3 literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_vendor/chardet/cli/__pycache__/chardetect.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_vendor/chardet/cli/__pycache__/chardetect.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6c2632aaac4efd511a7b78b64e4e3765847ddf00 GIT binary patch literal 2716 zcma)8-Hsc#6`p_1&T6$A*AD8m4R}#EQQ?(;5ErOg6m8=c4d5({cv~Q<(lI4ctJ$3& znWT0jS-RR@*6*-Fulf#sfIb6ngI@F%f(GtKjHFo`3%9 z-{bvV$N9=EwjUphU*nbM7?{&@n9ID}Exevr_&vV}dVyjNuMW?spztvtJA75-NvT_7?Ml&iy3$WJJnpV+3rPi0T}|*j1bLGRaTYyU|MFdpQm}IxS+W_ zYP)(jP0zWI*iTa|{imNl#OIwqmYE^b{IT_2C3I--8+zup^%LS7;r$q|%@XBYI!kZi zJa)b~So+Fc_?Pa|UwBvE!e6qHCQ3mpoPmoMdE{nd(}|!)y@i8 zweptkB4FNaNBoTWSIJ_%0xh`htW17{hPrZ}Iqk;$8|&@QxSEQRP`Cz`pCIlMi8C-$ z1kt#3KnF;bO&XAD1ZErQN>~YbCY7Pq0wla^lA}AJf)*stN-n$P7^3WysEV9$LZrXd8i=LdF-lS)=u8JA&Y2Dv z>P?5kypmi;HMcOK*Ae3;r?f9;Qs06*i~*P{UTl=n(WnvyRqarR)({;S{k1#Qfmw?K z2>OR3ZsYUyve)e&@h=swnzH`=kJ2aEKu|I3r^i*5%l^^yjQ4+=Rbx6wz4kw)xJi&> zj$)>Y_iLn(eVpn`r1{~54$tTbm;FgLxrbCo(TaQPTE92Uv&|g7?o4L7Rp-paI6kdL zMkPrwL`m$%ZsJB>;CioPFLDF-0FFl<;`kdT$~konguZf- z+U}{xd=@C@%4gxqWswTRO%;M{%X8!D3DS-B`S z?{pXCb_-?ZUo}^b_=VbIO~`1my;q*=s6Dm6z~1S>rFV%Ee9>Vol+6D8E1Noh0AM0s zNVlRe*lFTHs5qG-dVm{4LQExc+`uO4f(iiXn{@&9^DcR^E}iSccL8@KLoH4CFdJo@ ztpRy+*P*$qE*4W{*AI~J2-$X*Jb#Wn>KN&Ne$f5m`E!y@_BSiZEaDn-p=d%uZio%!V zDUFhE7gAgAS7okuWM0-0#OhDc<~sM}bFAksC3hA&bI%~}9tix(8 z?!EUNI~`yEexhnvzw=!T_3hMu)O4x2uyJe%aL3Ze5fOBiG&WL|mRBW2_Um2K` a-^UO*H(N1`Z+cB2Y2qh8jNeayr~d=UUn`9O literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_vendor/chardet/cli/chardetect.py b/Scripts/Lib/site-packages/pip/_vendor/chardet/cli/chardetect.py new file mode 100644 index 0000000..6d6f93a --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/chardet/cli/chardetect.py @@ -0,0 +1,84 @@ +""" +Script which takes one or more file paths and reports on their detected +encodings + +Example:: + + % chardetect somefile someotherfile + somefile: windows-1252 with confidence 0.5 + someotherfile: ascii with confidence 1.0 + +If no paths are provided, it takes its input from stdin. + +""" + +from __future__ import absolute_import, print_function, unicode_literals + +import argparse +import sys + +from pip._vendor.chardet import __version__ +from pip._vendor.chardet.compat import PY2 +from pip._vendor.chardet.universaldetector import UniversalDetector + + +def description_of(lines, name='stdin'): + """ + 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 + """ + u = UniversalDetector() + 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 PY2: + name = name.decode(sys.getfilesystemencoding(), 'ignore') + if result['encoding']: + return '{}: {} with confidence {}'.format(name, result['encoding'], + result['confidence']) + else: + return '{}: no result'.format(name) + + +def main(argv=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 if PY2 else sys.stdin.buffer]) + parser.add_argument('--version', action='version', + version='%(prog)s {}'.format(__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)) + + +if __name__ == '__main__': + main() diff --git a/Scripts/Lib/site-packages/pip/_vendor/chardet/codingstatemachine.py b/Scripts/Lib/site-packages/pip/_vendor/chardet/codingstatemachine.py new file mode 100644 index 0000000..68fba44 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/chardet/codingstatemachine.py @@ -0,0 +1,88 @@ +######################## 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 .enums import MachineState + + +class CodingStateMachine(object): + """ + 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): + self._model = sm + self._curr_byte_pos = 0 + self._curr_char_len = 0 + self._curr_state = None + self.logger = logging.getLogger(__name__) + self.reset() + + def reset(self): + self._curr_state = MachineState.START + + def next_state(self, c): + # 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): + return self._curr_char_len + + def get_coding_state_machine(self): + return self._model['name'] + + @property + def language(self): + return self._model['language'] diff --git a/Scripts/Lib/site-packages/pip/_vendor/chardet/compat.py b/Scripts/Lib/site-packages/pip/_vendor/chardet/compat.py new file mode 100644 index 0000000..8941572 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/chardet/compat.py @@ -0,0 +1,36 @@ +######################## BEGIN LICENSE BLOCK ######################## +# Contributor(s): +# Dan Blanchard +# Ian Cordasco +# +# 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 sys + + +if sys.version_info < (3, 0): + PY2 = True + PY3 = False + string_types = (str, unicode) + text_type = unicode + iteritems = dict.iteritems +else: + PY2 = False + PY3 = True + string_types = (bytes, str) + text_type = str + iteritems = dict.items diff --git a/Scripts/Lib/site-packages/pip/_vendor/chardet/cp949prober.py b/Scripts/Lib/site-packages/pip/_vendor/chardet/cp949prober.py new file mode 100644 index 0000000..efd793a --- /dev/null +++ b/Scripts/Lib/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): + super(CP949Prober, self).__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): + return "CP949" + + @property + def language(self): + return "Korean" diff --git a/Scripts/Lib/site-packages/pip/_vendor/chardet/enums.py b/Scripts/Lib/site-packages/pip/_vendor/chardet/enums.py new file mode 100644 index 0000000..0451207 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/chardet/enums.py @@ -0,0 +1,76 @@ +""" +All of the Enums that are used throughout the chardet package. + +:author: Dan Blanchard (dan.blanchard@gmail.com) +""" + + +class InputState(object): + """ + This enum represents the different states a universal detector can be in. + """ + PURE_ASCII = 0 + ESC_ASCII = 1 + HIGH_BYTE = 2 + + +class LanguageFilter(object): + """ + This enum represents the different language filters we can apply to a + ``UniversalDetector``. + """ + 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(object): + """ + This enum represents the different states a prober can be in. + """ + DETECTING = 0 + FOUND_IT = 1 + NOT_ME = 2 + + +class MachineState(object): + """ + This enum represents the different states a state machine can be in. + """ + START = 0 + ERROR = 1 + ITS_ME = 2 + + +class SequenceLikelihood(object): + """ + 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): + """:returns: The number of likelihood categories in the enum.""" + return 4 + + +class CharacterCategory(object): + """ + 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/Scripts/Lib/site-packages/pip/_vendor/chardet/escprober.py b/Scripts/Lib/site-packages/pip/_vendor/chardet/escprober.py new file mode 100644 index 0000000..c70493f --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/chardet/escprober.py @@ -0,0 +1,101 @@ +######################## 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 .charsetprober import CharSetProber +from .codingstatemachine import CodingStateMachine +from .enums import LanguageFilter, ProbingState, MachineState +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=None): + super(EscCharSetProber, self).__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 = None + self._detected_charset = None + self._detected_language = None + self._state = None + self.reset() + + def reset(self): + super(EscCharSetProber, self).reset() + for coding_sm in self.coding_sm: + if not coding_sm: + continue + 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): + return self._detected_charset + + @property + def language(self): + return self._detected_language + + def get_confidence(self): + if self._detected_charset: + return 0.99 + else: + return 0.00 + + def feed(self, byte_str): + for c in byte_str: + for coding_sm in self.coding_sm: + if not coding_sm or 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/Scripts/Lib/site-packages/pip/_vendor/chardet/escsm.py b/Scripts/Lib/site-packages/pip/_vendor/chardet/escsm.py new file mode 100644 index 0000000..0069523 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/chardet/escsm.py @@ -0,0 +1,246 @@ +######################## 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 .enums import MachineState + +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 +) + +HZ_CHAR_LEN_TABLE = (0, 0, 0, 0, 0, 0) + +HZ_SM_MODEL = {'class_table': HZ_CLS, + 'class_factor': 6, + 'state_table': HZ_ST, + 'char_len_table': HZ_CHAR_LEN_TABLE, + 'name': "HZ-GB-2312", + 'language': 'Chinese'} + +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 +) + +ISO2022CN_CHAR_LEN_TABLE = (0, 0, 0, 0, 0, 0, 0, 0, 0) + +ISO2022CN_SM_MODEL = {'class_table': ISO2022CN_CLS, + 'class_factor': 9, + 'state_table': ISO2022CN_ST, + 'char_len_table': ISO2022CN_CHAR_LEN_TABLE, + 'name': "ISO-2022-CN", + 'language': 'Chinese'} + +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 +) + +ISO2022JP_CHAR_LEN_TABLE = (0, 0, 0, 0, 0, 0, 0, 0, 0, 0) + +ISO2022JP_SM_MODEL = {'class_table': ISO2022JP_CLS, + 'class_factor': 10, + 'state_table': ISO2022JP_ST, + 'char_len_table': ISO2022JP_CHAR_LEN_TABLE, + 'name': "ISO-2022-JP", + 'language': 'Japanese'} + +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 +) + +ISO2022KR_CHAR_LEN_TABLE = (0, 0, 0, 0, 0, 0) + +ISO2022KR_SM_MODEL = {'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/Scripts/Lib/site-packages/pip/_vendor/chardet/eucjpprober.py b/Scripts/Lib/site-packages/pip/_vendor/chardet/eucjpprober.py new file mode 100644 index 0000000..20ce8f7 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/chardet/eucjpprober.py @@ -0,0 +1,92 @@ +######################## 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 .enums import ProbingState, MachineState +from .mbcharsetprober import MultiByteCharSetProber +from .codingstatemachine import CodingStateMachine +from .chardistribution import EUCJPDistributionAnalysis +from .jpcntx import EUCJPContextAnalysis +from .mbcssm import EUCJP_SM_MODEL + + +class EUCJPProber(MultiByteCharSetProber): + def __init__(self): + super(EUCJPProber, self).__init__() + self.coding_sm = CodingStateMachine(EUCJP_SM_MODEL) + self.distribution_analyzer = EUCJPDistributionAnalysis() + self.context_analyzer = EUCJPContextAnalysis() + self.reset() + + def reset(self): + super(EUCJPProber, self).reset() + self.context_analyzer.reset() + + @property + def charset_name(self): + return "EUC-JP" + + @property + def language(self): + return "Japanese" + + def feed(self, byte_str): + for i in range(len(byte_str)): + # PY3K: byte_str is a byte array, so byte_str[i] is an int, not a byte + coding_state = self.coding_sm.next_state(byte_str[i]) + 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 + elif coding_state == MachineState.ITS_ME: + self._state = ProbingState.FOUND_IT + break + elif coding_state == MachineState.START: + char_len = self.coding_sm.get_current_charlen() + if i == 0: + self._last_char[1] = byte_str[0] + 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): + context_conf = self.context_analyzer.get_confidence() + distrib_conf = self.distribution_analyzer.get_confidence() + return max(context_conf, distrib_conf) diff --git a/Scripts/Lib/site-packages/pip/_vendor/chardet/euckrfreq.py b/Scripts/Lib/site-packages/pip/_vendor/chardet/euckrfreq.py new file mode 100644 index 0000000..b68078c --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/chardet/euckrfreq.py @@ -0,0 +1,195 @@ +######################## 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 , +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 +) + diff --git a/Scripts/Lib/site-packages/pip/_vendor/chardet/euckrprober.py b/Scripts/Lib/site-packages/pip/_vendor/chardet/euckrprober.py new file mode 100644 index 0000000..345a060 --- /dev/null +++ b/Scripts/Lib/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 .mbcharsetprober import MultiByteCharSetProber +from .codingstatemachine import CodingStateMachine +from .chardistribution import EUCKRDistributionAnalysis +from .mbcssm import EUCKR_SM_MODEL + + +class EUCKRProber(MultiByteCharSetProber): + def __init__(self): + super(EUCKRProber, self).__init__() + self.coding_sm = CodingStateMachine(EUCKR_SM_MODEL) + self.distribution_analyzer = EUCKRDistributionAnalysis() + self.reset() + + @property + def charset_name(self): + return "EUC-KR" + + @property + def language(self): + return "Korean" diff --git a/Scripts/Lib/site-packages/pip/_vendor/chardet/euctwfreq.py b/Scripts/Lib/site-packages/pip/_vendor/chardet/euctwfreq.py new file mode 100644 index 0000000..ed7a995 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/chardet/euctwfreq.py @@ -0,0 +1,387 @@ +######################## 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 + +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 +) + diff --git a/Scripts/Lib/site-packages/pip/_vendor/chardet/euctwprober.py b/Scripts/Lib/site-packages/pip/_vendor/chardet/euctwprober.py new file mode 100644 index 0000000..35669cc --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/chardet/euctwprober.py @@ -0,0 +1,46 @@ +######################## 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 .mbcharsetprober import MultiByteCharSetProber +from .codingstatemachine import CodingStateMachine +from .chardistribution import EUCTWDistributionAnalysis +from .mbcssm import EUCTW_SM_MODEL + +class EUCTWProber(MultiByteCharSetProber): + def __init__(self): + super(EUCTWProber, self).__init__() + self.coding_sm = CodingStateMachine(EUCTW_SM_MODEL) + self.distribution_analyzer = EUCTWDistributionAnalysis() + self.reset() + + @property + def charset_name(self): + return "EUC-TW" + + @property + def language(self): + return "Taiwan" diff --git a/Scripts/Lib/site-packages/pip/_vendor/chardet/gb2312freq.py b/Scripts/Lib/site-packages/pip/_vendor/chardet/gb2312freq.py new file mode 100644 index 0000000..697837b --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/chardet/gb2312freq.py @@ -0,0 +1,283 @@ +######################## 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 + +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 +) + diff --git a/Scripts/Lib/site-packages/pip/_vendor/chardet/gb2312prober.py b/Scripts/Lib/site-packages/pip/_vendor/chardet/gb2312prober.py new file mode 100644 index 0000000..8446d2d --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/chardet/gb2312prober.py @@ -0,0 +1,46 @@ +######################## 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 .mbcharsetprober import MultiByteCharSetProber +from .codingstatemachine import CodingStateMachine +from .chardistribution import GB2312DistributionAnalysis +from .mbcssm import GB2312_SM_MODEL + +class GB2312Prober(MultiByteCharSetProber): + def __init__(self): + super(GB2312Prober, self).__init__() + self.coding_sm = CodingStateMachine(GB2312_SM_MODEL) + self.distribution_analyzer = GB2312DistributionAnalysis() + self.reset() + + @property + def charset_name(self): + return "GB2312" + + @property + def language(self): + return "Chinese" diff --git a/Scripts/Lib/site-packages/pip/_vendor/chardet/hebrewprober.py b/Scripts/Lib/site-packages/pip/_vendor/chardet/hebrewprober.py new file mode 100644 index 0000000..b0e1bf4 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/chardet/hebrewprober.py @@ -0,0 +1,292 @@ +######################## 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 .charsetprober import CharSetProber +from .enums import ProbingState + +# 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): + # 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): + super(HebrewProber, self).__init__() + self._final_char_logical_score = None + self._final_char_visual_score = None + self._prev = None + self._before_prev = None + self._logical_prober = None + self._visual_prober = None + self.reset() + + def reset(self): + 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._before_prev = ' ' + # These probers are owned by the group prober. + + def set_model_probers(self, logicalProber, visualProber): + self._logical_prober = logicalProber + self._visual_prober = visualProber + + def is_final(self, c): + return c in [self.FINAL_KAF, self.FINAL_MEM, self.FINAL_NUN, + self.FINAL_PE, self.FINAL_TSADI] + + def is_non_final(self, c): + # 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): + # 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 == ' ': + # We stand on a space - a word just ended + if self._before_prev != ' ': + # 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 == ' ') and + (self.is_final(self._prev)) and (cur != ' ')): + # 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): + # 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): + return 'Hebrew' + + @property + def state(self): + # 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/Scripts/Lib/site-packages/pip/_vendor/chardet/jisfreq.py b/Scripts/Lib/site-packages/pip/_vendor/chardet/jisfreq.py new file mode 100644 index 0000000..83fc082 --- /dev/null +++ b/Scripts/Lib/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 + +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 +) + + diff --git a/Scripts/Lib/site-packages/pip/_vendor/chardet/jpcntx.py b/Scripts/Lib/site-packages/pip/_vendor/chardet/jpcntx.py new file mode 100644 index 0000000..20044e4 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/chardet/jpcntx.py @@ -0,0 +1,233 @@ +######################## 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 ######################### + + +# This is hiragana 2-char sequence table, the number in each cell represents its frequency category +jp2CharContext = ( +(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), +) + +class JapaneseContextAnalysis(object): + NUM_OF_CATEGORY = 6 + DONT_KNOW = -1 + ENOUGH_REL_THRESHOLD = 100 + MAX_REL_THRESHOLD = 1000 + MINIMUM_DATA_THRESHOLD = 4 + + def __init__(self): + self._total_rel = None + self._rel_sample = None + self._need_to_skip_char_num = None + self._last_char_order = None + self._done = None + self.reset() + + def reset(self): + 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, num_bytes): + 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[jp2CharContext[self._last_char_order][order]] += 1 + self._last_char_order = order + + def got_enough_data(self): + return self._total_rel > self.ENOUGH_REL_THRESHOLD + + def get_confidence(self): + # 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 + else: + return self.DONT_KNOW + + def get_order(self, byte_str): + return -1, 1 + +class SJISContextAnalysis(JapaneseContextAnalysis): + def __init__(self): + super(SJISContextAnalysis, self).__init__() + self._charset_name = "SHIFT_JIS" + + @property + def charset_name(self): + return self._charset_name + + def get_order(self, byte_str): + 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): + 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/Scripts/Lib/site-packages/pip/_vendor/chardet/langbulgarianmodel.py b/Scripts/Lib/site-packages/pip/_vendor/chardet/langbulgarianmodel.py new file mode 100644 index 0000000..e963a50 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/chardet/langbulgarianmodel.py @@ -0,0 +1,4650 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + +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/Scripts/Lib/site-packages/pip/_vendor/chardet/langgreekmodel.py b/Scripts/Lib/site-packages/pip/_vendor/chardet/langgreekmodel.py new file mode 100644 index 0000000..d99528e --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/chardet/langgreekmodel.py @@ -0,0 +1,4398 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + +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/Scripts/Lib/site-packages/pip/_vendor/chardet/langhebrewmodel.py b/Scripts/Lib/site-packages/pip/_vendor/chardet/langhebrewmodel.py new file mode 100644 index 0000000..484c652 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/chardet/langhebrewmodel.py @@ -0,0 +1,4383 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + +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/Scripts/Lib/site-packages/pip/_vendor/chardet/langhungarianmodel.py b/Scripts/Lib/site-packages/pip/_vendor/chardet/langhungarianmodel.py new file mode 100644 index 0000000..bbc5cda --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/chardet/langhungarianmodel.py @@ -0,0 +1,4650 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + +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/Scripts/Lib/site-packages/pip/_vendor/chardet/langrussianmodel.py b/Scripts/Lib/site-packages/pip/_vendor/chardet/langrussianmodel.py new file mode 100644 index 0000000..5594452 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/chardet/langrussianmodel.py @@ -0,0 +1,5718 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + +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/Scripts/Lib/site-packages/pip/_vendor/chardet/langthaimodel.py b/Scripts/Lib/site-packages/pip/_vendor/chardet/langthaimodel.py new file mode 100644 index 0000000..9a37db5 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/chardet/langthaimodel.py @@ -0,0 +1,4383 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + +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/Scripts/Lib/site-packages/pip/_vendor/chardet/langturkishmodel.py b/Scripts/Lib/site-packages/pip/_vendor/chardet/langturkishmodel.py new file mode 100644 index 0000000..43f4230 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/chardet/langturkishmodel.py @@ -0,0 +1,4383 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + +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/Scripts/Lib/site-packages/pip/_vendor/chardet/latin1prober.py b/Scripts/Lib/site-packages/pip/_vendor/chardet/latin1prober.py new file mode 100644 index 0000000..7d1e8c2 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/chardet/latin1prober.py @@ -0,0 +1,145 @@ +######################## 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 .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 + +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 +) + + +class Latin1Prober(CharSetProber): + def __init__(self): + super(Latin1Prober, self).__init__() + self._last_char_class = None + self._freq_counter = None + self.reset() + + def reset(self): + self._last_char_class = OTH + self._freq_counter = [0] * FREQ_CAT_NUM + CharSetProber.reset(self) + + @property + def charset_name(self): + return "ISO-8859-1" + + @property + def language(self): + return "" + + def feed(self, byte_str): + byte_str = self.filter_with_english_letters(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): + if self.state == ProbingState.NOT_ME: + return 0.01 + + total = sum(self._freq_counter) + if total < 0.01: + confidence = 0.0 + else: + confidence = ((self._freq_counter[3] - self._freq_counter[1] * 20.0) + / total) + if confidence < 0.0: + confidence = 0.0 + # lower the confidence of latin1 so that other more accurate + # detector can take priority. + confidence = confidence * 0.73 + return confidence diff --git a/Scripts/Lib/site-packages/pip/_vendor/chardet/mbcharsetprober.py b/Scripts/Lib/site-packages/pip/_vendor/chardet/mbcharsetprober.py new file mode 100644 index 0000000..6256ecf --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/chardet/mbcharsetprober.py @@ -0,0 +1,91 @@ +######################## 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 .charsetprober import CharSetProber +from .enums import ProbingState, MachineState + + +class MultiByteCharSetProber(CharSetProber): + """ + MultiByteCharSetProber + """ + + def __init__(self, lang_filter=None): + super(MultiByteCharSetProber, self).__init__(lang_filter=lang_filter) + self.distribution_analyzer = None + self.coding_sm = None + self._last_char = [0, 0] + + def reset(self): + super(MultiByteCharSetProber, self).reset() + if self.coding_sm: + self.coding_sm.reset() + if self.distribution_analyzer: + self.distribution_analyzer.reset() + self._last_char = [0, 0] + + @property + def charset_name(self): + raise NotImplementedError + + @property + def language(self): + raise NotImplementedError + + def feed(self, byte_str): + for i in range(len(byte_str)): + coding_state = self.coding_sm.next_state(byte_str[i]) + 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 + elif coding_state == MachineState.ITS_ME: + self._state = ProbingState.FOUND_IT + break + elif coding_state == MachineState.START: + char_len = self.coding_sm.get_current_charlen() + if i == 0: + self._last_char[1] = byte_str[0] + 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): + return self.distribution_analyzer.get_confidence() diff --git a/Scripts/Lib/site-packages/pip/_vendor/chardet/mbcsgroupprober.py b/Scripts/Lib/site-packages/pip/_vendor/chardet/mbcsgroupprober.py new file mode 100644 index 0000000..530abe7 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/chardet/mbcsgroupprober.py @@ -0,0 +1,54 @@ +######################## 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 .charsetgroupprober import CharSetGroupProber +from .utf8prober import UTF8Prober +from .sjisprober import SJISProber +from .eucjpprober import EUCJPProber +from .gb2312prober import GB2312Prober +from .euckrprober import EUCKRProber +from .cp949prober import CP949Prober +from .big5prober import Big5Prober +from .euctwprober import EUCTWProber + + +class MBCSGroupProber(CharSetGroupProber): + def __init__(self, lang_filter=None): + super(MBCSGroupProber, self).__init__(lang_filter=lang_filter) + self.probers = [ + UTF8Prober(), + SJISProber(), + EUCJPProber(), + GB2312Prober(), + EUCKRProber(), + CP949Prober(), + Big5Prober(), + EUCTWProber() + ] + self.reset() diff --git a/Scripts/Lib/site-packages/pip/_vendor/chardet/mbcssm.py b/Scripts/Lib/site-packages/pip/_vendor/chardet/mbcssm.py new file mode 100644 index 0000000..8360d0f --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/chardet/mbcssm.py @@ -0,0 +1,572 @@ +######################## 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 .enums import MachineState + +# BIG5 + +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 +) + +BIG5_CHAR_LEN_TABLE = (0, 1, 1, 2, 0) + +BIG5_SM_MODEL = {'class_table': BIG5_CLS, + 'class_factor': 5, + 'state_table': BIG5_ST, + 'char_len_table': BIG5_CHAR_LEN_TABLE, + 'name': 'Big5'} + +# CP949 + +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 +) + +CP949_CHAR_LEN_TABLE = (0, 1, 2, 0, 1, 1, 2, 2, 0, 2) + +CP949_SM_MODEL = {'class_table': CP949_CLS, + 'class_factor': 10, + 'state_table': CP949_ST, + 'char_len_table': CP949_CHAR_LEN_TABLE, + 'name': 'CP949'} + +# EUC-JP + +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 +) + +EUCJP_CHAR_LEN_TABLE = (2, 2, 2, 3, 1, 0) + +EUCJP_SM_MODEL = {'class_table': EUCJP_CLS, + 'class_factor': 6, + 'state_table': EUCJP_ST, + 'char_len_table': EUCJP_CHAR_LEN_TABLE, + 'name': 'EUC-JP'} + +# EUC-KR + +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 +) + +EUCKR_CHAR_LEN_TABLE = (0, 1, 2, 0) + +EUCKR_SM_MODEL = {'class_table': EUCKR_CLS, + 'class_factor': 4, + 'state_table': EUCKR_ST, + 'char_len_table': EUCKR_CHAR_LEN_TABLE, + 'name': 'EUC-KR'} + +# EUC-TW + +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 +) + +EUCTW_CHAR_LEN_TABLE = (0, 0, 1, 2, 2, 2, 3) + +EUCTW_SM_MODEL = {'class_table': EUCTW_CLS, + 'class_factor': 7, + 'state_table': EUCTW_ST, + 'char_len_table': EUCTW_CHAR_LEN_TABLE, + 'name': 'x-euc-tw'} + +# GB2312 + +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 +) + +# 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 = {'class_table': GB2312_CLS, + 'class_factor': 7, + 'state_table': GB2312_ST, + 'char_len_table': GB2312_CHAR_LEN_TABLE, + 'name': 'GB2312'} + +# Shift_JIS + +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 +) + +SJIS_CHAR_LEN_TABLE = (0, 1, 1, 2, 0, 0) + +SJIS_SM_MODEL = {'class_table': SJIS_CLS, + 'class_factor': 6, + 'state_table': SJIS_ST, + 'char_len_table': SJIS_CHAR_LEN_TABLE, + 'name': 'Shift_JIS'} + +# UCS2-BE + +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 +) + +UCS2BE_CHAR_LEN_TABLE = (2, 2, 2, 0, 2, 2) + +UCS2BE_SM_MODEL = {'class_table': UCS2BE_CLS, + 'class_factor': 6, + 'state_table': UCS2BE_ST, + 'char_len_table': UCS2BE_CHAR_LEN_TABLE, + 'name': 'UTF-16BE'} + +# UCS2-LE + +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 +) + +UCS2LE_CHAR_LEN_TABLE = (2, 2, 2, 2, 2, 2) + +UCS2LE_SM_MODEL = {'class_table': UCS2LE_CLS, + 'class_factor': 6, + 'state_table': UCS2LE_ST, + 'char_len_table': UCS2LE_CHAR_LEN_TABLE, + 'name': 'UTF-16LE'} + +# UTF-8 + +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 +) + +UTF8_CHAR_LEN_TABLE = (0, 1, 0, 0, 0, 0, 2, 3, 3, 3, 4, 4, 5, 5, 6, 6) + +UTF8_SM_MODEL = {'class_table': UTF8_CLS, + 'class_factor': 16, + 'state_table': UTF8_ST, + 'char_len_table': UTF8_CHAR_LEN_TABLE, + 'name': 'UTF-8'} diff --git a/Scripts/Lib/site-packages/pip/_vendor/chardet/metadata/__init__.py b/Scripts/Lib/site-packages/pip/_vendor/chardet/metadata/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/Scripts/Lib/site-packages/pip/_vendor/chardet/metadata/__pycache__/__init__.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_vendor/chardet/metadata/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ffe76286b37096c20391613479002df98b7724b6 GIT binary patch literal 221 zcmYk0F$%&!5Jfj)A%b_Xwa{2tiHKNhnpnxeGG+&}BypGBiKvy=@eUrqGuVokuyRxB zhyOl*;KP_+uPcJ?k9XeWtHHmbP!_?y9iT)i22pYot~vkkxo)SB(229s)C$HExzam_ z?hJBcOz9!13xcIKIbP5ySfgih{S8&NL?%cxr!9L3EAX0WXfZ2rPadqcu{_d285d`H h*b>JTF)Cz?rPK$_QjYBT*_l;F)g{fF&wMMOExxgeKUDw# literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_vendor/chardet/metadata/__pycache__/languages.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_vendor/chardet/metadata/__pycache__/languages.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..41bf4b2f2c81d6d10ac578b7e8cdaa2ec0f98134 GIT binary patch literal 7983 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 literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_vendor/chardet/metadata/languages.py b/Scripts/Lib/site-packages/pip/_vendor/chardet/metadata/languages.py new file mode 100644 index 0000000..3237d5a --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/chardet/metadata/languages.py @@ -0,0 +1,310 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- +""" +Metadata about languages used by our model training code for our +SingleByteCharSetProbers. Could be used for other things in the future. + +This code is based on the language metadata from the uchardet project. +""" +from __future__ import absolute_import, print_function + +from string import ascii_letters + + +# TODO: Add Ukranian (KOI8-U) + +class Language(object): + """Metadata about a language useful for training models + + :ivar name: The human name for the language, in English. + :type name: str + :ivar iso_code: 2-letter ISO 639-1 if possible, 3-letter ISO code otherwise, + or use another catalog as a last resort. + :type iso_code: str + :ivar use_ascii: Whether or not ASCII letters should be included in trained + models. + :type use_ascii: bool + :ivar charsets: The charsets we want to support and create data for. + :type charsets: list of str + :ivar alphabet: The characters in the language's alphabet. If `use_ascii` is + `True`, you only need to add those not in the ASCII set. + :type alphabet: str + :ivar wiki_start_pages: The Wikipedia pages to start from if we're crawling + Wikipedia for training data. + :type wiki_start_pages: list of str + """ + def __init__(self, name=None, iso_code=None, use_ascii=True, charsets=None, + alphabet=None, wiki_start_pages=None): + super(Language, self).__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): + return '{}({})'.format(self.__class__.__name__, + ', '.join('{}={!r}'.format(k, v) + for k, v in self.__dict__.items() + if not k.startswith('_'))) + + +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=u'ءآأؤإئابةتثجحخدذرزسشصضطظعغػؼؽؾؿـفقكلمنهوىيًٌٍَُِّ', + wiki_start_pages=[u'الصفحة_الرئيسية']), + 'Belarusian': Language(name='Belarusian', + iso_code='be', + use_ascii=False, + charsets=['ISO-8859-5', 'WINDOWS-1251', + 'IBM866', 'MacCyrillic'], + alphabet=(u'АБВГДЕЁЖЗІЙКЛМНОПРСТУЎФХЦЧШЫЬЭЮЯ' + u'абвгдеёжзійклмнопрстуўфхцчшыьэюяʼ'), + wiki_start_pages=[u'Галоўная_старонка']), + 'Bulgarian': Language(name='Bulgarian', + iso_code='bg', + use_ascii=False, + charsets=['ISO-8859-5', 'WINDOWS-1251', + 'IBM855'], + alphabet=(u'АБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЬЮЯ' + u'абвгдежзийклмнопрстуфхцчшщъьюя'), + wiki_start_pages=[u'Начална_страница']), + 'Czech': Language(name='Czech', + iso_code='cz', + use_ascii=True, + charsets=['ISO-8859-2', 'WINDOWS-1250'], + alphabet=u'áčďéěíňóřšťúůýžÁČĎÉĚÍŇÓŘŠŤÚŮÝŽ', + wiki_start_pages=[u'Hlavní_strana']), + 'Danish': Language(name='Danish', + iso_code='da', + use_ascii=True, + charsets=['ISO-8859-1', 'ISO-8859-15', + 'WINDOWS-1252'], + alphabet=u'æøåÆØÅ', + wiki_start_pages=[u'Forside']), + 'German': Language(name='German', + iso_code='de', + use_ascii=True, + charsets=['ISO-8859-1', 'WINDOWS-1252'], + alphabet=u'äöüßÄÖÜ', + wiki_start_pages=[u'Wikipedia:Hauptseite']), + 'Greek': Language(name='Greek', + iso_code='el', + use_ascii=False, + charsets=['ISO-8859-7', 'WINDOWS-1253'], + alphabet=(u'αβγδεζηθικλμνξοπρσςτυφχψωάέήίόύώ' + u'ΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΣΤΥΦΧΨΩΆΈΉΊΌΎΏ'), + wiki_start_pages=[u'Πύλη:Κύρια']), + 'English': Language(name='English', + iso_code='en', + use_ascii=True, + charsets=['ISO-8859-1', 'WINDOWS-1252'], + wiki_start_pages=[u'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=(u'abcĉdefgĝhĥijĵklmnoprsŝtuŭvz' + u'ABCĈDEFGĜHĤIJĴKLMNOPRSŜTUŬVZ'), + wiki_start_pages=[u'Vikipedio:Ĉefpaĝo']), + 'Spanish': Language(name='Spanish', + iso_code='es', + use_ascii=True, + charsets=['ISO-8859-1', 'ISO-8859-15', + 'WINDOWS-1252'], + alphabet=u'ñáéíóúüÑÁÉÍÓÚÜ', + wiki_start_pages=[u'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=(u'ABDEGHIJKLMNOPRSTUVÕÄÖÜ' + u'abdeghijklmnoprstuvõäöü'), + wiki_start_pages=[u'Esileht']), + 'Finnish': Language(name='Finnish', + iso_code='fi', + use_ascii=True, + charsets=['ISO-8859-1', 'ISO-8859-15', + 'WINDOWS-1252'], + alphabet=u'ÅÄÖŠŽåäöšž', + wiki_start_pages=[u'Wikipedia:Etusivu']), + 'French': Language(name='French', + iso_code='fr', + use_ascii=True, + charsets=['ISO-8859-1', 'ISO-8859-15', + 'WINDOWS-1252'], + alphabet=u'œàâçèéîïùûêŒÀÂÇÈÉÎÏÙÛÊ', + wiki_start_pages=[u'Wikipédia:Accueil_principal', + u'Bœuf (animal)']), + 'Hebrew': Language(name='Hebrew', + iso_code='he', + use_ascii=False, + charsets=['ISO-8859-8', 'WINDOWS-1255'], + alphabet=u'אבגדהוזחטיךכלםמןנסעףפץצקרשתװױײ', + wiki_start_pages=[u'עמוד_ראשי']), + '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=(u'abcčćdđefghijklmnoprsštuvzž' + u'ABCČĆDĐEFGHIJKLMNOPRSŠTUVZŽ'), + wiki_start_pages=[u'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=(u'abcdefghijklmnoprstuvzáéíóöőúüű' + u'ABCDEFGHIJKLMNOPRSTUVZÁÉÍÓÖŐÚÜŰ'), + wiki_start_pages=[u'Kezdőlap']), + 'Italian': Language(name='Italian', + iso_code='it', + use_ascii=True, + charsets=['ISO-8859-1', 'ISO-8859-15', + 'WINDOWS-1252'], + alphabet=u'ÀÈÉÌÒÓÙàèéìòóù', + wiki_start_pages=[u'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=(u'AĄBCČDEĘĖFGHIĮYJKLMNOPRSŠTUŲŪVZŽ' + u'aąbcčdeęėfghiįyjklmnoprsštuųūvzž'), + wiki_start_pages=[u'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=(u'AĀBCČDEĒFGĢHIĪJKĶLĻMNŅOPRSŠTUŪVZŽ' + u'aābcčdeēfgģhiījkķlļmnņoprsštuūvzž'), + wiki_start_pages=[u'Sākumlapa']), + 'Macedonian': Language(name='Macedonian', + iso_code='mk', + use_ascii=False, + charsets=['ISO-8859-5', 'WINDOWS-1251', + 'MacCyrillic', 'IBM855'], + alphabet=(u'АБВГДЃЕЖЗЅИЈКЛЉМНЊОПРСТЌУФХЦЧЏШ' + u'абвгдѓежзѕијклљмнњопрстќуфхцчџш'), + wiki_start_pages=[u'Главна_страница']), + 'Dutch': Language(name='Dutch', + iso_code='nl', + use_ascii=True, + charsets=['ISO-8859-1', 'WINDOWS-1252'], + wiki_start_pages=[u'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=(u'AĄBCĆDEĘFGHIJKLŁMNŃOÓPRSŚTUWYZŹŻ' + u'aąbcćdeęfghijklłmnńoóprsśtuwyzźż'), + wiki_start_pages=[u'Wikipedia:Strona_główna']), + 'Portuguese': Language(name='Portuguese', + iso_code='pt', + use_ascii=True, + charsets=['ISO-8859-1', 'ISO-8859-15', + 'WINDOWS-1252'], + alphabet=u'ÁÂÃÀÇÉÊÍÓÔÕÚáâãàçéêíóôõú', + wiki_start_pages=[u'Wikipédia:Página_principal']), + 'Romanian': Language(name='Romanian', + iso_code='ro', + use_ascii=True, + charsets=['ISO-8859-2', 'WINDOWS-1250'], + alphabet=u'ăâîșțĂÂÎȘȚ', + wiki_start_pages=[u'Pagina_principală']), + 'Russian': Language(name='Russian', + iso_code='ru', + use_ascii=False, + charsets=['ISO-8859-5', 'WINDOWS-1251', + 'KOI8-R', 'MacCyrillic', 'IBM866', + 'IBM855'], + alphabet=(u'абвгдеёжзийклмнопрстуфхцчшщъыьэюя' + u'АБВГДЕЁЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯ'), + wiki_start_pages=[u'Заглавная_страница']), + 'Slovak': Language(name='Slovak', + iso_code='sk', + use_ascii=True, + charsets=['ISO-8859-2', 'WINDOWS-1250'], + alphabet=u'áäčďéíĺľňóôŕšťúýžÁÄČĎÉÍĹĽŇÓÔŔŠŤÚÝŽ', + wiki_start_pages=[u'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=(u'abcčdefghijklmnoprsštuvzž' + u'ABCČDEFGHIJKLMNOPRSŠTUVZŽ'), + wiki_start_pages=[u'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=(u'АБВГДЂЕЖЗИЈКЛЉМНЊОПРСТЋУФХЦЧЏШ' + u'абвгдђежзијклљмнњопрстћуфхцчџш'), + charsets=['ISO-8859-5', 'WINDOWS-1251', + 'MacCyrillic', 'IBM855'], + wiki_start_pages=[u'Главна_страна']), + 'Thai': Language(name='Thai', + iso_code='th', + use_ascii=False, + charsets=['ISO-8859-11', 'TIS-620', 'CP874'], + alphabet=u'กขฃคฅฆงจฉชซฌญฎฏฐฑฒณดตถทธนบปผฝพฟภมยรฤลฦวศษสหฬอฮฯะัาำิีึืฺุู฿เแโใไๅๆ็่้๊๋์ํ๎๏๐๑๒๓๔๕๖๗๘๙๚๛', + wiki_start_pages=[u'หน้าหลัก']), + '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=(u'abcçdefgğhıijklmnoöprsştuüvyzâîû' + u'ABCÇDEFGĞHIİJKLMNOÖPRSŞTUÜVYZÂÎÛ'), + wiki_start_pages=[u'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=(u'aăâbcdđeêghiklmnoôơpqrstuưvxy' + u'AĂÂBCDĐEÊGHIKLMNOÔƠPQRSTUƯVXY'), + wiki_start_pages=[u'Chữ_Quốc_ngữ']), + } diff --git a/Scripts/Lib/site-packages/pip/_vendor/chardet/sbcharsetprober.py b/Scripts/Lib/site-packages/pip/_vendor/chardet/sbcharsetprober.py new file mode 100644 index 0000000..46ba835 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/chardet/sbcharsetprober.py @@ -0,0 +1,145 @@ +######################## 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 collections import namedtuple + +from .charsetprober import CharSetProber +from .enums import CharacterCategory, ProbingState, SequenceLikelihood + + +SingleByteCharSetModel = namedtuple('SingleByteCharSetModel', + ['charset_name', + 'language', + 'char_to_order_map', + 'language_model', + 'typical_positive_ratio', + 'keep_ascii_letters', + 'alphabet']) + + +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, reversed=False, name_prober=None): + super(SingleByteCharSetProber, self).__init__() + self._model = model + # TRUE if we need to reverse every pair in the model lookup + self._reversed = reversed + # Optional auxiliary prober for name decision + self._name_prober = name_prober + self._last_order = None + self._seq_counters = None + self._total_seqs = None + self._total_char = None + self._freq_char = None + self.reset() + + def reset(self): + super(SingleByteCharSetProber, self).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 + # characters that fall in our sampling range + self._freq_char = 0 + + @property + def charset_name(self): + if self._name_prober: + return self._name_prober.charset_name + else: + return self._model.charset_name + + @property + def language(self): + if self._name_prober: + return self._name_prober.language + else: + return self._model.language + + def feed(self, byte_str): + # 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) + 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 + # TODO: Follow uchardet's lead and discount confidence for frequent + # control characters. + # See https://github.com/BYVoid/uchardet/commit/55b4f23971db61 + 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 threshhold %s', charset_name, + confidence, + self.NEGATIVE_SHORTCUT_THRESHOLD) + self._state = ProbingState.NOT_ME + + return self.state + + def get_confidence(self): + r = 0.01 + if self._total_seqs > 0: + r = ((1.0 * self._seq_counters[SequenceLikelihood.POSITIVE]) / + self._total_seqs / self._model.typical_positive_ratio) + r = r * self._freq_char / self._total_char + if r >= 1.0: + r = 0.99 + return r diff --git a/Scripts/Lib/site-packages/pip/_vendor/chardet/sbcsgroupprober.py b/Scripts/Lib/site-packages/pip/_vendor/chardet/sbcsgroupprober.py new file mode 100644 index 0000000..bdeef4e --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/chardet/sbcsgroupprober.py @@ -0,0 +1,83 @@ +######################## 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): + super(SBCSGroupProber, self).__init__() + hebrew_prober = HebrewProber() + logical_hebrew_prober = SingleByteCharSetProber(WINDOWS_1255_HEBREW_MODEL, + False, 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, + True, 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/Scripts/Lib/site-packages/pip/_vendor/chardet/sjisprober.py b/Scripts/Lib/site-packages/pip/_vendor/chardet/sjisprober.py new file mode 100644 index 0000000..9e29623 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/chardet/sjisprober.py @@ -0,0 +1,92 @@ +######################## 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 .mbcharsetprober import MultiByteCharSetProber +from .codingstatemachine import CodingStateMachine +from .chardistribution import SJISDistributionAnalysis +from .jpcntx import SJISContextAnalysis +from .mbcssm import SJIS_SM_MODEL +from .enums import ProbingState, MachineState + + +class SJISProber(MultiByteCharSetProber): + def __init__(self): + super(SJISProber, self).__init__() + self.coding_sm = CodingStateMachine(SJIS_SM_MODEL) + self.distribution_analyzer = SJISDistributionAnalysis() + self.context_analyzer = SJISContextAnalysis() + self.reset() + + def reset(self): + super(SJISProber, self).reset() + self.context_analyzer.reset() + + @property + def charset_name(self): + return self.context_analyzer.charset_name + + @property + def language(self): + return "Japanese" + + def feed(self, byte_str): + for i in range(len(byte_str)): + coding_state = self.coding_sm.next_state(byte_str[i]) + 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 + elif coding_state == MachineState.ITS_ME: + self._state = ProbingState.FOUND_IT + break + elif coding_state == MachineState.START: + char_len = self.coding_sm.get_current_charlen() + if i == 0: + self._last_char[1] = byte_str[0] + 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): + context_conf = self.context_analyzer.get_confidence() + distrib_conf = self.distribution_analyzer.get_confidence() + return max(context_conf, distrib_conf) diff --git a/Scripts/Lib/site-packages/pip/_vendor/chardet/universaldetector.py b/Scripts/Lib/site-packages/pip/_vendor/chardet/universaldetector.py new file mode 100644 index 0000000..055a8ac --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/chardet/universaldetector.py @@ -0,0 +1,286 @@ +######################## 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 .charsetgroupprober import CharSetGroupProber +from .enums import InputState, LanguageFilter, ProbingState +from .escprober import EscCharSetProber +from .latin1prober import Latin1Prober +from .mbcsgroupprober import MBCSGroupProber +from .sbcsgroupprober import SBCSGroupProber + + +class UniversalDetector(object): + """ + 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'} + + def __init__(self, lang_filter=LanguageFilter.ALL): + self._esc_charset_prober = None + self._charset_probers = [] + self.result = None + self.done = None + self._got_data = None + self._input_state = None + self._last_char = None + self.lang_filter = lang_filter + self.logger = logging.getLogger(__name__) + self._has_win_bytes = None + self.reset() + + def reset(self): + """ + 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() + for prober in self._charset_probers: + prober.reset() + + def feed(self, byte_str): + """ + 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 len(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 = {'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 = {'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:] + + # 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()) + 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): + """ + 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 + lower_charset_name = max_prober.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) + 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/Scripts/Lib/site-packages/pip/_vendor/chardet/utf8prober.py b/Scripts/Lib/site-packages/pip/_vendor/chardet/utf8prober.py new file mode 100644 index 0000000..6c3196c --- /dev/null +++ b/Scripts/Lib/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 .charsetprober import CharSetProber +from .enums import ProbingState, MachineState +from .codingstatemachine import CodingStateMachine +from .mbcssm import UTF8_SM_MODEL + + + +class UTF8Prober(CharSetProber): + ONE_CHAR_PROB = 0.5 + + def __init__(self): + super(UTF8Prober, self).__init__() + self.coding_sm = CodingStateMachine(UTF8_SM_MODEL) + self._num_mb_chars = None + self.reset() + + def reset(self): + super(UTF8Prober, self).reset() + self.coding_sm.reset() + self._num_mb_chars = 0 + + @property + def charset_name(self): + return "utf-8" + + @property + def language(self): + return "" + + def feed(self, byte_str): + for c in byte_str: + coding_state = self.coding_sm.next_state(c) + if coding_state == MachineState.ERROR: + self._state = ProbingState.NOT_ME + break + elif coding_state == MachineState.ITS_ME: + self._state = ProbingState.FOUND_IT + break + elif 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): + unlike = 0.99 + if self._num_mb_chars < 6: + unlike *= self.ONE_CHAR_PROB ** self._num_mb_chars + return 1.0 - unlike + else: + return unlike diff --git a/Scripts/Lib/site-packages/pip/_vendor/chardet/version.py b/Scripts/Lib/site-packages/pip/_vendor/chardet/version.py new file mode 100644 index 0000000..70369b9 --- /dev/null +++ b/Scripts/Lib/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 setup.py and from chardet subpackages. + +:author: Dan Blanchard (dan.blanchard@gmail.com) +""" + +__version__ = "4.0.0" +VERSION = __version__.split('.') diff --git a/Scripts/Lib/site-packages/pip/_vendor/colorama/__init__.py b/Scripts/Lib/site-packages/pip/_vendor/colorama/__init__.py new file mode 100644 index 0000000..b149ed7 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/colorama/__init__.py @@ -0,0 +1,6 @@ +# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. +from .initialise import init, deinit, reinit, colorama_text +from .ansi import Fore, Back, Style, Cursor +from .ansitowin32 import AnsiToWin32 + +__version__ = '0.4.4' diff --git a/Scripts/Lib/site-packages/pip/_vendor/colorama/__pycache__/__init__.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_vendor/colorama/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..941bd996d985a00b1448c384735b756a0a5dfb18 GIT binary patch literal 464 zcmYjNO-chX6rN0HrqfP~TbFLTuodk}M6`-4?WP4G1VZct4NWG)%T!x$Y{Eo_hiGy+$p1TZCMkUdaA(WVy#->GECZP#I zd#qEF(af}I+vGGi9oqS|w{+JOvO)U^pI*r-Q!lVo4>mauRR@ zXdxsBX#k&ykOmp*ZG;@5gPsCCjeWv`fT!^V=Z_McvK8kq5$s?n!uOgUvuT)dq3x<< z2V;J%?m)nX@wv6yvFU0l*+kg~@hqTZH^Ma%_U6*mS~QZ)7NF|Jv5>_=OSxZ%4aL25 ptXB0X^sGt?qrYp6ILDnhAJ!Y6pBP)Nv^>R2IvjqN?2;bI;~yAXf?ogt literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_vendor/colorama/__pycache__/ansi.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_vendor/colorama/__pycache__/ansi.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4a30dd90a54225914431e5f24a20779bcab7296c GIT binary patch literal 3025 zcma)8+iu%N5ap7TL{XxoIF6mPX{+9&wvp1J7a%DDOS0m)k!i!S;f7JlGTM#JSQeEf zoy3L%1aLm2eat`f1Nsg7TJ(X>c?(dWGfT@>d;vmXk9KyrvpX|qb{SZfslfBs-~VpR zK<^(E#vdJo8ED}j090`lN*qE}N2QvhQJtnS5FxvRc^58C}VB-0}hv(bZn4O$c0>k>euL}X9dC({tpX$3Z~+JbDoQiay+%nL1y zc!dZZZN5^t0TbRt&h@U%o<+TWuuZ$yzIWUH1McyiuDcQh{jh6qZ?bN~4>r7AkJIjg z7ow{xY-`wu7<4;5?hm7|3$wbRAF-=Luea%~v#>k#hc)*J8_HVsV%`bX$Q5afL_tK6S_PWH$jgpxl=crjAaxgdVc~L!l46EhbV= zy#Dry$QrKe5B$h=--CTgzT|b2n50D17y5s@6NesEM=#poD9l2et}9H}O{y3AdDnfs z?e!B4FN47`mdL;(RroZ(C1@dL+)(mFj+_WMMr{UPy9sa@aEroO1}BvU=MaNED^IinHE9k{G@6Ih6on}r+2&!uV=V3-=5zF5AD6=f9aTFyR_*nKqALFY zUK3<6=A0}6b#>`;&`4_TT1V?uSC`IQjeh|%WC1i1l3qaz$4IKrF0R>M9-1zWnMTb! z7;m0!JacPtd9A)YTRF6!?1<){fdZQ>Dno&yQt?+%Iga+Az4ag| zXP~`a0yv~Q5?uv~Yd~%tF6tBzI_(%V<7BDfm^AC;sOjWs&ar6TDNxHP(t=Z>MYv*1 z&ICQ@oTn2|0Oy5)4&Mqmi$8<~;*Su@2%>Ten4O z?e_diOQe=toz{x5+VgX_SELEI^{dE95lo?w=%h&$3sRSuMmc{lb+v_3QA!6(9jS3i zloDHVX%J6Mbxriog&aBCI29AovK65HR^ZuW1Y)I= zORp2{z&C+B{_sm8#w#?2rr4Ftablz!%a~iC&CV}~w7s~zP;ZN@OuJiew@=;k08AnG zLK9$=1Bf(^W9{Oil?jn?T^jUUm#0AH`1Qjr1e_&5M>yWz9Cs(u!GlMv7s<;el*i&}TNK96$whb*D>=l10#>Au8HQ$PCj3fzDOa*eQ>CeN KI!)4W%l;3clVPF& literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_vendor/colorama/__pycache__/ansitowin32.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_vendor/colorama/__pycache__/ansitowin32.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4667eb468bd4b75642f19e8a96cec3732253b29e GIT binary patch literal 7924 zcmaJ`O>i7ZR<6wY>FOV~TCyxl{u$MHml^e7dyHpc*;((5C0QPOM{X0A7ULdyi&9rf z>UMWmJF9wZH7#Nm4G|n*Vk0(!;J`tOU=Q9K5gZ93IKhSB!YL0duq-hA!?LgpJ2QMQ ztGd;a$J>g`%J=f`<;(Y%PvO{DPQ&jH|MdIYr(V&t?-4NiGXPvei9SH(Yd&jg)#S^n zOu@X$eeUZ`y=7F5mRU7hR@G`{s+pEuwV8%KqnT~xs<~Fanr{`V1%)%4W36Jf*cz{n z17_81Q1n@siJuK}ds;R7mgZZ2=6%i21f@N_Isw@Bvw*V-p7hzOR?dA0nzYJ?40YL* z_ChaW>*bIegsWD|Pt;hAY z-)zb}zFw#9#z7R}-m#<+Or$JM^8GAB%b%%$Hxj;5^>0W2buL_(3z+^5VdE;?N1ZLantFw%-jz90;f0 zj$*G}3oa>qjTkieQJbSIp+qHAeb(1ptRsrKrxknD}x{nnHd^vl(qn7L% z3f!g<1bav7xOV6?1^pTTZ8Vsrtmj*v-6Xz7y z3TVVyUu&>F+vBU6C;|bVWwwHt?o*5_SWMs}jkebc)ZvrrBq8&zn~rtevp__&eu4F7 zkCQSSRU_pZ{D=}F{|?FzCQ*SFMNJ*|_w_o6dO^oMz9DV)Q^O5E<3^IX&%Y5R z$Kb&}ZsdT$kU@?I`%|AZl@2}S>FHyL;Bg`xjGG@2QDVIlM^CL5c;>`5CMcO$LxXN% zm-#Ga4gRhsX8O=4m{NRWy#RsVnd5FJ7uQP-+j&3 zSGC7l*{I0kFWg_cxp4Qkd-Klf+Vb_a8)ZAWR~|+(6SUv0i?A*AXeW|6*G-I&>!$5M z;M%2Ck06;lvbZp?H_Jkh$|el4B4x?sSn_p~(Z@Md#uru?J2LUfmBi}X~A?vfiK`B zp>v9SK|~!V_7ZSkM2SdSEly+>*k=)$tXC-)$Ucy=Cai0Pez!^Og6lrⅆ*aj83h;@Q&fEYtXvZ=UfYX-AT+p=|4bY3Vj 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 Ceop)V literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_vendor/colorama/__pycache__/initialise.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_vendor/colorama/__pycache__/initialise.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8ce0a961a3e7b942466cb13f7abc0c91b5bf2b95 GIT binary patch literal 1711 zcmZ`(OK%%D5GJ|Y)oS&y;BQ4|QiK%Z~sdFhdSG9!zCla`aFkN`z8DiM3Q!9qQ?>2N@H;&m6?>BW*Z{Y5RZs|78EzNgWdgBFtnRQ=q)G04(pU-U8 zD;{UFdv~`-baZtHG`>W!w@^6@bitwSnBzzMM4U1VkL`GQ&bw&<^mk>gfNVUpP8SPT zR>4@~hAPjWGeAIA>fgiugF)9kb)&pk=)uSLhu>!3gMx#>uvZkh9ds9aX7EK;Ow^$Q zJ@`&pXQ0zF(|N9(8SIQ8n>#zeTLYUp^U++5_SD$e!91I94WF2qE?{d^%SrO-#?z%nfxh zGi9_g${5TzqYQeSQ(0Ek!WEtwWd&n@V!)LlzL?ERNv~fr1!9UzQU>3`mF=L~6fuv& zh$kZA%^*Ho&r&8l=JG#y2c2F^<(D7e={c1vMCGAylrj!27oa8AAOle#4LveY!!^`N zHAyu{UC?>8@{vZ`P^|ax{3Ue)j1*%^h+{X=ycQJ|7rjxS*xRUn!nl?!LyG;*f5Vg? zRyBKsMfR8q?!4Gmt9`bLPWXTIPp6`km~PDI-agG&!t;?e*5xq747msNO$t!_*c1Xo z+!XL0n%4qEo2@$lyo<&fk_}p4LeeJl^^kyvgbE3$jX($0i1@Z1RA(2p_8}Te3GH>Q zEd$MemCwRuc*0K^w3p$oc!n@xD-+an-b8;OZonI;E}D>?6pLIBiA_XnB5NAK`{Z~1 z2E2`XWo1Qjcm*|R;o&zZmeMY{#B@eyF%nNAUvMjx+ud$2ZNm*T$^^+w=;qkX2%fU0 zu)DfqpSr8>jw?2K4tWqgbkvP}Xy`fjQ%!A9 literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_vendor/colorama/__pycache__/win32.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_vendor/colorama/__pycache__/win32.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6bbf9b621391591dede5f5494fedd047bce4f00b GIT binary patch literal 3972 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 literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_vendor/colorama/__pycache__/winterm.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_vendor/colorama/__pycache__/winterm.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..573917e395c2f0a61d81346a31a4896ad1c1cf01 GIT binary patch literal 4588 zcmaJ_OLH5?5#HGs79dE14~eua*^DJ8K@v%h?Zk=VSbQ@sQ=mgqk%cg|1!9&Gpe2@> zU6>YYS(U2j>i92^wd-?BZoAU`=n&bNlgi_bj9F@sfex zKmYZgr(eHj82_fu;Lk>95iKUd4bDR2kkuJ8HVkfZ>xIFs!2GLKx6rq_gTABsHu^3v zpkGjZhkH9lwRpjBOqEIJxYc>@-6lFiKbl=ci+=_Z7pX3-u!R>Lp&p$tCGMYIRnkFcKHoYX~~(!X#o5Aw4b}A})~vNUb_1J>Ty%4g=qp zCEq`ccsC@z?E8Q2Ho|PiS>9Y)`9#{wn-ABdv$4IlR+IM1-Y9*!52w0jJka9o%j9C*1l+n=X?Hc6ov6#t@|w4 zTW&>98z&9H_Z~FjBoGU`!QoNZNP@kcrf3}{@g8>V#jPZ`ebi_^Ydi_!y`$FAUH|i- z!y|FGNxC-<8+Tz^Y(Knn^jwhYq;EV8;u$s@{PUQaf3*|lvFUOrz~GKD_)hXX41_YS zht(H<0jX78F@~oo6B!4QZf$G(!P2I5m$yIO_}#9Y(ocUGhTYiSdRSZSTT63uw3h^! zLW}8aEk1;%(eDXOnl7Tne*@_Y&CM4E&|`5MPvDcgcshK6d%XC90ZTvNW4sKm0B)R5 zfb;lUe3Dnd6~RsMX>cVz!)LK`3?onpqfQ@t$K37h?rH zJv@temhc?o47AJ*yvD34M^wiJ!Cqe52$Gek6GveH00lv3xqEOBh>tr5k#u)+EDIm#H_~ zq?!Cje9yCY&`BZAB82gYGw&mfsvb*OVzw#3tC)0pWXIuDx1%dN**WOq$`43<`a|1S&ar z-^ygBw5~v-VQ8zDi??uq9HUn?H5iqxbE%6_2cY4B5F?Vyq6n0HVMyvJ`OA>MG$4O( z#d_1mn*2w6ZvAgJ(Sgm4F02W;jZ@ehGPBeaS5m_UJQAyIZyBcHn;k?|J~C-MP-EER zq*kUaAoS9#Rhf7Xr@}FB92Ej;11$bI+P4!R9&_<$ zo6~ICtgw@E4m3LCm0F5lV5j&c2!tYcYh?F@QfL_xiUL;rik6ZtqaxkI*oQR!YmmMW zw5ds^&40w_rj8X@wm zpn&&u9<|GOQ`42TfN ztc#gR%vhM&7@Bb~V`}i76;S}})JqHJHlsi*0er^U*twC9WhXqrTp4SfJbkFb=;~{k z`XCYH{qNWU${z)wBH4XS_*=l@_yW8?;5NFm9gz#?P;D{kjjhLt<;X8{*%n(=^_ z41HKJlX?99B`a_iRt#guO`Y#yCmT~3aYivB=-yH-k47_PYOzR!>W0QfjW`96E#f{U zLKQ0ubMbo`P(@y4xozrFiWYw$GF*~mNt-upb%L)j9WQ|7ULp@o!#5S>C!*w`dGlmC zkM{oNp<-p?5DQI3IbCvKHC3#13e)M^RJzK^e$w7;C1H?X6rF^6qvEO$6*cpB9II~U z69X4S%Ex-2st`z(>-b7SzQjW%qxI_4$fv5fje~TU+$8ROB6LF&bSDyY1yOZdC)Rc9 zenR9CkVq!eQGrh8Bl^pzy;m`HFl2> 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) diff --git a/Scripts/Lib/site-packages/pip/_vendor/distlib/__init__.py b/Scripts/Lib/site-packages/pip/_vendor/distlib/__init__.py new file mode 100644 index 0000000..492c2c7 --- /dev/null +++ b/Scripts/Lib/site-packages/pip/_vendor/distlib/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2012-2019 Vinay Sajip. +# Licensed to the Python Software Foundation under a contributor agreement. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +import logging + +__version__ = '0.3.2' + +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/Scripts/Lib/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bfcfac73022543435b4000c97d47bfc6b14abe34 GIT binary patch literal 1083 zcmZ`&!EVz)5S_I*w&S!A3hJ2y2XY{-fD=Nf0xCcXzO)j;vb1u&OKQ5Y&Dx=D#I601 z_Sk>m1Ner$A`YCnae*19rBQ*2cC_P}c{BTFQZ6rtfb#jvx81}6_)5m21ZZsFsWmDI zl4*!RIx%|z(v|!eBv;On8@sary&Vk`9&-k7pjhFcI)`@|&<~?M>0`97;Jt_O{4Er0 z9~7MUDmZ0vS9MQ9#gE{WF|4u$gWx+>glN`TA3hk~&&XI5hQ_yV4~n^39cr2bCVp` zQO){`@Z`#<`3s>t^+AuR30J}=5bcxNGRP>`Wwtk9hIZ&`tuQkR2RXusTZBMRAw?Jnr-z$L(W#tIYWodVTgA<}m2W literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0273c4ef7ae644e376d9da06bb2b2a298fe1feec GIT binary patch literal 31908 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 z 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 YR&E_q=!Y~iQrJ9F7+JrrXnyto0r~0GLI3~& literal 0 HcmV?d00001 diff --git a/Scripts/Lib/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-310.pyc b/Scripts/Lib/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0d3b1b5c39be8b43bb8cf4df232e4d4e109a0bd8 GIT binary patch literal 42654 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%0Du^M2HozV1?=Wnb+)`uf>7xqG+V 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