From 065baa15152f37c81c878af7fbc9be5255378e4a Mon Sep 17 00:00:00 2001 From: Nataliia Date: Wed, 4 Jun 2025 20:50:11 +0300 Subject: [PATCH 1/2] HW2.py added to project --- .gitignore | 1 + HW2.py | 135 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 136 insertions(+) create mode 100644 HW2.py diff --git a/.gitignore b/.gitignore index 27f1fd8..2868474 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ .ruff_cachetry init .idea/ + .venv/ diff --git a/HW2.py b/HW2.py new file mode 100644 index 0000000..fe9db3f --- /dev/null +++ b/HW2.py @@ -0,0 +1,135 @@ +from pydantic import BaseModel +from contextlib import contextmanager +from abc import ABC, abstractmethod + +class EBoooks(ABC): # абстрактний клас для всього що є в електронному форматі EBook + @abstractmethod + def inform(self): + pass + +class BookModel(BaseModel): + title: str + author: str + year: int + +class Book(EBoooks): + def __init__(self, model: BookModel): + self.model = model + + def inform(self): + print(f'Book name: {self.model.title} written by {self.model.author} in {self.model.year}') + +# декоратор для логування при доданні книги в список +def log_addition(func): + def wrapper(self, book): + len1 = len(self._book) + result = func(self, book) + len2 = len(self._book) + if len2 > len1: + print("New book added to library") + else: + print("Nothing added to the library") + return result + return wrapper + +# декоратор який перевіряє наявність книги в бібліотеці перед її видаленням +def decorator(func): + def wrapper(self, book_title): + if book_title in [book.title for book in self._book]: + return func(self, book_title) + else: + print(f'Book {book_title} is not in the list') + return wrapper + +#журнал: +class JournalModel(BookModel): # розширення pydentic BookModel для номеру журналу + number: int + +class Journal(Book): + def __init__(self, model: JournalModel): + super().__init__(model) + self.number = model.number + + def inform(self): # додаємо в інформ номер журналу - поліморфізм + print (f'Journal name: {self.model.title} written by {self.model.author} in {self.model.year}, issue number: {self.number}') + +class Library: + def __init__(self, _book: list[Book]): + self._book = _book + self.index = 0 + + def __iter__(self): + self.index = 0 + return self + + def __next__(self): + if self.index < len(self._book): + book = self._book[self.index] + self.index += 1 + return book + raise StopIteration + + @log_addition + def add_book(self, book_title): + if book_title not in self._book: + self._book.append(book_title) + + @decorator # бере як аргумент видалення книги зі списку + def delete_book(self, book_title): + self._book = [book for book in self._book if book_title != book_title] + +if __name__ == "__main__": + + book1 = BookModel(title ='Fifth Risk', author = 'Michael Lewis', year = 2018) + book2 = BookModel(title ='The World for Sale', author = 'Javier Blas', year = 2019) + mag1 = JournalModel(title = 'Magaz', author = 'Nataliia', year = 2025, number=1) + mag2 = JournalModel(title = 'The Oil Market', author = 'Javier Blas', year = 2025, number=2) + + Book(book1).inform() + Journal(mag1).inform() + + book_lib = Library([]) + book_lib.add_book(book1) + book_lib.add_book(book2) + book_lib.add_book(mag1) + book_lib.add_book(mag2) + +for book in book_lib: + print(f'Book list first run: {book}') + + +book_lib.delete_book("Fifth Risk") +for book in book_lib: + print(f'Book list after removed books: {book}') + + +# генератор по автору + +def generator(_book: list[Book], author_name: str): + for book in _book: + if book.model.author == author_name: + yield book + +for book in generator(book_lib._book, "Javier Blas"): + print(f'Book title by Author: {book.model.title}') + +# context manager +@contextmanager +def open_file(file, mode='w+r'): + f = open(file, mode) + yield f #збереження списку книг до файлу + f.close() + +with open_file('library.txt', 'w') as f: + for book in book_lib: + f.write(str(book) + '\n') + +with open_file('library.txt', 'r') as f: + lines = f.readlines() + for line in lines: + print(f'Read with context manager: {line.strip()}') + + + + + From cf92f572aa093996de78e71fe8a5b817c48e6a09 Mon Sep 17 00:00:00 2001 From: Nataliia Date: Wed, 4 Jun 2025 20:54:09 +0300 Subject: [PATCH 2/2] Homework 2 to done --- .python-version | 1 + .venv/bin/Activate.ps1 | 247 + .venv/bin/activate | 63 + .venv/bin/activate.csh | 26 + .venv/bin/activate.fish | 69 + .venv/bin/email_validator | 8 + .venv/bin/pip | 8 + .venv/bin/pip3 | 8 + .venv/bin/pip3.11 | 8 + .venv/bin/python | 1 + .venv/bin/python3 | 1 + .venv/bin/python3.11 | 1 + .../site-packages/_distutils_hack/__init__.py | 222 + .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 11204 bytes .../__pycache__/override.cpython-311.pyc | Bin 0 -> 361 bytes .../site-packages/_distutils_hack/override.py | 1 + .../annotated_types-0.7.0.dist-info/INSTALLER | 1 + .../annotated_types-0.7.0.dist-info/METADATA | 295 + .../annotated_types-0.7.0.dist-info/RECORD | 8 + .../annotated_types-0.7.0.dist-info/WHEEL | 4 + .../licenses/LICENSE | 21 + .../site-packages/annotated_types/__init__.py | 432 + .../site-packages/annotated_types/py.typed | 0 .../annotated_types/test_cases.py | 151 + .../site-packages/distutils-precedence.pth | 1 + .../python3.11/site-packages/dns/__init__.py | 70 + .../site-packages/dns/_asyncbackend.py | 100 + .../site-packages/dns/_asyncio_backend.py | 275 + .../lib/python3.11/site-packages/dns/_ddr.py | 154 + .../python3.11/site-packages/dns/_features.py | 95 + .../site-packages/dns/_immutable_ctx.py | 76 + .../site-packages/dns/_trio_backend.py | 253 + .../site-packages/dns/asyncbackend.py | 101 + .../site-packages/dns/asyncquery.py | 913 ++ .../site-packages/dns/asyncresolver.py | 475 + .../python3.11/site-packages/dns/dnssec.py | 1247 +++ .../site-packages/dns/dnssecalgs/__init__.py | 121 + .../site-packages/dns/dnssecalgs/base.py | 89 + .../dns/dnssecalgs/cryptography.py | 68 + .../site-packages/dns/dnssecalgs/dsa.py | 106 + .../site-packages/dns/dnssecalgs/ecdsa.py | 97 + .../site-packages/dns/dnssecalgs/eddsa.py | 70 + .../site-packages/dns/dnssecalgs/rsa.py | 124 + .../site-packages/dns/dnssectypes.py | 71 + .../lib/python3.11/site-packages/dns/e164.py | 116 + .../lib/python3.11/site-packages/dns/edns.py | 572 ++ .../python3.11/site-packages/dns/entropy.py | 130 + .../lib/python3.11/site-packages/dns/enum.py | 116 + .../python3.11/site-packages/dns/exception.py | 169 + .../lib/python3.11/site-packages/dns/flags.py | 123 + .../python3.11/site-packages/dns/grange.py | 72 + .../python3.11/site-packages/dns/immutable.py | 68 + .../lib/python3.11/site-packages/dns/inet.py | 197 + .../lib/python3.11/site-packages/dns/ipv4.py | 77 + .../lib/python3.11/site-packages/dns/ipv6.py | 217 + .../python3.11/site-packages/dns/message.py | 1933 ++++ .../lib/python3.11/site-packages/dns/name.py | 1284 +++ .../python3.11/site-packages/dns/namedict.py | 109 + .../site-packages/dns/nameserver.py | 363 + .../lib/python3.11/site-packages/dns/node.py | 359 + .../python3.11/site-packages/dns/opcode.py | 117 + .../lib/python3.11/site-packages/dns/py.typed | 0 .../lib/python3.11/site-packages/dns/query.py | 1665 ++++ .../site-packages/dns/quic/__init__.py | 80 + .../site-packages/dns/quic/_asyncio.py | 267 + .../site-packages/dns/quic/_common.py | 339 + .../site-packages/dns/quic/_sync.py | 295 + .../site-packages/dns/quic/_trio.py | 246 + .../lib/python3.11/site-packages/dns/rcode.py | 168 + .../lib/python3.11/site-packages/dns/rdata.py | 911 ++ .../site-packages/dns/rdataclass.py | 118 + .../python3.11/site-packages/dns/rdataset.py | 512 + .../python3.11/site-packages/dns/rdatatype.py | 336 + .../site-packages/dns/rdtypes/ANY/AFSDB.py | 45 + .../site-packages/dns/rdtypes/ANY/AMTRELAY.py | 91 + .../site-packages/dns/rdtypes/ANY/AVC.py | 26 + .../site-packages/dns/rdtypes/ANY/CAA.py | 71 + .../site-packages/dns/rdtypes/ANY/CDNSKEY.py | 33 + .../site-packages/dns/rdtypes/ANY/CDS.py | 29 + .../site-packages/dns/rdtypes/ANY/CERT.py | 116 + .../site-packages/dns/rdtypes/ANY/CNAME.py | 28 + .../site-packages/dns/rdtypes/ANY/CSYNC.py | 68 + .../site-packages/dns/rdtypes/ANY/DLV.py | 24 + .../site-packages/dns/rdtypes/ANY/DNAME.py | 27 + .../site-packages/dns/rdtypes/ANY/DNSKEY.py | 33 + .../site-packages/dns/rdtypes/ANY/DS.py | 24 + .../site-packages/dns/rdtypes/ANY/EUI48.py | 30 + .../site-packages/dns/rdtypes/ANY/EUI64.py | 30 + .../site-packages/dns/rdtypes/ANY/GPOS.py | 126 + .../site-packages/dns/rdtypes/ANY/HINFO.py | 64 + .../site-packages/dns/rdtypes/ANY/HIP.py | 85 + .../site-packages/dns/rdtypes/ANY/ISDN.py | 78 + .../site-packages/dns/rdtypes/ANY/L32.py | 41 + .../site-packages/dns/rdtypes/ANY/L64.py | 47 + .../site-packages/dns/rdtypes/ANY/LOC.py | 353 + .../site-packages/dns/rdtypes/ANY/LP.py | 42 + .../site-packages/dns/rdtypes/ANY/MX.py | 24 + .../site-packages/dns/rdtypes/ANY/NID.py | 47 + .../site-packages/dns/rdtypes/ANY/NINFO.py | 26 + .../site-packages/dns/rdtypes/ANY/NS.py | 24 + .../site-packages/dns/rdtypes/ANY/NSEC.py | 67 + .../site-packages/dns/rdtypes/ANY/NSEC3.py | 126 + .../dns/rdtypes/ANY/NSEC3PARAM.py | 69 + .../dns/rdtypes/ANY/OPENPGPKEY.py | 53 + .../site-packages/dns/rdtypes/ANY/OPT.py | 77 + .../site-packages/dns/rdtypes/ANY/PTR.py | 24 + .../site-packages/dns/rdtypes/ANY/RESINFO.py | 24 + .../site-packages/dns/rdtypes/ANY/RP.py | 58 + .../site-packages/dns/rdtypes/ANY/RRSIG.py | 157 + .../site-packages/dns/rdtypes/ANY/RT.py | 24 + .../site-packages/dns/rdtypes/ANY/SMIMEA.py | 9 + .../site-packages/dns/rdtypes/ANY/SOA.py | 86 + .../site-packages/dns/rdtypes/ANY/SPF.py | 26 + .../site-packages/dns/rdtypes/ANY/SSHFP.py | 68 + .../site-packages/dns/rdtypes/ANY/TKEY.py | 142 + .../site-packages/dns/rdtypes/ANY/TLSA.py | 9 + .../site-packages/dns/rdtypes/ANY/TSIG.py | 160 + .../site-packages/dns/rdtypes/ANY/TXT.py | 24 + .../site-packages/dns/rdtypes/ANY/URI.py | 79 + .../site-packages/dns/rdtypes/ANY/WALLET.py | 9 + .../site-packages/dns/rdtypes/ANY/X25.py | 57 + .../site-packages/dns/rdtypes/ANY/ZONEMD.py | 66 + .../site-packages/dns/rdtypes/ANY/__init__.py | 70 + .../site-packages/dns/rdtypes/CH/A.py | 59 + .../site-packages/dns/rdtypes/CH/__init__.py | 22 + .../site-packages/dns/rdtypes/IN/A.py | 51 + .../site-packages/dns/rdtypes/IN/AAAA.py | 51 + .../site-packages/dns/rdtypes/IN/APL.py | 150 + .../site-packages/dns/rdtypes/IN/DHCID.py | 54 + .../site-packages/dns/rdtypes/IN/HTTPS.py | 9 + .../site-packages/dns/rdtypes/IN/IPSECKEY.py | 91 + .../site-packages/dns/rdtypes/IN/KX.py | 24 + .../site-packages/dns/rdtypes/IN/NAPTR.py | 110 + .../site-packages/dns/rdtypes/IN/NSAP.py | 60 + .../site-packages/dns/rdtypes/IN/NSAP_PTR.py | 24 + .../site-packages/dns/rdtypes/IN/PX.py | 73 + .../site-packages/dns/rdtypes/IN/SRV.py | 75 + .../site-packages/dns/rdtypes/IN/SVCB.py | 9 + .../site-packages/dns/rdtypes/IN/WKS.py | 100 + .../site-packages/dns/rdtypes/IN/__init__.py | 35 + .../site-packages/dns/rdtypes/__init__.py | 33 + .../site-packages/dns/rdtypes/dnskeybase.py | 87 + .../site-packages/dns/rdtypes/dsbase.py | 85 + .../site-packages/dns/rdtypes/euibase.py | 70 + .../site-packages/dns/rdtypes/mxbase.py | 87 + .../site-packages/dns/rdtypes/nsbase.py | 63 + .../site-packages/dns/rdtypes/svcbbase.py | 585 ++ .../site-packages/dns/rdtypes/tlsabase.py | 71 + .../site-packages/dns/rdtypes/txtbase.py | 106 + .../site-packages/dns/rdtypes/util.py | 257 + .../python3.11/site-packages/dns/renderer.py | 346 + .../python3.11/site-packages/dns/resolver.py | 2053 ++++ .../site-packages/dns/reversename.py | 105 + .../lib/python3.11/site-packages/dns/rrset.py | 285 + .../python3.11/site-packages/dns/serial.py | 118 + .venv/lib/python3.11/site-packages/dns/set.py | 308 + .../python3.11/site-packages/dns/tokenizer.py | 708 ++ .../site-packages/dns/transaction.py | 649 ++ .../lib/python3.11/site-packages/dns/tsig.py | 352 + .../site-packages/dns/tsigkeyring.py | 68 + .venv/lib/python3.11/site-packages/dns/ttl.py | 92 + .../python3.11/site-packages/dns/update.py | 386 + .../python3.11/site-packages/dns/version.py | 58 + .../python3.11/site-packages/dns/versioned.py | 318 + .../python3.11/site-packages/dns/win32util.py | 242 + .../lib/python3.11/site-packages/dns/wire.py | 89 + .venv/lib/python3.11/site-packages/dns/xfr.py | 343 + .../lib/python3.11/site-packages/dns/zone.py | 1434 +++ .../python3.11/site-packages/dns/zonefile.py | 744 ++ .../python3.11/site-packages/dns/zonetypes.py | 37 + .../dnspython-2.7.0.dist-info/INSTALLER | 1 + .../dnspython-2.7.0.dist-info/METADATA | 149 + .../dnspython-2.7.0.dist-info/RECORD | 150 + .../dnspython-2.7.0.dist-info/WHEEL | 4 + .../licenses/LICENSE | 35 + .../email_validator-2.2.0.dist-info/INSTALLER | 1 + .../email_validator-2.2.0.dist-info/LICENSE | 27 + .../email_validator-2.2.0.dist-info/METADATA | 465 + .../email_validator-2.2.0.dist-info/RECORD | 17 + .../email_validator-2.2.0.dist-info/WHEEL | 5 + .../entry_points.txt | 2 + .../top_level.txt | 1 + .../site-packages/email_validator/__init__.py | 101 + .../site-packages/email_validator/__main__.py | 60 + .../email_validator/deliverability.py | 159 + .../email_validator/exceptions_types.py | 141 + .../site-packages/email_validator/py.typed | 0 .../email_validator/rfc_constants.py | 51 + .../site-packages/email_validator/syntax.py | 761 ++ .../email_validator/validate_email.py | 180 + .../site-packages/email_validator/version.py | 1 + .../idna-3.10.dist-info/INSTALLER | 1 + .../idna-3.10.dist-info/LICENSE.md | 31 + .../idna-3.10.dist-info/METADATA | 250 + .../site-packages/idna-3.10.dist-info/RECORD | 14 + .../site-packages/idna-3.10.dist-info/WHEEL | 4 + .../python3.11/site-packages/idna/__init__.py | 45 + .../python3.11/site-packages/idna/codec.py | 122 + .../python3.11/site-packages/idna/compat.py | 15 + .../lib/python3.11/site-packages/idna/core.py | 437 + .../python3.11/site-packages/idna/idnadata.py | 4243 ++++++++ .../site-packages/idna/intranges.py | 57 + .../site-packages/idna/package_data.py | 1 + .../python3.11/site-packages/idna/py.typed | 0 .../site-packages/idna/uts46data.py | 8681 +++++++++++++++++ .../pip-24.0.dist-info/AUTHORS.txt | 760 ++ .../pip-24.0.dist-info/INSTALLER | 1 + .../pip-24.0.dist-info/LICENSE.txt | 20 + .../site-packages/pip-24.0.dist-info/METADATA | 88 + .../site-packages/pip-24.0.dist-info/RECORD | 1024 ++ .../pip-24.0.dist-info/REQUESTED | 0 .../site-packages/pip-24.0.dist-info/WHEEL | 5 + .../pip-24.0.dist-info/entry_points.txt | 4 + .../pip-24.0.dist-info/top_level.txt | 1 + .../python3.11/site-packages/pip/__init__.py | 13 + .../python3.11/site-packages/pip/__main__.py | 24 + .../site-packages/pip/__pip-runner__.py | 50 + .../pip/__pycache__/__init__.cpython-311.pyc | Bin 0 -> 814 bytes .../pip/__pycache__/__main__.cpython-311.pyc | Bin 0 -> 933 bytes .../__pip-runner__.cpython-311.pyc | Bin 0 -> 2552 bytes .../site-packages/pip/_internal/__init__.py | 18 + .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 930 bytes .../__pycache__/build_env.cpython-311.pyc | Bin 0 -> 16119 bytes .../__pycache__/cache.cpython-311.pyc | Bin 0 -> 14434 bytes .../__pycache__/configuration.cpython-311.pyc | Bin 0 -> 19825 bytes .../__pycache__/exceptions.cpython-311.pyc | Bin 0 -> 37489 bytes .../__pycache__/main.cpython-311.pyc | Bin 0 -> 799 bytes .../__pycache__/pyproject.cpython-311.pyc | Bin 0 -> 5657 bytes .../self_outdated_check.cpython-311.pyc | Bin 0 -> 11814 bytes .../__pycache__/wheel_builder.cpython-311.pyc | Bin 0 -> 15215 bytes .../site-packages/pip/_internal/build_env.py | 311 + .../site-packages/pip/_internal/cache.py | 290 + .../pip/_internal/cli/__init__.py | 4 + .../cli/__pycache__/__init__.cpython-311.pyc | Bin 0 -> 334 bytes .../autocompletion.cpython-311.pyc | Bin 0 -> 10289 bytes .../__pycache__/base_command.cpython-311.pyc | Bin 0 -> 11908 bytes .../__pycache__/cmdoptions.cpython-311.pyc | Bin 0 -> 33814 bytes .../command_context.cpython-311.pyc | Bin 0 -> 2156 bytes .../cli/__pycache__/main.cpython-311.pyc | Bin 0 -> 2626 bytes .../__pycache__/main_parser.cpython-311.pyc | Bin 0 -> 5570 bytes .../cli/__pycache__/parser.cpython-311.pyc | Bin 0 -> 16995 bytes .../__pycache__/progress_bars.cpython-311.pyc | Bin 0 -> 3218 bytes .../__pycache__/req_command.cpython-311.pyc | Bin 0 -> 20373 bytes .../cli/__pycache__/spinners.cpython-311.pyc | Bin 0 -> 8883 bytes .../__pycache__/status_codes.cpython-311.pyc | Bin 0 -> 422 bytes .../pip/_internal/cli/autocompletion.py | 172 + .../pip/_internal/cli/base_command.py | 236 + .../pip/_internal/cli/cmdoptions.py | 1074 ++ .../pip/_internal/cli/command_context.py | 27 + .../site-packages/pip/_internal/cli/main.py | 79 + .../pip/_internal/cli/main_parser.py | 134 + .../site-packages/pip/_internal/cli/parser.py | 294 + .../pip/_internal/cli/progress_bars.py | 68 + .../pip/_internal/cli/req_command.py | 505 + .../pip/_internal/cli/spinners.py | 159 + .../pip/_internal/cli/status_codes.py | 6 + .../pip/_internal/commands/__init__.py | 132 + .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 4502 bytes .../__pycache__/cache.cpython-311.pyc | Bin 0 -> 10922 bytes .../__pycache__/check.cpython-311.pyc | Bin 0 -> 2457 bytes .../__pycache__/completion.cpython-311.pyc | Bin 0 -> 5672 bytes .../__pycache__/configuration.cpython-311.pyc | Bin 0 -> 14900 bytes .../__pycache__/debug.cpython-311.pyc | Bin 0 -> 12245 bytes .../__pycache__/download.cpython-311.pyc | Bin 0 -> 7991 bytes .../__pycache__/freeze.cpython-311.pyc | Bin 0 -> 4707 bytes .../commands/__pycache__/hash.cpython-311.pyc | Bin 0 -> 3404 bytes .../commands/__pycache__/help.cpython-311.pyc | Bin 0 -> 2016 bytes .../__pycache__/index.cpython-311.pyc | Bin 0 -> 7770 bytes .../__pycache__/inspect.cpython-311.pyc | Bin 0 -> 4492 bytes .../__pycache__/install.cpython-311.pyc | Bin 0 -> 31192 bytes .../commands/__pycache__/list.cpython-311.pyc | Bin 0 -> 17296 bytes .../__pycache__/search.cpython-311.pyc | Bin 0 -> 8998 bytes .../commands/__pycache__/show.cpython-311.pyc | Bin 0 -> 11341 bytes .../__pycache__/uninstall.cpython-311.pyc | Bin 0 -> 5192 bytes .../__pycache__/wheel.cpython-311.pyc | Bin 0 -> 9448 bytes .../pip/_internal/commands/cache.py | 225 + .../pip/_internal/commands/check.py | 54 + .../pip/_internal/commands/completion.py | 130 + .../pip/_internal/commands/configuration.py | 280 + .../pip/_internal/commands/debug.py | 201 + .../pip/_internal/commands/download.py | 147 + .../pip/_internal/commands/freeze.py | 108 + .../pip/_internal/commands/hash.py | 59 + .../pip/_internal/commands/help.py | 41 + .../pip/_internal/commands/index.py | 139 + .../pip/_internal/commands/inspect.py | 92 + .../pip/_internal/commands/install.py | 774 ++ .../pip/_internal/commands/list.py | 368 + .../pip/_internal/commands/search.py | 174 + .../pip/_internal/commands/show.py | 189 + .../pip/_internal/commands/uninstall.py | 113 + .../pip/_internal/commands/wheel.py | 183 + .../pip/_internal/configuration.py | 383 + .../pip/_internal/distributions/__init__.py | 21 + .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 1084 bytes .../__pycache__/base.cpython-311.pyc | Bin 0 -> 3176 bytes .../__pycache__/installed.cpython-311.pyc | Bin 0 -> 1893 bytes .../__pycache__/sdist.cpython-311.pyc | Bin 0 -> 9416 bytes .../__pycache__/wheel.cpython-311.pyc | Bin 0 -> 2484 bytes .../pip/_internal/distributions/base.py | 51 + .../pip/_internal/distributions/installed.py | 29 + .../pip/_internal/distributions/sdist.py | 156 + .../pip/_internal/distributions/wheel.py | 40 + .../site-packages/pip/_internal/exceptions.py | 728 ++ .../pip/_internal/index/__init__.py | 2 + .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 288 bytes .../__pycache__/collector.cpython-311.pyc | Bin 0 -> 24633 bytes .../package_finder.cpython-311.pyc | Bin 0 -> 44197 bytes .../index/__pycache__/sources.cpython-311.pyc | Bin 0 -> 14004 bytes .../pip/_internal/index/collector.py | 507 + .../pip/_internal/index/package_finder.py | 1027 ++ .../pip/_internal/index/sources.py | 285 + .../pip/_internal/locations/__init__.py | 467 + .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 18226 bytes .../__pycache__/_distutils.cpython-311.pyc | Bin 0 -> 7600 bytes .../__pycache__/_sysconfig.cpython-311.pyc | Bin 0 -> 8930 bytes .../__pycache__/base.cpython-311.pyc | Bin 0 -> 4051 bytes .../pip/_internal/locations/_distutils.py | 172 + .../pip/_internal/locations/_sysconfig.py | 213 + .../pip/_internal/locations/base.py | 81 + .../site-packages/pip/_internal/main.py | 12 + .../pip/_internal/metadata/__init__.py | 128 + .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 6550 bytes .../__pycache__/_json.cpython-311.pyc | Bin 0 -> 3613 bytes .../metadata/__pycache__/base.cpython-311.pyc | Bin 0 -> 38727 bytes .../__pycache__/pkg_resources.cpython-311.pyc | Bin 0 -> 17584 bytes .../pip/_internal/metadata/_json.py | 84 + .../pip/_internal/metadata/base.py | 702 ++ .../_internal/metadata/importlib/__init__.py | 6 + .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 439 bytes .../__pycache__/_compat.cpython-311.pyc | Bin 0 -> 3612 bytes .../__pycache__/_dists.cpython-311.pyc | Bin 0 -> 14922 bytes .../__pycache__/_envs.cpython-311.pyc | Bin 0 -> 12555 bytes .../_internal/metadata/importlib/_compat.py | 55 + .../_internal/metadata/importlib/_dists.py | 227 + .../pip/_internal/metadata/importlib/_envs.py | 189 + .../pip/_internal/metadata/pkg_resources.py | 278 + .../pip/_internal/models/__init__.py | 2 + .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 322 bytes .../__pycache__/candidate.cpython-311.pyc | Bin 0 -> 2130 bytes .../__pycache__/direct_url.cpython-311.pyc | Bin 0 -> 12815 bytes .../format_control.cpython-311.pyc | Bin 0 -> 4676 bytes .../models/__pycache__/index.cpython-311.pyc | Bin 0 -> 1947 bytes .../installation_report.cpython-311.pyc | Bin 0 -> 2653 bytes .../models/__pycache__/link.cpython-311.pyc | Bin 0 -> 28666 bytes .../models/__pycache__/scheme.cpython-311.pyc | Bin 0 -> 1313 bytes .../__pycache__/search_scope.cpython-311.pyc | Bin 0 -> 5876 bytes .../selection_prefs.cpython-311.pyc | Bin 0 -> 2044 bytes .../__pycache__/target_python.cpython-311.pyc | Bin 0 -> 5343 bytes .../models/__pycache__/wheel.cpython-311.pyc | Bin 0 -> 6469 bytes .../pip/_internal/models/candidate.py | 30 + .../pip/_internal/models/direct_url.py | 235 + .../pip/_internal/models/format_control.py | 78 + .../pip/_internal/models/index.py | 28 + .../_internal/models/installation_report.py | 56 + .../pip/_internal/models/link.py | 579 ++ .../pip/_internal/models/scheme.py | 31 + .../pip/_internal/models/search_scope.py | 132 + .../pip/_internal/models/selection_prefs.py | 51 + .../pip/_internal/models/target_python.py | 122 + .../pip/_internal/models/wheel.py | 92 + .../pip/_internal/network/__init__.py | 2 + .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 310 bytes .../network/__pycache__/auth.cpython-311.pyc | Bin 0 -> 24037 bytes .../network/__pycache__/cache.cpython-311.pyc | Bin 0 -> 7978 bytes .../__pycache__/download.cpython-311.pyc | Bin 0 -> 9588 bytes .../__pycache__/lazy_wheel.cpython-311.pyc | Bin 0 -> 13071 bytes .../__pycache__/session.cpython-311.pyc | Bin 0 -> 21487 bytes .../network/__pycache__/utils.cpython-311.pyc | Bin 0 -> 2459 bytes .../__pycache__/xmlrpc.cpython-311.pyc | Bin 0 -> 3296 bytes .../pip/_internal/network/auth.py | 561 ++ .../pip/_internal/network/cache.py | 106 + .../pip/_internal/network/download.py | 186 + .../pip/_internal/network/lazy_wheel.py | 210 + .../pip/_internal/network/session.py | 520 + .../pip/_internal/network/utils.py | 96 + .../pip/_internal/network/xmlrpc.py | 62 + .../pip/_internal/operations/__init__.py | 0 .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 248 bytes .../__pycache__/check.cpython-311.pyc | Bin 0 -> 8511 bytes .../__pycache__/freeze.cpython-311.pyc | Bin 0 -> 11644 bytes .../__pycache__/prepare.cpython-311.pyc | Bin 0 -> 27869 bytes .../_internal/operations/build/__init__.py | 0 .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 254 bytes .../__pycache__/build_tracker.cpython-311.pyc | Bin 0 -> 8975 bytes .../__pycache__/metadata.cpython-311.pyc | Bin 0 -> 2325 bytes .../metadata_editable.cpython-311.pyc | Bin 0 -> 2361 bytes .../metadata_legacy.cpython-311.pyc | Bin 0 -> 3761 bytes .../build/__pycache__/wheel.cpython-311.pyc | Bin 0 -> 1991 bytes .../wheel_editable.cpython-311.pyc | Bin 0 -> 2435 bytes .../__pycache__/wheel_legacy.cpython-311.pyc | Bin 0 -> 4542 bytes .../operations/build/build_tracker.py | 139 + .../_internal/operations/build/metadata.py | 39 + .../operations/build/metadata_editable.py | 41 + .../operations/build/metadata_legacy.py | 74 + .../pip/_internal/operations/build/wheel.py | 37 + .../operations/build/wheel_editable.py | 46 + .../operations/build/wheel_legacy.py | 102 + .../pip/_internal/operations/check.py | 187 + .../pip/_internal/operations/freeze.py | 255 + .../_internal/operations/install/__init__.py | 2 + .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 322 bytes .../editable_legacy.cpython-311.pyc | Bin 0 -> 2235 bytes .../install/__pycache__/wheel.cpython-311.pyc | Bin 0 -> 40216 bytes .../operations/install/editable_legacy.py | 46 + .../pip/_internal/operations/install/wheel.py | 734 ++ .../pip/_internal/operations/prepare.py | 730 ++ .../site-packages/pip/_internal/pyproject.py | 179 + .../pip/_internal/req/__init__.py | 92 + .../req/__pycache__/__init__.cpython-311.pyc | Bin 0 -> 4435 bytes .../__pycache__/constructors.cpython-311.pyc | Bin 0 -> 23444 bytes .../req/__pycache__/req_file.cpython-311.pyc | Bin 0 -> 23156 bytes .../__pycache__/req_install.cpython-311.pyc | Bin 0 -> 40292 bytes .../req/__pycache__/req_set.cpython-311.pyc | Bin 0 -> 8004 bytes .../__pycache__/req_uninstall.cpython-311.pyc | Bin 0 -> 37369 bytes .../pip/_internal/req/constructors.py | 576 ++ .../pip/_internal/req/req_file.py | 554 ++ .../pip/_internal/req/req_install.py | 923 ++ .../pip/_internal/req/req_set.py | 119 + .../pip/_internal/req/req_uninstall.py | 649 ++ .../pip/_internal/resolution/__init__.py | 0 .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 248 bytes .../__pycache__/base.cpython-311.pyc | Bin 0 -> 1419 bytes .../pip/_internal/resolution/base.py | 20 + .../_internal/resolution/legacy/__init__.py | 0 .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 255 bytes .../__pycache__/resolver.cpython-311.pyc | Bin 0 -> 23712 bytes .../_internal/resolution/legacy/resolver.py | 598 ++ .../resolution/resolvelib/__init__.py | 0 .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 259 bytes .../__pycache__/base.cpython-311.pyc | Bin 0 -> 9347 bytes .../__pycache__/candidates.cpython-311.pyc | Bin 0 -> 31441 bytes .../__pycache__/factory.cpython-311.pyc | Bin 0 -> 35829 bytes .../found_candidates.cpython-311.pyc | Bin 0 -> 6807 bytes .../__pycache__/provider.cpython-311.pyc | Bin 0 -> 11498 bytes .../__pycache__/reporter.cpython-311.pyc | Bin 0 -> 5489 bytes .../__pycache__/requirements.cpython-311.pyc | Bin 0 -> 12261 bytes .../__pycache__/resolver.cpython-311.pyc | Bin 0 -> 13499 bytes .../_internal/resolution/resolvelib/base.py | 141 + .../resolution/resolvelib/candidates.py | 597 ++ .../resolution/resolvelib/factory.py | 812 ++ .../resolution/resolvelib/found_candidates.py | 155 + .../resolution/resolvelib/provider.py | 255 + .../resolution/resolvelib/reporter.py | 80 + .../resolution/resolvelib/requirements.py | 166 + .../resolution/resolvelib/resolver.py | 317 + .../pip/_internal/self_outdated_check.py | 248 + .../pip/_internal/utils/__init__.py | 0 .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 243 bytes .../__pycache__/_jaraco_text.cpython-311.pyc | Bin 0 -> 4807 bytes .../utils/__pycache__/_log.cpython-311.pyc | Bin 0 -> 2064 bytes .../utils/__pycache__/appdirs.cpython-311.pyc | Bin 0 -> 2602 bytes .../utils/__pycache__/compat.cpython-311.pyc | Bin 0 -> 2310 bytes .../compatibility_tags.cpython-311.pyc | Bin 0 -> 6802 bytes .../__pycache__/datetime.cpython-311.pyc | Bin 0 -> 760 bytes .../__pycache__/deprecation.cpython-311.pyc | Bin 0 -> 4729 bytes .../direct_url_helpers.cpython-311.pyc | Bin 0 -> 3764 bytes .../__pycache__/egg_link.cpython-311.pyc | Bin 0 -> 3598 bytes .../__pycache__/encoding.cpython-311.pyc | Bin 0 -> 2366 bytes .../__pycache__/entrypoints.cpython-311.pyc | Bin 0 -> 4288 bytes .../__pycache__/filesystem.cpython-311.pyc | Bin 0 -> 8273 bytes .../__pycache__/filetypes.cpython-311.pyc | Bin 0 -> 1359 bytes .../utils/__pycache__/glibc.cpython-311.pyc | Bin 0 -> 2655 bytes .../utils/__pycache__/hashes.cpython-311.pyc | Bin 0 -> 8814 bytes .../utils/__pycache__/logging.cpython-311.pyc | Bin 0 -> 15414 bytes .../utils/__pycache__/misc.cpython-311.pyc | Bin 0 -> 38660 bytes .../utils/__pycache__/models.cpython-311.pyc | Bin 0 -> 2983 bytes .../__pycache__/packaging.cpython-311.pyc | Bin 0 -> 2850 bytes .../setuptools_build.cpython-311.pyc | Bin 0 -> 4915 bytes .../__pycache__/subprocess.cpython-311.pyc | Bin 0 -> 9942 bytes .../__pycache__/temp_dir.cpython-311.pyc | Bin 0 -> 13427 bytes .../__pycache__/unpacking.cpython-311.pyc | Bin 0 -> 12939 bytes .../utils/__pycache__/urls.cpython-311.pyc | Bin 0 -> 2735 bytes .../__pycache__/virtualenv.cpython-311.pyc | Bin 0 -> 4983 bytes .../utils/__pycache__/wheel.cpython-311.pyc | Bin 0 -> 7071 bytes .../pip/_internal/utils/_jaraco_text.py | 109 + .../site-packages/pip/_internal/utils/_log.py | 38 + .../pip/_internal/utils/appdirs.py | 52 + .../pip/_internal/utils/compat.py | 63 + .../pip/_internal/utils/compatibility_tags.py | 165 + .../pip/_internal/utils/datetime.py | 11 + .../pip/_internal/utils/deprecation.py | 120 + .../pip/_internal/utils/direct_url_helpers.py | 87 + .../pip/_internal/utils/egg_link.py | 80 + .../pip/_internal/utils/encoding.py | 36 + .../pip/_internal/utils/entrypoints.py | 84 + .../pip/_internal/utils/filesystem.py | 153 + .../pip/_internal/utils/filetypes.py | 27 + .../pip/_internal/utils/glibc.py | 88 + .../pip/_internal/utils/hashes.py | 151 + .../pip/_internal/utils/logging.py | 348 + .../site-packages/pip/_internal/utils/misc.py | 783 ++ .../pip/_internal/utils/models.py | 39 + .../pip/_internal/utils/packaging.py | 57 + .../pip/_internal/utils/setuptools_build.py | 146 + .../pip/_internal/utils/subprocess.py | 260 + .../pip/_internal/utils/temp_dir.py | 296 + .../pip/_internal/utils/unpacking.py | 257 + .../site-packages/pip/_internal/utils/urls.py | 62 + .../pip/_internal/utils/virtualenv.py | 104 + .../pip/_internal/utils/wheel.py | 134 + .../pip/_internal/vcs/__init__.py | 15 + .../vcs/__pycache__/__init__.cpython-311.pyc | Bin 0 -> 678 bytes .../vcs/__pycache__/bazaar.cpython-311.pyc | Bin 0 -> 5903 bytes .../vcs/__pycache__/git.cpython-311.pyc | Bin 0 -> 21418 bytes .../vcs/__pycache__/mercurial.cpython-311.pyc | Bin 0 -> 8771 bytes .../__pycache__/subversion.cpython-311.pyc | Bin 0 -> 14646 bytes .../versioncontrol.cpython-311.pyc | Bin 0 -> 31810 bytes .../site-packages/pip/_internal/vcs/bazaar.py | 112 + .../site-packages/pip/_internal/vcs/git.py | 526 + .../pip/_internal/vcs/mercurial.py | 163 + .../pip/_internal/vcs/subversion.py | 324 + .../pip/_internal/vcs/versioncontrol.py | 705 ++ .../pip/_internal/wheel_builder.py | 354 + .../site-packages/pip/_vendor/__init__.py | 121 + .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 5706 bytes .../_vendor/__pycache__/six.cpython-311.pyc | Bin 0 -> 46458 bytes .../typing_extensions.cpython-311.pyc | Bin 0 -> 131628 bytes .../pip/_vendor/cachecontrol/__init__.py | 28 + .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 1022 bytes .../__pycache__/_cmd.cpython-311.pyc | Bin 0 -> 3073 bytes .../__pycache__/adapter.cpython-311.pyc | Bin 0 -> 6949 bytes .../__pycache__/cache.cpython-311.pyc | Bin 0 -> 4546 bytes .../__pycache__/controller.cpython-311.pyc | Bin 0 -> 18299 bytes .../__pycache__/filewrapper.cpython-311.pyc | Bin 0 -> 4802 bytes .../__pycache__/heuristics.cpython-311.pyc | Bin 0 -> 7605 bytes .../__pycache__/serialize.cpython-311.pyc | Bin 0 -> 7081 bytes .../__pycache__/wrapper.cpython-311.pyc | Bin 0 -> 1914 bytes .../pip/_vendor/cachecontrol/_cmd.py | 70 + .../pip/_vendor/cachecontrol/adapter.py | 161 + .../pip/_vendor/cachecontrol/cache.py | 74 + .../_vendor/cachecontrol/caches/__init__.py | 8 + .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 523 bytes .../__pycache__/file_cache.cpython-311.pyc | Bin 0 -> 9029 bytes .../__pycache__/redis_cache.cpython-311.pyc | Bin 0 -> 3130 bytes .../_vendor/cachecontrol/caches/file_cache.py | 181 + .../cachecontrol/caches/redis_cache.py | 48 + .../pip/_vendor/cachecontrol/controller.py | 494 + .../pip/_vendor/cachecontrol/filewrapper.py | 119 + .../pip/_vendor/cachecontrol/heuristics.py | 154 + .../pip/_vendor/cachecontrol/py.typed | 0 .../pip/_vendor/cachecontrol/serialize.py | 206 + .../pip/_vendor/cachecontrol/wrapper.py | 43 + .../pip/_vendor/certifi/__init__.py | 4 + .../pip/_vendor/certifi/__main__.py | 12 + .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 385 bytes .../__pycache__/__main__.cpython-311.pyc | Bin 0 -> 786 bytes .../certifi/__pycache__/core.cpython-311.pyc | Bin 0 -> 3408 bytes .../pip/_vendor/certifi/cacert.pem | 4635 +++++++++ .../site-packages/pip/_vendor/certifi/core.py | 108 + .../pip/_vendor/certifi/py.typed | 0 .../pip/_vendor/chardet/__init__.py | 115 + .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 5117 bytes .../__pycache__/big5freq.cpython-311.pyc | Bin 0 -> 27247 bytes .../__pycache__/big5prober.cpython-311.pyc | Bin 0 -> 1722 bytes .../chardistribution.cpython-311.pyc | Bin 0 -> 11314 bytes .../charsetgroupprober.cpython-311.pyc | Bin 0 -> 4344 bytes .../__pycache__/charsetprober.cpython-311.pyc | Bin 0 -> 5590 bytes .../codingstatemachine.cpython-311.pyc | Bin 0 -> 4041 bytes .../codingstatemachinedict.cpython-311.pyc | Bin 0 -> 997 bytes .../__pycache__/cp949prober.cpython-311.pyc | Bin 0 -> 1731 bytes .../chardet/__pycache__/enums.cpython-311.pyc | Bin 0 -> 3432 bytes .../__pycache__/escprober.cpython-311.pyc | Bin 0 -> 4948 bytes .../chardet/__pycache__/escsm.cpython-311.pyc | Bin 0 -> 12687 bytes .../__pycache__/eucjpprober.cpython-311.pyc | Bin 0 -> 4774 bytes .../__pycache__/euckrfreq.cpython-311.pyc | Bin 0 -> 12130 bytes .../__pycache__/euckrprober.cpython-311.pyc | Bin 0 -> 1723 bytes .../__pycache__/euctwfreq.cpython-311.pyc | Bin 0 -> 27252 bytes .../__pycache__/euctwprober.cpython-311.pyc | Bin 0 -> 1723 bytes .../__pycache__/gb2312freq.cpython-311.pyc | Bin 0 -> 19174 bytes .../__pycache__/gb2312prober.cpython-311.pyc | Bin 0 -> 1738 bytes .../__pycache__/hebrewprober.cpython-311.pyc | Bin 0 -> 5727 bytes .../__pycache__/jisfreq.cpython-311.pyc | Bin 0 -> 22203 bytes .../__pycache__/johabfreq.cpython-311.pyc | Bin 0 -> 84707 bytes .../__pycache__/johabprober.cpython-311.pyc | Bin 0 -> 1729 bytes .../__pycache__/jpcntx.cpython-311.pyc | Bin 0 -> 40211 bytes .../langbulgarianmodel.cpython-311.pyc | Bin 0 -> 85881 bytes .../langgreekmodel.cpython-311.pyc | Bin 0 -> 79303 bytes .../langhebrewmodel.cpython-311.pyc | Bin 0 -> 80065 bytes .../langhungarianmodel.cpython-311.pyc | Bin 0 -> 85835 bytes .../langrussianmodel.cpython-311.pyc | Bin 0 -> 108782 bytes .../__pycache__/langthaimodel.cpython-311.pyc | Bin 0 -> 80243 bytes .../langturkishmodel.cpython-311.pyc | Bin 0 -> 80082 bytes .../__pycache__/latin1prober.cpython-311.pyc | Bin 0 -> 7378 bytes .../macromanprober.cpython-311.pyc | Bin 0 -> 7545 bytes .../mbcharsetprober.cpython-311.pyc | Bin 0 -> 4166 bytes .../mbcsgroupprober.cpython-311.pyc | Bin 0 -> 2036 bytes .../__pycache__/mbcssm.cpython-311.pyc | Bin 0 -> 31776 bytes .../__pycache__/resultdict.cpython-311.pyc | Bin 0 -> 815 bytes .../sbcharsetprober.cpython-311.pyc | Bin 0 -> 6441 bytes .../sbcsgroupprober.cpython-311.pyc | Bin 0 -> 2986 bytes .../__pycache__/sjisprober.cpython-311.pyc | Bin 0 -> 4879 bytes .../universaldetector.cpython-311.pyc | Bin 0 -> 12507 bytes .../__pycache__/utf1632prober.cpython-311.pyc | Bin 0 -> 10627 bytes .../__pycache__/utf8prober.cpython-311.pyc | Bin 0 -> 3514 bytes .../__pycache__/version.cpython-311.pyc | Bin 0 -> 550 bytes .../pip/_vendor/chardet/big5freq.py | 386 + .../pip/_vendor/chardet/big5prober.py | 47 + .../pip/_vendor/chardet/chardistribution.py | 261 + .../pip/_vendor/chardet/charsetgroupprober.py | 106 + .../pip/_vendor/chardet/charsetprober.py | 147 + .../pip/_vendor/chardet/cli/__init__.py | 0 .../cli/__pycache__/__init__.cpython-311.pyc | Bin 0 -> 247 bytes .../__pycache__/chardetect.cpython-311.pyc | Bin 0 -> 4386 bytes .../pip/_vendor/chardet/cli/chardetect.py | 112 + .../pip/_vendor/chardet/codingstatemachine.py | 90 + .../_vendor/chardet/codingstatemachinedict.py | 19 + .../pip/_vendor/chardet/cp949prober.py | 49 + .../pip/_vendor/chardet/enums.py | 85 + .../pip/_vendor/chardet/escprober.py | 102 + .../pip/_vendor/chardet/escsm.py | 261 + .../pip/_vendor/chardet/eucjpprober.py | 102 + .../pip/_vendor/chardet/euckrfreq.py | 196 + .../pip/_vendor/chardet/euckrprober.py | 47 + .../pip/_vendor/chardet/euctwfreq.py | 388 + .../pip/_vendor/chardet/euctwprober.py | 47 + .../pip/_vendor/chardet/gb2312freq.py | 284 + .../pip/_vendor/chardet/gb2312prober.py | 47 + .../pip/_vendor/chardet/hebrewprober.py | 316 + .../pip/_vendor/chardet/jisfreq.py | 325 + .../pip/_vendor/chardet/johabfreq.py | 2382 +++++ .../pip/_vendor/chardet/johabprober.py | 47 + .../pip/_vendor/chardet/jpcntx.py | 238 + .../pip/_vendor/chardet/langbulgarianmodel.py | 4649 +++++++++ .../pip/_vendor/chardet/langgreekmodel.py | 4397 +++++++++ .../pip/_vendor/chardet/langhebrewmodel.py | 4380 +++++++++ .../pip/_vendor/chardet/langhungarianmodel.py | 4649 +++++++++ .../pip/_vendor/chardet/langrussianmodel.py | 5725 +++++++++++ .../pip/_vendor/chardet/langthaimodel.py | 4380 +++++++++ .../pip/_vendor/chardet/langturkishmodel.py | 4380 +++++++++ .../pip/_vendor/chardet/latin1prober.py | 147 + .../pip/_vendor/chardet/macromanprober.py | 162 + .../pip/_vendor/chardet/mbcharsetprober.py | 95 + .../pip/_vendor/chardet/mbcsgroupprober.py | 57 + .../pip/_vendor/chardet/mbcssm.py | 661 ++ .../pip/_vendor/chardet/metadata/__init__.py | 0 .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 252 bytes .../__pycache__/languages.cpython-311.pyc | Bin 0 -> 10852 bytes .../pip/_vendor/chardet/metadata/languages.py | 352 + .../pip/_vendor/chardet/py.typed | 0 .../pip/_vendor/chardet/resultdict.py | 16 + .../pip/_vendor/chardet/sbcharsetprober.py | 162 + .../pip/_vendor/chardet/sbcsgroupprober.py | 88 + .../pip/_vendor/chardet/sjisprober.py | 105 + .../pip/_vendor/chardet/universaldetector.py | 362 + .../pip/_vendor/chardet/utf1632prober.py | 225 + .../pip/_vendor/chardet/utf8prober.py | 82 + .../pip/_vendor/chardet/version.py | 9 + .../pip/_vendor/colorama/__init__.py | 7 + .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 619 bytes .../colorama/__pycache__/ansi.cpython-311.pyc | Bin 0 -> 4617 bytes .../__pycache__/ansitowin32.cpython-311.pyc | Bin 0 -> 16263 bytes .../__pycache__/initialise.cpython-311.pyc | Bin 0 -> 3980 bytes .../__pycache__/win32.cpython-311.pyc | Bin 0 -> 7968 bytes .../__pycache__/winterm.cpython-311.pyc | Bin 0 -> 9194 bytes .../pip/_vendor/colorama/ansi.py | 102 + .../pip/_vendor/colorama/ansitowin32.py | 277 + .../pip/_vendor/colorama/initialise.py | 121 + .../pip/_vendor/colorama/tests/__init__.py | 1 + .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 250 bytes .../__pycache__/ansi_test.cpython-311.pyc | Bin 0 -> 5895 bytes .../ansitowin32_test.cpython-311.pyc | Bin 0 -> 21562 bytes .../initialise_test.cpython-311.pyc | Bin 0 -> 14189 bytes .../__pycache__/isatty_test.cpython-311.pyc | Bin 0 -> 6754 bytes .../tests/__pycache__/utils.cpython-311.pyc | Bin 0 -> 2929 bytes .../__pycache__/winterm_test.cpython-311.pyc | Bin 0 -> 7282 bytes .../pip/_vendor/colorama/tests/ansi_test.py | 76 + .../colorama/tests/ansitowin32_test.py | 294 + .../_vendor/colorama/tests/initialise_test.py | 189 + .../pip/_vendor/colorama/tests/isatty_test.py | 57 + .../pip/_vendor/colorama/tests/utils.py | 49 + .../_vendor/colorama/tests/winterm_test.py | 131 + .../pip/_vendor/colorama/win32.py | 180 + .../pip/_vendor/colorama/winterm.py | 195 + .../pip/_vendor/distlib/__init__.py | 33 + .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 1512 bytes .../__pycache__/compat.cpython-311.pyc | Bin 0 -> 52449 bytes .../__pycache__/database.cpython-311.pyc | Bin 0 -> 72230 bytes .../distlib/__pycache__/index.cpython-311.pyc | Bin 0 -> 26711 bytes .../__pycache__/locators.cpython-311.pyc | Bin 0 -> 65836 bytes .../__pycache__/manifest.cpython-311.pyc | Bin 0 -> 17061 bytes .../__pycache__/markers.cpython-311.pyc | Bin 0 -> 8595 bytes .../__pycache__/metadata.cpython-311.pyc | Bin 0 -> 47476 bytes .../__pycache__/resources.cpython-311.pyc | Bin 0 -> 19037 bytes .../__pycache__/scripts.cpython-311.pyc | Bin 0 -> 21289 bytes .../distlib/__pycache__/util.cpython-311.pyc | Bin 0 -> 98240 bytes .../__pycache__/version.cpython-311.pyc | Bin 0 -> 34859 bytes .../distlib/__pycache__/wheel.cpython-311.pyc | Bin 0 -> 59522 bytes .../pip/_vendor/distlib/compat.py | 1138 +++ .../pip/_vendor/distlib/database.py | 1359 +++ .../pip/_vendor/distlib/index.py | 508 + .../pip/_vendor/distlib/locators.py | 1303 +++ .../pip/_vendor/distlib/manifest.py | 384 + .../pip/_vendor/distlib/markers.py | 167 + .../pip/_vendor/distlib/metadata.py | 1068 ++ .../pip/_vendor/distlib/resources.py | 358 + .../pip/_vendor/distlib/scripts.py | 452 + .../site-packages/pip/_vendor/distlib/t32.exe | Bin 0 -> 97792 bytes .../pip/_vendor/distlib/t64-arm.exe | Bin 0 -> 182784 bytes .../site-packages/pip/_vendor/distlib/t64.exe | Bin 0 -> 108032 bytes .../site-packages/pip/_vendor/distlib/util.py | 2025 ++++ .../pip/_vendor/distlib/version.py | 751 ++ .../site-packages/pip/_vendor/distlib/w32.exe | Bin 0 -> 91648 bytes .../pip/_vendor/distlib/w64-arm.exe | Bin 0 -> 168448 bytes .../site-packages/pip/_vendor/distlib/w64.exe | Bin 0 -> 101888 bytes .../pip/_vendor/distlib/wheel.py | 1099 +++ .../pip/_vendor/distro/__init__.py | 54 + .../pip/_vendor/distro/__main__.py | 4 + .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 1241 bytes .../__pycache__/__main__.cpython-311.pyc | Bin 0 -> 375 bytes .../distro/__pycache__/distro.cpython-311.pyc | Bin 0 -> 57774 bytes .../pip/_vendor/distro/distro.py | 1399 +++ .../site-packages/pip/_vendor/distro/py.typed | 0 .../pip/_vendor/idna/__init__.py | 44 + .../idna/__pycache__/__init__.cpython-311.pyc | Bin 0 -> 1142 bytes .../idna/__pycache__/codec.cpython-311.pyc | Bin 0 -> 5433 bytes .../idna/__pycache__/compat.cpython-311.pyc | Bin 0 -> 1059 bytes .../idna/__pycache__/core.cpython-311.pyc | Bin 0 -> 19494 bytes .../idna/__pycache__/idnadata.cpython-311.pyc | Bin 0 -> 39018 bytes .../__pycache__/intranges.cpython-311.pyc | Bin 0 -> 3027 bytes .../__pycache__/package_data.cpython-311.pyc | Bin 0 -> 262 bytes .../__pycache__/uts46data.cpython-311.pyc | Bin 0 -> 163242 bytes .../site-packages/pip/_vendor/idna/codec.py | 112 + .../site-packages/pip/_vendor/idna/compat.py | 13 + .../site-packages/pip/_vendor/idna/core.py | 400 + .../pip/_vendor/idna/idnadata.py | 2151 ++++ .../pip/_vendor/idna/intranges.py | 54 + .../pip/_vendor/idna/package_data.py | 2 + .../site-packages/pip/_vendor/idna/py.typed | 0 .../pip/_vendor/idna/uts46data.py | 8600 ++++++++++++++++ .../pip/_vendor/msgpack/__init__.py | 57 + .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 2121 bytes .../__pycache__/exceptions.cpython-311.pyc | Bin 0 -> 2422 bytes .../msgpack/__pycache__/ext.cpython-311.pyc | Bin 0 -> 9207 bytes .../__pycache__/fallback.cpython-311.pyc | Bin 0 -> 47194 bytes .../pip/_vendor/msgpack/exceptions.py | 48 + .../site-packages/pip/_vendor/msgpack/ext.py | 193 + .../pip/_vendor/msgpack/fallback.py | 1010 ++ .../pip/_vendor/packaging/__about__.py | 26 + .../pip/_vendor/packaging/__init__.py | 25 + .../__pycache__/__about__.cpython-311.pyc | Bin 0 -> 686 bytes .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 607 bytes .../__pycache__/_manylinux.cpython-311.pyc | Bin 0 -> 13273 bytes .../__pycache__/_musllinux.cpython-311.pyc | Bin 0 -> 8041 bytes .../__pycache__/_structures.cpython-311.pyc | Bin 0 -> 3729 bytes .../__pycache__/markers.cpython-311.pyc | Bin 0 -> 16569 bytes .../__pycache__/requirements.cpython-311.pyc | Bin 0 -> 7684 bytes .../__pycache__/specifiers.cpython-311.pyc | Bin 0 -> 34407 bytes .../__pycache__/tags.cpython-311.pyc | Bin 0 -> 21392 bytes .../__pycache__/utils.cpython-311.pyc | Bin 0 -> 6727 bytes .../__pycache__/version.cpython-311.pyc | Bin 0 -> 21919 bytes .../pip/_vendor/packaging/_manylinux.py | 301 + .../pip/_vendor/packaging/_musllinux.py | 136 + .../pip/_vendor/packaging/_structures.py | 61 + .../pip/_vendor/packaging/markers.py | 304 + .../pip/_vendor/packaging/py.typed | 0 .../pip/_vendor/packaging/requirements.py | 146 + .../pip/_vendor/packaging/specifiers.py | 802 ++ .../pip/_vendor/packaging/tags.py | 487 + .../pip/_vendor/packaging/utils.py | 136 + .../pip/_vendor/packaging/version.py | 504 + .../pip/_vendor/pkg_resources/__init__.py | 3361 +++++++ .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 160187 bytes .../pip/_vendor/platformdirs/__init__.py | 566 ++ .../pip/_vendor/platformdirs/__main__.py | 53 + .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 17540 bytes .../__pycache__/__main__.cpython-311.pyc | Bin 0 -> 2320 bytes .../__pycache__/android.cpython-311.pyc | Bin 0 -> 10506 bytes .../__pycache__/api.cpython-311.pyc | Bin 0 -> 10599 bytes .../__pycache__/macos.cpython-311.pyc | Bin 0 -> 6111 bytes .../__pycache__/unix.cpython-311.pyc | Bin 0 -> 13817 bytes .../__pycache__/version.cpython-311.pyc | Bin 0 -> 357 bytes .../__pycache__/windows.cpython-311.pyc | Bin 0 -> 13985 bytes .../pip/_vendor/platformdirs/android.py | 210 + .../pip/_vendor/platformdirs/api.py | 223 + .../pip/_vendor/platformdirs/macos.py | 91 + .../pip/_vendor/platformdirs/py.typed | 0 .../pip/_vendor/platformdirs/unix.py | 223 + .../pip/_vendor/platformdirs/version.py | 4 + .../pip/_vendor/platformdirs/windows.py | 255 + .../pip/_vendor/pygments/__init__.py | 82 + .../pip/_vendor/pygments/__main__.py | 17 + .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 3876 bytes .../__pycache__/__main__.cpython-311.pyc | Bin 0 -> 825 bytes .../__pycache__/cmdline.cpython-311.pyc | Bin 0 -> 30336 bytes .../__pycache__/console.cpython-311.pyc | Bin 0 -> 3088 bytes .../__pycache__/filter.cpython-311.pyc | Bin 0 -> 3549 bytes .../__pycache__/formatter.cpython-311.pyc | Bin 0 -> 4864 bytes .../__pycache__/lexer.cpython-311.pyc | Bin 0 -> 42352 bytes .../__pycache__/modeline.cpython-311.pyc | Bin 0 -> 1768 bytes .../__pycache__/plugin.cpython-311.pyc | Bin 0 -> 3781 bytes .../__pycache__/regexopt.cpython-311.pyc | Bin 0 -> 5075 bytes .../__pycache__/scanner.cpython-311.pyc | Bin 0 -> 4930 bytes .../__pycache__/sphinxext.cpython-311.pyc | Bin 0 -> 12875 bytes .../__pycache__/style.cpython-311.pyc | Bin 0 -> 7468 bytes .../__pycache__/token.cpython-311.pyc | Bin 0 -> 7509 bytes .../__pycache__/unistring.cpython-311.pyc | Bin 0 -> 33882 bytes .../pygments/__pycache__/util.cpython-311.pyc | Bin 0 -> 15734 bytes .../pip/_vendor/pygments/cmdline.py | 668 ++ .../pip/_vendor/pygments/console.py | 70 + .../pip/_vendor/pygments/filter.py | 71 + .../pip/_vendor/pygments/filters/__init__.py | 940 ++ .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 40149 bytes .../pip/_vendor/pygments/formatter.py | 124 + .../_vendor/pygments/formatters/__init__.py | 158 + .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 7807 bytes .../__pycache__/_mapping.cpython-311.pyc | Bin 0 -> 4267 bytes .../__pycache__/bbcode.cpython-311.pyc | Bin 0 -> 4523 bytes .../__pycache__/groff.cpython-311.pyc | Bin 0 -> 7896 bytes .../__pycache__/html.cpython-311.pyc | Bin 0 -> 42685 bytes .../__pycache__/img.cpython-311.pyc | Bin 0 -> 28613 bytes .../__pycache__/irc.cpython-311.pyc | Bin 0 -> 6449 bytes .../__pycache__/latex.cpython-311.pyc | Bin 0 -> 21849 bytes .../__pycache__/other.cpython-311.pyc | Bin 0 -> 7677 bytes .../__pycache__/pangomarkup.cpython-311.pyc | Bin 0 -> 3221 bytes .../__pycache__/rtf.cpython-311.pyc | Bin 0 -> 6888 bytes .../__pycache__/svg.cpython-311.pyc | Bin 0 -> 9708 bytes .../__pycache__/terminal.cpython-311.pyc | Bin 0 -> 6087 bytes .../__pycache__/terminal256.cpython-311.pyc | Bin 0 -> 16453 bytes .../_vendor/pygments/formatters/_mapping.py | 23 + .../pip/_vendor/pygments/formatters/bbcode.py | 108 + .../pip/_vendor/pygments/formatters/groff.py | 170 + .../pip/_vendor/pygments/formatters/html.py | 989 ++ .../pip/_vendor/pygments/formatters/img.py | 645 ++ .../pip/_vendor/pygments/formatters/irc.py | 154 + .../pip/_vendor/pygments/formatters/latex.py | 521 + .../pip/_vendor/pygments/formatters/other.py | 161 + .../pygments/formatters/pangomarkup.py | 83 + .../pip/_vendor/pygments/formatters/rtf.py | 146 + .../pip/_vendor/pygments/formatters/svg.py | 188 + .../_vendor/pygments/formatters/terminal.py | 127 + .../pygments/formatters/terminal256.py | 338 + .../pip/_vendor/pygments/lexer.py | 943 ++ .../pip/_vendor/pygments/lexers/__init__.py | 362 + .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 16393 bytes .../__pycache__/_mapping.cpython-311.pyc | Bin 0 -> 64835 bytes .../lexers/__pycache__/python.cpython-311.pyc | Bin 0 -> 43349 bytes .../pip/_vendor/pygments/lexers/_mapping.py | 559 ++ .../pip/_vendor/pygments/lexers/python.py | 1198 +++ .../pip/_vendor/pygments/modeline.py | 43 + .../pip/_vendor/pygments/plugin.py | 88 + .../pip/_vendor/pygments/regexopt.py | 91 + .../pip/_vendor/pygments/scanner.py | 104 + .../pip/_vendor/pygments/sphinxext.py | 217 + .../pip/_vendor/pygments/style.py | 197 + .../pip/_vendor/pygments/styles/__init__.py | 103 + .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 4724 bytes .../pip/_vendor/pygments/token.py | 213 + .../pip/_vendor/pygments/unistring.py | 153 + .../pip/_vendor/pygments/util.py | 330 + .../pip/_vendor/pyparsing/__init__.py | 322 + .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 8273 bytes .../__pycache__/actions.cpython-311.pyc | Bin 0 -> 9164 bytes .../__pycache__/common.cpython-311.pyc | Bin 0 -> 14911 bytes .../__pycache__/core.cpython-311.pyc | Bin 0 -> 295484 bytes .../__pycache__/exceptions.cpython-311.pyc | Bin 0 -> 13751 bytes .../__pycache__/helpers.cpython-311.pyc | Bin 0 -> 54170 bytes .../__pycache__/results.cpython-311.pyc | Bin 0 -> 37891 bytes .../__pycache__/testing.cpython-311.pyc | Bin 0 -> 19554 bytes .../__pycache__/unicode.cpython-311.pyc | Bin 0 -> 15242 bytes .../__pycache__/util.cpython-311.pyc | Bin 0 -> 16825 bytes .../pip/_vendor/pyparsing/actions.py | 217 + .../pip/_vendor/pyparsing/common.py | 432 + .../pip/_vendor/pyparsing/core.py | 6115 ++++++++++++ .../pip/_vendor/pyparsing/diagram/__init__.py | 656 ++ .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 28833 bytes .../pip/_vendor/pyparsing/exceptions.py | 299 + .../pip/_vendor/pyparsing/helpers.py | 1100 +++ .../pip/_vendor/pyparsing/py.typed | 0 .../pip/_vendor/pyparsing/results.py | 796 ++ .../pip/_vendor/pyparsing/testing.py | 331 + .../pip/_vendor/pyparsing/unicode.py | 361 + .../pip/_vendor/pyparsing/util.py | 284 + .../pip/_vendor/pyproject_hooks/__init__.py | 23 + .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 750 bytes .../__pycache__/_compat.cpython-311.pyc | Bin 0 -> 448 bytes .../__pycache__/_impl.cpython-311.pyc | Bin 0 -> 16714 bytes .../pip/_vendor/pyproject_hooks/_compat.py | 8 + .../pip/_vendor/pyproject_hooks/_impl.py | 330 + .../pyproject_hooks/_in_process/__init__.py | 18 + .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 1210 bytes .../__pycache__/_in_process.cpython-311.pyc | Bin 0 -> 16532 bytes .../_in_process/_in_process.py | 353 + .../pip/_vendor/requests/__init__.py | 182 + .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 6481 bytes .../__pycache__/__version__.cpython-311.pyc | Bin 0 -> 631 bytes .../_internal_utils.cpython-311.pyc | Bin 0 -> 2195 bytes .../__pycache__/adapters.cpython-311.pyc | Bin 0 -> 23248 bytes .../requests/__pycache__/api.cpython-311.pyc | Bin 0 -> 7548 bytes .../requests/__pycache__/auth.cpython-311.pyc | Bin 0 -> 14675 bytes .../__pycache__/certs.cpython-311.pyc | Bin 0 -> 1027 bytes .../__pycache__/compat.cpython-311.pyc | Bin 0 -> 1853 bytes .../__pycache__/cookies.cpython-311.pyc | Bin 0 -> 27155 bytes .../__pycache__/exceptions.cpython-311.pyc | Bin 0 -> 8570 bytes .../requests/__pycache__/help.cpython-311.pyc | Bin 0 -> 4565 bytes .../__pycache__/hooks.cpython-311.pyc | Bin 0 -> 1295 bytes .../__pycache__/models.cpython-311.pyc | Bin 0 -> 38826 bytes .../__pycache__/packages.cpython-311.pyc | Bin 0 -> 875 bytes .../__pycache__/sessions.cpython-311.pyc | Bin 0 -> 29738 bytes .../__pycache__/status_codes.cpython-311.pyc | Bin 0 -> 6282 bytes .../__pycache__/structures.cpython-311.pyc | Bin 0 -> 6267 bytes .../__pycache__/utils.cpython-311.pyc | Bin 0 -> 40301 bytes .../pip/_vendor/requests/__version__.py | 14 + .../pip/_vendor/requests/_internal_utils.py | 50 + .../pip/_vendor/requests/adapters.py | 538 + .../site-packages/pip/_vendor/requests/api.py | 157 + .../pip/_vendor/requests/auth.py | 315 + .../pip/_vendor/requests/certs.py | 24 + .../pip/_vendor/requests/compat.py | 67 + .../pip/_vendor/requests/cookies.py | 561 ++ .../pip/_vendor/requests/exceptions.py | 141 + .../pip/_vendor/requests/help.py | 131 + .../pip/_vendor/requests/hooks.py | 33 + .../pip/_vendor/requests/models.py | 1034 ++ .../pip/_vendor/requests/packages.py | 16 + .../pip/_vendor/requests/sessions.py | 833 ++ .../pip/_vendor/requests/status_codes.py | 128 + .../pip/_vendor/requests/structures.py | 99 + .../pip/_vendor/requests/utils.py | 1094 +++ .../pip/_vendor/resolvelib/__init__.py | 26 + .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 798 bytes .../__pycache__/providers.cpython-311.pyc | Bin 0 -> 7116 bytes .../__pycache__/reporters.cpython-311.pyc | Bin 0 -> 2880 bytes .../__pycache__/resolvers.cpython-311.pyc | Bin 0 -> 29280 bytes .../__pycache__/structs.cpython-311.pyc | Bin 0 -> 11517 bytes .../pip/_vendor/resolvelib/compat/__init__.py | 0 .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 253 bytes .../collections_abc.cpython-311.pyc | Bin 0 -> 528 bytes .../resolvelib/compat/collections_abc.py | 6 + .../pip/_vendor/resolvelib/providers.py | 133 + .../pip/_vendor/resolvelib/py.typed | 0 .../pip/_vendor/resolvelib/reporters.py | 43 + .../pip/_vendor/resolvelib/resolvers.py | 547 ++ .../pip/_vendor/resolvelib/structs.py | 170 + .../pip/_vendor/rich/__init__.py | 177 + .../pip/_vendor/rich/__main__.py | 274 + .../rich/__pycache__/__init__.cpython-311.pyc | Bin 0 -> 7541 bytes .../rich/__pycache__/__main__.cpython-311.pyc | Bin 0 -> 11619 bytes .../__pycache__/_cell_widths.cpython-311.pyc | Bin 0 -> 7880 bytes .../__pycache__/_emoji_codes.cpython-311.pyc | Bin 0 -> 208567 bytes .../_emoji_replace.cpython-311.pyc | Bin 0 -> 1979 bytes .../_export_format.cpython-311.pyc | Bin 0 -> 2370 bytes .../__pycache__/_extension.cpython-311.pyc | Bin 0 -> 680 bytes .../rich/__pycache__/_fileno.cpython-311.pyc | Bin 0 -> 1022 bytes .../rich/__pycache__/_inspect.cpython-311.pyc | Bin 0 -> 14232 bytes .../__pycache__/_log_render.cpython-311.pyc | Bin 0 -> 4814 bytes .../rich/__pycache__/_loop.cpython-311.pyc | Bin 0 -> 2160 bytes .../__pycache__/_null_file.cpython-311.pyc | Bin 0 -> 4219 bytes .../__pycache__/_palettes.cpython-311.pyc | Bin 0 -> 5296 bytes .../rich/__pycache__/_pick.cpython-311.pyc | Bin 0 -> 840 bytes .../rich/__pycache__/_ratio.cpython-311.pyc | Bin 0 -> 7979 bytes .../__pycache__/_spinners.cpython-311.pyc | Bin 0 -> 13729 bytes .../rich/__pycache__/_stack.cpython-311.pyc | Bin 0 -> 1175 bytes .../rich/__pycache__/_timer.cpython-311.pyc | Bin 0 -> 1028 bytes .../_win32_console.cpython-311.pyc | Bin 0 -> 30216 bytes .../rich/__pycache__/_windows.cpython-311.pyc | Bin 0 -> 2875 bytes .../_windows_renderer.cpython-311.pyc | Bin 0 -> 4066 bytes .../rich/__pycache__/_wrap.cpython-311.pyc | Bin 0 -> 2831 bytes .../rich/__pycache__/abc.cpython-311.pyc | Bin 0 -> 1972 bytes .../rich/__pycache__/align.cpython-311.pyc | Bin 0 -> 13514 bytes .../rich/__pycache__/ansi.cpython-311.pyc | Bin 0 -> 10545 bytes .../rich/__pycache__/bar.cpython-311.pyc | Bin 0 -> 4594 bytes .../rich/__pycache__/box.cpython-311.pyc | Bin 0 -> 13036 bytes .../rich/__pycache__/cells.cpython-311.pyc | Bin 0 -> 6666 bytes .../rich/__pycache__/color.cpython-311.pyc | Bin 0 -> 27850 bytes .../__pycache__/color_triplet.cpython-311.pyc | Bin 0 -> 1920 bytes .../rich/__pycache__/columns.cpython-311.pyc | Bin 0 -> 10691 bytes .../rich/__pycache__/console.cpython-311.pyc | Bin 0 -> 123786 bytes .../__pycache__/constrain.cpython-311.pyc | Bin 0 -> 2512 bytes .../__pycache__/containers.cpython-311.pyc | Bin 0 -> 10853 bytes .../rich/__pycache__/control.cpython-311.pyc | Bin 0 -> 11944 bytes .../default_styles.cpython-311.pyc | Bin 0 -> 12647 bytes .../rich/__pycache__/diagnose.cpython-311.pyc | Bin 0 -> 1867 bytes .../rich/__pycache__/emoji.cpython-311.pyc | Bin 0 -> 4845 bytes .../rich/__pycache__/errors.cpython-311.pyc | Bin 0 -> 2376 bytes .../__pycache__/file_proxy.cpython-311.pyc | Bin 0 -> 4080 bytes .../rich/__pycache__/filesize.cpython-311.pyc | Bin 0 -> 3348 bytes .../__pycache__/highlighter.cpython-311.pyc | Bin 0 -> 11034 bytes .../rich/__pycache__/json.cpython-311.pyc | Bin 0 -> 6591 bytes .../rich/__pycache__/jupyter.cpython-311.pyc | Bin 0 -> 6451 bytes .../rich/__pycache__/layout.cpython-311.pyc | Bin 0 -> 23358 bytes .../rich/__pycache__/live.cpython-311.pyc | Bin 0 -> 21344 bytes .../__pycache__/live_render.cpython-311.pyc | Bin 0 -> 5192 bytes .../rich/__pycache__/logging.cpython-311.pyc | Bin 0 -> 14563 bytes .../rich/__pycache__/markup.cpython-311.pyc | Bin 0 -> 10485 bytes .../rich/__pycache__/measure.cpython-311.pyc | Bin 0 -> 7318 bytes .../rich/__pycache__/padding.cpython-311.pyc | Bin 0 -> 7534 bytes .../rich/__pycache__/pager.cpython-311.pyc | Bin 0 -> 2292 bytes .../rich/__pycache__/palette.cpython-311.pyc | Bin 0 -> 6025 bytes .../rich/__pycache__/panel.cpython-311.pyc | Bin 0 -> 12781 bytes .../rich/__pycache__/pretty.cpython-311.pyc | Bin 0 -> 44394 bytes .../rich/__pycache__/progress.cpython-311.pyc | Bin 0 -> 82661 bytes .../__pycache__/progress_bar.cpython-311.pyc | Bin 0 -> 11059 bytes .../rich/__pycache__/prompt.cpython-311.pyc | Bin 0 -> 16425 bytes .../rich/__pycache__/protocol.cpython-311.pyc | Bin 0 -> 2143 bytes .../rich/__pycache__/region.cpython-311.pyc | Bin 0 -> 706 bytes .../rich/__pycache__/repr.cpython-311.pyc | Bin 0 -> 7673 bytes .../rich/__pycache__/rule.cpython-311.pyc | Bin 0 -> 7212 bytes .../rich/__pycache__/scope.cpython-311.pyc | Bin 0 -> 4398 bytes .../rich/__pycache__/screen.cpython-311.pyc | Bin 0 -> 2821 bytes .../rich/__pycache__/segment.cpython-311.pyc | Bin 0 -> 31651 bytes .../rich/__pycache__/spinner.cpython-311.pyc | Bin 0 -> 6927 bytes .../rich/__pycache__/status.cpython-311.pyc | Bin 0 -> 6805 bytes .../rich/__pycache__/style.cpython-311.pyc | Bin 0 -> 35245 bytes .../rich/__pycache__/styled.cpython-311.pyc | Bin 0 -> 2486 bytes .../rich/__pycache__/syntax.cpython-311.pyc | Bin 0 -> 42696 bytes .../rich/__pycache__/table.cpython-311.pyc | Bin 0 -> 48847 bytes .../terminal_theme.cpython-311.pyc | Bin 0 -> 3752 bytes .../rich/__pycache__/text.cpython-311.pyc | Bin 0 -> 65004 bytes .../rich/__pycache__/theme.cpython-311.pyc | Bin 0 -> 7351 bytes .../rich/__pycache__/themes.cpython-311.pyc | Bin 0 -> 402 bytes .../__pycache__/traceback.cpython-311.pyc | Bin 0 -> 34614 bytes .../rich/__pycache__/tree.cpython-311.pyc | Bin 0 -> 12573 bytes .../pip/_vendor/rich/_cell_widths.py | 451 + .../pip/_vendor/rich/_emoji_codes.py | 3610 +++++++ .../pip/_vendor/rich/_emoji_replace.py | 32 + .../pip/_vendor/rich/_export_format.py | 76 + .../pip/_vendor/rich/_extension.py | 10 + .../site-packages/pip/_vendor/rich/_fileno.py | 24 + .../pip/_vendor/rich/_inspect.py | 270 + .../pip/_vendor/rich/_log_render.py | 94 + .../site-packages/pip/_vendor/rich/_loop.py | 43 + .../pip/_vendor/rich/_null_file.py | 69 + .../pip/_vendor/rich/_palettes.py | 309 + .../site-packages/pip/_vendor/rich/_pick.py | 17 + .../site-packages/pip/_vendor/rich/_ratio.py | 160 + .../pip/_vendor/rich/_spinners.py | 482 + .../site-packages/pip/_vendor/rich/_stack.py | 16 + .../site-packages/pip/_vendor/rich/_timer.py | 19 + .../pip/_vendor/rich/_win32_console.py | 662 ++ .../pip/_vendor/rich/_windows.py | 72 + .../pip/_vendor/rich/_windows_renderer.py | 56 + .../site-packages/pip/_vendor/rich/_wrap.py | 56 + .../site-packages/pip/_vendor/rich/abc.py | 33 + .../site-packages/pip/_vendor/rich/align.py | 311 + .../site-packages/pip/_vendor/rich/ansi.py | 240 + .../site-packages/pip/_vendor/rich/bar.py | 94 + .../site-packages/pip/_vendor/rich/box.py | 517 + .../site-packages/pip/_vendor/rich/cells.py | 154 + .../site-packages/pip/_vendor/rich/color.py | 622 ++ .../pip/_vendor/rich/color_triplet.py | 38 + .../site-packages/pip/_vendor/rich/columns.py | 187 + .../site-packages/pip/_vendor/rich/console.py | 2633 +++++ .../pip/_vendor/rich/constrain.py | 37 + .../pip/_vendor/rich/containers.py | 167 + .../site-packages/pip/_vendor/rich/control.py | 225 + .../pip/_vendor/rich/default_styles.py | 190 + .../pip/_vendor/rich/diagnose.py | 37 + .../site-packages/pip/_vendor/rich/emoji.py | 96 + .../site-packages/pip/_vendor/rich/errors.py | 34 + .../pip/_vendor/rich/file_proxy.py | 57 + .../pip/_vendor/rich/filesize.py | 89 + .../pip/_vendor/rich/highlighter.py | 232 + .../site-packages/pip/_vendor/rich/json.py | 140 + .../site-packages/pip/_vendor/rich/jupyter.py | 101 + .../site-packages/pip/_vendor/rich/layout.py | 443 + .../site-packages/pip/_vendor/rich/live.py | 375 + .../pip/_vendor/rich/live_render.py | 113 + .../site-packages/pip/_vendor/rich/logging.py | 289 + .../site-packages/pip/_vendor/rich/markup.py | 246 + .../site-packages/pip/_vendor/rich/measure.py | 151 + .../site-packages/pip/_vendor/rich/padding.py | 141 + .../site-packages/pip/_vendor/rich/pager.py | 34 + .../site-packages/pip/_vendor/rich/palette.py | 100 + .../site-packages/pip/_vendor/rich/panel.py | 308 + .../site-packages/pip/_vendor/rich/pretty.py | 994 ++ .../pip/_vendor/rich/progress.py | 1702 ++++ .../pip/_vendor/rich/progress_bar.py | 224 + .../site-packages/pip/_vendor/rich/prompt.py | 376 + .../pip/_vendor/rich/protocol.py | 42 + .../site-packages/pip/_vendor/rich/py.typed | 0 .../site-packages/pip/_vendor/rich/region.py | 10 + .../site-packages/pip/_vendor/rich/repr.py | 149 + .../site-packages/pip/_vendor/rich/rule.py | 130 + .../site-packages/pip/_vendor/rich/scope.py | 86 + .../site-packages/pip/_vendor/rich/screen.py | 54 + .../site-packages/pip/_vendor/rich/segment.py | 739 ++ .../site-packages/pip/_vendor/rich/spinner.py | 137 + .../site-packages/pip/_vendor/rich/status.py | 132 + .../site-packages/pip/_vendor/rich/style.py | 796 ++ .../site-packages/pip/_vendor/rich/styled.py | 42 + .../site-packages/pip/_vendor/rich/syntax.py | 948 ++ .../site-packages/pip/_vendor/rich/table.py | 1002 ++ .../pip/_vendor/rich/terminal_theme.py | 153 + .../site-packages/pip/_vendor/rich/text.py | 1307 +++ .../site-packages/pip/_vendor/rich/theme.py | 115 + .../site-packages/pip/_vendor/rich/themes.py | 5 + .../pip/_vendor/rich/traceback.py | 756 ++ .../site-packages/pip/_vendor/rich/tree.py | 251 + .../site-packages/pip/_vendor/six.py | 998 ++ .../pip/_vendor/tenacity/__init__.py | 608 ++ .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 29093 bytes .../__pycache__/_asyncio.cpython-311.pyc | Bin 0 -> 5269 bytes .../__pycache__/_utils.cpython-311.pyc | Bin 0 -> 2609 bytes .../__pycache__/after.cpython-311.pyc | Bin 0 -> 1804 bytes .../__pycache__/before.cpython-311.pyc | Bin 0 -> 1638 bytes .../__pycache__/before_sleep.cpython-311.pyc | Bin 0 -> 2421 bytes .../tenacity/__pycache__/nap.cpython-311.pyc | Bin 0 -> 1612 bytes .../__pycache__/retry.cpython-311.pyc | Bin 0 -> 15988 bytes .../tenacity/__pycache__/stop.cpython-311.pyc | Bin 0 -> 6341 bytes .../__pycache__/tornadoweb.cpython-311.pyc | Bin 0 -> 2958 bytes .../tenacity/__pycache__/wait.cpython-311.pyc | Bin 0 -> 13347 bytes .../pip/_vendor/tenacity/_asyncio.py | 94 + .../pip/_vendor/tenacity/_utils.py | 76 + .../pip/_vendor/tenacity/after.py | 51 + .../pip/_vendor/tenacity/before.py | 46 + .../pip/_vendor/tenacity/before_sleep.py | 71 + .../site-packages/pip/_vendor/tenacity/nap.py | 43 + .../pip/_vendor/tenacity/py.typed | 0 .../pip/_vendor/tenacity/retry.py | 272 + .../pip/_vendor/tenacity/stop.py | 103 + .../pip/_vendor/tenacity/tornadoweb.py | 59 + .../pip/_vendor/tenacity/wait.py | 228 + .../pip/_vendor/tomli/__init__.py | 11 + .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 457 bytes .../tomli/__pycache__/_parser.cpython-311.pyc | Bin 0 -> 30896 bytes .../tomli/__pycache__/_re.cpython-311.pyc | Bin 0 -> 4536 bytes .../tomli/__pycache__/_types.cpython-311.pyc | Bin 0 -> 449 bytes .../pip/_vendor/tomli/_parser.py | 691 ++ .../site-packages/pip/_vendor/tomli/_re.py | 107 + .../site-packages/pip/_vendor/tomli/_types.py | 10 + .../site-packages/pip/_vendor/tomli/py.typed | 1 + .../pip/_vendor/truststore/__init__.py | 13 + .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 710 bytes .../__pycache__/_api.cpython-311.pyc | Bin 0 -> 16772 bytes .../__pycache__/_macos.cpython-311.pyc | Bin 0 -> 17452 bytes .../__pycache__/_openssl.cpython-311.pyc | Bin 0 -> 2391 bytes .../_ssl_constants.cpython-311.pyc | Bin 0 -> 1166 bytes .../__pycache__/_windows.cpython-311.pyc | Bin 0 -> 17294 bytes .../pip/_vendor/truststore/_api.py | 302 + .../pip/_vendor/truststore/_macos.py | 501 + .../pip/_vendor/truststore/_openssl.py | 66 + .../pip/_vendor/truststore/_ssl_constants.py | 31 + .../pip/_vendor/truststore/_windows.py | 554 ++ .../pip/_vendor/truststore/py.typed | 0 .../pip/_vendor/typing_extensions.py | 3072 ++++++ .../pip/_vendor/urllib3/__init__.py | 102 + .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 3755 bytes .../__pycache__/_collections.cpython-311.pyc | Bin 0 -> 18343 bytes .../__pycache__/_version.cpython-311.pyc | Bin 0 -> 265 bytes .../__pycache__/connection.cpython-311.pyc | Bin 0 -> 22111 bytes .../connectionpool.cpython-311.pyc | Bin 0 -> 38323 bytes .../__pycache__/exceptions.cpython-311.pyc | Bin 0 -> 16169 bytes .../__pycache__/fields.cpython-311.pyc | Bin 0 -> 11462 bytes .../__pycache__/filepost.cpython-311.pyc | Bin 0 -> 4543 bytes .../__pycache__/poolmanager.cpython-311.pyc | Bin 0 -> 21661 bytes .../__pycache__/request.cpython-311.pyc | Bin 0 -> 7714 bytes .../__pycache__/response.cpython-311.pyc | Bin 0 -> 36589 bytes .../pip/_vendor/urllib3/_collections.py | 337 + .../pip/_vendor/urllib3/_version.py | 2 + .../pip/_vendor/urllib3/connection.py | 572 ++ .../pip/_vendor/urllib3/connectionpool.py | 1132 +++ .../pip/_vendor/urllib3/contrib/__init__.py | 0 .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 251 bytes .../_appengine_environ.cpython-311.pyc | Bin 0 -> 1990 bytes .../__pycache__/appengine.cpython-311.pyc | Bin 0 -> 12197 bytes .../__pycache__/ntlmpool.cpython-311.pyc | Bin 0 -> 6274 bytes .../__pycache__/pyopenssl.cpython-311.pyc | Bin 0 -> 25783 bytes .../securetransport.cpython-311.pyc | Bin 0 -> 36889 bytes .../contrib/__pycache__/socks.cpython-311.pyc | Bin 0 -> 8135 bytes .../urllib3/contrib/_appengine_environ.py | 36 + .../contrib/_securetransport/__init__.py | 0 .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 268 bytes .../__pycache__/bindings.cpython-311.pyc | Bin 0 -> 17015 bytes .../__pycache__/low_level.cpython-311.pyc | Bin 0 -> 15652 bytes .../contrib/_securetransport/bindings.py | 519 + .../contrib/_securetransport/low_level.py | 397 + .../pip/_vendor/urllib3/contrib/appengine.py | 314 + .../pip/_vendor/urllib3/contrib/ntlmpool.py | 130 + .../pip/_vendor/urllib3/contrib/pyopenssl.py | 518 + .../urllib3/contrib/securetransport.py | 921 ++ .../pip/_vendor/urllib3/contrib/socks.py | 216 + .../pip/_vendor/urllib3/exceptions.py | 323 + .../pip/_vendor/urllib3/fields.py | 274 + .../pip/_vendor/urllib3/filepost.py | 98 + .../pip/_vendor/urllib3/packages/__init__.py | 0 .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 252 bytes .../packages/__pycache__/six.cpython-311.pyc | Bin 0 -> 46494 bytes .../urllib3/packages/backports/__init__.py | 0 .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 262 bytes .../__pycache__/makefile.cpython-311.pyc | Bin 0 -> 2009 bytes .../weakref_finalize.cpython-311.pyc | Bin 0 -> 8037 bytes .../urllib3/packages/backports/makefile.py | 51 + .../packages/backports/weakref_finalize.py | 155 + .../pip/_vendor/urllib3/packages/six.py | 1076 ++ .../pip/_vendor/urllib3/poolmanager.py | 537 + .../pip/_vendor/urllib3/request.py | 191 + .../pip/_vendor/urllib3/response.py | 879 ++ .../pip/_vendor/urllib3/util/__init__.py | 49 + .../util/__pycache__/__init__.cpython-311.pyc | Bin 0 -> 1454 bytes .../__pycache__/connection.cpython-311.pyc | Bin 0 -> 5181 bytes .../util/__pycache__/proxy.cpython-311.pyc | Bin 0 -> 1763 bytes .../util/__pycache__/queue.cpython-311.pyc | Bin 0 -> 1546 bytes .../util/__pycache__/request.cpython-311.pyc | Bin 0 -> 4666 bytes .../util/__pycache__/response.cpython-311.pyc | Bin 0 -> 3535 bytes .../util/__pycache__/retry.cpython-311.pyc | Bin 0 -> 22815 bytes .../util/__pycache__/ssl_.cpython-311.pyc | Bin 0 -> 16866 bytes .../ssl_match_hostname.cpython-311.pyc | Bin 0 -> 5845 bytes .../__pycache__/ssltransport.cpython-311.pyc | Bin 0 -> 11674 bytes .../util/__pycache__/timeout.cpython-311.pyc | Bin 0 -> 11388 bytes .../util/__pycache__/url.cpython-311.pyc | Bin 0 -> 17629 bytes .../util/__pycache__/wait.cpython-311.pyc | Bin 0 -> 5048 bytes .../pip/_vendor/urllib3/util/connection.py | 149 + .../pip/_vendor/urllib3/util/proxy.py | 57 + .../pip/_vendor/urllib3/util/queue.py | 22 + .../pip/_vendor/urllib3/util/request.py | 137 + .../pip/_vendor/urllib3/util/response.py | 107 + .../pip/_vendor/urllib3/util/retry.py | 620 ++ .../pip/_vendor/urllib3/util/ssl_.py | 495 + .../urllib3/util/ssl_match_hostname.py | 159 + .../pip/_vendor/urllib3/util/ssltransport.py | 221 + .../pip/_vendor/urllib3/util/timeout.py | 271 + .../pip/_vendor/urllib3/util/url.py | 435 + .../pip/_vendor/urllib3/util/wait.py | 152 + .../site-packages/pip/_vendor/vendor.txt | 24 + .../pip/_vendor/webencodings/__init__.py | 342 + .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 12928 bytes .../__pycache__/labels.cpython-311.pyc | Bin 0 -> 7328 bytes .../__pycache__/mklabels.cpython-311.pyc | Bin 0 -> 3256 bytes .../__pycache__/tests.cpython-311.pyc | Bin 0 -> 11234 bytes .../x_user_defined.cpython-311.pyc | Bin 0 -> 3608 bytes .../pip/_vendor/webencodings/labels.py | 231 + .../pip/_vendor/webencodings/mklabels.py | 59 + .../pip/_vendor/webencodings/tests.py | 153 + .../_vendor/webencodings/x_user_defined.py | 325 + .../lib/python3.11/site-packages/pip/py.typed | 4 + .../site-packages/pkg_resources/__init__.py | 3296 +++++++ .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 159617 bytes .../pkg_resources/_vendor/__init__.py | 0 .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 245 bytes .../__pycache__/appdirs.cpython-311.pyc | Bin 0 -> 29493 bytes .../_vendor/__pycache__/zipp.cpython-311.pyc | Bin 0 -> 16038 bytes .../pkg_resources/_vendor/appdirs.py | 608 ++ .../_vendor/importlib_resources/__init__.py | 36 + .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 879 bytes .../__pycache__/_adapters.cpython-311.pyc | Bin 0 -> 10796 bytes .../__pycache__/_common.cpython-311.pyc | Bin 0 -> 4323 bytes .../__pycache__/_compat.cpython-311.pyc | Bin 0 -> 5608 bytes .../__pycache__/_itertools.cpython-311.pyc | Bin 0 -> 1441 bytes .../__pycache__/_legacy.cpython-311.pyc | Bin 0 -> 6539 bytes .../__pycache__/abc.cpython-311.pyc | Bin 0 -> 7540 bytes .../__pycache__/readers.cpython-311.pyc | Bin 0 -> 8414 bytes .../__pycache__/simple.cpython-311.pyc | Bin 0 -> 6436 bytes .../_vendor/importlib_resources/_adapters.py | 170 + .../_vendor/importlib_resources/_common.py | 104 + .../_vendor/importlib_resources/_compat.py | 98 + .../_vendor/importlib_resources/_itertools.py | 35 + .../_vendor/importlib_resources/_legacy.py | 121 + .../_vendor/importlib_resources/abc.py | 137 + .../_vendor/importlib_resources/readers.py | 122 + .../_vendor/importlib_resources/simple.py | 116 + .../pkg_resources/_vendor/jaraco/__init__.py | 0 .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 252 bytes .../__pycache__/context.cpython-311.pyc | Bin 0 -> 9475 bytes .../__pycache__/functools.cpython-311.pyc | Bin 0 -> 20338 bytes .../pkg_resources/_vendor/jaraco/context.py | 213 + .../pkg_resources/_vendor/jaraco/functools.py | 525 + .../_vendor/jaraco/text/__init__.py | 599 ++ .../text/__pycache__/__init__.cpython-311.pyc | Bin 0 -> 26655 bytes .../_vendor/more_itertools/__init__.py | 4 + .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 346 bytes .../__pycache__/more.cpython-311.pyc | Bin 0 -> 168007 bytes .../__pycache__/recipes.cpython-311.pyc | Bin 0 -> 26998 bytes .../_vendor/more_itertools/more.py | 4316 ++++++++ .../_vendor/more_itertools/recipes.py | 698 ++ .../_vendor/packaging/__about__.py | 26 + .../_vendor/packaging/__init__.py | 25 + .../__pycache__/__about__.cpython-311.pyc | Bin 0 -> 696 bytes .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 617 bytes .../__pycache__/_manylinux.cpython-311.pyc | Bin 0 -> 13283 bytes .../__pycache__/_musllinux.cpython-311.pyc | Bin 0 -> 8051 bytes .../__pycache__/_structures.cpython-311.pyc | Bin 0 -> 3739 bytes .../__pycache__/markers.cpython-311.pyc | Bin 0 -> 16588 bytes .../__pycache__/requirements.cpython-311.pyc | Bin 0 -> 7703 bytes .../__pycache__/specifiers.cpython-311.pyc | Bin 0 -> 34417 bytes .../__pycache__/tags.cpython-311.pyc | Bin 0 -> 21402 bytes .../__pycache__/utils.cpython-311.pyc | Bin 0 -> 6737 bytes .../__pycache__/version.cpython-311.pyc | Bin 0 -> 21929 bytes .../_vendor/packaging/_manylinux.py | 301 + .../_vendor/packaging/_musllinux.py | 136 + .../_vendor/packaging/_structures.py | 61 + .../_vendor/packaging/markers.py | 304 + .../_vendor/packaging/requirements.py | 146 + .../_vendor/packaging/specifiers.py | 802 ++ .../pkg_resources/_vendor/packaging/tags.py | 487 + .../pkg_resources/_vendor/packaging/utils.py | 136 + .../_vendor/packaging/version.py | 504 + .../_vendor/pyparsing/__init__.py | 331 + .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 8390 bytes .../__pycache__/actions.cpython-311.pyc | Bin 0 -> 8516 bytes .../__pycache__/common.cpython-311.pyc | Bin 0 -> 14838 bytes .../__pycache__/core.cpython-311.pyc | Bin 0 -> 277690 bytes .../__pycache__/exceptions.cpython-311.pyc | Bin 0 -> 12980 bytes .../__pycache__/helpers.cpython-311.pyc | Bin 0 -> 53681 bytes .../__pycache__/results.cpython-311.pyc | Bin 0 -> 36364 bytes .../__pycache__/testing.cpython-311.pyc | Bin 0 -> 19560 bytes .../__pycache__/unicode.cpython-311.pyc | Bin 0 -> 15418 bytes .../__pycache__/util.cpython-311.pyc | Bin 0 -> 14317 bytes .../_vendor/pyparsing/actions.py | 207 + .../pkg_resources/_vendor/pyparsing/common.py | 424 + .../pkg_resources/_vendor/pyparsing/core.py | 5814 +++++++++++ .../_vendor/pyparsing/diagram/__init__.py | 642 ++ .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 28053 bytes .../_vendor/pyparsing/exceptions.py | 267 + .../_vendor/pyparsing/helpers.py | 1088 +++ .../_vendor/pyparsing/results.py | 760 ++ .../_vendor/pyparsing/testing.py | 331 + .../_vendor/pyparsing/unicode.py | 352 + .../pkg_resources/_vendor/pyparsing/util.py | 235 + .../pkg_resources/_vendor/zipp.py | 329 + .../pkg_resources/extern/__init__.py | 76 + .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 4364 bytes .../site-packages/poetry/core/__init__.py | 15 + .../core/__pycache__/__init__.cpython-311.pyc | Bin 0 -> 694 bytes .../core/__pycache__/factory.cpython-311.pyc | Bin 0 -> 34891 bytes .../core/__pycache__/poetry.cpython-311.pyc | Bin 0 -> 4734 bytes .../core/_vendor/fastjsonschema/LICENSE | 27 + .../core/_vendor/fastjsonschema/__init__.py | 277 + .../core/_vendor/fastjsonschema/__main__.py | 19 + .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 10614 bytes .../__pycache__/__main__.cpython-311.pyc | Bin 0 -> 981 bytes .../__pycache__/draft04.cpython-311.pyc | Bin 0 -> 50553 bytes .../__pycache__/draft06.cpython-311.pyc | Bin 0 -> 14651 bytes .../__pycache__/draft07.cpython-311.pyc | Bin 0 -> 8186 bytes .../__pycache__/exceptions.cpython-311.pyc | Bin 0 -> 3272 bytes .../__pycache__/generator.cpython-311.pyc | Bin 0 -> 18676 bytes .../__pycache__/indent.cpython-311.pyc | Bin 0 -> 1945 bytes .../__pycache__/ref_resolver.cpython-311.pyc | Bin 0 -> 9645 bytes .../__pycache__/version.cpython-311.pyc | Bin 0 -> 274 bytes .../core/_vendor/fastjsonschema/draft04.py | 618 ++ .../core/_vendor/fastjsonschema/draft06.py | 188 + .../core/_vendor/fastjsonschema/draft07.py | 116 + .../core/_vendor/fastjsonschema/exceptions.py | 51 + .../core/_vendor/fastjsonschema/generator.py | 353 + .../core/_vendor/fastjsonschema/indent.py | 28 + .../_vendor/fastjsonschema/ref_resolver.py | 178 + .../core/_vendor/fastjsonschema/version.py | 1 + .../poetry/core/_vendor/lark/LICENSE | 18 + .../poetry/core/_vendor/lark/__init__.py | 38 + .../lark/__pycache__/__init__.cpython-311.pyc | Bin 0 -> 1153 bytes .../__pycache__/ast_utils.cpython-311.pyc | Bin 0 -> 3690 bytes .../lark/__pycache__/common.cpython-311.pyc | Bin 0 -> 5290 bytes .../__pycache__/exceptions.cpython-311.pyc | Bin 0 -> 16567 bytes .../lark/__pycache__/grammar.cpython-311.pyc | Bin 0 -> 7842 bytes .../lark/__pycache__/indenter.cpython-311.pyc | Bin 0 -> 7283 bytes .../lark/__pycache__/lark.cpython-311.pyc | Bin 0 -> 35597 bytes .../lark/__pycache__/lexer.cpython-311.pyc | Bin 0 -> 41235 bytes .../__pycache__/load_grammar.cpython-311.pyc | Bin 0 -> 86513 bytes .../parse_tree_builder.cpython-311.pyc | Bin 0 -> 21308 bytes .../parser_frontends.cpython-311.pyc | Bin 0 -> 16442 bytes .../__pycache__/reconstruct.cpython-311.pyc | Bin 0 -> 6806 bytes .../lark/__pycache__/tree.cpython-311.pyc | Bin 0 -> 15432 bytes .../__pycache__/tree_matcher.cpython-311.pyc | Bin 0 -> 11352 bytes .../tree_templates.cpython-311.pyc | Bin 0 -> 11183 bytes .../lark/__pycache__/utils.cpython-311.pyc | Bin 0 -> 22015 bytes .../lark/__pycache__/visitors.cpython-311.pyc | Bin 0 -> 32235 bytes .../_vendor/lark/__pyinstaller/__init__.py | 6 + .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 524 bytes .../__pycache__/hook-lark.cpython-311.pyc | Bin 0 -> 394 bytes .../_vendor/lark/__pyinstaller/hook-lark.py | 14 + .../poetry/core/_vendor/lark/ast_utils.py | 59 + .../poetry/core/_vendor/lark/common.py | 86 + .../poetry/core/_vendor/lark/exceptions.py | 292 + .../poetry/core/_vendor/lark/grammar.py | 130 + .../core/_vendor/lark/grammars/__init__.py | 0 .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 257 bytes .../core/_vendor/lark/grammars/common.lark | 59 + .../core/_vendor/lark/grammars/lark.lark | 62 + .../core/_vendor/lark/grammars/python.lark | 302 + .../core/_vendor/lark/grammars/unicode.lark | 7 + .../poetry/core/_vendor/lark/indenter.py | 143 + .../poetry/core/_vendor/lark/lark.py | 658 ++ .../poetry/core/_vendor/lark/lexer.py | 678 ++ .../poetry/core/_vendor/lark/load_grammar.py | 1428 +++ .../core/_vendor/lark/parse_tree_builder.py | 391 + .../core/_vendor/lark/parser_frontends.py | 257 + .../core/_vendor/lark/parsers/__init__.py | 0 .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 256 bytes .../parsers/__pycache__/cyk.cpython-311.pyc | Bin 0 -> 25062 bytes .../__pycache__/earley.cpython-311.pyc | Bin 0 -> 17033 bytes .../__pycache__/earley_common.cpython-311.pyc | Bin 0 -> 3402 bytes .../__pycache__/earley_forest.cpython-311.pyc | Bin 0 -> 48615 bytes .../grammar_analysis.cpython-311.pyc | Bin 0 -> 14566 bytes .../__pycache__/lalr_analysis.cpython-311.pyc | Bin 0 -> 22008 bytes .../lalr_interactive_parser.cpython-311.pyc | Bin 0 -> 9793 bytes .../__pycache__/lalr_parser.cpython-311.pyc | Bin 0 -> 7440 bytes .../lalr_parser_state.cpython-311.pyc | Bin 0 -> 6198 bytes .../__pycache__/xearley.cpython-311.pyc | Bin 0 -> 8860 bytes .../poetry/core/_vendor/lark/parsers/cyk.py | 340 + .../core/_vendor/lark/parsers/earley.py | 317 + .../_vendor/lark/parsers/earley_common.py | 42 + .../_vendor/lark/parsers/earley_forest.py | 802 ++ .../_vendor/lark/parsers/grammar_analysis.py | 203 + .../_vendor/lark/parsers/lalr_analysis.py | 332 + .../lark/parsers/lalr_interactive_parser.py | 158 + .../core/_vendor/lark/parsers/lalr_parser.py | 122 + .../_vendor/lark/parsers/lalr_parser_state.py | 110 + .../core/_vendor/lark/parsers/xearley.py | 165 + .../poetry/core/_vendor/lark/py.typed | 0 .../poetry/core/_vendor/lark/reconstruct.py | 107 + .../core/_vendor/lark/tools/__init__.py | 70 + .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 4577 bytes .../tools/__pycache__/nearley.cpython-311.pyc | Bin 0 -> 11978 bytes .../__pycache__/serialize.cpython-311.pyc | Bin 0 -> 2183 bytes .../__pycache__/standalone.cpython-311.pyc | Bin 0 -> 9215 bytes .../poetry/core/_vendor/lark/tools/nearley.py | 202 + .../core/_vendor/lark/tools/serialize.py | 32 + .../core/_vendor/lark/tools/standalone.py | 196 + .../poetry/core/_vendor/lark/tree.py | 267 + .../poetry/core/_vendor/lark/tree_matcher.py | 186 + .../core/_vendor/lark/tree_templates.py | 180 + .../poetry/core/_vendor/lark/utils.py | 346 + .../poetry/core/_vendor/lark/visitors.py | 596 ++ .../poetry/core/_vendor/packaging/LICENSE | 3 + .../core/_vendor/packaging/LICENSE.APACHE | 177 + .../poetry/core/_vendor/packaging/LICENSE.BSD | 23 + .../poetry/core/_vendor/packaging/__init__.py | 15 + .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 613 bytes .../__pycache__/_elffile.cpython-311.pyc | Bin 0 -> 5571 bytes .../__pycache__/_manylinux.cpython-311.pyc | Bin 0 -> 11004 bytes .../__pycache__/_musllinux.cpython-311.pyc | Bin 0 -> 5364 bytes .../__pycache__/_parser.cpython-311.pyc | Bin 0 -> 16336 bytes .../__pycache__/_structures.cpython-311.pyc | Bin 0 -> 3737 bytes .../__pycache__/_tokenizer.cpython-311.pyc | Bin 0 -> 8601 bytes .../__pycache__/markers.cpython-311.pyc | Bin 0 -> 13156 bytes .../__pycache__/metadata.cpython-311.pyc | Bin 0 -> 31143 bytes .../__pycache__/requirements.cpython-311.pyc | Bin 0 -> 4778 bytes .../__pycache__/specifiers.cpython-311.pyc | Bin 0 -> 41565 bytes .../__pycache__/tags.cpython-311.pyc | Bin 0 -> 25937 bytes .../__pycache__/utils.cpython-311.pyc | Bin 0 -> 7639 bytes .../__pycache__/version.cpython-311.pyc | Bin 0 -> 22025 bytes .../poetry/core/_vendor/packaging/_elffile.py | 110 + .../core/_vendor/packaging/_manylinux.py | 263 + .../core/_vendor/packaging/_musllinux.py | 85 + .../poetry/core/_vendor/packaging/_parser.py | 354 + .../core/_vendor/packaging/_structures.py | 61 + .../core/_vendor/packaging/_tokenizer.py | 194 + .../_vendor/packaging/licenses/__init__.py | 145 + .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 5097 bytes .../__pycache__/_spdx.cpython-311.pyc | Bin 0 -> 50321 bytes .../core/_vendor/packaging/licenses/_spdx.py | 759 ++ .../poetry/core/_vendor/packaging/markers.py | 331 + .../poetry/core/_vendor/packaging/metadata.py | 863 ++ .../poetry/core/_vendor/packaging/py.typed | 0 .../core/_vendor/packaging/requirements.py | 91 + .../core/_vendor/packaging/specifiers.py | 1020 ++ .../poetry/core/_vendor/packaging/tags.py | 617 ++ .../poetry/core/_vendor/packaging/utils.py | 163 + .../poetry/core/_vendor/packaging/version.py | 582 ++ .../poetry/core/_vendor/tomli/LICENSE | 21 + .../poetry/core/_vendor/tomli/__init__.py | 8 + .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 419 bytes .../tomli/__pycache__/_parser.cpython-311.pyc | Bin 0 -> 33519 bytes .../tomli/__pycache__/_re.cpython-311.pyc | Bin 0 -> 4730 bytes .../tomli/__pycache__/_types.cpython-311.pyc | Bin 0 -> 457 bytes .../poetry/core/_vendor/tomli/_parser.py | 770 ++ .../poetry/core/_vendor/tomli/_re.py | 112 + .../poetry/core/_vendor/tomli/_types.py | 10 + .../poetry/core/_vendor/tomli/py.typed | 1 + .../poetry/core/_vendor/vendor.txt | 4 + .../poetry/core/constraints/__init__.py | 0 .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 247 bytes .../core/constraints/generic/__init__.py | 22 + .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 1138 bytes .../any_constraint.cpython-311.pyc | Bin 0 -> 3097 bytes .../base_constraint.cpython-311.pyc | Bin 0 -> 2782 bytes .../__pycache__/constraint.cpython-311.pyc | Bin 0 -> 12467 bytes .../empty_constraint.cpython-311.pyc | Bin 0 -> 2825 bytes .../multi_constraint.cpython-311.pyc | Bin 0 -> 12197 bytes .../__pycache__/parser.cpython-311.pyc | Bin 0 -> 4369 bytes .../union_constraint.cpython-311.pyc | Bin 0 -> 12930 bytes .../constraints/generic/any_constraint.py | 45 + .../constraints/generic/base_constraint.py | 42 + .../core/constraints/generic/constraint.py | 263 + .../constraints/generic/empty_constraint.py | 45 + .../constraints/generic/multi_constraint.py | 173 + .../poetry/core/constraints/generic/parser.py | 98 + .../constraints/generic/union_constraint.py | 218 + .../core/constraints/version/__init__.py | 26 + .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 1269 bytes .../empty_constraint.cpython-311.pyc | Bin 0 -> 3518 bytes .../__pycache__/exceptions.cpython-311.pyc | Bin 0 -> 570 bytes .../__pycache__/parser.cpython-311.pyc | Bin 0 -> 10125 bytes .../__pycache__/patterns.cpython-311.pyc | Bin 0 -> 1642 bytes .../version/__pycache__/util.cpython-311.pyc | Bin 0 -> 2662 bytes .../__pycache__/version.cpython-311.pyc | Bin 0 -> 8499 bytes .../version_constraint.cpython-311.pyc | Bin 0 -> 6852 bytes .../__pycache__/version_range.cpython-311.pyc | Bin 0 -> 17958 bytes .../version_range_constraint.cpython-311.pyc | Bin 0 -> 4597 bytes .../__pycache__/version_union.cpython-311.pyc | Bin 0 -> 15598 bytes .../constraints/version/empty_constraint.py | 64 + .../core/constraints/version/exceptions.py | 5 + .../poetry/core/constraints/version/parser.py | 258 + .../core/constraints/version/patterns.py | 42 + .../poetry/core/constraints/version/util.py | 58 + .../core/constraints/version/version.py | 182 + .../constraints/version/version_constraint.py | 130 + .../core/constraints/version/version_range.py | 472 + .../version/version_range_constraint.py | 125 + .../core/constraints/version/version_union.py | 331 + .../poetry/core/exceptions/__init__.py | 6 + .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 407 bytes .../__pycache__/base.cpython-311.pyc | Bin 0 -> 549 bytes .../poetry/core/exceptions/base.py | 5 + .../site-packages/poetry/core/factory.py | 844 ++ .../poetry/core/json/__init__.py | 34 + .../json/__pycache__/__init__.cpython-311.pyc | Bin 0 -> 1958 bytes .../core/json/schemas/poetry-schema.json | 702 ++ .../core/json/schemas/project-schema.json | 338 + .../poetry/core/masonry/__init__.py | 8 + .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 513 bytes .../masonry/__pycache__/api.cpython-311.pyc | Bin 0 -> 4097 bytes .../__pycache__/metadata.cpython-311.pyc | Bin 0 -> 5750 bytes .../site-packages/poetry/core/masonry/api.py | 97 + .../poetry/core/masonry/builders/__init__.py | 0 .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 252 bytes .../__pycache__/builder.cpython-311.pyc | Bin 0 -> 18418 bytes .../__pycache__/sdist.cpython-311.pyc | Bin 0 -> 25480 bytes .../__pycache__/wheel.cpython-311.pyc | Bin 0 -> 29707 bytes .../poetry/core/masonry/builders/builder.py | 384 + .../poetry/core/masonry/builders/sdist.py | 436 + .../poetry/core/masonry/builders/wheel.py | 562 ++ .../poetry/core/masonry/metadata.py | 116 + .../poetry/core/masonry/utils/__init__.py | 0 .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 249 bytes .../utils/__pycache__/helpers.cpython-311.pyc | Bin 0 -> 2495 bytes .../utils/__pycache__/include.cpython-311.pyc | Bin 0 -> 2624 bytes .../utils/__pycache__/module.cpython-311.pyc | Bin 0 -> 5916 bytes .../package_include.cpython-311.pyc | Bin 0 -> 5304 bytes .../poetry/core/masonry/utils/helpers.py | 52 + .../poetry/core/masonry/utils/include.py | 49 + .../poetry/core/masonry/utils/module.py | 117 + .../core/masonry/utils/package_include.py | 98 + .../poetry/core/packages/__init__.py | 0 .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 244 bytes .../__pycache__/dependency.cpython-311.pyc | Bin 0 -> 23695 bytes .../dependency_group.cpython-311.pyc | Bin 0 -> 9151 bytes .../directory_dependency.cpython-311.pyc | Bin 0 -> 3228 bytes .../file_dependency.cpython-311.pyc | Bin 0 -> 2717 bytes .../__pycache__/package.cpython-311.pyc | Bin 0 -> 27611 bytes .../path_dependency.cpython-311.pyc | Bin 0 -> 4669 bytes .../project_package.cpython-311.pyc | Bin 0 -> 6144 bytes .../__pycache__/specification.cpython-311.pyc | Bin 0 -> 9653 bytes .../url_dependency.cpython-311.pyc | Bin 0 -> 2800 bytes .../vcs_dependency.cpython-311.pyc | Bin 0 -> 5775 bytes .../poetry/core/packages/dependency.py | 532 + .../poetry/core/packages/dependency_group.py | 167 + .../core/packages/directory_dependency.py | 66 + .../poetry/core/packages/file_dependency.py | 61 + .../poetry/core/packages/package.py | 622 ++ .../poetry/core/packages/path_dependency.py | 93 + .../poetry/core/packages/project_package.py | 125 + .../poetry/core/packages/specification.py | 227 + .../poetry/core/packages/url_dependency.py | 63 + .../poetry/core/packages/utils/__init__.py | 0 .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 250 bytes .../utils/__pycache__/link.cpython-311.pyc | Bin 0 -> 12129 bytes .../utils/__pycache__/utils.cpython-311.pyc | Bin 0 -> 16351 bytes .../poetry/core/packages/utils/link.py | 226 + .../poetry/core/packages/utils/utils.py | 398 + .../poetry/core/packages/vcs_dependency.py | 139 + .../site-packages/poetry/core/poetry.py | 94 + .../site-packages/poetry/core/py.typed | 0 .../poetry/core/pyproject/__init__.py | 0 .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 245 bytes .../__pycache__/exceptions.cpython-311.pyc | Bin 0 -> 620 bytes .../__pycache__/tables.cpython-311.pyc | Bin 0 -> 2436 bytes .../__pycache__/toml.cpython-311.pyc | Bin 0 -> 5382 bytes .../poetry/core/pyproject/exceptions.py | 7 + .../poetry/core/pyproject/tables.py | 51 + .../poetry/core/pyproject/toml.py | 102 + .../poetry/core/spdx/__init__.py | 0 .../spdx/__pycache__/__init__.cpython-311.pyc | Bin 0 -> 240 bytes .../spdx/__pycache__/helpers.cpython-311.pyc | Bin 0 -> 2844 bytes .../spdx/__pycache__/license.cpython-311.pyc | Bin 0 -> 5457 bytes .../spdx/__pycache__/updater.cpython-311.pyc | Bin 0 -> 2722 bytes .../poetry/core/spdx/data/licenses.json | 3447 +++++++ .../site-packages/poetry/core/spdx/helpers.py | 60 + .../site-packages/poetry/core/spdx/license.py | 165 + .../site-packages/poetry/core/spdx/updater.py | 39 + .../poetry/core/utils/__init__.py | 0 .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 241 bytes .../utils/__pycache__/_compat.cpython-311.pyc | Bin 0 -> 531 bytes .../utils/__pycache__/helpers.cpython-311.pyc | Bin 0 -> 5122 bytes .../__pycache__/patterns.cpython-311.pyc | Bin 0 -> 687 bytes .../poetry/core/utils/_compat.py | 15 + .../poetry/core/utils/helpers.py | 126 + .../poetry/core/utils/patterns.py | 13 + .../site-packages/poetry/core/vcs/__init__.py | 44 + .../vcs/__pycache__/__init__.cpython-311.pyc | Bin 0 -> 1774 bytes .../core/vcs/__pycache__/git.cpython-311.pyc | Bin 0 -> 13093 bytes .../site-packages/poetry/core/vcs/git.py | 295 + .../poetry/core/version/__init__.py | 0 .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 243 bytes .../__pycache__/exceptions.cpython-311.pyc | Bin 0 -> 557 bytes .../__pycache__/helpers.cpython-311.pyc | Bin 0 -> 2313 bytes .../__pycache__/markers.cpython-311.pyc | Bin 0 -> 67640 bytes .../__pycache__/parser.cpython-311.pyc | Bin 0 -> 1715 bytes .../__pycache__/requirements.cpython-311.pyc | Bin 0 -> 6441 bytes .../poetry/core/version/exceptions.py | 5 + .../poetry/core/version/grammars/__init__.py | 10 + .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 568 bytes .../poetry/core/version/grammars/markers.lark | 36 + .../poetry/core/version/grammars/pep508.lark | 29 + .../poetry/core/version/helpers.py | 67 + .../poetry/core/version/markers.py | 1396 +++ .../poetry/core/version/parser.py | 31 + .../poetry/core/version/pep440/__init__.py | 9 + .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 626 bytes .../pep440/__pycache__/parser.cpython-311.pyc | Bin 0 -> 5901 bytes .../__pycache__/segments.cpython-311.pyc | Bin 0 -> 9516 bytes .../__pycache__/version.cpython-311.pyc | Bin 0 -> 17261 bytes .../poetry/core/version/pep440/parser.py | 85 + .../poetry/core/version/pep440/segments.py | 165 + .../poetry/core/version/pep440/version.py | 321 + .../poetry/core/version/requirements.py | 118 + .../poetry_core-2.1.3.dist-info/INSTALLER | 1 + .../poetry_core-2.1.3.dist-info/LICENSE | 20 + .../poetry_core-2.1.3.dist-info/METADATA | 71 + .../poetry_core-2.1.3.dist-info/RECORD | 310 + .../poetry_core-2.1.3.dist-info/REQUESTED | 0 .../poetry_core-2.1.3.dist-info/WHEEL | 4 + .../pydantic-2.11.5.dist-info/INSTALLER | 1 + .../pydantic-2.11.5.dist-info/METADATA | 746 ++ .../pydantic-2.11.5.dist-info/RECORD | 111 + .../pydantic-2.11.5.dist-info/WHEEL | 4 + .../licenses/LICENSE | 21 + .../site-packages/pydantic/__init__.py | 445 + .../pydantic/_internal/__init__.py | 0 .../pydantic/_internal/_config.py | 373 + .../pydantic/_internal/_core_metadata.py | 97 + .../pydantic/_internal/_core_utils.py | 182 + .../pydantic/_internal/_dataclasses.py | 235 + .../pydantic/_internal/_decorators.py | 838 ++ .../pydantic/_internal/_decorators_v1.py | 174 + .../_internal/_discriminated_union.py | 479 + .../pydantic/_internal/_docs_extraction.py | 108 + .../pydantic/_internal/_fields.py | 463 + .../pydantic/_internal/_forward_ref.py | 23 + .../pydantic/_internal/_generate_schema.py | 2886 ++++++ .../pydantic/_internal/_generics.py | 547 ++ .../site-packages/pydantic/_internal/_git.py | 27 + .../pydantic/_internal/_import_utils.py | 20 + .../pydantic/_internal/_internal_dataclass.py | 7 + .../_internal/_known_annotated_metadata.py | 393 + .../pydantic/_internal/_mock_val_ser.py | 228 + .../pydantic/_internal/_model_construction.py | 792 ++ .../pydantic/_internal/_namespace_utils.py | 293 + .../site-packages/pydantic/_internal/_repr.py | 125 + .../pydantic/_internal/_schema_gather.py | 209 + .../_internal/_schema_generation_shared.py | 125 + .../pydantic/_internal/_serializers.py | 53 + .../pydantic/_internal/_signature.py | 188 + .../pydantic/_internal/_typing_extra.py | 714 ++ .../pydantic/_internal/_utils.py | 431 + .../pydantic/_internal/_validate_call.py | 140 + .../pydantic/_internal/_validators.py | 532 + .../site-packages/pydantic/_migration.py | 308 + .../pydantic/alias_generators.py | 62 + .../site-packages/pydantic/aliases.py | 135 + .../pydantic/annotated_handlers.py | 122 + .../pydantic/class_validators.py | 5 + .../site-packages/pydantic/color.py | 604 ++ .../site-packages/pydantic/config.py | 1213 +++ .../site-packages/pydantic/dataclasses.py | 374 + .../site-packages/pydantic/datetime_parse.py | 5 + .../site-packages/pydantic/decorator.py | 5 + .../pydantic/deprecated/__init__.py | 0 .../pydantic/deprecated/class_validators.py | 256 + .../pydantic/deprecated/config.py | 72 + .../pydantic/deprecated/copy_internals.py | 224 + .../pydantic/deprecated/decorator.py | 284 + .../site-packages/pydantic/deprecated/json.py | 141 + .../pydantic/deprecated/parse.py | 80 + .../pydantic/deprecated/tools.py | 103 + .../site-packages/pydantic/env_settings.py | 5 + .../site-packages/pydantic/error_wrappers.py | 5 + .../site-packages/pydantic/errors.py | 189 + .../pydantic/experimental/__init__.py | 10 + .../pydantic/experimental/arguments_schema.py | 44 + .../pydantic/experimental/pipeline.py | 667 ++ .../site-packages/pydantic/fields.py | 1555 +++ .../pydantic/functional_serializers.py | 450 + .../pydantic/functional_validators.py | 828 ++ .../site-packages/pydantic/generics.py | 5 + .../python3.11/site-packages/pydantic/json.py | 5 + .../site-packages/pydantic/json_schema.py | 2695 +++++ .../python3.11/site-packages/pydantic/main.py | 1773 ++++ .../python3.11/site-packages/pydantic/mypy.py | 1380 +++ .../site-packages/pydantic/networks.py | 1312 +++ .../site-packages/pydantic/parse.py | 5 + .../site-packages/pydantic/plugin/__init__.py | 188 + .../site-packages/pydantic/plugin/_loader.py | 57 + .../pydantic/plugin/_schema_validator.py | 140 + .../site-packages/pydantic/py.typed | 0 .../site-packages/pydantic/root_model.py | 157 + .../site-packages/pydantic/schema.py | 5 + .../site-packages/pydantic/tools.py | 5 + .../site-packages/pydantic/type_adapter.py | 727 ++ .../site-packages/pydantic/types.py | 3285 +++++++ .../site-packages/pydantic/typing.py | 5 + .../site-packages/pydantic/utils.py | 5 + .../site-packages/pydantic/v1/__init__.py | 131 + .../pydantic/v1/_hypothesis_plugin.py | 391 + .../pydantic/v1/annotated_types.py | 72 + .../pydantic/v1/class_validators.py | 361 + .../site-packages/pydantic/v1/color.py | 494 + .../site-packages/pydantic/v1/config.py | 191 + .../site-packages/pydantic/v1/dataclasses.py | 500 + .../pydantic/v1/datetime_parse.py | 248 + .../site-packages/pydantic/v1/decorator.py | 264 + .../site-packages/pydantic/v1/env_settings.py | 350 + .../pydantic/v1/error_wrappers.py | 161 + .../site-packages/pydantic/v1/errors.py | 646 ++ .../site-packages/pydantic/v1/fields.py | 1253 +++ .../site-packages/pydantic/v1/generics.py | 400 + .../site-packages/pydantic/v1/json.py | 112 + .../site-packages/pydantic/v1/main.py | 1113 +++ .../site-packages/pydantic/v1/mypy.py | 949 ++ .../site-packages/pydantic/v1/networks.py | 747 ++ .../site-packages/pydantic/v1/parse.py | 66 + .../site-packages/pydantic/v1/py.typed | 0 .../site-packages/pydantic/v1/schema.py | 1163 +++ .../site-packages/pydantic/v1/tools.py | 92 + .../site-packages/pydantic/v1/types.py | 1205 +++ .../site-packages/pydantic/v1/typing.py | 615 ++ .../site-packages/pydantic/v1/utils.py | 806 ++ .../site-packages/pydantic/v1/validators.py | 768 ++ .../site-packages/pydantic/v1/version.py | 38 + .../pydantic/validate_call_decorator.py | 116 + .../site-packages/pydantic/validators.py | 5 + .../site-packages/pydantic/version.py | 84 + .../site-packages/pydantic/warnings.py | 96 + .../pydantic_core-2.33.2.dist-info/INSTALLER | 1 + .../pydantic_core-2.33.2.dist-info/METADATA | 160 + .../pydantic_core-2.33.2.dist-info/RECORD | 10 + .../pydantic_core-2.33.2.dist-info/WHEEL | 4 + .../licenses/LICENSE | 21 + .../site-packages/pydantic_core/__init__.py | 144 + .../_pydantic_core.cpython-311-darwin.so | Bin 0 -> 4170048 bytes .../pydantic_core/_pydantic_core.pyi | 1039 ++ .../pydantic_core/core_schema.py | 4325 ++++++++ .../site-packages/pydantic_core/py.typed | 0 .../setuptools-65.5.0.dist-info/INSTALLER | 1 + .../setuptools-65.5.0.dist-info/LICENSE | 19 + .../setuptools-65.5.0.dist-info/METADATA | 144 + .../setuptools-65.5.0.dist-info/RECORD | 466 + .../setuptools-65.5.0.dist-info/REQUESTED | 0 .../setuptools-65.5.0.dist-info/WHEEL | 5 + .../entry_points.txt | 57 + .../setuptools-65.5.0.dist-info/top_level.txt | 3 + .../site-packages/setuptools/__init__.py | 247 + .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 12954 bytes .../_deprecation_warning.cpython-311.pyc | Bin 0 -> 689 bytes .../__pycache__/_entry_points.cpython-311.pyc | Bin 0 -> 4838 bytes .../__pycache__/_imp.cpython-311.pyc | Bin 0 -> 3702 bytes .../__pycache__/_importlib.cpython-311.pyc | Bin 0 -> 2002 bytes .../__pycache__/_itertools.cpython-311.pyc | Bin 0 -> 1201 bytes .../__pycache__/_path.cpython-311.pyc | Bin 0 -> 1522 bytes .../__pycache__/_reqs.cpython-311.pyc | Bin 0 -> 1183 bytes .../__pycache__/archive_util.cpython-311.pyc | Bin 0 -> 10211 bytes .../__pycache__/build_meta.cpython-311.pyc | Bin 0 -> 28144 bytes .../__pycache__/dep_util.cpython-311.pyc | Bin 0 -> 1337 bytes .../__pycache__/depends.cpython-311.pyc | Bin 0 -> 8022 bytes .../__pycache__/discovery.cpython-311.pyc | Bin 0 -> 31166 bytes .../__pycache__/dist.cpython-311.pyc | Bin 0 -> 64103 bytes .../__pycache__/errors.cpython-311.pyc | Bin 0 -> 2998 bytes .../__pycache__/extension.cpython-311.pyc | Bin 0 -> 6854 bytes .../__pycache__/glob.cpython-311.pyc | Bin 0 -> 6611 bytes .../__pycache__/installer.cpython-311.pyc | Bin 0 -> 5661 bytes .../__pycache__/launch.cpython-311.pyc | Bin 0 -> 1577 bytes .../__pycache__/logging.cpython-311.pyc | Bin 0 -> 2095 bytes .../__pycache__/monkey.cpython-311.pyc | Bin 0 -> 7054 bytes .../__pycache__/msvc.cpython-311.pyc | Bin 0 -> 64227 bytes .../__pycache__/namespaces.cpython-311.pyc | Bin 0 -> 5709 bytes .../__pycache__/package_index.cpython-311.pyc | Bin 0 -> 60804 bytes .../__pycache__/py34compat.cpython-311.pyc | Bin 0 -> 764 bytes .../__pycache__/sandbox.cpython-311.pyc | Bin 0 -> 27380 bytes .../__pycache__/unicode_utils.cpython-311.pyc | Bin 0 -> 1866 bytes .../__pycache__/version.cpython-311.pyc | Bin 0 -> 484 bytes .../__pycache__/wheel.cpython-311.pyc | Bin 0 -> 15539 bytes .../windows_support.cpython-311.pyc | Bin 0 -> 1481 bytes .../setuptools/_deprecation_warning.py | 7 + .../setuptools/_distutils/__init__.py | 24 + .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 819 bytes .../__pycache__/_collections.cpython-311.pyc | Bin 0 -> 2969 bytes .../__pycache__/_functools.cpython-311.pyc | Bin 0 -> 910 bytes .../__pycache__/_macos_compat.cpython-311.pyc | Bin 0 -> 619 bytes .../__pycache__/_msvccompiler.cpython-311.pyc | Bin 0 -> 25154 bytes .../__pycache__/archive_util.cpython-311.pyc | Bin 0 -> 10706 bytes .../__pycache__/bcppcompiler.cpython-311.pyc | Bin 0 -> 13532 bytes .../__pycache__/ccompiler.cpython-311.pyc | Bin 0 -> 46431 bytes .../__pycache__/cmd.cpython-311.pyc | Bin 0 -> 18945 bytes .../__pycache__/config.cpython-311.pyc | Bin 0 -> 6094 bytes .../__pycache__/core.cpython-311.pyc | Bin 0 -> 10038 bytes .../cygwinccompiler.cpython-311.pyc | Bin 0 -> 13662 bytes .../__pycache__/debug.cpython-311.pyc | Bin 0 -> 371 bytes .../__pycache__/dep_util.cpython-311.pyc | Bin 0 -> 4038 bytes .../__pycache__/dir_util.cpython-311.pyc | Bin 0 -> 10413 bytes .../__pycache__/dist.cpython-311.pyc | Bin 0 -> 55460 bytes .../__pycache__/errors.cpython-311.pyc | Bin 0 -> 6844 bytes .../__pycache__/extension.cpython-311.pyc | Bin 0 -> 10225 bytes .../__pycache__/fancy_getopt.cpython-311.pyc | Bin 0 -> 17290 bytes .../__pycache__/file_util.cpython-311.pyc | Bin 0 -> 10733 bytes .../__pycache__/filelist.cpython-311.pyc | Bin 0 -> 17679 bytes .../__pycache__/log.cpython-311.pyc | Bin 0 -> 3979 bytes .../__pycache__/msvc9compiler.cpython-311.pyc | Bin 0 -> 33637 bytes .../__pycache__/msvccompiler.cpython-311.pyc | Bin 0 -> 27039 bytes .../__pycache__/py38compat.cpython-311.pyc | Bin 0 -> 671 bytes .../__pycache__/py39compat.cpython-311.pyc | Bin 0 -> 1039 bytes .../__pycache__/spawn.cpython-311.pyc | Bin 0 -> 4508 bytes .../__pycache__/sysconfig.cpython-311.pyc | Bin 0 -> 22035 bytes .../__pycache__/text_file.cpython-311.pyc | Bin 0 -> 11320 bytes .../__pycache__/unixccompiler.cpython-311.pyc | Bin 0 -> 16576 bytes .../__pycache__/util.cpython-311.pyc | Bin 0 -> 20930 bytes .../__pycache__/version.cpython-311.pyc | Bin 0 -> 11395 bytes .../versionpredicate.cpython-311.pyc | Bin 0 -> 7796 bytes .../setuptools/_distutils/_collections.py | 56 + .../setuptools/_distutils/_functools.py | 20 + .../setuptools/_distutils/_macos_compat.py | 12 + .../setuptools/_distutils/_msvccompiler.py | 572 ++ .../setuptools/_distutils/archive_util.py | 280 + .../setuptools/_distutils/bcppcompiler.py | 408 + .../setuptools/_distutils/ccompiler.py | 1220 +++ .../setuptools/_distutils/cmd.py | 436 + .../setuptools/_distutils/command/__init__.py | 25 + .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 591 bytes .../_framework_compat.cpython-311.pyc | Bin 0 -> 2832 bytes .../command/__pycache__/bdist.cpython-311.pyc | Bin 0 -> 6085 bytes .../__pycache__/bdist_dumb.cpython-311.pyc | Bin 0 -> 5810 bytes .../__pycache__/bdist_rpm.cpython-311.pyc | Bin 0 -> 23344 bytes .../command/__pycache__/build.cpython-311.pyc | Bin 0 -> 6140 bytes .../__pycache__/build_clib.cpython-311.pyc | Bin 0 -> 7843 bytes .../__pycache__/build_ext.cpython-311.pyc | Bin 0 -> 30385 bytes .../__pycache__/build_py.cpython-311.pyc | Bin 0 -> 17661 bytes .../__pycache__/build_scripts.cpython-311.pyc | Bin 0 -> 7912 bytes .../command/__pycache__/check.cpython-311.pyc | Bin 0 -> 7574 bytes .../command/__pycache__/clean.cpython-311.pyc | Bin 0 -> 3242 bytes .../__pycache__/config.cpython-311.pyc | Bin 0 -> 16305 bytes .../__pycache__/install.cpython-311.pyc | Bin 0 -> 29493 bytes .../__pycache__/install_data.cpython-311.pyc | Bin 0 -> 3827 bytes .../install_egg_info.cpython-311.pyc | Bin 0 -> 5253 bytes .../install_headers.cpython-311.pyc | Bin 0 -> 2410 bytes .../__pycache__/install_lib.cpython-311.pyc | Bin 0 -> 8742 bytes .../install_scripts.cpython-311.pyc | Bin 0 -> 3207 bytes .../__pycache__/py37compat.cpython-311.pyc | Bin 0 -> 1588 bytes .../__pycache__/register.cpython-311.pyc | Bin 0 -> 15574 bytes .../command/__pycache__/sdist.cpython-311.pyc | Bin 0 -> 23882 bytes .../__pycache__/upload.cpython-311.pyc | Bin 0 -> 10523 bytes .../_distutils/command/_framework_compat.py | 55 + .../setuptools/_distutils/command/bdist.py | 157 + .../_distutils/command/bdist_dumb.py | 144 + .../_distutils/command/bdist_rpm.py | 615 ++ .../setuptools/_distutils/command/build.py | 153 + .../_distutils/command/build_clib.py | 208 + .../_distutils/command/build_ext.py | 787 ++ .../setuptools/_distutils/command/build_py.py | 407 + .../_distutils/command/build_scripts.py | 173 + .../setuptools/_distutils/command/check.py | 151 + .../setuptools/_distutils/command/clean.py | 76 + .../setuptools/_distutils/command/config.py | 377 + .../setuptools/_distutils/command/install.py | 814 ++ .../_distutils/command/install_data.py | 84 + .../_distutils/command/install_egg_info.py | 91 + .../_distutils/command/install_headers.py | 45 + .../_distutils/command/install_lib.py | 238 + .../_distutils/command/install_scripts.py | 61 + .../_distutils/command/py37compat.py | 31 + .../setuptools/_distutils/command/register.py | 319 + .../setuptools/_distutils/command/sdist.py | 531 + .../setuptools/_distutils/command/upload.py | 205 + .../setuptools/_distutils/config.py | 139 + .../setuptools/_distutils/core.py | 291 + .../setuptools/_distutils/cygwinccompiler.py | 364 + .../setuptools/_distutils/debug.py | 5 + .../setuptools/_distutils/dep_util.py | 96 + .../setuptools/_distutils/dir_util.py | 243 + .../setuptools/_distutils/dist.py | 1286 +++ .../setuptools/_distutils/errors.py | 127 + .../setuptools/_distutils/extension.py | 248 + .../setuptools/_distutils/fancy_getopt.py | 470 + .../setuptools/_distutils/file_util.py | 249 + .../setuptools/_distutils/filelist.py | 371 + .../setuptools/_distutils/log.py | 80 + .../setuptools/_distutils/msvc9compiler.py | 832 ++ .../setuptools/_distutils/msvccompiler.py | 695 ++ .../setuptools/_distutils/py38compat.py | 8 + .../setuptools/_distutils/py39compat.py | 22 + .../setuptools/_distutils/spawn.py | 109 + .../setuptools/_distutils/sysconfig.py | 558 ++ .../setuptools/_distutils/text_file.py | 287 + .../setuptools/_distutils/unixccompiler.py | 401 + .../setuptools/_distutils/util.py | 513 + .../setuptools/_distutils/version.py | 358 + .../setuptools/_distutils/versionpredicate.py | 175 + .../site-packages/setuptools/_entry_points.py | 86 + .../site-packages/setuptools/_imp.py | 82 + .../site-packages/setuptools/_importlib.py | 47 + .../site-packages/setuptools/_itertools.py | 23 + .../site-packages/setuptools/_path.py | 29 + .../site-packages/setuptools/_reqs.py | 19 + .../setuptools/_vendor/__init__.py | 0 .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 242 bytes .../__pycache__/ordered_set.cpython-311.pyc | Bin 0 -> 21828 bytes .../typing_extensions.cpython-311.pyc | Bin 0 -> 107659 bytes .../_vendor/__pycache__/zipp.cpython-311.pyc | Bin 0 -> 16035 bytes .../_vendor/importlib_metadata/__init__.py | 1047 ++ .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 58281 bytes .../__pycache__/_adapters.cpython-311.pyc | Bin 0 -> 3894 bytes .../__pycache__/_collections.cpython-311.pyc | Bin 0 -> 2241 bytes .../__pycache__/_compat.cpython-311.pyc | Bin 0 -> 2763 bytes .../__pycache__/_functools.cpython-311.pyc | Bin 0 -> 3681 bytes .../__pycache__/_itertools.cpython-311.pyc | Bin 0 -> 2644 bytes .../__pycache__/_meta.cpython-311.pyc | Bin 0 -> 3048 bytes .../__pycache__/_text.cpython-311.pyc | Bin 0 -> 4439 bytes .../_vendor/importlib_metadata/_adapters.py | 68 + .../importlib_metadata/_collections.py | 30 + .../_vendor/importlib_metadata/_compat.py | 71 + .../_vendor/importlib_metadata/_functools.py | 104 + .../_vendor/importlib_metadata/_itertools.py | 73 + .../_vendor/importlib_metadata/_meta.py | 48 + .../_vendor/importlib_metadata/_text.py | 99 + .../_vendor/importlib_resources/__init__.py | 36 + .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 876 bytes .../__pycache__/_adapters.cpython-311.pyc | Bin 0 -> 10793 bytes .../__pycache__/_common.cpython-311.pyc | Bin 0 -> 4320 bytes .../__pycache__/_compat.cpython-311.pyc | Bin 0 -> 5605 bytes .../__pycache__/_itertools.cpython-311.pyc | Bin 0 -> 1438 bytes .../__pycache__/_legacy.cpython-311.pyc | Bin 0 -> 6536 bytes .../__pycache__/abc.cpython-311.pyc | Bin 0 -> 7537 bytes .../__pycache__/readers.cpython-311.pyc | Bin 0 -> 8411 bytes .../__pycache__/simple.cpython-311.pyc | Bin 0 -> 6433 bytes .../_vendor/importlib_resources/_adapters.py | 170 + .../_vendor/importlib_resources/_common.py | 104 + .../_vendor/importlib_resources/_compat.py | 98 + .../_vendor/importlib_resources/_itertools.py | 35 + .../_vendor/importlib_resources/_legacy.py | 121 + .../_vendor/importlib_resources/abc.py | 137 + .../_vendor/importlib_resources/readers.py | 122 + .../_vendor/importlib_resources/simple.py | 116 + .../setuptools/_vendor/jaraco/__init__.py | 0 .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 249 bytes .../__pycache__/context.cpython-311.pyc | Bin 0 -> 9472 bytes .../__pycache__/functools.cpython-311.pyc | Bin 0 -> 20329 bytes .../setuptools/_vendor/jaraco/context.py | 213 + .../setuptools/_vendor/jaraco/functools.py | 525 + .../_vendor/jaraco/text/__init__.py | 599 ++ .../text/__pycache__/__init__.cpython-311.pyc | Bin 0 -> 26643 bytes .../_vendor/more_itertools/__init__.py | 4 + .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 342 bytes .../__pycache__/more.cpython-311.pyc | Bin 0 -> 149229 bytes .../__pycache__/recipes.cpython-311.pyc | Bin 0 -> 23811 bytes .../setuptools/_vendor/more_itertools/more.py | 3824 ++++++++ .../_vendor/more_itertools/recipes.py | 620 ++ .../setuptools/_vendor/ordered_set.py | 488 + .../setuptools/_vendor/packaging/__about__.py | 26 + .../setuptools/_vendor/packaging/__init__.py | 25 + .../__pycache__/__about__.cpython-311.pyc | Bin 0 -> 693 bytes .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 614 bytes .../__pycache__/_manylinux.cpython-311.pyc | Bin 0 -> 13280 bytes .../__pycache__/_musllinux.cpython-311.pyc | Bin 0 -> 8048 bytes .../__pycache__/_structures.cpython-311.pyc | Bin 0 -> 3736 bytes .../__pycache__/markers.cpython-311.pyc | Bin 0 -> 16582 bytes .../__pycache__/requirements.cpython-311.pyc | Bin 0 -> 7697 bytes .../__pycache__/specifiers.cpython-311.pyc | Bin 0 -> 34414 bytes .../__pycache__/tags.cpython-311.pyc | Bin 0 -> 21399 bytes .../__pycache__/utils.cpython-311.pyc | Bin 0 -> 6734 bytes .../__pycache__/version.cpython-311.pyc | Bin 0 -> 21926 bytes .../_vendor/packaging/_manylinux.py | 301 + .../_vendor/packaging/_musllinux.py | 136 + .../_vendor/packaging/_structures.py | 61 + .../setuptools/_vendor/packaging/markers.py | 304 + .../_vendor/packaging/requirements.py | 146 + .../_vendor/packaging/specifiers.py | 802 ++ .../setuptools/_vendor/packaging/tags.py | 487 + .../setuptools/_vendor/packaging/utils.py | 136 + .../setuptools/_vendor/packaging/version.py | 504 + .../setuptools/_vendor/pyparsing/__init__.py | 331 + .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 8387 bytes .../__pycache__/actions.cpython-311.pyc | Bin 0 -> 8513 bytes .../__pycache__/common.cpython-311.pyc | Bin 0 -> 14835 bytes .../__pycache__/core.cpython-311.pyc | Bin 0 -> 277687 bytes .../__pycache__/exceptions.cpython-311.pyc | Bin 0 -> 12977 bytes .../__pycache__/helpers.cpython-311.pyc | Bin 0 -> 53678 bytes .../__pycache__/results.cpython-311.pyc | Bin 0 -> 36361 bytes .../__pycache__/testing.cpython-311.pyc | Bin 0 -> 19557 bytes .../__pycache__/unicode.cpython-311.pyc | Bin 0 -> 15415 bytes .../__pycache__/util.cpython-311.pyc | Bin 0 -> 14314 bytes .../setuptools/_vendor/pyparsing/actions.py | 207 + .../setuptools/_vendor/pyparsing/common.py | 424 + .../setuptools/_vendor/pyparsing/core.py | 5814 +++++++++++ .../_vendor/pyparsing/diagram/__init__.py | 642 ++ .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 28050 bytes .../_vendor/pyparsing/exceptions.py | 267 + .../setuptools/_vendor/pyparsing/helpers.py | 1088 +++ .../setuptools/_vendor/pyparsing/results.py | 760 ++ .../setuptools/_vendor/pyparsing/testing.py | 331 + .../setuptools/_vendor/pyparsing/unicode.py | 352 + .../setuptools/_vendor/pyparsing/util.py | 235 + .../setuptools/_vendor/tomli/__init__.py | 11 + .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 464 bytes .../tomli/__pycache__/_parser.cpython-311.pyc | Bin 0 -> 30903 bytes .../tomli/__pycache__/_re.cpython-311.pyc | Bin 0 -> 4543 bytes .../tomli/__pycache__/_types.cpython-311.pyc | Bin 0 -> 456 bytes .../setuptools/_vendor/tomli/_parser.py | 691 ++ .../setuptools/_vendor/tomli/_re.py | 107 + .../setuptools/_vendor/tomli/_types.py | 10 + .../setuptools/_vendor/typing_extensions.py | 2296 +++++ .../site-packages/setuptools/_vendor/zipp.py | 329 + .../site-packages/setuptools/archive_util.py | 213 + .../site-packages/setuptools/build_meta.py | 511 + .../site-packages/setuptools/cli-32.exe | Bin 0 -> 65536 bytes .../site-packages/setuptools/cli-64.exe | Bin 0 -> 74752 bytes .../site-packages/setuptools/cli-arm64.exe | Bin 0 -> 137216 bytes .../site-packages/setuptools/cli.exe | Bin 0 -> 65536 bytes .../setuptools/command/__init__.py | 12 + .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 683 bytes .../command/__pycache__/alias.cpython-311.pyc | Bin 0 -> 3950 bytes .../__pycache__/bdist_egg.cpython-311.pyc | Bin 0 -> 25632 bytes .../__pycache__/bdist_rpm.cpython-311.pyc | Bin 0 -> 2238 bytes .../command/__pycache__/build.cpython-311.pyc | Bin 0 -> 7044 bytes .../__pycache__/build_clib.cpython-311.pyc | Bin 0 -> 4171 bytes .../__pycache__/build_ext.cpython-311.pyc | Bin 0 -> 22058 bytes .../__pycache__/build_py.cpython-311.pyc | Bin 0 -> 23224 bytes .../__pycache__/develop.cpython-311.pyc | Bin 0 -> 10966 bytes .../__pycache__/dist_info.cpython-311.pyc | Bin 0 -> 8028 bytes .../__pycache__/easy_install.cpython-311.pyc | Bin 0 -> 119383 bytes .../editable_wheel.cpython-311.pyc | Bin 0 -> 51461 bytes .../__pycache__/egg_info.cpython-311.pyc | Bin 0 -> 39881 bytes .../__pycache__/install.cpython-311.pyc | Bin 0 -> 6863 bytes .../install_egg_info.cpython-311.pyc | Bin 0 -> 4176 bytes .../__pycache__/install_lib.cpython-311.pyc | Bin 0 -> 6458 bytes .../install_scripts.cpython-311.pyc | Bin 0 -> 4327 bytes .../__pycache__/py36compat.cpython-311.pyc | Bin 0 -> 8084 bytes .../__pycache__/register.cpython-311.pyc | Bin 0 -> 1174 bytes .../__pycache__/rotate.cpython-311.pyc | Bin 0 -> 4234 bytes .../__pycache__/saveopts.cpython-311.pyc | Bin 0 -> 1414 bytes .../command/__pycache__/sdist.cpython-311.pyc | Bin 0 -> 13486 bytes .../__pycache__/setopt.cpython-311.pyc | Bin 0 -> 7726 bytes .../command/__pycache__/test.cpython-311.pyc | Bin 0 -> 14667 bytes .../__pycache__/upload.cpython-311.pyc | Bin 0 -> 1138 bytes .../__pycache__/upload_docs.cpython-311.pyc | Bin 0 -> 11989 bytes .../site-packages/setuptools/command/alias.py | 78 + .../setuptools/command/bdist_egg.py | 457 + .../setuptools/command/bdist_rpm.py | 40 + .../site-packages/setuptools/command/build.py | 146 + .../setuptools/command/build_clib.py | 101 + .../setuptools/command/build_ext.py | 383 + .../setuptools/command/build_py.py | 368 + .../setuptools/command/develop.py | 193 + .../setuptools/command/dist_info.py | 142 + .../setuptools/command/easy_install.py | 2312 +++++ .../setuptools/command/editable_wheel.py | 844 ++ .../setuptools/command/egg_info.py | 763 ++ .../setuptools/command/install.py | 139 + .../setuptools/command/install_egg_info.py | 63 + .../setuptools/command/install_lib.py | 122 + .../setuptools/command/install_scripts.py | 70 + .../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 | 210 + .../setuptools/command/setopt.py | 149 + .../site-packages/setuptools/command/test.py | 251 + .../setuptools/command/upload.py | 17 + .../setuptools/command/upload_docs.py | 213 + .../setuptools/config/__init__.py | 35 + .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 2078 bytes .../_apply_pyprojecttoml.cpython-311.pyc | Bin 0 -> 22581 bytes .../config/__pycache__/expand.cpython-311.pyc | Bin 0 -> 28292 bytes .../__pycache__/pyprojecttoml.cpython-311.pyc | Bin 0 -> 27490 bytes .../__pycache__/setupcfg.cpython-311.pyc | Bin 0 -> 33074 bytes .../setuptools/config/_apply_pyprojecttoml.py | 377 + .../config/_validate_pyproject/__init__.py | 34 + .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 2366 bytes .../error_reporting.cpython-311.pyc | Bin 0 -> 20257 bytes .../extra_validations.cpython-311.pyc | Bin 0 -> 1915 bytes .../fastjsonschema_exceptions.cpython-311.pyc | Bin 0 -> 3290 bytes ...fastjsonschema_validations.cpython-311.pyc | Bin 0 -> 192688 bytes .../__pycache__/formats.cpython-311.pyc | Bin 0 -> 14405 bytes .../_validate_pyproject/error_reporting.py | 318 + .../_validate_pyproject/extra_validations.py | 36 + .../fastjsonschema_exceptions.py | 51 + .../fastjsonschema_validations.py | 1035 ++ .../config/_validate_pyproject/formats.py | 259 + .../site-packages/setuptools/config/expand.py | 462 + .../setuptools/config/pyprojecttoml.py | 493 + .../setuptools/config/setupcfg.py | 762 ++ .../site-packages/setuptools/dep_util.py | 25 + .../site-packages/setuptools/depends.py | 176 + .../site-packages/setuptools/discovery.py | 600 ++ .../site-packages/setuptools/dist.py | 1222 +++ .../site-packages/setuptools/errors.py | 58 + .../site-packages/setuptools/extension.py | 148 + .../setuptools/extern/__init__.py | 76 + .../__pycache__/__init__.cpython-311.pyc | Bin 0 -> 4442 bytes .../site-packages/setuptools/glob.py | 167 + .../site-packages/setuptools/gui-32.exe | Bin 0 -> 65536 bytes .../site-packages/setuptools/gui-64.exe | Bin 0 -> 75264 bytes .../site-packages/setuptools/gui-arm64.exe | Bin 0 -> 137728 bytes .../site-packages/setuptools/gui.exe | Bin 0 -> 65536 bytes .../site-packages/setuptools/installer.py | 104 + .../site-packages/setuptools/launch.py | 36 + .../site-packages/setuptools/logging.py | 36 + .../site-packages/setuptools/monkey.py | 165 + .../site-packages/setuptools/msvc.py | 1703 ++++ .../site-packages/setuptools/namespaces.py | 107 + .../site-packages/setuptools/package_index.py | 1126 +++ .../site-packages/setuptools/py34compat.py | 13 + .../site-packages/setuptools/sandbox.py | 530 + .../setuptools/script (dev).tmpl | 6 + .../site-packages/setuptools/script.tmpl | 3 + .../site-packages/setuptools/unicode_utils.py | 42 + .../site-packages/setuptools/version.py | 6 + .../site-packages/setuptools/wheel.py | 222 + .../setuptools/windows_support.py | 29 + .../INSTALLER | 1 + .../METADATA | 68 + .../typing_extensions-4.13.2.dist-info/RECORD | 6 + .../typing_extensions-4.13.2.dist-info/WHEEL | 4 + .../licenses/LICENSE | 279 + .../site-packages/typing_extensions.py | 4584 +++++++++ .../INSTALLER | 1 + .../METADATA | 49 + .../typing_inspection-0.4.1.dist-info/RECORD | 10 + .../typing_inspection-0.4.1.dist-info/WHEEL | 4 + .../licenses/LICENSE | 21 + .../typing_inspection/__init__.py | 0 .../typing_inspection/introspection.py | 587 ++ .../site-packages/typing_inspection/py.typed | 0 .../typing_inspection/typing_objects.py | 596 ++ .../typing_inspection/typing_objects.pyi | 406 + .venv/pyvenv.cfg | 5 + 2135 files changed, 415695 insertions(+) create mode 100644 .python-version create mode 100644 .venv/bin/Activate.ps1 create mode 100644 .venv/bin/activate create mode 100644 .venv/bin/activate.csh create mode 100644 .venv/bin/activate.fish create mode 100755 .venv/bin/email_validator create mode 100755 .venv/bin/pip create mode 100755 .venv/bin/pip3 create mode 100755 .venv/bin/pip3.11 create mode 120000 .venv/bin/python create mode 120000 .venv/bin/python3 create mode 120000 .venv/bin/python3.11 create mode 100644 .venv/lib/python3.11/site-packages/_distutils_hack/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/_distutils_hack/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/_distutils_hack/__pycache__/override.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/_distutils_hack/override.py create mode 100644 .venv/lib/python3.11/site-packages/annotated_types-0.7.0.dist-info/INSTALLER create mode 100644 .venv/lib/python3.11/site-packages/annotated_types-0.7.0.dist-info/METADATA create mode 100644 .venv/lib/python3.11/site-packages/annotated_types-0.7.0.dist-info/RECORD create mode 100644 .venv/lib/python3.11/site-packages/annotated_types-0.7.0.dist-info/WHEEL create mode 100644 .venv/lib/python3.11/site-packages/annotated_types-0.7.0.dist-info/licenses/LICENSE create mode 100644 .venv/lib/python3.11/site-packages/annotated_types/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/annotated_types/py.typed create mode 100644 .venv/lib/python3.11/site-packages/annotated_types/test_cases.py create mode 100644 .venv/lib/python3.11/site-packages/distutils-precedence.pth create mode 100644 .venv/lib/python3.11/site-packages/dns/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/dns/_asyncbackend.py create mode 100644 .venv/lib/python3.11/site-packages/dns/_asyncio_backend.py create mode 100644 .venv/lib/python3.11/site-packages/dns/_ddr.py create mode 100644 .venv/lib/python3.11/site-packages/dns/_features.py create mode 100644 .venv/lib/python3.11/site-packages/dns/_immutable_ctx.py create mode 100644 .venv/lib/python3.11/site-packages/dns/_trio_backend.py create mode 100644 .venv/lib/python3.11/site-packages/dns/asyncbackend.py create mode 100644 .venv/lib/python3.11/site-packages/dns/asyncquery.py create mode 100644 .venv/lib/python3.11/site-packages/dns/asyncresolver.py create mode 100644 .venv/lib/python3.11/site-packages/dns/dnssec.py create mode 100644 .venv/lib/python3.11/site-packages/dns/dnssecalgs/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/dns/dnssecalgs/base.py create mode 100644 .venv/lib/python3.11/site-packages/dns/dnssecalgs/cryptography.py create mode 100644 .venv/lib/python3.11/site-packages/dns/dnssecalgs/dsa.py create mode 100644 .venv/lib/python3.11/site-packages/dns/dnssecalgs/ecdsa.py create mode 100644 .venv/lib/python3.11/site-packages/dns/dnssecalgs/eddsa.py create mode 100644 .venv/lib/python3.11/site-packages/dns/dnssecalgs/rsa.py create mode 100644 .venv/lib/python3.11/site-packages/dns/dnssectypes.py create mode 100644 .venv/lib/python3.11/site-packages/dns/e164.py create mode 100644 .venv/lib/python3.11/site-packages/dns/edns.py create mode 100644 .venv/lib/python3.11/site-packages/dns/entropy.py create mode 100644 .venv/lib/python3.11/site-packages/dns/enum.py create mode 100644 .venv/lib/python3.11/site-packages/dns/exception.py create mode 100644 .venv/lib/python3.11/site-packages/dns/flags.py create mode 100644 .venv/lib/python3.11/site-packages/dns/grange.py create mode 100644 .venv/lib/python3.11/site-packages/dns/immutable.py create mode 100644 .venv/lib/python3.11/site-packages/dns/inet.py create mode 100644 .venv/lib/python3.11/site-packages/dns/ipv4.py create mode 100644 .venv/lib/python3.11/site-packages/dns/ipv6.py create mode 100644 .venv/lib/python3.11/site-packages/dns/message.py create mode 100644 .venv/lib/python3.11/site-packages/dns/name.py create mode 100644 .venv/lib/python3.11/site-packages/dns/namedict.py create mode 100644 .venv/lib/python3.11/site-packages/dns/nameserver.py create mode 100644 .venv/lib/python3.11/site-packages/dns/node.py create mode 100644 .venv/lib/python3.11/site-packages/dns/opcode.py create mode 100644 .venv/lib/python3.11/site-packages/dns/py.typed create mode 100644 .venv/lib/python3.11/site-packages/dns/query.py create mode 100644 .venv/lib/python3.11/site-packages/dns/quic/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/dns/quic/_asyncio.py create mode 100644 .venv/lib/python3.11/site-packages/dns/quic/_common.py create mode 100644 .venv/lib/python3.11/site-packages/dns/quic/_sync.py create mode 100644 .venv/lib/python3.11/site-packages/dns/quic/_trio.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rcode.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rdata.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rdataclass.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rdataset.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rdatatype.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rdtypes/ANY/AFSDB.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rdtypes/ANY/AMTRELAY.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rdtypes/ANY/AVC.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rdtypes/ANY/CAA.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rdtypes/ANY/CDNSKEY.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rdtypes/ANY/CDS.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rdtypes/ANY/CERT.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rdtypes/ANY/CNAME.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rdtypes/ANY/CSYNC.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rdtypes/ANY/DLV.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rdtypes/ANY/DNAME.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rdtypes/ANY/DNSKEY.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rdtypes/ANY/DS.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rdtypes/ANY/EUI48.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rdtypes/ANY/EUI64.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rdtypes/ANY/GPOS.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rdtypes/ANY/HINFO.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rdtypes/ANY/HIP.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rdtypes/ANY/ISDN.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rdtypes/ANY/L32.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rdtypes/ANY/L64.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rdtypes/ANY/LOC.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rdtypes/ANY/LP.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rdtypes/ANY/MX.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rdtypes/ANY/NID.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rdtypes/ANY/NINFO.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rdtypes/ANY/NS.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rdtypes/ANY/NSEC.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rdtypes/ANY/NSEC3.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rdtypes/ANY/NSEC3PARAM.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rdtypes/ANY/OPENPGPKEY.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rdtypes/ANY/OPT.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rdtypes/ANY/PTR.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rdtypes/ANY/RESINFO.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rdtypes/ANY/RP.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rdtypes/ANY/RRSIG.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rdtypes/ANY/RT.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rdtypes/ANY/SMIMEA.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rdtypes/ANY/SOA.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rdtypes/ANY/SPF.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rdtypes/ANY/SSHFP.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rdtypes/ANY/TKEY.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rdtypes/ANY/TLSA.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rdtypes/ANY/TSIG.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rdtypes/ANY/TXT.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rdtypes/ANY/URI.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rdtypes/ANY/WALLET.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rdtypes/ANY/X25.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rdtypes/ANY/ZONEMD.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rdtypes/ANY/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rdtypes/CH/A.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rdtypes/CH/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rdtypes/IN/A.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rdtypes/IN/AAAA.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rdtypes/IN/APL.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rdtypes/IN/DHCID.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rdtypes/IN/HTTPS.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rdtypes/IN/IPSECKEY.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rdtypes/IN/KX.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rdtypes/IN/NAPTR.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rdtypes/IN/NSAP.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rdtypes/IN/NSAP_PTR.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rdtypes/IN/PX.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rdtypes/IN/SRV.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rdtypes/IN/SVCB.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rdtypes/IN/WKS.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rdtypes/IN/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rdtypes/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rdtypes/dnskeybase.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rdtypes/dsbase.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rdtypes/euibase.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rdtypes/mxbase.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rdtypes/nsbase.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rdtypes/svcbbase.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rdtypes/tlsabase.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rdtypes/txtbase.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rdtypes/util.py create mode 100644 .venv/lib/python3.11/site-packages/dns/renderer.py create mode 100644 .venv/lib/python3.11/site-packages/dns/resolver.py create mode 100644 .venv/lib/python3.11/site-packages/dns/reversename.py create mode 100644 .venv/lib/python3.11/site-packages/dns/rrset.py create mode 100644 .venv/lib/python3.11/site-packages/dns/serial.py create mode 100644 .venv/lib/python3.11/site-packages/dns/set.py create mode 100644 .venv/lib/python3.11/site-packages/dns/tokenizer.py create mode 100644 .venv/lib/python3.11/site-packages/dns/transaction.py create mode 100644 .venv/lib/python3.11/site-packages/dns/tsig.py create mode 100644 .venv/lib/python3.11/site-packages/dns/tsigkeyring.py create mode 100644 .venv/lib/python3.11/site-packages/dns/ttl.py create mode 100644 .venv/lib/python3.11/site-packages/dns/update.py create mode 100644 .venv/lib/python3.11/site-packages/dns/version.py create mode 100644 .venv/lib/python3.11/site-packages/dns/versioned.py create mode 100644 .venv/lib/python3.11/site-packages/dns/win32util.py create mode 100644 .venv/lib/python3.11/site-packages/dns/wire.py create mode 100644 .venv/lib/python3.11/site-packages/dns/xfr.py create mode 100644 .venv/lib/python3.11/site-packages/dns/zone.py create mode 100644 .venv/lib/python3.11/site-packages/dns/zonefile.py create mode 100644 .venv/lib/python3.11/site-packages/dns/zonetypes.py create mode 100644 .venv/lib/python3.11/site-packages/dnspython-2.7.0.dist-info/INSTALLER create mode 100644 .venv/lib/python3.11/site-packages/dnspython-2.7.0.dist-info/METADATA create mode 100644 .venv/lib/python3.11/site-packages/dnspython-2.7.0.dist-info/RECORD create mode 100644 .venv/lib/python3.11/site-packages/dnspython-2.7.0.dist-info/WHEEL create mode 100644 .venv/lib/python3.11/site-packages/dnspython-2.7.0.dist-info/licenses/LICENSE create mode 100644 .venv/lib/python3.11/site-packages/email_validator-2.2.0.dist-info/INSTALLER create mode 100644 .venv/lib/python3.11/site-packages/email_validator-2.2.0.dist-info/LICENSE create mode 100644 .venv/lib/python3.11/site-packages/email_validator-2.2.0.dist-info/METADATA create mode 100644 .venv/lib/python3.11/site-packages/email_validator-2.2.0.dist-info/RECORD create mode 100644 .venv/lib/python3.11/site-packages/email_validator-2.2.0.dist-info/WHEEL create mode 100644 .venv/lib/python3.11/site-packages/email_validator-2.2.0.dist-info/entry_points.txt create mode 100644 .venv/lib/python3.11/site-packages/email_validator-2.2.0.dist-info/top_level.txt create mode 100644 .venv/lib/python3.11/site-packages/email_validator/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/email_validator/__main__.py create mode 100644 .venv/lib/python3.11/site-packages/email_validator/deliverability.py create mode 100644 .venv/lib/python3.11/site-packages/email_validator/exceptions_types.py create mode 100644 .venv/lib/python3.11/site-packages/email_validator/py.typed create mode 100644 .venv/lib/python3.11/site-packages/email_validator/rfc_constants.py create mode 100644 .venv/lib/python3.11/site-packages/email_validator/syntax.py create mode 100644 .venv/lib/python3.11/site-packages/email_validator/validate_email.py create mode 100644 .venv/lib/python3.11/site-packages/email_validator/version.py create mode 100644 .venv/lib/python3.11/site-packages/idna-3.10.dist-info/INSTALLER create mode 100644 .venv/lib/python3.11/site-packages/idna-3.10.dist-info/LICENSE.md create mode 100644 .venv/lib/python3.11/site-packages/idna-3.10.dist-info/METADATA create mode 100644 .venv/lib/python3.11/site-packages/idna-3.10.dist-info/RECORD create mode 100644 .venv/lib/python3.11/site-packages/idna-3.10.dist-info/WHEEL create mode 100644 .venv/lib/python3.11/site-packages/idna/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/idna/codec.py create mode 100644 .venv/lib/python3.11/site-packages/idna/compat.py create mode 100644 .venv/lib/python3.11/site-packages/idna/core.py create mode 100644 .venv/lib/python3.11/site-packages/idna/idnadata.py create mode 100644 .venv/lib/python3.11/site-packages/idna/intranges.py create mode 100644 .venv/lib/python3.11/site-packages/idna/package_data.py create mode 100644 .venv/lib/python3.11/site-packages/idna/py.typed create mode 100644 .venv/lib/python3.11/site-packages/idna/uts46data.py create mode 100644 .venv/lib/python3.11/site-packages/pip-24.0.dist-info/AUTHORS.txt create mode 100644 .venv/lib/python3.11/site-packages/pip-24.0.dist-info/INSTALLER create mode 100644 .venv/lib/python3.11/site-packages/pip-24.0.dist-info/LICENSE.txt create mode 100644 .venv/lib/python3.11/site-packages/pip-24.0.dist-info/METADATA create mode 100644 .venv/lib/python3.11/site-packages/pip-24.0.dist-info/RECORD create mode 100644 .venv/lib/python3.11/site-packages/pip-24.0.dist-info/REQUESTED create mode 100644 .venv/lib/python3.11/site-packages/pip-24.0.dist-info/WHEEL create mode 100644 .venv/lib/python3.11/site-packages/pip-24.0.dist-info/entry_points.txt create mode 100644 .venv/lib/python3.11/site-packages/pip-24.0.dist-info/top_level.txt create mode 100644 .venv/lib/python3.11/site-packages/pip/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/pip/__main__.py create mode 100644 .venv/lib/python3.11/site-packages/pip/__pip-runner__.py create mode 100644 .venv/lib/python3.11/site-packages/pip/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/__pycache__/__main__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/__pycache__/__pip-runner__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/__pycache__/build_env.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/__pycache__/cache.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/__pycache__/configuration.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/__pycache__/exceptions.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/__pycache__/main.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/__pycache__/pyproject.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/build_env.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/cache.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/cli/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/cli/__pycache__/main.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/cli/__pycache__/parser.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/cli/autocompletion.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/cli/base_command.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/cli/cmdoptions.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/cli/command_context.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/cli/main.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/cli/main_parser.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/cli/parser.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/cli/progress_bars.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/cli/req_command.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/cli/spinners.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/cli/status_codes.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/commands/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/cache.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/check.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/completion.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/debug.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/download.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/hash.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/help.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/index.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/inspect.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/install.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/list.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/search.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/show.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/commands/cache.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/commands/check.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/commands/completion.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/commands/configuration.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/commands/debug.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/commands/download.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/commands/freeze.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/commands/hash.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/commands/help.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/commands/index.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/commands/inspect.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/commands/install.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/commands/list.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/commands/search.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/commands/show.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/commands/uninstall.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/commands/wheel.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/configuration.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/distributions/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/distributions/__pycache__/base.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/distributions/base.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/distributions/installed.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/distributions/sdist.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/distributions/wheel.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/exceptions.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/index/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/index/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/index/__pycache__/collector.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/index/__pycache__/sources.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/index/collector.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/index/package_finder.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/index/sources.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/locations/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/locations/__pycache__/base.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/locations/_distutils.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/locations/_sysconfig.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/locations/base.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/main.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/metadata/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/metadata/__pycache__/base.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/metadata/_json.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/metadata/base.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/metadata/importlib/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/metadata/importlib/__pycache__/_compat.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/metadata/importlib/__pycache__/_dists.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/metadata/importlib/__pycache__/_envs.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/metadata/importlib/_compat.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/metadata/importlib/_dists.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/metadata/importlib/_envs.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/metadata/pkg_resources.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/models/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/models/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/models/__pycache__/candidate.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/models/__pycache__/format_control.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/models/__pycache__/index.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/models/__pycache__/installation_report.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/models/__pycache__/link.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/models/__pycache__/scheme.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/models/__pycache__/target_python.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/models/__pycache__/wheel.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/models/candidate.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/models/direct_url.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/models/format_control.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/models/index.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/models/installation_report.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/models/link.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/models/scheme.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/models/search_scope.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/models/selection_prefs.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/models/target_python.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/models/wheel.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/network/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/network/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/network/__pycache__/auth.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/network/__pycache__/cache.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/network/__pycache__/download.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/network/__pycache__/session.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/network/__pycache__/utils.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/network/auth.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/network/cache.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/network/download.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/network/lazy_wheel.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/network/session.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/network/utils.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/network/xmlrpc.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/operations/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/operations/__pycache__/check.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/operations/build/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/operations/build/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/operations/build/__pycache__/build_tracker.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/operations/build/__pycache__/metadata_editable.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/operations/build/__pycache__/metadata_legacy.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/operations/build/__pycache__/wheel_editable.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/operations/build/build_tracker.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/operations/build/metadata.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/operations/build/metadata_editable.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/operations/build/metadata_legacy.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/operations/build/wheel.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/operations/build/wheel_editable.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/operations/build/wheel_legacy.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/operations/check.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/operations/freeze.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/operations/install/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/operations/install/__pycache__/editable_legacy.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/operations/install/editable_legacy.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/operations/install/wheel.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/operations/prepare.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/pyproject.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/req/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/req/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/req/__pycache__/constructors.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/req/__pycache__/req_file.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/req/__pycache__/req_install.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/req/__pycache__/req_set.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/req/constructors.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/req/req_file.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/req/req_install.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/req/req_set.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/req/req_uninstall.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/resolution/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/resolution/__pycache__/base.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/resolution/base.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/resolution/legacy/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/resolution/legacy/resolver.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/base.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/candidates.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/factory.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/provider.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/reporter.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/requirements.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/resolver.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/self_outdated_check.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/utils/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/_jaraco_text.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/_log.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/compat.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/logging.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/misc.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/models.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/urls.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/utils/_jaraco_text.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/utils/_log.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/utils/appdirs.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/utils/compat.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/utils/compatibility_tags.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/utils/datetime.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/utils/deprecation.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/utils/direct_url_helpers.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/utils/egg_link.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/utils/encoding.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/utils/entrypoints.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/utils/filesystem.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/utils/filetypes.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/utils/glibc.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/utils/hashes.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/utils/logging.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/utils/misc.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/utils/models.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/utils/packaging.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/utils/setuptools_build.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/utils/subprocess.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/utils/temp_dir.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/utils/unpacking.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/utils/urls.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/utils/virtualenv.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/utils/wheel.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/vcs/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/vcs/__pycache__/git.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/vcs/bazaar.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/vcs/git.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/vcs/mercurial.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/vcs/subversion.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/vcs/versioncontrol.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_internal/wheel_builder.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/__pycache__/six.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/__pycache__/typing_extensions.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/_cmd.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/adapter.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/cache.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/caches/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/controller.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/filewrapper.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/heuristics.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/py.typed create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/serialize.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/wrapper.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/certifi/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/certifi/__main__.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/certifi/cacert.pem create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/certifi/core.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/certifi/py.typed create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/big5freq.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/big5prober.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/chardistribution.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/charsetprober.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachine.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachinedict.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/cp949prober.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/enums.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/escprober.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/escsm.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/eucjpprober.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/euckrfreq.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/euckrprober.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/euctwfreq.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/euctwprober.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/gb2312freq.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/gb2312prober.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/hebrewprober.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/jisfreq.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/johabfreq.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/johabprober.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/jpcntx.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/langbulgarianmodel.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/langgreekmodel.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/langhungarianmodel.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/langrussianmodel.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/langthaimodel.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/langturkishmodel.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/latin1prober.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/macromanprober.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/mbcharsetprober.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/mbcssm.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/resultdict.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/sbcharsetprober.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/sbcsgroupprober.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/sjisprober.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/universaldetector.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/utf1632prober.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/utf8prober.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/version.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/big5freq.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/big5prober.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/chardistribution.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/charsetgroupprober.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/charsetprober.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/cli/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/cli/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/cli/__pycache__/chardetect.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/cli/chardetect.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/codingstatemachine.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/codingstatemachinedict.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/cp949prober.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/enums.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/escprober.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/escsm.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/eucjpprober.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/euckrfreq.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/euckrprober.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/euctwfreq.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/euctwprober.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/gb2312freq.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/gb2312prober.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/hebrewprober.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/jisfreq.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/johabfreq.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/johabprober.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/jpcntx.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/langbulgarianmodel.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/langgreekmodel.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/langhebrewmodel.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/langhungarianmodel.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/langrussianmodel.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/langthaimodel.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/langturkishmodel.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/latin1prober.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/macromanprober.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/mbcharsetprober.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/mbcsgroupprober.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/mbcssm.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/metadata/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/metadata/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/metadata/__pycache__/languages.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/metadata/languages.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/py.typed create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/resultdict.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/sbcharsetprober.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/sbcsgroupprober.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/sjisprober.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/universaldetector.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/utf1632prober.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/utf8prober.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/chardet/version.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/colorama/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/colorama/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/colorama/__pycache__/ansi.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/colorama/__pycache__/ansitowin32.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/colorama/__pycache__/initialise.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/colorama/__pycache__/win32.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/colorama/__pycache__/winterm.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/colorama/ansi.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/colorama/ansitowin32.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/colorama/initialise.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/__pycache__/ansi_test.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/__pycache__/ansitowin32_test.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/__pycache__/initialise_test.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/__pycache__/isatty_test.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/__pycache__/utils.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/__pycache__/winterm_test.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/ansi_test.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/ansitowin32_test.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/initialise_test.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/isatty_test.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/utils.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/winterm_test.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/colorama/win32.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/colorama/winterm.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/distlib/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/distlib/__pycache__/locators.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/distlib/compat.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/distlib/database.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/distlib/index.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/distlib/locators.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/distlib/manifest.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/distlib/markers.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/distlib/metadata.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/distlib/resources.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/distlib/scripts.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/distlib/t32.exe create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/distlib/t64-arm.exe create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/distlib/t64.exe create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/distlib/util.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/distlib/version.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/distlib/w32.exe create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/distlib/w64-arm.exe create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/distlib/w64.exe create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/distlib/wheel.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/distro/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/distro/__main__.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/distro/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/distro/__pycache__/__main__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/distro/__pycache__/distro.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/distro/distro.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/distro/py.typed create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/idna/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/idna/__pycache__/core.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/idna/codec.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/idna/compat.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/idna/core.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/idna/idnadata.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/idna/intranges.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/idna/package_data.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/idna/py.typed create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/idna/uts46data.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/msgpack/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/msgpack/exceptions.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/msgpack/ext.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/msgpack/fallback.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/packaging/__about__.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/packaging/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/packaging/__pycache__/__about__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/packaging/_manylinux.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/packaging/_musllinux.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/packaging/_structures.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/packaging/markers.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/packaging/py.typed create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/packaging/requirements.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/packaging/specifiers.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/packaging/tags.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/packaging/utils.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/packaging/version.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pkg_resources/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/__main__.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/__pycache__/__main__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/__pycache__/android.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/__pycache__/api.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/__pycache__/macos.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/__pycache__/unix.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/__pycache__/version.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/__pycache__/windows.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/android.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/api.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/macos.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/py.typed create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/unix.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/version.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/windows.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pygments/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pygments/__main__.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pygments/__pycache__/__main__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pygments/__pycache__/cmdline.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pygments/__pycache__/console.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pygments/__pycache__/filter.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pygments/__pycache__/formatter.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pygments/__pycache__/lexer.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pygments/__pycache__/modeline.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pygments/__pycache__/regexopt.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pygments/__pycache__/scanner.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pygments/__pycache__/sphinxext.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pygments/__pycache__/style.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pygments/__pycache__/token.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pygments/__pycache__/unistring.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pygments/cmdline.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pygments/console.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pygments/filter.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pygments/filters/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatter.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/__pycache__/bbcode.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/__pycache__/groff.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/__pycache__/html.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/__pycache__/img.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/__pycache__/irc.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/__pycache__/latex.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/__pycache__/other.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/__pycache__/pangomarkup.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/__pycache__/rtf.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/__pycache__/svg.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal256.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/_mapping.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/bbcode.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/groff.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/html.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/img.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/irc.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/latex.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/other.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/pangomarkup.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/rtf.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/svg.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/terminal.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/terminal256.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pygments/lexer.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pygments/lexers/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pygments/lexers/__pycache__/python.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pygments/lexers/_mapping.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pygments/lexers/python.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pygments/modeline.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pygments/plugin.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pygments/regexopt.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pygments/scanner.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pygments/sphinxext.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pygments/style.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pygments/styles/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pygments/styles/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pygments/token.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pygments/unistring.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pygments/util.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pyparsing/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pyparsing/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pyparsing/__pycache__/actions.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pyparsing/__pycache__/common.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pyparsing/__pycache__/core.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pyparsing/__pycache__/exceptions.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pyparsing/__pycache__/helpers.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pyparsing/__pycache__/results.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pyparsing/__pycache__/testing.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pyparsing/__pycache__/unicode.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pyparsing/__pycache__/util.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pyparsing/actions.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pyparsing/common.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pyparsing/core.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pyparsing/diagram/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pyparsing/diagram/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pyparsing/exceptions.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pyparsing/helpers.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pyparsing/py.typed create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pyparsing/results.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pyparsing/testing.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pyparsing/unicode.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pyparsing/util.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pyproject_hooks/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pyproject_hooks/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_compat.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_impl.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pyproject_hooks/_compat.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pyproject_hooks/_impl.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/_in_process.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/requests/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/_internal_utils.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/api.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/help.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/models.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/requests/__version__.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/requests/_internal_utils.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/requests/adapters.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/requests/api.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/requests/auth.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/requests/certs.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/requests/compat.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/requests/cookies.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/requests/exceptions.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/requests/help.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/requests/hooks.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/requests/models.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/requests/packages.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/requests/sessions.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/requests/status_codes.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/requests/structures.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/requests/utils.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/__pycache__/providers.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/__pycache__/reporters.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/__pycache__/resolvers.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/compat/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/compat/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/compat/__pycache__/collections_abc.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/providers.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/py.typed create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/reporters.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/resolvers.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/structs.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/__main__.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/__main__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_cell_widths.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_emoji_codes.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_emoji_replace.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_export_format.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_extension.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_fileno.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_inspect.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_log_render.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_loop.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_null_file.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_palettes.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_pick.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_ratio.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_spinners.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_stack.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_timer.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_win32_console.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_windows.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_windows_renderer.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/abc.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/align.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/ansi.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/bar.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/box.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/cells.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/color.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/color_triplet.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/columns.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/console.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/constrain.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/containers.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/control.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/default_styles.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/diagnose.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/errors.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/file_proxy.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/filesize.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/highlighter.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/json.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/jupyter.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/layout.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/live.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/live_render.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/logging.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/markup.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/measure.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/padding.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/palette.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/pretty.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/progress.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/progress_bar.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/prompt.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/protocol.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/region.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/rule.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/scope.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/screen.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/segment.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/spinner.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/status.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/style.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/styled.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/syntax.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/table.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/terminal_theme.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/text.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/themes.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/traceback.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/tree.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/_cell_widths.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/_emoji_codes.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/_emoji_replace.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/_export_format.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/_extension.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/_fileno.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/_inspect.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/_log_render.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/_loop.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/_null_file.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/_palettes.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/_pick.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/_ratio.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/_spinners.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/_stack.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/_timer.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/_win32_console.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/_windows.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/_windows_renderer.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/_wrap.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/abc.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/align.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/ansi.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/bar.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/box.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/cells.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/color.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/color_triplet.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/columns.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/console.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/constrain.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/containers.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/control.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/default_styles.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/diagnose.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/emoji.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/errors.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/file_proxy.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/filesize.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/highlighter.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/json.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/jupyter.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/layout.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/live.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/live_render.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/logging.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/markup.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/measure.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/padding.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/pager.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/palette.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/panel.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/pretty.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/progress.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/progress_bar.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/prompt.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/protocol.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/py.typed create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/region.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/repr.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/rule.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/scope.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/screen.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/segment.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/spinner.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/status.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/style.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/styled.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/syntax.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/table.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/terminal_theme.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/text.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/theme.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/themes.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/traceback.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/rich/tree.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/six.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/tenacity/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/tenacity/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/tenacity/__pycache__/_asyncio.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/tenacity/__pycache__/_utils.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/tenacity/__pycache__/after.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/tenacity/__pycache__/before.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/tenacity/__pycache__/before_sleep.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/tenacity/__pycache__/nap.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/tenacity/__pycache__/retry.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/tenacity/__pycache__/stop.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/tenacity/__pycache__/tornadoweb.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/tenacity/__pycache__/wait.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/tenacity/_asyncio.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/tenacity/_utils.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/tenacity/after.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/tenacity/before.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/tenacity/before_sleep.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/tenacity/nap.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/tenacity/py.typed create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/tenacity/retry.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/tenacity/stop.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/tenacity/tornadoweb.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/tenacity/wait.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/tomli/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/tomli/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/tomli/__pycache__/_parser.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/tomli/__pycache__/_re.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/tomli/__pycache__/_types.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/tomli/_parser.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/tomli/_re.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/tomli/_types.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/tomli/py.typed create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/truststore/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/truststore/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/truststore/__pycache__/_api.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/truststore/__pycache__/_macos.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/truststore/__pycache__/_openssl.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/truststore/__pycache__/_ssl_constants.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/truststore/__pycache__/_windows.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/truststore/_api.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/truststore/_macos.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/truststore/_openssl.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/truststore/_ssl_constants.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/truststore/_windows.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/truststore/py.typed create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/typing_extensions.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/urllib3/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/urllib3/__pycache__/_collections.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/urllib3/__pycache__/_version.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/urllib3/__pycache__/connectionpool.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/urllib3/__pycache__/exceptions.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/urllib3/__pycache__/response.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/urllib3/_collections.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/urllib3/_version.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/urllib3/connection.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/urllib3/connectionpool.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/urllib3/contrib/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/urllib3/contrib/appengine.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/urllib3/contrib/securetransport.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/urllib3/contrib/socks.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/urllib3/exceptions.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/urllib3/fields.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/urllib3/filepost.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/urllib3/packages/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/urllib3/packages/__pycache__/six.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/weakref_finalize.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/urllib3/packages/backports/weakref_finalize.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/urllib3/packages/six.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/urllib3/poolmanager.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/urllib3/request.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/urllib3/response.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/urllib3/util/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/urllib3/util/__pycache__/connection.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/urllib3/util/__pycache__/proxy.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/urllib3/util/__pycache__/queue.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/urllib3/util/__pycache__/request.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/urllib3/util/__pycache__/response.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/urllib3/util/__pycache__/wait.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/urllib3/util/connection.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/urllib3/util/proxy.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/urllib3/util/queue.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/urllib3/util/request.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/urllib3/util/response.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/urllib3/util/retry.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/urllib3/util/ssl_.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/urllib3/util/ssltransport.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/urllib3/util/timeout.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/urllib3/util/url.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/urllib3/util/wait.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/vendor.txt create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/webencodings/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/webencodings/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/webencodings/__pycache__/labels.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/webencodings/__pycache__/mklabels.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/webencodings/__pycache__/tests.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/webencodings/__pycache__/x_user_defined.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/webencodings/labels.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/webencodings/mklabels.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/webencodings/tests.py create mode 100644 .venv/lib/python3.11/site-packages/pip/_vendor/webencodings/x_user_defined.py create mode 100644 .venv/lib/python3.11/site-packages/pip/py.typed create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/_vendor/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/_vendor/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/_vendor/__pycache__/appdirs.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/_vendor/__pycache__/zipp.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/_vendor/appdirs.py create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/_vendor/importlib_resources/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_adapters.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_common.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_compat.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_itertools.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_legacy.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/abc.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/readers.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/simple.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/_vendor/importlib_resources/_adapters.py create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/_vendor/importlib_resources/_common.py create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/_vendor/importlib_resources/_compat.py create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/_vendor/importlib_resources/_itertools.py create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/_vendor/importlib_resources/_legacy.py create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/_vendor/importlib_resources/abc.py create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/_vendor/importlib_resources/readers.py create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/_vendor/importlib_resources/simple.py create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/_vendor/jaraco/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/_vendor/jaraco/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/_vendor/jaraco/__pycache__/context.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/_vendor/jaraco/__pycache__/functools.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/_vendor/jaraco/context.py create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/_vendor/jaraco/functools.py create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/_vendor/jaraco/text/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/_vendor/jaraco/text/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/_vendor/more_itertools/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/_vendor/more_itertools/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/_vendor/more_itertools/__pycache__/more.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/_vendor/more_itertools/__pycache__/recipes.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/_vendor/more_itertools/more.py create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/_vendor/more_itertools/recipes.py create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/_vendor/packaging/__about__.py create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/_vendor/packaging/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/_vendor/packaging/__pycache__/__about__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/_vendor/packaging/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/_vendor/packaging/__pycache__/_manylinux.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/_vendor/packaging/__pycache__/_musllinux.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/_vendor/packaging/__pycache__/_structures.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/_vendor/packaging/__pycache__/markers.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/_vendor/packaging/__pycache__/requirements.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/_vendor/packaging/__pycache__/specifiers.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/_vendor/packaging/__pycache__/tags.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/_vendor/packaging/__pycache__/utils.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/_vendor/packaging/__pycache__/version.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/_vendor/packaging/_manylinux.py create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/_vendor/packaging/_musllinux.py create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/_vendor/packaging/_structures.py create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/_vendor/packaging/markers.py create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/_vendor/packaging/requirements.py create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/_vendor/packaging/specifiers.py create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/_vendor/packaging/tags.py create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/_vendor/packaging/utils.py create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/_vendor/packaging/version.py create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/_vendor/pyparsing/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/actions.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/common.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/core.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/exceptions.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/helpers.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/results.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/testing.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/unicode.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/util.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/_vendor/pyparsing/actions.py create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/_vendor/pyparsing/common.py create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/_vendor/pyparsing/core.py create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/_vendor/pyparsing/diagram/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/_vendor/pyparsing/diagram/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/_vendor/pyparsing/exceptions.py create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/_vendor/pyparsing/helpers.py create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/_vendor/pyparsing/results.py create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/_vendor/pyparsing/testing.py create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/_vendor/pyparsing/unicode.py create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/_vendor/pyparsing/util.py create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/_vendor/zipp.py create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/extern/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/pkg_resources/extern/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/__pycache__/factory.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/__pycache__/poetry.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/fastjsonschema/LICENSE create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/fastjsonschema/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/fastjsonschema/__main__.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/fastjsonschema/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/fastjsonschema/__pycache__/__main__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/fastjsonschema/__pycache__/draft04.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/fastjsonschema/__pycache__/draft06.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/fastjsonschema/__pycache__/draft07.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/fastjsonschema/__pycache__/exceptions.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/fastjsonschema/__pycache__/generator.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/fastjsonschema/__pycache__/indent.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/fastjsonschema/__pycache__/ref_resolver.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/fastjsonschema/__pycache__/version.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/fastjsonschema/draft04.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/fastjsonschema/draft06.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/fastjsonschema/draft07.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/fastjsonschema/exceptions.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/fastjsonschema/generator.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/fastjsonschema/indent.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/fastjsonschema/ref_resolver.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/fastjsonschema/version.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/lark/LICENSE create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/lark/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/lark/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/lark/__pycache__/ast_utils.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/lark/__pycache__/common.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/lark/__pycache__/exceptions.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/lark/__pycache__/grammar.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/lark/__pycache__/indenter.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/lark/__pycache__/lark.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/lark/__pycache__/lexer.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/lark/__pycache__/load_grammar.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/lark/__pycache__/parse_tree_builder.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/lark/__pycache__/parser_frontends.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/lark/__pycache__/reconstruct.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/lark/__pycache__/tree.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/lark/__pycache__/tree_matcher.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/lark/__pycache__/tree_templates.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/lark/__pycache__/utils.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/lark/__pycache__/visitors.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/lark/__pyinstaller/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/lark/__pyinstaller/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/lark/__pyinstaller/__pycache__/hook-lark.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/lark/__pyinstaller/hook-lark.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/lark/ast_utils.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/lark/common.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/lark/exceptions.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/lark/grammar.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/lark/grammars/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/lark/grammars/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/lark/grammars/common.lark create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/lark/grammars/lark.lark create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/lark/grammars/python.lark create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/lark/grammars/unicode.lark create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/lark/indenter.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/lark/lark.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/lark/lexer.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/lark/load_grammar.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/lark/parse_tree_builder.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/lark/parser_frontends.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/lark/parsers/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/lark/parsers/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/lark/parsers/__pycache__/cyk.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/lark/parsers/__pycache__/earley.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/lark/parsers/__pycache__/earley_common.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/lark/parsers/__pycache__/earley_forest.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/lark/parsers/__pycache__/grammar_analysis.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/lark/parsers/__pycache__/lalr_analysis.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/lark/parsers/__pycache__/lalr_interactive_parser.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/lark/parsers/__pycache__/lalr_parser.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/lark/parsers/__pycache__/lalr_parser_state.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/lark/parsers/__pycache__/xearley.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/lark/parsers/cyk.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/lark/parsers/earley.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/lark/parsers/earley_common.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/lark/parsers/earley_forest.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/lark/parsers/grammar_analysis.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/lark/parsers/lalr_analysis.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/lark/parsers/lalr_interactive_parser.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/lark/parsers/lalr_parser.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/lark/parsers/lalr_parser_state.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/lark/parsers/xearley.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/lark/py.typed create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/lark/reconstruct.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/lark/tools/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/lark/tools/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/lark/tools/__pycache__/nearley.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/lark/tools/__pycache__/serialize.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/lark/tools/__pycache__/standalone.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/lark/tools/nearley.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/lark/tools/serialize.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/lark/tools/standalone.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/lark/tree.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/lark/tree_matcher.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/lark/tree_templates.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/lark/utils.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/lark/visitors.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/packaging/LICENSE create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/packaging/LICENSE.APACHE create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/packaging/LICENSE.BSD create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/packaging/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/packaging/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/packaging/__pycache__/_elffile.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/packaging/__pycache__/_manylinux.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/packaging/__pycache__/_musllinux.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/packaging/__pycache__/_parser.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/packaging/__pycache__/_structures.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/packaging/__pycache__/_tokenizer.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/packaging/__pycache__/markers.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/packaging/__pycache__/metadata.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/packaging/__pycache__/requirements.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/packaging/__pycache__/specifiers.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/packaging/__pycache__/tags.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/packaging/__pycache__/utils.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/packaging/__pycache__/version.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/packaging/_elffile.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/packaging/_manylinux.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/packaging/_musllinux.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/packaging/_parser.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/packaging/_structures.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/packaging/_tokenizer.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/packaging/licenses/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/packaging/licenses/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/packaging/licenses/__pycache__/_spdx.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/packaging/licenses/_spdx.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/packaging/markers.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/packaging/metadata.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/packaging/py.typed create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/packaging/requirements.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/packaging/specifiers.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/packaging/tags.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/packaging/utils.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/packaging/version.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/tomli/LICENSE create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/tomli/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/tomli/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/tomli/__pycache__/_parser.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/tomli/__pycache__/_re.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/tomli/__pycache__/_types.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/tomli/_parser.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/tomli/_re.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/tomli/_types.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/tomli/py.typed create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/_vendor/vendor.txt create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/constraints/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/constraints/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/constraints/generic/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/constraints/generic/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/constraints/generic/__pycache__/any_constraint.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/constraints/generic/__pycache__/base_constraint.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/constraints/generic/__pycache__/constraint.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/constraints/generic/__pycache__/empty_constraint.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/constraints/generic/__pycache__/multi_constraint.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/constraints/generic/__pycache__/parser.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/constraints/generic/__pycache__/union_constraint.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/constraints/generic/any_constraint.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/constraints/generic/base_constraint.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/constraints/generic/constraint.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/constraints/generic/empty_constraint.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/constraints/generic/multi_constraint.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/constraints/generic/parser.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/constraints/generic/union_constraint.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/constraints/version/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/constraints/version/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/constraints/version/__pycache__/empty_constraint.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/constraints/version/__pycache__/exceptions.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/constraints/version/__pycache__/parser.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/constraints/version/__pycache__/patterns.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/constraints/version/__pycache__/util.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/constraints/version/__pycache__/version.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/constraints/version/__pycache__/version_constraint.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/constraints/version/__pycache__/version_range.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/constraints/version/__pycache__/version_range_constraint.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/constraints/version/__pycache__/version_union.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/constraints/version/empty_constraint.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/constraints/version/exceptions.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/constraints/version/parser.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/constraints/version/patterns.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/constraints/version/util.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/constraints/version/version.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/constraints/version/version_constraint.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/constraints/version/version_range.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/constraints/version/version_range_constraint.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/constraints/version/version_union.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/exceptions/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/exceptions/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/exceptions/__pycache__/base.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/exceptions/base.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/factory.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/json/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/json/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/json/schemas/poetry-schema.json create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/json/schemas/project-schema.json create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/masonry/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/masonry/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/masonry/__pycache__/api.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/masonry/__pycache__/metadata.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/masonry/api.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/masonry/builders/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/masonry/builders/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/masonry/builders/__pycache__/builder.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/masonry/builders/__pycache__/sdist.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/masonry/builders/__pycache__/wheel.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/masonry/builders/builder.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/masonry/builders/sdist.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/masonry/builders/wheel.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/masonry/metadata.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/masonry/utils/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/masonry/utils/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/masonry/utils/__pycache__/helpers.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/masonry/utils/__pycache__/include.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/masonry/utils/__pycache__/module.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/masonry/utils/__pycache__/package_include.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/masonry/utils/helpers.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/masonry/utils/include.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/masonry/utils/module.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/masonry/utils/package_include.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/packages/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/packages/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/packages/__pycache__/dependency.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/packages/__pycache__/dependency_group.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/packages/__pycache__/directory_dependency.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/packages/__pycache__/file_dependency.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/packages/__pycache__/package.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/packages/__pycache__/path_dependency.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/packages/__pycache__/project_package.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/packages/__pycache__/specification.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/packages/__pycache__/url_dependency.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/packages/__pycache__/vcs_dependency.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/packages/dependency.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/packages/dependency_group.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/packages/directory_dependency.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/packages/file_dependency.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/packages/package.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/packages/path_dependency.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/packages/project_package.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/packages/specification.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/packages/url_dependency.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/packages/utils/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/packages/utils/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/packages/utils/__pycache__/link.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/packages/utils/__pycache__/utils.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/packages/utils/link.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/packages/utils/utils.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/packages/vcs_dependency.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/poetry.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/py.typed create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/pyproject/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/pyproject/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/pyproject/__pycache__/exceptions.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/pyproject/__pycache__/tables.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/pyproject/__pycache__/toml.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/pyproject/exceptions.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/pyproject/tables.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/pyproject/toml.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/spdx/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/spdx/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/spdx/__pycache__/helpers.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/spdx/__pycache__/license.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/spdx/__pycache__/updater.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/spdx/data/licenses.json create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/spdx/helpers.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/spdx/license.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/spdx/updater.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/utils/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/utils/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/utils/__pycache__/_compat.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/utils/__pycache__/helpers.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/utils/__pycache__/patterns.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/utils/_compat.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/utils/helpers.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/utils/patterns.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/vcs/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/vcs/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/vcs/__pycache__/git.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/vcs/git.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/version/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/version/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/version/__pycache__/exceptions.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/version/__pycache__/helpers.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/version/__pycache__/markers.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/version/__pycache__/parser.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/version/__pycache__/requirements.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/version/exceptions.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/version/grammars/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/version/grammars/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/version/grammars/markers.lark create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/version/grammars/pep508.lark create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/version/helpers.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/version/markers.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/version/parser.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/version/pep440/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/version/pep440/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/version/pep440/__pycache__/parser.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/version/pep440/__pycache__/segments.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/version/pep440/__pycache__/version.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/version/pep440/parser.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/version/pep440/segments.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/version/pep440/version.py create mode 100644 .venv/lib/python3.11/site-packages/poetry/core/version/requirements.py create mode 100644 .venv/lib/python3.11/site-packages/poetry_core-2.1.3.dist-info/INSTALLER create mode 100644 .venv/lib/python3.11/site-packages/poetry_core-2.1.3.dist-info/LICENSE create mode 100644 .venv/lib/python3.11/site-packages/poetry_core-2.1.3.dist-info/METADATA create mode 100644 .venv/lib/python3.11/site-packages/poetry_core-2.1.3.dist-info/RECORD create mode 100644 .venv/lib/python3.11/site-packages/poetry_core-2.1.3.dist-info/REQUESTED create mode 100644 .venv/lib/python3.11/site-packages/poetry_core-2.1.3.dist-info/WHEEL create mode 100644 .venv/lib/python3.11/site-packages/pydantic-2.11.5.dist-info/INSTALLER create mode 100644 .venv/lib/python3.11/site-packages/pydantic-2.11.5.dist-info/METADATA create mode 100644 .venv/lib/python3.11/site-packages/pydantic-2.11.5.dist-info/RECORD create mode 100644 .venv/lib/python3.11/site-packages/pydantic-2.11.5.dist-info/WHEEL create mode 100644 .venv/lib/python3.11/site-packages/pydantic-2.11.5.dist-info/licenses/LICENSE create mode 100644 .venv/lib/python3.11/site-packages/pydantic/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/_internal/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/_internal/_config.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/_internal/_core_metadata.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/_internal/_core_utils.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/_internal/_dataclasses.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/_internal/_decorators.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/_internal/_decorators_v1.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/_internal/_discriminated_union.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/_internal/_docs_extraction.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/_internal/_fields.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/_internal/_forward_ref.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/_internal/_generate_schema.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/_internal/_generics.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/_internal/_git.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/_internal/_import_utils.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/_internal/_internal_dataclass.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/_internal/_known_annotated_metadata.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/_internal/_mock_val_ser.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/_internal/_model_construction.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/_internal/_namespace_utils.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/_internal/_repr.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/_internal/_schema_gather.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/_internal/_schema_generation_shared.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/_internal/_serializers.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/_internal/_signature.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/_internal/_typing_extra.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/_internal/_utils.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/_internal/_validate_call.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/_internal/_validators.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/_migration.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/alias_generators.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/aliases.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/annotated_handlers.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/class_validators.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/color.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/config.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/dataclasses.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/datetime_parse.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/decorator.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/deprecated/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/deprecated/class_validators.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/deprecated/config.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/deprecated/copy_internals.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/deprecated/decorator.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/deprecated/json.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/deprecated/parse.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/deprecated/tools.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/env_settings.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/error_wrappers.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/errors.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/experimental/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/experimental/arguments_schema.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/experimental/pipeline.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/fields.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/functional_serializers.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/functional_validators.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/generics.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/json.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/json_schema.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/main.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/mypy.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/networks.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/parse.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/plugin/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/plugin/_loader.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/plugin/_schema_validator.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/py.typed create mode 100644 .venv/lib/python3.11/site-packages/pydantic/root_model.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/schema.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/tools.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/type_adapter.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/types.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/typing.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/utils.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/v1/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/v1/_hypothesis_plugin.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/v1/annotated_types.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/v1/class_validators.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/v1/color.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/v1/config.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/v1/dataclasses.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/v1/datetime_parse.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/v1/decorator.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/v1/env_settings.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/v1/error_wrappers.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/v1/errors.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/v1/fields.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/v1/generics.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/v1/json.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/v1/main.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/v1/mypy.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/v1/networks.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/v1/parse.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/v1/py.typed create mode 100644 .venv/lib/python3.11/site-packages/pydantic/v1/schema.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/v1/tools.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/v1/types.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/v1/typing.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/v1/utils.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/v1/validators.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/v1/version.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/validate_call_decorator.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/validators.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/version.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic/warnings.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic_core-2.33.2.dist-info/INSTALLER create mode 100644 .venv/lib/python3.11/site-packages/pydantic_core-2.33.2.dist-info/METADATA create mode 100644 .venv/lib/python3.11/site-packages/pydantic_core-2.33.2.dist-info/RECORD create mode 100644 .venv/lib/python3.11/site-packages/pydantic_core-2.33.2.dist-info/WHEEL create mode 100644 .venv/lib/python3.11/site-packages/pydantic_core-2.33.2.dist-info/licenses/LICENSE create mode 100644 .venv/lib/python3.11/site-packages/pydantic_core/__init__.py create mode 100755 .venv/lib/python3.11/site-packages/pydantic_core/_pydantic_core.cpython-311-darwin.so create mode 100644 .venv/lib/python3.11/site-packages/pydantic_core/_pydantic_core.pyi create mode 100644 .venv/lib/python3.11/site-packages/pydantic_core/core_schema.py create mode 100644 .venv/lib/python3.11/site-packages/pydantic_core/py.typed create mode 100644 .venv/lib/python3.11/site-packages/setuptools-65.5.0.dist-info/INSTALLER create mode 100644 .venv/lib/python3.11/site-packages/setuptools-65.5.0.dist-info/LICENSE create mode 100644 .venv/lib/python3.11/site-packages/setuptools-65.5.0.dist-info/METADATA create mode 100644 .venv/lib/python3.11/site-packages/setuptools-65.5.0.dist-info/RECORD create mode 100644 .venv/lib/python3.11/site-packages/setuptools-65.5.0.dist-info/REQUESTED create mode 100644 .venv/lib/python3.11/site-packages/setuptools-65.5.0.dist-info/WHEEL create mode 100644 .venv/lib/python3.11/site-packages/setuptools-65.5.0.dist-info/entry_points.txt create mode 100644 .venv/lib/python3.11/site-packages/setuptools-65.5.0.dist-info/top_level.txt create mode 100644 .venv/lib/python3.11/site-packages/setuptools/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/__pycache__/_deprecation_warning.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/__pycache__/_entry_points.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/__pycache__/_imp.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/__pycache__/_importlib.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/__pycache__/_itertools.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/__pycache__/_path.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/__pycache__/_reqs.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/__pycache__/archive_util.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/__pycache__/build_meta.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/__pycache__/dep_util.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/__pycache__/depends.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/__pycache__/discovery.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/__pycache__/dist.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/__pycache__/errors.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/__pycache__/extension.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/__pycache__/glob.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/__pycache__/installer.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/__pycache__/launch.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/__pycache__/logging.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/__pycache__/monkey.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/__pycache__/msvc.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/__pycache__/namespaces.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/__pycache__/package_index.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/__pycache__/py34compat.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/__pycache__/sandbox.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/__pycache__/unicode_utils.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/__pycache__/version.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/__pycache__/wheel.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/__pycache__/windows_support.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_deprecation_warning.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/__pycache__/_collections.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/__pycache__/_functools.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/__pycache__/_macos_compat.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/__pycache__/_msvccompiler.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/__pycache__/archive_util.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/__pycache__/bcppcompiler.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/__pycache__/ccompiler.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/__pycache__/cmd.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/__pycache__/config.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/__pycache__/core.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/__pycache__/cygwinccompiler.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/__pycache__/debug.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/__pycache__/dep_util.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/__pycache__/dir_util.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/__pycache__/dist.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/__pycache__/errors.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/__pycache__/extension.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/__pycache__/fancy_getopt.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/__pycache__/file_util.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/__pycache__/filelist.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/__pycache__/log.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/__pycache__/msvc9compiler.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/__pycache__/msvccompiler.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/__pycache__/py38compat.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/__pycache__/py39compat.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/__pycache__/spawn.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/__pycache__/sysconfig.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/__pycache__/text_file.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/__pycache__/unixccompiler.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/__pycache__/util.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/__pycache__/version.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/__pycache__/versionpredicate.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/_collections.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/_functools.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/_macos_compat.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/_msvccompiler.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/archive_util.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/bcppcompiler.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/ccompiler.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/cmd.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/command/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/command/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/command/__pycache__/_framework_compat.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/command/__pycache__/bdist.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/command/__pycache__/bdist_dumb.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/command/__pycache__/bdist_rpm.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/command/__pycache__/build.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/command/__pycache__/build_clib.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/command/__pycache__/build_ext.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/command/__pycache__/build_py.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/command/__pycache__/build_scripts.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/command/__pycache__/check.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/command/__pycache__/clean.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/command/__pycache__/config.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/command/__pycache__/install.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/command/__pycache__/install_data.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/command/__pycache__/install_egg_info.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/command/__pycache__/install_headers.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/command/__pycache__/install_lib.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/command/__pycache__/install_scripts.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/command/__pycache__/py37compat.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/command/__pycache__/register.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/command/__pycache__/sdist.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/command/__pycache__/upload.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/command/_framework_compat.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/command/bdist.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/command/bdist_dumb.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/command/bdist_rpm.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/command/build.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/command/build_clib.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/command/build_ext.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/command/build_py.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/command/build_scripts.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/command/check.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/command/clean.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/command/config.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/command/install.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/command/install_data.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/command/install_egg_info.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/command/install_headers.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/command/install_lib.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/command/install_scripts.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/command/py37compat.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/command/register.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/command/sdist.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/command/upload.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/config.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/core.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/cygwinccompiler.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/debug.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/dep_util.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/dir_util.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/dist.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/errors.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/extension.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/fancy_getopt.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/file_util.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/filelist.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/log.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/msvc9compiler.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/msvccompiler.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/py38compat.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/py39compat.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/spawn.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/sysconfig.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/text_file.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/unixccompiler.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/util.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/version.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_distutils/versionpredicate.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_entry_points.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_imp.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_importlib.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_itertools.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_path.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_reqs.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/__pycache__/ordered_set.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/__pycache__/typing_extensions.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/__pycache__/zipp.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/importlib_metadata/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_adapters.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_collections.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_compat.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_functools.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_itertools.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_meta.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_text.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/importlib_metadata/_adapters.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/importlib_metadata/_collections.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/importlib_metadata/_compat.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/importlib_metadata/_functools.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/importlib_metadata/_itertools.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/importlib_metadata/_meta.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/importlib_metadata/_text.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/importlib_resources/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/importlib_resources/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_adapters.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_common.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_compat.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_itertools.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_legacy.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/importlib_resources/__pycache__/abc.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/importlib_resources/__pycache__/readers.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/importlib_resources/__pycache__/simple.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/importlib_resources/_adapters.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/importlib_resources/_common.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/importlib_resources/_compat.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/importlib_resources/_itertools.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/importlib_resources/_legacy.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/importlib_resources/abc.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/importlib_resources/readers.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/importlib_resources/simple.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/jaraco/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/jaraco/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/jaraco/__pycache__/context.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/jaraco/__pycache__/functools.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/jaraco/context.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/jaraco/functools.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/jaraco/text/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/jaraco/text/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/more_itertools/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/more_itertools/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/more_itertools/__pycache__/more.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/more_itertools/__pycache__/recipes.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/more_itertools/more.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/more_itertools/recipes.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/ordered_set.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/packaging/__about__.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/packaging/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/packaging/__pycache__/__about__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/packaging/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/packaging/__pycache__/_manylinux.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/packaging/__pycache__/_musllinux.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/packaging/__pycache__/_structures.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/packaging/__pycache__/markers.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/packaging/__pycache__/requirements.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/packaging/__pycache__/specifiers.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/packaging/__pycache__/tags.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/packaging/__pycache__/utils.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/packaging/__pycache__/version.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/packaging/_manylinux.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/packaging/_musllinux.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/packaging/_structures.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/packaging/markers.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/packaging/requirements.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/packaging/specifiers.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/packaging/tags.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/packaging/utils.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/packaging/version.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/pyparsing/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/pyparsing/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/pyparsing/__pycache__/actions.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/pyparsing/__pycache__/common.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/pyparsing/__pycache__/core.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/pyparsing/__pycache__/exceptions.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/pyparsing/__pycache__/helpers.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/pyparsing/__pycache__/results.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/pyparsing/__pycache__/testing.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/pyparsing/__pycache__/unicode.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/pyparsing/__pycache__/util.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/pyparsing/actions.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/pyparsing/common.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/pyparsing/core.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/pyparsing/diagram/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/pyparsing/diagram/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/pyparsing/exceptions.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/pyparsing/helpers.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/pyparsing/results.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/pyparsing/testing.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/pyparsing/unicode.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/pyparsing/util.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/tomli/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/tomli/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/tomli/__pycache__/_parser.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/tomli/__pycache__/_re.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/tomli/__pycache__/_types.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/tomli/_parser.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/tomli/_re.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/tomli/_types.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/typing_extensions.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/_vendor/zipp.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/archive_util.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/build_meta.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/cli-32.exe create mode 100644 .venv/lib/python3.11/site-packages/setuptools/cli-64.exe create mode 100644 .venv/lib/python3.11/site-packages/setuptools/cli-arm64.exe create mode 100644 .venv/lib/python3.11/site-packages/setuptools/cli.exe create mode 100644 .venv/lib/python3.11/site-packages/setuptools/command/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/command/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/command/__pycache__/alias.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/command/__pycache__/bdist_egg.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/command/__pycache__/bdist_rpm.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/command/__pycache__/build.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/command/__pycache__/build_clib.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/command/__pycache__/build_ext.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/command/__pycache__/build_py.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/command/__pycache__/develop.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/command/__pycache__/dist_info.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/command/__pycache__/easy_install.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/command/__pycache__/editable_wheel.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/command/__pycache__/egg_info.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/command/__pycache__/install.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/command/__pycache__/install_egg_info.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/command/__pycache__/install_lib.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/command/__pycache__/install_scripts.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/command/__pycache__/py36compat.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/command/__pycache__/register.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/command/__pycache__/rotate.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/command/__pycache__/saveopts.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/command/__pycache__/sdist.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/command/__pycache__/setopt.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/command/__pycache__/test.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/command/__pycache__/upload.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/command/__pycache__/upload_docs.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/command/alias.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/command/bdist_egg.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/command/bdist_rpm.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/command/build.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/command/build_clib.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/command/build_ext.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/command/build_py.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/command/develop.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/command/dist_info.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/command/easy_install.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/command/editable_wheel.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/command/egg_info.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/command/install.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/command/install_egg_info.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/command/install_lib.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/command/install_scripts.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/command/launcher manifest.xml create mode 100644 .venv/lib/python3.11/site-packages/setuptools/command/py36compat.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/command/register.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/command/rotate.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/command/saveopts.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/command/sdist.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/command/setopt.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/command/test.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/command/upload.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/command/upload_docs.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/config/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/config/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/config/__pycache__/_apply_pyprojecttoml.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/config/__pycache__/expand.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/config/__pycache__/pyprojecttoml.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/config/__pycache__/setupcfg.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/config/_apply_pyprojecttoml.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/config/_validate_pyproject/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/config/_validate_pyproject/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/config/_validate_pyproject/__pycache__/error_reporting.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/config/_validate_pyproject/__pycache__/extra_validations.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/config/_validate_pyproject/__pycache__/fastjsonschema_exceptions.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/config/_validate_pyproject/__pycache__/fastjsonschema_validations.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/config/_validate_pyproject/__pycache__/formats.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/config/_validate_pyproject/error_reporting.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/config/_validate_pyproject/extra_validations.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/config/_validate_pyproject/fastjsonschema_exceptions.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/config/_validate_pyproject/fastjsonschema_validations.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/config/_validate_pyproject/formats.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/config/expand.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/config/pyprojecttoml.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/config/setupcfg.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/dep_util.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/depends.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/discovery.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/dist.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/errors.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/extension.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/extern/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/extern/__pycache__/__init__.cpython-311.pyc create mode 100644 .venv/lib/python3.11/site-packages/setuptools/glob.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/gui-32.exe create mode 100644 .venv/lib/python3.11/site-packages/setuptools/gui-64.exe create mode 100644 .venv/lib/python3.11/site-packages/setuptools/gui-arm64.exe create mode 100644 .venv/lib/python3.11/site-packages/setuptools/gui.exe create mode 100644 .venv/lib/python3.11/site-packages/setuptools/installer.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/launch.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/logging.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/monkey.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/msvc.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/namespaces.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/package_index.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/py34compat.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/sandbox.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/script (dev).tmpl create mode 100644 .venv/lib/python3.11/site-packages/setuptools/script.tmpl create mode 100644 .venv/lib/python3.11/site-packages/setuptools/unicode_utils.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/version.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/wheel.py create mode 100644 .venv/lib/python3.11/site-packages/setuptools/windows_support.py create mode 100644 .venv/lib/python3.11/site-packages/typing_extensions-4.13.2.dist-info/INSTALLER create mode 100644 .venv/lib/python3.11/site-packages/typing_extensions-4.13.2.dist-info/METADATA create mode 100644 .venv/lib/python3.11/site-packages/typing_extensions-4.13.2.dist-info/RECORD create mode 100644 .venv/lib/python3.11/site-packages/typing_extensions-4.13.2.dist-info/WHEEL create mode 100644 .venv/lib/python3.11/site-packages/typing_extensions-4.13.2.dist-info/licenses/LICENSE create mode 100644 .venv/lib/python3.11/site-packages/typing_extensions.py create mode 100644 .venv/lib/python3.11/site-packages/typing_inspection-0.4.1.dist-info/INSTALLER create mode 100644 .venv/lib/python3.11/site-packages/typing_inspection-0.4.1.dist-info/METADATA create mode 100644 .venv/lib/python3.11/site-packages/typing_inspection-0.4.1.dist-info/RECORD create mode 100644 .venv/lib/python3.11/site-packages/typing_inspection-0.4.1.dist-info/WHEEL create mode 100644 .venv/lib/python3.11/site-packages/typing_inspection-0.4.1.dist-info/licenses/LICENSE create mode 100644 .venv/lib/python3.11/site-packages/typing_inspection/__init__.py create mode 100644 .venv/lib/python3.11/site-packages/typing_inspection/introspection.py create mode 100644 .venv/lib/python3.11/site-packages/typing_inspection/py.typed create mode 100644 .venv/lib/python3.11/site-packages/typing_inspection/typing_objects.py create mode 100644 .venv/lib/python3.11/site-packages/typing_inspection/typing_objects.pyi create mode 100644 .venv/pyvenv.cfg diff --git a/.python-version b/.python-version new file mode 100644 index 0000000..2419ad5 --- /dev/null +++ b/.python-version @@ -0,0 +1 @@ +3.11.9 diff --git a/.venv/bin/Activate.ps1 b/.venv/bin/Activate.ps1 new file mode 100644 index 0000000..b49d77b --- /dev/null +++ b/.venv/bin/Activate.ps1 @@ -0,0 +1,247 @@ +<# +.Synopsis +Activate a Python virtual environment for the current PowerShell session. + +.Description +Pushes the python executable for a virtual environment to the front of the +$Env:PATH environment variable and sets the prompt to signify that you are +in a Python virtual environment. Makes use of the command line switches as +well as the `pyvenv.cfg` file values present in the virtual environment. + +.Parameter VenvDir +Path to the directory that contains the virtual environment to activate. The +default value for this is the parent of the directory that the Activate.ps1 +script is located within. + +.Parameter Prompt +The prompt prefix to display when this virtual environment is activated. By +default, this prompt is the name of the virtual environment folder (VenvDir) +surrounded by parentheses and followed by a single space (ie. '(.venv) '). + +.Example +Activate.ps1 +Activates the Python virtual environment that contains the Activate.ps1 script. + +.Example +Activate.ps1 -Verbose +Activates the Python virtual environment that contains the Activate.ps1 script, +and shows extra information about the activation as it executes. + +.Example +Activate.ps1 -VenvDir C:\Users\MyUser\Common\.venv +Activates the Python virtual environment located in the specified location. + +.Example +Activate.ps1 -Prompt "MyPython" +Activates the Python virtual environment that contains the Activate.ps1 script, +and prefixes the current prompt with the specified string (surrounded in +parentheses) while the virtual environment is active. + +.Notes +On Windows, it may be required to enable this Activate.ps1 script by setting the +execution policy for the user. You can do this by issuing the following PowerShell +command: + +PS C:\> Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser + +For more information on Execution Policies: +https://go.microsoft.com/fwlink/?LinkID=135170 + +#> +Param( + [Parameter(Mandatory = $false)] + [String] + $VenvDir, + [Parameter(Mandatory = $false)] + [String] + $Prompt +) + +<# Function declarations --------------------------------------------------- #> + +<# +.Synopsis +Remove all shell session elements added by the Activate script, including the +addition of the virtual environment's Python executable from the beginning of +the PATH variable. + +.Parameter NonDestructive +If present, do not remove this function from the global namespace for the +session. + +#> +function global:deactivate ([switch]$NonDestructive) { + # Revert to original values + + # The prior prompt: + if (Test-Path -Path Function:_OLD_VIRTUAL_PROMPT) { + Copy-Item -Path Function:_OLD_VIRTUAL_PROMPT -Destination Function:prompt + Remove-Item -Path Function:_OLD_VIRTUAL_PROMPT + } + + # The prior PYTHONHOME: + if (Test-Path -Path Env:_OLD_VIRTUAL_PYTHONHOME) { + Copy-Item -Path Env:_OLD_VIRTUAL_PYTHONHOME -Destination Env:PYTHONHOME + Remove-Item -Path Env:_OLD_VIRTUAL_PYTHONHOME + } + + # The prior PATH: + if (Test-Path -Path Env:_OLD_VIRTUAL_PATH) { + Copy-Item -Path Env:_OLD_VIRTUAL_PATH -Destination Env:PATH + Remove-Item -Path Env:_OLD_VIRTUAL_PATH + } + + # Just remove the VIRTUAL_ENV altogether: + if (Test-Path -Path Env:VIRTUAL_ENV) { + Remove-Item -Path env:VIRTUAL_ENV + } + + # Just remove VIRTUAL_ENV_PROMPT altogether. + if (Test-Path -Path Env:VIRTUAL_ENV_PROMPT) { + Remove-Item -Path env:VIRTUAL_ENV_PROMPT + } + + # Just remove the _PYTHON_VENV_PROMPT_PREFIX altogether: + if (Get-Variable -Name "_PYTHON_VENV_PROMPT_PREFIX" -ErrorAction SilentlyContinue) { + Remove-Variable -Name _PYTHON_VENV_PROMPT_PREFIX -Scope Global -Force + } + + # Leave deactivate function in the global namespace if requested: + if (-not $NonDestructive) { + Remove-Item -Path function:deactivate + } +} + +<# +.Description +Get-PyVenvConfig parses the values from the pyvenv.cfg file located in the +given folder, and returns them in a map. + +For each line in the pyvenv.cfg file, if that line can be parsed into exactly +two strings separated by `=` (with any amount of whitespace surrounding the =) +then it is considered a `key = value` line. The left hand string is the key, +the right hand is the value. + +If the value starts with a `'` or a `"` then the first and last character is +stripped from the value before being captured. + +.Parameter ConfigDir +Path to the directory that contains the `pyvenv.cfg` file. +#> +function Get-PyVenvConfig( + [String] + $ConfigDir +) { + Write-Verbose "Given ConfigDir=$ConfigDir, obtain values in pyvenv.cfg" + + # Ensure the file exists, and issue a warning if it doesn't (but still allow the function to continue). + $pyvenvConfigPath = Join-Path -Resolve -Path $ConfigDir -ChildPath 'pyvenv.cfg' -ErrorAction Continue + + # An empty map will be returned if no config file is found. + $pyvenvConfig = @{ } + + if ($pyvenvConfigPath) { + + Write-Verbose "File exists, parse `key = value` lines" + $pyvenvConfigContent = Get-Content -Path $pyvenvConfigPath + + $pyvenvConfigContent | ForEach-Object { + $keyval = $PSItem -split "\s*=\s*", 2 + if ($keyval[0] -and $keyval[1]) { + $val = $keyval[1] + + # Remove extraneous quotations around a string value. + if ("'""".Contains($val.Substring(0, 1))) { + $val = $val.Substring(1, $val.Length - 2) + } + + $pyvenvConfig[$keyval[0]] = $val + Write-Verbose "Adding Key: '$($keyval[0])'='$val'" + } + } + } + return $pyvenvConfig +} + + +<# Begin Activate script --------------------------------------------------- #> + +# Determine the containing directory of this script +$VenvExecPath = Split-Path -Parent $MyInvocation.MyCommand.Definition +$VenvExecDir = Get-Item -Path $VenvExecPath + +Write-Verbose "Activation script is located in path: '$VenvExecPath'" +Write-Verbose "VenvExecDir Fullname: '$($VenvExecDir.FullName)" +Write-Verbose "VenvExecDir Name: '$($VenvExecDir.Name)" + +# Set values required in priority: CmdLine, ConfigFile, Default +# First, get the location of the virtual environment, it might not be +# VenvExecDir if specified on the command line. +if ($VenvDir) { + Write-Verbose "VenvDir given as parameter, using '$VenvDir' to determine values" +} +else { + Write-Verbose "VenvDir not given as a parameter, using parent directory name as VenvDir." + $VenvDir = $VenvExecDir.Parent.FullName.TrimEnd("\\/") + Write-Verbose "VenvDir=$VenvDir" +} + +# Next, read the `pyvenv.cfg` file to determine any required value such +# as `prompt`. +$pyvenvCfg = Get-PyVenvConfig -ConfigDir $VenvDir + +# Next, set the prompt from the command line, or the config file, or +# just use the name of the virtual environment folder. +if ($Prompt) { + Write-Verbose "Prompt specified as argument, using '$Prompt'" +} +else { + Write-Verbose "Prompt not specified as argument to script, checking pyvenv.cfg value" + if ($pyvenvCfg -and $pyvenvCfg['prompt']) { + Write-Verbose " Setting based on value in pyvenv.cfg='$($pyvenvCfg['prompt'])'" + $Prompt = $pyvenvCfg['prompt']; + } + else { + Write-Verbose " Setting prompt based on parent's directory's name. (Is the directory name passed to venv module when creating the virtual environment)" + Write-Verbose " Got leaf-name of $VenvDir='$(Split-Path -Path $venvDir -Leaf)'" + $Prompt = Split-Path -Path $venvDir -Leaf + } +} + +Write-Verbose "Prompt = '$Prompt'" +Write-Verbose "VenvDir='$VenvDir'" + +# Deactivate any currently active virtual environment, but leave the +# deactivate function in place. +deactivate -nondestructive + +# Now set the environment variable VIRTUAL_ENV, used by many tools to determine +# that there is an activated venv. +$env:VIRTUAL_ENV = $VenvDir + +if (-not $Env:VIRTUAL_ENV_DISABLE_PROMPT) { + + Write-Verbose "Setting prompt to '$Prompt'" + + # Set the prompt to include the env name + # Make sure _OLD_VIRTUAL_PROMPT is global + function global:_OLD_VIRTUAL_PROMPT { "" } + Copy-Item -Path function:prompt -Destination function:_OLD_VIRTUAL_PROMPT + New-Variable -Name _PYTHON_VENV_PROMPT_PREFIX -Description "Python virtual environment prompt prefix" -Scope Global -Option ReadOnly -Visibility Public -Value $Prompt + + function global:prompt { + Write-Host -NoNewline -ForegroundColor Green "($_PYTHON_VENV_PROMPT_PREFIX) " + _OLD_VIRTUAL_PROMPT + } + $env:VIRTUAL_ENV_PROMPT = $Prompt +} + +# Clear PYTHONHOME +if (Test-Path -Path Env:PYTHONHOME) { + Copy-Item -Path Env:PYTHONHOME -Destination Env:_OLD_VIRTUAL_PYTHONHOME + Remove-Item -Path Env:PYTHONHOME +} + +# Add the venv to the PATH +Copy-Item -Path Env:PATH -Destination Env:_OLD_VIRTUAL_PATH +$Env:PATH = "$VenvExecDir$([System.IO.Path]::PathSeparator)$Env:PATH" diff --git a/.venv/bin/activate b/.venv/bin/activate new file mode 100644 index 0000000..3828a55 --- /dev/null +++ b/.venv/bin/activate @@ -0,0 +1,63 @@ +# This file must be used with "source bin/activate" *from bash* +# you cannot run it directly + +deactivate () { + # reset old environment variables + if [ -n "${_OLD_VIRTUAL_PATH:-}" ] ; then + PATH="${_OLD_VIRTUAL_PATH:-}" + export PATH + unset _OLD_VIRTUAL_PATH + fi + if [ -n "${_OLD_VIRTUAL_PYTHONHOME:-}" ] ; then + PYTHONHOME="${_OLD_VIRTUAL_PYTHONHOME:-}" + export PYTHONHOME + unset _OLD_VIRTUAL_PYTHONHOME + fi + + # Call hash to forget past commands. Without forgetting + # past commands the $PATH changes we made may not be respected + hash -r 2> /dev/null + + if [ -n "${_OLD_VIRTUAL_PS1:-}" ] ; then + PS1="${_OLD_VIRTUAL_PS1:-}" + export PS1 + unset _OLD_VIRTUAL_PS1 + fi + + unset VIRTUAL_ENV + unset VIRTUAL_ENV_PROMPT + if [ ! "${1:-}" = "nondestructive" ] ; then + # Self destruct! + unset -f deactivate + fi +} + +# unset irrelevant variables +deactivate nondestructive + +VIRTUAL_ENV="/Users/nataliiatymofieieva/PycharmProjects/HW2/learn_python_project/.venv" +export VIRTUAL_ENV + +_OLD_VIRTUAL_PATH="$PATH" +PATH="$VIRTUAL_ENV/bin:$PATH" +export PATH + +# unset PYTHONHOME if set +# this will fail if PYTHONHOME is set to the empty string (which is bad anyway) +# could use `if (set -u; : $PYTHONHOME) ;` in bash +if [ -n "${PYTHONHOME:-}" ] ; then + _OLD_VIRTUAL_PYTHONHOME="${PYTHONHOME:-}" + unset PYTHONHOME +fi + +if [ -z "${VIRTUAL_ENV_DISABLE_PROMPT:-}" ] ; then + _OLD_VIRTUAL_PS1="${PS1:-}" + PS1="(.venv) ${PS1:-}" + export PS1 + VIRTUAL_ENV_PROMPT="(.venv) " + export VIRTUAL_ENV_PROMPT +fi + +# Call hash to forget past commands. Without forgetting +# past commands the $PATH changes we made may not be respected +hash -r 2> /dev/null diff --git a/.venv/bin/activate.csh b/.venv/bin/activate.csh new file mode 100644 index 0000000..2c0cc04 --- /dev/null +++ b/.venv/bin/activate.csh @@ -0,0 +1,26 @@ +# This file must be used with "source bin/activate.csh" *from csh*. +# You cannot run it directly. +# Created by Davide Di Blasi . +# Ported to Python 3.3 venv by Andrew Svetlov + +alias deactivate 'test $?_OLD_VIRTUAL_PATH != 0 && setenv PATH "$_OLD_VIRTUAL_PATH" && unset _OLD_VIRTUAL_PATH; rehash; test $?_OLD_VIRTUAL_PROMPT != 0 && set prompt="$_OLD_VIRTUAL_PROMPT" && unset _OLD_VIRTUAL_PROMPT; unsetenv VIRTUAL_ENV; unsetenv VIRTUAL_ENV_PROMPT; test "\!:*" != "nondestructive" && unalias deactivate' + +# Unset irrelevant variables. +deactivate nondestructive + +setenv VIRTUAL_ENV "/Users/nataliiatymofieieva/PycharmProjects/HW2/learn_python_project/.venv" + +set _OLD_VIRTUAL_PATH="$PATH" +setenv PATH "$VIRTUAL_ENV/bin:$PATH" + + +set _OLD_VIRTUAL_PROMPT="$prompt" + +if (! "$?VIRTUAL_ENV_DISABLE_PROMPT") then + set prompt = "(.venv) $prompt" + setenv VIRTUAL_ENV_PROMPT "(.venv) " +endif + +alias pydoc python -m pydoc + +rehash diff --git a/.venv/bin/activate.fish b/.venv/bin/activate.fish new file mode 100644 index 0000000..c4cb635 --- /dev/null +++ b/.venv/bin/activate.fish @@ -0,0 +1,69 @@ +# This file must be used with "source /bin/activate.fish" *from fish* +# (https://fishshell.com/); you cannot run it directly. + +function deactivate -d "Exit virtual environment and return to normal shell environment" + # reset old environment variables + if test -n "$_OLD_VIRTUAL_PATH" + set -gx PATH $_OLD_VIRTUAL_PATH + set -e _OLD_VIRTUAL_PATH + end + if test -n "$_OLD_VIRTUAL_PYTHONHOME" + set -gx PYTHONHOME $_OLD_VIRTUAL_PYTHONHOME + set -e _OLD_VIRTUAL_PYTHONHOME + end + + if test -n "$_OLD_FISH_PROMPT_OVERRIDE" + set -e _OLD_FISH_PROMPT_OVERRIDE + # prevents error when using nested fish instances (Issue #93858) + if functions -q _old_fish_prompt + functions -e fish_prompt + functions -c _old_fish_prompt fish_prompt + functions -e _old_fish_prompt + end + end + + set -e VIRTUAL_ENV + set -e VIRTUAL_ENV_PROMPT + if test "$argv[1]" != "nondestructive" + # Self-destruct! + functions -e deactivate + end +end + +# Unset irrelevant variables. +deactivate nondestructive + +set -gx VIRTUAL_ENV "/Users/nataliiatymofieieva/PycharmProjects/HW2/learn_python_project/.venv" + +set -gx _OLD_VIRTUAL_PATH $PATH +set -gx PATH "$VIRTUAL_ENV/bin" $PATH + +# Unset PYTHONHOME if set. +if set -q PYTHONHOME + set -gx _OLD_VIRTUAL_PYTHONHOME $PYTHONHOME + set -e PYTHONHOME +end + +if test -z "$VIRTUAL_ENV_DISABLE_PROMPT" + # fish uses a function instead of an env var to generate the prompt. + + # Save the current fish_prompt function as the function _old_fish_prompt. + functions -c fish_prompt _old_fish_prompt + + # With the original prompt function renamed, we can override with our own. + function fish_prompt + # Save the return status of the last command. + set -l old_status $status + + # Output the venv prompt; color taken from the blue of the Python logo. + printf "%s%s%s" (set_color 4B8BBE) "(.venv) " (set_color normal) + + # Restore the return status of the previous command. + echo "exit $old_status" | . + # Output the original/"old" prompt. + _old_fish_prompt + end + + set -gx _OLD_FISH_PROMPT_OVERRIDE "$VIRTUAL_ENV" + set -gx VIRTUAL_ENV_PROMPT "(.venv) " +end diff --git a/.venv/bin/email_validator b/.venv/bin/email_validator new file mode 100755 index 0000000..e6e004d --- /dev/null +++ b/.venv/bin/email_validator @@ -0,0 +1,8 @@ +#!/Users/nataliiatymofieieva/PycharmProjects/HW2/learn_python_project/.venv/bin/python +# -*- coding: utf-8 -*- +import re +import sys +from email_validator.__main__ import main +if __name__ == "__main__": + sys.argv[0] = re.sub(r"(-script\.pyw|\.exe)?$", "", sys.argv[0]) + sys.exit(main()) diff --git a/.venv/bin/pip b/.venv/bin/pip new file mode 100755 index 0000000..2b50342 --- /dev/null +++ b/.venv/bin/pip @@ -0,0 +1,8 @@ +#!/Users/nataliiatymofieieva/PycharmProjects/HW2/learn_python_project/.venv/bin/python +# -*- coding: utf-8 -*- +import re +import sys +from pip._internal.cli.main import main +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) diff --git a/.venv/bin/pip3 b/.venv/bin/pip3 new file mode 100755 index 0000000..2b50342 --- /dev/null +++ b/.venv/bin/pip3 @@ -0,0 +1,8 @@ +#!/Users/nataliiatymofieieva/PycharmProjects/HW2/learn_python_project/.venv/bin/python +# -*- coding: utf-8 -*- +import re +import sys +from pip._internal.cli.main import main +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) diff --git a/.venv/bin/pip3.11 b/.venv/bin/pip3.11 new file mode 100755 index 0000000..2b50342 --- /dev/null +++ b/.venv/bin/pip3.11 @@ -0,0 +1,8 @@ +#!/Users/nataliiatymofieieva/PycharmProjects/HW2/learn_python_project/.venv/bin/python +# -*- coding: utf-8 -*- +import re +import sys +from pip._internal.cli.main import main +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) diff --git a/.venv/bin/python b/.venv/bin/python new file mode 120000 index 0000000..39c6f4e --- /dev/null +++ b/.venv/bin/python @@ -0,0 +1 @@ +/Users/nataliiatymofieieva/.pyenv/versions/3.11.9/bin/python \ No newline at end of file diff --git a/.venv/bin/python3 b/.venv/bin/python3 new file mode 120000 index 0000000..d8654aa --- /dev/null +++ b/.venv/bin/python3 @@ -0,0 +1 @@ +python \ No newline at end of file diff --git a/.venv/bin/python3.11 b/.venv/bin/python3.11 new file mode 120000 index 0000000..d8654aa --- /dev/null +++ b/.venv/bin/python3.11 @@ -0,0 +1 @@ +python \ No newline at end of file diff --git a/.venv/lib/python3.11/site-packages/_distutils_hack/__init__.py b/.venv/lib/python3.11/site-packages/_distutils_hack/__init__.py new file mode 100644 index 0000000..f987a53 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/_distutils_hack/__init__.py @@ -0,0 +1,222 @@ +# don't import any costly modules +import sys +import os + + +is_pypy = '__pypy__' in sys.builtin_module_names + + +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 + import warnings + + 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 + import warnings + + warnings.warn("Setuptools is replacing distutils.") + mods = [ + name + for name in sys.modules + if name == "distutils" or name.startswith("distutils.") + ] + for name in mods: + del sys.modules[name] + + +def enabled(): + """ + Allow selection of distutils by environment variable. + """ + which = os.environ.get('SETUPTOOLS_USE_DISTUTILS', 'local') + return which == 'local' + + +def ensure_local_distutils(): + import importlib + + clear_distutils() + + # With the DistutilsMetaFinder in place, + # perform an import to cause distutils to be + # loaded from setuptools._distutils. Ref #2906. + with shim(): + importlib.import_module('distutils') + + # check that submodules load as expected + core = importlib.import_module('distutils.core') + assert '_distutils' in core.__file__, core.__file__ + assert 'setuptools._distutils.log' not in sys.modules + + +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 _TrivialRe: + def __init__(self, *patterns): + self._patterns = patterns + + def match(self, string): + return all(pat in string for pat in self._patterns) + + +class DistutilsMetaFinder: + def find_spec(self, fullname, path, target=None): + # optimization: only consider top level modules and those + # found in the CPython test suite. + if path is not None and not fullname.startswith('test.'): + return + + method_name = 'spec_for_{fullname}'.format(**locals()) + method = getattr(self, method_name, lambda: None) + return method() + + def spec_for_distutils(self): + if self.is_cpython(): + return + + import importlib + import importlib.abc + import importlib.util + + try: + mod = importlib.import_module('setuptools._distutils') + except Exception: + # There are a couple of cases where setuptools._distutils + # may not be present: + # - An older Setuptools without a local distutils is + # taking precedence. Ref #2957. + # - Path manipulation during sitecustomize removes + # setuptools from the path but only after the hook + # has been loaded. Ref #2980. + # In either case, fall back to stdlib behavior. + return + + class DistutilsLoader(importlib.abc.Loader): + def create_module(self, spec): + mod.__name__ = 'distutils' + return mod + + def exec_module(self, module): + pass + + return importlib.util.spec_from_loader( + 'distutils', DistutilsLoader(), origin=mod.__file__ + ) + + @staticmethod + def is_cpython(): + """ + Suppress supplying distutils for CPython (build and tests). + Ref #2965 and #3007. + """ + return os.path.isfile('pybuilddir.txt') + + 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 + + @classmethod + def pip_imported_during_build(cls): + """ + Detect if pip is being imported in a build script. Ref #2355. + """ + import traceback + + return any( + cls.frame_file_is_setup(frame) for frame, line in traceback.walk_stack(None) + ) + + @staticmethod + def frame_file_is_setup(frame): + """ + Return True if the indicated frame suggests a setup.py file. + """ + # some frames may not have __file__ (#2940) + return frame.f_globals.get('__file__', '').endswith('setup.py') + + def spec_for_sensitive_tests(self): + """ + Ensure stdlib distutils when running select tests under CPython. + + python/cpython#91169 + """ + clear_distutils() + self.spec_for_distutils = lambda: None + + sensitive_tests = ( + [ + 'test.test_distutils', + 'test.test_peg_generator', + 'test.test_importlib', + ] + if sys.version_info < (3, 10) + else [ + 'test.test_distutils', + ] + ) + + +for name in DistutilsMetaFinder.sensitive_tests: + setattr( + DistutilsMetaFinder, + f'spec_for_{name}', + DistutilsMetaFinder.spec_for_sensitive_tests, + ) + + +DISTUTILS_FINDER = DistutilsMetaFinder() + + +def add_shim(): + DISTUTILS_FINDER in sys.meta_path or insert_shim() + + +class shim: + def __enter__(self): + insert_shim() + + def __exit__(self, exc, value, tb): + remove_shim() + + +def insert_shim(): + sys.meta_path.insert(0, DISTUTILS_FINDER) + + +def remove_shim(): + try: + sys.meta_path.remove(DISTUTILS_FINDER) + except ValueError: + pass diff --git a/.venv/lib/python3.11/site-packages/_distutils_hack/__pycache__/__init__.cpython-311.pyc b/.venv/lib/python3.11/site-packages/_distutils_hack/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0bbd7bcaead16924afa34047578aaba7436b56be GIT binary patch literal 11204 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

DeI^O{Q5&rb*G^VY ze+Zp%Lcsg&!Dy(p*Azq5ZbS}$(vp49Q69=aT1{7RYRsmNw7wP{}q4Y=HxAH?%CyV-%_}5 z;lyHiXDPh1>~$Jcn^tpzG(gG$-0Y?F5!_foHD;%+;KgL-LIRf;sS7YovY3zOXl5dW zbGC!PN0Be=d7uUTEsa4E584jI900XeblcaF&MH>b+{(bI<$=>n1E-6_KUo}jqcre_ zSPyhclypio*q~jSNu3U%P7a<&ft?mecr+zqh58Wm_mF=>m>G7dTo`f*{4{P-c~(8c zCvg)yDsE5V>7`S!L^V~A3e?aTt_)2BlrAUMBa*n_lK+SPlJ>NHMVfTX|@fi)P0tj;=&~tyq z0gU`;`z<+_{oe1QB1S@>dbdzmUoFh*V+j&g(A+s*sA=t5#rIRtg|%-=ynqB{V!?6~sh zb^)ryAkRrO%5zf9Feqwkp&?wbg@q%f(8e2MOQA=Kp-0LgIe;PSK^trBg@9}emLts9 zMgIyAR3%nw1zhT>qj;BNn=eUCs;i{hKQZOoYolyUe2wr2-Q`t+Vu;YUyEmJOlg|$g zo;WQ|$_n5VlN5a)w?g>Oh|bLf-F`Kkm8B##M98S(7r^D;@HMspAjT_qed7JNwJ1MQ zln?!O<7b<{*nCrb@M=G{e5$NK{5aC)2d@=4&9Syc-HVzZ5N+<_CH^j2H*szw%5OOa9GB=_JR2p=oN^$A?wh#jqXx0YAG zl(KwN$;_l~dCU>Va>WjJp#7qY6=|u71jMU0a7bADYj9L z_Evy@M`n$Xxww3+0EEnIUlBaFU+v+Q2!{G!Jh~H+ literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/_distutils_hack/__pycache__/override.cpython-311.pyc b/.venv/lib/python3.11/site-packages/_distutils_hack/__pycache__/override.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5a2503cc48c6a646b065b210be39292d912b502e GIT binary patch literal 361 zcmZ8c!Ab)$5S_FjWlQk~?A@ihp?a0#(UTNJJchU#-Dq~RBBY?nRme@o^3o;RQ$3+kfmuP7yruQvG#U=6 zl@5<{AA{ecrT?PQCP$Q)+s;|4#YExAbbO@h$M(=4KW#$D7X(kiynC>K{tEh^5H2BH Oz+eS~c~fT3KmG-JTVi4W literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/_distutils_hack/override.py b/.venv/lib/python3.11/site-packages/_distutils_hack/override.py new file mode 100644 index 0000000..2cc433a --- /dev/null +++ b/.venv/lib/python3.11/site-packages/_distutils_hack/override.py @@ -0,0 +1 @@ +__import__('_distutils_hack').do_override() diff --git a/.venv/lib/python3.11/site-packages/annotated_types-0.7.0.dist-info/INSTALLER b/.venv/lib/python3.11/site-packages/annotated_types-0.7.0.dist-info/INSTALLER new file mode 100644 index 0000000..c2a1515 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/annotated_types-0.7.0.dist-info/INSTALLER @@ -0,0 +1 @@ +Poetry 2.1.3 \ No newline at end of file diff --git a/.venv/lib/python3.11/site-packages/annotated_types-0.7.0.dist-info/METADATA b/.venv/lib/python3.11/site-packages/annotated_types-0.7.0.dist-info/METADATA new file mode 100644 index 0000000..3ac05cf --- /dev/null +++ b/.venv/lib/python3.11/site-packages/annotated_types-0.7.0.dist-info/METADATA @@ -0,0 +1,295 @@ +Metadata-Version: 2.3 +Name: annotated-types +Version: 0.7.0 +Summary: Reusable constraint types to use with typing.Annotated +Project-URL: Homepage, https://github.com/annotated-types/annotated-types +Project-URL: Source, https://github.com/annotated-types/annotated-types +Project-URL: Changelog, https://github.com/annotated-types/annotated-types/releases +Author-email: Adrian Garcia Badaracco <1755071+adriangb@users.noreply.github.com>, Samuel Colvin , Zac Hatfield-Dodds +License-File: LICENSE +Classifier: Development Status :: 4 - Beta +Classifier: Environment :: Console +Classifier: Environment :: MacOS X +Classifier: Intended Audience :: Developers +Classifier: Intended Audience :: Information Technology +Classifier: License :: OSI Approved :: MIT License +Classifier: Operating System :: POSIX :: Linux +Classifier: Operating System :: Unix +Classifier: Programming Language :: Python :: 3 :: Only +Classifier: Programming Language :: Python :: 3.8 +Classifier: Programming Language :: Python :: 3.9 +Classifier: Programming Language :: Python :: 3.10 +Classifier: Programming Language :: Python :: 3.11 +Classifier: Programming Language :: Python :: 3.12 +Classifier: Topic :: Software Development :: Libraries :: Python Modules +Classifier: Typing :: Typed +Requires-Python: >=3.8 +Requires-Dist: typing-extensions>=4.0.0; python_version < '3.9' +Description-Content-Type: text/markdown + +# annotated-types + +[![CI](https://github.com/annotated-types/annotated-types/workflows/CI/badge.svg?event=push)](https://github.com/annotated-types/annotated-types/actions?query=event%3Apush+branch%3Amain+workflow%3ACI) +[![pypi](https://img.shields.io/pypi/v/annotated-types.svg)](https://pypi.python.org/pypi/annotated-types) +[![versions](https://img.shields.io/pypi/pyversions/annotated-types.svg)](https://github.com/annotated-types/annotated-types) +[![license](https://img.shields.io/github/license/annotated-types/annotated-types.svg)](https://github.com/annotated-types/annotated-types/blob/main/LICENSE) + +[PEP-593](https://peps.python.org/pep-0593/) added `typing.Annotated` as a way of +adding context-specific metadata to existing types, and specifies that +`Annotated[T, x]` _should_ be treated as `T` by any tool or library without special +logic for `x`. + +This package provides metadata objects which can be used to represent common +constraints such as upper and lower bounds on scalar values and collection sizes, +a `Predicate` marker for runtime checks, and +descriptions of how we intend these metadata to be interpreted. In some cases, +we also note alternative representations which do not require this package. + +## Install + +```bash +pip install annotated-types +``` + +## Examples + +```python +from typing import Annotated +from annotated_types import Gt, Len, Predicate + +class MyClass: + age: Annotated[int, Gt(18)] # Valid: 19, 20, ... + # Invalid: 17, 18, "19", 19.0, ... + factors: list[Annotated[int, Predicate(is_prime)]] # Valid: 2, 3, 5, 7, 11, ... + # Invalid: 4, 8, -2, 5.0, "prime", ... + + my_list: Annotated[list[int], Len(0, 10)] # Valid: [], [10, 20, 30, 40, 50] + # Invalid: (1, 2), ["abc"], [0] * 20 +``` + +## Documentation + +_While `annotated-types` avoids runtime checks for performance, users should not +construct invalid combinations such as `MultipleOf("non-numeric")` or `Annotated[int, Len(3)]`. +Downstream implementors may choose to raise an error, emit a warning, silently ignore +a metadata item, etc., if the metadata objects described below are used with an +incompatible type - or for any other reason!_ + +### Gt, Ge, Lt, Le + +Express inclusive and/or exclusive bounds on orderable values - which may be numbers, +dates, times, strings, sets, etc. Note that the boundary value need not be of the +same type that was annotated, so long as they can be compared: `Annotated[int, Gt(1.5)]` +is fine, for example, and implies that the value is an integer x such that `x > 1.5`. + +We suggest that implementors may also interpret `functools.partial(operator.le, 1.5)` +as being equivalent to `Gt(1.5)`, for users who wish to avoid a runtime dependency on +the `annotated-types` package. + +To be explicit, these types have the following meanings: + +* `Gt(x)` - value must be "Greater Than" `x` - equivalent to exclusive minimum +* `Ge(x)` - value must be "Greater than or Equal" to `x` - equivalent to inclusive minimum +* `Lt(x)` - value must be "Less Than" `x` - equivalent to exclusive maximum +* `Le(x)` - value must be "Less than or Equal" to `x` - equivalent to inclusive maximum + +### Interval + +`Interval(gt, ge, lt, le)` allows you to specify an upper and lower bound with a single +metadata object. `None` attributes should be ignored, and non-`None` attributes +treated as per the single bounds above. + +### MultipleOf + +`MultipleOf(multiple_of=x)` might be interpreted in two ways: + +1. Python semantics, implying `value % multiple_of == 0`, or +2. [JSONschema semantics](https://json-schema.org/draft/2020-12/json-schema-validation.html#rfc.section.6.2.1), + where `int(value / multiple_of) == value / multiple_of`. + +We encourage users to be aware of these two common interpretations and their +distinct behaviours, especially since very large or non-integer numbers make +it easy to cause silent data corruption due to floating-point imprecision. + +We encourage libraries to carefully document which interpretation they implement. + +### MinLen, MaxLen, Len + +`Len()` implies that `min_length <= len(value) <= max_length` - lower and upper bounds are inclusive. + +As well as `Len()` which can optionally include upper and lower bounds, we also +provide `MinLen(x)` and `MaxLen(y)` which are equivalent to `Len(min_length=x)` +and `Len(max_length=y)` respectively. + +`Len`, `MinLen`, and `MaxLen` may be used with any type which supports `len(value)`. + +Examples of usage: + +* `Annotated[list, MaxLen(10)]` (or `Annotated[list, Len(max_length=10))`) - list must have a length of 10 or less +* `Annotated[str, MaxLen(10)]` - string must have a length of 10 or less +* `Annotated[list, MinLen(3))` (or `Annotated[list, Len(min_length=3))`) - list must have a length of 3 or more +* `Annotated[list, Len(4, 6)]` - list must have a length of 4, 5, or 6 +* `Annotated[list, Len(8, 8)]` - list must have a length of exactly 8 + +#### Changed in v0.4.0 + +* `min_inclusive` has been renamed to `min_length`, no change in meaning +* `max_exclusive` has been renamed to `max_length`, upper bound is now **inclusive** instead of **exclusive** +* The recommendation that slices are interpreted as `Len` has been removed due to ambiguity and different semantic + meaning of the upper bound in slices vs. `Len` + +See [issue #23](https://github.com/annotated-types/annotated-types/issues/23) for discussion. + +### Timezone + +`Timezone` can be used with a `datetime` or a `time` to express which timezones +are allowed. `Annotated[datetime, Timezone(None)]` must be a naive datetime. +`Timezone[...]` ([literal ellipsis](https://docs.python.org/3/library/constants.html#Ellipsis)) +expresses that any timezone-aware datetime is allowed. You may also pass a specific +timezone string or [`tzinfo`](https://docs.python.org/3/library/datetime.html#tzinfo-objects) +object such as `Timezone(timezone.utc)` or `Timezone("Africa/Abidjan")` to express that you only +allow a specific timezone, though we note that this is often a symptom of fragile design. + +#### Changed in v0.x.x + +* `Timezone` accepts [`tzinfo`](https://docs.python.org/3/library/datetime.html#tzinfo-objects) objects instead of + `timezone`, extending compatibility to [`zoneinfo`](https://docs.python.org/3/library/zoneinfo.html) and third party libraries. + +### Unit + +`Unit(unit: str)` expresses that the annotated numeric value is the magnitude of +a quantity with the specified unit. For example, `Annotated[float, Unit("m/s")]` +would be a float representing a velocity in meters per second. + +Please note that `annotated_types` itself makes no attempt to parse or validate +the unit string in any way. That is left entirely to downstream libraries, +such as [`pint`](https://pint.readthedocs.io) or +[`astropy.units`](https://docs.astropy.org/en/stable/units/). + +An example of how a library might use this metadata: + +```python +from annotated_types import Unit +from typing import Annotated, TypeVar, Callable, Any, get_origin, get_args + +# given a type annotated with a unit: +Meters = Annotated[float, Unit("m")] + + +# you can cast the annotation to a specific unit type with any +# callable that accepts a string and returns the desired type +T = TypeVar("T") +def cast_unit(tp: Any, unit_cls: Callable[[str], T]) -> T | None: + if get_origin(tp) is Annotated: + for arg in get_args(tp): + if isinstance(arg, Unit): + return unit_cls(arg.unit) + return None + + +# using `pint` +import pint +pint_unit = cast_unit(Meters, pint.Unit) + + +# using `astropy.units` +import astropy.units as u +astropy_unit = cast_unit(Meters, u.Unit) +``` + +### Predicate + +`Predicate(func: Callable)` expresses that `func(value)` is truthy for valid values. +Users should prefer the statically inspectable metadata above, but if you need +the full power and flexibility of arbitrary runtime predicates... here it is. + +For some common constraints, we provide generic types: + +* `IsLower = Annotated[T, Predicate(str.islower)]` +* `IsUpper = Annotated[T, Predicate(str.isupper)]` +* `IsDigit = Annotated[T, Predicate(str.isdigit)]` +* `IsFinite = Annotated[T, Predicate(math.isfinite)]` +* `IsNotFinite = Annotated[T, Predicate(Not(math.isfinite))]` +* `IsNan = Annotated[T, Predicate(math.isnan)]` +* `IsNotNan = Annotated[T, Predicate(Not(math.isnan))]` +* `IsInfinite = Annotated[T, Predicate(math.isinf)]` +* `IsNotInfinite = Annotated[T, Predicate(Not(math.isinf))]` + +so that you can write e.g. `x: IsFinite[float] = 2.0` instead of the longer +(but exactly equivalent) `x: Annotated[float, Predicate(math.isfinite)] = 2.0`. + +Some libraries might have special logic to handle known or understandable predicates, +for example by checking for `str.isdigit` and using its presence to both call custom +logic to enforce digit-only strings, and customise some generated external schema. +Users are therefore encouraged to avoid indirection like `lambda s: s.lower()`, in +favor of introspectable methods such as `str.lower` or `re.compile("pattern").search`. + +To enable basic negation of commonly used predicates like `math.isnan` without introducing introspection that makes it impossible for implementers to introspect the predicate we provide a `Not` wrapper that simply negates the predicate in an introspectable manner. Several of the predicates listed above are created in this manner. + +We do not specify what behaviour should be expected for predicates that raise +an exception. For example `Annotated[int, Predicate(str.isdigit)]` might silently +skip invalid constraints, or statically raise an error; or it might try calling it +and then propagate or discard the resulting +`TypeError: descriptor 'isdigit' for 'str' objects doesn't apply to a 'int' object` +exception. We encourage libraries to document the behaviour they choose. + +### Doc + +`doc()` can be used to add documentation information in `Annotated`, for function and method parameters, variables, class attributes, return types, and any place where `Annotated` can be used. + +It expects a value that can be statically analyzed, as the main use case is for static analysis, editors, documentation generators, and similar tools. + +It returns a `DocInfo` class with a single attribute `documentation` containing the value passed to `doc()`. + +This is the early adopter's alternative form of the [`typing-doc` proposal](https://github.com/tiangolo/fastapi/blob/typing-doc/typing_doc.md). + +### Integrating downstream types with `GroupedMetadata` + +Implementers may choose to provide a convenience wrapper that groups multiple pieces of metadata. +This can help reduce verbosity and cognitive overhead for users. +For example, an implementer like Pydantic might provide a `Field` or `Meta` type that accepts keyword arguments and transforms these into low-level metadata: + +```python +from dataclasses import dataclass +from typing import Iterator +from annotated_types import GroupedMetadata, Ge + +@dataclass +class Field(GroupedMetadata): + ge: int | None = None + description: str | None = None + + def __iter__(self) -> Iterator[object]: + # Iterating over a GroupedMetadata object should yield annotated-types + # constraint metadata objects which describe it as fully as possible, + # and may include other unknown objects too. + if self.ge is not None: + yield Ge(self.ge) + if self.description is not None: + yield Description(self.description) +``` + +Libraries consuming annotated-types constraints should check for `GroupedMetadata` and unpack it by iterating over the object and treating the results as if they had been "unpacked" in the `Annotated` type. The same logic should be applied to the [PEP 646 `Unpack` type](https://peps.python.org/pep-0646/), so that `Annotated[T, Field(...)]`, `Annotated[T, Unpack[Field(...)]]` and `Annotated[T, *Field(...)]` are all treated consistently. + +Libraries consuming annotated-types should also ignore any metadata they do not recongize that came from unpacking a `GroupedMetadata`, just like they ignore unrecognized metadata in `Annotated` itself. + +Our own `annotated_types.Interval` class is a `GroupedMetadata` which unpacks itself into `Gt`, `Lt`, etc., so this is not an abstract concern. Similarly, `annotated_types.Len` is a `GroupedMetadata` which unpacks itself into `MinLen` (optionally) and `MaxLen`. + +### Consuming metadata + +We intend to not be prescriptive as to _how_ the metadata and constraints are used, but as an example of how one might parse constraints from types annotations see our [implementation in `test_main.py`](https://github.com/annotated-types/annotated-types/blob/f59cf6d1b5255a0fe359b93896759a180bec30ae/tests/test_main.py#L94-L103). + +It is up to the implementer to determine how this metadata is used. +You could use the metadata for runtime type checking, for generating schemas or to generate example data, amongst other use cases. + +## Design & History + +This package was designed at the PyCon 2022 sprints by the maintainers of Pydantic +and Hypothesis, with the goal of making it as easy as possible for end-users to +provide more informative annotations for use by runtime libraries. + +It is deliberately minimal, and following PEP-593 allows considerable downstream +discretion in what (if anything!) they choose to support. Nonetheless, we expect +that staying simple and covering _only_ the most common use-cases will give users +and maintainers the best experience we can. If you'd like more constraints for your +types - follow our lead, by defining them and documenting them downstream! diff --git a/.venv/lib/python3.11/site-packages/annotated_types-0.7.0.dist-info/RECORD b/.venv/lib/python3.11/site-packages/annotated_types-0.7.0.dist-info/RECORD new file mode 100644 index 0000000..22928d3 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/annotated_types-0.7.0.dist-info/RECORD @@ -0,0 +1,8 @@ +annotated_types/__init__.py,sha256=RynLsRKUEGI0KimXydlD1fZEfEzWwDo0Uon3zOKhG1Q,13819 +annotated_types/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +annotated_types/test_cases.py,sha256=zHFX6EpcMbGJ8FzBYDbO56bPwx_DYIVSKbZM-4B3_lg,6421 +annotated_types-0.7.0.dist-info/METADATA,sha256=7ltqxksJJ0wCYFGBNIQCWTlWQGeAH0hRFdnK3CB895E,15046 +annotated_types-0.7.0.dist-info/WHEEL,sha256=zEMcRr9Kr03x1ozGwg5v9NQBKn3kndp6LSoSlVg-jhU,87 +annotated_types-0.7.0.dist-info/licenses/LICENSE,sha256=_hBJiEsaDZNCkB6I4H8ykl0ksxIdmXK2poBfuYJLCV0,1083 +annotated_types-0.7.0.dist-info/INSTALLER,sha256=9Fj27hpVKWMXZsBOPfrH05WeL2C7QXSjAHAgayzBJ8A,12 +annotated_types-0.7.0.dist-info/RECORD,, diff --git a/.venv/lib/python3.11/site-packages/annotated_types-0.7.0.dist-info/WHEEL b/.venv/lib/python3.11/site-packages/annotated_types-0.7.0.dist-info/WHEEL new file mode 100644 index 0000000..516596c --- /dev/null +++ b/.venv/lib/python3.11/site-packages/annotated_types-0.7.0.dist-info/WHEEL @@ -0,0 +1,4 @@ +Wheel-Version: 1.0 +Generator: hatchling 1.24.2 +Root-Is-Purelib: true +Tag: py3-none-any diff --git a/.venv/lib/python3.11/site-packages/annotated_types-0.7.0.dist-info/licenses/LICENSE b/.venv/lib/python3.11/site-packages/annotated_types-0.7.0.dist-info/licenses/LICENSE new file mode 100644 index 0000000..d99323a --- /dev/null +++ b/.venv/lib/python3.11/site-packages/annotated_types-0.7.0.dist-info/licenses/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2022 the 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. diff --git a/.venv/lib/python3.11/site-packages/annotated_types/__init__.py b/.venv/lib/python3.11/site-packages/annotated_types/__init__.py new file mode 100644 index 0000000..74e0dee --- /dev/null +++ b/.venv/lib/python3.11/site-packages/annotated_types/__init__.py @@ -0,0 +1,432 @@ +import math +import sys +import types +from dataclasses import dataclass +from datetime import tzinfo +from typing import TYPE_CHECKING, Any, Callable, Iterator, Optional, SupportsFloat, SupportsIndex, TypeVar, Union + +if sys.version_info < (3, 8): + from typing_extensions import Protocol, runtime_checkable +else: + from typing import Protocol, runtime_checkable + +if sys.version_info < (3, 9): + from typing_extensions import Annotated, Literal +else: + from typing import Annotated, Literal + +if sys.version_info < (3, 10): + EllipsisType = type(Ellipsis) + KW_ONLY = {} + SLOTS = {} +else: + from types import EllipsisType + + KW_ONLY = {"kw_only": True} + SLOTS = {"slots": True} + + +__all__ = ( + 'BaseMetadata', + 'GroupedMetadata', + 'Gt', + 'Ge', + 'Lt', + 'Le', + 'Interval', + 'MultipleOf', + 'MinLen', + 'MaxLen', + 'Len', + 'Timezone', + 'Predicate', + 'LowerCase', + 'UpperCase', + 'IsDigits', + 'IsFinite', + 'IsNotFinite', + 'IsNan', + 'IsNotNan', + 'IsInfinite', + 'IsNotInfinite', + 'doc', + 'DocInfo', + '__version__', +) + +__version__ = '0.7.0' + + +T = TypeVar('T') + + +# arguments that start with __ are considered +# positional only +# see https://peps.python.org/pep-0484/#positional-only-arguments + + +class SupportsGt(Protocol): + def __gt__(self: T, __other: T) -> bool: + ... + + +class SupportsGe(Protocol): + def __ge__(self: T, __other: T) -> bool: + ... + + +class SupportsLt(Protocol): + def __lt__(self: T, __other: T) -> bool: + ... + + +class SupportsLe(Protocol): + def __le__(self: T, __other: T) -> bool: + ... + + +class SupportsMod(Protocol): + def __mod__(self: T, __other: T) -> T: + ... + + +class SupportsDiv(Protocol): + def __div__(self: T, __other: T) -> T: + ... + + +class BaseMetadata: + """Base class for all metadata. + + This exists mainly so that implementers + can do `isinstance(..., BaseMetadata)` while traversing field annotations. + """ + + __slots__ = () + + +@dataclass(frozen=True, **SLOTS) +class Gt(BaseMetadata): + """Gt(gt=x) implies that the value must be greater than x. + + It can be used with any type that supports the ``>`` operator, + including numbers, dates and times, strings, sets, and so on. + """ + + gt: SupportsGt + + +@dataclass(frozen=True, **SLOTS) +class Ge(BaseMetadata): + """Ge(ge=x) implies that the value must be greater than or equal to x. + + It can be used with any type that supports the ``>=`` operator, + including numbers, dates and times, strings, sets, and so on. + """ + + ge: SupportsGe + + +@dataclass(frozen=True, **SLOTS) +class Lt(BaseMetadata): + """Lt(lt=x) implies that the value must be less than x. + + It can be used with any type that supports the ``<`` operator, + including numbers, dates and times, strings, sets, and so on. + """ + + lt: SupportsLt + + +@dataclass(frozen=True, **SLOTS) +class Le(BaseMetadata): + """Le(le=x) implies that the value must be less than or equal to x. + + It can be used with any type that supports the ``<=`` operator, + including numbers, dates and times, strings, sets, and so on. + """ + + le: SupportsLe + + +@runtime_checkable +class GroupedMetadata(Protocol): + """A grouping of multiple objects, like typing.Unpack. + + `GroupedMetadata` on its own is not metadata and has no meaning. + All of the constraints and metadata should be fully expressable + in terms of the `BaseMetadata`'s returned by `GroupedMetadata.__iter__()`. + + Concrete implementations should override `GroupedMetadata.__iter__()` + to add their own metadata. + For example: + + >>> @dataclass + >>> class Field(GroupedMetadata): + >>> gt: float | None = None + >>> description: str | None = None + ... + >>> def __iter__(self) -> Iterable[object]: + >>> if self.gt is not None: + >>> yield Gt(self.gt) + >>> if self.description is not None: + >>> yield Description(self.gt) + + Also see the implementation of `Interval` below for an example. + + Parsers should recognize this and unpack it so that it can be used + both with and without unpacking: + + - `Annotated[int, Field(...)]` (parser must unpack Field) + - `Annotated[int, *Field(...)]` (PEP-646) + """ # noqa: trailing-whitespace + + @property + def __is_annotated_types_grouped_metadata__(self) -> Literal[True]: + return True + + def __iter__(self) -> Iterator[object]: + ... + + if not TYPE_CHECKING: + __slots__ = () # allow subclasses to use slots + + def __init_subclass__(cls, *args: Any, **kwargs: Any) -> None: + # Basic ABC like functionality without the complexity of an ABC + super().__init_subclass__(*args, **kwargs) + if cls.__iter__ is GroupedMetadata.__iter__: + raise TypeError("Can't subclass GroupedMetadata without implementing __iter__") + + def __iter__(self) -> Iterator[object]: # noqa: F811 + raise NotImplementedError # more helpful than "None has no attribute..." type errors + + +@dataclass(frozen=True, **KW_ONLY, **SLOTS) +class Interval(GroupedMetadata): + """Interval can express inclusive or exclusive bounds with a single object. + + It accepts keyword arguments ``gt``, ``ge``, ``lt``, and/or ``le``, which + are interpreted the same way as the single-bound constraints. + """ + + gt: Union[SupportsGt, None] = None + ge: Union[SupportsGe, None] = None + lt: Union[SupportsLt, None] = None + le: Union[SupportsLe, None] = None + + def __iter__(self) -> Iterator[BaseMetadata]: + """Unpack an Interval into zero or more single-bounds.""" + if self.gt is not None: + yield Gt(self.gt) + if self.ge is not None: + yield Ge(self.ge) + if self.lt is not None: + yield Lt(self.lt) + if self.le is not None: + yield Le(self.le) + + +@dataclass(frozen=True, **SLOTS) +class MultipleOf(BaseMetadata): + """MultipleOf(multiple_of=x) might be interpreted in two ways: + + 1. Python semantics, implying ``value % multiple_of == 0``, or + 2. JSONschema semantics, where ``int(value / multiple_of) == value / multiple_of`` + + We encourage users to be aware of these two common interpretations, + and libraries to carefully document which they implement. + """ + + multiple_of: Union[SupportsDiv, SupportsMod] + + +@dataclass(frozen=True, **SLOTS) +class MinLen(BaseMetadata): + """ + MinLen() implies minimum inclusive length, + e.g. ``len(value) >= min_length``. + """ + + min_length: Annotated[int, Ge(0)] + + +@dataclass(frozen=True, **SLOTS) +class MaxLen(BaseMetadata): + """ + MaxLen() implies maximum inclusive length, + e.g. ``len(value) <= max_length``. + """ + + max_length: Annotated[int, Ge(0)] + + +@dataclass(frozen=True, **SLOTS) +class Len(GroupedMetadata): + """ + Len() implies that ``min_length <= len(value) <= max_length``. + + Upper bound may be omitted or ``None`` to indicate no upper length bound. + """ + + min_length: Annotated[int, Ge(0)] = 0 + max_length: Optional[Annotated[int, Ge(0)]] = None + + def __iter__(self) -> Iterator[BaseMetadata]: + """Unpack a Len into zone or more single-bounds.""" + if self.min_length > 0: + yield MinLen(self.min_length) + if self.max_length is not None: + yield MaxLen(self.max_length) + + +@dataclass(frozen=True, **SLOTS) +class Timezone(BaseMetadata): + """Timezone(tz=...) requires a datetime to be aware (or ``tz=None``, naive). + + ``Annotated[datetime, Timezone(None)]`` must be a naive datetime. + ``Timezone[...]`` (the ellipsis literal) expresses that the datetime must be + tz-aware but any timezone is allowed. + + You may also pass a specific timezone string or tzinfo object such as + ``Timezone(timezone.utc)`` or ``Timezone("Africa/Abidjan")`` to express that + you only allow a specific timezone, though we note that this is often + a symptom of poor design. + """ + + tz: Union[str, tzinfo, EllipsisType, None] + + +@dataclass(frozen=True, **SLOTS) +class Unit(BaseMetadata): + """Indicates that the value is a physical quantity with the specified unit. + + It is intended for usage with numeric types, where the value represents the + magnitude of the quantity. For example, ``distance: Annotated[float, Unit('m')]`` + or ``speed: Annotated[float, Unit('m/s')]``. + + Interpretation of the unit string is left to the discretion of the consumer. + It is suggested to follow conventions established by python libraries that work + with physical quantities, such as + + - ``pint`` : + - ``astropy.units``: + + For indicating a quantity with a certain dimensionality but without a specific unit + it is recommended to use square brackets, e.g. `Annotated[float, Unit('[time]')]`. + Note, however, ``annotated_types`` itself makes no use of the unit string. + """ + + unit: str + + +@dataclass(frozen=True, **SLOTS) +class Predicate(BaseMetadata): + """``Predicate(func: Callable)`` implies `func(value)` is truthy for valid values. + + Users should prefer statically inspectable metadata, but if you need the full + power and flexibility of arbitrary runtime predicates... here it is. + + We provide a few predefined predicates for common string constraints: + ``IsLower = Predicate(str.islower)``, ``IsUpper = Predicate(str.isupper)``, and + ``IsDigits = Predicate(str.isdigit)``. Users are encouraged to use methods which + can be given special handling, and avoid indirection like ``lambda s: s.lower()``. + + Some libraries might have special logic to handle certain predicates, e.g. by + checking for `str.isdigit` and using its presence to both call custom logic to + enforce digit-only strings, and customise some generated external schema. + + We do not specify what behaviour should be expected for predicates that raise + an exception. For example `Annotated[int, Predicate(str.isdigit)]` might silently + skip invalid constraints, or statically raise an error; or it might try calling it + and then propagate or discard the resulting exception. + """ + + func: Callable[[Any], bool] + + def __repr__(self) -> str: + if getattr(self.func, "__name__", "") == "": + return f"{self.__class__.__name__}({self.func!r})" + if isinstance(self.func, (types.MethodType, types.BuiltinMethodType)) and ( + namespace := getattr(self.func.__self__, "__name__", None) + ): + return f"{self.__class__.__name__}({namespace}.{self.func.__name__})" + if isinstance(self.func, type(str.isascii)): # method descriptor + return f"{self.__class__.__name__}({self.func.__qualname__})" + return f"{self.__class__.__name__}({self.func.__name__})" + + +@dataclass +class Not: + func: Callable[[Any], bool] + + def __call__(self, __v: Any) -> bool: + return not self.func(__v) + + +_StrType = TypeVar("_StrType", bound=str) + +LowerCase = Annotated[_StrType, Predicate(str.islower)] +""" +Return True if the string is a lowercase string, False otherwise. + +A string is lowercase if all cased characters in the string are lowercase and there is at least one cased character in the string. +""" # noqa: E501 +UpperCase = Annotated[_StrType, Predicate(str.isupper)] +""" +Return True if the string is an uppercase string, False otherwise. + +A string is uppercase if all cased characters in the string are uppercase and there is at least one cased character in the string. +""" # noqa: E501 +IsDigit = Annotated[_StrType, Predicate(str.isdigit)] +IsDigits = IsDigit # type: ignore # plural for backwards compatibility, see #63 +""" +Return True if the string is a digit string, False otherwise. + +A string is a digit string if all characters in the string are digits and there is at least one character in the string. +""" # noqa: E501 +IsAscii = Annotated[_StrType, Predicate(str.isascii)] +""" +Return True if all characters in the string are ASCII, False otherwise. + +ASCII characters have code points in the range U+0000-U+007F. Empty string is ASCII too. +""" + +_NumericType = TypeVar('_NumericType', bound=Union[SupportsFloat, SupportsIndex]) +IsFinite = Annotated[_NumericType, Predicate(math.isfinite)] +"""Return True if x is neither an infinity nor a NaN, and False otherwise.""" +IsNotFinite = Annotated[_NumericType, Predicate(Not(math.isfinite))] +"""Return True if x is one of infinity or NaN, and False otherwise""" +IsNan = Annotated[_NumericType, Predicate(math.isnan)] +"""Return True if x is a NaN (not a number), and False otherwise.""" +IsNotNan = Annotated[_NumericType, Predicate(Not(math.isnan))] +"""Return True if x is anything but NaN (not a number), and False otherwise.""" +IsInfinite = Annotated[_NumericType, Predicate(math.isinf)] +"""Return True if x is a positive or negative infinity, and False otherwise.""" +IsNotInfinite = Annotated[_NumericType, Predicate(Not(math.isinf))] +"""Return True if x is neither a positive or negative infinity, and False otherwise.""" + +try: + from typing_extensions import DocInfo, doc # type: ignore [attr-defined] +except ImportError: + + @dataclass(frozen=True, **SLOTS) + class DocInfo: # type: ignore [no-redef] + """ " + The return value of doc(), mainly to be used by tools that want to extract the + Annotated documentation at runtime. + """ + + documentation: str + """The documentation string passed to doc().""" + + def doc( + documentation: str, + ) -> DocInfo: + """ + Add documentation to a type annotation inside of Annotated. + + For example: + + >>> def hi(name: Annotated[int, doc("The name of the user")]) -> None: ... + """ + return DocInfo(documentation) diff --git a/.venv/lib/python3.11/site-packages/annotated_types/py.typed b/.venv/lib/python3.11/site-packages/annotated_types/py.typed new file mode 100644 index 0000000..e69de29 diff --git a/.venv/lib/python3.11/site-packages/annotated_types/test_cases.py b/.venv/lib/python3.11/site-packages/annotated_types/test_cases.py new file mode 100644 index 0000000..d9164d6 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/annotated_types/test_cases.py @@ -0,0 +1,151 @@ +import math +import sys +from datetime import date, datetime, timedelta, timezone +from decimal import Decimal +from typing import Any, Dict, Iterable, Iterator, List, NamedTuple, Set, Tuple + +if sys.version_info < (3, 9): + from typing_extensions import Annotated +else: + from typing import Annotated + +import annotated_types as at + + +class Case(NamedTuple): + """ + A test case for `annotated_types`. + """ + + annotation: Any + valid_cases: Iterable[Any] + invalid_cases: Iterable[Any] + + +def cases() -> Iterable[Case]: + # Gt, Ge, Lt, Le + yield Case(Annotated[int, at.Gt(4)], (5, 6, 1000), (4, 0, -1)) + yield Case(Annotated[float, at.Gt(0.5)], (0.6, 0.7, 0.8, 0.9), (0.5, 0.0, -0.1)) + yield Case( + Annotated[datetime, at.Gt(datetime(2000, 1, 1))], + [datetime(2000, 1, 2), datetime(2000, 1, 3)], + [datetime(2000, 1, 1), datetime(1999, 12, 31)], + ) + yield Case( + Annotated[datetime, at.Gt(date(2000, 1, 1))], + [date(2000, 1, 2), date(2000, 1, 3)], + [date(2000, 1, 1), date(1999, 12, 31)], + ) + yield Case( + Annotated[datetime, at.Gt(Decimal('1.123'))], + [Decimal('1.1231'), Decimal('123')], + [Decimal('1.123'), Decimal('0')], + ) + + yield Case(Annotated[int, at.Ge(4)], (4, 5, 6, 1000, 4), (0, -1)) + yield Case(Annotated[float, at.Ge(0.5)], (0.5, 0.6, 0.7, 0.8, 0.9), (0.4, 0.0, -0.1)) + yield Case( + Annotated[datetime, at.Ge(datetime(2000, 1, 1))], + [datetime(2000, 1, 2), datetime(2000, 1, 3)], + [datetime(1998, 1, 1), datetime(1999, 12, 31)], + ) + + yield Case(Annotated[int, at.Lt(4)], (0, -1), (4, 5, 6, 1000, 4)) + yield Case(Annotated[float, at.Lt(0.5)], (0.4, 0.0, -0.1), (0.5, 0.6, 0.7, 0.8, 0.9)) + yield Case( + Annotated[datetime, at.Lt(datetime(2000, 1, 1))], + [datetime(1999, 12, 31), datetime(1999, 12, 31)], + [datetime(2000, 1, 2), datetime(2000, 1, 3)], + ) + + yield Case(Annotated[int, at.Le(4)], (4, 0, -1), (5, 6, 1000)) + yield Case(Annotated[float, at.Le(0.5)], (0.5, 0.0, -0.1), (0.6, 0.7, 0.8, 0.9)) + yield Case( + Annotated[datetime, at.Le(datetime(2000, 1, 1))], + [datetime(2000, 1, 1), datetime(1999, 12, 31)], + [datetime(2000, 1, 2), datetime(2000, 1, 3)], + ) + + # Interval + yield Case(Annotated[int, at.Interval(gt=4)], (5, 6, 1000), (4, 0, -1)) + yield Case(Annotated[int, at.Interval(gt=4, lt=10)], (5, 6), (4, 10, 1000, 0, -1)) + yield Case(Annotated[float, at.Interval(ge=0.5, le=1)], (0.5, 0.9, 1), (0.49, 1.1)) + yield Case( + Annotated[datetime, at.Interval(gt=datetime(2000, 1, 1), le=datetime(2000, 1, 3))], + [datetime(2000, 1, 2), datetime(2000, 1, 3)], + [datetime(2000, 1, 1), datetime(2000, 1, 4)], + ) + + yield Case(Annotated[int, at.MultipleOf(multiple_of=3)], (0, 3, 9), (1, 2, 4)) + yield Case(Annotated[float, at.MultipleOf(multiple_of=0.5)], (0, 0.5, 1, 1.5), (0.4, 1.1)) + + # lengths + + yield Case(Annotated[str, at.MinLen(3)], ('123', '1234', 'x' * 10), ('', '1', '12')) + yield Case(Annotated[str, at.Len(3)], ('123', '1234', 'x' * 10), ('', '1', '12')) + yield Case(Annotated[List[int], at.MinLen(3)], ([1, 2, 3], [1, 2, 3, 4], [1] * 10), ([], [1], [1, 2])) + yield Case(Annotated[List[int], at.Len(3)], ([1, 2, 3], [1, 2, 3, 4], [1] * 10), ([], [1], [1, 2])) + + yield Case(Annotated[str, at.MaxLen(4)], ('', '1234'), ('12345', 'x' * 10)) + yield Case(Annotated[str, at.Len(0, 4)], ('', '1234'), ('12345', 'x' * 10)) + yield Case(Annotated[List[str], at.MaxLen(4)], ([], ['a', 'bcdef'], ['a', 'b', 'c']), (['a'] * 5, ['b'] * 10)) + yield Case(Annotated[List[str], at.Len(0, 4)], ([], ['a', 'bcdef'], ['a', 'b', 'c']), (['a'] * 5, ['b'] * 10)) + + yield Case(Annotated[str, at.Len(3, 5)], ('123', '12345'), ('', '1', '12', '123456', 'x' * 10)) + yield Case(Annotated[str, at.Len(3, 3)], ('123',), ('12', '1234')) + + yield Case(Annotated[Dict[int, int], at.Len(2, 3)], [{1: 1, 2: 2}], [{}, {1: 1}, {1: 1, 2: 2, 3: 3, 4: 4}]) + yield Case(Annotated[Set[int], at.Len(2, 3)], ({1, 2}, {1, 2, 3}), (set(), {1}, {1, 2, 3, 4})) + yield Case(Annotated[Tuple[int, ...], at.Len(2, 3)], ((1, 2), (1, 2, 3)), ((), (1,), (1, 2, 3, 4))) + + # Timezone + + yield Case( + Annotated[datetime, at.Timezone(None)], [datetime(2000, 1, 1)], [datetime(2000, 1, 1, tzinfo=timezone.utc)] + ) + yield Case( + Annotated[datetime, at.Timezone(...)], [datetime(2000, 1, 1, tzinfo=timezone.utc)], [datetime(2000, 1, 1)] + ) + yield Case( + Annotated[datetime, at.Timezone(timezone.utc)], + [datetime(2000, 1, 1, tzinfo=timezone.utc)], + [datetime(2000, 1, 1), datetime(2000, 1, 1, tzinfo=timezone(timedelta(hours=6)))], + ) + yield Case( + Annotated[datetime, at.Timezone('Europe/London')], + [datetime(2000, 1, 1, tzinfo=timezone(timedelta(0), name='Europe/London'))], + [datetime(2000, 1, 1), datetime(2000, 1, 1, tzinfo=timezone(timedelta(hours=6)))], + ) + + # Quantity + + yield Case(Annotated[float, at.Unit(unit='m')], (5, 4.2), ('5m', '4.2m')) + + # predicate types + + yield Case(at.LowerCase[str], ['abc', 'foobar'], ['', 'A', 'Boom']) + yield Case(at.UpperCase[str], ['ABC', 'DEFO'], ['', 'a', 'abc', 'AbC']) + yield Case(at.IsDigit[str], ['123'], ['', 'ab', 'a1b2']) + yield Case(at.IsAscii[str], ['123', 'foo bar'], ['£100', '😊', 'whatever 👀']) + + yield Case(Annotated[int, at.Predicate(lambda x: x % 2 == 0)], [0, 2, 4], [1, 3, 5]) + + yield Case(at.IsFinite[float], [1.23], [math.nan, math.inf, -math.inf]) + yield Case(at.IsNotFinite[float], [math.nan, math.inf], [1.23]) + yield Case(at.IsNan[float], [math.nan], [1.23, math.inf]) + yield Case(at.IsNotNan[float], [1.23, math.inf], [math.nan]) + yield Case(at.IsInfinite[float], [math.inf], [math.nan, 1.23]) + yield Case(at.IsNotInfinite[float], [math.nan, 1.23], [math.inf]) + + # check stacked predicates + yield Case(at.IsInfinite[Annotated[float, at.Predicate(lambda x: x > 0)]], [math.inf], [-math.inf, 1.23, math.nan]) + + # doc + yield Case(Annotated[int, at.doc("A number")], [1, 2], []) + + # custom GroupedMetadata + class MyCustomGroupedMetadata(at.GroupedMetadata): + def __iter__(self) -> Iterator[at.Predicate]: + yield at.Predicate(lambda x: float(x).is_integer()) + + yield Case(Annotated[float, MyCustomGroupedMetadata()], [0, 2.0], [0.01, 1.5]) diff --git a/.venv/lib/python3.11/site-packages/distutils-precedence.pth b/.venv/lib/python3.11/site-packages/distutils-precedence.pth new file mode 100644 index 0000000..7f009fe --- /dev/null +++ b/.venv/lib/python3.11/site-packages/distutils-precedence.pth @@ -0,0 +1 @@ +import os; var = 'SETUPTOOLS_USE_DISTUTILS'; enabled = os.environ.get(var, 'local') == 'local'; enabled and __import__('_distutils_hack').add_shim(); diff --git a/.venv/lib/python3.11/site-packages/dns/__init__.py b/.venv/lib/python3.11/site-packages/dns/__init__.py new file mode 100644 index 0000000..a4249b9 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/__init__.py @@ -0,0 +1,70 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2003-2007, 2009, 2011 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +"""dnspython DNS toolkit""" + +__all__ = [ + "asyncbackend", + "asyncquery", + "asyncresolver", + "dnssec", + "dnssecalgs", + "dnssectypes", + "e164", + "edns", + "entropy", + "exception", + "flags", + "immutable", + "inet", + "ipv4", + "ipv6", + "message", + "name", + "namedict", + "node", + "opcode", + "query", + "quic", + "rcode", + "rdata", + "rdataclass", + "rdataset", + "rdatatype", + "renderer", + "resolver", + "reversename", + "rrset", + "serial", + "set", + "tokenizer", + "transaction", + "tsig", + "tsigkeyring", + "ttl", + "rdtypes", + "update", + "version", + "versioned", + "wire", + "xfr", + "zone", + "zonetypes", + "zonefile", +] + +from dns.version import version as __version__ # noqa diff --git a/.venv/lib/python3.11/site-packages/dns/_asyncbackend.py b/.venv/lib/python3.11/site-packages/dns/_asyncbackend.py new file mode 100644 index 0000000..f6760fd --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/_asyncbackend.py @@ -0,0 +1,100 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# This is a nullcontext for both sync and async. 3.7 has a nullcontext, +# but it is only for sync use. + + +class NullContext: + def __init__(self, enter_result=None): + self.enter_result = enter_result + + def __enter__(self): + return self.enter_result + + def __exit__(self, exc_type, exc_value, traceback): + pass + + async def __aenter__(self): + return self.enter_result + + async def __aexit__(self, exc_type, exc_value, traceback): + pass + + +# These are declared here so backends can import them without creating +# circular dependencies with dns.asyncbackend. + + +class Socket: # pragma: no cover + def __init__(self, family: int, type: int): + self.family = family + self.type = type + + async def close(self): + pass + + async def getpeername(self): + raise NotImplementedError + + async def getsockname(self): + raise NotImplementedError + + async def getpeercert(self, timeout): + raise NotImplementedError + + async def __aenter__(self): + return self + + async def __aexit__(self, exc_type, exc_value, traceback): + await self.close() + + +class DatagramSocket(Socket): # pragma: no cover + async def sendto(self, what, destination, timeout): + raise NotImplementedError + + async def recvfrom(self, size, timeout): + raise NotImplementedError + + +class StreamSocket(Socket): # pragma: no cover + async def sendall(self, what, timeout): + raise NotImplementedError + + async def recv(self, size, timeout): + raise NotImplementedError + + +class NullTransport: + async def connect_tcp(self, host, port, timeout, local_address): + raise NotImplementedError + + +class Backend: # pragma: no cover + def name(self): + return "unknown" + + async def make_socket( + self, + af, + socktype, + proto=0, + source=None, + destination=None, + timeout=None, + ssl_context=None, + server_hostname=None, + ): + raise NotImplementedError + + def datagram_connection_required(self): + return False + + async def sleep(self, interval): + raise NotImplementedError + + def get_transport_class(self): + raise NotImplementedError + + async def wait_for(self, awaitable, timeout): + raise NotImplementedError diff --git a/.venv/lib/python3.11/site-packages/dns/_asyncio_backend.py b/.venv/lib/python3.11/site-packages/dns/_asyncio_backend.py new file mode 100644 index 0000000..6ab168d --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/_asyncio_backend.py @@ -0,0 +1,275 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +"""asyncio library query support""" + +import asyncio +import socket +import sys + +import dns._asyncbackend +import dns._features +import dns.exception +import dns.inet + +_is_win32 = sys.platform == "win32" + + +def _get_running_loop(): + try: + return asyncio.get_running_loop() + except AttributeError: # pragma: no cover + return asyncio.get_event_loop() + + +class _DatagramProtocol: + def __init__(self): + self.transport = None + self.recvfrom = None + + def connection_made(self, transport): + self.transport = transport + + def datagram_received(self, data, addr): + if self.recvfrom and not self.recvfrom.done(): + self.recvfrom.set_result((data, addr)) + + def error_received(self, exc): # pragma: no cover + if self.recvfrom and not self.recvfrom.done(): + self.recvfrom.set_exception(exc) + + def connection_lost(self, exc): + if self.recvfrom and not self.recvfrom.done(): + if exc is None: + # EOF we triggered. Is there a better way to do this? + try: + raise EOFError("EOF") + except EOFError as e: + self.recvfrom.set_exception(e) + else: + self.recvfrom.set_exception(exc) + + def close(self): + self.transport.close() + + +async def _maybe_wait_for(awaitable, timeout): + if timeout is not None: + try: + return await asyncio.wait_for(awaitable, timeout) + except asyncio.TimeoutError: + raise dns.exception.Timeout(timeout=timeout) + else: + return await awaitable + + +class DatagramSocket(dns._asyncbackend.DatagramSocket): + def __init__(self, family, transport, protocol): + super().__init__(family, socket.SOCK_DGRAM) + self.transport = transport + self.protocol = protocol + + async def sendto(self, what, destination, timeout): # pragma: no cover + # no timeout for asyncio sendto + self.transport.sendto(what, destination) + return len(what) + + async def recvfrom(self, size, timeout): + # ignore size as there's no way I know to tell protocol about it + done = _get_running_loop().create_future() + try: + assert self.protocol.recvfrom is None + self.protocol.recvfrom = done + await _maybe_wait_for(done, timeout) + return done.result() + finally: + self.protocol.recvfrom = None + + async def close(self): + self.protocol.close() + + async def getpeername(self): + return self.transport.get_extra_info("peername") + + async def getsockname(self): + return self.transport.get_extra_info("sockname") + + async def getpeercert(self, timeout): + raise NotImplementedError + + +class StreamSocket(dns._asyncbackend.StreamSocket): + def __init__(self, af, reader, writer): + super().__init__(af, socket.SOCK_STREAM) + self.reader = reader + self.writer = writer + + async def sendall(self, what, timeout): + self.writer.write(what) + return await _maybe_wait_for(self.writer.drain(), timeout) + + async def recv(self, size, timeout): + return await _maybe_wait_for(self.reader.read(size), timeout) + + async def close(self): + self.writer.close() + + async def getpeername(self): + return self.writer.get_extra_info("peername") + + async def getsockname(self): + return self.writer.get_extra_info("sockname") + + async def getpeercert(self, timeout): + return self.writer.get_extra_info("peercert") + + +if dns._features.have("doh"): + import anyio + import httpcore + import httpcore._backends.anyio + import httpx + + _CoreAsyncNetworkBackend = httpcore.AsyncNetworkBackend + _CoreAnyIOStream = httpcore._backends.anyio.AnyIOStream + + from dns.query import _compute_times, _expiration_for_this_attempt, _remaining + + class _NetworkBackend(_CoreAsyncNetworkBackend): + def __init__(self, resolver, local_port, bootstrap_address, family): + super().__init__() + self._local_port = local_port + self._resolver = resolver + self._bootstrap_address = bootstrap_address + self._family = family + if local_port != 0: + raise NotImplementedError( + "the asyncio transport for HTTPX cannot set the local port" + ) + + async def connect_tcp( + self, host, port, timeout, local_address, socket_options=None + ): # pylint: disable=signature-differs + addresses = [] + _, expiration = _compute_times(timeout) + if dns.inet.is_address(host): + addresses.append(host) + elif self._bootstrap_address is not None: + addresses.append(self._bootstrap_address) + else: + timeout = _remaining(expiration) + family = self._family + if local_address: + family = dns.inet.af_for_address(local_address) + answers = await self._resolver.resolve_name( + host, family=family, lifetime=timeout + ) + addresses = answers.addresses() + for address in addresses: + try: + attempt_expiration = _expiration_for_this_attempt(2.0, expiration) + timeout = _remaining(attempt_expiration) + with anyio.fail_after(timeout): + stream = await anyio.connect_tcp( + remote_host=address, + remote_port=port, + local_host=local_address, + ) + return _CoreAnyIOStream(stream) + except Exception: + pass + raise httpcore.ConnectError + + async def connect_unix_socket( + self, path, timeout, socket_options=None + ): # pylint: disable=signature-differs + raise NotImplementedError + + async def sleep(self, seconds): # pylint: disable=signature-differs + await anyio.sleep(seconds) + + class _HTTPTransport(httpx.AsyncHTTPTransport): + def __init__( + self, + *args, + local_port=0, + bootstrap_address=None, + resolver=None, + family=socket.AF_UNSPEC, + **kwargs, + ): + if resolver is None and bootstrap_address is None: + # pylint: disable=import-outside-toplevel,redefined-outer-name + import dns.asyncresolver + + resolver = dns.asyncresolver.Resolver() + super().__init__(*args, **kwargs) + self._pool._network_backend = _NetworkBackend( + resolver, local_port, bootstrap_address, family + ) + +else: + _HTTPTransport = dns._asyncbackend.NullTransport # type: ignore + + +class Backend(dns._asyncbackend.Backend): + def name(self): + return "asyncio" + + async def make_socket( + self, + af, + socktype, + proto=0, + source=None, + destination=None, + timeout=None, + ssl_context=None, + server_hostname=None, + ): + loop = _get_running_loop() + if socktype == socket.SOCK_DGRAM: + if _is_win32 and source is None: + # Win32 wants explicit binding before recvfrom(). This is the + # proper fix for [#637]. + source = (dns.inet.any_for_af(af), 0) + transport, protocol = await loop.create_datagram_endpoint( + _DatagramProtocol, + source, + family=af, + proto=proto, + remote_addr=destination, + ) + return DatagramSocket(af, transport, protocol) + elif socktype == socket.SOCK_STREAM: + if destination is None: + # This shouldn't happen, but we check to make code analysis software + # happier. + raise ValueError("destination required for stream sockets") + (r, w) = await _maybe_wait_for( + asyncio.open_connection( + destination[0], + destination[1], + ssl=ssl_context, + family=af, + proto=proto, + local_addr=source, + server_hostname=server_hostname, + ), + timeout, + ) + return StreamSocket(af, r, w) + raise NotImplementedError( + "unsupported socket " + f"type {socktype}" + ) # pragma: no cover + + async def sleep(self, interval): + await asyncio.sleep(interval) + + def datagram_connection_required(self): + return False + + def get_transport_class(self): + return _HTTPTransport + + async def wait_for(self, awaitable, timeout): + return await _maybe_wait_for(awaitable, timeout) diff --git a/.venv/lib/python3.11/site-packages/dns/_ddr.py b/.venv/lib/python3.11/site-packages/dns/_ddr.py new file mode 100644 index 0000000..bf5c11e --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/_ddr.py @@ -0,0 +1,154 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license +# +# Support for Discovery of Designated Resolvers + +import socket +import time +from urllib.parse import urlparse + +import dns.asyncbackend +import dns.inet +import dns.name +import dns.nameserver +import dns.query +import dns.rdtypes.svcbbase + +# The special name of the local resolver when using DDR +_local_resolver_name = dns.name.from_text("_dns.resolver.arpa") + + +# +# Processing is split up into I/O independent and I/O dependent parts to +# make supporting sync and async versions easy. +# + + +class _SVCBInfo: + def __init__(self, bootstrap_address, port, hostname, nameservers): + self.bootstrap_address = bootstrap_address + self.port = port + self.hostname = hostname + self.nameservers = nameservers + + def ddr_check_certificate(self, cert): + """Verify that the _SVCBInfo's address is in the cert's subjectAltName (SAN)""" + for name, value in cert["subjectAltName"]: + if name == "IP Address" and value == self.bootstrap_address: + return True + return False + + def make_tls_context(self): + ssl = dns.query.ssl + ctx = ssl.create_default_context() + ctx.minimum_version = ssl.TLSVersion.TLSv1_2 + return ctx + + def ddr_tls_check_sync(self, lifetime): + ctx = self.make_tls_context() + expiration = time.time() + lifetime + with socket.create_connection( + (self.bootstrap_address, self.port), lifetime + ) as s: + with ctx.wrap_socket(s, server_hostname=self.hostname) as ts: + ts.settimeout(dns.query._remaining(expiration)) + ts.do_handshake() + cert = ts.getpeercert() + return self.ddr_check_certificate(cert) + + async def ddr_tls_check_async(self, lifetime, backend=None): + if backend is None: + backend = dns.asyncbackend.get_default_backend() + ctx = self.make_tls_context() + expiration = time.time() + lifetime + async with await backend.make_socket( + dns.inet.af_for_address(self.bootstrap_address), + socket.SOCK_STREAM, + 0, + None, + (self.bootstrap_address, self.port), + lifetime, + ctx, + self.hostname, + ) as ts: + cert = await ts.getpeercert(dns.query._remaining(expiration)) + return self.ddr_check_certificate(cert) + + +def _extract_nameservers_from_svcb(answer): + bootstrap_address = answer.nameserver + if not dns.inet.is_address(bootstrap_address): + return [] + infos = [] + for rr in answer.rrset.processing_order(): + nameservers = [] + param = rr.params.get(dns.rdtypes.svcbbase.ParamKey.ALPN) + if param is None: + continue + alpns = set(param.ids) + host = rr.target.to_text(omit_final_dot=True) + port = None + param = rr.params.get(dns.rdtypes.svcbbase.ParamKey.PORT) + if param is not None: + port = param.port + # For now we ignore address hints and address resolution and always use the + # bootstrap address + if b"h2" in alpns: + param = rr.params.get(dns.rdtypes.svcbbase.ParamKey.DOHPATH) + if param is None or not param.value.endswith(b"{?dns}"): + continue + path = param.value[:-6].decode() + if not path.startswith("/"): + path = "/" + path + if port is None: + port = 443 + url = f"https://{host}:{port}{path}" + # check the URL + try: + urlparse(url) + nameservers.append(dns.nameserver.DoHNameserver(url, bootstrap_address)) + except Exception: + # continue processing other ALPN types + pass + if b"dot" in alpns: + if port is None: + port = 853 + nameservers.append( + dns.nameserver.DoTNameserver(bootstrap_address, port, host) + ) + if b"doq" in alpns: + if port is None: + port = 853 + nameservers.append( + dns.nameserver.DoQNameserver(bootstrap_address, port, True, host) + ) + if len(nameservers) > 0: + infos.append(_SVCBInfo(bootstrap_address, port, host, nameservers)) + return infos + + +def _get_nameservers_sync(answer, lifetime): + """Return a list of TLS-validated resolver nameservers extracted from an SVCB + answer.""" + nameservers = [] + infos = _extract_nameservers_from_svcb(answer) + for info in infos: + try: + if info.ddr_tls_check_sync(lifetime): + nameservers.extend(info.nameservers) + except Exception: + pass + return nameservers + + +async def _get_nameservers_async(answer, lifetime): + """Return a list of TLS-validated resolver nameservers extracted from an SVCB + answer.""" + nameservers = [] + infos = _extract_nameservers_from_svcb(answer) + for info in infos: + try: + if await info.ddr_tls_check_async(lifetime): + nameservers.extend(info.nameservers) + except Exception: + pass + return nameservers diff --git a/.venv/lib/python3.11/site-packages/dns/_features.py b/.venv/lib/python3.11/site-packages/dns/_features.py new file mode 100644 index 0000000..fa6d495 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/_features.py @@ -0,0 +1,95 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +import importlib.metadata +import itertools +import string +from typing import Dict, List, Tuple + + +def _tuple_from_text(version: str) -> Tuple: + text_parts = version.split(".") + int_parts = [] + for text_part in text_parts: + digit_prefix = "".join( + itertools.takewhile(lambda x: x in string.digits, text_part) + ) + try: + int_parts.append(int(digit_prefix)) + except Exception: + break + return tuple(int_parts) + + +def _version_check( + requirement: str, +) -> bool: + """Is the requirement fulfilled? + + The requirement must be of the form + + package>=version + """ + package, minimum = requirement.split(">=") + try: + version = importlib.metadata.version(package) + # This shouldn't happen, but it apparently can. + if version is None: + return False + except Exception: + return False + t_version = _tuple_from_text(version) + t_minimum = _tuple_from_text(minimum) + if t_version < t_minimum: + return False + return True + + +_cache: Dict[str, bool] = {} + + +def have(feature: str) -> bool: + """Is *feature* available? + + This tests if all optional packages needed for the + feature are available and recent enough. + + Returns ``True`` if the feature is available, + and ``False`` if it is not or if metadata is + missing. + """ + value = _cache.get(feature) + if value is not None: + return value + requirements = _requirements.get(feature) + if requirements is None: + # we make a cache entry here for consistency not performance + _cache[feature] = False + return False + ok = True + for requirement in requirements: + if not _version_check(requirement): + ok = False + break + _cache[feature] = ok + return ok + + +def force(feature: str, enabled: bool) -> None: + """Force the status of *feature* to be *enabled*. + + This method is provided as a workaround for any cases + where importlib.metadata is ineffective, or for testing. + """ + _cache[feature] = enabled + + +_requirements: Dict[str, List[str]] = { + ### BEGIN generated requirements + "dnssec": ["cryptography>=43"], + "doh": ["httpcore>=1.0.0", "httpx>=0.26.0", "h2>=4.1.0"], + "doq": ["aioquic>=1.0.0"], + "idna": ["idna>=3.7"], + "trio": ["trio>=0.23"], + "wmi": ["wmi>=1.5.1"], + ### END generated requirements +} diff --git a/.venv/lib/python3.11/site-packages/dns/_immutable_ctx.py b/.venv/lib/python3.11/site-packages/dns/_immutable_ctx.py new file mode 100644 index 0000000..ae7a33b --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/_immutable_ctx.py @@ -0,0 +1,76 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# This implementation of the immutable decorator requires python >= +# 3.7, and is significantly more storage efficient when making classes +# with slots immutable. It's also faster. + +import contextvars +import inspect + +_in__init__ = contextvars.ContextVar("_immutable_in__init__", default=False) + + +class _Immutable: + """Immutable mixin class""" + + # We set slots to the empty list to say "we don't have any attributes". + # We do this so that if we're mixed in with a class with __slots__, we + # don't cause a __dict__ to be added which would waste space. + + __slots__ = () + + def __setattr__(self, name, value): + if _in__init__.get() is not self: + raise TypeError("object doesn't support attribute assignment") + else: + super().__setattr__(name, value) + + def __delattr__(self, name): + if _in__init__.get() is not self: + raise TypeError("object doesn't support attribute assignment") + else: + super().__delattr__(name) + + +def _immutable_init(f): + def nf(*args, **kwargs): + previous = _in__init__.set(args[0]) + try: + # call the actual __init__ + f(*args, **kwargs) + finally: + _in__init__.reset(previous) + + nf.__signature__ = inspect.signature(f) + return nf + + +def immutable(cls): + if _Immutable in cls.__mro__: + # Some ancestor already has the mixin, so just make sure we keep + # following the __init__ protocol. + cls.__init__ = _immutable_init(cls.__init__) + if hasattr(cls, "__setstate__"): + cls.__setstate__ = _immutable_init(cls.__setstate__) + ncls = cls + else: + # Mixin the Immutable class and follow the __init__ protocol. + class ncls(_Immutable, cls): + # We have to do the __slots__ declaration here too! + __slots__ = () + + @_immutable_init + def __init__(self, *args, **kwargs): + super().__init__(*args, **kwargs) + + if hasattr(cls, "__setstate__"): + + @_immutable_init + def __setstate__(self, *args, **kwargs): + super().__setstate__(*args, **kwargs) + + # make ncls have the same name and module as cls + ncls.__name__ = cls.__name__ + ncls.__qualname__ = cls.__qualname__ + ncls.__module__ = cls.__module__ + return ncls diff --git a/.venv/lib/python3.11/site-packages/dns/_trio_backend.py b/.venv/lib/python3.11/site-packages/dns/_trio_backend.py new file mode 100644 index 0000000..0ed904d --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/_trio_backend.py @@ -0,0 +1,253 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +"""trio async I/O library query support""" + +import socket + +import trio +import trio.socket # type: ignore + +import dns._asyncbackend +import dns._features +import dns.exception +import dns.inet + +if not dns._features.have("trio"): + raise ImportError("trio not found or too old") + + +def _maybe_timeout(timeout): + if timeout is not None: + return trio.move_on_after(timeout) + else: + return dns._asyncbackend.NullContext() + + +# for brevity +_lltuple = dns.inet.low_level_address_tuple + +# pylint: disable=redefined-outer-name + + +class DatagramSocket(dns._asyncbackend.DatagramSocket): + def __init__(self, sock): + super().__init__(sock.family, socket.SOCK_DGRAM) + self.socket = sock + + async def sendto(self, what, destination, timeout): + with _maybe_timeout(timeout): + if destination is None: + return await self.socket.send(what) + else: + return await self.socket.sendto(what, destination) + raise dns.exception.Timeout( + timeout=timeout + ) # pragma: no cover lgtm[py/unreachable-statement] + + async def recvfrom(self, size, timeout): + with _maybe_timeout(timeout): + return await self.socket.recvfrom(size) + raise dns.exception.Timeout(timeout=timeout) # lgtm[py/unreachable-statement] + + async def close(self): + self.socket.close() + + async def getpeername(self): + return self.socket.getpeername() + + async def getsockname(self): + return self.socket.getsockname() + + async def getpeercert(self, timeout): + raise NotImplementedError + + +class StreamSocket(dns._asyncbackend.StreamSocket): + def __init__(self, family, stream, tls=False): + super().__init__(family, socket.SOCK_STREAM) + self.stream = stream + self.tls = tls + + async def sendall(self, what, timeout): + with _maybe_timeout(timeout): + return await self.stream.send_all(what) + raise dns.exception.Timeout(timeout=timeout) # lgtm[py/unreachable-statement] + + async def recv(self, size, timeout): + with _maybe_timeout(timeout): + return await self.stream.receive_some(size) + raise dns.exception.Timeout(timeout=timeout) # lgtm[py/unreachable-statement] + + async def close(self): + await self.stream.aclose() + + async def getpeername(self): + if self.tls: + return self.stream.transport_stream.socket.getpeername() + else: + return self.stream.socket.getpeername() + + async def getsockname(self): + if self.tls: + return self.stream.transport_stream.socket.getsockname() + else: + return self.stream.socket.getsockname() + + async def getpeercert(self, timeout): + if self.tls: + with _maybe_timeout(timeout): + await self.stream.do_handshake() + return self.stream.getpeercert() + else: + raise NotImplementedError + + +if dns._features.have("doh"): + import httpcore + import httpcore._backends.trio + import httpx + + _CoreAsyncNetworkBackend = httpcore.AsyncNetworkBackend + _CoreTrioStream = httpcore._backends.trio.TrioStream + + from dns.query import _compute_times, _expiration_for_this_attempt, _remaining + + class _NetworkBackend(_CoreAsyncNetworkBackend): + def __init__(self, resolver, local_port, bootstrap_address, family): + super().__init__() + self._local_port = local_port + self._resolver = resolver + self._bootstrap_address = bootstrap_address + self._family = family + + async def connect_tcp( + self, host, port, timeout, local_address, socket_options=None + ): # pylint: disable=signature-differs + addresses = [] + _, expiration = _compute_times(timeout) + if dns.inet.is_address(host): + addresses.append(host) + elif self._bootstrap_address is not None: + addresses.append(self._bootstrap_address) + else: + timeout = _remaining(expiration) + family = self._family + if local_address: + family = dns.inet.af_for_address(local_address) + answers = await self._resolver.resolve_name( + host, family=family, lifetime=timeout + ) + addresses = answers.addresses() + for address in addresses: + try: + af = dns.inet.af_for_address(address) + if local_address is not None or self._local_port != 0: + source = (local_address, self._local_port) + else: + source = None + destination = (address, port) + attempt_expiration = _expiration_for_this_attempt(2.0, expiration) + timeout = _remaining(attempt_expiration) + sock = await Backend().make_socket( + af, socket.SOCK_STREAM, 0, source, destination, timeout + ) + return _CoreTrioStream(sock.stream) + except Exception: + continue + raise httpcore.ConnectError + + async def connect_unix_socket( + self, path, timeout, socket_options=None + ): # pylint: disable=signature-differs + raise NotImplementedError + + async def sleep(self, seconds): # pylint: disable=signature-differs + await trio.sleep(seconds) + + class _HTTPTransport(httpx.AsyncHTTPTransport): + def __init__( + self, + *args, + local_port=0, + bootstrap_address=None, + resolver=None, + family=socket.AF_UNSPEC, + **kwargs, + ): + if resolver is None and bootstrap_address is None: + # pylint: disable=import-outside-toplevel,redefined-outer-name + import dns.asyncresolver + + resolver = dns.asyncresolver.Resolver() + super().__init__(*args, **kwargs) + self._pool._network_backend = _NetworkBackend( + resolver, local_port, bootstrap_address, family + ) + +else: + _HTTPTransport = dns._asyncbackend.NullTransport # type: ignore + + +class Backend(dns._asyncbackend.Backend): + def name(self): + return "trio" + + async def make_socket( + self, + af, + socktype, + proto=0, + source=None, + destination=None, + timeout=None, + ssl_context=None, + server_hostname=None, + ): + s = trio.socket.socket(af, socktype, proto) + stream = None + try: + if source: + await s.bind(_lltuple(source, af)) + if socktype == socket.SOCK_STREAM or destination is not None: + connected = False + with _maybe_timeout(timeout): + await s.connect(_lltuple(destination, af)) + connected = True + if not connected: + raise dns.exception.Timeout( + timeout=timeout + ) # lgtm[py/unreachable-statement] + except Exception: # pragma: no cover + s.close() + raise + if socktype == socket.SOCK_DGRAM: + return DatagramSocket(s) + elif socktype == socket.SOCK_STREAM: + stream = trio.SocketStream(s) + tls = False + if ssl_context: + tls = True + try: + stream = trio.SSLStream( + stream, ssl_context, server_hostname=server_hostname + ) + except Exception: # pragma: no cover + await stream.aclose() + raise + return StreamSocket(af, stream, tls) + raise NotImplementedError( + "unsupported socket " + f"type {socktype}" + ) # pragma: no cover + + async def sleep(self, interval): + await trio.sleep(interval) + + def get_transport_class(self): + return _HTTPTransport + + async def wait_for(self, awaitable, timeout): + with _maybe_timeout(timeout): + return await awaitable + raise dns.exception.Timeout( + timeout=timeout + ) # pragma: no cover lgtm[py/unreachable-statement] diff --git a/.venv/lib/python3.11/site-packages/dns/asyncbackend.py b/.venv/lib/python3.11/site-packages/dns/asyncbackend.py new file mode 100644 index 0000000..0ec58b0 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/asyncbackend.py @@ -0,0 +1,101 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +from typing import Dict + +import dns.exception + +# pylint: disable=unused-import +from dns._asyncbackend import ( # noqa: F401 lgtm[py/unused-import] + Backend, + DatagramSocket, + Socket, + StreamSocket, +) + +# pylint: enable=unused-import + +_default_backend = None + +_backends: Dict[str, Backend] = {} + +# Allow sniffio import to be disabled for testing purposes +_no_sniffio = False + + +class AsyncLibraryNotFoundError(dns.exception.DNSException): + pass + + +def get_backend(name: str) -> Backend: + """Get the specified asynchronous backend. + + *name*, a ``str``, the name of the backend. Currently the "trio" + and "asyncio" backends are available. + + Raises NotImplementedError if an unknown backend name is specified. + """ + # pylint: disable=import-outside-toplevel,redefined-outer-name + backend = _backends.get(name) + if backend: + return backend + if name == "trio": + import dns._trio_backend + + backend = dns._trio_backend.Backend() + elif name == "asyncio": + import dns._asyncio_backend + + backend = dns._asyncio_backend.Backend() + else: + raise NotImplementedError(f"unimplemented async backend {name}") + _backends[name] = backend + return backend + + +def sniff() -> str: + """Attempt to determine the in-use asynchronous I/O library by using + the ``sniffio`` module if it is available. + + Returns the name of the library, or raises AsyncLibraryNotFoundError + if the library cannot be determined. + """ + # pylint: disable=import-outside-toplevel + try: + if _no_sniffio: + raise ImportError + import sniffio + + try: + return sniffio.current_async_library() + except sniffio.AsyncLibraryNotFoundError: + raise AsyncLibraryNotFoundError("sniffio cannot determine async library") + except ImportError: + import asyncio + + try: + asyncio.get_running_loop() + return "asyncio" + except RuntimeError: + raise AsyncLibraryNotFoundError("no async library detected") + + +def get_default_backend() -> Backend: + """Get the default backend, initializing it if necessary.""" + if _default_backend: + return _default_backend + + return set_default_backend(sniff()) + + +def set_default_backend(name: str) -> Backend: + """Set the default backend. + + It's not normally necessary to call this method, as + ``get_default_backend()`` will initialize the backend + appropriately in many cases. If ``sniffio`` is not installed, or + in testing situations, this function allows the backend to be set + explicitly. + """ + global _default_backend + _default_backend = get_backend(name) + return _default_backend diff --git a/.venv/lib/python3.11/site-packages/dns/asyncquery.py b/.venv/lib/python3.11/site-packages/dns/asyncquery.py new file mode 100644 index 0000000..efad0fd --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/asyncquery.py @@ -0,0 +1,913 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2003-2017 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +"""Talk to a DNS server.""" + +import base64 +import contextlib +import random +import socket +import struct +import time +import urllib.parse +from typing import Any, Dict, Optional, Tuple, Union, cast + +import dns.asyncbackend +import dns.exception +import dns.inet +import dns.message +import dns.name +import dns.quic +import dns.rcode +import dns.rdataclass +import dns.rdatatype +import dns.transaction +from dns._asyncbackend import NullContext +from dns.query import ( + BadResponse, + HTTPVersion, + NoDOH, + NoDOQ, + UDPMode, + _check_status, + _compute_times, + _make_dot_ssl_context, + _matches_destination, + _remaining, + have_doh, + ssl, +) + +if have_doh: + import httpx + +# for brevity +_lltuple = dns.inet.low_level_address_tuple + + +def _source_tuple(af, address, port): + # Make a high level source tuple, or return None if address and port + # are both None + if address or port: + if address is None: + if af == socket.AF_INET: + address = "0.0.0.0" + elif af == socket.AF_INET6: + address = "::" + else: + raise NotImplementedError(f"unknown address family {af}") + return (address, port) + else: + return None + + +def _timeout(expiration, now=None): + if expiration is not None: + if not now: + now = time.time() + return max(expiration - now, 0) + else: + return None + + +async def send_udp( + sock: dns.asyncbackend.DatagramSocket, + what: Union[dns.message.Message, bytes], + destination: Any, + expiration: Optional[float] = None, +) -> Tuple[int, float]: + """Send a DNS message to the specified UDP socket. + + *sock*, a ``dns.asyncbackend.DatagramSocket``. + + *what*, a ``bytes`` or ``dns.message.Message``, the message to send. + + *destination*, a destination tuple appropriate for the address family + of the socket, specifying where to send the query. + + *expiration*, a ``float`` or ``None``, the absolute time at which + a timeout exception should be raised. If ``None``, no timeout will + occur. The expiration value is meaningless for the asyncio backend, as + asyncio's transport sendto() never blocks. + + Returns an ``(int, float)`` tuple of bytes sent and the sent time. + """ + + if isinstance(what, dns.message.Message): + what = what.to_wire() + sent_time = time.time() + n = await sock.sendto(what, destination, _timeout(expiration, sent_time)) + return (n, sent_time) + + +async def receive_udp( + sock: dns.asyncbackend.DatagramSocket, + destination: Optional[Any] = None, + expiration: Optional[float] = None, + ignore_unexpected: bool = False, + one_rr_per_rrset: bool = False, + keyring: Optional[Dict[dns.name.Name, dns.tsig.Key]] = None, + request_mac: Optional[bytes] = b"", + ignore_trailing: bool = False, + raise_on_truncation: bool = False, + ignore_errors: bool = False, + query: Optional[dns.message.Message] = None, +) -> Any: + """Read a DNS message from a UDP socket. + + *sock*, a ``dns.asyncbackend.DatagramSocket``. + + See :py:func:`dns.query.receive_udp()` for the documentation of the other + parameters, and exceptions. + + Returns a ``(dns.message.Message, float, tuple)`` tuple of the received message, the + received time, and the address where the message arrived from. + """ + + wire = b"" + while True: + (wire, from_address) = await sock.recvfrom(65535, _timeout(expiration)) + if not _matches_destination( + sock.family, from_address, destination, ignore_unexpected + ): + continue + received_time = time.time() + try: + r = dns.message.from_wire( + wire, + keyring=keyring, + request_mac=request_mac, + one_rr_per_rrset=one_rr_per_rrset, + ignore_trailing=ignore_trailing, + raise_on_truncation=raise_on_truncation, + ) + except dns.message.Truncated as e: + # See the comment in query.py for details. + if ( + ignore_errors + and query is not None + and not query.is_response(e.message()) + ): + continue + else: + raise + except Exception: + if ignore_errors: + continue + else: + raise + if ignore_errors and query is not None and not query.is_response(r): + continue + return (r, received_time, from_address) + + +async def udp( + q: dns.message.Message, + where: str, + timeout: Optional[float] = None, + port: int = 53, + source: Optional[str] = None, + source_port: int = 0, + ignore_unexpected: bool = False, + one_rr_per_rrset: bool = False, + ignore_trailing: bool = False, + raise_on_truncation: bool = False, + sock: Optional[dns.asyncbackend.DatagramSocket] = None, + backend: Optional[dns.asyncbackend.Backend] = None, + ignore_errors: bool = False, +) -> dns.message.Message: + """Return the response obtained after sending a query via UDP. + + *sock*, a ``dns.asyncbackend.DatagramSocket``, or ``None``, + the socket to use for the query. If ``None``, the default, a + socket is created. Note that if a socket is provided, the + *source*, *source_port*, and *backend* are ignored. + + *backend*, a ``dns.asyncbackend.Backend``, or ``None``. If ``None``, + the default, then dnspython will use the default backend. + + See :py:func:`dns.query.udp()` for the documentation of the other + parameters, exceptions, and return type of this method. + """ + wire = q.to_wire() + (begin_time, expiration) = _compute_times(timeout) + af = dns.inet.af_for_address(where) + destination = _lltuple((where, port), af) + if sock: + cm: contextlib.AbstractAsyncContextManager = NullContext(sock) + else: + if not backend: + backend = dns.asyncbackend.get_default_backend() + stuple = _source_tuple(af, source, source_port) + if backend.datagram_connection_required(): + dtuple = (where, port) + else: + dtuple = None + cm = await backend.make_socket(af, socket.SOCK_DGRAM, 0, stuple, dtuple) + async with cm as s: + await send_udp(s, wire, destination, expiration) + (r, received_time, _) = await receive_udp( + s, + destination, + expiration, + ignore_unexpected, + one_rr_per_rrset, + q.keyring, + q.mac, + ignore_trailing, + raise_on_truncation, + ignore_errors, + q, + ) + r.time = received_time - begin_time + # We don't need to check q.is_response() if we are in ignore_errors mode + # as receive_udp() will have checked it. + if not (ignore_errors or q.is_response(r)): + raise BadResponse + return r + + +async def udp_with_fallback( + q: dns.message.Message, + where: str, + timeout: Optional[float] = None, + port: int = 53, + source: Optional[str] = None, + source_port: int = 0, + ignore_unexpected: bool = False, + one_rr_per_rrset: bool = False, + ignore_trailing: bool = False, + udp_sock: Optional[dns.asyncbackend.DatagramSocket] = None, + tcp_sock: Optional[dns.asyncbackend.StreamSocket] = None, + backend: Optional[dns.asyncbackend.Backend] = None, + ignore_errors: bool = False, +) -> Tuple[dns.message.Message, bool]: + """Return the response to the query, trying UDP first and falling back + to TCP if UDP results in a truncated response. + + *udp_sock*, a ``dns.asyncbackend.DatagramSocket``, or ``None``, + the socket to use for the UDP query. If ``None``, the default, a + socket is created. Note that if a socket is provided the *source*, + *source_port*, and *backend* are ignored for the UDP query. + + *tcp_sock*, a ``dns.asyncbackend.StreamSocket``, or ``None``, the + socket to use for the TCP query. If ``None``, the default, a + socket is created. Note that if a socket is provided *where*, + *source*, *source_port*, and *backend* are ignored for the TCP query. + + *backend*, a ``dns.asyncbackend.Backend``, or ``None``. If ``None``, + the default, then dnspython will use the default backend. + + See :py:func:`dns.query.udp_with_fallback()` for the documentation + of the other parameters, exceptions, and return type of this + method. + """ + try: + response = await udp( + q, + where, + timeout, + port, + source, + source_port, + ignore_unexpected, + one_rr_per_rrset, + ignore_trailing, + True, + udp_sock, + backend, + ignore_errors, + ) + return (response, False) + except dns.message.Truncated: + response = await tcp( + q, + where, + timeout, + port, + source, + source_port, + one_rr_per_rrset, + ignore_trailing, + tcp_sock, + backend, + ) + return (response, True) + + +async def send_tcp( + sock: dns.asyncbackend.StreamSocket, + what: Union[dns.message.Message, bytes], + expiration: Optional[float] = None, +) -> Tuple[int, float]: + """Send a DNS message to the specified TCP socket. + + *sock*, a ``dns.asyncbackend.StreamSocket``. + + See :py:func:`dns.query.send_tcp()` for the documentation of the other + parameters, exceptions, and return type of this method. + """ + + if isinstance(what, dns.message.Message): + tcpmsg = what.to_wire(prepend_length=True) + else: + # copying the wire into tcpmsg is inefficient, but lets us + # avoid writev() or doing a short write that would get pushed + # onto the net + tcpmsg = len(what).to_bytes(2, "big") + what + sent_time = time.time() + await sock.sendall(tcpmsg, _timeout(expiration, sent_time)) + return (len(tcpmsg), sent_time) + + +async def _read_exactly(sock, count, expiration): + """Read the specified number of bytes from stream. Keep trying until we + either get the desired amount, or we hit EOF. + """ + s = b"" + while count > 0: + n = await sock.recv(count, _timeout(expiration)) + if n == b"": + raise EOFError("EOF") + count = count - len(n) + s = s + n + return s + + +async def receive_tcp( + sock: dns.asyncbackend.StreamSocket, + expiration: Optional[float] = None, + one_rr_per_rrset: bool = False, + keyring: Optional[Dict[dns.name.Name, dns.tsig.Key]] = None, + request_mac: Optional[bytes] = b"", + ignore_trailing: bool = False, +) -> Tuple[dns.message.Message, float]: + """Read a DNS message from a TCP socket. + + *sock*, a ``dns.asyncbackend.StreamSocket``. + + See :py:func:`dns.query.receive_tcp()` for the documentation of the other + parameters, exceptions, and return type of this method. + """ + + ldata = await _read_exactly(sock, 2, expiration) + (l,) = struct.unpack("!H", ldata) + wire = await _read_exactly(sock, l, expiration) + received_time = time.time() + r = dns.message.from_wire( + wire, + keyring=keyring, + request_mac=request_mac, + one_rr_per_rrset=one_rr_per_rrset, + ignore_trailing=ignore_trailing, + ) + return (r, received_time) + + +async def tcp( + q: dns.message.Message, + where: str, + timeout: Optional[float] = None, + port: int = 53, + source: Optional[str] = None, + source_port: int = 0, + one_rr_per_rrset: bool = False, + ignore_trailing: bool = False, + sock: Optional[dns.asyncbackend.StreamSocket] = None, + backend: Optional[dns.asyncbackend.Backend] = None, +) -> dns.message.Message: + """Return the response obtained after sending a query via TCP. + + *sock*, a ``dns.asyncbacket.StreamSocket``, or ``None``, the + socket to use for the query. If ``None``, the default, a socket + is created. Note that if a socket is provided + *where*, *port*, *source*, *source_port*, and *backend* are ignored. + + *backend*, a ``dns.asyncbackend.Backend``, or ``None``. If ``None``, + the default, then dnspython will use the default backend. + + See :py:func:`dns.query.tcp()` for the documentation of the other + parameters, exceptions, and return type of this method. + """ + + wire = q.to_wire() + (begin_time, expiration) = _compute_times(timeout) + if sock: + # Verify that the socket is connected, as if it's not connected, + # it's not writable, and the polling in send_tcp() will time out or + # hang forever. + await sock.getpeername() + cm: contextlib.AbstractAsyncContextManager = NullContext(sock) + else: + # These are simple (address, port) pairs, not family-dependent tuples + # you pass to low-level socket code. + af = dns.inet.af_for_address(where) + stuple = _source_tuple(af, source, source_port) + dtuple = (where, port) + if not backend: + backend = dns.asyncbackend.get_default_backend() + cm = await backend.make_socket( + af, socket.SOCK_STREAM, 0, stuple, dtuple, timeout + ) + async with cm as s: + await send_tcp(s, wire, expiration) + (r, received_time) = await receive_tcp( + s, expiration, one_rr_per_rrset, q.keyring, q.mac, ignore_trailing + ) + r.time = received_time - begin_time + if not q.is_response(r): + raise BadResponse + return r + + +async def tls( + q: dns.message.Message, + where: str, + timeout: Optional[float] = None, + port: int = 853, + source: Optional[str] = None, + source_port: int = 0, + one_rr_per_rrset: bool = False, + ignore_trailing: bool = False, + sock: Optional[dns.asyncbackend.StreamSocket] = None, + backend: Optional[dns.asyncbackend.Backend] = None, + ssl_context: Optional[ssl.SSLContext] = None, + server_hostname: Optional[str] = None, + verify: Union[bool, str] = True, +) -> dns.message.Message: + """Return the response obtained after sending a query via TLS. + + *sock*, an ``asyncbackend.StreamSocket``, or ``None``, the socket + to use for the query. If ``None``, the default, a socket is + created. Note that if a socket is provided, it must be a + connected SSL stream socket, and *where*, *port*, + *source*, *source_port*, *backend*, *ssl_context*, and *server_hostname* + are ignored. + + *backend*, a ``dns.asyncbackend.Backend``, or ``None``. If ``None``, + the default, then dnspython will use the default backend. + + See :py:func:`dns.query.tls()` for the documentation of the other + parameters, exceptions, and return type of this method. + """ + (begin_time, expiration) = _compute_times(timeout) + if sock: + cm: contextlib.AbstractAsyncContextManager = NullContext(sock) + else: + if ssl_context is None: + ssl_context = _make_dot_ssl_context(server_hostname, verify) + af = dns.inet.af_for_address(where) + stuple = _source_tuple(af, source, source_port) + dtuple = (where, port) + if not backend: + backend = dns.asyncbackend.get_default_backend() + cm = await backend.make_socket( + af, + socket.SOCK_STREAM, + 0, + stuple, + dtuple, + timeout, + ssl_context, + server_hostname, + ) + async with cm as s: + timeout = _timeout(expiration) + response = await tcp( + q, + where, + timeout, + port, + source, + source_port, + one_rr_per_rrset, + ignore_trailing, + s, + backend, + ) + end_time = time.time() + response.time = end_time - begin_time + return response + + +def _maybe_get_resolver( + resolver: Optional["dns.asyncresolver.Resolver"], +) -> "dns.asyncresolver.Resolver": + # We need a separate method for this to avoid overriding the global + # variable "dns" with the as-yet undefined local variable "dns" + # in https(). + if resolver is None: + # pylint: disable=import-outside-toplevel,redefined-outer-name + import dns.asyncresolver + + resolver = dns.asyncresolver.Resolver() + return resolver + + +async def https( + q: dns.message.Message, + where: str, + timeout: Optional[float] = None, + port: int = 443, + source: Optional[str] = None, + source_port: int = 0, # pylint: disable=W0613 + one_rr_per_rrset: bool = False, + ignore_trailing: bool = False, + client: Optional["httpx.AsyncClient"] = None, + path: str = "/dns-query", + post: bool = True, + verify: Union[bool, str] = True, + bootstrap_address: Optional[str] = None, + resolver: Optional["dns.asyncresolver.Resolver"] = None, + family: int = socket.AF_UNSPEC, + http_version: HTTPVersion = HTTPVersion.DEFAULT, +) -> dns.message.Message: + """Return the response obtained after sending a query via DNS-over-HTTPS. + + *client*, a ``httpx.AsyncClient``. If provided, the client to use for + the query. + + Unlike the other dnspython async functions, a backend cannot be provided + in this function because httpx always auto-detects the async backend. + + See :py:func:`dns.query.https()` for the documentation of the other + parameters, exceptions, and return type of this method. + """ + + try: + af = dns.inet.af_for_address(where) + except ValueError: + af = None + if af is not None and dns.inet.is_address(where): + if af == socket.AF_INET: + url = f"https://{where}:{port}{path}" + elif af == socket.AF_INET6: + url = f"https://[{where}]:{port}{path}" + else: + url = where + + extensions = {} + if bootstrap_address is None: + # pylint: disable=possibly-used-before-assignment + parsed = urllib.parse.urlparse(url) + if parsed.hostname is None: + raise ValueError("no hostname in URL") + if dns.inet.is_address(parsed.hostname): + bootstrap_address = parsed.hostname + extensions["sni_hostname"] = parsed.hostname + if parsed.port is not None: + port = parsed.port + + if http_version == HTTPVersion.H3 or ( + http_version == HTTPVersion.DEFAULT and not have_doh + ): + if bootstrap_address is None: + resolver = _maybe_get_resolver(resolver) + assert parsed.hostname is not None # for mypy + answers = await resolver.resolve_name(parsed.hostname, family) + bootstrap_address = random.choice(list(answers.addresses())) + return await _http3( + q, + bootstrap_address, + url, + timeout, + port, + source, + source_port, + one_rr_per_rrset, + ignore_trailing, + verify=verify, + post=post, + ) + + if not have_doh: + raise NoDOH # pragma: no cover + # pylint: disable=possibly-used-before-assignment + if client and not isinstance(client, httpx.AsyncClient): + raise ValueError("session parameter must be an httpx.AsyncClient") + # pylint: enable=possibly-used-before-assignment + + wire = q.to_wire() + headers = {"accept": "application/dns-message"} + + h1 = http_version in (HTTPVersion.H1, HTTPVersion.DEFAULT) + h2 = http_version in (HTTPVersion.H2, HTTPVersion.DEFAULT) + + backend = dns.asyncbackend.get_default_backend() + + if source is None: + local_address = None + local_port = 0 + else: + local_address = source + local_port = source_port + + if client: + cm: contextlib.AbstractAsyncContextManager = NullContext(client) + else: + transport = backend.get_transport_class()( + local_address=local_address, + http1=h1, + http2=h2, + verify=verify, + local_port=local_port, + bootstrap_address=bootstrap_address, + resolver=resolver, + family=family, + ) + + cm = httpx.AsyncClient(http1=h1, http2=h2, verify=verify, transport=transport) + + async with cm as the_client: + # see https://tools.ietf.org/html/rfc8484#section-4.1.1 for DoH + # GET and POST examples + if post: + headers.update( + { + "content-type": "application/dns-message", + "content-length": str(len(wire)), + } + ) + response = await backend.wait_for( + the_client.post( + url, + headers=headers, + content=wire, + extensions=extensions, + ), + timeout, + ) + else: + wire = base64.urlsafe_b64encode(wire).rstrip(b"=") + twire = wire.decode() # httpx does a repr() if we give it bytes + response = await backend.wait_for( + the_client.get( + url, + headers=headers, + params={"dns": twire}, + extensions=extensions, + ), + timeout, + ) + + # see https://tools.ietf.org/html/rfc8484#section-4.2.1 for info about DoH + # status codes + if response.status_code < 200 or response.status_code > 299: + raise ValueError( + f"{where} responded with status code {response.status_code}" + f"\nResponse body: {response.content!r}" + ) + r = dns.message.from_wire( + response.content, + keyring=q.keyring, + request_mac=q.request_mac, + one_rr_per_rrset=one_rr_per_rrset, + ignore_trailing=ignore_trailing, + ) + r.time = response.elapsed.total_seconds() + if not q.is_response(r): + raise BadResponse + return r + + +async def _http3( + q: dns.message.Message, + where: str, + url: str, + timeout: Optional[float] = None, + port: int = 853, + source: Optional[str] = None, + source_port: int = 0, + one_rr_per_rrset: bool = False, + ignore_trailing: bool = False, + verify: Union[bool, str] = True, + backend: Optional[dns.asyncbackend.Backend] = None, + hostname: Optional[str] = None, + post: bool = True, +) -> dns.message.Message: + if not dns.quic.have_quic: + raise NoDOH("DNS-over-HTTP3 is not available.") # pragma: no cover + + url_parts = urllib.parse.urlparse(url) + hostname = url_parts.hostname + if url_parts.port is not None: + port = url_parts.port + + q.id = 0 + wire = q.to_wire() + (cfactory, mfactory) = dns.quic.factories_for_backend(backend) + + async with cfactory() as context: + async with mfactory( + context, verify_mode=verify, server_name=hostname, h3=True + ) as the_manager: + the_connection = the_manager.connect(where, port, source, source_port) + (start, expiration) = _compute_times(timeout) + stream = await the_connection.make_stream(timeout) + async with stream: + # note that send_h3() does not need await + stream.send_h3(url, wire, post) + wire = await stream.receive(_remaining(expiration)) + _check_status(stream.headers(), where, wire) + finish = time.time() + r = dns.message.from_wire( + wire, + keyring=q.keyring, + request_mac=q.request_mac, + one_rr_per_rrset=one_rr_per_rrset, + ignore_trailing=ignore_trailing, + ) + r.time = max(finish - start, 0.0) + if not q.is_response(r): + raise BadResponse + return r + + +async def quic( + q: dns.message.Message, + where: str, + timeout: Optional[float] = None, + port: int = 853, + source: Optional[str] = None, + source_port: int = 0, + one_rr_per_rrset: bool = False, + ignore_trailing: bool = False, + connection: Optional[dns.quic.AsyncQuicConnection] = None, + verify: Union[bool, str] = True, + backend: Optional[dns.asyncbackend.Backend] = None, + hostname: Optional[str] = None, + server_hostname: Optional[str] = None, +) -> dns.message.Message: + """Return the response obtained after sending an asynchronous query via + DNS-over-QUIC. + + *backend*, a ``dns.asyncbackend.Backend``, or ``None``. If ``None``, + the default, then dnspython will use the default backend. + + See :py:func:`dns.query.quic()` for the documentation of the other + parameters, exceptions, and return type of this method. + """ + + if not dns.quic.have_quic: + raise NoDOQ("DNS-over-QUIC is not available.") # pragma: no cover + + if server_hostname is not None and hostname is None: + hostname = server_hostname + + q.id = 0 + wire = q.to_wire() + the_connection: dns.quic.AsyncQuicConnection + if connection: + cfactory = dns.quic.null_factory + mfactory = dns.quic.null_factory + the_connection = connection + else: + (cfactory, mfactory) = dns.quic.factories_for_backend(backend) + + async with cfactory() as context: + async with mfactory( + context, + verify_mode=verify, + server_name=server_hostname, + ) as the_manager: + if not connection: + the_connection = the_manager.connect(where, port, source, source_port) + (start, expiration) = _compute_times(timeout) + stream = await the_connection.make_stream(timeout) + async with stream: + await stream.send(wire, True) + wire = await stream.receive(_remaining(expiration)) + finish = time.time() + r = dns.message.from_wire( + wire, + keyring=q.keyring, + request_mac=q.request_mac, + one_rr_per_rrset=one_rr_per_rrset, + ignore_trailing=ignore_trailing, + ) + r.time = max(finish - start, 0.0) + if not q.is_response(r): + raise BadResponse + return r + + +async def _inbound_xfr( + txn_manager: dns.transaction.TransactionManager, + s: dns.asyncbackend.Socket, + query: dns.message.Message, + serial: Optional[int], + timeout: Optional[float], + expiration: float, +) -> Any: + """Given a socket, does the zone transfer.""" + rdtype = query.question[0].rdtype + is_ixfr = rdtype == dns.rdatatype.IXFR + origin = txn_manager.from_wire_origin() + wire = query.to_wire() + is_udp = s.type == socket.SOCK_DGRAM + if is_udp: + udp_sock = cast(dns.asyncbackend.DatagramSocket, s) + await udp_sock.sendto(wire, None, _timeout(expiration)) + else: + tcp_sock = cast(dns.asyncbackend.StreamSocket, s) + tcpmsg = struct.pack("!H", len(wire)) + wire + await tcp_sock.sendall(tcpmsg, expiration) + with dns.xfr.Inbound(txn_manager, rdtype, serial, is_udp) as inbound: + done = False + tsig_ctx = None + while not done: + (_, mexpiration) = _compute_times(timeout) + if mexpiration is None or ( + expiration is not None and mexpiration > expiration + ): + mexpiration = expiration + if is_udp: + timeout = _timeout(mexpiration) + (rwire, _) = await udp_sock.recvfrom(65535, timeout) + else: + ldata = await _read_exactly(tcp_sock, 2, mexpiration) + (l,) = struct.unpack("!H", ldata) + rwire = await _read_exactly(tcp_sock, l, mexpiration) + r = dns.message.from_wire( + rwire, + keyring=query.keyring, + request_mac=query.mac, + xfr=True, + origin=origin, + tsig_ctx=tsig_ctx, + multi=(not is_udp), + one_rr_per_rrset=is_ixfr, + ) + done = inbound.process_message(r) + yield r + tsig_ctx = r.tsig_ctx + if query.keyring and not r.had_tsig: + raise dns.exception.FormError("missing TSIG") + + +async def inbound_xfr( + where: str, + txn_manager: dns.transaction.TransactionManager, + query: Optional[dns.message.Message] = None, + port: int = 53, + timeout: Optional[float] = None, + lifetime: Optional[float] = None, + source: Optional[str] = None, + source_port: int = 0, + udp_mode: UDPMode = UDPMode.NEVER, + backend: Optional[dns.asyncbackend.Backend] = None, +) -> None: + """Conduct an inbound transfer and apply it via a transaction from the + txn_manager. + + *backend*, a ``dns.asyncbackend.Backend``, or ``None``. If ``None``, + the default, then dnspython will use the default backend. + + See :py:func:`dns.query.inbound_xfr()` for the documentation of + the other parameters, exceptions, and return type of this method. + """ + if query is None: + (query, serial) = dns.xfr.make_query(txn_manager) + else: + serial = dns.xfr.extract_serial_from_query(query) + af = dns.inet.af_for_address(where) + stuple = _source_tuple(af, source, source_port) + dtuple = (where, port) + if not backend: + backend = dns.asyncbackend.get_default_backend() + (_, expiration) = _compute_times(lifetime) + if query.question[0].rdtype == dns.rdatatype.IXFR and udp_mode != UDPMode.NEVER: + s = await backend.make_socket( + af, socket.SOCK_DGRAM, 0, stuple, dtuple, _timeout(expiration) + ) + async with s: + try: + async for _ in _inbound_xfr( + txn_manager, s, query, serial, timeout, expiration + ): + pass + return + except dns.xfr.UseTCP: + if udp_mode == UDPMode.ONLY: + raise + + s = await backend.make_socket( + af, socket.SOCK_STREAM, 0, stuple, dtuple, _timeout(expiration) + ) + async with s: + async for _ in _inbound_xfr(txn_manager, s, query, serial, timeout, expiration): + pass diff --git a/.venv/lib/python3.11/site-packages/dns/asyncresolver.py b/.venv/lib/python3.11/site-packages/dns/asyncresolver.py new file mode 100644 index 0000000..8f5e062 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/asyncresolver.py @@ -0,0 +1,475 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2003-2017 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +"""Asynchronous DNS stub resolver.""" + +import socket +import time +from typing import Any, Dict, List, Optional, Union + +import dns._ddr +import dns.asyncbackend +import dns.asyncquery +import dns.exception +import dns.name +import dns.query +import dns.rdataclass +import dns.rdatatype +import dns.resolver # lgtm[py/import-and-import-from] + +# import some resolver symbols for brevity +from dns.resolver import NXDOMAIN, NoAnswer, NoRootSOA, NotAbsolute + +# for indentation purposes below +_udp = dns.asyncquery.udp +_tcp = dns.asyncquery.tcp + + +class Resolver(dns.resolver.BaseResolver): + """Asynchronous DNS stub resolver.""" + + async def resolve( + self, + qname: Union[dns.name.Name, str], + rdtype: Union[dns.rdatatype.RdataType, str] = dns.rdatatype.A, + rdclass: Union[dns.rdataclass.RdataClass, str] = dns.rdataclass.IN, + tcp: bool = False, + source: Optional[str] = None, + raise_on_no_answer: bool = True, + source_port: int = 0, + lifetime: Optional[float] = None, + search: Optional[bool] = None, + backend: Optional[dns.asyncbackend.Backend] = None, + ) -> dns.resolver.Answer: + """Query nameservers asynchronously to find the answer to the question. + + *backend*, a ``dns.asyncbackend.Backend``, or ``None``. If ``None``, + the default, then dnspython will use the default backend. + + See :py:func:`dns.resolver.Resolver.resolve()` for the + documentation of the other parameters, exceptions, and return + type of this method. + """ + + resolution = dns.resolver._Resolution( + self, qname, rdtype, rdclass, tcp, raise_on_no_answer, search + ) + if not backend: + backend = dns.asyncbackend.get_default_backend() + start = time.time() + while True: + (request, answer) = resolution.next_request() + # Note we need to say "if answer is not None" and not just + # "if answer" because answer implements __len__, and python + # will call that. We want to return if we have an answer + # object, including in cases where its length is 0. + if answer is not None: + # cache hit! + return answer + assert request is not None # needed for type checking + done = False + while not done: + (nameserver, tcp, backoff) = resolution.next_nameserver() + if backoff: + await backend.sleep(backoff) + timeout = self._compute_timeout(start, lifetime, resolution.errors) + try: + response = await nameserver.async_query( + request, + timeout=timeout, + source=source, + source_port=source_port, + max_size=tcp, + backend=backend, + ) + except Exception as ex: + (_, done) = resolution.query_result(None, ex) + continue + (answer, done) = resolution.query_result(response, None) + # Note we need to say "if answer is not None" and not just + # "if answer" because answer implements __len__, and python + # will call that. We want to return if we have an answer + # object, including in cases where its length is 0. + if answer is not None: + return answer + + async def resolve_address( + self, ipaddr: str, *args: Any, **kwargs: Any + ) -> dns.resolver.Answer: + """Use an asynchronous resolver to run a reverse query for PTR + records. + + This utilizes the resolve() method to perform a PTR lookup on the + specified IP address. + + *ipaddr*, a ``str``, the IPv4 or IPv6 address you want to get + the PTR record for. + + All other arguments that can be passed to the resolve() function + except for rdtype and rdclass are also supported by this + function. + + """ + # We make a modified kwargs for type checking happiness, as otherwise + # we get a legit warning about possibly having rdtype and rdclass + # in the kwargs more than once. + modified_kwargs: Dict[str, Any] = {} + modified_kwargs.update(kwargs) + modified_kwargs["rdtype"] = dns.rdatatype.PTR + modified_kwargs["rdclass"] = dns.rdataclass.IN + return await self.resolve( + dns.reversename.from_address(ipaddr), *args, **modified_kwargs + ) + + async def resolve_name( + self, + name: Union[dns.name.Name, str], + family: int = socket.AF_UNSPEC, + **kwargs: Any, + ) -> dns.resolver.HostAnswers: + """Use an asynchronous resolver to query for address records. + + This utilizes the resolve() method to perform A and/or AAAA lookups on + the specified name. + + *qname*, a ``dns.name.Name`` or ``str``, the name to resolve. + + *family*, an ``int``, the address family. If socket.AF_UNSPEC + (the default), both A and AAAA records will be retrieved. + + All other arguments that can be passed to the resolve() function + except for rdtype and rdclass are also supported by this + function. + """ + # We make a modified kwargs for type checking happiness, as otherwise + # we get a legit warning about possibly having rdtype and rdclass + # in the kwargs more than once. + modified_kwargs: Dict[str, Any] = {} + modified_kwargs.update(kwargs) + modified_kwargs.pop("rdtype", None) + modified_kwargs["rdclass"] = dns.rdataclass.IN + + if family == socket.AF_INET: + v4 = await self.resolve(name, dns.rdatatype.A, **modified_kwargs) + return dns.resolver.HostAnswers.make(v4=v4) + elif family == socket.AF_INET6: + v6 = await self.resolve(name, dns.rdatatype.AAAA, **modified_kwargs) + return dns.resolver.HostAnswers.make(v6=v6) + elif family != socket.AF_UNSPEC: + raise NotImplementedError(f"unknown address family {family}") + + raise_on_no_answer = modified_kwargs.pop("raise_on_no_answer", True) + lifetime = modified_kwargs.pop("lifetime", None) + start = time.time() + v6 = await self.resolve( + name, + dns.rdatatype.AAAA, + raise_on_no_answer=False, + lifetime=self._compute_timeout(start, lifetime), + **modified_kwargs, + ) + # Note that setting name ensures we query the same name + # for A as we did for AAAA. (This is just in case search lists + # are active by default in the resolver configuration and + # we might be talking to a server that says NXDOMAIN when it + # wants to say NOERROR no data. + name = v6.qname + v4 = await self.resolve( + name, + dns.rdatatype.A, + raise_on_no_answer=False, + lifetime=self._compute_timeout(start, lifetime), + **modified_kwargs, + ) + answers = dns.resolver.HostAnswers.make( + v6=v6, v4=v4, add_empty=not raise_on_no_answer + ) + if not answers: + raise NoAnswer(response=v6.response) + return answers + + # pylint: disable=redefined-outer-name + + async def canonical_name(self, name: Union[dns.name.Name, str]) -> dns.name.Name: + """Determine the canonical name of *name*. + + The canonical name is the name the resolver uses for queries + after all CNAME and DNAME renamings have been applied. + + *name*, a ``dns.name.Name`` or ``str``, the query name. + + This method can raise any exception that ``resolve()`` can + raise, other than ``dns.resolver.NoAnswer`` and + ``dns.resolver.NXDOMAIN``. + + Returns a ``dns.name.Name``. + """ + try: + answer = await self.resolve(name, raise_on_no_answer=False) + canonical_name = answer.canonical_name + except dns.resolver.NXDOMAIN as e: + canonical_name = e.canonical_name + return canonical_name + + async def try_ddr(self, lifetime: float = 5.0) -> None: + """Try to update the resolver's nameservers using Discovery of Designated + Resolvers (DDR). If successful, the resolver will subsequently use + DNS-over-HTTPS or DNS-over-TLS for future queries. + + *lifetime*, a float, is the maximum time to spend attempting DDR. The default + is 5 seconds. + + If the SVCB query is successful and results in a non-empty list of nameservers, + then the resolver's nameservers are set to the returned servers in priority + order. + + The current implementation does not use any address hints from the SVCB record, + nor does it resolve addresses for the SCVB target name, rather it assumes that + the bootstrap nameserver will always be one of the addresses and uses it. + A future revision to the code may offer fuller support. The code verifies that + the bootstrap nameserver is in the Subject Alternative Name field of the + TLS certficate. + """ + try: + expiration = time.time() + lifetime + answer = await self.resolve( + dns._ddr._local_resolver_name, "svcb", lifetime=lifetime + ) + timeout = dns.query._remaining(expiration) + nameservers = await dns._ddr._get_nameservers_async(answer, timeout) + if len(nameservers) > 0: + self.nameservers = nameservers + except Exception: + pass + + +default_resolver = None + + +def get_default_resolver() -> Resolver: + """Get the default asynchronous resolver, initializing it if necessary.""" + if default_resolver is None: + reset_default_resolver() + assert default_resolver is not None + return default_resolver + + +def reset_default_resolver() -> None: + """Re-initialize default asynchronous resolver. + + Note that the resolver configuration (i.e. /etc/resolv.conf on UNIX + systems) will be re-read immediately. + """ + + global default_resolver + default_resolver = Resolver() + + +async def resolve( + qname: Union[dns.name.Name, str], + rdtype: Union[dns.rdatatype.RdataType, str] = dns.rdatatype.A, + rdclass: Union[dns.rdataclass.RdataClass, str] = dns.rdataclass.IN, + tcp: bool = False, + source: Optional[str] = None, + raise_on_no_answer: bool = True, + source_port: int = 0, + lifetime: Optional[float] = None, + search: Optional[bool] = None, + backend: Optional[dns.asyncbackend.Backend] = None, +) -> dns.resolver.Answer: + """Query nameservers asynchronously to find the answer to the question. + + This is a convenience function that uses the default resolver + object to make the query. + + See :py:func:`dns.asyncresolver.Resolver.resolve` for more + information on the parameters. + """ + + return await get_default_resolver().resolve( + qname, + rdtype, + rdclass, + tcp, + source, + raise_on_no_answer, + source_port, + lifetime, + search, + backend, + ) + + +async def resolve_address( + ipaddr: str, *args: Any, **kwargs: Any +) -> dns.resolver.Answer: + """Use a resolver to run a reverse query for PTR records. + + See :py:func:`dns.asyncresolver.Resolver.resolve_address` for more + information on the parameters. + """ + + return await get_default_resolver().resolve_address(ipaddr, *args, **kwargs) + + +async def resolve_name( + name: Union[dns.name.Name, str], family: int = socket.AF_UNSPEC, **kwargs: Any +) -> dns.resolver.HostAnswers: + """Use a resolver to asynchronously query for address records. + + See :py:func:`dns.asyncresolver.Resolver.resolve_name` for more + information on the parameters. + """ + + return await get_default_resolver().resolve_name(name, family, **kwargs) + + +async def canonical_name(name: Union[dns.name.Name, str]) -> dns.name.Name: + """Determine the canonical name of *name*. + + See :py:func:`dns.resolver.Resolver.canonical_name` for more + information on the parameters and possible exceptions. + """ + + return await get_default_resolver().canonical_name(name) + + +async def try_ddr(timeout: float = 5.0) -> None: + """Try to update the default resolver's nameservers using Discovery of Designated + Resolvers (DDR). If successful, the resolver will subsequently use + DNS-over-HTTPS or DNS-over-TLS for future queries. + + See :py:func:`dns.resolver.Resolver.try_ddr` for more information. + """ + return await get_default_resolver().try_ddr(timeout) + + +async def zone_for_name( + name: Union[dns.name.Name, str], + rdclass: dns.rdataclass.RdataClass = dns.rdataclass.IN, + tcp: bool = False, + resolver: Optional[Resolver] = None, + backend: Optional[dns.asyncbackend.Backend] = None, +) -> dns.name.Name: + """Find the name of the zone which contains the specified name. + + See :py:func:`dns.resolver.Resolver.zone_for_name` for more + information on the parameters and possible exceptions. + """ + + if isinstance(name, str): + name = dns.name.from_text(name, dns.name.root) + if resolver is None: + resolver = get_default_resolver() + if not name.is_absolute(): + raise NotAbsolute(name) + while True: + try: + answer = await resolver.resolve( + name, dns.rdatatype.SOA, rdclass, tcp, backend=backend + ) + assert answer.rrset is not None + if answer.rrset.name == name: + return name + # otherwise we were CNAMEd or DNAMEd and need to look higher + except (NXDOMAIN, NoAnswer): + pass + try: + name = name.parent() + except dns.name.NoParent: # pragma: no cover + raise NoRootSOA + + +async def make_resolver_at( + where: Union[dns.name.Name, str], + port: int = 53, + family: int = socket.AF_UNSPEC, + resolver: Optional[Resolver] = None, +) -> Resolver: + """Make a stub resolver using the specified destination as the full resolver. + + *where*, a ``dns.name.Name`` or ``str`` the domain name or IP address of the + full resolver. + + *port*, an ``int``, the port to use. If not specified, the default is 53. + + *family*, an ``int``, the address family to use. This parameter is used if + *where* is not an address. The default is ``socket.AF_UNSPEC`` in which case + the first address returned by ``resolve_name()`` will be used, otherwise the + first address of the specified family will be used. + + *resolver*, a ``dns.asyncresolver.Resolver`` or ``None``, the resolver to use for + resolution of hostnames. If not specified, the default resolver will be used. + + Returns a ``dns.resolver.Resolver`` or raises an exception. + """ + if resolver is None: + resolver = get_default_resolver() + nameservers: List[Union[str, dns.nameserver.Nameserver]] = [] + if isinstance(where, str) and dns.inet.is_address(where): + nameservers.append(dns.nameserver.Do53Nameserver(where, port)) + else: + answers = await resolver.resolve_name(where, family) + for address in answers.addresses(): + nameservers.append(dns.nameserver.Do53Nameserver(address, port)) + res = dns.asyncresolver.Resolver(configure=False) + res.nameservers = nameservers + return res + + +async def resolve_at( + where: Union[dns.name.Name, str], + qname: Union[dns.name.Name, str], + rdtype: Union[dns.rdatatype.RdataType, str] = dns.rdatatype.A, + rdclass: Union[dns.rdataclass.RdataClass, str] = dns.rdataclass.IN, + tcp: bool = False, + source: Optional[str] = None, + raise_on_no_answer: bool = True, + source_port: int = 0, + lifetime: Optional[float] = None, + search: Optional[bool] = None, + backend: Optional[dns.asyncbackend.Backend] = None, + port: int = 53, + family: int = socket.AF_UNSPEC, + resolver: Optional[Resolver] = None, +) -> dns.resolver.Answer: + """Query nameservers to find the answer to the question. + + This is a convenience function that calls ``dns.asyncresolver.make_resolver_at()`` + to make a resolver, and then uses it to resolve the query. + + See ``dns.asyncresolver.Resolver.resolve`` for more information on the resolution + parameters, and ``dns.asyncresolver.make_resolver_at`` for information about the + resolver parameters *where*, *port*, *family*, and *resolver*. + + If making more than one query, it is more efficient to call + ``dns.asyncresolver.make_resolver_at()`` and then use that resolver for the queries + instead of calling ``resolve_at()`` multiple times. + """ + res = await make_resolver_at(where, port, family, resolver) + return await res.resolve( + qname, + rdtype, + rdclass, + tcp, + source, + raise_on_no_answer, + source_port, + lifetime, + search, + backend, + ) diff --git a/.venv/lib/python3.11/site-packages/dns/dnssec.py b/.venv/lib/python3.11/site-packages/dns/dnssec.py new file mode 100644 index 0000000..b69d0a1 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/dnssec.py @@ -0,0 +1,1247 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2003-2017 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +"""Common DNSSEC-related functions and constants.""" + + +import base64 +import contextlib +import functools +import hashlib +import struct +import time +from datetime import datetime +from typing import Callable, Dict, List, Optional, Set, Tuple, Union, cast + +import dns._features +import dns.exception +import dns.name +import dns.node +import dns.rdata +import dns.rdataclass +import dns.rdataset +import dns.rdatatype +import dns.rrset +import dns.transaction +import dns.zone +from dns.dnssectypes import Algorithm, DSDigest, NSEC3Hash +from dns.exception import ( # pylint: disable=W0611 + AlgorithmKeyMismatch, + DeniedByPolicy, + UnsupportedAlgorithm, + ValidationFailure, +) +from dns.rdtypes.ANY.CDNSKEY import CDNSKEY +from dns.rdtypes.ANY.CDS import CDS +from dns.rdtypes.ANY.DNSKEY import DNSKEY +from dns.rdtypes.ANY.DS import DS +from dns.rdtypes.ANY.NSEC import NSEC, Bitmap +from dns.rdtypes.ANY.NSEC3PARAM import NSEC3PARAM +from dns.rdtypes.ANY.RRSIG import RRSIG, sigtime_to_posixtime +from dns.rdtypes.dnskeybase import Flag + +PublicKey = Union[ + "GenericPublicKey", + "rsa.RSAPublicKey", + "ec.EllipticCurvePublicKey", + "ed25519.Ed25519PublicKey", + "ed448.Ed448PublicKey", +] + +PrivateKey = Union[ + "GenericPrivateKey", + "rsa.RSAPrivateKey", + "ec.EllipticCurvePrivateKey", + "ed25519.Ed25519PrivateKey", + "ed448.Ed448PrivateKey", +] + +RRsetSigner = Callable[[dns.transaction.Transaction, dns.rrset.RRset], None] + + +def algorithm_from_text(text: str) -> Algorithm: + """Convert text into a DNSSEC algorithm value. + + *text*, a ``str``, the text to convert to into an algorithm value. + + Returns an ``int``. + """ + + return Algorithm.from_text(text) + + +def algorithm_to_text(value: Union[Algorithm, int]) -> str: + """Convert a DNSSEC algorithm value to text + + *value*, a ``dns.dnssec.Algorithm``. + + Returns a ``str``, the name of a DNSSEC algorithm. + """ + + return Algorithm.to_text(value) + + +def to_timestamp(value: Union[datetime, str, float, int]) -> int: + """Convert various format to a timestamp""" + if isinstance(value, datetime): + return int(value.timestamp()) + elif isinstance(value, str): + return sigtime_to_posixtime(value) + elif isinstance(value, float): + return int(value) + elif isinstance(value, int): + return value + else: + raise TypeError("Unsupported timestamp type") + + +def key_id(key: Union[DNSKEY, CDNSKEY]) -> int: + """Return the key id (a 16-bit number) for the specified key. + + *key*, a ``dns.rdtypes.ANY.DNSKEY.DNSKEY`` + + Returns an ``int`` between 0 and 65535 + """ + + rdata = key.to_wire() + assert rdata is not None # for mypy + if key.algorithm == Algorithm.RSAMD5: + return (rdata[-3] << 8) + rdata[-2] + else: + total = 0 + for i in range(len(rdata) // 2): + total += (rdata[2 * i] << 8) + rdata[2 * i + 1] + if len(rdata) % 2 != 0: + total += rdata[len(rdata) - 1] << 8 + total += (total >> 16) & 0xFFFF + return total & 0xFFFF + + +class Policy: + def __init__(self): + pass + + def ok_to_sign(self, _: DNSKEY) -> bool: # pragma: no cover + return False + + def ok_to_validate(self, _: DNSKEY) -> bool: # pragma: no cover + return False + + def ok_to_create_ds(self, _: DSDigest) -> bool: # pragma: no cover + return False + + def ok_to_validate_ds(self, _: DSDigest) -> bool: # pragma: no cover + return False + + +class SimpleDeny(Policy): + def __init__(self, deny_sign, deny_validate, deny_create_ds, deny_validate_ds): + super().__init__() + self._deny_sign = deny_sign + self._deny_validate = deny_validate + self._deny_create_ds = deny_create_ds + self._deny_validate_ds = deny_validate_ds + + def ok_to_sign(self, key: DNSKEY) -> bool: + return key.algorithm not in self._deny_sign + + def ok_to_validate(self, key: DNSKEY) -> bool: + return key.algorithm not in self._deny_validate + + def ok_to_create_ds(self, algorithm: DSDigest) -> bool: + return algorithm not in self._deny_create_ds + + def ok_to_validate_ds(self, algorithm: DSDigest) -> bool: + return algorithm not in self._deny_validate_ds + + +rfc_8624_policy = SimpleDeny( + {Algorithm.RSAMD5, Algorithm.DSA, Algorithm.DSANSEC3SHA1, Algorithm.ECCGOST}, + {Algorithm.RSAMD5, Algorithm.DSA, Algorithm.DSANSEC3SHA1}, + {DSDigest.NULL, DSDigest.SHA1, DSDigest.GOST}, + {DSDigest.NULL}, +) + +allow_all_policy = SimpleDeny(set(), set(), set(), set()) + + +default_policy = rfc_8624_policy + + +def make_ds( + name: Union[dns.name.Name, str], + key: dns.rdata.Rdata, + algorithm: Union[DSDigest, str], + origin: Optional[dns.name.Name] = None, + policy: Optional[Policy] = None, + validating: bool = False, +) -> DS: + """Create a DS record for a DNSSEC key. + + *name*, a ``dns.name.Name`` or ``str``, the owner name of the DS record. + + *key*, a ``dns.rdtypes.ANY.DNSKEY.DNSKEY`` or ``dns.rdtypes.ANY.DNSKEY.CDNSKEY``, + the key the DS is about. + + *algorithm*, a ``str`` or ``int`` specifying the hash algorithm. + The currently supported hashes are "SHA1", "SHA256", and "SHA384". Case + does not matter for these strings. + + *origin*, a ``dns.name.Name`` or ``None``. If *key* is a relative name, + then it will be made absolute using the specified origin. + + *policy*, a ``dns.dnssec.Policy`` or ``None``. If ``None``, the default policy, + ``dns.dnssec.default_policy`` is used; this policy defaults to that of RFC 8624. + + *validating*, a ``bool``. If ``True``, then policy is checked in + validating mode, i.e. "Is it ok to validate using this digest algorithm?". + Otherwise the policy is checked in creating mode, i.e. "Is it ok to create a DS with + this digest algorithm?". + + Raises ``UnsupportedAlgorithm`` if the algorithm is unknown. + + Raises ``DeniedByPolicy`` if the algorithm is denied by policy. + + Returns a ``dns.rdtypes.ANY.DS.DS`` + """ + + if policy is None: + policy = default_policy + try: + if isinstance(algorithm, str): + algorithm = DSDigest[algorithm.upper()] + except Exception: + raise UnsupportedAlgorithm(f'unsupported algorithm "{algorithm}"') + if validating: + check = policy.ok_to_validate_ds + else: + check = policy.ok_to_create_ds + if not check(algorithm): + raise DeniedByPolicy + if not isinstance(key, (DNSKEY, CDNSKEY)): + raise ValueError("key is not a DNSKEY/CDNSKEY") + if algorithm == DSDigest.SHA1: + dshash = hashlib.sha1() + elif algorithm == DSDigest.SHA256: + dshash = hashlib.sha256() + elif algorithm == DSDigest.SHA384: + dshash = hashlib.sha384() + else: + raise UnsupportedAlgorithm(f'unsupported algorithm "{algorithm}"') + + if isinstance(name, str): + name = dns.name.from_text(name, origin) + wire = name.canonicalize().to_wire() + kwire = key.to_wire(origin=origin) + assert wire is not None and kwire is not None # for mypy + dshash.update(wire) + dshash.update(kwire) + digest = dshash.digest() + + dsrdata = struct.pack("!HBB", key_id(key), key.algorithm, algorithm) + digest + ds = dns.rdata.from_wire( + dns.rdataclass.IN, dns.rdatatype.DS, dsrdata, 0, len(dsrdata) + ) + return cast(DS, ds) + + +def make_cds( + name: Union[dns.name.Name, str], + key: dns.rdata.Rdata, + algorithm: Union[DSDigest, str], + origin: Optional[dns.name.Name] = None, +) -> CDS: + """Create a CDS record for a DNSSEC key. + + *name*, a ``dns.name.Name`` or ``str``, the owner name of the DS record. + + *key*, a ``dns.rdtypes.ANY.DNSKEY.DNSKEY`` or ``dns.rdtypes.ANY.DNSKEY.CDNSKEY``, + the key the DS is about. + + *algorithm*, a ``str`` or ``int`` specifying the hash algorithm. + The currently supported hashes are "SHA1", "SHA256", and "SHA384". Case + does not matter for these strings. + + *origin*, a ``dns.name.Name`` or ``None``. If *key* is a relative name, + then it will be made absolute using the specified origin. + + Raises ``UnsupportedAlgorithm`` if the algorithm is unknown. + + Returns a ``dns.rdtypes.ANY.DS.CDS`` + """ + + ds = make_ds(name, key, algorithm, origin) + return CDS( + rdclass=ds.rdclass, + rdtype=dns.rdatatype.CDS, + key_tag=ds.key_tag, + algorithm=ds.algorithm, + digest_type=ds.digest_type, + digest=ds.digest, + ) + + +def _find_candidate_keys( + keys: Dict[dns.name.Name, Union[dns.rdataset.Rdataset, dns.node.Node]], rrsig: RRSIG +) -> Optional[List[DNSKEY]]: + value = keys.get(rrsig.signer) + if isinstance(value, dns.node.Node): + rdataset = value.get_rdataset(dns.rdataclass.IN, dns.rdatatype.DNSKEY) + else: + rdataset = value + if rdataset is None: + return None + return [ + cast(DNSKEY, rd) + for rd in rdataset + if rd.algorithm == rrsig.algorithm + and key_id(rd) == rrsig.key_tag + and (rd.flags & Flag.ZONE) == Flag.ZONE # RFC 4034 2.1.1 + and rd.protocol == 3 # RFC 4034 2.1.2 + ] + + +def _get_rrname_rdataset( + rrset: Union[dns.rrset.RRset, Tuple[dns.name.Name, dns.rdataset.Rdataset]], +) -> Tuple[dns.name.Name, dns.rdataset.Rdataset]: + if isinstance(rrset, tuple): + return rrset[0], rrset[1] + else: + return rrset.name, rrset + + +def _validate_signature(sig: bytes, data: bytes, key: DNSKEY) -> None: + # pylint: disable=possibly-used-before-assignment + public_cls = get_algorithm_cls_from_dnskey(key).public_cls + try: + public_key = public_cls.from_dnskey(key) + except ValueError: + raise ValidationFailure("invalid public key") + public_key.verify(sig, data) + + +def _validate_rrsig( + rrset: Union[dns.rrset.RRset, Tuple[dns.name.Name, dns.rdataset.Rdataset]], + rrsig: RRSIG, + keys: Dict[dns.name.Name, Union[dns.node.Node, dns.rdataset.Rdataset]], + origin: Optional[dns.name.Name] = None, + now: Optional[float] = None, + policy: Optional[Policy] = None, +) -> None: + """Validate an RRset against a single signature rdata, throwing an + exception if validation is not successful. + + *rrset*, the RRset to validate. This can be a + ``dns.rrset.RRset`` or a (``dns.name.Name``, ``dns.rdataset.Rdataset``) + tuple. + + *rrsig*, a ``dns.rdata.Rdata``, the signature to validate. + + *keys*, the key dictionary, used to find the DNSKEY associated + with a given name. The dictionary is keyed by a + ``dns.name.Name``, and has ``dns.node.Node`` or + ``dns.rdataset.Rdataset`` values. + + *origin*, a ``dns.name.Name`` or ``None``, the origin to use for relative + names. + + *now*, a ``float`` or ``None``, the time, in seconds since the epoch, to + use as the current time when validating. If ``None``, the actual current + time is used. + + *policy*, a ``dns.dnssec.Policy`` or ``None``. If ``None``, the default policy, + ``dns.dnssec.default_policy`` is used; this policy defaults to that of RFC 8624. + + Raises ``ValidationFailure`` if the signature is expired, not yet valid, + the public key is invalid, the algorithm is unknown, the verification + fails, etc. + + Raises ``UnsupportedAlgorithm`` if the algorithm is recognized by + dnspython but not implemented. + """ + + if policy is None: + policy = default_policy + + candidate_keys = _find_candidate_keys(keys, rrsig) + if candidate_keys is None: + raise ValidationFailure("unknown key") + + if now is None: + now = time.time() + if rrsig.expiration < now: + raise ValidationFailure("expired") + if rrsig.inception > now: + raise ValidationFailure("not yet valid") + + data = _make_rrsig_signature_data(rrset, rrsig, origin) + + # pylint: disable=possibly-used-before-assignment + for candidate_key in candidate_keys: + if not policy.ok_to_validate(candidate_key): + continue + try: + _validate_signature(rrsig.signature, data, candidate_key) + return + except (InvalidSignature, ValidationFailure): + # this happens on an individual validation failure + continue + # nothing verified -- raise failure: + raise ValidationFailure("verify failure") + + +def _validate( + rrset: Union[dns.rrset.RRset, Tuple[dns.name.Name, dns.rdataset.Rdataset]], + rrsigset: Union[dns.rrset.RRset, Tuple[dns.name.Name, dns.rdataset.Rdataset]], + keys: Dict[dns.name.Name, Union[dns.node.Node, dns.rdataset.Rdataset]], + origin: Optional[dns.name.Name] = None, + now: Optional[float] = None, + policy: Optional[Policy] = None, +) -> None: + """Validate an RRset against a signature RRset, throwing an exception + if none of the signatures validate. + + *rrset*, the RRset to validate. This can be a + ``dns.rrset.RRset`` or a (``dns.name.Name``, ``dns.rdataset.Rdataset``) + tuple. + + *rrsigset*, the signature RRset. This can be a + ``dns.rrset.RRset`` or a (``dns.name.Name``, ``dns.rdataset.Rdataset``) + tuple. + + *keys*, the key dictionary, used to find the DNSKEY associated + with a given name. The dictionary is keyed by a + ``dns.name.Name``, and has ``dns.node.Node`` or + ``dns.rdataset.Rdataset`` values. + + *origin*, a ``dns.name.Name``, the origin to use for relative names; + defaults to None. + + *now*, an ``int`` or ``None``, the time, in seconds since the epoch, to + use as the current time when validating. If ``None``, the actual current + time is used. + + *policy*, a ``dns.dnssec.Policy`` or ``None``. If ``None``, the default policy, + ``dns.dnssec.default_policy`` is used; this policy defaults to that of RFC 8624. + + Raises ``ValidationFailure`` if the signature is expired, not yet valid, + the public key is invalid, the algorithm is unknown, the verification + fails, etc. + """ + + if policy is None: + policy = default_policy + + if isinstance(origin, str): + origin = dns.name.from_text(origin, dns.name.root) + + if isinstance(rrset, tuple): + rrname = rrset[0] + else: + rrname = rrset.name + + if isinstance(rrsigset, tuple): + rrsigname = rrsigset[0] + rrsigrdataset = rrsigset[1] + else: + rrsigname = rrsigset.name + rrsigrdataset = rrsigset + + rrname = rrname.choose_relativity(origin) + rrsigname = rrsigname.choose_relativity(origin) + if rrname != rrsigname: + raise ValidationFailure("owner names do not match") + + for rrsig in rrsigrdataset: + if not isinstance(rrsig, RRSIG): + raise ValidationFailure("expected an RRSIG") + try: + _validate_rrsig(rrset, rrsig, keys, origin, now, policy) + return + except (ValidationFailure, UnsupportedAlgorithm): + pass + raise ValidationFailure("no RRSIGs validated") + + +def _sign( + rrset: Union[dns.rrset.RRset, Tuple[dns.name.Name, dns.rdataset.Rdataset]], + private_key: PrivateKey, + signer: dns.name.Name, + dnskey: DNSKEY, + inception: Optional[Union[datetime, str, int, float]] = None, + expiration: Optional[Union[datetime, str, int, float]] = None, + lifetime: Optional[int] = None, + verify: bool = False, + policy: Optional[Policy] = None, + origin: Optional[dns.name.Name] = None, + deterministic: bool = True, +) -> RRSIG: + """Sign RRset using private key. + + *rrset*, the RRset to validate. This can be a + ``dns.rrset.RRset`` or a (``dns.name.Name``, ``dns.rdataset.Rdataset``) + tuple. + + *private_key*, the private key to use for signing, a + ``cryptography.hazmat.primitives.asymmetric`` private key class applicable + for DNSSEC. + + *signer*, a ``dns.name.Name``, the Signer's name. + + *dnskey*, a ``DNSKEY`` matching ``private_key``. + + *inception*, a ``datetime``, ``str``, ``int``, ``float`` or ``None``, the + signature inception time. If ``None``, the current time is used. If a ``str``, the + format is "YYYYMMDDHHMMSS" or alternatively the number of seconds since the UNIX + epoch in text form; this is the same the RRSIG rdata's text form. + Values of type `int` or `float` are interpreted as seconds since the UNIX epoch. + + *expiration*, a ``datetime``, ``str``, ``int``, ``float`` or ``None``, the signature + expiration time. If ``None``, the expiration time will be the inception time plus + the value of the *lifetime* parameter. See the description of *inception* above + for how the various parameter types are interpreted. + + *lifetime*, an ``int`` or ``None``, the signature lifetime in seconds. This + parameter is only meaningful if *expiration* is ``None``. + + *verify*, a ``bool``. If set to ``True``, the signer will verify signatures + after they are created; the default is ``False``. + + *policy*, a ``dns.dnssec.Policy`` or ``None``. If ``None``, the default policy, + ``dns.dnssec.default_policy`` is used; this policy defaults to that of RFC 8624. + + *origin*, a ``dns.name.Name`` or ``None``. If ``None``, the default, then all + names in the rrset (including its owner name) must be absolute; otherwise the + specified origin will be used to make names absolute when signing. + + *deterministic*, a ``bool``. If ``True``, the default, use deterministic + (reproducible) signatures when supported by the algorithm used for signing. + Currently, this only affects ECDSA. + + Raises ``DeniedByPolicy`` if the signature is denied by policy. + """ + + if policy is None: + policy = default_policy + if not policy.ok_to_sign(dnskey): + raise DeniedByPolicy + + if isinstance(rrset, tuple): + rdclass = rrset[1].rdclass + rdtype = rrset[1].rdtype + rrname = rrset[0] + original_ttl = rrset[1].ttl + else: + rdclass = rrset.rdclass + rdtype = rrset.rdtype + rrname = rrset.name + original_ttl = rrset.ttl + + if inception is not None: + rrsig_inception = to_timestamp(inception) + else: + rrsig_inception = int(time.time()) + + if expiration is not None: + rrsig_expiration = to_timestamp(expiration) + elif lifetime is not None: + rrsig_expiration = rrsig_inception + lifetime + else: + raise ValueError("expiration or lifetime must be specified") + + # Derelativize now because we need a correct labels length for the + # rrsig_template. + if origin is not None: + rrname = rrname.derelativize(origin) + labels = len(rrname) - 1 + + # Adjust labels appropriately for wildcards. + if rrname.is_wild(): + labels -= 1 + + rrsig_template = RRSIG( + rdclass=rdclass, + rdtype=dns.rdatatype.RRSIG, + type_covered=rdtype, + algorithm=dnskey.algorithm, + labels=labels, + original_ttl=original_ttl, + expiration=rrsig_expiration, + inception=rrsig_inception, + key_tag=key_id(dnskey), + signer=signer, + signature=b"", + ) + + data = dns.dnssec._make_rrsig_signature_data(rrset, rrsig_template, origin) + + # pylint: disable=possibly-used-before-assignment + if isinstance(private_key, GenericPrivateKey): + signing_key = private_key + else: + try: + private_cls = get_algorithm_cls_from_dnskey(dnskey) + signing_key = private_cls(key=private_key) + except UnsupportedAlgorithm: + raise TypeError("Unsupported key algorithm") + + signature = signing_key.sign(data, verify, deterministic) + + return cast(RRSIG, rrsig_template.replace(signature=signature)) + + +def _make_rrsig_signature_data( + rrset: Union[dns.rrset.RRset, Tuple[dns.name.Name, dns.rdataset.Rdataset]], + rrsig: RRSIG, + origin: Optional[dns.name.Name] = None, +) -> bytes: + """Create signature rdata. + + *rrset*, the RRset to sign/validate. This can be a + ``dns.rrset.RRset`` or a (``dns.name.Name``, ``dns.rdataset.Rdataset``) + tuple. + + *rrsig*, a ``dns.rdata.Rdata``, the signature to validate, or the + signature template used when signing. + + *origin*, a ``dns.name.Name`` or ``None``, the origin to use for relative + names. + + Raises ``UnsupportedAlgorithm`` if the algorithm is recognized by + dnspython but not implemented. + """ + + if isinstance(origin, str): + origin = dns.name.from_text(origin, dns.name.root) + + signer = rrsig.signer + if not signer.is_absolute(): + if origin is None: + raise ValidationFailure("relative RR name without an origin specified") + signer = signer.derelativize(origin) + + # For convenience, allow the rrset to be specified as a (name, + # rdataset) tuple as well as a proper rrset + rrname, rdataset = _get_rrname_rdataset(rrset) + + data = b"" + wire = rrsig.to_wire(origin=signer) + assert wire is not None # for mypy + data += wire[:18] + data += rrsig.signer.to_digestable(signer) + + # Derelativize the name before considering labels. + if not rrname.is_absolute(): + if origin is None: + raise ValidationFailure("relative RR name without an origin specified") + rrname = rrname.derelativize(origin) + + name_len = len(rrname) + if rrname.is_wild() and rrsig.labels != name_len - 2: + raise ValidationFailure("wild owner name has wrong label length") + if name_len - 1 < rrsig.labels: + raise ValidationFailure("owner name longer than RRSIG labels") + elif rrsig.labels < name_len - 1: + suffix = rrname.split(rrsig.labels + 1)[1] + rrname = dns.name.from_text("*", suffix) + rrnamebuf = rrname.to_digestable() + rrfixed = struct.pack("!HHI", rdataset.rdtype, rdataset.rdclass, rrsig.original_ttl) + rdatas = [rdata.to_digestable(origin) for rdata in rdataset] + for rdata in sorted(rdatas): + data += rrnamebuf + data += rrfixed + rrlen = struct.pack("!H", len(rdata)) + data += rrlen + data += rdata + + return data + + +def _make_dnskey( + public_key: PublicKey, + algorithm: Union[int, str], + flags: int = Flag.ZONE, + protocol: int = 3, +) -> DNSKEY: + """Convert a public key to DNSKEY Rdata + + *public_key*, a ``PublicKey`` (``GenericPublicKey`` or + ``cryptography.hazmat.primitives.asymmetric``) to convert. + + *algorithm*, a ``str`` or ``int`` specifying the DNSKEY algorithm. + + *flags*: DNSKEY flags field as an integer. + + *protocol*: DNSKEY protocol field as an integer. + + Raises ``ValueError`` if the specified key algorithm parameters are not + unsupported, ``TypeError`` if the key type is unsupported, + `UnsupportedAlgorithm` if the algorithm is unknown and + `AlgorithmKeyMismatch` if the algorithm does not match the key type. + + Return DNSKEY ``Rdata``. + """ + + algorithm = Algorithm.make(algorithm) + + # pylint: disable=possibly-used-before-assignment + if isinstance(public_key, GenericPublicKey): + return public_key.to_dnskey(flags=flags, protocol=protocol) + else: + public_cls = get_algorithm_cls(algorithm).public_cls + return public_cls(key=public_key).to_dnskey(flags=flags, protocol=protocol) + + +def _make_cdnskey( + public_key: PublicKey, + algorithm: Union[int, str], + flags: int = Flag.ZONE, + protocol: int = 3, +) -> CDNSKEY: + """Convert a public key to CDNSKEY Rdata + + *public_key*, the public key to convert, a + ``cryptography.hazmat.primitives.asymmetric`` public key class applicable + for DNSSEC. + + *algorithm*, a ``str`` or ``int`` specifying the DNSKEY algorithm. + + *flags*: DNSKEY flags field as an integer. + + *protocol*: DNSKEY protocol field as an integer. + + Raises ``ValueError`` if the specified key algorithm parameters are not + unsupported, ``TypeError`` if the key type is unsupported, + `UnsupportedAlgorithm` if the algorithm is unknown and + `AlgorithmKeyMismatch` if the algorithm does not match the key type. + + Return CDNSKEY ``Rdata``. + """ + + dnskey = _make_dnskey(public_key, algorithm, flags, protocol) + + return CDNSKEY( + rdclass=dnskey.rdclass, + rdtype=dns.rdatatype.CDNSKEY, + flags=dnskey.flags, + protocol=dnskey.protocol, + algorithm=dnskey.algorithm, + key=dnskey.key, + ) + + +def nsec3_hash( + domain: Union[dns.name.Name, str], + salt: Optional[Union[str, bytes]], + iterations: int, + algorithm: Union[int, str], +) -> str: + """ + Calculate the NSEC3 hash, according to + https://tools.ietf.org/html/rfc5155#section-5 + + *domain*, a ``dns.name.Name`` or ``str``, the name to hash. + + *salt*, a ``str``, ``bytes``, or ``None``, the hash salt. If a + string, it is decoded as a hex string. + + *iterations*, an ``int``, the number of iterations. + + *algorithm*, a ``str`` or ``int``, the hash algorithm. + The only defined algorithm is SHA1. + + Returns a ``str``, the encoded NSEC3 hash. + """ + + b32_conversion = str.maketrans( + "ABCDEFGHIJKLMNOPQRSTUVWXYZ234567", "0123456789ABCDEFGHIJKLMNOPQRSTUV" + ) + + try: + if isinstance(algorithm, str): + algorithm = NSEC3Hash[algorithm.upper()] + except Exception: + raise ValueError("Wrong hash algorithm (only SHA1 is supported)") + + if algorithm != NSEC3Hash.SHA1: + raise ValueError("Wrong hash algorithm (only SHA1 is supported)") + + if salt is None: + salt_encoded = b"" + elif isinstance(salt, str): + if len(salt) % 2 == 0: + salt_encoded = bytes.fromhex(salt) + else: + raise ValueError("Invalid salt length") + else: + salt_encoded = salt + + if not isinstance(domain, dns.name.Name): + domain = dns.name.from_text(domain) + domain_encoded = domain.canonicalize().to_wire() + assert domain_encoded is not None + + digest = hashlib.sha1(domain_encoded + salt_encoded).digest() + for _ in range(iterations): + digest = hashlib.sha1(digest + salt_encoded).digest() + + output = base64.b32encode(digest).decode("utf-8") + output = output.translate(b32_conversion) + + return output + + +def make_ds_rdataset( + rrset: Union[dns.rrset.RRset, Tuple[dns.name.Name, dns.rdataset.Rdataset]], + algorithms: Set[Union[DSDigest, str]], + origin: Optional[dns.name.Name] = None, +) -> dns.rdataset.Rdataset: + """Create a DS record from DNSKEY/CDNSKEY/CDS. + + *rrset*, the RRset to create DS Rdataset for. This can be a + ``dns.rrset.RRset`` or a (``dns.name.Name``, ``dns.rdataset.Rdataset``) + tuple. + + *algorithms*, a set of ``str`` or ``int`` specifying the hash algorithms. + The currently supported hashes are "SHA1", "SHA256", and "SHA384". Case + does not matter for these strings. If the RRset is a CDS, only digest + algorithms matching algorithms are accepted. + + *origin*, a ``dns.name.Name`` or ``None``. If `key` is a relative name, + then it will be made absolute using the specified origin. + + Raises ``UnsupportedAlgorithm`` if any of the algorithms are unknown and + ``ValueError`` if the given RRset is not usable. + + Returns a ``dns.rdataset.Rdataset`` + """ + + rrname, rdataset = _get_rrname_rdataset(rrset) + + if rdataset.rdtype not in ( + dns.rdatatype.DNSKEY, + dns.rdatatype.CDNSKEY, + dns.rdatatype.CDS, + ): + raise ValueError("rrset not a DNSKEY/CDNSKEY/CDS") + + _algorithms = set() + for algorithm in algorithms: + try: + if isinstance(algorithm, str): + algorithm = DSDigest[algorithm.upper()] + except Exception: + raise UnsupportedAlgorithm(f'unsupported algorithm "{algorithm}"') + _algorithms.add(algorithm) + + if rdataset.rdtype == dns.rdatatype.CDS: + res = [] + for rdata in cds_rdataset_to_ds_rdataset(rdataset): + if rdata.digest_type in _algorithms: + res.append(rdata) + if len(res) == 0: + raise ValueError("no acceptable CDS rdata found") + return dns.rdataset.from_rdata_list(rdataset.ttl, res) + + res = [] + for algorithm in _algorithms: + res.extend(dnskey_rdataset_to_cds_rdataset(rrname, rdataset, algorithm, origin)) + return dns.rdataset.from_rdata_list(rdataset.ttl, res) + + +def cds_rdataset_to_ds_rdataset( + rdataset: dns.rdataset.Rdataset, +) -> dns.rdataset.Rdataset: + """Create a CDS record from DS. + + *rdataset*, a ``dns.rdataset.Rdataset``, to create DS Rdataset for. + + Raises ``ValueError`` if the rdataset is not CDS. + + Returns a ``dns.rdataset.Rdataset`` + """ + + if rdataset.rdtype != dns.rdatatype.CDS: + raise ValueError("rdataset not a CDS") + res = [] + for rdata in rdataset: + res.append( + CDS( + rdclass=rdata.rdclass, + rdtype=dns.rdatatype.DS, + key_tag=rdata.key_tag, + algorithm=rdata.algorithm, + digest_type=rdata.digest_type, + digest=rdata.digest, + ) + ) + return dns.rdataset.from_rdata_list(rdataset.ttl, res) + + +def dnskey_rdataset_to_cds_rdataset( + name: Union[dns.name.Name, str], + rdataset: dns.rdataset.Rdataset, + algorithm: Union[DSDigest, str], + origin: Optional[dns.name.Name] = None, +) -> dns.rdataset.Rdataset: + """Create a CDS record from DNSKEY/CDNSKEY. + + *name*, a ``dns.name.Name`` or ``str``, the owner name of the CDS record. + + *rdataset*, a ``dns.rdataset.Rdataset``, to create DS Rdataset for. + + *algorithm*, a ``str`` or ``int`` specifying the hash algorithm. + The currently supported hashes are "SHA1", "SHA256", and "SHA384". Case + does not matter for these strings. + + *origin*, a ``dns.name.Name`` or ``None``. If `key` is a relative name, + then it will be made absolute using the specified origin. + + Raises ``UnsupportedAlgorithm`` if the algorithm is unknown or + ``ValueError`` if the rdataset is not DNSKEY/CDNSKEY. + + Returns a ``dns.rdataset.Rdataset`` + """ + + if rdataset.rdtype not in (dns.rdatatype.DNSKEY, dns.rdatatype.CDNSKEY): + raise ValueError("rdataset not a DNSKEY/CDNSKEY") + res = [] + for rdata in rdataset: + res.append(make_cds(name, rdata, algorithm, origin)) + return dns.rdataset.from_rdata_list(rdataset.ttl, res) + + +def dnskey_rdataset_to_cdnskey_rdataset( + rdataset: dns.rdataset.Rdataset, +) -> dns.rdataset.Rdataset: + """Create a CDNSKEY record from DNSKEY. + + *rdataset*, a ``dns.rdataset.Rdataset``, to create CDNSKEY Rdataset for. + + Returns a ``dns.rdataset.Rdataset`` + """ + + if rdataset.rdtype != dns.rdatatype.DNSKEY: + raise ValueError("rdataset not a DNSKEY") + res = [] + for rdata in rdataset: + res.append( + CDNSKEY( + rdclass=rdataset.rdclass, + rdtype=rdataset.rdtype, + flags=rdata.flags, + protocol=rdata.protocol, + algorithm=rdata.algorithm, + key=rdata.key, + ) + ) + return dns.rdataset.from_rdata_list(rdataset.ttl, res) + + +def default_rrset_signer( + txn: dns.transaction.Transaction, + rrset: dns.rrset.RRset, + signer: dns.name.Name, + ksks: List[Tuple[PrivateKey, DNSKEY]], + zsks: List[Tuple[PrivateKey, DNSKEY]], + inception: Optional[Union[datetime, str, int, float]] = None, + expiration: Optional[Union[datetime, str, int, float]] = None, + lifetime: Optional[int] = None, + policy: Optional[Policy] = None, + origin: Optional[dns.name.Name] = None, + deterministic: bool = True, +) -> None: + """Default RRset signer""" + + if rrset.rdtype in set( + [ + dns.rdatatype.RdataType.DNSKEY, + dns.rdatatype.RdataType.CDS, + dns.rdatatype.RdataType.CDNSKEY, + ] + ): + keys = ksks + else: + keys = zsks + + for private_key, dnskey in keys: + rrsig = dns.dnssec.sign( + rrset=rrset, + private_key=private_key, + dnskey=dnskey, + inception=inception, + expiration=expiration, + lifetime=lifetime, + signer=signer, + policy=policy, + origin=origin, + deterministic=deterministic, + ) + txn.add(rrset.name, rrset.ttl, rrsig) + + +def sign_zone( + zone: dns.zone.Zone, + txn: Optional[dns.transaction.Transaction] = None, + keys: Optional[List[Tuple[PrivateKey, DNSKEY]]] = None, + add_dnskey: bool = True, + dnskey_ttl: Optional[int] = None, + inception: Optional[Union[datetime, str, int, float]] = None, + expiration: Optional[Union[datetime, str, int, float]] = None, + lifetime: Optional[int] = None, + nsec3: Optional[NSEC3PARAM] = None, + rrset_signer: Optional[RRsetSigner] = None, + policy: Optional[Policy] = None, + deterministic: bool = True, +) -> None: + """Sign zone. + + *zone*, a ``dns.zone.Zone``, the zone to sign. + + *txn*, a ``dns.transaction.Transaction``, an optional transaction to use for + signing. + + *keys*, a list of (``PrivateKey``, ``DNSKEY``) tuples, to use for signing. KSK/ZSK + roles are assigned automatically if the SEP flag is used, otherwise all RRsets are + signed by all keys. + + *add_dnskey*, a ``bool``. If ``True``, the default, all specified DNSKEYs are + automatically added to the zone on signing. + + *dnskey_ttl*, a``int``, specifies the TTL for DNSKEY RRs. If not specified the TTL + of the existing DNSKEY RRset used or the TTL of the SOA RRset. + + *inception*, a ``datetime``, ``str``, ``int``, ``float`` or ``None``, the signature + inception time. If ``None``, the current time is used. If a ``str``, the format is + "YYYYMMDDHHMMSS" or alternatively the number of seconds since the UNIX epoch in text + form; this is the same the RRSIG rdata's text form. Values of type `int` or `float` + are interpreted as seconds since the UNIX epoch. + + *expiration*, a ``datetime``, ``str``, ``int``, ``float`` or ``None``, the signature + expiration time. If ``None``, the expiration time will be the inception time plus + the value of the *lifetime* parameter. See the description of *inception* above for + how the various parameter types are interpreted. + + *lifetime*, an ``int`` or ``None``, the signature lifetime in seconds. This + parameter is only meaningful if *expiration* is ``None``. + + *nsec3*, a ``NSEC3PARAM`` Rdata, configures signing using NSEC3. Not yet + implemented. + + *rrset_signer*, a ``Callable``, an optional function for signing RRsets. The + function requires two arguments: transaction and RRset. If the not specified, + ``dns.dnssec.default_rrset_signer`` will be used. + + *deterministic*, a ``bool``. If ``True``, the default, use deterministic + (reproducible) signatures when supported by the algorithm used for signing. + Currently, this only affects ECDSA. + + Returns ``None``. + """ + + ksks = [] + zsks = [] + + # if we have both KSKs and ZSKs, split by SEP flag. if not, sign all + # records with all keys + if keys: + for key in keys: + if key[1].flags & Flag.SEP: + ksks.append(key) + else: + zsks.append(key) + if not ksks: + ksks = keys + if not zsks: + zsks = keys + else: + keys = [] + + if txn: + cm: contextlib.AbstractContextManager = contextlib.nullcontext(txn) + else: + cm = zone.writer() + + if zone.origin is None: + raise ValueError("no zone origin") + + with cm as _txn: + if add_dnskey: + if dnskey_ttl is None: + dnskey = _txn.get(zone.origin, dns.rdatatype.DNSKEY) + if dnskey: + dnskey_ttl = dnskey.ttl + else: + soa = _txn.get(zone.origin, dns.rdatatype.SOA) + dnskey_ttl = soa.ttl + for _, dnskey in keys: + _txn.add(zone.origin, dnskey_ttl, dnskey) + + if nsec3: + raise NotImplementedError("Signing with NSEC3 not yet implemented") + else: + _rrset_signer = rrset_signer or functools.partial( + default_rrset_signer, + signer=zone.origin, + ksks=ksks, + zsks=zsks, + inception=inception, + expiration=expiration, + lifetime=lifetime, + policy=policy, + origin=zone.origin, + deterministic=deterministic, + ) + return _sign_zone_nsec(zone, _txn, _rrset_signer) + + +def _sign_zone_nsec( + zone: dns.zone.Zone, + txn: dns.transaction.Transaction, + rrset_signer: Optional[RRsetSigner] = None, +) -> None: + """NSEC zone signer""" + + def _txn_add_nsec( + txn: dns.transaction.Transaction, + name: dns.name.Name, + next_secure: Optional[dns.name.Name], + rdclass: dns.rdataclass.RdataClass, + ttl: int, + rrset_signer: Optional[RRsetSigner] = None, + ) -> None: + """NSEC zone signer helper""" + mandatory_types = set( + [dns.rdatatype.RdataType.RRSIG, dns.rdatatype.RdataType.NSEC] + ) + node = txn.get_node(name) + if node and next_secure: + types = ( + set([rdataset.rdtype for rdataset in node.rdatasets]) | mandatory_types + ) + windows = Bitmap.from_rdtypes(list(types)) + rrset = dns.rrset.from_rdata( + name, + ttl, + NSEC( + rdclass=rdclass, + rdtype=dns.rdatatype.RdataType.NSEC, + next=next_secure, + windows=windows, + ), + ) + txn.add(rrset) + if rrset_signer: + rrset_signer(txn, rrset) + + rrsig_ttl = zone.get_soa().minimum + delegation = None + last_secure = None + + for name in sorted(txn.iterate_names()): + if delegation and name.is_subdomain(delegation): + # names below delegations are not secure + continue + elif txn.get(name, dns.rdatatype.NS) and name != zone.origin: + # inside delegation + delegation = name + else: + # outside delegation + delegation = None + + if rrset_signer: + node = txn.get_node(name) + if node: + for rdataset in node.rdatasets: + if rdataset.rdtype == dns.rdatatype.RRSIG: + # do not sign RRSIGs + continue + elif delegation and rdataset.rdtype != dns.rdatatype.DS: + # do not sign delegations except DS records + continue + else: + rrset = dns.rrset.from_rdata(name, rdataset.ttl, *rdataset) + rrset_signer(txn, rrset) + + # We need "is not None" as the empty name is False because its length is 0. + if last_secure is not None: + _txn_add_nsec(txn, last_secure, name, zone.rdclass, rrsig_ttl, rrset_signer) + last_secure = name + + if last_secure: + _txn_add_nsec( + txn, last_secure, zone.origin, zone.rdclass, rrsig_ttl, rrset_signer + ) + + +def _need_pyca(*args, **kwargs): + raise ImportError( + "DNSSEC validation requires python cryptography" + ) # pragma: no cover + + +if dns._features.have("dnssec"): + from cryptography.exceptions import InvalidSignature + from cryptography.hazmat.primitives.asymmetric import dsa # pylint: disable=W0611 + from cryptography.hazmat.primitives.asymmetric import ec # pylint: disable=W0611 + from cryptography.hazmat.primitives.asymmetric import ed448 # pylint: disable=W0611 + from cryptography.hazmat.primitives.asymmetric import rsa # pylint: disable=W0611 + from cryptography.hazmat.primitives.asymmetric import ( # pylint: disable=W0611 + ed25519, + ) + + from dns.dnssecalgs import ( # pylint: disable=C0412 + get_algorithm_cls, + get_algorithm_cls_from_dnskey, + ) + from dns.dnssecalgs.base import GenericPrivateKey, GenericPublicKey + + validate = _validate # type: ignore + validate_rrsig = _validate_rrsig # type: ignore + sign = _sign + make_dnskey = _make_dnskey + make_cdnskey = _make_cdnskey + _have_pyca = True +else: # pragma: no cover + validate = _need_pyca + validate_rrsig = _need_pyca + sign = _need_pyca + make_dnskey = _need_pyca + make_cdnskey = _need_pyca + _have_pyca = False + +### BEGIN generated Algorithm constants + +RSAMD5 = Algorithm.RSAMD5 +DH = Algorithm.DH +DSA = Algorithm.DSA +ECC = Algorithm.ECC +RSASHA1 = Algorithm.RSASHA1 +DSANSEC3SHA1 = Algorithm.DSANSEC3SHA1 +RSASHA1NSEC3SHA1 = Algorithm.RSASHA1NSEC3SHA1 +RSASHA256 = Algorithm.RSASHA256 +RSASHA512 = Algorithm.RSASHA512 +ECCGOST = Algorithm.ECCGOST +ECDSAP256SHA256 = Algorithm.ECDSAP256SHA256 +ECDSAP384SHA384 = Algorithm.ECDSAP384SHA384 +ED25519 = Algorithm.ED25519 +ED448 = Algorithm.ED448 +INDIRECT = Algorithm.INDIRECT +PRIVATEDNS = Algorithm.PRIVATEDNS +PRIVATEOID = Algorithm.PRIVATEOID + +### END generated Algorithm constants diff --git a/.venv/lib/python3.11/site-packages/dns/dnssecalgs/__init__.py b/.venv/lib/python3.11/site-packages/dns/dnssecalgs/__init__.py new file mode 100644 index 0000000..602367e --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/dnssecalgs/__init__.py @@ -0,0 +1,121 @@ +from typing import Dict, Optional, Tuple, Type, Union + +import dns.name +from dns.dnssecalgs.base import GenericPrivateKey +from dns.dnssectypes import Algorithm +from dns.exception import UnsupportedAlgorithm +from dns.rdtypes.ANY.DNSKEY import DNSKEY + +if dns._features.have("dnssec"): + from dns.dnssecalgs.dsa import PrivateDSA, PrivateDSANSEC3SHA1 + from dns.dnssecalgs.ecdsa import PrivateECDSAP256SHA256, PrivateECDSAP384SHA384 + from dns.dnssecalgs.eddsa import PrivateED448, PrivateED25519 + from dns.dnssecalgs.rsa import ( + PrivateRSAMD5, + PrivateRSASHA1, + PrivateRSASHA1NSEC3SHA1, + PrivateRSASHA256, + PrivateRSASHA512, + ) + + _have_cryptography = True +else: + _have_cryptography = False + +AlgorithmPrefix = Optional[Union[bytes, dns.name.Name]] + +algorithms: Dict[Tuple[Algorithm, AlgorithmPrefix], Type[GenericPrivateKey]] = {} +if _have_cryptography: + # pylint: disable=possibly-used-before-assignment + algorithms.update( + { + (Algorithm.RSAMD5, None): PrivateRSAMD5, + (Algorithm.DSA, None): PrivateDSA, + (Algorithm.RSASHA1, None): PrivateRSASHA1, + (Algorithm.DSANSEC3SHA1, None): PrivateDSANSEC3SHA1, + (Algorithm.RSASHA1NSEC3SHA1, None): PrivateRSASHA1NSEC3SHA1, + (Algorithm.RSASHA256, None): PrivateRSASHA256, + (Algorithm.RSASHA512, None): PrivateRSASHA512, + (Algorithm.ECDSAP256SHA256, None): PrivateECDSAP256SHA256, + (Algorithm.ECDSAP384SHA384, None): PrivateECDSAP384SHA384, + (Algorithm.ED25519, None): PrivateED25519, + (Algorithm.ED448, None): PrivateED448, + } + ) + + +def get_algorithm_cls( + algorithm: Union[int, str], prefix: AlgorithmPrefix = None +) -> Type[GenericPrivateKey]: + """Get Private Key class from Algorithm. + + *algorithm*, a ``str`` or ``int`` specifying the DNSKEY algorithm. + + Raises ``UnsupportedAlgorithm`` if the algorithm is unknown. + + Returns a ``dns.dnssecalgs.GenericPrivateKey`` + """ + algorithm = Algorithm.make(algorithm) + cls = algorithms.get((algorithm, prefix)) + if cls: + return cls + raise UnsupportedAlgorithm( + f'algorithm "{Algorithm.to_text(algorithm)}" not supported by dnspython' + ) + + +def get_algorithm_cls_from_dnskey(dnskey: DNSKEY) -> Type[GenericPrivateKey]: + """Get Private Key class from DNSKEY. + + *dnskey*, a ``DNSKEY`` to get Algorithm class for. + + Raises ``UnsupportedAlgorithm`` if the algorithm is unknown. + + Returns a ``dns.dnssecalgs.GenericPrivateKey`` + """ + prefix: AlgorithmPrefix = None + if dnskey.algorithm == Algorithm.PRIVATEDNS: + prefix, _ = dns.name.from_wire(dnskey.key, 0) + elif dnskey.algorithm == Algorithm.PRIVATEOID: + length = int(dnskey.key[0]) + prefix = dnskey.key[0 : length + 1] + return get_algorithm_cls(dnskey.algorithm, prefix) + + +def register_algorithm_cls( + algorithm: Union[int, str], + algorithm_cls: Type[GenericPrivateKey], + name: Optional[Union[dns.name.Name, str]] = None, + oid: Optional[bytes] = None, +) -> None: + """Register Algorithm Private Key class. + + *algorithm*, a ``str`` or ``int`` specifying the DNSKEY algorithm. + + *algorithm_cls*: A `GenericPrivateKey` class. + + *name*, an optional ``dns.name.Name`` or ``str``, for for PRIVATEDNS algorithms. + + *oid*: an optional BER-encoded `bytes` for PRIVATEOID algorithms. + + Raises ``ValueError`` if a name or oid is specified incorrectly. + """ + if not issubclass(algorithm_cls, GenericPrivateKey): + raise TypeError("Invalid algorithm class") + algorithm = Algorithm.make(algorithm) + prefix: AlgorithmPrefix = None + if algorithm == Algorithm.PRIVATEDNS: + if name is None: + raise ValueError("Name required for PRIVATEDNS algorithms") + if isinstance(name, str): + name = dns.name.from_text(name) + prefix = name + elif algorithm == Algorithm.PRIVATEOID: + if oid is None: + raise ValueError("OID required for PRIVATEOID algorithms") + prefix = bytes([len(oid)]) + oid + elif name: + raise ValueError("Name only supported for PRIVATEDNS algorithm") + elif oid: + raise ValueError("OID only supported for PRIVATEOID algorithm") + algorithms[(algorithm, prefix)] = algorithm_cls diff --git a/.venv/lib/python3.11/site-packages/dns/dnssecalgs/base.py b/.venv/lib/python3.11/site-packages/dns/dnssecalgs/base.py new file mode 100644 index 0000000..752ee48 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/dnssecalgs/base.py @@ -0,0 +1,89 @@ +from abc import ABC, abstractmethod # pylint: disable=no-name-in-module +from typing import Any, Optional, Type + +import dns.rdataclass +import dns.rdatatype +from dns.dnssectypes import Algorithm +from dns.exception import AlgorithmKeyMismatch +from dns.rdtypes.ANY.DNSKEY import DNSKEY +from dns.rdtypes.dnskeybase import Flag + + +class GenericPublicKey(ABC): + algorithm: Algorithm + + @abstractmethod + def __init__(self, key: Any) -> None: + pass + + @abstractmethod + def verify(self, signature: bytes, data: bytes) -> None: + """Verify signed DNSSEC data""" + + @abstractmethod + def encode_key_bytes(self) -> bytes: + """Encode key as bytes for DNSKEY""" + + @classmethod + def _ensure_algorithm_key_combination(cls, key: DNSKEY) -> None: + if key.algorithm != cls.algorithm: + raise AlgorithmKeyMismatch + + def to_dnskey(self, flags: int = Flag.ZONE, protocol: int = 3) -> DNSKEY: + """Return public key as DNSKEY""" + return DNSKEY( + rdclass=dns.rdataclass.IN, + rdtype=dns.rdatatype.DNSKEY, + flags=flags, + protocol=protocol, + algorithm=self.algorithm, + key=self.encode_key_bytes(), + ) + + @classmethod + @abstractmethod + def from_dnskey(cls, key: DNSKEY) -> "GenericPublicKey": + """Create public key from DNSKEY""" + + @classmethod + @abstractmethod + def from_pem(cls, public_pem: bytes) -> "GenericPublicKey": + """Create public key from PEM-encoded SubjectPublicKeyInfo as specified + in RFC 5280""" + + @abstractmethod + def to_pem(self) -> bytes: + """Return public-key as PEM-encoded SubjectPublicKeyInfo as specified + in RFC 5280""" + + +class GenericPrivateKey(ABC): + public_cls: Type[GenericPublicKey] + + @abstractmethod + def __init__(self, key: Any) -> None: + pass + + @abstractmethod + def sign( + self, + data: bytes, + verify: bool = False, + deterministic: bool = True, + ) -> bytes: + """Sign DNSSEC data""" + + @abstractmethod + def public_key(self) -> "GenericPublicKey": + """Return public key instance""" + + @classmethod + @abstractmethod + def from_pem( + cls, private_pem: bytes, password: Optional[bytes] = None + ) -> "GenericPrivateKey": + """Create private key from PEM-encoded PKCS#8""" + + @abstractmethod + def to_pem(self, password: Optional[bytes] = None) -> bytes: + """Return private key as PEM-encoded PKCS#8""" diff --git a/.venv/lib/python3.11/site-packages/dns/dnssecalgs/cryptography.py b/.venv/lib/python3.11/site-packages/dns/dnssecalgs/cryptography.py new file mode 100644 index 0000000..5a31a81 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/dnssecalgs/cryptography.py @@ -0,0 +1,68 @@ +from typing import Any, Optional, Type + +from cryptography.hazmat.primitives import serialization + +from dns.dnssecalgs.base import GenericPrivateKey, GenericPublicKey +from dns.exception import AlgorithmKeyMismatch + + +class CryptographyPublicKey(GenericPublicKey): + key: Any = None + key_cls: Any = None + + def __init__(self, key: Any) -> None: # pylint: disable=super-init-not-called + if self.key_cls is None: + raise TypeError("Undefined private key class") + if not isinstance( # pylint: disable=isinstance-second-argument-not-valid-type + key, self.key_cls + ): + raise AlgorithmKeyMismatch + self.key = key + + @classmethod + def from_pem(cls, public_pem: bytes) -> "GenericPublicKey": + key = serialization.load_pem_public_key(public_pem) + return cls(key=key) + + def to_pem(self) -> bytes: + return self.key.public_bytes( + encoding=serialization.Encoding.PEM, + format=serialization.PublicFormat.SubjectPublicKeyInfo, + ) + + +class CryptographyPrivateKey(GenericPrivateKey): + key: Any = None + key_cls: Any = None + public_cls: Type[CryptographyPublicKey] + + def __init__(self, key: Any) -> None: # pylint: disable=super-init-not-called + if self.key_cls is None: + raise TypeError("Undefined private key class") + if not isinstance( # pylint: disable=isinstance-second-argument-not-valid-type + key, self.key_cls + ): + raise AlgorithmKeyMismatch + self.key = key + + def public_key(self) -> "CryptographyPublicKey": + return self.public_cls(key=self.key.public_key()) + + @classmethod + def from_pem( + cls, private_pem: bytes, password: Optional[bytes] = None + ) -> "GenericPrivateKey": + key = serialization.load_pem_private_key(private_pem, password=password) + return cls(key=key) + + def to_pem(self, password: Optional[bytes] = None) -> bytes: + encryption_algorithm: serialization.KeySerializationEncryption + if password: + encryption_algorithm = serialization.BestAvailableEncryption(password) + else: + encryption_algorithm = serialization.NoEncryption() + return self.key.private_bytes( + encoding=serialization.Encoding.PEM, + format=serialization.PrivateFormat.PKCS8, + encryption_algorithm=encryption_algorithm, + ) diff --git a/.venv/lib/python3.11/site-packages/dns/dnssecalgs/dsa.py b/.venv/lib/python3.11/site-packages/dns/dnssecalgs/dsa.py new file mode 100644 index 0000000..adca3de --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/dnssecalgs/dsa.py @@ -0,0 +1,106 @@ +import struct + +from cryptography.hazmat.backends import default_backend +from cryptography.hazmat.primitives import hashes +from cryptography.hazmat.primitives.asymmetric import dsa, utils + +from dns.dnssecalgs.cryptography import CryptographyPrivateKey, CryptographyPublicKey +from dns.dnssectypes import Algorithm +from dns.rdtypes.ANY.DNSKEY import DNSKEY + + +class PublicDSA(CryptographyPublicKey): + key: dsa.DSAPublicKey + key_cls = dsa.DSAPublicKey + algorithm = Algorithm.DSA + chosen_hash = hashes.SHA1() + + def verify(self, signature: bytes, data: bytes) -> None: + sig_r = signature[1:21] + sig_s = signature[21:] + sig = utils.encode_dss_signature( + int.from_bytes(sig_r, "big"), int.from_bytes(sig_s, "big") + ) + self.key.verify(sig, data, self.chosen_hash) + + def encode_key_bytes(self) -> bytes: + """Encode a public key per RFC 2536, section 2.""" + pn = self.key.public_numbers() + dsa_t = (self.key.key_size // 8 - 64) // 8 + if dsa_t > 8: + raise ValueError("unsupported DSA key size") + octets = 64 + dsa_t * 8 + res = struct.pack("!B", dsa_t) + res += pn.parameter_numbers.q.to_bytes(20, "big") + res += pn.parameter_numbers.p.to_bytes(octets, "big") + res += pn.parameter_numbers.g.to_bytes(octets, "big") + res += pn.y.to_bytes(octets, "big") + return res + + @classmethod + def from_dnskey(cls, key: DNSKEY) -> "PublicDSA": + cls._ensure_algorithm_key_combination(key) + keyptr = key.key + (t,) = struct.unpack("!B", keyptr[0:1]) + keyptr = keyptr[1:] + octets = 64 + t * 8 + dsa_q = keyptr[0:20] + keyptr = keyptr[20:] + dsa_p = keyptr[0:octets] + keyptr = keyptr[octets:] + dsa_g = keyptr[0:octets] + keyptr = keyptr[octets:] + dsa_y = keyptr[0:octets] + return cls( + key=dsa.DSAPublicNumbers( # type: ignore + int.from_bytes(dsa_y, "big"), + dsa.DSAParameterNumbers( + int.from_bytes(dsa_p, "big"), + int.from_bytes(dsa_q, "big"), + int.from_bytes(dsa_g, "big"), + ), + ).public_key(default_backend()), + ) + + +class PrivateDSA(CryptographyPrivateKey): + key: dsa.DSAPrivateKey + key_cls = dsa.DSAPrivateKey + public_cls = PublicDSA + + def sign( + self, + data: bytes, + verify: bool = False, + deterministic: bool = True, + ) -> bytes: + """Sign using a private key per RFC 2536, section 3.""" + public_dsa_key = self.key.public_key() + if public_dsa_key.key_size > 1024: + raise ValueError("DSA key size overflow") + der_signature = self.key.sign(data, self.public_cls.chosen_hash) + dsa_r, dsa_s = utils.decode_dss_signature(der_signature) + dsa_t = (public_dsa_key.key_size // 8 - 64) // 8 + octets = 20 + signature = ( + struct.pack("!B", dsa_t) + + int.to_bytes(dsa_r, length=octets, byteorder="big") + + int.to_bytes(dsa_s, length=octets, byteorder="big") + ) + if verify: + self.public_key().verify(signature, data) + return signature + + @classmethod + def generate(cls, key_size: int) -> "PrivateDSA": + return cls( + key=dsa.generate_private_key(key_size=key_size), + ) + + +class PublicDSANSEC3SHA1(PublicDSA): + algorithm = Algorithm.DSANSEC3SHA1 + + +class PrivateDSANSEC3SHA1(PrivateDSA): + public_cls = PublicDSANSEC3SHA1 diff --git a/.venv/lib/python3.11/site-packages/dns/dnssecalgs/ecdsa.py b/.venv/lib/python3.11/site-packages/dns/dnssecalgs/ecdsa.py new file mode 100644 index 0000000..86d5764 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/dnssecalgs/ecdsa.py @@ -0,0 +1,97 @@ +from cryptography.hazmat.backends import default_backend +from cryptography.hazmat.primitives import hashes +from cryptography.hazmat.primitives.asymmetric import ec, utils + +from dns.dnssecalgs.cryptography import CryptographyPrivateKey, CryptographyPublicKey +from dns.dnssectypes import Algorithm +from dns.rdtypes.ANY.DNSKEY import DNSKEY + + +class PublicECDSA(CryptographyPublicKey): + key: ec.EllipticCurvePublicKey + key_cls = ec.EllipticCurvePublicKey + algorithm: Algorithm + chosen_hash: hashes.HashAlgorithm + curve: ec.EllipticCurve + octets: int + + def verify(self, signature: bytes, data: bytes) -> None: + sig_r = signature[0 : self.octets] + sig_s = signature[self.octets :] + sig = utils.encode_dss_signature( + int.from_bytes(sig_r, "big"), int.from_bytes(sig_s, "big") + ) + self.key.verify(sig, data, ec.ECDSA(self.chosen_hash)) + + def encode_key_bytes(self) -> bytes: + """Encode a public key per RFC 6605, section 4.""" + pn = self.key.public_numbers() + return pn.x.to_bytes(self.octets, "big") + pn.y.to_bytes(self.octets, "big") + + @classmethod + def from_dnskey(cls, key: DNSKEY) -> "PublicECDSA": + cls._ensure_algorithm_key_combination(key) + ecdsa_x = key.key[0 : cls.octets] + ecdsa_y = key.key[cls.octets : cls.octets * 2] + return cls( + key=ec.EllipticCurvePublicNumbers( + curve=cls.curve, + x=int.from_bytes(ecdsa_x, "big"), + y=int.from_bytes(ecdsa_y, "big"), + ).public_key(default_backend()), + ) + + +class PrivateECDSA(CryptographyPrivateKey): + key: ec.EllipticCurvePrivateKey + key_cls = ec.EllipticCurvePrivateKey + public_cls = PublicECDSA + + def sign( + self, + data: bytes, + verify: bool = False, + deterministic: bool = True, + ) -> bytes: + """Sign using a private key per RFC 6605, section 4.""" + algorithm = ec.ECDSA( + self.public_cls.chosen_hash, deterministic_signing=deterministic + ) + der_signature = self.key.sign(data, algorithm) + dsa_r, dsa_s = utils.decode_dss_signature(der_signature) + signature = int.to_bytes( + dsa_r, length=self.public_cls.octets, byteorder="big" + ) + int.to_bytes(dsa_s, length=self.public_cls.octets, byteorder="big") + if verify: + self.public_key().verify(signature, data) + return signature + + @classmethod + def generate(cls) -> "PrivateECDSA": + return cls( + key=ec.generate_private_key( + curve=cls.public_cls.curve, backend=default_backend() + ), + ) + + +class PublicECDSAP256SHA256(PublicECDSA): + algorithm = Algorithm.ECDSAP256SHA256 + chosen_hash = hashes.SHA256() + curve = ec.SECP256R1() + octets = 32 + + +class PrivateECDSAP256SHA256(PrivateECDSA): + public_cls = PublicECDSAP256SHA256 + + +class PublicECDSAP384SHA384(PublicECDSA): + algorithm = Algorithm.ECDSAP384SHA384 + chosen_hash = hashes.SHA384() + curve = ec.SECP384R1() + octets = 48 + + +class PrivateECDSAP384SHA384(PrivateECDSA): + public_cls = PublicECDSAP384SHA384 diff --git a/.venv/lib/python3.11/site-packages/dns/dnssecalgs/eddsa.py b/.venv/lib/python3.11/site-packages/dns/dnssecalgs/eddsa.py new file mode 100644 index 0000000..604bcbf --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/dnssecalgs/eddsa.py @@ -0,0 +1,70 @@ +from typing import Type + +from cryptography.hazmat.primitives import serialization +from cryptography.hazmat.primitives.asymmetric import ed448, ed25519 + +from dns.dnssecalgs.cryptography import CryptographyPrivateKey, CryptographyPublicKey +from dns.dnssectypes import Algorithm +from dns.rdtypes.ANY.DNSKEY import DNSKEY + + +class PublicEDDSA(CryptographyPublicKey): + def verify(self, signature: bytes, data: bytes) -> None: + self.key.verify(signature, data) + + def encode_key_bytes(self) -> bytes: + """Encode a public key per RFC 8080, section 3.""" + return self.key.public_bytes( + encoding=serialization.Encoding.Raw, format=serialization.PublicFormat.Raw + ) + + @classmethod + def from_dnskey(cls, key: DNSKEY) -> "PublicEDDSA": + cls._ensure_algorithm_key_combination(key) + return cls( + key=cls.key_cls.from_public_bytes(key.key), + ) + + +class PrivateEDDSA(CryptographyPrivateKey): + public_cls: Type[PublicEDDSA] + + def sign( + self, + data: bytes, + verify: bool = False, + deterministic: bool = True, + ) -> bytes: + """Sign using a private key per RFC 8080, section 4.""" + signature = self.key.sign(data) + if verify: + self.public_key().verify(signature, data) + return signature + + @classmethod + def generate(cls) -> "PrivateEDDSA": + return cls(key=cls.key_cls.generate()) + + +class PublicED25519(PublicEDDSA): + key: ed25519.Ed25519PublicKey + key_cls = ed25519.Ed25519PublicKey + algorithm = Algorithm.ED25519 + + +class PrivateED25519(PrivateEDDSA): + key: ed25519.Ed25519PrivateKey + key_cls = ed25519.Ed25519PrivateKey + public_cls = PublicED25519 + + +class PublicED448(PublicEDDSA): + key: ed448.Ed448PublicKey + key_cls = ed448.Ed448PublicKey + algorithm = Algorithm.ED448 + + +class PrivateED448(PrivateEDDSA): + key: ed448.Ed448PrivateKey + key_cls = ed448.Ed448PrivateKey + public_cls = PublicED448 diff --git a/.venv/lib/python3.11/site-packages/dns/dnssecalgs/rsa.py b/.venv/lib/python3.11/site-packages/dns/dnssecalgs/rsa.py new file mode 100644 index 0000000..27537aa --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/dnssecalgs/rsa.py @@ -0,0 +1,124 @@ +import math +import struct + +from cryptography.hazmat.backends import default_backend +from cryptography.hazmat.primitives import hashes +from cryptography.hazmat.primitives.asymmetric import padding, rsa + +from dns.dnssecalgs.cryptography import CryptographyPrivateKey, CryptographyPublicKey +from dns.dnssectypes import Algorithm +from dns.rdtypes.ANY.DNSKEY import DNSKEY + + +class PublicRSA(CryptographyPublicKey): + key: rsa.RSAPublicKey + key_cls = rsa.RSAPublicKey + algorithm: Algorithm + chosen_hash: hashes.HashAlgorithm + + def verify(self, signature: bytes, data: bytes) -> None: + self.key.verify(signature, data, padding.PKCS1v15(), self.chosen_hash) + + def encode_key_bytes(self) -> bytes: + """Encode a public key per RFC 3110, section 2.""" + pn = self.key.public_numbers() + _exp_len = math.ceil(int.bit_length(pn.e) / 8) + exp = int.to_bytes(pn.e, length=_exp_len, byteorder="big") + if _exp_len > 255: + exp_header = b"\0" + struct.pack("!H", _exp_len) + else: + exp_header = struct.pack("!B", _exp_len) + if pn.n.bit_length() < 512 or pn.n.bit_length() > 4096: + raise ValueError("unsupported RSA key length") + return exp_header + exp + pn.n.to_bytes((pn.n.bit_length() + 7) // 8, "big") + + @classmethod + def from_dnskey(cls, key: DNSKEY) -> "PublicRSA": + cls._ensure_algorithm_key_combination(key) + keyptr = key.key + (bytes_,) = struct.unpack("!B", keyptr[0:1]) + keyptr = keyptr[1:] + if bytes_ == 0: + (bytes_,) = struct.unpack("!H", keyptr[0:2]) + keyptr = keyptr[2:] + rsa_e = keyptr[0:bytes_] + rsa_n = keyptr[bytes_:] + return cls( + key=rsa.RSAPublicNumbers( + int.from_bytes(rsa_e, "big"), int.from_bytes(rsa_n, "big") + ).public_key(default_backend()) + ) + + +class PrivateRSA(CryptographyPrivateKey): + key: rsa.RSAPrivateKey + key_cls = rsa.RSAPrivateKey + public_cls = PublicRSA + default_public_exponent = 65537 + + def sign( + self, + data: bytes, + verify: bool = False, + deterministic: bool = True, + ) -> bytes: + """Sign using a private key per RFC 3110, section 3.""" + signature = self.key.sign(data, padding.PKCS1v15(), self.public_cls.chosen_hash) + if verify: + self.public_key().verify(signature, data) + return signature + + @classmethod + def generate(cls, key_size: int) -> "PrivateRSA": + return cls( + key=rsa.generate_private_key( + public_exponent=cls.default_public_exponent, + key_size=key_size, + backend=default_backend(), + ) + ) + + +class PublicRSAMD5(PublicRSA): + algorithm = Algorithm.RSAMD5 + chosen_hash = hashes.MD5() + + +class PrivateRSAMD5(PrivateRSA): + public_cls = PublicRSAMD5 + + +class PublicRSASHA1(PublicRSA): + algorithm = Algorithm.RSASHA1 + chosen_hash = hashes.SHA1() + + +class PrivateRSASHA1(PrivateRSA): + public_cls = PublicRSASHA1 + + +class PublicRSASHA1NSEC3SHA1(PublicRSA): + algorithm = Algorithm.RSASHA1NSEC3SHA1 + chosen_hash = hashes.SHA1() + + +class PrivateRSASHA1NSEC3SHA1(PrivateRSA): + public_cls = PublicRSASHA1NSEC3SHA1 + + +class PublicRSASHA256(PublicRSA): + algorithm = Algorithm.RSASHA256 + chosen_hash = hashes.SHA256() + + +class PrivateRSASHA256(PrivateRSA): + public_cls = PublicRSASHA256 + + +class PublicRSASHA512(PublicRSA): + algorithm = Algorithm.RSASHA512 + chosen_hash = hashes.SHA512() + + +class PrivateRSASHA512(PrivateRSA): + public_cls = PublicRSASHA512 diff --git a/.venv/lib/python3.11/site-packages/dns/dnssectypes.py b/.venv/lib/python3.11/site-packages/dns/dnssectypes.py new file mode 100644 index 0000000..02131e0 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/dnssectypes.py @@ -0,0 +1,71 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2003-2017 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +"""Common DNSSEC-related types.""" + +# This is a separate file to avoid import circularity between dns.dnssec and +# the implementations of the DS and DNSKEY types. + +import dns.enum + + +class Algorithm(dns.enum.IntEnum): + RSAMD5 = 1 + DH = 2 + DSA = 3 + ECC = 4 + RSASHA1 = 5 + DSANSEC3SHA1 = 6 + RSASHA1NSEC3SHA1 = 7 + RSASHA256 = 8 + RSASHA512 = 10 + ECCGOST = 12 + ECDSAP256SHA256 = 13 + ECDSAP384SHA384 = 14 + ED25519 = 15 + ED448 = 16 + INDIRECT = 252 + PRIVATEDNS = 253 + PRIVATEOID = 254 + + @classmethod + def _maximum(cls): + return 255 + + +class DSDigest(dns.enum.IntEnum): + """DNSSEC Delegation Signer Digest Algorithm""" + + NULL = 0 + SHA1 = 1 + SHA256 = 2 + GOST = 3 + SHA384 = 4 + + @classmethod + def _maximum(cls): + return 255 + + +class NSEC3Hash(dns.enum.IntEnum): + """NSEC3 hash algorithm""" + + SHA1 = 1 + + @classmethod + def _maximum(cls): + return 255 diff --git a/.venv/lib/python3.11/site-packages/dns/e164.py b/.venv/lib/python3.11/site-packages/dns/e164.py new file mode 100644 index 0000000..453736d --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/e164.py @@ -0,0 +1,116 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2006-2017 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +"""DNS E.164 helpers.""" + +from typing import Iterable, Optional, Union + +import dns.exception +import dns.name +import dns.resolver + +#: The public E.164 domain. +public_enum_domain = dns.name.from_text("e164.arpa.") + + +def from_e164( + text: str, origin: Optional[dns.name.Name] = public_enum_domain +) -> dns.name.Name: + """Convert an E.164 number in textual form into a Name object whose + value is the ENUM domain name for that number. + + Non-digits in the text are ignored, i.e. "16505551212", + "+1.650.555.1212" and "1 (650) 555-1212" are all the same. + + *text*, a ``str``, is an E.164 number in textual form. + + *origin*, a ``dns.name.Name``, the domain in which the number + should be constructed. The default is ``e164.arpa.``. + + Returns a ``dns.name.Name``. + """ + + parts = [d for d in text if d.isdigit()] + parts.reverse() + return dns.name.from_text(".".join(parts), origin=origin) + + +def to_e164( + name: dns.name.Name, + origin: Optional[dns.name.Name] = public_enum_domain, + want_plus_prefix: bool = True, +) -> str: + """Convert an ENUM domain name into an E.164 number. + + Note that dnspython does not have any information about preferred + number formats within national numbering plans, so all numbers are + emitted as a simple string of digits, prefixed by a '+' (unless + *want_plus_prefix* is ``False``). + + *name* is a ``dns.name.Name``, the ENUM domain name. + + *origin* is a ``dns.name.Name``, a domain containing the ENUM + domain name. The name is relativized to this domain before being + converted to text. If ``None``, no relativization is done. + + *want_plus_prefix* is a ``bool``. If True, add a '+' to the beginning of + the returned number. + + Returns a ``str``. + + """ + if origin is not None: + name = name.relativize(origin) + dlabels = [d for d in name.labels if d.isdigit() and len(d) == 1] + if len(dlabels) != len(name.labels): + raise dns.exception.SyntaxError("non-digit labels in ENUM domain name") + dlabels.reverse() + text = b"".join(dlabels) + if want_plus_prefix: + text = b"+" + text + return text.decode() + + +def query( + number: str, + domains: Iterable[Union[dns.name.Name, str]], + resolver: Optional[dns.resolver.Resolver] = None, +) -> dns.resolver.Answer: + """Look for NAPTR RRs for the specified number in the specified domains. + + e.g. lookup('16505551212', ['e164.dnspython.org.', 'e164.arpa.']) + + *number*, a ``str`` is the number to look for. + + *domains* is an iterable containing ``dns.name.Name`` values. + + *resolver*, a ``dns.resolver.Resolver``, is the resolver to use. If + ``None``, the default resolver is used. + """ + + if resolver is None: + resolver = dns.resolver.get_default_resolver() + e_nx = dns.resolver.NXDOMAIN() + for domain in domains: + if isinstance(domain, str): + domain = dns.name.from_text(domain) + qname = dns.e164.from_e164(number, domain) + try: + return resolver.resolve(qname, "NAPTR") + except dns.resolver.NXDOMAIN as e: + e_nx += e + raise e_nx diff --git a/.venv/lib/python3.11/site-packages/dns/edns.py b/.venv/lib/python3.11/site-packages/dns/edns.py new file mode 100644 index 0000000..f7d9ff9 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/edns.py @@ -0,0 +1,572 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2009-2017 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +"""EDNS Options""" + +import binascii +import math +import socket +import struct +from typing import Any, Dict, Optional, Union + +import dns.enum +import dns.inet +import dns.rdata +import dns.wire + + +class OptionType(dns.enum.IntEnum): + #: NSID + NSID = 3 + #: DAU + DAU = 5 + #: DHU + DHU = 6 + #: N3U + N3U = 7 + #: ECS (client-subnet) + ECS = 8 + #: EXPIRE + EXPIRE = 9 + #: COOKIE + COOKIE = 10 + #: KEEPALIVE + KEEPALIVE = 11 + #: PADDING + PADDING = 12 + #: CHAIN + CHAIN = 13 + #: EDE (extended-dns-error) + EDE = 15 + #: REPORTCHANNEL + REPORTCHANNEL = 18 + + @classmethod + def _maximum(cls): + return 65535 + + +class Option: + """Base class for all EDNS option types.""" + + def __init__(self, otype: Union[OptionType, str]): + """Initialize an option. + + *otype*, a ``dns.edns.OptionType``, is the option type. + """ + self.otype = OptionType.make(otype) + + def to_wire(self, file: Optional[Any] = None) -> Optional[bytes]: + """Convert an option to wire format. + + Returns a ``bytes`` or ``None``. + + """ + raise NotImplementedError # pragma: no cover + + def to_text(self) -> str: + raise NotImplementedError # pragma: no cover + + @classmethod + def from_wire_parser(cls, otype: OptionType, parser: "dns.wire.Parser") -> "Option": + """Build an EDNS option object from wire format. + + *otype*, a ``dns.edns.OptionType``, is the option type. + + *parser*, a ``dns.wire.Parser``, the parser, which should be + restructed to the option length. + + Returns a ``dns.edns.Option``. + """ + raise NotImplementedError # pragma: no cover + + def _cmp(self, other): + """Compare an EDNS option with another option of the same type. + + Returns < 0 if < *other*, 0 if == *other*, and > 0 if > *other*. + """ + wire = self.to_wire() + owire = other.to_wire() + if wire == owire: + return 0 + if wire > owire: + return 1 + return -1 + + def __eq__(self, other): + if not isinstance(other, Option): + return False + if self.otype != other.otype: + return False + return self._cmp(other) == 0 + + def __ne__(self, other): + if not isinstance(other, Option): + return True + if self.otype != other.otype: + return True + return self._cmp(other) != 0 + + def __lt__(self, other): + if not isinstance(other, Option) or self.otype != other.otype: + return NotImplemented + return self._cmp(other) < 0 + + def __le__(self, other): + if not isinstance(other, Option) or self.otype != other.otype: + return NotImplemented + return self._cmp(other) <= 0 + + def __ge__(self, other): + if not isinstance(other, Option) or self.otype != other.otype: + return NotImplemented + return self._cmp(other) >= 0 + + def __gt__(self, other): + if not isinstance(other, Option) or self.otype != other.otype: + return NotImplemented + return self._cmp(other) > 0 + + def __str__(self): + return self.to_text() + + +class GenericOption(Option): # lgtm[py/missing-equals] + """Generic Option Class + + This class is used for EDNS option types for which we have no better + implementation. + """ + + def __init__(self, otype: Union[OptionType, str], data: Union[bytes, str]): + super().__init__(otype) + self.data = dns.rdata.Rdata._as_bytes(data, True) + + def to_wire(self, file: Optional[Any] = None) -> Optional[bytes]: + if file: + file.write(self.data) + return None + else: + return self.data + + def to_text(self) -> str: + return "Generic %d" % self.otype + + @classmethod + def from_wire_parser( + cls, otype: Union[OptionType, str], parser: "dns.wire.Parser" + ) -> Option: + return cls(otype, parser.get_remaining()) + + +class ECSOption(Option): # lgtm[py/missing-equals] + """EDNS Client Subnet (ECS, RFC7871)""" + + def __init__(self, address: str, srclen: Optional[int] = None, scopelen: int = 0): + """*address*, a ``str``, is the client address information. + + *srclen*, an ``int``, the source prefix length, which is the + leftmost number of bits of the address to be used for the + lookup. The default is 24 for IPv4 and 56 for IPv6. + + *scopelen*, an ``int``, the scope prefix length. This value + must be 0 in queries, and should be set in responses. + """ + + super().__init__(OptionType.ECS) + af = dns.inet.af_for_address(address) + + if af == socket.AF_INET6: + self.family = 2 + if srclen is None: + srclen = 56 + address = dns.rdata.Rdata._as_ipv6_address(address) + srclen = dns.rdata.Rdata._as_int(srclen, 0, 128) + scopelen = dns.rdata.Rdata._as_int(scopelen, 0, 128) + elif af == socket.AF_INET: + self.family = 1 + if srclen is None: + srclen = 24 + address = dns.rdata.Rdata._as_ipv4_address(address) + srclen = dns.rdata.Rdata._as_int(srclen, 0, 32) + scopelen = dns.rdata.Rdata._as_int(scopelen, 0, 32) + else: # pragma: no cover (this will never happen) + raise ValueError("Bad address family") + + assert srclen is not None + self.address = address + self.srclen = srclen + self.scopelen = scopelen + + addrdata = dns.inet.inet_pton(af, address) + nbytes = int(math.ceil(srclen / 8.0)) + + # Truncate to srclen and pad to the end of the last octet needed + # See RFC section 6 + self.addrdata = addrdata[:nbytes] + nbits = srclen % 8 + if nbits != 0: + last = struct.pack("B", ord(self.addrdata[-1:]) & (0xFF << (8 - nbits))) + self.addrdata = self.addrdata[:-1] + last + + def to_text(self) -> str: + return f"ECS {self.address}/{self.srclen} scope/{self.scopelen}" + + @staticmethod + def from_text(text: str) -> Option: + """Convert a string into a `dns.edns.ECSOption` + + *text*, a `str`, the text form of the option. + + Returns a `dns.edns.ECSOption`. + + Examples: + + >>> import dns.edns + >>> + >>> # basic example + >>> dns.edns.ECSOption.from_text('1.2.3.4/24') + >>> + >>> # also understands scope + >>> dns.edns.ECSOption.from_text('1.2.3.4/24/32') + >>> + >>> # IPv6 + >>> dns.edns.ECSOption.from_text('2001:4b98::1/64/64') + >>> + >>> # it understands results from `dns.edns.ECSOption.to_text()` + >>> dns.edns.ECSOption.from_text('ECS 1.2.3.4/24/32') + """ + optional_prefix = "ECS" + tokens = text.split() + ecs_text = None + if len(tokens) == 1: + ecs_text = tokens[0] + elif len(tokens) == 2: + if tokens[0] != optional_prefix: + raise ValueError(f'could not parse ECS from "{text}"') + ecs_text = tokens[1] + else: + raise ValueError(f'could not parse ECS from "{text}"') + n_slashes = ecs_text.count("/") + if n_slashes == 1: + address, tsrclen = ecs_text.split("/") + tscope = "0" + elif n_slashes == 2: + address, tsrclen, tscope = ecs_text.split("/") + else: + raise ValueError(f'could not parse ECS from "{text}"') + try: + scope = int(tscope) + except ValueError: + raise ValueError("invalid scope " + f'"{tscope}": scope must be an integer') + try: + srclen = int(tsrclen) + except ValueError: + raise ValueError( + "invalid srclen " + f'"{tsrclen}": srclen must be an integer' + ) + return ECSOption(address, srclen, scope) + + def to_wire(self, file: Optional[Any] = None) -> Optional[bytes]: + value = ( + struct.pack("!HBB", self.family, self.srclen, self.scopelen) + self.addrdata + ) + if file: + file.write(value) + return None + else: + return value + + @classmethod + def from_wire_parser( + cls, otype: Union[OptionType, str], parser: "dns.wire.Parser" + ) -> Option: + family, src, scope = parser.get_struct("!HBB") + addrlen = int(math.ceil(src / 8.0)) + prefix = parser.get_bytes(addrlen) + if family == 1: + pad = 4 - addrlen + addr = dns.ipv4.inet_ntoa(prefix + b"\x00" * pad) + elif family == 2: + pad = 16 - addrlen + addr = dns.ipv6.inet_ntoa(prefix + b"\x00" * pad) + else: + raise ValueError("unsupported family") + + return cls(addr, src, scope) + + +class EDECode(dns.enum.IntEnum): + OTHER = 0 + UNSUPPORTED_DNSKEY_ALGORITHM = 1 + UNSUPPORTED_DS_DIGEST_TYPE = 2 + STALE_ANSWER = 3 + FORGED_ANSWER = 4 + DNSSEC_INDETERMINATE = 5 + DNSSEC_BOGUS = 6 + SIGNATURE_EXPIRED = 7 + SIGNATURE_NOT_YET_VALID = 8 + DNSKEY_MISSING = 9 + RRSIGS_MISSING = 10 + NO_ZONE_KEY_BIT_SET = 11 + NSEC_MISSING = 12 + CACHED_ERROR = 13 + NOT_READY = 14 + BLOCKED = 15 + CENSORED = 16 + FILTERED = 17 + PROHIBITED = 18 + STALE_NXDOMAIN_ANSWER = 19 + NOT_AUTHORITATIVE = 20 + NOT_SUPPORTED = 21 + NO_REACHABLE_AUTHORITY = 22 + NETWORK_ERROR = 23 + INVALID_DATA = 24 + + @classmethod + def _maximum(cls): + return 65535 + + +class EDEOption(Option): # lgtm[py/missing-equals] + """Extended DNS Error (EDE, RFC8914)""" + + _preserve_case = {"DNSKEY", "DS", "DNSSEC", "RRSIGs", "NSEC", "NXDOMAIN"} + + def __init__(self, code: Union[EDECode, str], text: Optional[str] = None): + """*code*, a ``dns.edns.EDECode`` or ``str``, the info code of the + extended error. + + *text*, a ``str`` or ``None``, specifying additional information about + the error. + """ + + super().__init__(OptionType.EDE) + + self.code = EDECode.make(code) + if text is not None and not isinstance(text, str): + raise ValueError("text must be string or None") + self.text = text + + def to_text(self) -> str: + output = f"EDE {self.code}" + if self.code in EDECode: + desc = EDECode.to_text(self.code) + desc = " ".join( + word if word in self._preserve_case else word.title() + for word in desc.split("_") + ) + output += f" ({desc})" + if self.text is not None: + output += f": {self.text}" + return output + + def to_wire(self, file: Optional[Any] = None) -> Optional[bytes]: + value = struct.pack("!H", self.code) + if self.text is not None: + value += self.text.encode("utf8") + + if file: + file.write(value) + return None + else: + return value + + @classmethod + def from_wire_parser( + cls, otype: Union[OptionType, str], parser: "dns.wire.Parser" + ) -> Option: + code = EDECode.make(parser.get_uint16()) + text = parser.get_remaining() + + if text: + if text[-1] == 0: # text MAY be null-terminated + text = text[:-1] + btext = text.decode("utf8") + else: + btext = None + + return cls(code, btext) + + +class NSIDOption(Option): + def __init__(self, nsid: bytes): + super().__init__(OptionType.NSID) + self.nsid = nsid + + def to_wire(self, file: Any = None) -> Optional[bytes]: + if file: + file.write(self.nsid) + return None + else: + return self.nsid + + def to_text(self) -> str: + if all(c >= 0x20 and c <= 0x7E for c in self.nsid): + # All ASCII printable, so it's probably a string. + value = self.nsid.decode() + else: + value = binascii.hexlify(self.nsid).decode() + return f"NSID {value}" + + @classmethod + def from_wire_parser( + cls, otype: Union[OptionType, str], parser: dns.wire.Parser + ) -> Option: + return cls(parser.get_remaining()) + + +class CookieOption(Option): + def __init__(self, client: bytes, server: bytes): + super().__init__(dns.edns.OptionType.COOKIE) + self.client = client + self.server = server + if len(client) != 8: + raise ValueError("client cookie must be 8 bytes") + if len(server) != 0 and (len(server) < 8 or len(server) > 32): + raise ValueError("server cookie must be empty or between 8 and 32 bytes") + + def to_wire(self, file: Any = None) -> Optional[bytes]: + if file: + file.write(self.client) + if len(self.server) > 0: + file.write(self.server) + return None + else: + return self.client + self.server + + def to_text(self) -> str: + client = binascii.hexlify(self.client).decode() + if len(self.server) > 0: + server = binascii.hexlify(self.server).decode() + else: + server = "" + return f"COOKIE {client}{server}" + + @classmethod + def from_wire_parser( + cls, otype: Union[OptionType, str], parser: dns.wire.Parser + ) -> Option: + return cls(parser.get_bytes(8), parser.get_remaining()) + + +class ReportChannelOption(Option): + # RFC 9567 + def __init__(self, agent_domain: dns.name.Name): + super().__init__(OptionType.REPORTCHANNEL) + self.agent_domain = agent_domain + + def to_wire(self, file: Any = None) -> Optional[bytes]: + return self.agent_domain.to_wire(file) + + def to_text(self) -> str: + return "REPORTCHANNEL " + self.agent_domain.to_text() + + @classmethod + def from_wire_parser( + cls, otype: Union[OptionType, str], parser: dns.wire.Parser + ) -> Option: + return cls(parser.get_name()) + + +_type_to_class: Dict[OptionType, Any] = { + OptionType.ECS: ECSOption, + OptionType.EDE: EDEOption, + OptionType.NSID: NSIDOption, + OptionType.COOKIE: CookieOption, + OptionType.REPORTCHANNEL: ReportChannelOption, +} + + +def get_option_class(otype: OptionType) -> Any: + """Return the class for the specified option type. + + The GenericOption class is used if a more specific class is not + known. + """ + + cls = _type_to_class.get(otype) + if cls is None: + cls = GenericOption + return cls + + +def option_from_wire_parser( + otype: Union[OptionType, str], parser: "dns.wire.Parser" +) -> Option: + """Build an EDNS option object from wire format. + + *otype*, an ``int``, is the option type. + + *parser*, a ``dns.wire.Parser``, the parser, which should be + restricted to the option length. + + Returns an instance of a subclass of ``dns.edns.Option``. + """ + otype = OptionType.make(otype) + cls = get_option_class(otype) + return cls.from_wire_parser(otype, parser) + + +def option_from_wire( + otype: Union[OptionType, str], wire: bytes, current: int, olen: int +) -> Option: + """Build an EDNS option object from wire format. + + *otype*, an ``int``, is the option type. + + *wire*, a ``bytes``, is the wire-format message. + + *current*, an ``int``, is the offset in *wire* of the beginning + of the rdata. + + *olen*, an ``int``, is the length of the wire-format option data + + Returns an instance of a subclass of ``dns.edns.Option``. + """ + parser = dns.wire.Parser(wire, current) + with parser.restrict_to(olen): + return option_from_wire_parser(otype, parser) + + +def register_type(implementation: Any, otype: OptionType) -> None: + """Register the implementation of an option type. + + *implementation*, a ``class``, is a subclass of ``dns.edns.Option``. + + *otype*, an ``int``, is the option type. + """ + + _type_to_class[otype] = implementation + + +### BEGIN generated OptionType constants + +NSID = OptionType.NSID +DAU = OptionType.DAU +DHU = OptionType.DHU +N3U = OptionType.N3U +ECS = OptionType.ECS +EXPIRE = OptionType.EXPIRE +COOKIE = OptionType.COOKIE +KEEPALIVE = OptionType.KEEPALIVE +PADDING = OptionType.PADDING +CHAIN = OptionType.CHAIN +EDE = OptionType.EDE +REPORTCHANNEL = OptionType.REPORTCHANNEL + +### END generated OptionType constants diff --git a/.venv/lib/python3.11/site-packages/dns/entropy.py b/.venv/lib/python3.11/site-packages/dns/entropy.py new file mode 100644 index 0000000..4dcdc62 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/entropy.py @@ -0,0 +1,130 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2009-2017 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +import hashlib +import os +import random +import threading +import time +from typing import Any, Optional + + +class EntropyPool: + # This is an entropy pool for Python implementations that do not + # have a working SystemRandom. I'm not sure there are any, but + # leaving this code doesn't hurt anything as the library code + # is used if present. + + def __init__(self, seed: Optional[bytes] = None): + self.pool_index = 0 + self.digest: Optional[bytearray] = None + self.next_byte = 0 + self.lock = threading.Lock() + self.hash = hashlib.sha1() + self.hash_len = 20 + self.pool = bytearray(b"\0" * self.hash_len) + if seed is not None: + self._stir(seed) + self.seeded = True + self.seed_pid = os.getpid() + else: + self.seeded = False + self.seed_pid = 0 + + def _stir(self, entropy: bytes) -> None: + for c in entropy: + if self.pool_index == self.hash_len: + self.pool_index = 0 + b = c & 0xFF + self.pool[self.pool_index] ^= b + self.pool_index += 1 + + def stir(self, entropy: bytes) -> None: + with self.lock: + self._stir(entropy) + + def _maybe_seed(self) -> None: + if not self.seeded or self.seed_pid != os.getpid(): + try: + seed = os.urandom(16) + except Exception: # pragma: no cover + try: + with open("/dev/urandom", "rb", 0) as r: + seed = r.read(16) + except Exception: + seed = str(time.time()).encode() + self.seeded = True + self.seed_pid = os.getpid() + self.digest = None + seed = bytearray(seed) + self._stir(seed) + + def random_8(self) -> int: + with self.lock: + self._maybe_seed() + if self.digest is None or self.next_byte == self.hash_len: + self.hash.update(bytes(self.pool)) + self.digest = bytearray(self.hash.digest()) + self._stir(self.digest) + self.next_byte = 0 + value = self.digest[self.next_byte] + self.next_byte += 1 + return value + + def random_16(self) -> int: + return self.random_8() * 256 + self.random_8() + + def random_32(self) -> int: + return self.random_16() * 65536 + self.random_16() + + def random_between(self, first: int, last: int) -> int: + size = last - first + 1 + if size > 4294967296: + raise ValueError("too big") + if size > 65536: + rand = self.random_32 + max = 4294967295 + elif size > 256: + rand = self.random_16 + max = 65535 + else: + rand = self.random_8 + max = 255 + return first + size * rand() // (max + 1) + + +pool = EntropyPool() + +system_random: Optional[Any] +try: + system_random = random.SystemRandom() +except Exception: # pragma: no cover + system_random = None + + +def random_16() -> int: + if system_random is not None: + return system_random.randrange(0, 65536) + else: + return pool.random_16() + + +def between(first: int, last: int) -> int: + if system_random is not None: + return system_random.randrange(first, last + 1) + else: + return pool.random_between(first, last) diff --git a/.venv/lib/python3.11/site-packages/dns/enum.py b/.venv/lib/python3.11/site-packages/dns/enum.py new file mode 100644 index 0000000..71461f1 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/enum.py @@ -0,0 +1,116 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2003-2017 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +import enum +from typing import Type, TypeVar, Union + +TIntEnum = TypeVar("TIntEnum", bound="IntEnum") + + +class IntEnum(enum.IntEnum): + @classmethod + def _missing_(cls, value): + cls._check_value(value) + val = int.__new__(cls, value) + val._name_ = cls._extra_to_text(value, None) or f"{cls._prefix()}{value}" + val._value_ = value + return val + + @classmethod + def _check_value(cls, value): + max = cls._maximum() + if not isinstance(value, int): + raise TypeError + if value < 0 or value > max: + name = cls._short_name() + raise ValueError(f"{name} must be an int between >= 0 and <= {max}") + + @classmethod + def from_text(cls: Type[TIntEnum], text: str) -> TIntEnum: + text = text.upper() + try: + return cls[text] + except KeyError: + pass + value = cls._extra_from_text(text) + if value: + return value + prefix = cls._prefix() + if text.startswith(prefix) and text[len(prefix) :].isdigit(): + value = int(text[len(prefix) :]) + cls._check_value(value) + try: + return cls(value) + except ValueError: + return value + raise cls._unknown_exception_class() + + @classmethod + def to_text(cls: Type[TIntEnum], value: int) -> str: + cls._check_value(value) + try: + text = cls(value).name + except ValueError: + text = None + text = cls._extra_to_text(value, text) + if text is None: + text = f"{cls._prefix()}{value}" + return text + + @classmethod + def make(cls: Type[TIntEnum], value: Union[int, str]) -> TIntEnum: + """Convert text or a value into an enumerated type, if possible. + + *value*, the ``int`` or ``str`` to convert. + + Raises a class-specific exception if a ``str`` is provided that + cannot be converted. + + Raises ``ValueError`` if the value is out of range. + + Returns an enumeration from the calling class corresponding to the + value, if one is defined, or an ``int`` otherwise. + """ + + if isinstance(value, str): + return cls.from_text(value) + cls._check_value(value) + return cls(value) + + @classmethod + def _maximum(cls): + raise NotImplementedError # pragma: no cover + + @classmethod + def _short_name(cls): + return cls.__name__.lower() + + @classmethod + def _prefix(cls): + return "" + + @classmethod + def _extra_from_text(cls, text): # pylint: disable=W0613 + return None + + @classmethod + def _extra_to_text(cls, value, current_text): # pylint: disable=W0613 + return current_text + + @classmethod + def _unknown_exception_class(cls): + return ValueError diff --git a/.venv/lib/python3.11/site-packages/dns/exception.py b/.venv/lib/python3.11/site-packages/dns/exception.py new file mode 100644 index 0000000..223f2d6 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/exception.py @@ -0,0 +1,169 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2003-2017 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +"""Common DNS Exceptions. + +Dnspython modules may also define their own exceptions, which will +always be subclasses of ``DNSException``. +""" + + +from typing import Optional, Set + + +class DNSException(Exception): + """Abstract base class shared by all dnspython exceptions. + + It supports two basic modes of operation: + + a) Old/compatible mode is used if ``__init__`` was called with + empty *kwargs*. In compatible mode all *args* are passed + to the standard Python Exception class as before and all *args* are + printed by the standard ``__str__`` implementation. Class variable + ``msg`` (or doc string if ``msg`` is ``None``) is returned from ``str()`` + if *args* is empty. + + b) New/parametrized mode is used if ``__init__`` was called with + non-empty *kwargs*. + In the new mode *args* must be empty and all kwargs must match + those set in class variable ``supp_kwargs``. All kwargs are stored inside + ``self.kwargs`` and used in a new ``__str__`` implementation to construct + a formatted message based on the ``fmt`` class variable, a ``string``. + + In the simplest case it is enough to override the ``supp_kwargs`` + and ``fmt`` class variables to get nice parametrized messages. + """ + + msg: Optional[str] = None # non-parametrized message + supp_kwargs: Set[str] = set() # accepted parameters for _fmt_kwargs (sanity check) + fmt: Optional[str] = None # message parametrized with results from _fmt_kwargs + + def __init__(self, *args, **kwargs): + self._check_params(*args, **kwargs) + if kwargs: + # This call to a virtual method from __init__ is ok in our usage + self.kwargs = self._check_kwargs(**kwargs) # lgtm[py/init-calls-subclass] + self.msg = str(self) + else: + self.kwargs = dict() # defined but empty for old mode exceptions + if self.msg is None: + # doc string is better implicit message than empty string + self.msg = self.__doc__ + if args: + super().__init__(*args) + else: + super().__init__(self.msg) + + def _check_params(self, *args, **kwargs): + """Old exceptions supported only args and not kwargs. + + For sanity we do not allow to mix old and new behavior.""" + if args or kwargs: + assert bool(args) != bool( + kwargs + ), "keyword arguments are mutually exclusive with positional args" + + def _check_kwargs(self, **kwargs): + if kwargs: + assert ( + set(kwargs.keys()) == self.supp_kwargs + ), f"following set of keyword args is required: {self.supp_kwargs}" + return kwargs + + def _fmt_kwargs(self, **kwargs): + """Format kwargs before printing them. + + Resulting dictionary has to have keys necessary for str.format call + on fmt class variable. + """ + fmtargs = {} + for kw, data in kwargs.items(): + if isinstance(data, (list, set)): + # convert list of to list of str() + fmtargs[kw] = list(map(str, data)) + if len(fmtargs[kw]) == 1: + # remove list brackets [] from single-item lists + fmtargs[kw] = fmtargs[kw].pop() + else: + fmtargs[kw] = data + return fmtargs + + def __str__(self): + if self.kwargs and self.fmt: + # provide custom message constructed from keyword arguments + fmtargs = self._fmt_kwargs(**self.kwargs) + return self.fmt.format(**fmtargs) + else: + # print *args directly in the same way as old DNSException + return super().__str__() + + +class FormError(DNSException): + """DNS message is malformed.""" + + +class SyntaxError(DNSException): + """Text input is malformed.""" + + +class UnexpectedEnd(SyntaxError): + """Text input ended unexpectedly.""" + + +class TooBig(DNSException): + """The DNS message is too big.""" + + +class Timeout(DNSException): + """The DNS operation timed out.""" + + supp_kwargs = {"timeout"} + fmt = "The DNS operation timed out after {timeout:.3f} seconds" + + # We do this as otherwise mypy complains about unexpected keyword argument + # idna_exception + def __init__(self, *args, **kwargs): + super().__init__(*args, **kwargs) + + +class UnsupportedAlgorithm(DNSException): + """The DNSSEC algorithm is not supported.""" + + +class AlgorithmKeyMismatch(UnsupportedAlgorithm): + """The DNSSEC algorithm is not supported for the given key type.""" + + +class ValidationFailure(DNSException): + """The DNSSEC signature is invalid.""" + + +class DeniedByPolicy(DNSException): + """Denied by DNSSEC policy.""" + + +class ExceptionWrapper: + def __init__(self, exception_class): + self.exception_class = exception_class + + def __enter__(self): + return self + + def __exit__(self, exc_type, exc_val, exc_tb): + if exc_type is not None and not isinstance(exc_val, self.exception_class): + raise self.exception_class(str(exc_val)) from exc_val + return False diff --git a/.venv/lib/python3.11/site-packages/dns/flags.py b/.venv/lib/python3.11/site-packages/dns/flags.py new file mode 100644 index 0000000..4c60be1 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/flags.py @@ -0,0 +1,123 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2001-2017 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +"""DNS Message Flags.""" + +import enum +from typing import Any + +# Standard DNS flags + + +class Flag(enum.IntFlag): + #: Query Response + QR = 0x8000 + #: Authoritative Answer + AA = 0x0400 + #: Truncated Response + TC = 0x0200 + #: Recursion Desired + RD = 0x0100 + #: Recursion Available + RA = 0x0080 + #: Authentic Data + AD = 0x0020 + #: Checking Disabled + CD = 0x0010 + + +# EDNS flags + + +class EDNSFlag(enum.IntFlag): + #: DNSSEC answer OK + DO = 0x8000 + + +def _from_text(text: str, enum_class: Any) -> int: + flags = 0 + tokens = text.split() + for t in tokens: + flags |= enum_class[t.upper()] + return flags + + +def _to_text(flags: int, enum_class: Any) -> str: + text_flags = [] + for k, v in enum_class.__members__.items(): + if flags & v != 0: + text_flags.append(k) + return " ".join(text_flags) + + +def from_text(text: str) -> int: + """Convert a space-separated list of flag text values into a flags + value. + + Returns an ``int`` + """ + + return _from_text(text, Flag) + + +def to_text(flags: int) -> str: + """Convert a flags value into a space-separated list of flag text + values. + + Returns a ``str``. + """ + + return _to_text(flags, Flag) + + +def edns_from_text(text: str) -> int: + """Convert a space-separated list of EDNS flag text values into a EDNS + flags value. + + Returns an ``int`` + """ + + return _from_text(text, EDNSFlag) + + +def edns_to_text(flags: int) -> str: + """Convert an EDNS flags value into a space-separated list of EDNS flag + text values. + + Returns a ``str``. + """ + + return _to_text(flags, EDNSFlag) + + +### BEGIN generated Flag constants + +QR = Flag.QR +AA = Flag.AA +TC = Flag.TC +RD = Flag.RD +RA = Flag.RA +AD = Flag.AD +CD = Flag.CD + +### END generated Flag constants + +### BEGIN generated EDNSFlag constants + +DO = EDNSFlag.DO + +### END generated EDNSFlag constants diff --git a/.venv/lib/python3.11/site-packages/dns/grange.py b/.venv/lib/python3.11/site-packages/dns/grange.py new file mode 100644 index 0000000..a967ca4 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/grange.py @@ -0,0 +1,72 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2012-2017 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +"""DNS GENERATE range conversion.""" + +from typing import Tuple + +import dns + + +def from_text(text: str) -> Tuple[int, int, int]: + """Convert the text form of a range in a ``$GENERATE`` statement to an + integer. + + *text*, a ``str``, the textual range in ``$GENERATE`` form. + + Returns a tuple of three ``int`` values ``(start, stop, step)``. + """ + + start = -1 + stop = -1 + step = 1 + cur = "" + state = 0 + # state 0 1 2 + # x - y / z + + if text and text[0] == "-": + raise dns.exception.SyntaxError("Start cannot be a negative number") + + for c in text: + if c == "-" and state == 0: + start = int(cur) + cur = "" + state = 1 + elif c == "/": + stop = int(cur) + cur = "" + state = 2 + elif c.isdigit(): + cur += c + else: + raise dns.exception.SyntaxError(f"Could not parse {c}") + + if state == 0: + raise dns.exception.SyntaxError("no stop value specified") + elif state == 1: + stop = int(cur) + else: + assert state == 2 + step = int(cur) + + assert step >= 1 + assert start >= 0 + if start > stop: + raise dns.exception.SyntaxError("start must be <= stop") + + return (start, stop, step) diff --git a/.venv/lib/python3.11/site-packages/dns/immutable.py b/.venv/lib/python3.11/site-packages/dns/immutable.py new file mode 100644 index 0000000..36b0362 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/immutable.py @@ -0,0 +1,68 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +import collections.abc +from typing import Any, Callable + +from dns._immutable_ctx import immutable + + +@immutable +class Dict(collections.abc.Mapping): # lgtm[py/missing-equals] + def __init__( + self, + dictionary: Any, + no_copy: bool = False, + map_factory: Callable[[], collections.abc.MutableMapping] = dict, + ): + """Make an immutable dictionary from the specified dictionary. + + If *no_copy* is `True`, then *dictionary* will be wrapped instead + of copied. Only set this if you are sure there will be no external + references to the dictionary. + """ + if no_copy and isinstance(dictionary, collections.abc.MutableMapping): + self._odict = dictionary + else: + self._odict = map_factory() + self._odict.update(dictionary) + self._hash = None + + def __getitem__(self, key): + return self._odict.__getitem__(key) + + def __hash__(self): # pylint: disable=invalid-hash-returned + if self._hash is None: + h = 0 + for key in sorted(self._odict.keys()): + h ^= hash(key) + object.__setattr__(self, "_hash", h) + # this does return an int, but pylint doesn't figure that out + return self._hash + + def __len__(self): + return len(self._odict) + + def __iter__(self): + return iter(self._odict) + + +def constify(o: Any) -> Any: + """ + Convert mutable types to immutable types. + """ + if isinstance(o, bytearray): + return bytes(o) + if isinstance(o, tuple): + try: + hash(o) + return o + except Exception: + return tuple(constify(elt) for elt in o) + if isinstance(o, list): + return tuple(constify(elt) for elt in o) + if isinstance(o, dict): + cdict = dict() + for k, v in o.items(): + cdict[k] = constify(v) + return Dict(cdict, True) + return o diff --git a/.venv/lib/python3.11/site-packages/dns/inet.py b/.venv/lib/python3.11/site-packages/dns/inet.py new file mode 100644 index 0000000..4a03f99 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/inet.py @@ -0,0 +1,197 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2003-2017 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +"""Generic Internet address helper functions.""" + +import socket +from typing import Any, Optional, Tuple + +import dns.ipv4 +import dns.ipv6 + +# We assume that AF_INET and AF_INET6 are always defined. We keep +# these here for the benefit of any old code (unlikely though that +# is!). +AF_INET = socket.AF_INET +AF_INET6 = socket.AF_INET6 + + +def inet_pton(family: int, text: str) -> bytes: + """Convert the textual form of a network address into its binary form. + + *family* is an ``int``, the address family. + + *text* is a ``str``, the textual address. + + Raises ``NotImplementedError`` if the address family specified is not + implemented. + + Returns a ``bytes``. + """ + + if family == AF_INET: + return dns.ipv4.inet_aton(text) + elif family == AF_INET6: + return dns.ipv6.inet_aton(text, True) + else: + raise NotImplementedError + + +def inet_ntop(family: int, address: bytes) -> str: + """Convert the binary form of a network address into its textual form. + + *family* is an ``int``, the address family. + + *address* is a ``bytes``, the network address in binary form. + + Raises ``NotImplementedError`` if the address family specified is not + implemented. + + Returns a ``str``. + """ + + if family == AF_INET: + return dns.ipv4.inet_ntoa(address) + elif family == AF_INET6: + return dns.ipv6.inet_ntoa(address) + else: + raise NotImplementedError + + +def af_for_address(text: str) -> int: + """Determine the address family of a textual-form network address. + + *text*, a ``str``, the textual address. + + Raises ``ValueError`` if the address family cannot be determined + from the input. + + Returns an ``int``. + """ + + try: + dns.ipv4.inet_aton(text) + return AF_INET + except Exception: + try: + dns.ipv6.inet_aton(text, True) + return AF_INET6 + except Exception: + raise ValueError + + +def is_multicast(text: str) -> bool: + """Is the textual-form network address a multicast address? + + *text*, a ``str``, the textual address. + + Raises ``ValueError`` if the address family cannot be determined + from the input. + + Returns a ``bool``. + """ + + try: + first = dns.ipv4.inet_aton(text)[0] + return first >= 224 and first <= 239 + except Exception: + try: + first = dns.ipv6.inet_aton(text, True)[0] + return first == 255 + except Exception: + raise ValueError + + +def is_address(text: str) -> bool: + """Is the specified string an IPv4 or IPv6 address? + + *text*, a ``str``, the textual address. + + Returns a ``bool``. + """ + + try: + dns.ipv4.inet_aton(text) + return True + except Exception: + try: + dns.ipv6.inet_aton(text, True) + return True + except Exception: + return False + + +def low_level_address_tuple( + high_tuple: Tuple[str, int], af: Optional[int] = None +) -> Any: + """Given a "high-level" address tuple, i.e. + an (address, port) return the appropriate "low-level" address tuple + suitable for use in socket calls. + + If an *af* other than ``None`` is provided, it is assumed the + address in the high-level tuple is valid and has that af. If af + is ``None``, then af_for_address will be called. + """ + address, port = high_tuple + if af is None: + af = af_for_address(address) + if af == AF_INET: + return (address, port) + elif af == AF_INET6: + i = address.find("%") + if i < 0: + # no scope, shortcut! + return (address, port, 0, 0) + # try to avoid getaddrinfo() + addrpart = address[:i] + scope = address[i + 1 :] + if scope.isdigit(): + return (addrpart, port, 0, int(scope)) + try: + return (addrpart, port, 0, socket.if_nametoindex(scope)) + except AttributeError: # pragma: no cover (we can't really test this) + ai_flags = socket.AI_NUMERICHOST + ((*_, tup), *_) = socket.getaddrinfo(address, port, flags=ai_flags) + return tup + else: + raise NotImplementedError(f"unknown address family {af}") + + +def any_for_af(af): + """Return the 'any' address for the specified address family.""" + if af == socket.AF_INET: + return "0.0.0.0" + elif af == socket.AF_INET6: + return "::" + raise NotImplementedError(f"unknown address family {af}") + + +def canonicalize(text: str) -> str: + """Verify that *address* is a valid text form IPv4 or IPv6 address and return its + canonical text form. IPv6 addresses with scopes are rejected. + + *text*, a ``str``, the address in textual form. + + Raises ``ValueError`` if the text is not valid. + """ + try: + return dns.ipv6.canonicalize(text) + except Exception: + try: + return dns.ipv4.canonicalize(text) + except Exception: + raise ValueError diff --git a/.venv/lib/python3.11/site-packages/dns/ipv4.py b/.venv/lib/python3.11/site-packages/dns/ipv4.py new file mode 100644 index 0000000..65ee69c --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/ipv4.py @@ -0,0 +1,77 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2003-2017 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +"""IPv4 helper functions.""" + +import struct +from typing import Union + +import dns.exception + + +def inet_ntoa(address: bytes) -> str: + """Convert an IPv4 address in binary form to text form. + + *address*, a ``bytes``, the IPv4 address in binary form. + + Returns a ``str``. + """ + + if len(address) != 4: + raise dns.exception.SyntaxError + return "%u.%u.%u.%u" % (address[0], address[1], address[2], address[3]) + + +def inet_aton(text: Union[str, bytes]) -> bytes: + """Convert an IPv4 address in text form to binary form. + + *text*, a ``str`` or ``bytes``, the IPv4 address in textual form. + + Returns a ``bytes``. + """ + + if not isinstance(text, bytes): + btext = text.encode() + else: + btext = text + parts = btext.split(b".") + if len(parts) != 4: + raise dns.exception.SyntaxError + for part in parts: + if not part.isdigit(): + raise dns.exception.SyntaxError + if len(part) > 1 and part[0] == ord("0"): + # No leading zeros + raise dns.exception.SyntaxError + try: + b = [int(part) for part in parts] + return struct.pack("BBBB", *b) + except Exception: + raise dns.exception.SyntaxError + + +def canonicalize(text: Union[str, bytes]) -> str: + """Verify that *address* is a valid text form IPv4 address and return its + canonical text form. + + *text*, a ``str`` or ``bytes``, the IPv4 address in textual form. + + Raises ``dns.exception.SyntaxError`` if the text is not valid. + """ + # Note that inet_aton() only accepts canonial form, but we still run through + # inet_ntoa() to ensure the output is a str. + return dns.ipv4.inet_ntoa(dns.ipv4.inet_aton(text)) diff --git a/.venv/lib/python3.11/site-packages/dns/ipv6.py b/.venv/lib/python3.11/site-packages/dns/ipv6.py new file mode 100644 index 0000000..4dd1d1c --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/ipv6.py @@ -0,0 +1,217 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2003-2017 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +"""IPv6 helper functions.""" + +import binascii +import re +from typing import List, Union + +import dns.exception +import dns.ipv4 + +_leading_zero = re.compile(r"0+([0-9a-f]+)") + + +def inet_ntoa(address: bytes) -> str: + """Convert an IPv6 address in binary form to text form. + + *address*, a ``bytes``, the IPv6 address in binary form. + + Raises ``ValueError`` if the address isn't 16 bytes long. + Returns a ``str``. + """ + + if len(address) != 16: + raise ValueError("IPv6 addresses are 16 bytes long") + hex = binascii.hexlify(address) + chunks = [] + i = 0 + l = len(hex) + while i < l: + chunk = hex[i : i + 4].decode() + # strip leading zeros. we do this with an re instead of + # with lstrip() because lstrip() didn't support chars until + # python 2.2.2 + m = _leading_zero.match(chunk) + if m is not None: + chunk = m.group(1) + chunks.append(chunk) + i += 4 + # + # Compress the longest subsequence of 0-value chunks to :: + # + best_start = 0 + best_len = 0 + start = -1 + last_was_zero = False + for i in range(8): + if chunks[i] != "0": + if last_was_zero: + end = i + current_len = end - start + if current_len > best_len: + best_start = start + best_len = current_len + last_was_zero = False + elif not last_was_zero: + start = i + last_was_zero = True + if last_was_zero: + end = 8 + current_len = end - start + if current_len > best_len: + best_start = start + best_len = current_len + if best_len > 1: + if best_start == 0 and (best_len == 6 or best_len == 5 and chunks[5] == "ffff"): + # We have an embedded IPv4 address + if best_len == 6: + prefix = "::" + else: + prefix = "::ffff:" + thex = prefix + dns.ipv4.inet_ntoa(address[12:]) + else: + thex = ( + ":".join(chunks[:best_start]) + + "::" + + ":".join(chunks[best_start + best_len :]) + ) + else: + thex = ":".join(chunks) + return thex + + +_v4_ending = re.compile(rb"(.*):(\d+\.\d+\.\d+\.\d+)$") +_colon_colon_start = re.compile(rb"::.*") +_colon_colon_end = re.compile(rb".*::$") + + +def inet_aton(text: Union[str, bytes], ignore_scope: bool = False) -> bytes: + """Convert an IPv6 address in text form to binary form. + + *text*, a ``str`` or ``bytes``, the IPv6 address in textual form. + + *ignore_scope*, a ``bool``. If ``True``, a scope will be ignored. + If ``False``, the default, it is an error for a scope to be present. + + Returns a ``bytes``. + """ + + # + # Our aim here is not something fast; we just want something that works. + # + if not isinstance(text, bytes): + btext = text.encode() + else: + btext = text + + if ignore_scope: + parts = btext.split(b"%") + l = len(parts) + if l == 2: + btext = parts[0] + elif l > 2: + raise dns.exception.SyntaxError + + if btext == b"": + raise dns.exception.SyntaxError + elif btext.endswith(b":") and not btext.endswith(b"::"): + raise dns.exception.SyntaxError + elif btext.startswith(b":") and not btext.startswith(b"::"): + raise dns.exception.SyntaxError + elif btext == b"::": + btext = b"0::" + # + # Get rid of the icky dot-quad syntax if we have it. + # + m = _v4_ending.match(btext) + if m is not None: + b = dns.ipv4.inet_aton(m.group(2)) + btext = ( + f"{m.group(1).decode()}:{b[0]:02x}{b[1]:02x}:{b[2]:02x}{b[3]:02x}" + ).encode() + # + # Try to turn '::' into ':'; if no match try to + # turn '::' into ':' + # + m = _colon_colon_start.match(btext) + if m is not None: + btext = btext[1:] + else: + m = _colon_colon_end.match(btext) + if m is not None: + btext = btext[:-1] + # + # Now canonicalize into 8 chunks of 4 hex digits each + # + chunks = btext.split(b":") + l = len(chunks) + if l > 8: + raise dns.exception.SyntaxError + seen_empty = False + canonical: List[bytes] = [] + for c in chunks: + if c == b"": + if seen_empty: + raise dns.exception.SyntaxError + seen_empty = True + for _ in range(0, 8 - l + 1): + canonical.append(b"0000") + else: + lc = len(c) + if lc > 4: + raise dns.exception.SyntaxError + if lc != 4: + c = (b"0" * (4 - lc)) + c + canonical.append(c) + if l < 8 and not seen_empty: + raise dns.exception.SyntaxError + btext = b"".join(canonical) + + # + # Finally we can go to binary. + # + try: + return binascii.unhexlify(btext) + except (binascii.Error, TypeError): + raise dns.exception.SyntaxError + + +_mapped_prefix = b"\x00" * 10 + b"\xff\xff" + + +def is_mapped(address: bytes) -> bool: + """Is the specified address a mapped IPv4 address? + + *address*, a ``bytes`` is an IPv6 address in binary form. + + Returns a ``bool``. + """ + + return address.startswith(_mapped_prefix) + + +def canonicalize(text: Union[str, bytes]) -> str: + """Verify that *address* is a valid text form IPv6 address and return its + canonical text form. Addresses with scopes are rejected. + + *text*, a ``str`` or ``bytes``, the IPv6 address in textual form. + + Raises ``dns.exception.SyntaxError`` if the text is not valid. + """ + return dns.ipv6.inet_ntoa(dns.ipv6.inet_aton(text)) diff --git a/.venv/lib/python3.11/site-packages/dns/message.py b/.venv/lib/python3.11/site-packages/dns/message.py new file mode 100644 index 0000000..e978a0a --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/message.py @@ -0,0 +1,1933 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2001-2017 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +"""DNS Messages""" + +import contextlib +import enum +import io +import time +from typing import Any, Dict, List, Optional, Tuple, Union, cast + +import dns.edns +import dns.entropy +import dns.enum +import dns.exception +import dns.flags +import dns.name +import dns.opcode +import dns.rcode +import dns.rdata +import dns.rdataclass +import dns.rdatatype +import dns.rdtypes.ANY.OPT +import dns.rdtypes.ANY.TSIG +import dns.renderer +import dns.rrset +import dns.tsig +import dns.ttl +import dns.wire + + +class ShortHeader(dns.exception.FormError): + """The DNS packet passed to from_wire() is too short.""" + + +class TrailingJunk(dns.exception.FormError): + """The DNS packet passed to from_wire() has extra junk at the end of it.""" + + +class UnknownHeaderField(dns.exception.DNSException): + """The header field name was not recognized when converting from text + into a message.""" + + +class BadEDNS(dns.exception.FormError): + """An OPT record occurred somewhere other than + the additional data section.""" + + +class BadTSIG(dns.exception.FormError): + """A TSIG record occurred somewhere other than the end of + the additional data section.""" + + +class UnknownTSIGKey(dns.exception.DNSException): + """A TSIG with an unknown key was received.""" + + +class Truncated(dns.exception.DNSException): + """The truncated flag is set.""" + + supp_kwargs = {"message"} + + # We do this as otherwise mypy complains about unexpected keyword argument + # idna_exception + def __init__(self, *args, **kwargs): + super().__init__(*args, **kwargs) + + def message(self): + """As much of the message as could be processed. + + Returns a ``dns.message.Message``. + """ + return self.kwargs["message"] + + +class NotQueryResponse(dns.exception.DNSException): + """Message is not a response to a query.""" + + +class ChainTooLong(dns.exception.DNSException): + """The CNAME chain is too long.""" + + +class AnswerForNXDOMAIN(dns.exception.DNSException): + """The rcode is NXDOMAIN but an answer was found.""" + + +class NoPreviousName(dns.exception.SyntaxError): + """No previous name was known.""" + + +class MessageSection(dns.enum.IntEnum): + """Message sections""" + + QUESTION = 0 + ANSWER = 1 + AUTHORITY = 2 + ADDITIONAL = 3 + + @classmethod + def _maximum(cls): + return 3 + + +class MessageError: + def __init__(self, exception: Exception, offset: int): + self.exception = exception + self.offset = offset + + +DEFAULT_EDNS_PAYLOAD = 1232 +MAX_CHAIN = 16 + +IndexKeyType = Tuple[ + int, + dns.name.Name, + dns.rdataclass.RdataClass, + dns.rdatatype.RdataType, + Optional[dns.rdatatype.RdataType], + Optional[dns.rdataclass.RdataClass], +] +IndexType = Dict[IndexKeyType, dns.rrset.RRset] +SectionType = Union[int, str, List[dns.rrset.RRset]] + + +class Message: + """A DNS message.""" + + _section_enum = MessageSection + + def __init__(self, id: Optional[int] = None): + if id is None: + self.id = dns.entropy.random_16() + else: + self.id = id + self.flags = 0 + self.sections: List[List[dns.rrset.RRset]] = [[], [], [], []] + self.opt: Optional[dns.rrset.RRset] = None + self.request_payload = 0 + self.pad = 0 + self.keyring: Any = None + self.tsig: Optional[dns.rrset.RRset] = None + self.request_mac = b"" + self.xfr = False + self.origin: Optional[dns.name.Name] = None + self.tsig_ctx: Optional[Any] = None + self.index: IndexType = {} + self.errors: List[MessageError] = [] + self.time = 0.0 + self.wire: Optional[bytes] = None + + @property + def question(self) -> List[dns.rrset.RRset]: + """The question section.""" + return self.sections[0] + + @question.setter + def question(self, v): + self.sections[0] = v + + @property + def answer(self) -> List[dns.rrset.RRset]: + """The answer section.""" + return self.sections[1] + + @answer.setter + def answer(self, v): + self.sections[1] = v + + @property + def authority(self) -> List[dns.rrset.RRset]: + """The authority section.""" + return self.sections[2] + + @authority.setter + def authority(self, v): + self.sections[2] = v + + @property + def additional(self) -> List[dns.rrset.RRset]: + """The additional data section.""" + return self.sections[3] + + @additional.setter + def additional(self, v): + self.sections[3] = v + + def __repr__(self): + return "" + + def __str__(self): + return self.to_text() + + def to_text( + self, + origin: Optional[dns.name.Name] = None, + relativize: bool = True, + **kw: Dict[str, Any], + ) -> str: + """Convert the message to text. + + The *origin*, *relativize*, and any other keyword + arguments are passed to the RRset ``to_wire()`` method. + + Returns a ``str``. + """ + + s = io.StringIO() + s.write("id %d\n" % self.id) + s.write(f"opcode {dns.opcode.to_text(self.opcode())}\n") + s.write(f"rcode {dns.rcode.to_text(self.rcode())}\n") + s.write(f"flags {dns.flags.to_text(self.flags)}\n") + if self.edns >= 0: + s.write(f"edns {self.edns}\n") + if self.ednsflags != 0: + s.write(f"eflags {dns.flags.edns_to_text(self.ednsflags)}\n") + s.write("payload %d\n" % self.payload) + for opt in self.options: + s.write(f"option {opt.to_text()}\n") + for name, which in self._section_enum.__members__.items(): + s.write(f";{name}\n") + for rrset in self.section_from_number(which): + s.write(rrset.to_text(origin, relativize, **kw)) + s.write("\n") + # + # We strip off the final \n so the caller can print the result without + # doing weird things to get around eccentricities in Python print + # formatting + # + return s.getvalue()[:-1] + + def __eq__(self, other): + """Two messages are equal if they have the same content in the + header, question, answer, and authority sections. + + Returns a ``bool``. + """ + + if not isinstance(other, Message): + return False + if self.id != other.id: + return False + if self.flags != other.flags: + return False + for i, section in enumerate(self.sections): + other_section = other.sections[i] + for n in section: + if n not in other_section: + return False + for n in other_section: + if n not in section: + return False + return True + + def __ne__(self, other): + return not self.__eq__(other) + + def is_response(self, other: "Message") -> bool: + """Is *other*, also a ``dns.message.Message``, a response to this + message? + + Returns a ``bool``. + """ + + if ( + other.flags & dns.flags.QR == 0 + or self.id != other.id + or dns.opcode.from_flags(self.flags) != dns.opcode.from_flags(other.flags) + ): + return False + if other.rcode() in { + dns.rcode.FORMERR, + dns.rcode.SERVFAIL, + dns.rcode.NOTIMP, + dns.rcode.REFUSED, + }: + # We don't check the question section in these cases if + # the other question section is empty, even though they + # still really ought to have a question section. + if len(other.question) == 0: + return True + if dns.opcode.is_update(self.flags): + # This is assuming the "sender doesn't include anything + # from the update", but we don't care to check the other + # case, which is that all the sections are returned and + # identical. + return True + for n in self.question: + if n not in other.question: + return False + for n in other.question: + if n not in self.question: + return False + return True + + def section_number(self, section: List[dns.rrset.RRset]) -> int: + """Return the "section number" of the specified section for use + in indexing. + + *section* is one of the section attributes of this message. + + Raises ``ValueError`` if the section isn't known. + + Returns an ``int``. + """ + + for i, our_section in enumerate(self.sections): + if section is our_section: + return self._section_enum(i) + raise ValueError("unknown section") + + def section_from_number(self, number: int) -> List[dns.rrset.RRset]: + """Return the section list associated with the specified section + number. + + *number* is a section number `int` or the text form of a section + name. + + Raises ``ValueError`` if the section isn't known. + + Returns a ``list``. + """ + + section = self._section_enum.make(number) + return self.sections[section] + + def find_rrset( + self, + section: SectionType, + name: dns.name.Name, + rdclass: dns.rdataclass.RdataClass, + rdtype: dns.rdatatype.RdataType, + covers: dns.rdatatype.RdataType = dns.rdatatype.NONE, + deleting: Optional[dns.rdataclass.RdataClass] = None, + create: bool = False, + force_unique: bool = False, + idna_codec: Optional[dns.name.IDNACodec] = None, + ) -> dns.rrset.RRset: + """Find the RRset with the given attributes in the specified section. + + *section*, an ``int`` section number, a ``str`` section name, or one of + the section attributes of this message. This specifies the + the section of the message to search. For example:: + + my_message.find_rrset(my_message.answer, name, rdclass, rdtype) + my_message.find_rrset(dns.message.ANSWER, name, rdclass, rdtype) + my_message.find_rrset("ANSWER", name, rdclass, rdtype) + + *name*, a ``dns.name.Name`` or ``str``, the name of the RRset. + + *rdclass*, an ``int`` or ``str``, the class of the RRset. + + *rdtype*, an ``int`` or ``str``, the type of the RRset. + + *covers*, an ``int`` or ``str``, the covers value of the RRset. + The default is ``dns.rdatatype.NONE``. + + *deleting*, an ``int``, ``str``, or ``None``, the deleting value of the + RRset. The default is ``None``. + + *create*, a ``bool``. If ``True``, create the RRset if it is not found. + The created RRset is appended to *section*. + + *force_unique*, a ``bool``. If ``True`` and *create* is also ``True``, + create a new RRset regardless of whether a matching RRset exists + already. The default is ``False``. This is useful when creating + DDNS Update messages, as order matters for them. + + *idna_codec*, a ``dns.name.IDNACodec``, specifies the IDNA + encoder/decoder. If ``None``, the default IDNA 2003 encoder/decoder + is used. + + Raises ``KeyError`` if the RRset was not found and create was + ``False``. + + Returns a ``dns.rrset.RRset object``. + """ + + if isinstance(section, int): + section_number = section + section = self.section_from_number(section_number) + elif isinstance(section, str): + section_number = self._section_enum.from_text(section) + section = self.section_from_number(section_number) + else: + section_number = self.section_number(section) + if isinstance(name, str): + name = dns.name.from_text(name, idna_codec=idna_codec) + rdtype = dns.rdatatype.RdataType.make(rdtype) + rdclass = dns.rdataclass.RdataClass.make(rdclass) + covers = dns.rdatatype.RdataType.make(covers) + if deleting is not None: + deleting = dns.rdataclass.RdataClass.make(deleting) + key = (section_number, name, rdclass, rdtype, covers, deleting) + if not force_unique: + if self.index is not None: + rrset = self.index.get(key) + if rrset is not None: + return rrset + else: + for rrset in section: + if rrset.full_match(name, rdclass, rdtype, covers, deleting): + return rrset + if not create: + raise KeyError + rrset = dns.rrset.RRset(name, rdclass, rdtype, covers, deleting) + section.append(rrset) + if self.index is not None: + self.index[key] = rrset + return rrset + + def get_rrset( + self, + section: SectionType, + name: dns.name.Name, + rdclass: dns.rdataclass.RdataClass, + rdtype: dns.rdatatype.RdataType, + covers: dns.rdatatype.RdataType = dns.rdatatype.NONE, + deleting: Optional[dns.rdataclass.RdataClass] = None, + create: bool = False, + force_unique: bool = False, + idna_codec: Optional[dns.name.IDNACodec] = None, + ) -> Optional[dns.rrset.RRset]: + """Get the RRset with the given attributes in the specified section. + + If the RRset is not found, None is returned. + + *section*, an ``int`` section number, a ``str`` section name, or one of + the section attributes of this message. This specifies the + the section of the message to search. For example:: + + my_message.get_rrset(my_message.answer, name, rdclass, rdtype) + my_message.get_rrset(dns.message.ANSWER, name, rdclass, rdtype) + my_message.get_rrset("ANSWER", name, rdclass, rdtype) + + *name*, a ``dns.name.Name`` or ``str``, the name of the RRset. + + *rdclass*, an ``int`` or ``str``, the class of the RRset. + + *rdtype*, an ``int`` or ``str``, the type of the RRset. + + *covers*, an ``int`` or ``str``, the covers value of the RRset. + The default is ``dns.rdatatype.NONE``. + + *deleting*, an ``int``, ``str``, or ``None``, the deleting value of the + RRset. The default is ``None``. + + *create*, a ``bool``. If ``True``, create the RRset if it is not found. + The created RRset is appended to *section*. + + *force_unique*, a ``bool``. If ``True`` and *create* is also ``True``, + create a new RRset regardless of whether a matching RRset exists + already. The default is ``False``. This is useful when creating + DDNS Update messages, as order matters for them. + + *idna_codec*, a ``dns.name.IDNACodec``, specifies the IDNA + encoder/decoder. If ``None``, the default IDNA 2003 encoder/decoder + is used. + + Returns a ``dns.rrset.RRset object`` or ``None``. + """ + + try: + rrset = self.find_rrset( + section, + name, + rdclass, + rdtype, + covers, + deleting, + create, + force_unique, + idna_codec, + ) + except KeyError: + rrset = None + return rrset + + def section_count(self, section: SectionType) -> int: + """Returns the number of records in the specified section. + + *section*, an ``int`` section number, a ``str`` section name, or one of + the section attributes of this message. This specifies the + the section of the message to count. For example:: + + my_message.section_count(my_message.answer) + my_message.section_count(dns.message.ANSWER) + my_message.section_count("ANSWER") + """ + + if isinstance(section, int): + section_number = section + section = self.section_from_number(section_number) + elif isinstance(section, str): + section_number = self._section_enum.from_text(section) + section = self.section_from_number(section_number) + else: + section_number = self.section_number(section) + count = sum(max(1, len(rrs)) for rrs in section) + if section_number == MessageSection.ADDITIONAL: + if self.opt is not None: + count += 1 + if self.tsig is not None: + count += 1 + return count + + def _compute_opt_reserve(self) -> int: + """Compute the size required for the OPT RR, padding excluded""" + if not self.opt: + return 0 + # 1 byte for the root name, 10 for the standard RR fields + size = 11 + # This would be more efficient if options had a size() method, but we won't + # worry about that for now. We also don't worry if there is an existing padding + # option, as it is unlikely and probably harmless, as the worst case is that we + # may add another, and this seems to be legal. + for option in self.opt[0].options: + wire = option.to_wire() + # We add 4 here to account for the option type and length + size += len(wire) + 4 + if self.pad: + # Padding will be added, so again add the option type and length. + size += 4 + return size + + def _compute_tsig_reserve(self) -> int: + """Compute the size required for the TSIG RR""" + # This would be more efficient if TSIGs had a size method, but we won't + # worry about for now. Also, we can't really cope with the potential + # compressibility of the TSIG owner name, so we estimate with the uncompressed + # size. We will disable compression when TSIG and padding are both is active + # so that the padding comes out right. + if not self.tsig: + return 0 + f = io.BytesIO() + self.tsig.to_wire(f) + return len(f.getvalue()) + + def to_wire( + self, + origin: Optional[dns.name.Name] = None, + max_size: int = 0, + multi: bool = False, + tsig_ctx: Optional[Any] = None, + prepend_length: bool = False, + prefer_truncation: bool = False, + **kw: Dict[str, Any], + ) -> bytes: + """Return a string containing the message in DNS compressed wire + format. + + Additional keyword arguments are passed to the RRset ``to_wire()`` + method. + + *origin*, a ``dns.name.Name`` or ``None``, the origin to be appended + to any relative names. If ``None``, and the message has an origin + attribute that is not ``None``, then it will be used. + + *max_size*, an ``int``, the maximum size of the wire format + output; default is 0, which means "the message's request + payload, if nonzero, or 65535". + + *multi*, a ``bool``, should be set to ``True`` if this message is + part of a multiple message sequence. + + *tsig_ctx*, a ``dns.tsig.HMACTSig`` or ``dns.tsig.GSSTSig`` object, the + ongoing TSIG context, used when signing zone transfers. + + *prepend_length*, a ``bool``, should be set to ``True`` if the caller + wants the message length prepended to the message itself. This is + useful for messages sent over TCP, TLS (DoT), or QUIC (DoQ). + + *prefer_truncation*, a ``bool``, should be set to ``True`` if the caller + wants the message to be truncated if it would otherwise exceed the + maximum length. If the truncation occurs before the additional section, + the TC bit will be set. + + Raises ``dns.exception.TooBig`` if *max_size* was exceeded. + + Returns a ``bytes``. + """ + + if origin is None and self.origin is not None: + origin = self.origin + if max_size == 0: + if self.request_payload != 0: + max_size = self.request_payload + else: + max_size = 65535 + if max_size < 512: + max_size = 512 + elif max_size > 65535: + max_size = 65535 + r = dns.renderer.Renderer(self.id, self.flags, max_size, origin) + opt_reserve = self._compute_opt_reserve() + r.reserve(opt_reserve) + tsig_reserve = self._compute_tsig_reserve() + r.reserve(tsig_reserve) + try: + for rrset in self.question: + r.add_question(rrset.name, rrset.rdtype, rrset.rdclass) + for rrset in self.answer: + r.add_rrset(dns.renderer.ANSWER, rrset, **kw) + for rrset in self.authority: + r.add_rrset(dns.renderer.AUTHORITY, rrset, **kw) + for rrset in self.additional: + r.add_rrset(dns.renderer.ADDITIONAL, rrset, **kw) + except dns.exception.TooBig: + if prefer_truncation: + if r.section < dns.renderer.ADDITIONAL: + r.flags |= dns.flags.TC + else: + raise + r.release_reserved() + if self.opt is not None: + r.add_opt(self.opt, self.pad, opt_reserve, tsig_reserve) + r.write_header() + if self.tsig is not None: + (new_tsig, ctx) = dns.tsig.sign( + r.get_wire(), + self.keyring, + self.tsig[0], + int(time.time()), + self.request_mac, + tsig_ctx, + multi, + ) + self.tsig.clear() + self.tsig.add(new_tsig) + r.add_rrset(dns.renderer.ADDITIONAL, self.tsig) + r.write_header() + if multi: + self.tsig_ctx = ctx + wire = r.get_wire() + self.wire = wire + if prepend_length: + wire = len(wire).to_bytes(2, "big") + wire + return wire + + @staticmethod + def _make_tsig( + keyname, algorithm, time_signed, fudge, mac, original_id, error, other + ): + tsig = dns.rdtypes.ANY.TSIG.TSIG( + dns.rdataclass.ANY, + dns.rdatatype.TSIG, + algorithm, + time_signed, + fudge, + mac, + original_id, + error, + other, + ) + return dns.rrset.from_rdata(keyname, 0, tsig) + + def use_tsig( + self, + keyring: Any, + keyname: Optional[Union[dns.name.Name, str]] = None, + fudge: int = 300, + original_id: Optional[int] = None, + tsig_error: int = 0, + other_data: bytes = b"", + algorithm: Union[dns.name.Name, str] = dns.tsig.default_algorithm, + ) -> None: + """When sending, a TSIG signature using the specified key + should be added. + + *key*, a ``dns.tsig.Key`` is the key to use. If a key is specified, + the *keyring* and *algorithm* fields are not used. + + *keyring*, a ``dict``, ``callable`` or ``dns.tsig.Key``, is either + the TSIG keyring or key to use. + + The format of a keyring dict is a mapping from TSIG key name, as + ``dns.name.Name`` to ``dns.tsig.Key`` or a TSIG secret, a ``bytes``. + If a ``dict`` *keyring* is specified but a *keyname* is not, the key + used will be the first key in the *keyring*. Note that the order of + keys in a dictionary is not defined, so applications should supply a + keyname when a ``dict`` keyring is used, unless they know the keyring + contains only one key. If a ``callable`` keyring is specified, the + callable will be called with the message and the keyname, and is + expected to return a key. + + *keyname*, a ``dns.name.Name``, ``str`` or ``None``, the name of + this TSIG key to use; defaults to ``None``. If *keyring* is a + ``dict``, the key must be defined in it. If *keyring* is a + ``dns.tsig.Key``, this is ignored. + + *fudge*, an ``int``, the TSIG time fudge. + + *original_id*, an ``int``, the TSIG original id. If ``None``, + the message's id is used. + + *tsig_error*, an ``int``, the TSIG error code. + + *other_data*, a ``bytes``, the TSIG other data. + + *algorithm*, a ``dns.name.Name`` or ``str``, the TSIG algorithm to use. This is + only used if *keyring* is a ``dict``, and the key entry is a ``bytes``. + """ + + if isinstance(keyring, dns.tsig.Key): + key = keyring + keyname = key.name + elif callable(keyring): + key = keyring(self, keyname) + else: + if isinstance(keyname, str): + keyname = dns.name.from_text(keyname) + if keyname is None: + keyname = next(iter(keyring)) + key = keyring[keyname] + if isinstance(key, bytes): + key = dns.tsig.Key(keyname, key, algorithm) + self.keyring = key + if original_id is None: + original_id = self.id + self.tsig = self._make_tsig( + keyname, + self.keyring.algorithm, + 0, + fudge, + b"\x00" * dns.tsig.mac_sizes[self.keyring.algorithm], + original_id, + tsig_error, + other_data, + ) + + @property + def keyname(self) -> Optional[dns.name.Name]: + if self.tsig: + return self.tsig.name + else: + return None + + @property + def keyalgorithm(self) -> Optional[dns.name.Name]: + if self.tsig: + return self.tsig[0].algorithm + else: + return None + + @property + def mac(self) -> Optional[bytes]: + if self.tsig: + return self.tsig[0].mac + else: + return None + + @property + def tsig_error(self) -> Optional[int]: + if self.tsig: + return self.tsig[0].error + else: + return None + + @property + def had_tsig(self) -> bool: + return bool(self.tsig) + + @staticmethod + def _make_opt(flags=0, payload=DEFAULT_EDNS_PAYLOAD, options=None): + opt = dns.rdtypes.ANY.OPT.OPT(payload, dns.rdatatype.OPT, options or ()) + return dns.rrset.from_rdata(dns.name.root, int(flags), opt) + + def use_edns( + self, + edns: Optional[Union[int, bool]] = 0, + ednsflags: int = 0, + payload: int = DEFAULT_EDNS_PAYLOAD, + request_payload: Optional[int] = None, + options: Optional[List[dns.edns.Option]] = None, + pad: int = 0, + ) -> None: + """Configure EDNS behavior. + + *edns*, an ``int``, is the EDNS level to use. Specifying ``None``, ``False``, + or ``-1`` means "do not use EDNS", and in this case the other parameters are + ignored. Specifying ``True`` is equivalent to specifying 0, i.e. "use EDNS0". + + *ednsflags*, an ``int``, the EDNS flag values. + + *payload*, an ``int``, is the EDNS sender's payload field, which is the maximum + size of UDP datagram the sender can handle. I.e. how big a response to this + message can be. + + *request_payload*, an ``int``, is the EDNS payload size to use when sending this + message. If not specified, defaults to the value of *payload*. + + *options*, a list of ``dns.edns.Option`` objects or ``None``, the EDNS options. + + *pad*, a non-negative ``int``. If 0, the default, do not pad; otherwise add + padding bytes to make the message size a multiple of *pad*. Note that if + padding is non-zero, an EDNS PADDING option will always be added to the + message. + """ + + if edns is None or edns is False: + edns = -1 + elif edns is True: + edns = 0 + if edns < 0: + self.opt = None + self.request_payload = 0 + else: + # make sure the EDNS version in ednsflags agrees with edns + ednsflags &= 0xFF00FFFF + ednsflags |= edns << 16 + if options is None: + options = [] + self.opt = self._make_opt(ednsflags, payload, options) + if request_payload is None: + request_payload = payload + self.request_payload = request_payload + if pad < 0: + raise ValueError("pad must be non-negative") + self.pad = pad + + @property + def edns(self) -> int: + if self.opt: + return (self.ednsflags & 0xFF0000) >> 16 + else: + return -1 + + @property + def ednsflags(self) -> int: + if self.opt: + return self.opt.ttl + else: + return 0 + + @ednsflags.setter + def ednsflags(self, v): + if self.opt: + self.opt.ttl = v + elif v: + self.opt = self._make_opt(v) + + @property + def payload(self) -> int: + if self.opt: + return self.opt[0].payload + else: + return 0 + + @property + def options(self) -> Tuple: + if self.opt: + return self.opt[0].options + else: + return () + + def want_dnssec(self, wanted: bool = True) -> None: + """Enable or disable 'DNSSEC desired' flag in requests. + + *wanted*, a ``bool``. If ``True``, then DNSSEC data is + desired in the response, EDNS is enabled if required, and then + the DO bit is set. If ``False``, the DO bit is cleared if + EDNS is enabled. + """ + + if wanted: + self.ednsflags |= dns.flags.DO + elif self.opt: + self.ednsflags &= ~int(dns.flags.DO) + + def rcode(self) -> dns.rcode.Rcode: + """Return the rcode. + + Returns a ``dns.rcode.Rcode``. + """ + return dns.rcode.from_flags(int(self.flags), int(self.ednsflags)) + + def set_rcode(self, rcode: dns.rcode.Rcode) -> None: + """Set the rcode. + + *rcode*, a ``dns.rcode.Rcode``, is the rcode to set. + """ + (value, evalue) = dns.rcode.to_flags(rcode) + self.flags &= 0xFFF0 + self.flags |= value + self.ednsflags &= 0x00FFFFFF + self.ednsflags |= evalue + + def opcode(self) -> dns.opcode.Opcode: + """Return the opcode. + + Returns a ``dns.opcode.Opcode``. + """ + return dns.opcode.from_flags(int(self.flags)) + + def set_opcode(self, opcode: dns.opcode.Opcode) -> None: + """Set the opcode. + + *opcode*, a ``dns.opcode.Opcode``, is the opcode to set. + """ + self.flags &= 0x87FF + self.flags |= dns.opcode.to_flags(opcode) + + def get_options(self, otype: dns.edns.OptionType) -> List[dns.edns.Option]: + """Return the list of options of the specified type.""" + return [option for option in self.options if option.otype == otype] + + def extended_errors(self) -> List[dns.edns.EDEOption]: + """Return the list of Extended DNS Error (EDE) options in the message""" + return cast(List[dns.edns.EDEOption], self.get_options(dns.edns.OptionType.EDE)) + + def _get_one_rr_per_rrset(self, value): + # What the caller picked is fine. + return value + + # pylint: disable=unused-argument + + def _parse_rr_header(self, section, name, rdclass, rdtype): + return (rdclass, rdtype, None, False) + + # pylint: enable=unused-argument + + def _parse_special_rr_header(self, section, count, position, name, rdclass, rdtype): + if rdtype == dns.rdatatype.OPT: + if ( + section != MessageSection.ADDITIONAL + or self.opt + or name != dns.name.root + ): + raise BadEDNS + elif rdtype == dns.rdatatype.TSIG: + if ( + section != MessageSection.ADDITIONAL + or rdclass != dns.rdatatype.ANY + or position != count - 1 + ): + raise BadTSIG + return (rdclass, rdtype, None, False) + + +class ChainingResult: + """The result of a call to dns.message.QueryMessage.resolve_chaining(). + + The ``answer`` attribute is the answer RRSet, or ``None`` if it doesn't + exist. + + The ``canonical_name`` attribute is the canonical name after all + chaining has been applied (this is the same name as ``rrset.name`` in cases + where rrset is not ``None``). + + The ``minimum_ttl`` attribute is the minimum TTL, i.e. the TTL to + use if caching the data. It is the smallest of all the CNAME TTLs + and either the answer TTL if it exists or the SOA TTL and SOA + minimum values for negative answers. + + The ``cnames`` attribute is a list of all the CNAME RRSets followed to + get to the canonical name. + """ + + def __init__( + self, + canonical_name: dns.name.Name, + answer: Optional[dns.rrset.RRset], + minimum_ttl: int, + cnames: List[dns.rrset.RRset], + ): + self.canonical_name = canonical_name + self.answer = answer + self.minimum_ttl = minimum_ttl + self.cnames = cnames + + +class QueryMessage(Message): + def resolve_chaining(self) -> ChainingResult: + """Follow the CNAME chain in the response to determine the answer + RRset. + + Raises ``dns.message.NotQueryResponse`` if the message is not + a response. + + Raises ``dns.message.ChainTooLong`` if the CNAME chain is too long. + + Raises ``dns.message.AnswerForNXDOMAIN`` if the rcode is NXDOMAIN + but an answer was found. + + Raises ``dns.exception.FormError`` if the question count is not 1. + + Returns a ChainingResult object. + """ + if self.flags & dns.flags.QR == 0: + raise NotQueryResponse + if len(self.question) != 1: + raise dns.exception.FormError + question = self.question[0] + qname = question.name + min_ttl = dns.ttl.MAX_TTL + answer = None + count = 0 + cnames = [] + while count < MAX_CHAIN: + try: + answer = self.find_rrset( + self.answer, qname, question.rdclass, question.rdtype + ) + min_ttl = min(min_ttl, answer.ttl) + break + except KeyError: + if question.rdtype != dns.rdatatype.CNAME: + try: + crrset = self.find_rrset( + self.answer, qname, question.rdclass, dns.rdatatype.CNAME + ) + cnames.append(crrset) + min_ttl = min(min_ttl, crrset.ttl) + for rd in crrset: + qname = rd.target + break + count += 1 + continue + except KeyError: + # Exit the chaining loop + break + else: + # Exit the chaining loop + break + if count >= MAX_CHAIN: + raise ChainTooLong + if self.rcode() == dns.rcode.NXDOMAIN and answer is not None: + raise AnswerForNXDOMAIN + if answer is None: + # Further minimize the TTL with NCACHE. + auname = qname + while True: + # Look for an SOA RR whose owner name is a superdomain + # of qname. + try: + srrset = self.find_rrset( + self.authority, auname, question.rdclass, dns.rdatatype.SOA + ) + min_ttl = min(min_ttl, srrset.ttl, srrset[0].minimum) + break + except KeyError: + try: + auname = auname.parent() + except dns.name.NoParent: + break + return ChainingResult(qname, answer, min_ttl, cnames) + + def canonical_name(self) -> dns.name.Name: + """Return the canonical name of the first name in the question + section. + + Raises ``dns.message.NotQueryResponse`` if the message is not + a response. + + Raises ``dns.message.ChainTooLong`` if the CNAME chain is too long. + + Raises ``dns.message.AnswerForNXDOMAIN`` if the rcode is NXDOMAIN + but an answer was found. + + Raises ``dns.exception.FormError`` if the question count is not 1. + """ + return self.resolve_chaining().canonical_name + + +def _maybe_import_update(): + # We avoid circular imports by doing this here. We do it in another + # function as doing it in _message_factory_from_opcode() makes "dns" + # a local symbol, and the first line fails :) + + # pylint: disable=redefined-outer-name,import-outside-toplevel,unused-import + import dns.update # noqa: F401 + + +def _message_factory_from_opcode(opcode): + if opcode == dns.opcode.QUERY: + return QueryMessage + elif opcode == dns.opcode.UPDATE: + _maybe_import_update() + return dns.update.UpdateMessage + else: + return Message + + +class _WireReader: + """Wire format reader. + + parser: the binary parser + message: The message object being built + initialize_message: Callback to set message parsing options + question_only: Are we only reading the question? + one_rr_per_rrset: Put each RR into its own RRset? + keyring: TSIG keyring + ignore_trailing: Ignore trailing junk at end of request? + multi: Is this message part of a multi-message sequence? + DNS dynamic updates. + continue_on_error: try to extract as much information as possible from + the message, accumulating MessageErrors in the *errors* attribute instead of + raising them. + """ + + def __init__( + self, + wire, + initialize_message, + question_only=False, + one_rr_per_rrset=False, + ignore_trailing=False, + keyring=None, + multi=False, + continue_on_error=False, + ): + self.parser = dns.wire.Parser(wire) + self.message = None + self.initialize_message = initialize_message + self.question_only = question_only + self.one_rr_per_rrset = one_rr_per_rrset + self.ignore_trailing = ignore_trailing + self.keyring = keyring + self.multi = multi + self.continue_on_error = continue_on_error + self.errors = [] + + def _get_question(self, section_number, qcount): + """Read the next *qcount* records from the wire data and add them to + the question section. + """ + assert self.message is not None + section = self.message.sections[section_number] + for _ in range(qcount): + qname = self.parser.get_name(self.message.origin) + (rdtype, rdclass) = self.parser.get_struct("!HH") + (rdclass, rdtype, _, _) = self.message._parse_rr_header( + section_number, qname, rdclass, rdtype + ) + self.message.find_rrset( + section, qname, rdclass, rdtype, create=True, force_unique=True + ) + + def _add_error(self, e): + self.errors.append(MessageError(e, self.parser.current)) + + def _get_section(self, section_number, count): + """Read the next I{count} records from the wire data and add them to + the specified section. + + section_number: the section of the message to which to add records + count: the number of records to read + """ + assert self.message is not None + section = self.message.sections[section_number] + force_unique = self.one_rr_per_rrset + for i in range(count): + rr_start = self.parser.current + absolute_name = self.parser.get_name() + if self.message.origin is not None: + name = absolute_name.relativize(self.message.origin) + else: + name = absolute_name + (rdtype, rdclass, ttl, rdlen) = self.parser.get_struct("!HHIH") + if rdtype in (dns.rdatatype.OPT, dns.rdatatype.TSIG): + ( + rdclass, + rdtype, + deleting, + empty, + ) = self.message._parse_special_rr_header( + section_number, count, i, name, rdclass, rdtype + ) + else: + (rdclass, rdtype, deleting, empty) = self.message._parse_rr_header( + section_number, name, rdclass, rdtype + ) + rdata_start = self.parser.current + try: + if empty: + if rdlen > 0: + raise dns.exception.FormError + rd = None + covers = dns.rdatatype.NONE + else: + with self.parser.restrict_to(rdlen): + rd = dns.rdata.from_wire_parser( + rdclass, rdtype, self.parser, self.message.origin + ) + covers = rd.covers() + if self.message.xfr and rdtype == dns.rdatatype.SOA: + force_unique = True + if rdtype == dns.rdatatype.OPT: + self.message.opt = dns.rrset.from_rdata(name, ttl, rd) + elif rdtype == dns.rdatatype.TSIG: + if self.keyring is None or self.keyring is True: + raise UnknownTSIGKey("got signed message without keyring") + elif isinstance(self.keyring, dict): + key = self.keyring.get(absolute_name) + if isinstance(key, bytes): + key = dns.tsig.Key(absolute_name, key, rd.algorithm) + elif callable(self.keyring): + key = self.keyring(self.message, absolute_name) + else: + key = self.keyring + if key is None: + raise UnknownTSIGKey(f"key '{name}' unknown") + if key: + self.message.keyring = key + self.message.tsig_ctx = dns.tsig.validate( + self.parser.wire, + key, + absolute_name, + rd, + int(time.time()), + self.message.request_mac, + rr_start, + self.message.tsig_ctx, + self.multi, + ) + self.message.tsig = dns.rrset.from_rdata(absolute_name, 0, rd) + else: + rrset = self.message.find_rrset( + section, + name, + rdclass, + rdtype, + covers, + deleting, + True, + force_unique, + ) + if rd is not None: + if ttl > 0x7FFFFFFF: + ttl = 0 + rrset.add(rd, ttl) + except Exception as e: + if self.continue_on_error: + self._add_error(e) + self.parser.seek(rdata_start + rdlen) + else: + raise + + def read(self): + """Read a wire format DNS message and build a dns.message.Message + object.""" + + if self.parser.remaining() < 12: + raise ShortHeader + (id, flags, qcount, ancount, aucount, adcount) = self.parser.get_struct( + "!HHHHHH" + ) + factory = _message_factory_from_opcode(dns.opcode.from_flags(flags)) + self.message = factory(id=id) + self.message.flags = dns.flags.Flag(flags) + self.message.wire = self.parser.wire + self.initialize_message(self.message) + self.one_rr_per_rrset = self.message._get_one_rr_per_rrset( + self.one_rr_per_rrset + ) + try: + self._get_question(MessageSection.QUESTION, qcount) + if self.question_only: + return self.message + self._get_section(MessageSection.ANSWER, ancount) + self._get_section(MessageSection.AUTHORITY, aucount) + self._get_section(MessageSection.ADDITIONAL, adcount) + if not self.ignore_trailing and self.parser.remaining() != 0: + raise TrailingJunk + if self.multi and self.message.tsig_ctx and not self.message.had_tsig: + self.message.tsig_ctx.update(self.parser.wire) + except Exception as e: + if self.continue_on_error: + self._add_error(e) + else: + raise + return self.message + + +def from_wire( + wire: bytes, + keyring: Optional[Any] = None, + request_mac: Optional[bytes] = b"", + xfr: bool = False, + origin: Optional[dns.name.Name] = None, + tsig_ctx: Optional[Union[dns.tsig.HMACTSig, dns.tsig.GSSTSig]] = None, + multi: bool = False, + question_only: bool = False, + one_rr_per_rrset: bool = False, + ignore_trailing: bool = False, + raise_on_truncation: bool = False, + continue_on_error: bool = False, +) -> Message: + """Convert a DNS wire format message into a message object. + + *keyring*, a ``dns.tsig.Key``, ``dict``, ``bool``, or ``None``, the key or keyring + to use if the message is signed. If ``None`` or ``True``, then trying to decode + a message with a TSIG will fail as it cannot be validated. If ``False``, then + TSIG validation is disabled. + + *request_mac*, a ``bytes`` or ``None``. If the message is a response to a + TSIG-signed request, *request_mac* should be set to the MAC of that request. + + *xfr*, a ``bool``, should be set to ``True`` if this message is part of a zone + transfer. + + *origin*, a ``dns.name.Name`` or ``None``. If the message is part of a zone + transfer, *origin* should be the origin name of the zone. If not ``None``, names + will be relativized to the origin. + + *tsig_ctx*, a ``dns.tsig.HMACTSig`` or ``dns.tsig.GSSTSig`` object, the ongoing TSIG + context, used when validating zone transfers. + + *multi*, a ``bool``, should be set to ``True`` if this message is part of a multiple + message sequence. + + *question_only*, a ``bool``. If ``True``, read only up to the end of the question + section. + + *one_rr_per_rrset*, a ``bool``. If ``True``, put each RR into its own RRset. + + *ignore_trailing*, a ``bool``. If ``True``, ignore trailing junk at end of the + message. + + *raise_on_truncation*, a ``bool``. If ``True``, raise an exception if the TC bit is + set. + + *continue_on_error*, a ``bool``. If ``True``, try to continue parsing even if + errors occur. Erroneous rdata will be ignored. Errors will be accumulated as a + list of MessageError objects in the message's ``errors`` attribute. This option is + recommended only for DNS analysis tools, or for use in a server as part of an error + handling path. The default is ``False``. + + Raises ``dns.message.ShortHeader`` if the message is less than 12 octets long. + + Raises ``dns.message.TrailingJunk`` if there were octets in the message past the end + of the proper DNS message, and *ignore_trailing* is ``False``. + + Raises ``dns.message.BadEDNS`` if an OPT record was in the wrong section, or + occurred more than once. + + Raises ``dns.message.BadTSIG`` if a TSIG record was not the last record of the + additional data section. + + Raises ``dns.message.Truncated`` if the TC flag is set and *raise_on_truncation* is + ``True``. + + Returns a ``dns.message.Message``. + """ + + # We permit None for request_mac solely for backwards compatibility + if request_mac is None: + request_mac = b"" + + def initialize_message(message): + message.request_mac = request_mac + message.xfr = xfr + message.origin = origin + message.tsig_ctx = tsig_ctx + + reader = _WireReader( + wire, + initialize_message, + question_only, + one_rr_per_rrset, + ignore_trailing, + keyring, + multi, + continue_on_error, + ) + try: + m = reader.read() + except dns.exception.FormError: + if ( + reader.message + and (reader.message.flags & dns.flags.TC) + and raise_on_truncation + ): + raise Truncated(message=reader.message) + else: + raise + # Reading a truncated message might not have any errors, so we + # have to do this check here too. + if m.flags & dns.flags.TC and raise_on_truncation: + raise Truncated(message=m) + if continue_on_error: + m.errors = reader.errors + + return m + + +class _TextReader: + """Text format reader. + + tok: the tokenizer. + message: The message object being built. + DNS dynamic updates. + last_name: The most recently read name when building a message object. + one_rr_per_rrset: Put each RR into its own RRset? + origin: The origin for relative names + relativize: relativize names? + relativize_to: the origin to relativize to. + """ + + def __init__( + self, + text, + idna_codec, + one_rr_per_rrset=False, + origin=None, + relativize=True, + relativize_to=None, + ): + self.message = None + self.tok = dns.tokenizer.Tokenizer(text, idna_codec=idna_codec) + self.last_name = None + self.one_rr_per_rrset = one_rr_per_rrset + self.origin = origin + self.relativize = relativize + self.relativize_to = relativize_to + self.id = None + self.edns = -1 + self.ednsflags = 0 + self.payload = DEFAULT_EDNS_PAYLOAD + self.rcode = None + self.opcode = dns.opcode.QUERY + self.flags = 0 + + def _header_line(self, _): + """Process one line from the text format header section.""" + + token = self.tok.get() + what = token.value + if what == "id": + self.id = self.tok.get_int() + elif what == "flags": + while True: + token = self.tok.get() + if not token.is_identifier(): + self.tok.unget(token) + break + self.flags = self.flags | dns.flags.from_text(token.value) + elif what == "edns": + self.edns = self.tok.get_int() + self.ednsflags = self.ednsflags | (self.edns << 16) + elif what == "eflags": + if self.edns < 0: + self.edns = 0 + while True: + token = self.tok.get() + if not token.is_identifier(): + self.tok.unget(token) + break + self.ednsflags = self.ednsflags | dns.flags.edns_from_text(token.value) + elif what == "payload": + self.payload = self.tok.get_int() + if self.edns < 0: + self.edns = 0 + elif what == "opcode": + text = self.tok.get_string() + self.opcode = dns.opcode.from_text(text) + self.flags = self.flags | dns.opcode.to_flags(self.opcode) + elif what == "rcode": + text = self.tok.get_string() + self.rcode = dns.rcode.from_text(text) + else: + raise UnknownHeaderField + self.tok.get_eol() + + def _question_line(self, section_number): + """Process one line from the text format question section.""" + + section = self.message.sections[section_number] + token = self.tok.get(want_leading=True) + if not token.is_whitespace(): + self.last_name = self.tok.as_name( + token, self.message.origin, self.relativize, self.relativize_to + ) + name = self.last_name + if name is None: + raise NoPreviousName + token = self.tok.get() + if not token.is_identifier(): + raise dns.exception.SyntaxError + # Class + try: + rdclass = dns.rdataclass.from_text(token.value) + token = self.tok.get() + if not token.is_identifier(): + raise dns.exception.SyntaxError + except dns.exception.SyntaxError: + raise dns.exception.SyntaxError + except Exception: + rdclass = dns.rdataclass.IN + # Type + rdtype = dns.rdatatype.from_text(token.value) + (rdclass, rdtype, _, _) = self.message._parse_rr_header( + section_number, name, rdclass, rdtype + ) + self.message.find_rrset( + section, name, rdclass, rdtype, create=True, force_unique=True + ) + self.tok.get_eol() + + def _rr_line(self, section_number): + """Process one line from the text format answer, authority, or + additional data sections. + """ + + section = self.message.sections[section_number] + # Name + token = self.tok.get(want_leading=True) + if not token.is_whitespace(): + self.last_name = self.tok.as_name( + token, self.message.origin, self.relativize, self.relativize_to + ) + name = self.last_name + if name is None: + raise NoPreviousName + token = self.tok.get() + if not token.is_identifier(): + raise dns.exception.SyntaxError + # TTL + try: + ttl = int(token.value, 0) + token = self.tok.get() + if not token.is_identifier(): + raise dns.exception.SyntaxError + except dns.exception.SyntaxError: + raise dns.exception.SyntaxError + except Exception: + ttl = 0 + # Class + try: + rdclass = dns.rdataclass.from_text(token.value) + token = self.tok.get() + if not token.is_identifier(): + raise dns.exception.SyntaxError + except dns.exception.SyntaxError: + raise dns.exception.SyntaxError + except Exception: + rdclass = dns.rdataclass.IN + # Type + rdtype = dns.rdatatype.from_text(token.value) + (rdclass, rdtype, deleting, empty) = self.message._parse_rr_header( + section_number, name, rdclass, rdtype + ) + token = self.tok.get() + if empty and not token.is_eol_or_eof(): + raise dns.exception.SyntaxError + if not empty and token.is_eol_or_eof(): + raise dns.exception.UnexpectedEnd + if not token.is_eol_or_eof(): + self.tok.unget(token) + rd = dns.rdata.from_text( + rdclass, + rdtype, + self.tok, + self.message.origin, + self.relativize, + self.relativize_to, + ) + covers = rd.covers() + else: + rd = None + covers = dns.rdatatype.NONE + rrset = self.message.find_rrset( + section, + name, + rdclass, + rdtype, + covers, + deleting, + True, + self.one_rr_per_rrset, + ) + if rd is not None: + rrset.add(rd, ttl) + + def _make_message(self): + factory = _message_factory_from_opcode(self.opcode) + message = factory(id=self.id) + message.flags = self.flags + if self.edns >= 0: + message.use_edns(self.edns, self.ednsflags, self.payload) + if self.rcode: + message.set_rcode(self.rcode) + if self.origin: + message.origin = self.origin + return message + + def read(self): + """Read a text format DNS message and build a dns.message.Message + object.""" + + line_method = self._header_line + section_number = None + while 1: + token = self.tok.get(True, True) + if token.is_eol_or_eof(): + break + if token.is_comment(): + u = token.value.upper() + if u == "HEADER": + line_method = self._header_line + + if self.message: + message = self.message + else: + # If we don't have a message, create one with the current + # opcode, so that we know which section names to parse. + message = self._make_message() + try: + section_number = message._section_enum.from_text(u) + # We found a section name. If we don't have a message, + # use the one we just created. + if not self.message: + self.message = message + self.one_rr_per_rrset = message._get_one_rr_per_rrset( + self.one_rr_per_rrset + ) + if section_number == MessageSection.QUESTION: + line_method = self._question_line + else: + line_method = self._rr_line + except Exception: + # It's just a comment. + pass + self.tok.get_eol() + continue + self.tok.unget(token) + line_method(section_number) + if not self.message: + self.message = self._make_message() + return self.message + + +def from_text( + text: str, + idna_codec: Optional[dns.name.IDNACodec] = None, + one_rr_per_rrset: bool = False, + origin: Optional[dns.name.Name] = None, + relativize: bool = True, + relativize_to: Optional[dns.name.Name] = None, +) -> Message: + """Convert the text format message into a message object. + + The reader stops after reading the first blank line in the input to + facilitate reading multiple messages from a single file with + ``dns.message.from_file()``. + + *text*, a ``str``, the text format message. + + *idna_codec*, a ``dns.name.IDNACodec``, specifies the IDNA + encoder/decoder. If ``None``, the default IDNA 2003 encoder/decoder + is used. + + *one_rr_per_rrset*, a ``bool``. If ``True``, then each RR is put + into its own rrset. The default is ``False``. + + *origin*, a ``dns.name.Name`` (or ``None``), the + origin to use for relative names. + + *relativize*, a ``bool``. If true, name will be relativized. + + *relativize_to*, a ``dns.name.Name`` (or ``None``), the origin to use + when relativizing names. If not set, the *origin* value will be used. + + Raises ``dns.message.UnknownHeaderField`` if a header is unknown. + + Raises ``dns.exception.SyntaxError`` if the text is badly formed. + + Returns a ``dns.message.Message object`` + """ + + # 'text' can also be a file, but we don't publish that fact + # since it's an implementation detail. The official file + # interface is from_file(). + + reader = _TextReader( + text, idna_codec, one_rr_per_rrset, origin, relativize, relativize_to + ) + return reader.read() + + +def from_file( + f: Any, + idna_codec: Optional[dns.name.IDNACodec] = None, + one_rr_per_rrset: bool = False, +) -> Message: + """Read the next text format message from the specified file. + + Message blocks are separated by a single blank line. + + *f*, a ``file`` or ``str``. If *f* is text, it is treated as the + pathname of a file to open. + + *idna_codec*, a ``dns.name.IDNACodec``, specifies the IDNA + encoder/decoder. If ``None``, the default IDNA 2003 encoder/decoder + is used. + + *one_rr_per_rrset*, a ``bool``. If ``True``, then each RR is put + into its own rrset. The default is ``False``. + + Raises ``dns.message.UnknownHeaderField`` if a header is unknown. + + Raises ``dns.exception.SyntaxError`` if the text is badly formed. + + Returns a ``dns.message.Message object`` + """ + + if isinstance(f, str): + cm: contextlib.AbstractContextManager = open(f) + else: + cm = contextlib.nullcontext(f) + with cm as f: + return from_text(f, idna_codec, one_rr_per_rrset) + assert False # for mypy lgtm[py/unreachable-statement] + + +def make_query( + qname: Union[dns.name.Name, str], + rdtype: Union[dns.rdatatype.RdataType, str], + rdclass: Union[dns.rdataclass.RdataClass, str] = dns.rdataclass.IN, + use_edns: Optional[Union[int, bool]] = None, + want_dnssec: bool = False, + ednsflags: Optional[int] = None, + payload: Optional[int] = None, + request_payload: Optional[int] = None, + options: Optional[List[dns.edns.Option]] = None, + idna_codec: Optional[dns.name.IDNACodec] = None, + id: Optional[int] = None, + flags: int = dns.flags.RD, + pad: int = 0, +) -> QueryMessage: + """Make a query message. + + The query name, type, and class may all be specified either + as objects of the appropriate type, or as strings. + + The query will have a randomly chosen query id, and its DNS flags + will be set to dns.flags.RD. + + qname, a ``dns.name.Name`` or ``str``, the query name. + + *rdtype*, an ``int`` or ``str``, the desired rdata type. + + *rdclass*, an ``int`` or ``str``, the desired rdata class; the default + is class IN. + + *use_edns*, an ``int``, ``bool`` or ``None``. The EDNS level to use; the + default is ``None``. If ``None``, EDNS will be enabled only if other + parameters (*ednsflags*, *payload*, *request_payload*, or *options*) are + set. + See the description of dns.message.Message.use_edns() for the possible + values for use_edns and their meanings. + + *want_dnssec*, a ``bool``. If ``True``, DNSSEC data is desired. + + *ednsflags*, an ``int``, the EDNS flag values. + + *payload*, an ``int``, is the EDNS sender's payload field, which is the + maximum size of UDP datagram the sender can handle. I.e. how big + a response to this message can be. + + *request_payload*, an ``int``, is the EDNS payload size to use when + sending this message. If not specified, defaults to the value of + *payload*. + + *options*, a list of ``dns.edns.Option`` objects or ``None``, the EDNS + options. + + *idna_codec*, a ``dns.name.IDNACodec``, specifies the IDNA + encoder/decoder. If ``None``, the default IDNA 2003 encoder/decoder + is used. + + *id*, an ``int`` or ``None``, the desired query id. The default is + ``None``, which generates a random query id. + + *flags*, an ``int``, the desired query flags. The default is + ``dns.flags.RD``. + + *pad*, a non-negative ``int``. If 0, the default, do not pad; otherwise add + padding bytes to make the message size a multiple of *pad*. Note that if + padding is non-zero, an EDNS PADDING option will always be added to the + message. + + Returns a ``dns.message.QueryMessage`` + """ + + if isinstance(qname, str): + qname = dns.name.from_text(qname, idna_codec=idna_codec) + rdtype = dns.rdatatype.RdataType.make(rdtype) + rdclass = dns.rdataclass.RdataClass.make(rdclass) + m = QueryMessage(id=id) + m.flags = dns.flags.Flag(flags) + m.find_rrset(m.question, qname, rdclass, rdtype, create=True, force_unique=True) + # only pass keywords on to use_edns if they have been set to a + # non-None value. Setting a field will turn EDNS on if it hasn't + # been configured. + kwargs: Dict[str, Any] = {} + if ednsflags is not None: + kwargs["ednsflags"] = ednsflags + if payload is not None: + kwargs["payload"] = payload + if request_payload is not None: + kwargs["request_payload"] = request_payload + if options is not None: + kwargs["options"] = options + if kwargs and use_edns is None: + use_edns = 0 + kwargs["edns"] = use_edns + kwargs["pad"] = pad + m.use_edns(**kwargs) + m.want_dnssec(want_dnssec) + return m + + +class CopyMode(enum.Enum): + """ + How should sections be copied when making an update response? + """ + + NOTHING = 0 + QUESTION = 1 + EVERYTHING = 2 + + +def make_response( + query: Message, + recursion_available: bool = False, + our_payload: int = 8192, + fudge: int = 300, + tsig_error: int = 0, + pad: Optional[int] = None, + copy_mode: Optional[CopyMode] = None, +) -> Message: + """Make a message which is a response for the specified query. + The message returned is really a response skeleton; it has all of the infrastructure + required of a response, but none of the content. + + Response section(s) which are copied are shallow copies of the matching section(s) + in the query, so the query's RRsets should not be changed. + + *query*, a ``dns.message.Message``, the query to respond to. + + *recursion_available*, a ``bool``, should RA be set in the response? + + *our_payload*, an ``int``, the payload size to advertise in EDNS responses. + + *fudge*, an ``int``, the TSIG time fudge. + + *tsig_error*, an ``int``, the TSIG error. + + *pad*, a non-negative ``int`` or ``None``. If 0, the default, do not pad; otherwise + if not ``None`` add padding bytes to make the message size a multiple of *pad*. Note + that if padding is non-zero, an EDNS PADDING option will always be added to the + message. If ``None``, add padding following RFC 8467, namely if the request is + padded, pad the response to 468 otherwise do not pad. + + *copy_mode*, a ``dns.message.CopyMode`` or ``None``, determines how sections are + copied. The default, ``None`` copies sections according to the default for the + message's opcode, which is currently ``dns.message.CopyMode.QUESTION`` for all + opcodes. ``dns.message.CopyMode.QUESTION`` copies only the question section. + ``dns.message.CopyMode.EVERYTHING`` copies all sections other than OPT or TSIG + records, which are created appropriately if needed. ``dns.message.CopyMode.NOTHING`` + copies no sections; note that this mode is for server testing purposes and is + otherwise not recommended for use. In particular, ``dns.message.is_response()`` + will be ``False`` if you create a response this way and the rcode is not + ``FORMERR``, ``SERVFAIL``, ``NOTIMP``, or ``REFUSED``. + + Returns a ``dns.message.Message`` object whose specific class is appropriate for the + query. For example, if query is a ``dns.update.UpdateMessage``, the response will + be one too. + """ + + if query.flags & dns.flags.QR: + raise dns.exception.FormError("specified query message is not a query") + opcode = query.opcode() + factory = _message_factory_from_opcode(opcode) + response = factory(id=query.id) + response.flags = dns.flags.QR | (query.flags & dns.flags.RD) + if recursion_available: + response.flags |= dns.flags.RA + response.set_opcode(opcode) + if copy_mode is None: + copy_mode = CopyMode.QUESTION + if copy_mode != CopyMode.NOTHING: + response.question = list(query.question) + if copy_mode == CopyMode.EVERYTHING: + response.answer = list(query.answer) + response.authority = list(query.authority) + response.additional = list(query.additional) + if query.edns >= 0: + if pad is None: + # Set response padding per RFC 8467 + pad = 0 + for option in query.options: + if option.otype == dns.edns.OptionType.PADDING: + pad = 468 + response.use_edns(0, 0, our_payload, query.payload, pad=pad) + if query.had_tsig: + response.use_tsig( + query.keyring, + query.keyname, + fudge, + None, + tsig_error, + b"", + query.keyalgorithm, + ) + response.request_mac = query.mac + return response + + +### BEGIN generated MessageSection constants + +QUESTION = MessageSection.QUESTION +ANSWER = MessageSection.ANSWER +AUTHORITY = MessageSection.AUTHORITY +ADDITIONAL = MessageSection.ADDITIONAL + +### END generated MessageSection constants diff --git a/.venv/lib/python3.11/site-packages/dns/name.py b/.venv/lib/python3.11/site-packages/dns/name.py new file mode 100644 index 0000000..f79f0d0 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/name.py @@ -0,0 +1,1284 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2001-2017 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +"""DNS Names. +""" + +import copy +import encodings.idna # type: ignore +import functools +import struct +from typing import Any, Callable, Dict, Iterable, Optional, Tuple, Union + +import dns._features +import dns.enum +import dns.exception +import dns.immutable +import dns.wire + +if dns._features.have("idna"): + import idna # type: ignore + + have_idna_2008 = True +else: # pragma: no cover + have_idna_2008 = False + +CompressType = Dict["Name", int] + + +class NameRelation(dns.enum.IntEnum): + """Name relation result from fullcompare().""" + + # This is an IntEnum for backwards compatibility in case anyone + # has hardwired the constants. + + #: The compared names have no relationship to each other. + NONE = 0 + #: the first name is a superdomain of the second. + SUPERDOMAIN = 1 + #: The first name is a subdomain of the second. + SUBDOMAIN = 2 + #: The compared names are equal. + EQUAL = 3 + #: The compared names have a common ancestor. + COMMONANCESTOR = 4 + + @classmethod + def _maximum(cls): + return cls.COMMONANCESTOR # pragma: no cover + + @classmethod + def _short_name(cls): + return cls.__name__ # pragma: no cover + + +# Backwards compatibility +NAMERELN_NONE = NameRelation.NONE +NAMERELN_SUPERDOMAIN = NameRelation.SUPERDOMAIN +NAMERELN_SUBDOMAIN = NameRelation.SUBDOMAIN +NAMERELN_EQUAL = NameRelation.EQUAL +NAMERELN_COMMONANCESTOR = NameRelation.COMMONANCESTOR + + +class EmptyLabel(dns.exception.SyntaxError): + """A DNS label is empty.""" + + +class BadEscape(dns.exception.SyntaxError): + """An escaped code in a text format of DNS name is invalid.""" + + +class BadPointer(dns.exception.FormError): + """A DNS compression pointer points forward instead of backward.""" + + +class BadLabelType(dns.exception.FormError): + """The label type in DNS name wire format is unknown.""" + + +class NeedAbsoluteNameOrOrigin(dns.exception.DNSException): + """An attempt was made to convert a non-absolute name to + wire when there was also a non-absolute (or missing) origin.""" + + +class NameTooLong(dns.exception.FormError): + """A DNS name is > 255 octets long.""" + + +class LabelTooLong(dns.exception.SyntaxError): + """A DNS label is > 63 octets long.""" + + +class AbsoluteConcatenation(dns.exception.DNSException): + """An attempt was made to append anything other than the + empty name to an absolute DNS name.""" + + +class NoParent(dns.exception.DNSException): + """An attempt was made to get the parent of the root name + or the empty name.""" + + +class NoIDNA2008(dns.exception.DNSException): + """IDNA 2008 processing was requested but the idna module is not + available.""" + + +class IDNAException(dns.exception.DNSException): + """IDNA processing raised an exception.""" + + supp_kwargs = {"idna_exception"} + fmt = "IDNA processing exception: {idna_exception}" + + # We do this as otherwise mypy complains about unexpected keyword argument + # idna_exception + def __init__(self, *args, **kwargs): + super().__init__(*args, **kwargs) + + +class NeedSubdomainOfOrigin(dns.exception.DNSException): + """An absolute name was provided that is not a subdomain of the specified origin.""" + + +_escaped = b'"().;\\@$' +_escaped_text = '"().;\\@$' + + +def _escapify(label: Union[bytes, str]) -> str: + """Escape the characters in label which need it. + @returns: the escaped string + @rtype: string""" + if isinstance(label, bytes): + # Ordinary DNS label mode. Escape special characters and values + # < 0x20 or > 0x7f. + text = "" + for c in label: + if c in _escaped: + text += "\\" + chr(c) + elif c > 0x20 and c < 0x7F: + text += chr(c) + else: + text += "\\%03d" % c + return text + + # Unicode label mode. Escape only special characters and values < 0x20 + text = "" + for uc in label: + if uc in _escaped_text: + text += "\\" + uc + elif uc <= "\x20": + text += "\\%03d" % ord(uc) + else: + text += uc + return text + + +class IDNACodec: + """Abstract base class for IDNA encoder/decoders.""" + + def __init__(self): + pass + + def is_idna(self, label: bytes) -> bool: + return label.lower().startswith(b"xn--") + + def encode(self, label: str) -> bytes: + raise NotImplementedError # pragma: no cover + + def decode(self, label: bytes) -> str: + # We do not apply any IDNA policy on decode. + if self.is_idna(label): + try: + slabel = label[4:].decode("punycode") + return _escapify(slabel) + except Exception as e: + raise IDNAException(idna_exception=e) + else: + return _escapify(label) + + +class IDNA2003Codec(IDNACodec): + """IDNA 2003 encoder/decoder.""" + + def __init__(self, strict_decode: bool = False): + """Initialize the IDNA 2003 encoder/decoder. + + *strict_decode* is a ``bool``. If `True`, then IDNA2003 checking + is done when decoding. This can cause failures if the name + was encoded with IDNA2008. The default is `False`. + """ + + super().__init__() + self.strict_decode = strict_decode + + def encode(self, label: str) -> bytes: + """Encode *label*.""" + + if label == "": + return b"" + try: + return encodings.idna.ToASCII(label) + except UnicodeError: + raise LabelTooLong + + def decode(self, label: bytes) -> str: + """Decode *label*.""" + if not self.strict_decode: + return super().decode(label) + if label == b"": + return "" + try: + return _escapify(encodings.idna.ToUnicode(label)) + except Exception as e: + raise IDNAException(idna_exception=e) + + +class IDNA2008Codec(IDNACodec): + """IDNA 2008 encoder/decoder.""" + + def __init__( + self, + uts_46: bool = False, + transitional: bool = False, + allow_pure_ascii: bool = False, + strict_decode: bool = False, + ): + """Initialize the IDNA 2008 encoder/decoder. + + *uts_46* is a ``bool``. If True, apply Unicode IDNA + compatibility processing as described in Unicode Technical + Standard #46 (https://unicode.org/reports/tr46/). + If False, do not apply the mapping. The default is False. + + *transitional* is a ``bool``: If True, use the + "transitional" mode described in Unicode Technical Standard + #46. The default is False. + + *allow_pure_ascii* is a ``bool``. If True, then a label which + consists of only ASCII characters is allowed. This is less + strict than regular IDNA 2008, but is also necessary for mixed + names, e.g. a name with starting with "_sip._tcp." and ending + in an IDN suffix which would otherwise be disallowed. The + default is False. + + *strict_decode* is a ``bool``: If True, then IDNA2008 checking + is done when decoding. This can cause failures if the name + was encoded with IDNA2003. The default is False. + """ + super().__init__() + self.uts_46 = uts_46 + self.transitional = transitional + self.allow_pure_ascii = allow_pure_ascii + self.strict_decode = strict_decode + + def encode(self, label: str) -> bytes: + if label == "": + return b"" + if self.allow_pure_ascii and is_all_ascii(label): + encoded = label.encode("ascii") + if len(encoded) > 63: + raise LabelTooLong + return encoded + if not have_idna_2008: + raise NoIDNA2008 + try: + if self.uts_46: + # pylint: disable=possibly-used-before-assignment + label = idna.uts46_remap(label, False, self.transitional) + return idna.alabel(label) + except idna.IDNAError as e: + if e.args[0] == "Label too long": + raise LabelTooLong + else: + raise IDNAException(idna_exception=e) + + def decode(self, label: bytes) -> str: + if not self.strict_decode: + return super().decode(label) + if label == b"": + return "" + if not have_idna_2008: + raise NoIDNA2008 + try: + ulabel = idna.ulabel(label) + if self.uts_46: + ulabel = idna.uts46_remap(ulabel, False, self.transitional) + return _escapify(ulabel) + except (idna.IDNAError, UnicodeError) as e: + raise IDNAException(idna_exception=e) + + +IDNA_2003_Practical = IDNA2003Codec(False) +IDNA_2003_Strict = IDNA2003Codec(True) +IDNA_2003 = IDNA_2003_Practical +IDNA_2008_Practical = IDNA2008Codec(True, False, True, False) +IDNA_2008_UTS_46 = IDNA2008Codec(True, False, False, False) +IDNA_2008_Strict = IDNA2008Codec(False, False, False, True) +IDNA_2008_Transitional = IDNA2008Codec(True, True, False, False) +IDNA_2008 = IDNA_2008_Practical + + +def _validate_labels(labels: Tuple[bytes, ...]) -> None: + """Check for empty labels in the middle of a label sequence, + labels that are too long, and for too many labels. + + Raises ``dns.name.NameTooLong`` if the name as a whole is too long. + + Raises ``dns.name.EmptyLabel`` if a label is empty (i.e. the root + label) and appears in a position other than the end of the label + sequence + + """ + + l = len(labels) + total = 0 + i = -1 + j = 0 + for label in labels: + ll = len(label) + total += ll + 1 + if ll > 63: + raise LabelTooLong + if i < 0 and label == b"": + i = j + j += 1 + if total > 255: + raise NameTooLong + if i >= 0 and i != l - 1: + raise EmptyLabel + + +def _maybe_convert_to_binary(label: Union[bytes, str]) -> bytes: + """If label is ``str``, convert it to ``bytes``. If it is already + ``bytes`` just return it. + + """ + + if isinstance(label, bytes): + return label + if isinstance(label, str): + return label.encode() + raise ValueError # pragma: no cover + + +@dns.immutable.immutable +class Name: + """A DNS name. + + The dns.name.Name class represents a DNS name as a tuple of + labels. Each label is a ``bytes`` in DNS wire format. Instances + of the class are immutable. + """ + + __slots__ = ["labels"] + + def __init__(self, labels: Iterable[Union[bytes, str]]): + """*labels* is any iterable whose values are ``str`` or ``bytes``.""" + + blabels = [_maybe_convert_to_binary(x) for x in labels] + self.labels = tuple(blabels) + _validate_labels(self.labels) + + def __copy__(self): + return Name(self.labels) + + def __deepcopy__(self, memo): + return Name(copy.deepcopy(self.labels, memo)) + + def __getstate__(self): + # Names can be pickled + return {"labels": self.labels} + + def __setstate__(self, state): + super().__setattr__("labels", state["labels"]) + _validate_labels(self.labels) + + def is_absolute(self) -> bool: + """Is the most significant label of this name the root label? + + Returns a ``bool``. + """ + + return len(self.labels) > 0 and self.labels[-1] == b"" + + def is_wild(self) -> bool: + """Is this name wild? (I.e. Is the least significant label '*'?) + + Returns a ``bool``. + """ + + return len(self.labels) > 0 and self.labels[0] == b"*" + + def __hash__(self) -> int: + """Return a case-insensitive hash of the name. + + Returns an ``int``. + """ + + h = 0 + for label in self.labels: + for c in label.lower(): + h += (h << 3) + c + return h + + def fullcompare(self, other: "Name") -> Tuple[NameRelation, int, int]: + """Compare two names, returning a 3-tuple + ``(relation, order, nlabels)``. + + *relation* describes the relation ship between the names, + and is one of: ``dns.name.NameRelation.NONE``, + ``dns.name.NameRelation.SUPERDOMAIN``, ``dns.name.NameRelation.SUBDOMAIN``, + ``dns.name.NameRelation.EQUAL``, or ``dns.name.NameRelation.COMMONANCESTOR``. + + *order* is < 0 if *self* < *other*, > 0 if *self* > *other*, and == + 0 if *self* == *other*. A relative name is always less than an + absolute name. If both names have the same relativity, then + the DNSSEC order relation is used to order them. + + *nlabels* is the number of significant labels that the two names + have in common. + + Here are some examples. Names ending in "." are absolute names, + those not ending in "." are relative names. + + ============= ============= =========== ===== ======= + self other relation order nlabels + ============= ============= =========== ===== ======= + www.example. www.example. equal 0 3 + www.example. example. subdomain > 0 2 + example. www.example. superdomain < 0 2 + example1.com. example2.com. common anc. < 0 2 + example1 example2. none < 0 0 + example1. example2 none > 0 0 + ============= ============= =========== ===== ======= + """ + + sabs = self.is_absolute() + oabs = other.is_absolute() + if sabs != oabs: + if sabs: + return (NameRelation.NONE, 1, 0) + else: + return (NameRelation.NONE, -1, 0) + l1 = len(self.labels) + l2 = len(other.labels) + ldiff = l1 - l2 + if ldiff < 0: + l = l1 + else: + l = l2 + + order = 0 + nlabels = 0 + namereln = NameRelation.NONE + while l > 0: + l -= 1 + l1 -= 1 + l2 -= 1 + label1 = self.labels[l1].lower() + label2 = other.labels[l2].lower() + if label1 < label2: + order = -1 + if nlabels > 0: + namereln = NameRelation.COMMONANCESTOR + return (namereln, order, nlabels) + elif label1 > label2: + order = 1 + if nlabels > 0: + namereln = NameRelation.COMMONANCESTOR + return (namereln, order, nlabels) + nlabels += 1 + order = ldiff + if ldiff < 0: + namereln = NameRelation.SUPERDOMAIN + elif ldiff > 0: + namereln = NameRelation.SUBDOMAIN + else: + namereln = NameRelation.EQUAL + return (namereln, order, nlabels) + + def is_subdomain(self, other: "Name") -> bool: + """Is self a subdomain of other? + + Note that the notion of subdomain includes equality, e.g. + "dnspython.org" is a subdomain of itself. + + Returns a ``bool``. + """ + + (nr, _, _) = self.fullcompare(other) + if nr == NameRelation.SUBDOMAIN or nr == NameRelation.EQUAL: + return True + return False + + def is_superdomain(self, other: "Name") -> bool: + """Is self a superdomain of other? + + Note that the notion of superdomain includes equality, e.g. + "dnspython.org" is a superdomain of itself. + + Returns a ``bool``. + """ + + (nr, _, _) = self.fullcompare(other) + if nr == NameRelation.SUPERDOMAIN or nr == NameRelation.EQUAL: + return True + return False + + def canonicalize(self) -> "Name": + """Return a name which is equal to the current name, but is in + DNSSEC canonical form. + """ + + return Name([x.lower() for x in self.labels]) + + def __eq__(self, other): + if isinstance(other, Name): + return self.fullcompare(other)[1] == 0 + else: + return False + + def __ne__(self, other): + if isinstance(other, Name): + return self.fullcompare(other)[1] != 0 + else: + return True + + def __lt__(self, other): + if isinstance(other, Name): + return self.fullcompare(other)[1] < 0 + else: + return NotImplemented + + def __le__(self, other): + if isinstance(other, Name): + return self.fullcompare(other)[1] <= 0 + else: + return NotImplemented + + def __ge__(self, other): + if isinstance(other, Name): + return self.fullcompare(other)[1] >= 0 + else: + return NotImplemented + + def __gt__(self, other): + if isinstance(other, Name): + return self.fullcompare(other)[1] > 0 + else: + return NotImplemented + + def __repr__(self): + return "" + + def __str__(self): + return self.to_text(False) + + def to_text(self, omit_final_dot: bool = False) -> str: + """Convert name to DNS text format. + + *omit_final_dot* is a ``bool``. If True, don't emit the final + dot (denoting the root label) for absolute names. The default + is False. + + Returns a ``str``. + """ + + if len(self.labels) == 0: + return "@" + if len(self.labels) == 1 and self.labels[0] == b"": + return "." + if omit_final_dot and self.is_absolute(): + l = self.labels[:-1] + else: + l = self.labels + s = ".".join(map(_escapify, l)) + return s + + def to_unicode( + self, omit_final_dot: bool = False, idna_codec: Optional[IDNACodec] = None + ) -> str: + """Convert name to Unicode text format. + + IDN ACE labels are converted to Unicode. + + *omit_final_dot* is a ``bool``. If True, don't emit the final + dot (denoting the root label) for absolute names. The default + is False. + *idna_codec* specifies the IDNA encoder/decoder. If None, the + dns.name.IDNA_2003_Practical encoder/decoder is used. + The IDNA_2003_Practical decoder does + not impose any policy, it just decodes punycode, so if you + don't want checking for compliance, you can use this decoder + for IDNA2008 as well. + + Returns a ``str``. + """ + + if len(self.labels) == 0: + return "@" + if len(self.labels) == 1 and self.labels[0] == b"": + return "." + if omit_final_dot and self.is_absolute(): + l = self.labels[:-1] + else: + l = self.labels + if idna_codec is None: + idna_codec = IDNA_2003_Practical + return ".".join([idna_codec.decode(x) for x in l]) + + def to_digestable(self, origin: Optional["Name"] = None) -> bytes: + """Convert name to a format suitable for digesting in hashes. + + The name is canonicalized and converted to uncompressed wire + format. All names in wire format are absolute. If the name + is a relative name, then an origin must be supplied. + + *origin* is a ``dns.name.Name`` or ``None``. If the name is + relative and origin is not ``None``, then origin will be appended + to the name. + + Raises ``dns.name.NeedAbsoluteNameOrOrigin`` if the name is + relative and no origin was provided. + + Returns a ``bytes``. + """ + + digest = self.to_wire(origin=origin, canonicalize=True) + assert digest is not None + return digest + + def to_wire( + self, + file: Optional[Any] = None, + compress: Optional[CompressType] = None, + origin: Optional["Name"] = None, + canonicalize: bool = False, + ) -> Optional[bytes]: + """Convert name to wire format, possibly compressing it. + + *file* is the file where the name is emitted (typically an + io.BytesIO file). If ``None`` (the default), a ``bytes`` + containing the wire name will be returned. + + *compress*, a ``dict``, is the compression table to use. If + ``None`` (the default), names will not be compressed. Note that + the compression code assumes that compression offset 0 is the + start of *file*, and thus compression will not be correct + if this is not the case. + + *origin* is a ``dns.name.Name`` or ``None``. If the name is + relative and origin is not ``None``, then *origin* will be appended + to it. + + *canonicalize*, a ``bool``, indicates whether the name should + be canonicalized; that is, converted to a format suitable for + digesting in hashes. + + Raises ``dns.name.NeedAbsoluteNameOrOrigin`` if the name is + relative and no origin was provided. + + Returns a ``bytes`` or ``None``. + """ + + if file is None: + out = bytearray() + for label in self.labels: + out.append(len(label)) + if canonicalize: + out += label.lower() + else: + out += label + if not self.is_absolute(): + if origin is None or not origin.is_absolute(): + raise NeedAbsoluteNameOrOrigin + for label in origin.labels: + out.append(len(label)) + if canonicalize: + out += label.lower() + else: + out += label + return bytes(out) + + labels: Iterable[bytes] + if not self.is_absolute(): + if origin is None or not origin.is_absolute(): + raise NeedAbsoluteNameOrOrigin + labels = list(self.labels) + labels.extend(list(origin.labels)) + else: + labels = self.labels + i = 0 + for label in labels: + n = Name(labels[i:]) + i += 1 + if compress is not None: + pos = compress.get(n) + else: + pos = None + if pos is not None: + value = 0xC000 + pos + s = struct.pack("!H", value) + file.write(s) + break + else: + if compress is not None and len(n) > 1: + pos = file.tell() + if pos <= 0x3FFF: + compress[n] = pos + l = len(label) + file.write(struct.pack("!B", l)) + if l > 0: + if canonicalize: + file.write(label.lower()) + else: + file.write(label) + return None + + def __len__(self) -> int: + """The length of the name (in labels). + + Returns an ``int``. + """ + + return len(self.labels) + + def __getitem__(self, index): + return self.labels[index] + + def __add__(self, other): + return self.concatenate(other) + + def __sub__(self, other): + return self.relativize(other) + + def split(self, depth: int) -> Tuple["Name", "Name"]: + """Split a name into a prefix and suffix names at the specified depth. + + *depth* is an ``int`` specifying the number of labels in the suffix + + Raises ``ValueError`` if *depth* was not >= 0 and <= the length of the + name. + + Returns the tuple ``(prefix, suffix)``. + """ + + l = len(self.labels) + if depth == 0: + return (self, dns.name.empty) + elif depth == l: + return (dns.name.empty, self) + elif depth < 0 or depth > l: + raise ValueError("depth must be >= 0 and <= the length of the name") + return (Name(self[:-depth]), Name(self[-depth:])) + + def concatenate(self, other: "Name") -> "Name": + """Return a new name which is the concatenation of self and other. + + Raises ``dns.name.AbsoluteConcatenation`` if the name is + absolute and *other* is not the empty name. + + Returns a ``dns.name.Name``. + """ + + if self.is_absolute() and len(other) > 0: + raise AbsoluteConcatenation + labels = list(self.labels) + labels.extend(list(other.labels)) + return Name(labels) + + def relativize(self, origin: "Name") -> "Name": + """If the name is a subdomain of *origin*, return a new name which is + the name relative to origin. Otherwise return the name. + + For example, relativizing ``www.dnspython.org.`` to origin + ``dnspython.org.`` returns the name ``www``. Relativizing ``example.`` + to origin ``dnspython.org.`` returns ``example.``. + + Returns a ``dns.name.Name``. + """ + + if origin is not None and self.is_subdomain(origin): + return Name(self[: -len(origin)]) + else: + return self + + def derelativize(self, origin: "Name") -> "Name": + """If the name is a relative name, return a new name which is the + concatenation of the name and origin. Otherwise return the name. + + For example, derelativizing ``www`` to origin ``dnspython.org.`` + returns the name ``www.dnspython.org.``. Derelativizing ``example.`` + to origin ``dnspython.org.`` returns ``example.``. + + Returns a ``dns.name.Name``. + """ + + if not self.is_absolute(): + return self.concatenate(origin) + else: + return self + + def choose_relativity( + self, origin: Optional["Name"] = None, relativize: bool = True + ) -> "Name": + """Return a name with the relativity desired by the caller. + + If *origin* is ``None``, then the name is returned. + Otherwise, if *relativize* is ``True`` the name is + relativized, and if *relativize* is ``False`` the name is + derelativized. + + Returns a ``dns.name.Name``. + """ + + if origin: + if relativize: + return self.relativize(origin) + else: + return self.derelativize(origin) + else: + return self + + def parent(self) -> "Name": + """Return the parent of the name. + + For example, the parent of ``www.dnspython.org.`` is ``dnspython.org``. + + Raises ``dns.name.NoParent`` if the name is either the root name or the + empty name, and thus has no parent. + + Returns a ``dns.name.Name``. + """ + + if self == root or self == empty: + raise NoParent + return Name(self.labels[1:]) + + def predecessor(self, origin: "Name", prefix_ok: bool = True) -> "Name": + """Return the maximal predecessor of *name* in the DNSSEC ordering in the zone + whose origin is *origin*, or return the longest name under *origin* if the + name is origin (i.e. wrap around to the longest name, which may still be + *origin* due to length considerations. + + The relativity of the name is preserved, so if this name is relative + then the method will return a relative name, and likewise if this name + is absolute then the predecessor will be absolute. + + *prefix_ok* indicates if prefixing labels is allowed, and + defaults to ``True``. Normally it is good to allow this, but if computing + a maximal predecessor at a zone cut point then ``False`` must be specified. + """ + return _handle_relativity_and_call( + _absolute_predecessor, self, origin, prefix_ok + ) + + def successor(self, origin: "Name", prefix_ok: bool = True) -> "Name": + """Return the minimal successor of *name* in the DNSSEC ordering in the zone + whose origin is *origin*, or return *origin* if the successor cannot be + computed due to name length limitations. + + Note that *origin* is returned in the "too long" cases because wrapping + around to the origin is how NSEC records express "end of the zone". + + The relativity of the name is preserved, so if this name is relative + then the method will return a relative name, and likewise if this name + is absolute then the successor will be absolute. + + *prefix_ok* indicates if prefixing a new minimal label is allowed, and + defaults to ``True``. Normally it is good to allow this, but if computing + a minimal successor at a zone cut point then ``False`` must be specified. + """ + return _handle_relativity_and_call(_absolute_successor, self, origin, prefix_ok) + + +#: The root name, '.' +root = Name([b""]) + +#: The empty name. +empty = Name([]) + + +def from_unicode( + text: str, origin: Optional[Name] = root, idna_codec: Optional[IDNACodec] = None +) -> Name: + """Convert unicode text into a Name object. + + Labels are encoded in IDN ACE form according to rules specified by + the IDNA codec. + + *text*, a ``str``, is the text to convert into a name. + + *origin*, a ``dns.name.Name``, specifies the origin to + append to non-absolute names. The default is the root name. + + *idna_codec*, a ``dns.name.IDNACodec``, specifies the IDNA + encoder/decoder. If ``None``, the default IDNA 2003 encoder/decoder + is used. + + Returns a ``dns.name.Name``. + """ + + if not isinstance(text, str): + raise ValueError("input to from_unicode() must be a unicode string") + if not (origin is None or isinstance(origin, Name)): + raise ValueError("origin must be a Name or None") + labels = [] + label = "" + escaping = False + edigits = 0 + total = 0 + if idna_codec is None: + idna_codec = IDNA_2003 + if text == "@": + text = "" + if text: + if text in [".", "\u3002", "\uff0e", "\uff61"]: + return Name([b""]) # no Unicode "u" on this constant! + for c in text: + if escaping: + if edigits == 0: + if c.isdigit(): + total = int(c) + edigits += 1 + else: + label += c + escaping = False + else: + if not c.isdigit(): + raise BadEscape + total *= 10 + total += int(c) + edigits += 1 + if edigits == 3: + escaping = False + label += chr(total) + elif c in [".", "\u3002", "\uff0e", "\uff61"]: + if len(label) == 0: + raise EmptyLabel + labels.append(idna_codec.encode(label)) + label = "" + elif c == "\\": + escaping = True + edigits = 0 + total = 0 + else: + label += c + if escaping: + raise BadEscape + if len(label) > 0: + labels.append(idna_codec.encode(label)) + else: + labels.append(b"") + + if (len(labels) == 0 or labels[-1] != b"") and origin is not None: + labels.extend(list(origin.labels)) + return Name(labels) + + +def is_all_ascii(text: str) -> bool: + for c in text: + if ord(c) > 0x7F: + return False + return True + + +def from_text( + text: Union[bytes, str], + origin: Optional[Name] = root, + idna_codec: Optional[IDNACodec] = None, +) -> Name: + """Convert text into a Name object. + + *text*, a ``bytes`` or ``str``, is the text to convert into a name. + + *origin*, a ``dns.name.Name``, specifies the origin to + append to non-absolute names. The default is the root name. + + *idna_codec*, a ``dns.name.IDNACodec``, specifies the IDNA + encoder/decoder. If ``None``, the default IDNA 2003 encoder/decoder + is used. + + Returns a ``dns.name.Name``. + """ + + if isinstance(text, str): + if not is_all_ascii(text): + # Some codepoint in the input text is > 127, so IDNA applies. + return from_unicode(text, origin, idna_codec) + # The input is all ASCII, so treat this like an ordinary non-IDNA + # domain name. Note that "all ASCII" is about the input text, + # not the codepoints in the domain name. E.g. if text has value + # + # r'\150\151\152\153\154\155\156\157\158\159' + # + # then it's still "all ASCII" even though the domain name has + # codepoints > 127. + text = text.encode("ascii") + if not isinstance(text, bytes): + raise ValueError("input to from_text() must be a string") + if not (origin is None or isinstance(origin, Name)): + raise ValueError("origin must be a Name or None") + labels = [] + label = b"" + escaping = False + edigits = 0 + total = 0 + if text == b"@": + text = b"" + if text: + if text == b".": + return Name([b""]) + for c in text: + byte_ = struct.pack("!B", c) + if escaping: + if edigits == 0: + if byte_.isdigit(): + total = int(byte_) + edigits += 1 + else: + label += byte_ + escaping = False + else: + if not byte_.isdigit(): + raise BadEscape + total *= 10 + total += int(byte_) + edigits += 1 + if edigits == 3: + escaping = False + label += struct.pack("!B", total) + elif byte_ == b".": + if len(label) == 0: + raise EmptyLabel + labels.append(label) + label = b"" + elif byte_ == b"\\": + escaping = True + edigits = 0 + total = 0 + else: + label += byte_ + if escaping: + raise BadEscape + if len(label) > 0: + labels.append(label) + else: + labels.append(b"") + if (len(labels) == 0 or labels[-1] != b"") and origin is not None: + labels.extend(list(origin.labels)) + return Name(labels) + + +# we need 'dns.wire.Parser' quoted as dns.name and dns.wire depend on each other. + + +def from_wire_parser(parser: "dns.wire.Parser") -> Name: + """Convert possibly compressed wire format into a Name. + + *parser* is a dns.wire.Parser. + + Raises ``dns.name.BadPointer`` if a compression pointer did not + point backwards in the message. + + Raises ``dns.name.BadLabelType`` if an invalid label type was encountered. + + Returns a ``dns.name.Name`` + """ + + labels = [] + biggest_pointer = parser.current + with parser.restore_furthest(): + count = parser.get_uint8() + while count != 0: + if count < 64: + labels.append(parser.get_bytes(count)) + elif count >= 192: + current = (count & 0x3F) * 256 + parser.get_uint8() + if current >= biggest_pointer: + raise BadPointer + biggest_pointer = current + parser.seek(current) + else: + raise BadLabelType + count = parser.get_uint8() + labels.append(b"") + return Name(labels) + + +def from_wire(message: bytes, current: int) -> Tuple[Name, int]: + """Convert possibly compressed wire format into a Name. + + *message* is a ``bytes`` containing an entire DNS message in DNS + wire form. + + *current*, an ``int``, is the offset of the beginning of the name + from the start of the message + + Raises ``dns.name.BadPointer`` if a compression pointer did not + point backwards in the message. + + Raises ``dns.name.BadLabelType`` if an invalid label type was encountered. + + Returns a ``(dns.name.Name, int)`` tuple consisting of the name + that was read and the number of bytes of the wire format message + which were consumed reading it. + """ + + if not isinstance(message, bytes): + raise ValueError("input to from_wire() must be a byte string") + parser = dns.wire.Parser(message, current) + name = from_wire_parser(parser) + return (name, parser.current - current) + + +# RFC 4471 Support + +_MINIMAL_OCTET = b"\x00" +_MINIMAL_OCTET_VALUE = ord(_MINIMAL_OCTET) +_SUCCESSOR_PREFIX = Name([_MINIMAL_OCTET]) +_MAXIMAL_OCTET = b"\xff" +_MAXIMAL_OCTET_VALUE = ord(_MAXIMAL_OCTET) +_AT_SIGN_VALUE = ord("@") +_LEFT_SQUARE_BRACKET_VALUE = ord("[") + + +def _wire_length(labels): + return functools.reduce(lambda v, x: v + len(x) + 1, labels, 0) + + +def _pad_to_max_name(name): + needed = 255 - _wire_length(name.labels) + new_labels = [] + while needed > 64: + new_labels.append(_MAXIMAL_OCTET * 63) + needed -= 64 + if needed >= 2: + new_labels.append(_MAXIMAL_OCTET * (needed - 1)) + # Note we're already maximal in the needed == 1 case as while we'd like + # to add one more byte as a new label, we can't, as adding a new non-empty + # label requires at least 2 bytes. + new_labels = list(reversed(new_labels)) + new_labels.extend(name.labels) + return Name(new_labels) + + +def _pad_to_max_label(label, suffix_labels): + length = len(label) + # We have to subtract one here to account for the length byte of label. + remaining = 255 - _wire_length(suffix_labels) - length - 1 + if remaining <= 0: + # Shouldn't happen! + return label + needed = min(63 - length, remaining) + return label + _MAXIMAL_OCTET * needed + + +def _absolute_predecessor(name: Name, origin: Name, prefix_ok: bool) -> Name: + # This is the RFC 4471 predecessor algorithm using the "absolute method" of section + # 3.1.1. + # + # Our caller must ensure that the name and origin are absolute, and that name is a + # subdomain of origin. + if name == origin: + return _pad_to_max_name(name) + least_significant_label = name[0] + if least_significant_label == _MINIMAL_OCTET: + return name.parent() + least_octet = least_significant_label[-1] + suffix_labels = name.labels[1:] + if least_octet == _MINIMAL_OCTET_VALUE: + new_labels = [least_significant_label[:-1]] + else: + octets = bytearray(least_significant_label) + octet = octets[-1] + if octet == _LEFT_SQUARE_BRACKET_VALUE: + octet = _AT_SIGN_VALUE + else: + octet -= 1 + octets[-1] = octet + least_significant_label = bytes(octets) + new_labels = [_pad_to_max_label(least_significant_label, suffix_labels)] + new_labels.extend(suffix_labels) + name = Name(new_labels) + if prefix_ok: + return _pad_to_max_name(name) + else: + return name + + +def _absolute_successor(name: Name, origin: Name, prefix_ok: bool) -> Name: + # This is the RFC 4471 successor algorithm using the "absolute method" of section + # 3.1.2. + # + # Our caller must ensure that the name and origin are absolute, and that name is a + # subdomain of origin. + if prefix_ok: + # Try prefixing \000 as new label + try: + return _SUCCESSOR_PREFIX.concatenate(name) + except NameTooLong: + pass + while name != origin: + # Try extending the least significant label. + least_significant_label = name[0] + if len(least_significant_label) < 63: + # We may be able to extend the least label with a minimal additional byte. + # This is only "may" because we could have a maximal length name even though + # the least significant label isn't maximally long. + new_labels = [least_significant_label + _MINIMAL_OCTET] + new_labels.extend(name.labels[1:]) + try: + return dns.name.Name(new_labels) + except dns.name.NameTooLong: + pass + # We can't extend the label either, so we'll try to increment the least + # signficant non-maximal byte in it. + octets = bytearray(least_significant_label) + # We do this reversed iteration with an explicit indexing variable because + # if we find something to increment, we're going to want to truncate everything + # to the right of it. + for i in range(len(octets) - 1, -1, -1): + octet = octets[i] + if octet == _MAXIMAL_OCTET_VALUE: + # We can't increment this, so keep looking. + continue + # Finally, something we can increment. We have to apply a special rule for + # incrementing "@", sending it to "[", because RFC 4034 6.1 says that when + # comparing names, uppercase letters compare as if they were their + # lower-case equivalents. If we increment "@" to "A", then it would compare + # as "a", which is after "[", "\", "]", "^", "_", and "`", so we would have + # skipped the most minimal successor, namely "[". + if octet == _AT_SIGN_VALUE: + octet = _LEFT_SQUARE_BRACKET_VALUE + else: + octet += 1 + octets[i] = octet + # We can now truncate all of the maximal values we skipped (if any) + new_labels = [bytes(octets[: i + 1])] + new_labels.extend(name.labels[1:]) + # We haven't changed the length of the name, so the Name constructor will + # always work. + return Name(new_labels) + # We couldn't increment, so chop off the least significant label and try + # again. + name = name.parent() + + # We couldn't increment at all, so return the origin, as wrapping around is the + # DNSSEC way. + return origin + + +def _handle_relativity_and_call( + function: Callable[[Name, Name, bool], Name], + name: Name, + origin: Name, + prefix_ok: bool, +) -> Name: + # Make "name" absolute if needed, ensure that the origin is absolute, + # call function(), and then relativize the result if needed. + if not origin.is_absolute(): + raise NeedAbsoluteNameOrOrigin + relative = not name.is_absolute() + if relative: + name = name.derelativize(origin) + elif not name.is_subdomain(origin): + raise NeedSubdomainOfOrigin + result_name = function(name, origin, prefix_ok) + if relative: + result_name = result_name.relativize(origin) + return result_name diff --git a/.venv/lib/python3.11/site-packages/dns/namedict.py b/.venv/lib/python3.11/site-packages/dns/namedict.py new file mode 100644 index 0000000..ca8b197 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/namedict.py @@ -0,0 +1,109 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2003-2017 Nominum, Inc. +# Copyright (C) 2016 Coresec Systems AB +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND CORESEC SYSTEMS AB DISCLAIMS ALL +# WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED +# WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL CORESEC +# SYSTEMS AB BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR +# CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS +# OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, +# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION +# WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +"""DNS name dictionary""" + +# pylint seems to be confused about this one! +from collections.abc import MutableMapping # pylint: disable=no-name-in-module + +import dns.name + + +class NameDict(MutableMapping): + """A dictionary whose keys are dns.name.Name objects. + + In addition to being like a regular Python dictionary, this + dictionary can also get the deepest match for a given key. + """ + + __slots__ = ["max_depth", "max_depth_items", "__store"] + + def __init__(self, *args, **kwargs): + super().__init__() + self.__store = dict() + #: the maximum depth of the keys that have ever been added + self.max_depth = 0 + #: the number of items of maximum depth + self.max_depth_items = 0 + self.update(dict(*args, **kwargs)) + + def __update_max_depth(self, key): + if len(key) == self.max_depth: + self.max_depth_items = self.max_depth_items + 1 + elif len(key) > self.max_depth: + self.max_depth = len(key) + self.max_depth_items = 1 + + def __getitem__(self, key): + return self.__store[key] + + def __setitem__(self, key, value): + if not isinstance(key, dns.name.Name): + raise ValueError("NameDict key must be a name") + self.__store[key] = value + self.__update_max_depth(key) + + def __delitem__(self, key): + self.__store.pop(key) + if len(key) == self.max_depth: + self.max_depth_items = self.max_depth_items - 1 + if self.max_depth_items == 0: + self.max_depth = 0 + for k in self.__store: + self.__update_max_depth(k) + + def __iter__(self): + return iter(self.__store) + + def __len__(self): + return len(self.__store) + + def has_key(self, key): + return key in self.__store + + def get_deepest_match(self, name): + """Find the deepest match to *name* in the dictionary. + + The deepest match is the longest name in the dictionary which is + a superdomain of *name*. Note that *superdomain* includes matching + *name* itself. + + *name*, a ``dns.name.Name``, the name to find. + + Returns a ``(key, value)`` where *key* is the deepest + ``dns.name.Name``, and *value* is the value associated with *key*. + """ + + depth = len(name) + if depth > self.max_depth: + depth = self.max_depth + for i in range(-depth, 0): + n = dns.name.Name(name[i:]) + if n in self: + return (n, self[n]) + v = self[dns.name.empty] + return (dns.name.empty, v) diff --git a/.venv/lib/python3.11/site-packages/dns/nameserver.py b/.venv/lib/python3.11/site-packages/dns/nameserver.py new file mode 100644 index 0000000..b02a239 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/nameserver.py @@ -0,0 +1,363 @@ +from typing import Optional, Union +from urllib.parse import urlparse + +import dns.asyncbackend +import dns.asyncquery +import dns.inet +import dns.message +import dns.query + + +class Nameserver: + def __init__(self): + pass + + def __str__(self): + raise NotImplementedError + + def kind(self) -> str: + raise NotImplementedError + + def is_always_max_size(self) -> bool: + raise NotImplementedError + + def answer_nameserver(self) -> str: + raise NotImplementedError + + def answer_port(self) -> int: + raise NotImplementedError + + def query( + self, + request: dns.message.QueryMessage, + timeout: float, + source: Optional[str], + source_port: int, + max_size: bool, + one_rr_per_rrset: bool = False, + ignore_trailing: bool = False, + ) -> dns.message.Message: + raise NotImplementedError + + async def async_query( + self, + request: dns.message.QueryMessage, + timeout: float, + source: Optional[str], + source_port: int, + max_size: bool, + backend: dns.asyncbackend.Backend, + one_rr_per_rrset: bool = False, + ignore_trailing: bool = False, + ) -> dns.message.Message: + raise NotImplementedError + + +class AddressAndPortNameserver(Nameserver): + def __init__(self, address: str, port: int): + super().__init__() + self.address = address + self.port = port + + def kind(self) -> str: + raise NotImplementedError + + def is_always_max_size(self) -> bool: + return False + + def __str__(self): + ns_kind = self.kind() + return f"{ns_kind}:{self.address}@{self.port}" + + def answer_nameserver(self) -> str: + return self.address + + def answer_port(self) -> int: + return self.port + + +class Do53Nameserver(AddressAndPortNameserver): + def __init__(self, address: str, port: int = 53): + super().__init__(address, port) + + def kind(self): + return "Do53" + + def query( + self, + request: dns.message.QueryMessage, + timeout: float, + source: Optional[str], + source_port: int, + max_size: bool, + one_rr_per_rrset: bool = False, + ignore_trailing: bool = False, + ) -> dns.message.Message: + if max_size: + response = dns.query.tcp( + request, + self.address, + timeout=timeout, + port=self.port, + source=source, + source_port=source_port, + one_rr_per_rrset=one_rr_per_rrset, + ignore_trailing=ignore_trailing, + ) + else: + response = dns.query.udp( + request, + self.address, + timeout=timeout, + port=self.port, + source=source, + source_port=source_port, + raise_on_truncation=True, + one_rr_per_rrset=one_rr_per_rrset, + ignore_trailing=ignore_trailing, + ignore_errors=True, + ignore_unexpected=True, + ) + return response + + async def async_query( + self, + request: dns.message.QueryMessage, + timeout: float, + source: Optional[str], + source_port: int, + max_size: bool, + backend: dns.asyncbackend.Backend, + one_rr_per_rrset: bool = False, + ignore_trailing: bool = False, + ) -> dns.message.Message: + if max_size: + response = await dns.asyncquery.tcp( + request, + self.address, + timeout=timeout, + port=self.port, + source=source, + source_port=source_port, + backend=backend, + one_rr_per_rrset=one_rr_per_rrset, + ignore_trailing=ignore_trailing, + ) + else: + response = await dns.asyncquery.udp( + request, + self.address, + timeout=timeout, + port=self.port, + source=source, + source_port=source_port, + raise_on_truncation=True, + backend=backend, + one_rr_per_rrset=one_rr_per_rrset, + ignore_trailing=ignore_trailing, + ignore_errors=True, + ignore_unexpected=True, + ) + return response + + +class DoHNameserver(Nameserver): + def __init__( + self, + url: str, + bootstrap_address: Optional[str] = None, + verify: Union[bool, str] = True, + want_get: bool = False, + http_version: dns.query.HTTPVersion = dns.query.HTTPVersion.DEFAULT, + ): + super().__init__() + self.url = url + self.bootstrap_address = bootstrap_address + self.verify = verify + self.want_get = want_get + self.http_version = http_version + + def kind(self): + return "DoH" + + def is_always_max_size(self) -> bool: + return True + + def __str__(self): + return self.url + + def answer_nameserver(self) -> str: + return self.url + + def answer_port(self) -> int: + port = urlparse(self.url).port + if port is None: + port = 443 + return port + + def query( + self, + request: dns.message.QueryMessage, + timeout: float, + source: Optional[str], + source_port: int, + max_size: bool = False, + one_rr_per_rrset: bool = False, + ignore_trailing: bool = False, + ) -> dns.message.Message: + return dns.query.https( + request, + self.url, + timeout=timeout, + source=source, + source_port=source_port, + bootstrap_address=self.bootstrap_address, + one_rr_per_rrset=one_rr_per_rrset, + ignore_trailing=ignore_trailing, + verify=self.verify, + post=(not self.want_get), + http_version=self.http_version, + ) + + async def async_query( + self, + request: dns.message.QueryMessage, + timeout: float, + source: Optional[str], + source_port: int, + max_size: bool, + backend: dns.asyncbackend.Backend, + one_rr_per_rrset: bool = False, + ignore_trailing: bool = False, + ) -> dns.message.Message: + return await dns.asyncquery.https( + request, + self.url, + timeout=timeout, + source=source, + source_port=source_port, + bootstrap_address=self.bootstrap_address, + one_rr_per_rrset=one_rr_per_rrset, + ignore_trailing=ignore_trailing, + verify=self.verify, + post=(not self.want_get), + http_version=self.http_version, + ) + + +class DoTNameserver(AddressAndPortNameserver): + def __init__( + self, + address: str, + port: int = 853, + hostname: Optional[str] = None, + verify: Union[bool, str] = True, + ): + super().__init__(address, port) + self.hostname = hostname + self.verify = verify + + def kind(self): + return "DoT" + + def query( + self, + request: dns.message.QueryMessage, + timeout: float, + source: Optional[str], + source_port: int, + max_size: bool = False, + one_rr_per_rrset: bool = False, + ignore_trailing: bool = False, + ) -> dns.message.Message: + return dns.query.tls( + request, + self.address, + port=self.port, + timeout=timeout, + one_rr_per_rrset=one_rr_per_rrset, + ignore_trailing=ignore_trailing, + server_hostname=self.hostname, + verify=self.verify, + ) + + async def async_query( + self, + request: dns.message.QueryMessage, + timeout: float, + source: Optional[str], + source_port: int, + max_size: bool, + backend: dns.asyncbackend.Backend, + one_rr_per_rrset: bool = False, + ignore_trailing: bool = False, + ) -> dns.message.Message: + return await dns.asyncquery.tls( + request, + self.address, + port=self.port, + timeout=timeout, + one_rr_per_rrset=one_rr_per_rrset, + ignore_trailing=ignore_trailing, + server_hostname=self.hostname, + verify=self.verify, + ) + + +class DoQNameserver(AddressAndPortNameserver): + def __init__( + self, + address: str, + port: int = 853, + verify: Union[bool, str] = True, + server_hostname: Optional[str] = None, + ): + super().__init__(address, port) + self.verify = verify + self.server_hostname = server_hostname + + def kind(self): + return "DoQ" + + def query( + self, + request: dns.message.QueryMessage, + timeout: float, + source: Optional[str], + source_port: int, + max_size: bool = False, + one_rr_per_rrset: bool = False, + ignore_trailing: bool = False, + ) -> dns.message.Message: + return dns.query.quic( + request, + self.address, + port=self.port, + timeout=timeout, + one_rr_per_rrset=one_rr_per_rrset, + ignore_trailing=ignore_trailing, + verify=self.verify, + server_hostname=self.server_hostname, + ) + + async def async_query( + self, + request: dns.message.QueryMessage, + timeout: float, + source: Optional[str], + source_port: int, + max_size: bool, + backend: dns.asyncbackend.Backend, + one_rr_per_rrset: bool = False, + ignore_trailing: bool = False, + ) -> dns.message.Message: + return await dns.asyncquery.quic( + request, + self.address, + port=self.port, + timeout=timeout, + one_rr_per_rrset=one_rr_per_rrset, + ignore_trailing=ignore_trailing, + verify=self.verify, + server_hostname=self.server_hostname, + ) diff --git a/.venv/lib/python3.11/site-packages/dns/node.py b/.venv/lib/python3.11/site-packages/dns/node.py new file mode 100644 index 0000000..de85a82 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/node.py @@ -0,0 +1,359 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2001-2017 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +"""DNS nodes. A node is a set of rdatasets.""" + +import enum +import io +from typing import Any, Dict, Optional + +import dns.immutable +import dns.name +import dns.rdataclass +import dns.rdataset +import dns.rdatatype +import dns.renderer +import dns.rrset + +_cname_types = { + dns.rdatatype.CNAME, +} + +# "neutral" types can coexist with a CNAME and thus are not "other data" +_neutral_types = { + dns.rdatatype.NSEC, # RFC 4035 section 2.5 + dns.rdatatype.NSEC3, # This is not likely to happen, but not impossible! + dns.rdatatype.KEY, # RFC 4035 section 2.5, RFC 3007 +} + + +def _matches_type_or_its_signature(rdtypes, rdtype, covers): + return rdtype in rdtypes or (rdtype == dns.rdatatype.RRSIG and covers in rdtypes) + + +@enum.unique +class NodeKind(enum.Enum): + """Rdatasets in nodes""" + + REGULAR = 0 # a.k.a "other data" + NEUTRAL = 1 + CNAME = 2 + + @classmethod + def classify( + cls, rdtype: dns.rdatatype.RdataType, covers: dns.rdatatype.RdataType + ) -> "NodeKind": + if _matches_type_or_its_signature(_cname_types, rdtype, covers): + return NodeKind.CNAME + elif _matches_type_or_its_signature(_neutral_types, rdtype, covers): + return NodeKind.NEUTRAL + else: + return NodeKind.REGULAR + + @classmethod + def classify_rdataset(cls, rdataset: dns.rdataset.Rdataset) -> "NodeKind": + return cls.classify(rdataset.rdtype, rdataset.covers) + + +class Node: + """A Node is a set of rdatasets. + + A node is either a CNAME node or an "other data" node. A CNAME + node contains only CNAME, KEY, NSEC, and NSEC3 rdatasets along with their + covering RRSIG rdatasets. An "other data" node contains any + rdataset other than a CNAME or RRSIG(CNAME) rdataset. When + changes are made to a node, the CNAME or "other data" state is + always consistent with the update, i.e. the most recent change + wins. For example, if you have a node which contains a CNAME + rdataset, and then add an MX rdataset to it, then the CNAME + rdataset will be deleted. Likewise if you have a node containing + an MX rdataset and add a CNAME rdataset, the MX rdataset will be + deleted. + """ + + __slots__ = ["rdatasets"] + + def __init__(self): + # the set of rdatasets, represented as a list. + self.rdatasets = [] + + def to_text(self, name: dns.name.Name, **kw: Dict[str, Any]) -> str: + """Convert a node to text format. + + Each rdataset at the node is printed. Any keyword arguments + to this method are passed on to the rdataset's to_text() method. + + *name*, a ``dns.name.Name``, the owner name of the + rdatasets. + + Returns a ``str``. + + """ + + s = io.StringIO() + for rds in self.rdatasets: + if len(rds) > 0: + s.write(rds.to_text(name, **kw)) # type: ignore[arg-type] + s.write("\n") + return s.getvalue()[:-1] + + def __repr__(self): + return "" + + def __eq__(self, other): + # + # This is inefficient. Good thing we don't need to do it much. + # + for rd in self.rdatasets: + if rd not in other.rdatasets: + return False + for rd in other.rdatasets: + if rd not in self.rdatasets: + return False + return True + + def __ne__(self, other): + return not self.__eq__(other) + + def __len__(self): + return len(self.rdatasets) + + def __iter__(self): + return iter(self.rdatasets) + + def _append_rdataset(self, rdataset): + """Append rdataset to the node with special handling for CNAME and + other data conditions. + + Specifically, if the rdataset being appended has ``NodeKind.CNAME``, + then all rdatasets other than KEY, NSEC, NSEC3, and their covering + RRSIGs are deleted. If the rdataset being appended has + ``NodeKind.REGULAR`` then CNAME and RRSIG(CNAME) are deleted. + """ + # Make having just one rdataset at the node fast. + if len(self.rdatasets) > 0: + kind = NodeKind.classify_rdataset(rdataset) + if kind == NodeKind.CNAME: + self.rdatasets = [ + rds + for rds in self.rdatasets + if NodeKind.classify_rdataset(rds) != NodeKind.REGULAR + ] + elif kind == NodeKind.REGULAR: + self.rdatasets = [ + rds + for rds in self.rdatasets + if NodeKind.classify_rdataset(rds) != NodeKind.CNAME + ] + # Otherwise the rdataset is NodeKind.NEUTRAL and we do not need to + # edit self.rdatasets. + self.rdatasets.append(rdataset) + + def find_rdataset( + self, + rdclass: dns.rdataclass.RdataClass, + rdtype: dns.rdatatype.RdataType, + covers: dns.rdatatype.RdataType = dns.rdatatype.NONE, + create: bool = False, + ) -> dns.rdataset.Rdataset: + """Find an rdataset matching the specified properties in the + current node. + + *rdclass*, a ``dns.rdataclass.RdataClass``, the class of the rdataset. + + *rdtype*, a ``dns.rdatatype.RdataType``, the type of the rdataset. + + *covers*, a ``dns.rdatatype.RdataType``, the covered type. + Usually this value is ``dns.rdatatype.NONE``, but if the + rdtype is ``dns.rdatatype.SIG`` or ``dns.rdatatype.RRSIG``, + then the covers value will be the rdata type the SIG/RRSIG + covers. The library treats the SIG and RRSIG types as if they + were a family of types, e.g. RRSIG(A), RRSIG(NS), RRSIG(SOA). + This makes RRSIGs much easier to work with than if RRSIGs + covering different rdata types were aggregated into a single + RRSIG rdataset. + + *create*, a ``bool``. If True, create the rdataset if it is not found. + + Raises ``KeyError`` if an rdataset of the desired type and class does + not exist and *create* is not ``True``. + + Returns a ``dns.rdataset.Rdataset``. + """ + + for rds in self.rdatasets: + if rds.match(rdclass, rdtype, covers): + return rds + if not create: + raise KeyError + rds = dns.rdataset.Rdataset(rdclass, rdtype, covers) + self._append_rdataset(rds) + return rds + + def get_rdataset( + self, + rdclass: dns.rdataclass.RdataClass, + rdtype: dns.rdatatype.RdataType, + covers: dns.rdatatype.RdataType = dns.rdatatype.NONE, + create: bool = False, + ) -> Optional[dns.rdataset.Rdataset]: + """Get an rdataset matching the specified properties in the + current node. + + None is returned if an rdataset of the specified type and + class does not exist and *create* is not ``True``. + + *rdclass*, an ``int``, the class of the rdataset. + + *rdtype*, an ``int``, the type of the rdataset. + + *covers*, an ``int``, the covered type. Usually this value is + dns.rdatatype.NONE, but if the rdtype is dns.rdatatype.SIG or + dns.rdatatype.RRSIG, then the covers value will be the rdata + type the SIG/RRSIG covers. The library treats the SIG and RRSIG + types as if they were a family of + types, e.g. RRSIG(A), RRSIG(NS), RRSIG(SOA). This makes RRSIGs much + easier to work with than if RRSIGs covering different rdata + types were aggregated into a single RRSIG rdataset. + + *create*, a ``bool``. If True, create the rdataset if it is not found. + + Returns a ``dns.rdataset.Rdataset`` or ``None``. + """ + + try: + rds = self.find_rdataset(rdclass, rdtype, covers, create) + except KeyError: + rds = None + return rds + + def delete_rdataset( + self, + rdclass: dns.rdataclass.RdataClass, + rdtype: dns.rdatatype.RdataType, + covers: dns.rdatatype.RdataType = dns.rdatatype.NONE, + ) -> None: + """Delete the rdataset matching the specified properties in the + current node. + + If a matching rdataset does not exist, it is not an error. + + *rdclass*, an ``int``, the class of the rdataset. + + *rdtype*, an ``int``, the type of the rdataset. + + *covers*, an ``int``, the covered type. + """ + + rds = self.get_rdataset(rdclass, rdtype, covers) + if rds is not None: + self.rdatasets.remove(rds) + + def replace_rdataset(self, replacement: dns.rdataset.Rdataset) -> None: + """Replace an rdataset. + + It is not an error if there is no rdataset matching *replacement*. + + Ownership of the *replacement* object is transferred to the node; + in other words, this method does not store a copy of *replacement* + at the node, it stores *replacement* itself. + + *replacement*, a ``dns.rdataset.Rdataset``. + + Raises ``ValueError`` if *replacement* is not a + ``dns.rdataset.Rdataset``. + """ + + if not isinstance(replacement, dns.rdataset.Rdataset): + raise ValueError("replacement is not an rdataset") + if isinstance(replacement, dns.rrset.RRset): + # RRsets are not good replacements as the match() method + # is not compatible. + replacement = replacement.to_rdataset() + self.delete_rdataset( + replacement.rdclass, replacement.rdtype, replacement.covers + ) + self._append_rdataset(replacement) + + def classify(self) -> NodeKind: + """Classify a node. + + A node which contains a CNAME or RRSIG(CNAME) is a + ``NodeKind.CNAME`` node. + + A node which contains only "neutral" types, i.e. types allowed to + co-exist with a CNAME, is a ``NodeKind.NEUTRAL`` node. The neutral + types are NSEC, NSEC3, KEY, and their associated RRSIGS. An empty node + is also considered neutral. + + A node which contains some rdataset which is not a CNAME, RRSIG(CNAME), + or a neutral type is a a ``NodeKind.REGULAR`` node. Regular nodes are + also commonly referred to as "other data". + """ + for rdataset in self.rdatasets: + kind = NodeKind.classify(rdataset.rdtype, rdataset.covers) + if kind != NodeKind.NEUTRAL: + return kind + return NodeKind.NEUTRAL + + def is_immutable(self) -> bool: + return False + + +@dns.immutable.immutable +class ImmutableNode(Node): + def __init__(self, node): + super().__init__() + self.rdatasets = tuple( + [dns.rdataset.ImmutableRdataset(rds) for rds in node.rdatasets] + ) + + def find_rdataset( + self, + rdclass: dns.rdataclass.RdataClass, + rdtype: dns.rdatatype.RdataType, + covers: dns.rdatatype.RdataType = dns.rdatatype.NONE, + create: bool = False, + ) -> dns.rdataset.Rdataset: + if create: + raise TypeError("immutable") + return super().find_rdataset(rdclass, rdtype, covers, False) + + def get_rdataset( + self, + rdclass: dns.rdataclass.RdataClass, + rdtype: dns.rdatatype.RdataType, + covers: dns.rdatatype.RdataType = dns.rdatatype.NONE, + create: bool = False, + ) -> Optional[dns.rdataset.Rdataset]: + if create: + raise TypeError("immutable") + return super().get_rdataset(rdclass, rdtype, covers, False) + + def delete_rdataset( + self, + rdclass: dns.rdataclass.RdataClass, + rdtype: dns.rdatatype.RdataType, + covers: dns.rdatatype.RdataType = dns.rdatatype.NONE, + ) -> None: + raise TypeError("immutable") + + def replace_rdataset(self, replacement: dns.rdataset.Rdataset) -> None: + raise TypeError("immutable") + + def is_immutable(self) -> bool: + return True diff --git a/.venv/lib/python3.11/site-packages/dns/opcode.py b/.venv/lib/python3.11/site-packages/dns/opcode.py new file mode 100644 index 0000000..78b43d2 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/opcode.py @@ -0,0 +1,117 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2001-2017 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +"""DNS Opcodes.""" + +import dns.enum +import dns.exception + + +class Opcode(dns.enum.IntEnum): + #: Query + QUERY = 0 + #: Inverse Query (historical) + IQUERY = 1 + #: Server Status (unspecified and unimplemented anywhere) + STATUS = 2 + #: Notify + NOTIFY = 4 + #: Dynamic Update + UPDATE = 5 + + @classmethod + def _maximum(cls): + return 15 + + @classmethod + def _unknown_exception_class(cls): + return UnknownOpcode + + +class UnknownOpcode(dns.exception.DNSException): + """An DNS opcode is unknown.""" + + +def from_text(text: str) -> Opcode: + """Convert text into an opcode. + + *text*, a ``str``, the textual opcode + + Raises ``dns.opcode.UnknownOpcode`` if the opcode is unknown. + + Returns an ``int``. + """ + + return Opcode.from_text(text) + + +def from_flags(flags: int) -> Opcode: + """Extract an opcode from DNS message flags. + + *flags*, an ``int``, the DNS flags. + + Returns an ``int``. + """ + + return Opcode((flags & 0x7800) >> 11) + + +def to_flags(value: Opcode) -> int: + """Convert an opcode to a value suitable for ORing into DNS message + flags. + + *value*, an ``int``, the DNS opcode value. + + Returns an ``int``. + """ + + return (value << 11) & 0x7800 + + +def to_text(value: Opcode) -> str: + """Convert an opcode to text. + + *value*, an ``int`` the opcode value, + + Raises ``dns.opcode.UnknownOpcode`` if the opcode is unknown. + + Returns a ``str``. + """ + + return Opcode.to_text(value) + + +def is_update(flags: int) -> bool: + """Is the opcode in flags UPDATE? + + *flags*, an ``int``, the DNS message flags. + + Returns a ``bool``. + """ + + return from_flags(flags) == Opcode.UPDATE + + +### BEGIN generated Opcode constants + +QUERY = Opcode.QUERY +IQUERY = Opcode.IQUERY +STATUS = Opcode.STATUS +NOTIFY = Opcode.NOTIFY +UPDATE = Opcode.UPDATE + +### END generated Opcode constants diff --git a/.venv/lib/python3.11/site-packages/dns/py.typed b/.venv/lib/python3.11/site-packages/dns/py.typed new file mode 100644 index 0000000..e69de29 diff --git a/.venv/lib/python3.11/site-packages/dns/query.py b/.venv/lib/python3.11/site-packages/dns/query.py new file mode 100644 index 0000000..0d8a977 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/query.py @@ -0,0 +1,1665 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2003-2017 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +"""Talk to a DNS server.""" + +import base64 +import contextlib +import enum +import errno +import os +import os.path +import random +import selectors +import socket +import struct +import time +import urllib.parse +from typing import Any, Dict, Optional, Tuple, Union, cast + +import dns._features +import dns.exception +import dns.inet +import dns.message +import dns.name +import dns.quic +import dns.rcode +import dns.rdataclass +import dns.rdatatype +import dns.serial +import dns.transaction +import dns.tsig +import dns.xfr + + +def _remaining(expiration): + if expiration is None: + return None + timeout = expiration - time.time() + if timeout <= 0.0: + raise dns.exception.Timeout + return timeout + + +def _expiration_for_this_attempt(timeout, expiration): + if expiration is None: + return None + return min(time.time() + timeout, expiration) + + +_have_httpx = dns._features.have("doh") +if _have_httpx: + import httpcore._backends.sync + import httpx + + _CoreNetworkBackend = httpcore.NetworkBackend + _CoreSyncStream = httpcore._backends.sync.SyncStream + + class _NetworkBackend(_CoreNetworkBackend): + def __init__(self, resolver, local_port, bootstrap_address, family): + super().__init__() + self._local_port = local_port + self._resolver = resolver + self._bootstrap_address = bootstrap_address + self._family = family + + def connect_tcp( + self, host, port, timeout, local_address, socket_options=None + ): # pylint: disable=signature-differs + addresses = [] + _, expiration = _compute_times(timeout) + if dns.inet.is_address(host): + addresses.append(host) + elif self._bootstrap_address is not None: + addresses.append(self._bootstrap_address) + else: + timeout = _remaining(expiration) + family = self._family + if local_address: + family = dns.inet.af_for_address(local_address) + answers = self._resolver.resolve_name( + host, family=family, lifetime=timeout + ) + addresses = answers.addresses() + for address in addresses: + af = dns.inet.af_for_address(address) + if local_address is not None or self._local_port != 0: + source = dns.inet.low_level_address_tuple( + (local_address, self._local_port), af + ) + else: + source = None + sock = _make_socket(af, socket.SOCK_STREAM, source) + attempt_expiration = _expiration_for_this_attempt(2.0, expiration) + try: + _connect( + sock, + dns.inet.low_level_address_tuple((address, port), af), + attempt_expiration, + ) + return _CoreSyncStream(sock) + except Exception: + pass + raise httpcore.ConnectError + + def connect_unix_socket( + self, path, timeout, socket_options=None + ): # pylint: disable=signature-differs + raise NotImplementedError + + class _HTTPTransport(httpx.HTTPTransport): + def __init__( + self, + *args, + local_port=0, + bootstrap_address=None, + resolver=None, + family=socket.AF_UNSPEC, + **kwargs, + ): + if resolver is None and bootstrap_address is None: + # pylint: disable=import-outside-toplevel,redefined-outer-name + import dns.resolver + + resolver = dns.resolver.Resolver() + super().__init__(*args, **kwargs) + self._pool._network_backend = _NetworkBackend( + resolver, local_port, bootstrap_address, family + ) + +else: + + class _HTTPTransport: # type: ignore + def connect_tcp(self, host, port, timeout, local_address): + raise NotImplementedError + + +have_doh = _have_httpx + +try: + import ssl +except ImportError: # pragma: no cover + + class ssl: # type: ignore + CERT_NONE = 0 + + class WantReadException(Exception): + pass + + class WantWriteException(Exception): + pass + + class SSLContext: + pass + + class SSLSocket: + pass + + @classmethod + def create_default_context(cls, *args, **kwargs): + raise Exception("no ssl support") # pylint: disable=broad-exception-raised + + +# Function used to create a socket. Can be overridden if needed in special +# situations. +socket_factory = socket.socket + + +class UnexpectedSource(dns.exception.DNSException): + """A DNS query response came from an unexpected address or port.""" + + +class BadResponse(dns.exception.FormError): + """A DNS query response does not respond to the question asked.""" + + +class NoDOH(dns.exception.DNSException): + """DNS over HTTPS (DOH) was requested but the httpx module is not + available.""" + + +class NoDOQ(dns.exception.DNSException): + """DNS over QUIC (DOQ) was requested but the aioquic module is not + available.""" + + +# for backwards compatibility +TransferError = dns.xfr.TransferError + + +def _compute_times(timeout): + now = time.time() + if timeout is None: + return (now, None) + else: + return (now, now + timeout) + + +def _wait_for(fd, readable, writable, _, expiration): + # Use the selected selector class to wait for any of the specified + # events. An "expiration" absolute time is converted into a relative + # timeout. + # + # The unused parameter is 'error', which is always set when + # selecting for read or write, and we have no error-only selects. + + if readable and isinstance(fd, ssl.SSLSocket) and fd.pending() > 0: + return True + sel = selectors.DefaultSelector() + events = 0 + if readable: + events |= selectors.EVENT_READ + if writable: + events |= selectors.EVENT_WRITE + if events: + sel.register(fd, events) + if expiration is None: + timeout = None + else: + timeout = expiration - time.time() + if timeout <= 0.0: + raise dns.exception.Timeout + if not sel.select(timeout): + raise dns.exception.Timeout + + +def _wait_for_readable(s, expiration): + _wait_for(s, True, False, True, expiration) + + +def _wait_for_writable(s, expiration): + _wait_for(s, False, True, True, expiration) + + +def _addresses_equal(af, a1, a2): + # Convert the first value of the tuple, which is a textual format + # address into binary form, so that we are not confused by different + # textual representations of the same address + try: + n1 = dns.inet.inet_pton(af, a1[0]) + n2 = dns.inet.inet_pton(af, a2[0]) + except dns.exception.SyntaxError: + return False + return n1 == n2 and a1[1:] == a2[1:] + + +def _matches_destination(af, from_address, destination, ignore_unexpected): + # Check that from_address is appropriate for a response to a query + # sent to destination. + if not destination: + return True + if _addresses_equal(af, from_address, destination) or ( + dns.inet.is_multicast(destination[0]) and from_address[1:] == destination[1:] + ): + return True + elif ignore_unexpected: + return False + raise UnexpectedSource( + f"got a response from {from_address} instead of " f"{destination}" + ) + + +def _destination_and_source( + where, port, source, source_port, where_must_be_address=True +): + # Apply defaults and compute destination and source tuples + # suitable for use in connect(), sendto(), or bind(). + af = None + destination = None + try: + af = dns.inet.af_for_address(where) + destination = where + except Exception: + if where_must_be_address: + raise + # URLs are ok so eat the exception + if source: + saf = dns.inet.af_for_address(source) + if af: + # We know the destination af, so source had better agree! + if saf != af: + raise ValueError( + "different address families for source and destination" + ) + else: + # We didn't know the destination af, but we know the source, + # so that's our af. + af = saf + if source_port and not source: + # Caller has specified a source_port but not an address, so we + # need to return a source, and we need to use the appropriate + # wildcard address as the address. + try: + source = dns.inet.any_for_af(af) + except Exception: + # we catch this and raise ValueError for backwards compatibility + raise ValueError("source_port specified but address family is unknown") + # Convert high-level (address, port) tuples into low-level address + # tuples. + if destination: + destination = dns.inet.low_level_address_tuple((destination, port), af) + if source: + source = dns.inet.low_level_address_tuple((source, source_port), af) + return (af, destination, source) + + +def _make_socket(af, type, source, ssl_context=None, server_hostname=None): + s = socket_factory(af, type) + try: + s.setblocking(False) + if source is not None: + s.bind(source) + if ssl_context: + # LGTM gets a false positive here, as our default context is OK + return ssl_context.wrap_socket( + s, + do_handshake_on_connect=False, # lgtm[py/insecure-protocol] + server_hostname=server_hostname, + ) + else: + return s + except Exception: + s.close() + raise + + +def _maybe_get_resolver( + resolver: Optional["dns.resolver.Resolver"], +) -> "dns.resolver.Resolver": + # We need a separate method for this to avoid overriding the global + # variable "dns" with the as-yet undefined local variable "dns" + # in https(). + if resolver is None: + # pylint: disable=import-outside-toplevel,redefined-outer-name + import dns.resolver + + resolver = dns.resolver.Resolver() + return resolver + + +class HTTPVersion(enum.IntEnum): + """Which version of HTTP should be used? + + DEFAULT will select the first version from the list [2, 1.1, 3] that + is available. + """ + + DEFAULT = 0 + HTTP_1 = 1 + H1 = 1 + HTTP_2 = 2 + H2 = 2 + HTTP_3 = 3 + H3 = 3 + + +def https( + q: dns.message.Message, + where: str, + timeout: Optional[float] = None, + port: int = 443, + source: Optional[str] = None, + source_port: int = 0, + one_rr_per_rrset: bool = False, + ignore_trailing: bool = False, + session: Optional[Any] = None, + path: str = "/dns-query", + post: bool = True, + bootstrap_address: Optional[str] = None, + verify: Union[bool, str] = True, + resolver: Optional["dns.resolver.Resolver"] = None, + family: int = socket.AF_UNSPEC, + http_version: HTTPVersion = HTTPVersion.DEFAULT, +) -> dns.message.Message: + """Return the response obtained after sending a query via DNS-over-HTTPS. + + *q*, a ``dns.message.Message``, the query to send. + + *where*, a ``str``, the nameserver IP address or the full URL. If an IP address is + given, the URL will be constructed using the following schema: + https://:/. + + *timeout*, a ``float`` or ``None``, the number of seconds to wait before the query + times out. If ``None``, the default, wait forever. + + *port*, a ``int``, the port to send the query to. The default is 443. + + *source*, a ``str`` containing an IPv4 or IPv6 address, specifying the source + address. The default is the wildcard address. + + *source_port*, an ``int``, the port from which to send the message. The default is + 0. + + *one_rr_per_rrset*, a ``bool``. If ``True``, put each RR into its own RRset. + + *ignore_trailing*, a ``bool``. If ``True``, ignore trailing junk at end of the + received message. + + *session*, an ``httpx.Client``. If provided, the client session to use to send the + queries. + + *path*, a ``str``. If *where* is an IP address, then *path* will be used to + construct the URL to send the DNS query to. + + *post*, a ``bool``. If ``True``, the default, POST method will be used. + + *bootstrap_address*, a ``str``, the IP address to use to bypass resolution. + + *verify*, a ``bool`` or ``str``. If a ``True``, then TLS certificate verification + of the server is done using the default CA bundle; if ``False``, then no + verification is done; if a `str` then it specifies the path to a certificate file or + directory which will be used for verification. + + *resolver*, a ``dns.resolver.Resolver`` or ``None``, the resolver to use for + resolution of hostnames in URLs. If not specified, a new resolver with a default + configuration will be used; note this is *not* the default resolver as that resolver + might have been configured to use DoH causing a chicken-and-egg problem. This + parameter only has an effect if the HTTP library is httpx. + + *family*, an ``int``, the address family. If socket.AF_UNSPEC (the default), both A + and AAAA records will be retrieved. + + *http_version*, a ``dns.query.HTTPVersion``, indicating which HTTP version to use. + + Returns a ``dns.message.Message``. + """ + + (af, _, the_source) = _destination_and_source( + where, port, source, source_port, False + ) + if af is not None and dns.inet.is_address(where): + if af == socket.AF_INET: + url = f"https://{where}:{port}{path}" + elif af == socket.AF_INET6: + url = f"https://[{where}]:{port}{path}" + else: + url = where + + extensions = {} + if bootstrap_address is None: + # pylint: disable=possibly-used-before-assignment + parsed = urllib.parse.urlparse(url) + if parsed.hostname is None: + raise ValueError("no hostname in URL") + if dns.inet.is_address(parsed.hostname): + bootstrap_address = parsed.hostname + extensions["sni_hostname"] = parsed.hostname + if parsed.port is not None: + port = parsed.port + + if http_version == HTTPVersion.H3 or ( + http_version == HTTPVersion.DEFAULT and not have_doh + ): + if bootstrap_address is None: + resolver = _maybe_get_resolver(resolver) + assert parsed.hostname is not None # for mypy + answers = resolver.resolve_name(parsed.hostname, family) + bootstrap_address = random.choice(list(answers.addresses())) + return _http3( + q, + bootstrap_address, + url, + timeout, + port, + source, + source_port, + one_rr_per_rrset, + ignore_trailing, + verify=verify, + post=post, + ) + + if not have_doh: + raise NoDOH # pragma: no cover + if session and not isinstance(session, httpx.Client): + raise ValueError("session parameter must be an httpx.Client") + + wire = q.to_wire() + headers = {"accept": "application/dns-message"} + + h1 = http_version in (HTTPVersion.H1, HTTPVersion.DEFAULT) + h2 = http_version in (HTTPVersion.H2, HTTPVersion.DEFAULT) + + # set source port and source address + + if the_source is None: + local_address = None + local_port = 0 + else: + local_address = the_source[0] + local_port = the_source[1] + + if session: + cm: contextlib.AbstractContextManager = contextlib.nullcontext(session) + else: + transport = _HTTPTransport( + local_address=local_address, + http1=h1, + http2=h2, + verify=verify, + local_port=local_port, + bootstrap_address=bootstrap_address, + resolver=resolver, + family=family, + ) + + cm = httpx.Client(http1=h1, http2=h2, verify=verify, transport=transport) + with cm as session: + # see https://tools.ietf.org/html/rfc8484#section-4.1.1 for DoH + # GET and POST examples + if post: + headers.update( + { + "content-type": "application/dns-message", + "content-length": str(len(wire)), + } + ) + response = session.post( + url, + headers=headers, + content=wire, + timeout=timeout, + extensions=extensions, + ) + else: + wire = base64.urlsafe_b64encode(wire).rstrip(b"=") + twire = wire.decode() # httpx does a repr() if we give it bytes + response = session.get( + url, + headers=headers, + timeout=timeout, + params={"dns": twire}, + extensions=extensions, + ) + + # see https://tools.ietf.org/html/rfc8484#section-4.2.1 for info about DoH + # status codes + if response.status_code < 200 or response.status_code > 299: + raise ValueError( + f"{where} responded with status code {response.status_code}" + f"\nResponse body: {response.content}" + ) + r = dns.message.from_wire( + response.content, + keyring=q.keyring, + request_mac=q.request_mac, + one_rr_per_rrset=one_rr_per_rrset, + ignore_trailing=ignore_trailing, + ) + r.time = response.elapsed.total_seconds() + if not q.is_response(r): + raise BadResponse + return r + + +def _find_header(headers: dns.quic.Headers, name: bytes) -> bytes: + if headers is None: + raise KeyError + for header, value in headers: + if header == name: + return value + raise KeyError + + +def _check_status(headers: dns.quic.Headers, peer: str, wire: bytes) -> None: + value = _find_header(headers, b":status") + if value is None: + raise SyntaxError("no :status header in response") + status = int(value) + if status < 0: + raise SyntaxError("status is negative") + if status < 200 or status > 299: + error = "" + if len(wire) > 0: + try: + error = ": " + wire.decode() + except Exception: + pass + raise ValueError(f"{peer} responded with status code {status}{error}") + + +def _http3( + q: dns.message.Message, + where: str, + url: str, + timeout: Optional[float] = None, + port: int = 853, + source: Optional[str] = None, + source_port: int = 0, + one_rr_per_rrset: bool = False, + ignore_trailing: bool = False, + verify: Union[bool, str] = True, + hostname: Optional[str] = None, + post: bool = True, +) -> dns.message.Message: + if not dns.quic.have_quic: + raise NoDOH("DNS-over-HTTP3 is not available.") # pragma: no cover + + url_parts = urllib.parse.urlparse(url) + hostname = url_parts.hostname + if url_parts.port is not None: + port = url_parts.port + + q.id = 0 + wire = q.to_wire() + manager = dns.quic.SyncQuicManager( + verify_mode=verify, server_name=hostname, h3=True + ) + + with manager: + connection = manager.connect(where, port, source, source_port) + (start, expiration) = _compute_times(timeout) + with connection.make_stream(timeout) as stream: + stream.send_h3(url, wire, post) + wire = stream.receive(_remaining(expiration)) + _check_status(stream.headers(), where, wire) + finish = time.time() + r = dns.message.from_wire( + wire, + keyring=q.keyring, + request_mac=q.request_mac, + one_rr_per_rrset=one_rr_per_rrset, + ignore_trailing=ignore_trailing, + ) + r.time = max(finish - start, 0.0) + if not q.is_response(r): + raise BadResponse + return r + + +def _udp_recv(sock, max_size, expiration): + """Reads a datagram from the socket. + A Timeout exception will be raised if the operation is not completed + by the expiration time. + """ + while True: + try: + return sock.recvfrom(max_size) + except BlockingIOError: + _wait_for_readable(sock, expiration) + + +def _udp_send(sock, data, destination, expiration): + """Sends the specified datagram to destination over the socket. + A Timeout exception will be raised if the operation is not completed + by the expiration time. + """ + while True: + try: + if destination: + return sock.sendto(data, destination) + else: + return sock.send(data) + except BlockingIOError: # pragma: no cover + _wait_for_writable(sock, expiration) + + +def send_udp( + sock: Any, + what: Union[dns.message.Message, bytes], + destination: Any, + expiration: Optional[float] = None, +) -> Tuple[int, float]: + """Send a DNS message to the specified UDP socket. + + *sock*, a ``socket``. + + *what*, a ``bytes`` or ``dns.message.Message``, the message to send. + + *destination*, a destination tuple appropriate for the address family + of the socket, specifying where to send the query. + + *expiration*, a ``float`` or ``None``, the absolute time at which + a timeout exception should be raised. If ``None``, no timeout will + occur. + + Returns an ``(int, float)`` tuple of bytes sent and the sent time. + """ + + if isinstance(what, dns.message.Message): + what = what.to_wire() + sent_time = time.time() + n = _udp_send(sock, what, destination, expiration) + return (n, sent_time) + + +def receive_udp( + sock: Any, + destination: Optional[Any] = None, + expiration: Optional[float] = None, + ignore_unexpected: bool = False, + one_rr_per_rrset: bool = False, + keyring: Optional[Dict[dns.name.Name, dns.tsig.Key]] = None, + request_mac: Optional[bytes] = b"", + ignore_trailing: bool = False, + raise_on_truncation: bool = False, + ignore_errors: bool = False, + query: Optional[dns.message.Message] = None, +) -> Any: + """Read a DNS message from a UDP socket. + + *sock*, a ``socket``. + + *destination*, a destination tuple appropriate for the address family + of the socket, specifying where the message is expected to arrive from. + When receiving a response, this would be where the associated query was + sent. + + *expiration*, a ``float`` or ``None``, the absolute time at which + a timeout exception should be raised. If ``None``, no timeout will + occur. + + *ignore_unexpected*, a ``bool``. If ``True``, ignore responses from + unexpected sources. + + *one_rr_per_rrset*, a ``bool``. If ``True``, put each RR into its own + RRset. + + *keyring*, a ``dict``, the keyring to use for TSIG. + + *request_mac*, a ``bytes`` or ``None``, the MAC of the request (for TSIG). + + *ignore_trailing*, a ``bool``. If ``True``, ignore trailing + junk at end of the received message. + + *raise_on_truncation*, a ``bool``. If ``True``, raise an exception if + the TC bit is set. + + Raises if the message is malformed, if network errors occur, of if + there is a timeout. + + If *destination* is not ``None``, returns a ``(dns.message.Message, float)`` + tuple of the received message and the received time. + + If *destination* is ``None``, returns a + ``(dns.message.Message, float, tuple)`` + tuple of the received message, the received time, and the address where + the message arrived from. + + *ignore_errors*, a ``bool``. If various format errors or response + mismatches occur, ignore them and keep listening for a valid response. + The default is ``False``. + + *query*, a ``dns.message.Message`` or ``None``. If not ``None`` and + *ignore_errors* is ``True``, check that the received message is a response + to this query, and if not keep listening for a valid response. + """ + + wire = b"" + while True: + (wire, from_address) = _udp_recv(sock, 65535, expiration) + if not _matches_destination( + sock.family, from_address, destination, ignore_unexpected + ): + continue + received_time = time.time() + try: + r = dns.message.from_wire( + wire, + keyring=keyring, + request_mac=request_mac, + one_rr_per_rrset=one_rr_per_rrset, + ignore_trailing=ignore_trailing, + raise_on_truncation=raise_on_truncation, + ) + except dns.message.Truncated as e: + # If we got Truncated and not FORMERR, we at least got the header with TC + # set, and very likely the question section, so we'll re-raise if the + # message seems to be a response as we need to know when truncation happens. + # We need to check that it seems to be a response as we don't want a random + # injected message with TC set to cause us to bail out. + if ( + ignore_errors + and query is not None + and not query.is_response(e.message()) + ): + continue + else: + raise + except Exception: + if ignore_errors: + continue + else: + raise + if ignore_errors and query is not None and not query.is_response(r): + continue + if destination: + return (r, received_time) + else: + return (r, received_time, from_address) + + +def udp( + q: dns.message.Message, + where: str, + timeout: Optional[float] = None, + port: int = 53, + source: Optional[str] = None, + source_port: int = 0, + ignore_unexpected: bool = False, + one_rr_per_rrset: bool = False, + ignore_trailing: bool = False, + raise_on_truncation: bool = False, + sock: Optional[Any] = None, + ignore_errors: bool = False, +) -> dns.message.Message: + """Return the response obtained after sending a query via UDP. + + *q*, a ``dns.message.Message``, the query to send + + *where*, a ``str`` containing an IPv4 or IPv6 address, where + to send the message. + + *timeout*, a ``float`` or ``None``, the number of seconds to wait before the + query times out. If ``None``, the default, wait forever. + + *port*, an ``int``, the port send the message to. The default is 53. + + *source*, a ``str`` containing an IPv4 or IPv6 address, specifying + the source address. The default is the wildcard address. + + *source_port*, an ``int``, the port from which to send the message. + The default is 0. + + *ignore_unexpected*, a ``bool``. If ``True``, ignore responses from + unexpected sources. + + *one_rr_per_rrset*, a ``bool``. If ``True``, put each RR into its own + RRset. + + *ignore_trailing*, a ``bool``. If ``True``, ignore trailing + junk at end of the received message. + + *raise_on_truncation*, a ``bool``. If ``True``, raise an exception if + the TC bit is set. + + *sock*, a ``socket.socket``, or ``None``, the socket to use for the + query. If ``None``, the default, a socket is created. Note that + if a socket is provided, it must be a nonblocking datagram socket, + and the *source* and *source_port* are ignored. + + *ignore_errors*, a ``bool``. If various format errors or response + mismatches occur, ignore them and keep listening for a valid response. + The default is ``False``. + + Returns a ``dns.message.Message``. + """ + + wire = q.to_wire() + (af, destination, source) = _destination_and_source( + where, port, source, source_port + ) + (begin_time, expiration) = _compute_times(timeout) + if sock: + cm: contextlib.AbstractContextManager = contextlib.nullcontext(sock) + else: + cm = _make_socket(af, socket.SOCK_DGRAM, source) + with cm as s: + send_udp(s, wire, destination, expiration) + (r, received_time) = receive_udp( + s, + destination, + expiration, + ignore_unexpected, + one_rr_per_rrset, + q.keyring, + q.mac, + ignore_trailing, + raise_on_truncation, + ignore_errors, + q, + ) + r.time = received_time - begin_time + # We don't need to check q.is_response() if we are in ignore_errors mode + # as receive_udp() will have checked it. + if not (ignore_errors or q.is_response(r)): + raise BadResponse + return r + assert ( + False # help mypy figure out we can't get here lgtm[py/unreachable-statement] + ) + + +def udp_with_fallback( + q: dns.message.Message, + where: str, + timeout: Optional[float] = None, + port: int = 53, + source: Optional[str] = None, + source_port: int = 0, + ignore_unexpected: bool = False, + one_rr_per_rrset: bool = False, + ignore_trailing: bool = False, + udp_sock: Optional[Any] = None, + tcp_sock: Optional[Any] = None, + ignore_errors: bool = False, +) -> Tuple[dns.message.Message, bool]: + """Return the response to the query, trying UDP first and falling back + to TCP if UDP results in a truncated response. + + *q*, a ``dns.message.Message``, the query to send + + *where*, a ``str`` containing an IPv4 or IPv6 address, where to send the message. + + *timeout*, a ``float`` or ``None``, the number of seconds to wait before the query + times out. If ``None``, the default, wait forever. + + *port*, an ``int``, the port send the message to. The default is 53. + + *source*, a ``str`` containing an IPv4 or IPv6 address, specifying the source + address. The default is the wildcard address. + + *source_port*, an ``int``, the port from which to send the message. The default is + 0. + + *ignore_unexpected*, a ``bool``. If ``True``, ignore responses from unexpected + sources. + + *one_rr_per_rrset*, a ``bool``. If ``True``, put each RR into its own RRset. + + *ignore_trailing*, a ``bool``. If ``True``, ignore trailing junk at end of the + received message. + + *udp_sock*, a ``socket.socket``, or ``None``, the socket to use for the UDP query. + If ``None``, the default, a socket is created. Note that if a socket is provided, + it must be a nonblocking datagram socket, and the *source* and *source_port* are + ignored for the UDP query. + + *tcp_sock*, a ``socket.socket``, or ``None``, the connected socket to use for the + TCP query. If ``None``, the default, a socket is created. Note that if a socket is + provided, it must be a nonblocking connected stream socket, and *where*, *source* + and *source_port* are ignored for the TCP query. + + *ignore_errors*, a ``bool``. If various format errors or response mismatches occur + while listening for UDP, ignore them and keep listening for a valid response. The + default is ``False``. + + Returns a (``dns.message.Message``, tcp) tuple where tcp is ``True`` if and only if + TCP was used. + """ + try: + response = udp( + q, + where, + timeout, + port, + source, + source_port, + ignore_unexpected, + one_rr_per_rrset, + ignore_trailing, + True, + udp_sock, + ignore_errors, + ) + return (response, False) + except dns.message.Truncated: + response = tcp( + q, + where, + timeout, + port, + source, + source_port, + one_rr_per_rrset, + ignore_trailing, + tcp_sock, + ) + return (response, True) + + +def _net_read(sock, count, expiration): + """Read the specified number of bytes from sock. Keep trying until we + either get the desired amount, or we hit EOF. + A Timeout exception will be raised if the operation is not completed + by the expiration time. + """ + s = b"" + while count > 0: + try: + n = sock.recv(count) + if n == b"": + raise EOFError("EOF") + count -= len(n) + s += n + except (BlockingIOError, ssl.SSLWantReadError): + _wait_for_readable(sock, expiration) + except ssl.SSLWantWriteError: # pragma: no cover + _wait_for_writable(sock, expiration) + return s + + +def _net_write(sock, data, expiration): + """Write the specified data to the socket. + A Timeout exception will be raised if the operation is not completed + by the expiration time. + """ + current = 0 + l = len(data) + while current < l: + try: + current += sock.send(data[current:]) + except (BlockingIOError, ssl.SSLWantWriteError): + _wait_for_writable(sock, expiration) + except ssl.SSLWantReadError: # pragma: no cover + _wait_for_readable(sock, expiration) + + +def send_tcp( + sock: Any, + what: Union[dns.message.Message, bytes], + expiration: Optional[float] = None, +) -> Tuple[int, float]: + """Send a DNS message to the specified TCP socket. + + *sock*, a ``socket``. + + *what*, a ``bytes`` or ``dns.message.Message``, the message to send. + + *expiration*, a ``float`` or ``None``, the absolute time at which + a timeout exception should be raised. If ``None``, no timeout will + occur. + + Returns an ``(int, float)`` tuple of bytes sent and the sent time. + """ + + if isinstance(what, dns.message.Message): + tcpmsg = what.to_wire(prepend_length=True) + else: + # copying the wire into tcpmsg is inefficient, but lets us + # avoid writev() or doing a short write that would get pushed + # onto the net + tcpmsg = len(what).to_bytes(2, "big") + what + sent_time = time.time() + _net_write(sock, tcpmsg, expiration) + return (len(tcpmsg), sent_time) + + +def receive_tcp( + sock: Any, + expiration: Optional[float] = None, + one_rr_per_rrset: bool = False, + keyring: Optional[Dict[dns.name.Name, dns.tsig.Key]] = None, + request_mac: Optional[bytes] = b"", + ignore_trailing: bool = False, +) -> Tuple[dns.message.Message, float]: + """Read a DNS message from a TCP socket. + + *sock*, a ``socket``. + + *expiration*, a ``float`` or ``None``, the absolute time at which + a timeout exception should be raised. If ``None``, no timeout will + occur. + + *one_rr_per_rrset*, a ``bool``. If ``True``, put each RR into its own + RRset. + + *keyring*, a ``dict``, the keyring to use for TSIG. + + *request_mac*, a ``bytes`` or ``None``, the MAC of the request (for TSIG). + + *ignore_trailing*, a ``bool``. If ``True``, ignore trailing + junk at end of the received message. + + Raises if the message is malformed, if network errors occur, of if + there is a timeout. + + Returns a ``(dns.message.Message, float)`` tuple of the received message + and the received time. + """ + + ldata = _net_read(sock, 2, expiration) + (l,) = struct.unpack("!H", ldata) + wire = _net_read(sock, l, expiration) + received_time = time.time() + r = dns.message.from_wire( + wire, + keyring=keyring, + request_mac=request_mac, + one_rr_per_rrset=one_rr_per_rrset, + ignore_trailing=ignore_trailing, + ) + return (r, received_time) + + +def _connect(s, address, expiration): + err = s.connect_ex(address) + if err == 0: + return + if err in (errno.EINPROGRESS, errno.EWOULDBLOCK, errno.EALREADY): + _wait_for_writable(s, expiration) + err = s.getsockopt(socket.SOL_SOCKET, socket.SO_ERROR) + if err != 0: + raise OSError(err, os.strerror(err)) + + +def tcp( + q: dns.message.Message, + where: str, + timeout: Optional[float] = None, + port: int = 53, + source: Optional[str] = None, + source_port: int = 0, + one_rr_per_rrset: bool = False, + ignore_trailing: bool = False, + sock: Optional[Any] = None, +) -> dns.message.Message: + """Return the response obtained after sending a query via TCP. + + *q*, a ``dns.message.Message``, the query to send + + *where*, a ``str`` containing an IPv4 or IPv6 address, where + to send the message. + + *timeout*, a ``float`` or ``None``, the number of seconds to wait before the + query times out. If ``None``, the default, wait forever. + + *port*, an ``int``, the port send the message to. The default is 53. + + *source*, a ``str`` containing an IPv4 or IPv6 address, specifying + the source address. The default is the wildcard address. + + *source_port*, an ``int``, the port from which to send the message. + The default is 0. + + *one_rr_per_rrset*, a ``bool``. If ``True``, put each RR into its own + RRset. + + *ignore_trailing*, a ``bool``. If ``True``, ignore trailing + junk at end of the received message. + + *sock*, a ``socket.socket``, or ``None``, the connected socket to use for the + query. If ``None``, the default, a socket is created. Note that + if a socket is provided, it must be a nonblocking connected stream + socket, and *where*, *port*, *source* and *source_port* are ignored. + + Returns a ``dns.message.Message``. + """ + + wire = q.to_wire() + (begin_time, expiration) = _compute_times(timeout) + if sock: + cm: contextlib.AbstractContextManager = contextlib.nullcontext(sock) + else: + (af, destination, source) = _destination_and_source( + where, port, source, source_port + ) + cm = _make_socket(af, socket.SOCK_STREAM, source) + with cm as s: + if not sock: + # pylint: disable=possibly-used-before-assignment + _connect(s, destination, expiration) + send_tcp(s, wire, expiration) + (r, received_time) = receive_tcp( + s, expiration, one_rr_per_rrset, q.keyring, q.mac, ignore_trailing + ) + r.time = received_time - begin_time + if not q.is_response(r): + raise BadResponse + return r + assert ( + False # help mypy figure out we can't get here lgtm[py/unreachable-statement] + ) + + +def _tls_handshake(s, expiration): + while True: + try: + s.do_handshake() + return + except ssl.SSLWantReadError: + _wait_for_readable(s, expiration) + except ssl.SSLWantWriteError: # pragma: no cover + _wait_for_writable(s, expiration) + + +def _make_dot_ssl_context( + server_hostname: Optional[str], verify: Union[bool, str] +) -> ssl.SSLContext: + cafile: Optional[str] = None + capath: Optional[str] = None + if isinstance(verify, str): + if os.path.isfile(verify): + cafile = verify + elif os.path.isdir(verify): + capath = verify + else: + raise ValueError("invalid verify string") + ssl_context = ssl.create_default_context(cafile=cafile, capath=capath) + ssl_context.minimum_version = ssl.TLSVersion.TLSv1_2 + if server_hostname is None: + ssl_context.check_hostname = False + ssl_context.set_alpn_protocols(["dot"]) + if verify is False: + ssl_context.verify_mode = ssl.CERT_NONE + return ssl_context + + +def tls( + q: dns.message.Message, + where: str, + timeout: Optional[float] = None, + port: int = 853, + source: Optional[str] = None, + source_port: int = 0, + one_rr_per_rrset: bool = False, + ignore_trailing: bool = False, + sock: Optional[ssl.SSLSocket] = None, + ssl_context: Optional[ssl.SSLContext] = None, + server_hostname: Optional[str] = None, + verify: Union[bool, str] = True, +) -> dns.message.Message: + """Return the response obtained after sending a query via TLS. + + *q*, a ``dns.message.Message``, the query to send + + *where*, a ``str`` containing an IPv4 or IPv6 address, where + to send the message. + + *timeout*, a ``float`` or ``None``, the number of seconds to wait before the + query times out. If ``None``, the default, wait forever. + + *port*, an ``int``, the port send the message to. The default is 853. + + *source*, a ``str`` containing an IPv4 or IPv6 address, specifying + the source address. The default is the wildcard address. + + *source_port*, an ``int``, the port from which to send the message. + The default is 0. + + *one_rr_per_rrset*, a ``bool``. If ``True``, put each RR into its own + RRset. + + *ignore_trailing*, a ``bool``. If ``True``, ignore trailing + junk at end of the received message. + + *sock*, an ``ssl.SSLSocket``, or ``None``, the socket to use for + the query. If ``None``, the default, a socket is created. Note + that if a socket is provided, it must be a nonblocking connected + SSL stream socket, and *where*, *port*, *source*, *source_port*, + and *ssl_context* are ignored. + + *ssl_context*, an ``ssl.SSLContext``, the context to use when establishing + a TLS connection. If ``None``, the default, creates one with the default + configuration. + + *server_hostname*, a ``str`` containing the server's hostname. The + default is ``None``, which means that no hostname is known, and if an + SSL context is created, hostname checking will be disabled. + + *verify*, a ``bool`` or ``str``. If a ``True``, then TLS certificate verification + of the server is done using the default CA bundle; if ``False``, then no + verification is done; if a `str` then it specifies the path to a certificate file or + directory which will be used for verification. + + Returns a ``dns.message.Message``. + + """ + + if sock: + # + # If a socket was provided, there's no special TLS handling needed. + # + return tcp( + q, + where, + timeout, + port, + source, + source_port, + one_rr_per_rrset, + ignore_trailing, + sock, + ) + + wire = q.to_wire() + (begin_time, expiration) = _compute_times(timeout) + (af, destination, source) = _destination_and_source( + where, port, source, source_port + ) + if ssl_context is None and not sock: + ssl_context = _make_dot_ssl_context(server_hostname, verify) + + with _make_socket( + af, + socket.SOCK_STREAM, + source, + ssl_context=ssl_context, + server_hostname=server_hostname, + ) as s: + _connect(s, destination, expiration) + _tls_handshake(s, expiration) + send_tcp(s, wire, expiration) + (r, received_time) = receive_tcp( + s, expiration, one_rr_per_rrset, q.keyring, q.mac, ignore_trailing + ) + r.time = received_time - begin_time + if not q.is_response(r): + raise BadResponse + return r + assert ( + False # help mypy figure out we can't get here lgtm[py/unreachable-statement] + ) + + +def quic( + q: dns.message.Message, + where: str, + timeout: Optional[float] = None, + port: int = 853, + source: Optional[str] = None, + source_port: int = 0, + one_rr_per_rrset: bool = False, + ignore_trailing: bool = False, + connection: Optional[dns.quic.SyncQuicConnection] = None, + verify: Union[bool, str] = True, + hostname: Optional[str] = None, + server_hostname: Optional[str] = None, +) -> dns.message.Message: + """Return the response obtained after sending a query via DNS-over-QUIC. + + *q*, a ``dns.message.Message``, the query to send. + + *where*, a ``str``, the nameserver IP address. + + *timeout*, a ``float`` or ``None``, the number of seconds to wait before the query + times out. If ``None``, the default, wait forever. + + *port*, a ``int``, the port to send the query to. The default is 853. + + *source*, a ``str`` containing an IPv4 or IPv6 address, specifying the source + address. The default is the wildcard address. + + *source_port*, an ``int``, the port from which to send the message. The default is + 0. + + *one_rr_per_rrset*, a ``bool``. If ``True``, put each RR into its own RRset. + + *ignore_trailing*, a ``bool``. If ``True``, ignore trailing junk at end of the + received message. + + *connection*, a ``dns.quic.SyncQuicConnection``. If provided, the connection to use + to send the query. + + *verify*, a ``bool`` or ``str``. If a ``True``, then TLS certificate verification + of the server is done using the default CA bundle; if ``False``, then no + verification is done; if a `str` then it specifies the path to a certificate file or + directory which will be used for verification. + + *hostname*, a ``str`` containing the server's hostname or ``None``. The default is + ``None``, which means that no hostname is known, and if an SSL context is created, + hostname checking will be disabled. This value is ignored if *url* is not + ``None``. + + *server_hostname*, a ``str`` or ``None``. This item is for backwards compatibility + only, and has the same meaning as *hostname*. + + Returns a ``dns.message.Message``. + """ + + if not dns.quic.have_quic: + raise NoDOQ("DNS-over-QUIC is not available.") # pragma: no cover + + if server_hostname is not None and hostname is None: + hostname = server_hostname + + q.id = 0 + wire = q.to_wire() + the_connection: dns.quic.SyncQuicConnection + the_manager: dns.quic.SyncQuicManager + if connection: + manager: contextlib.AbstractContextManager = contextlib.nullcontext(None) + the_connection = connection + else: + manager = dns.quic.SyncQuicManager(verify_mode=verify, server_name=hostname) + the_manager = manager # for type checking happiness + + with manager: + if not connection: + the_connection = the_manager.connect(where, port, source, source_port) + (start, expiration) = _compute_times(timeout) + with the_connection.make_stream(timeout) as stream: + stream.send(wire, True) + wire = stream.receive(_remaining(expiration)) + finish = time.time() + r = dns.message.from_wire( + wire, + keyring=q.keyring, + request_mac=q.request_mac, + one_rr_per_rrset=one_rr_per_rrset, + ignore_trailing=ignore_trailing, + ) + r.time = max(finish - start, 0.0) + if not q.is_response(r): + raise BadResponse + return r + + +class UDPMode(enum.IntEnum): + """How should UDP be used in an IXFR from :py:func:`inbound_xfr()`? + + NEVER means "never use UDP; always use TCP" + TRY_FIRST means "try to use UDP but fall back to TCP if needed" + ONLY means "raise ``dns.xfr.UseTCP`` if trying UDP does not succeed" + """ + + NEVER = 0 + TRY_FIRST = 1 + ONLY = 2 + + +def _inbound_xfr( + txn_manager: dns.transaction.TransactionManager, + s: socket.socket, + query: dns.message.Message, + serial: Optional[int], + timeout: Optional[float], + expiration: float, +) -> Any: + """Given a socket, does the zone transfer.""" + rdtype = query.question[0].rdtype + is_ixfr = rdtype == dns.rdatatype.IXFR + origin = txn_manager.from_wire_origin() + wire = query.to_wire() + is_udp = s.type == socket.SOCK_DGRAM + if is_udp: + _udp_send(s, wire, None, expiration) + else: + tcpmsg = struct.pack("!H", len(wire)) + wire + _net_write(s, tcpmsg, expiration) + with dns.xfr.Inbound(txn_manager, rdtype, serial, is_udp) as inbound: + done = False + tsig_ctx = None + while not done: + (_, mexpiration) = _compute_times(timeout) + if mexpiration is None or ( + expiration is not None and mexpiration > expiration + ): + mexpiration = expiration + if is_udp: + (rwire, _) = _udp_recv(s, 65535, mexpiration) + else: + ldata = _net_read(s, 2, mexpiration) + (l,) = struct.unpack("!H", ldata) + rwire = _net_read(s, l, mexpiration) + r = dns.message.from_wire( + rwire, + keyring=query.keyring, + request_mac=query.mac, + xfr=True, + origin=origin, + tsig_ctx=tsig_ctx, + multi=(not is_udp), + one_rr_per_rrset=is_ixfr, + ) + done = inbound.process_message(r) + yield r + tsig_ctx = r.tsig_ctx + if query.keyring and not r.had_tsig: + raise dns.exception.FormError("missing TSIG") + + +def xfr( + where: str, + zone: Union[dns.name.Name, str], + rdtype: Union[dns.rdatatype.RdataType, str] = dns.rdatatype.AXFR, + rdclass: Union[dns.rdataclass.RdataClass, str] = dns.rdataclass.IN, + timeout: Optional[float] = None, + port: int = 53, + keyring: Optional[Dict[dns.name.Name, dns.tsig.Key]] = None, + keyname: Optional[Union[dns.name.Name, str]] = None, + relativize: bool = True, + lifetime: Optional[float] = None, + source: Optional[str] = None, + source_port: int = 0, + serial: int = 0, + use_udp: bool = False, + keyalgorithm: Union[dns.name.Name, str] = dns.tsig.default_algorithm, +) -> Any: + """Return a generator for the responses to a zone transfer. + + *where*, a ``str`` containing an IPv4 or IPv6 address, where + to send the message. + + *zone*, a ``dns.name.Name`` or ``str``, the name of the zone to transfer. + + *rdtype*, an ``int`` or ``str``, the type of zone transfer. The + default is ``dns.rdatatype.AXFR``. ``dns.rdatatype.IXFR`` can be + used to do an incremental transfer instead. + + *rdclass*, an ``int`` or ``str``, the class of the zone transfer. + The default is ``dns.rdataclass.IN``. + + *timeout*, a ``float``, the number of seconds to wait for each + response message. If None, the default, wait forever. + + *port*, an ``int``, the port send the message to. The default is 53. + + *keyring*, a ``dict``, the keyring to use for TSIG. + + *keyname*, a ``dns.name.Name`` or ``str``, the name of the TSIG + key to use. + + *relativize*, a ``bool``. If ``True``, all names in the zone will be + relativized to the zone origin. It is essential that the + relativize setting matches the one specified to + ``dns.zone.from_xfr()`` if using this generator to make a zone. + + *lifetime*, a ``float``, the total number of seconds to spend + doing the transfer. If ``None``, the default, then there is no + limit on the time the transfer may take. + + *source*, a ``str`` containing an IPv4 or IPv6 address, specifying + the source address. The default is the wildcard address. + + *source_port*, an ``int``, the port from which to send the message. + The default is 0. + + *serial*, an ``int``, the SOA serial number to use as the base for + an IXFR diff sequence (only meaningful if *rdtype* is + ``dns.rdatatype.IXFR``). + + *use_udp*, a ``bool``. If ``True``, use UDP (only meaningful for IXFR). + + *keyalgorithm*, a ``dns.name.Name`` or ``str``, the TSIG algorithm to use. + + Raises on errors, and so does the generator. + + Returns a generator of ``dns.message.Message`` objects. + """ + + class DummyTransactionManager(dns.transaction.TransactionManager): + def __init__(self, origin, relativize): + self.info = (origin, relativize, dns.name.empty if relativize else origin) + + def origin_information(self): + return self.info + + def get_class(self) -> dns.rdataclass.RdataClass: + raise NotImplementedError # pragma: no cover + + def reader(self): + raise NotImplementedError # pragma: no cover + + def writer(self, replacement: bool = False) -> dns.transaction.Transaction: + class DummyTransaction: + def nop(self, *args, **kw): + pass + + def __getattr__(self, _): + return self.nop + + return cast(dns.transaction.Transaction, DummyTransaction()) + + if isinstance(zone, str): + zone = dns.name.from_text(zone) + rdtype = dns.rdatatype.RdataType.make(rdtype) + q = dns.message.make_query(zone, rdtype, rdclass) + if rdtype == dns.rdatatype.IXFR: + rrset = q.find_rrset( + q.authority, zone, dns.rdataclass.IN, dns.rdatatype.SOA, create=True + ) + soa = dns.rdata.from_text("IN", "SOA", ". . %u 0 0 0 0" % serial) + rrset.add(soa, 0) + if keyring is not None: + q.use_tsig(keyring, keyname, algorithm=keyalgorithm) + (af, destination, source) = _destination_and_source( + where, port, source, source_port + ) + (_, expiration) = _compute_times(lifetime) + tm = DummyTransactionManager(zone, relativize) + if use_udp and rdtype != dns.rdatatype.IXFR: + raise ValueError("cannot do a UDP AXFR") + sock_type = socket.SOCK_DGRAM if use_udp else socket.SOCK_STREAM + with _make_socket(af, sock_type, source) as s: + _connect(s, destination, expiration) + yield from _inbound_xfr(tm, s, q, serial, timeout, expiration) + + +def inbound_xfr( + where: str, + txn_manager: dns.transaction.TransactionManager, + query: Optional[dns.message.Message] = None, + port: int = 53, + timeout: Optional[float] = None, + lifetime: Optional[float] = None, + source: Optional[str] = None, + source_port: int = 0, + udp_mode: UDPMode = UDPMode.NEVER, +) -> None: + """Conduct an inbound transfer and apply it via a transaction from the + txn_manager. + + *where*, a ``str`` containing an IPv4 or IPv6 address, where + to send the message. + + *txn_manager*, a ``dns.transaction.TransactionManager``, the txn_manager + for this transfer (typically a ``dns.zone.Zone``). + + *query*, the query to send. If not supplied, a default query is + constructed using information from the *txn_manager*. + + *port*, an ``int``, the port send the message to. The default is 53. + + *timeout*, a ``float``, the number of seconds to wait for each + response message. If None, the default, wait forever. + + *lifetime*, a ``float``, the total number of seconds to spend + doing the transfer. If ``None``, the default, then there is no + limit on the time the transfer may take. + + *source*, a ``str`` containing an IPv4 or IPv6 address, specifying + the source address. The default is the wildcard address. + + *source_port*, an ``int``, the port from which to send the message. + The default is 0. + + *udp_mode*, a ``dns.query.UDPMode``, determines how UDP is used + for IXFRs. The default is ``dns.UDPMode.NEVER``, i.e. only use + TCP. Other possibilities are ``dns.UDPMode.TRY_FIRST``, which + means "try UDP but fallback to TCP if needed", and + ``dns.UDPMode.ONLY``, which means "try UDP and raise + ``dns.xfr.UseTCP`` if it does not succeed. + + Raises on errors. + """ + if query is None: + (query, serial) = dns.xfr.make_query(txn_manager) + else: + serial = dns.xfr.extract_serial_from_query(query) + + (af, destination, source) = _destination_and_source( + where, port, source, source_port + ) + (_, expiration) = _compute_times(lifetime) + if query.question[0].rdtype == dns.rdatatype.IXFR and udp_mode != UDPMode.NEVER: + with _make_socket(af, socket.SOCK_DGRAM, source) as s: + _connect(s, destination, expiration) + try: + for _ in _inbound_xfr( + txn_manager, s, query, serial, timeout, expiration + ): + pass + return + except dns.xfr.UseTCP: + if udp_mode == UDPMode.ONLY: + raise + + with _make_socket(af, socket.SOCK_STREAM, source) as s: + _connect(s, destination, expiration) + for _ in _inbound_xfr(txn_manager, s, query, serial, timeout, expiration): + pass diff --git a/.venv/lib/python3.11/site-packages/dns/quic/__init__.py b/.venv/lib/python3.11/site-packages/dns/quic/__init__.py new file mode 100644 index 0000000..0750e72 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/quic/__init__.py @@ -0,0 +1,80 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +from typing import List, Tuple + +import dns._features +import dns.asyncbackend + +if dns._features.have("doq"): + import aioquic.quic.configuration # type: ignore + + from dns._asyncbackend import NullContext + from dns.quic._asyncio import ( + AsyncioQuicConnection, + AsyncioQuicManager, + AsyncioQuicStream, + ) + from dns.quic._common import AsyncQuicConnection, AsyncQuicManager + from dns.quic._sync import SyncQuicConnection, SyncQuicManager, SyncQuicStream + + have_quic = True + + def null_factory( + *args, # pylint: disable=unused-argument + **kwargs, # pylint: disable=unused-argument + ): + return NullContext(None) + + def _asyncio_manager_factory( + context, *args, **kwargs # pylint: disable=unused-argument + ): + return AsyncioQuicManager(*args, **kwargs) + + # We have a context factory and a manager factory as for trio we need to have + # a nursery. + + _async_factories = {"asyncio": (null_factory, _asyncio_manager_factory)} + + if dns._features.have("trio"): + import trio + + from dns.quic._trio import ( # pylint: disable=ungrouped-imports + TrioQuicConnection, + TrioQuicManager, + TrioQuicStream, + ) + + def _trio_context_factory(): + return trio.open_nursery() + + def _trio_manager_factory(context, *args, **kwargs): + return TrioQuicManager(context, *args, **kwargs) + + _async_factories["trio"] = (_trio_context_factory, _trio_manager_factory) + + def factories_for_backend(backend=None): + if backend is None: + backend = dns.asyncbackend.get_default_backend() + return _async_factories[backend.name()] + +else: # pragma: no cover + have_quic = False + + from typing import Any + + class AsyncQuicStream: # type: ignore + pass + + class AsyncQuicConnection: # type: ignore + async def make_stream(self) -> Any: + raise NotImplementedError + + class SyncQuicStream: # type: ignore + pass + + class SyncQuicConnection: # type: ignore + def make_stream(self) -> Any: + raise NotImplementedError + + +Headers = List[Tuple[bytes, bytes]] diff --git a/.venv/lib/python3.11/site-packages/dns/quic/_asyncio.py b/.venv/lib/python3.11/site-packages/dns/quic/_asyncio.py new file mode 100644 index 0000000..f87515d --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/quic/_asyncio.py @@ -0,0 +1,267 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +import asyncio +import socket +import ssl +import struct +import time + +import aioquic.quic.configuration # type: ignore +import aioquic.quic.connection # type: ignore +import aioquic.quic.events # type: ignore + +import dns.asyncbackend +import dns.exception +import dns.inet +from dns.quic._common import ( + QUIC_MAX_DATAGRAM, + AsyncQuicConnection, + AsyncQuicManager, + BaseQuicStream, + UnexpectedEOF, +) + + +class AsyncioQuicStream(BaseQuicStream): + def __init__(self, connection, stream_id): + super().__init__(connection, stream_id) + self._wake_up = asyncio.Condition() + + async def _wait_for_wake_up(self): + async with self._wake_up: + await self._wake_up.wait() + + async def wait_for(self, amount, expiration): + while True: + timeout = self._timeout_from_expiration(expiration) + if self._buffer.have(amount): + return + self._expecting = amount + try: + await asyncio.wait_for(self._wait_for_wake_up(), timeout) + except TimeoutError: + raise dns.exception.Timeout + self._expecting = 0 + + async def wait_for_end(self, expiration): + while True: + timeout = self._timeout_from_expiration(expiration) + if self._buffer.seen_end(): + return + try: + await asyncio.wait_for(self._wait_for_wake_up(), timeout) + except TimeoutError: + raise dns.exception.Timeout + + async def receive(self, timeout=None): + expiration = self._expiration_from_timeout(timeout) + if self._connection.is_h3(): + await self.wait_for_end(expiration) + return self._buffer.get_all() + else: + await self.wait_for(2, expiration) + (size,) = struct.unpack("!H", self._buffer.get(2)) + await self.wait_for(size, expiration) + return self._buffer.get(size) + + async def send(self, datagram, is_end=False): + data = self._encapsulate(datagram) + await self._connection.write(self._stream_id, data, is_end) + + async def _add_input(self, data, is_end): + if self._common_add_input(data, is_end): + async with self._wake_up: + self._wake_up.notify() + + async def close(self): + self._close() + + # Streams are async context managers + + async def __aenter__(self): + return self + + async def __aexit__(self, exc_type, exc_val, exc_tb): + await self.close() + async with self._wake_up: + self._wake_up.notify() + return False + + +class AsyncioQuicConnection(AsyncQuicConnection): + def __init__(self, connection, address, port, source, source_port, manager=None): + super().__init__(connection, address, port, source, source_port, manager) + self._socket = None + self._handshake_complete = asyncio.Event() + self._socket_created = asyncio.Event() + self._wake_timer = asyncio.Condition() + self._receiver_task = None + self._sender_task = None + self._wake_pending = False + + async def _receiver(self): + try: + af = dns.inet.af_for_address(self._address) + backend = dns.asyncbackend.get_backend("asyncio") + # Note that peer is a low-level address tuple, but make_socket() wants + # a high-level address tuple, so we convert. + self._socket = await backend.make_socket( + af, socket.SOCK_DGRAM, 0, self._source, (self._peer[0], self._peer[1]) + ) + self._socket_created.set() + async with self._socket: + while not self._done: + (datagram, address) = await self._socket.recvfrom( + QUIC_MAX_DATAGRAM, None + ) + if address[0] != self._peer[0] or address[1] != self._peer[1]: + continue + self._connection.receive_datagram(datagram, address, time.time()) + # Wake up the timer in case the sender is sleeping, as there may be + # stuff to send now. + await self._wakeup() + except Exception: + pass + finally: + self._done = True + await self._wakeup() + self._handshake_complete.set() + + async def _wakeup(self): + self._wake_pending = True + async with self._wake_timer: + self._wake_timer.notify_all() + + async def _wait_for_wake_timer(self): + async with self._wake_timer: + if not self._wake_pending: + await self._wake_timer.wait() + self._wake_pending = False + + async def _sender(self): + await self._socket_created.wait() + while not self._done: + datagrams = self._connection.datagrams_to_send(time.time()) + for datagram, address in datagrams: + assert address == self._peer + await self._socket.sendto(datagram, self._peer, None) + (expiration, interval) = self._get_timer_values() + try: + await asyncio.wait_for(self._wait_for_wake_timer(), interval) + except Exception: + pass + self._handle_timer(expiration) + await self._handle_events() + + async def _handle_events(self): + count = 0 + while True: + event = self._connection.next_event() + if event is None: + return + if isinstance(event, aioquic.quic.events.StreamDataReceived): + if self.is_h3(): + h3_events = self._h3_conn.handle_event(event) + for h3_event in h3_events: + if isinstance(h3_event, aioquic.h3.events.HeadersReceived): + stream = self._streams.get(event.stream_id) + if stream: + if stream._headers is None: + stream._headers = h3_event.headers + elif stream._trailers is None: + stream._trailers = h3_event.headers + if h3_event.stream_ended: + await stream._add_input(b"", True) + elif isinstance(h3_event, aioquic.h3.events.DataReceived): + stream = self._streams.get(event.stream_id) + if stream: + await stream._add_input( + h3_event.data, h3_event.stream_ended + ) + else: + stream = self._streams.get(event.stream_id) + if stream: + await stream._add_input(event.data, event.end_stream) + elif isinstance(event, aioquic.quic.events.HandshakeCompleted): + self._handshake_complete.set() + elif isinstance(event, aioquic.quic.events.ConnectionTerminated): + self._done = True + self._receiver_task.cancel() + elif isinstance(event, aioquic.quic.events.StreamReset): + stream = self._streams.get(event.stream_id) + if stream: + await stream._add_input(b"", True) + + count += 1 + if count > 10: + # yield + count = 0 + await asyncio.sleep(0) + + async def write(self, stream, data, is_end=False): + self._connection.send_stream_data(stream, data, is_end) + await self._wakeup() + + def run(self): + if self._closed: + return + self._receiver_task = asyncio.Task(self._receiver()) + self._sender_task = asyncio.Task(self._sender()) + + async def make_stream(self, timeout=None): + try: + await asyncio.wait_for(self._handshake_complete.wait(), timeout) + except TimeoutError: + raise dns.exception.Timeout + if self._done: + raise UnexpectedEOF + stream_id = self._connection.get_next_available_stream_id(False) + stream = AsyncioQuicStream(self, stream_id) + self._streams[stream_id] = stream + return stream + + async def close(self): + if not self._closed: + self._manager.closed(self._peer[0], self._peer[1]) + self._closed = True + self._connection.close() + # sender might be blocked on this, so set it + self._socket_created.set() + await self._wakeup() + try: + await self._receiver_task + except asyncio.CancelledError: + pass + try: + await self._sender_task + except asyncio.CancelledError: + pass + await self._socket.close() + + +class AsyncioQuicManager(AsyncQuicManager): + def __init__( + self, conf=None, verify_mode=ssl.CERT_REQUIRED, server_name=None, h3=False + ): + super().__init__(conf, verify_mode, AsyncioQuicConnection, server_name, h3) + + def connect( + self, address, port=853, source=None, source_port=0, want_session_ticket=True + ): + (connection, start) = self._connect( + address, port, source, source_port, want_session_ticket + ) + if start: + connection.run() + return connection + + async def __aenter__(self): + return self + + async def __aexit__(self, exc_type, exc_val, exc_tb): + # Copy the iterator into a list as exiting things will mutate the connections + # table. + connections = list(self._connections.values()) + for connection in connections: + await connection.close() + return False diff --git a/.venv/lib/python3.11/site-packages/dns/quic/_common.py b/.venv/lib/python3.11/site-packages/dns/quic/_common.py new file mode 100644 index 0000000..ce575b0 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/quic/_common.py @@ -0,0 +1,339 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +import base64 +import copy +import functools +import socket +import struct +import time +import urllib +from typing import Any, Optional + +import aioquic.h3.connection # type: ignore +import aioquic.h3.events # type: ignore +import aioquic.quic.configuration # type: ignore +import aioquic.quic.connection # type: ignore + +import dns.inet + +QUIC_MAX_DATAGRAM = 2048 +MAX_SESSION_TICKETS = 8 +# If we hit the max sessions limit we will delete this many of the oldest connections. +# The value must be a integer > 0 and <= MAX_SESSION_TICKETS. +SESSIONS_TO_DELETE = MAX_SESSION_TICKETS // 4 + + +class UnexpectedEOF(Exception): + pass + + +class Buffer: + def __init__(self): + self._buffer = b"" + self._seen_end = False + + def put(self, data, is_end): + if self._seen_end: + return + self._buffer += data + if is_end: + self._seen_end = True + + def have(self, amount): + if len(self._buffer) >= amount: + return True + if self._seen_end: + raise UnexpectedEOF + return False + + def seen_end(self): + return self._seen_end + + def get(self, amount): + assert self.have(amount) + data = self._buffer[:amount] + self._buffer = self._buffer[amount:] + return data + + def get_all(self): + assert self.seen_end() + data = self._buffer + self._buffer = b"" + return data + + +class BaseQuicStream: + def __init__(self, connection, stream_id): + self._connection = connection + self._stream_id = stream_id + self._buffer = Buffer() + self._expecting = 0 + self._headers = None + self._trailers = None + + def id(self): + return self._stream_id + + def headers(self): + return self._headers + + def trailers(self): + return self._trailers + + def _expiration_from_timeout(self, timeout): + if timeout is not None: + expiration = time.time() + timeout + else: + expiration = None + return expiration + + def _timeout_from_expiration(self, expiration): + if expiration is not None: + timeout = max(expiration - time.time(), 0.0) + else: + timeout = None + return timeout + + # Subclass must implement receive() as sync / async and which returns a message + # or raises. + + # Subclass must implement send() as sync / async and which takes a message and + # an EOF indicator. + + def send_h3(self, url, datagram, post=True): + if not self._connection.is_h3(): + raise SyntaxError("cannot send H3 to a non-H3 connection") + url_parts = urllib.parse.urlparse(url) + path = url_parts.path.encode() + if post: + method = b"POST" + else: + method = b"GET" + path += b"?dns=" + base64.urlsafe_b64encode(datagram).rstrip(b"=") + headers = [ + (b":method", method), + (b":scheme", url_parts.scheme.encode()), + (b":authority", url_parts.netloc.encode()), + (b":path", path), + (b"accept", b"application/dns-message"), + ] + if post: + headers.extend( + [ + (b"content-type", b"application/dns-message"), + (b"content-length", str(len(datagram)).encode()), + ] + ) + self._connection.send_headers(self._stream_id, headers, not post) + if post: + self._connection.send_data(self._stream_id, datagram, True) + + def _encapsulate(self, datagram): + if self._connection.is_h3(): + return datagram + l = len(datagram) + return struct.pack("!H", l) + datagram + + def _common_add_input(self, data, is_end): + self._buffer.put(data, is_end) + try: + return ( + self._expecting > 0 and self._buffer.have(self._expecting) + ) or self._buffer.seen_end + except UnexpectedEOF: + return True + + def _close(self): + self._connection.close_stream(self._stream_id) + self._buffer.put(b"", True) # send EOF in case we haven't seen it. + + +class BaseQuicConnection: + def __init__( + self, + connection, + address, + port, + source=None, + source_port=0, + manager=None, + ): + self._done = False + self._connection = connection + self._address = address + self._port = port + self._closed = False + self._manager = manager + self._streams = {} + if manager.is_h3(): + self._h3_conn = aioquic.h3.connection.H3Connection(connection, False) + else: + self._h3_conn = None + self._af = dns.inet.af_for_address(address) + self._peer = dns.inet.low_level_address_tuple((address, port)) + if source is None and source_port != 0: + if self._af == socket.AF_INET: + source = "0.0.0.0" + elif self._af == socket.AF_INET6: + source = "::" + else: + raise NotImplementedError + if source: + self._source = (source, source_port) + else: + self._source = None + + def is_h3(self): + return self._h3_conn is not None + + def close_stream(self, stream_id): + del self._streams[stream_id] + + def send_headers(self, stream_id, headers, is_end=False): + self._h3_conn.send_headers(stream_id, headers, is_end) + + def send_data(self, stream_id, data, is_end=False): + self._h3_conn.send_data(stream_id, data, is_end) + + def _get_timer_values(self, closed_is_special=True): + now = time.time() + expiration = self._connection.get_timer() + if expiration is None: + expiration = now + 3600 # arbitrary "big" value + interval = max(expiration - now, 0) + if self._closed and closed_is_special: + # lower sleep interval to avoid a race in the closing process + # which can lead to higher latency closing due to sleeping when + # we have events. + interval = min(interval, 0.05) + return (expiration, interval) + + def _handle_timer(self, expiration): + now = time.time() + if expiration <= now: + self._connection.handle_timer(now) + + +class AsyncQuicConnection(BaseQuicConnection): + async def make_stream(self, timeout: Optional[float] = None) -> Any: + pass + + +class BaseQuicManager: + def __init__( + self, conf, verify_mode, connection_factory, server_name=None, h3=False + ): + self._connections = {} + self._connection_factory = connection_factory + self._session_tickets = {} + self._tokens = {} + self._h3 = h3 + if conf is None: + verify_path = None + if isinstance(verify_mode, str): + verify_path = verify_mode + verify_mode = True + if h3: + alpn_protocols = ["h3"] + else: + alpn_protocols = ["doq", "doq-i03"] + conf = aioquic.quic.configuration.QuicConfiguration( + alpn_protocols=alpn_protocols, + verify_mode=verify_mode, + server_name=server_name, + ) + if verify_path is not None: + conf.load_verify_locations(verify_path) + self._conf = conf + + def _connect( + self, + address, + port=853, + source=None, + source_port=0, + want_session_ticket=True, + want_token=True, + ): + connection = self._connections.get((address, port)) + if connection is not None: + return (connection, False) + conf = self._conf + if want_session_ticket: + try: + session_ticket = self._session_tickets.pop((address, port)) + # We found a session ticket, so make a configuration that uses it. + conf = copy.copy(conf) + conf.session_ticket = session_ticket + except KeyError: + # No session ticket. + pass + # Whether or not we found a session ticket, we want a handler to save + # one. + session_ticket_handler = functools.partial( + self.save_session_ticket, address, port + ) + else: + session_ticket_handler = None + if want_token: + try: + token = self._tokens.pop((address, port)) + # We found a token, so make a configuration that uses it. + conf = copy.copy(conf) + conf.token = token + except KeyError: + # No token + pass + # Whether or not we found a token, we want a handler to save # one. + token_handler = functools.partial(self.save_token, address, port) + else: + token_handler = None + + qconn = aioquic.quic.connection.QuicConnection( + configuration=conf, + session_ticket_handler=session_ticket_handler, + token_handler=token_handler, + ) + lladdress = dns.inet.low_level_address_tuple((address, port)) + qconn.connect(lladdress, time.time()) + connection = self._connection_factory( + qconn, address, port, source, source_port, self + ) + self._connections[(address, port)] = connection + return (connection, True) + + def closed(self, address, port): + try: + del self._connections[(address, port)] + except KeyError: + pass + + def is_h3(self): + return self._h3 + + def save_session_ticket(self, address, port, ticket): + # We rely on dictionaries keys() being in insertion order here. We + # can't just popitem() as that would be LIFO which is the opposite of + # what we want. + l = len(self._session_tickets) + if l >= MAX_SESSION_TICKETS: + keys_to_delete = list(self._session_tickets.keys())[0:SESSIONS_TO_DELETE] + for key in keys_to_delete: + del self._session_tickets[key] + self._session_tickets[(address, port)] = ticket + + def save_token(self, address, port, token): + # We rely on dictionaries keys() being in insertion order here. We + # can't just popitem() as that would be LIFO which is the opposite of + # what we want. + l = len(self._tokens) + if l >= MAX_SESSION_TICKETS: + keys_to_delete = list(self._tokens.keys())[0:SESSIONS_TO_DELETE] + for key in keys_to_delete: + del self._tokens[key] + self._tokens[(address, port)] = token + + +class AsyncQuicManager(BaseQuicManager): + def connect(self, address, port=853, source=None, source_port=0): + raise NotImplementedError diff --git a/.venv/lib/python3.11/site-packages/dns/quic/_sync.py b/.venv/lib/python3.11/site-packages/dns/quic/_sync.py new file mode 100644 index 0000000..473d1f4 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/quic/_sync.py @@ -0,0 +1,295 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +import selectors +import socket +import ssl +import struct +import threading +import time + +import aioquic.quic.configuration # type: ignore +import aioquic.quic.connection # type: ignore +import aioquic.quic.events # type: ignore + +import dns.exception +import dns.inet +from dns.quic._common import ( + QUIC_MAX_DATAGRAM, + BaseQuicConnection, + BaseQuicManager, + BaseQuicStream, + UnexpectedEOF, +) + +# Function used to create a socket. Can be overridden if needed in special +# situations. +socket_factory = socket.socket + + +class SyncQuicStream(BaseQuicStream): + def __init__(self, connection, stream_id): + super().__init__(connection, stream_id) + self._wake_up = threading.Condition() + self._lock = threading.Lock() + + def wait_for(self, amount, expiration): + while True: + timeout = self._timeout_from_expiration(expiration) + with self._lock: + if self._buffer.have(amount): + return + self._expecting = amount + with self._wake_up: + if not self._wake_up.wait(timeout): + raise dns.exception.Timeout + self._expecting = 0 + + def wait_for_end(self, expiration): + while True: + timeout = self._timeout_from_expiration(expiration) + with self._lock: + if self._buffer.seen_end(): + return + with self._wake_up: + if not self._wake_up.wait(timeout): + raise dns.exception.Timeout + + def receive(self, timeout=None): + expiration = self._expiration_from_timeout(timeout) + if self._connection.is_h3(): + self.wait_for_end(expiration) + with self._lock: + return self._buffer.get_all() + else: + self.wait_for(2, expiration) + with self._lock: + (size,) = struct.unpack("!H", self._buffer.get(2)) + self.wait_for(size, expiration) + with self._lock: + return self._buffer.get(size) + + def send(self, datagram, is_end=False): + data = self._encapsulate(datagram) + self._connection.write(self._stream_id, data, is_end) + + def _add_input(self, data, is_end): + if self._common_add_input(data, is_end): + with self._wake_up: + self._wake_up.notify() + + def close(self): + with self._lock: + self._close() + + def __enter__(self): + return self + + def __exit__(self, exc_type, exc_val, exc_tb): + self.close() + with self._wake_up: + self._wake_up.notify() + return False + + +class SyncQuicConnection(BaseQuicConnection): + def __init__(self, connection, address, port, source, source_port, manager): + super().__init__(connection, address, port, source, source_port, manager) + self._socket = socket_factory(self._af, socket.SOCK_DGRAM, 0) + if self._source is not None: + try: + self._socket.bind( + dns.inet.low_level_address_tuple(self._source, self._af) + ) + except Exception: + self._socket.close() + raise + self._socket.connect(self._peer) + (self._send_wakeup, self._receive_wakeup) = socket.socketpair() + self._receive_wakeup.setblocking(False) + self._socket.setblocking(False) + self._handshake_complete = threading.Event() + self._worker_thread = None + self._lock = threading.Lock() + + def _read(self): + count = 0 + while count < 10: + count += 1 + try: + datagram = self._socket.recv(QUIC_MAX_DATAGRAM) + except BlockingIOError: + return + with self._lock: + self._connection.receive_datagram(datagram, self._peer, time.time()) + + def _drain_wakeup(self): + while True: + try: + self._receive_wakeup.recv(32) + except BlockingIOError: + return + + def _worker(self): + try: + sel = selectors.DefaultSelector() + sel.register(self._socket, selectors.EVENT_READ, self._read) + sel.register(self._receive_wakeup, selectors.EVENT_READ, self._drain_wakeup) + while not self._done: + (expiration, interval) = self._get_timer_values(False) + items = sel.select(interval) + for key, _ in items: + key.data() + with self._lock: + self._handle_timer(expiration) + self._handle_events() + with self._lock: + datagrams = self._connection.datagrams_to_send(time.time()) + for datagram, _ in datagrams: + try: + self._socket.send(datagram) + except BlockingIOError: + # we let QUIC handle any lossage + pass + finally: + with self._lock: + self._done = True + self._socket.close() + # Ensure anyone waiting for this gets woken up. + self._handshake_complete.set() + + def _handle_events(self): + while True: + with self._lock: + event = self._connection.next_event() + if event is None: + return + if isinstance(event, aioquic.quic.events.StreamDataReceived): + if self.is_h3(): + h3_events = self._h3_conn.handle_event(event) + for h3_event in h3_events: + if isinstance(h3_event, aioquic.h3.events.HeadersReceived): + with self._lock: + stream = self._streams.get(event.stream_id) + if stream: + if stream._headers is None: + stream._headers = h3_event.headers + elif stream._trailers is None: + stream._trailers = h3_event.headers + if h3_event.stream_ended: + stream._add_input(b"", True) + elif isinstance(h3_event, aioquic.h3.events.DataReceived): + with self._lock: + stream = self._streams.get(event.stream_id) + if stream: + stream._add_input(h3_event.data, h3_event.stream_ended) + else: + with self._lock: + stream = self._streams.get(event.stream_id) + if stream: + stream._add_input(event.data, event.end_stream) + elif isinstance(event, aioquic.quic.events.HandshakeCompleted): + self._handshake_complete.set() + elif isinstance(event, aioquic.quic.events.ConnectionTerminated): + with self._lock: + self._done = True + elif isinstance(event, aioquic.quic.events.StreamReset): + with self._lock: + stream = self._streams.get(event.stream_id) + if stream: + stream._add_input(b"", True) + + def write(self, stream, data, is_end=False): + with self._lock: + self._connection.send_stream_data(stream, data, is_end) + self._send_wakeup.send(b"\x01") + + def send_headers(self, stream_id, headers, is_end=False): + with self._lock: + super().send_headers(stream_id, headers, is_end) + if is_end: + self._send_wakeup.send(b"\x01") + + def send_data(self, stream_id, data, is_end=False): + with self._lock: + super().send_data(stream_id, data, is_end) + if is_end: + self._send_wakeup.send(b"\x01") + + def run(self): + if self._closed: + return + self._worker_thread = threading.Thread(target=self._worker) + self._worker_thread.start() + + def make_stream(self, timeout=None): + if not self._handshake_complete.wait(timeout): + raise dns.exception.Timeout + with self._lock: + if self._done: + raise UnexpectedEOF + stream_id = self._connection.get_next_available_stream_id(False) + stream = SyncQuicStream(self, stream_id) + self._streams[stream_id] = stream + return stream + + def close_stream(self, stream_id): + with self._lock: + super().close_stream(stream_id) + + def close(self): + with self._lock: + if self._closed: + return + self._manager.closed(self._peer[0], self._peer[1]) + self._closed = True + self._connection.close() + self._send_wakeup.send(b"\x01") + self._worker_thread.join() + + +class SyncQuicManager(BaseQuicManager): + def __init__( + self, conf=None, verify_mode=ssl.CERT_REQUIRED, server_name=None, h3=False + ): + super().__init__(conf, verify_mode, SyncQuicConnection, server_name, h3) + self._lock = threading.Lock() + + def connect( + self, + address, + port=853, + source=None, + source_port=0, + want_session_ticket=True, + want_token=True, + ): + with self._lock: + (connection, start) = self._connect( + address, port, source, source_port, want_session_ticket, want_token + ) + if start: + connection.run() + return connection + + def closed(self, address, port): + with self._lock: + super().closed(address, port) + + def save_session_ticket(self, address, port, ticket): + with self._lock: + super().save_session_ticket(address, port, ticket) + + def save_token(self, address, port, token): + with self._lock: + super().save_token(address, port, token) + + def __enter__(self): + return self + + def __exit__(self, exc_type, exc_val, exc_tb): + # Copy the iterator into a list as exiting things will mutate the connections + # table. + connections = list(self._connections.values()) + for connection in connections: + connection.close() + return False diff --git a/.venv/lib/python3.11/site-packages/dns/quic/_trio.py b/.venv/lib/python3.11/site-packages/dns/quic/_trio.py new file mode 100644 index 0000000..ae79f36 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/quic/_trio.py @@ -0,0 +1,246 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +import socket +import ssl +import struct +import time + +import aioquic.quic.configuration # type: ignore +import aioquic.quic.connection # type: ignore +import aioquic.quic.events # type: ignore +import trio + +import dns.exception +import dns.inet +from dns._asyncbackend import NullContext +from dns.quic._common import ( + QUIC_MAX_DATAGRAM, + AsyncQuicConnection, + AsyncQuicManager, + BaseQuicStream, + UnexpectedEOF, +) + + +class TrioQuicStream(BaseQuicStream): + def __init__(self, connection, stream_id): + super().__init__(connection, stream_id) + self._wake_up = trio.Condition() + + async def wait_for(self, amount): + while True: + if self._buffer.have(amount): + return + self._expecting = amount + async with self._wake_up: + await self._wake_up.wait() + self._expecting = 0 + + async def wait_for_end(self): + while True: + if self._buffer.seen_end(): + return + async with self._wake_up: + await self._wake_up.wait() + + async def receive(self, timeout=None): + if timeout is None: + context = NullContext(None) + else: + context = trio.move_on_after(timeout) + with context: + if self._connection.is_h3(): + await self.wait_for_end() + return self._buffer.get_all() + else: + await self.wait_for(2) + (size,) = struct.unpack("!H", self._buffer.get(2)) + await self.wait_for(size) + return self._buffer.get(size) + raise dns.exception.Timeout + + async def send(self, datagram, is_end=False): + data = self._encapsulate(datagram) + await self._connection.write(self._stream_id, data, is_end) + + async def _add_input(self, data, is_end): + if self._common_add_input(data, is_end): + async with self._wake_up: + self._wake_up.notify() + + async def close(self): + self._close() + + # Streams are async context managers + + async def __aenter__(self): + return self + + async def __aexit__(self, exc_type, exc_val, exc_tb): + await self.close() + async with self._wake_up: + self._wake_up.notify() + return False + + +class TrioQuicConnection(AsyncQuicConnection): + def __init__(self, connection, address, port, source, source_port, manager=None): + super().__init__(connection, address, port, source, source_port, manager) + self._socket = trio.socket.socket(self._af, socket.SOCK_DGRAM, 0) + self._handshake_complete = trio.Event() + self._run_done = trio.Event() + self._worker_scope = None + self._send_pending = False + + async def _worker(self): + try: + if self._source: + await self._socket.bind( + dns.inet.low_level_address_tuple(self._source, self._af) + ) + await self._socket.connect(self._peer) + while not self._done: + (expiration, interval) = self._get_timer_values(False) + if self._send_pending: + # Do not block forever if sends are pending. Even though we + # have a wake-up mechanism if we've already started the blocking + # read, the possibility of context switching in send means that + # more writes can happen while we have no wake up context, so + # we need self._send_pending to avoid (effectively) a "lost wakeup" + # race. + interval = 0.0 + with trio.CancelScope( + deadline=trio.current_time() + interval + ) as self._worker_scope: + datagram = await self._socket.recv(QUIC_MAX_DATAGRAM) + self._connection.receive_datagram(datagram, self._peer, time.time()) + self._worker_scope = None + self._handle_timer(expiration) + await self._handle_events() + # We clear this now, before sending anything, as sending can cause + # context switches that do more sends. We want to know if that + # happens so we don't block a long time on the recv() above. + self._send_pending = False + datagrams = self._connection.datagrams_to_send(time.time()) + for datagram, _ in datagrams: + await self._socket.send(datagram) + finally: + self._done = True + self._socket.close() + self._handshake_complete.set() + + async def _handle_events(self): + count = 0 + while True: + event = self._connection.next_event() + if event is None: + return + if isinstance(event, aioquic.quic.events.StreamDataReceived): + if self.is_h3(): + h3_events = self._h3_conn.handle_event(event) + for h3_event in h3_events: + if isinstance(h3_event, aioquic.h3.events.HeadersReceived): + stream = self._streams.get(event.stream_id) + if stream: + if stream._headers is None: + stream._headers = h3_event.headers + elif stream._trailers is None: + stream._trailers = h3_event.headers + if h3_event.stream_ended: + await stream._add_input(b"", True) + elif isinstance(h3_event, aioquic.h3.events.DataReceived): + stream = self._streams.get(event.stream_id) + if stream: + await stream._add_input( + h3_event.data, h3_event.stream_ended + ) + else: + stream = self._streams.get(event.stream_id) + if stream: + await stream._add_input(event.data, event.end_stream) + elif isinstance(event, aioquic.quic.events.HandshakeCompleted): + self._handshake_complete.set() + elif isinstance(event, aioquic.quic.events.ConnectionTerminated): + self._done = True + self._socket.close() + elif isinstance(event, aioquic.quic.events.StreamReset): + stream = self._streams.get(event.stream_id) + if stream: + await stream._add_input(b"", True) + count += 1 + if count > 10: + # yield + count = 0 + await trio.sleep(0) + + async def write(self, stream, data, is_end=False): + self._connection.send_stream_data(stream, data, is_end) + self._send_pending = True + if self._worker_scope is not None: + self._worker_scope.cancel() + + async def run(self): + if self._closed: + return + async with trio.open_nursery() as nursery: + nursery.start_soon(self._worker) + self._run_done.set() + + async def make_stream(self, timeout=None): + if timeout is None: + context = NullContext(None) + else: + context = trio.move_on_after(timeout) + with context: + await self._handshake_complete.wait() + if self._done: + raise UnexpectedEOF + stream_id = self._connection.get_next_available_stream_id(False) + stream = TrioQuicStream(self, stream_id) + self._streams[stream_id] = stream + return stream + raise dns.exception.Timeout + + async def close(self): + if not self._closed: + self._manager.closed(self._peer[0], self._peer[1]) + self._closed = True + self._connection.close() + self._send_pending = True + if self._worker_scope is not None: + self._worker_scope.cancel() + await self._run_done.wait() + + +class TrioQuicManager(AsyncQuicManager): + def __init__( + self, + nursery, + conf=None, + verify_mode=ssl.CERT_REQUIRED, + server_name=None, + h3=False, + ): + super().__init__(conf, verify_mode, TrioQuicConnection, server_name, h3) + self._nursery = nursery + + def connect( + self, address, port=853, source=None, source_port=0, want_session_ticket=True + ): + (connection, start) = self._connect( + address, port, source, source_port, want_session_ticket + ) + if start: + self._nursery.start_soon(connection.run) + return connection + + async def __aenter__(self): + return self + + async def __aexit__(self, exc_type, exc_val, exc_tb): + # Copy the iterator into a list as exiting things will mutate the connections + # table. + connections = list(self._connections.values()) + for connection in connections: + await connection.close() + return False diff --git a/.venv/lib/python3.11/site-packages/dns/rcode.py b/.venv/lib/python3.11/site-packages/dns/rcode.py new file mode 100644 index 0000000..8e6386f --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rcode.py @@ -0,0 +1,168 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2001-2017 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +"""DNS Result Codes.""" + +from typing import Tuple + +import dns.enum +import dns.exception + + +class Rcode(dns.enum.IntEnum): + #: No error + NOERROR = 0 + #: Format error + FORMERR = 1 + #: Server failure + SERVFAIL = 2 + #: Name does not exist ("Name Error" in RFC 1025 terminology). + NXDOMAIN = 3 + #: Not implemented + NOTIMP = 4 + #: Refused + REFUSED = 5 + #: Name exists. + YXDOMAIN = 6 + #: RRset exists. + YXRRSET = 7 + #: RRset does not exist. + NXRRSET = 8 + #: Not authoritative. + NOTAUTH = 9 + #: Name not in zone. + NOTZONE = 10 + #: DSO-TYPE Not Implemented + DSOTYPENI = 11 + #: Bad EDNS version. + BADVERS = 16 + #: TSIG Signature Failure + BADSIG = 16 + #: Key not recognized. + BADKEY = 17 + #: Signature out of time window. + BADTIME = 18 + #: Bad TKEY Mode. + BADMODE = 19 + #: Duplicate key name. + BADNAME = 20 + #: Algorithm not supported. + BADALG = 21 + #: Bad Truncation + BADTRUNC = 22 + #: Bad/missing Server Cookie + BADCOOKIE = 23 + + @classmethod + def _maximum(cls): + return 4095 + + @classmethod + def _unknown_exception_class(cls): + return UnknownRcode + + +class UnknownRcode(dns.exception.DNSException): + """A DNS rcode is unknown.""" + + +def from_text(text: str) -> Rcode: + """Convert text into an rcode. + + *text*, a ``str``, the textual rcode or an integer in textual form. + + Raises ``dns.rcode.UnknownRcode`` if the rcode mnemonic is unknown. + + Returns a ``dns.rcode.Rcode``. + """ + + return Rcode.from_text(text) + + +def from_flags(flags: int, ednsflags: int) -> Rcode: + """Return the rcode value encoded by flags and ednsflags. + + *flags*, an ``int``, the DNS flags field. + + *ednsflags*, an ``int``, the EDNS flags field. + + Raises ``ValueError`` if rcode is < 0 or > 4095 + + Returns a ``dns.rcode.Rcode``. + """ + + value = (flags & 0x000F) | ((ednsflags >> 20) & 0xFF0) + return Rcode.make(value) + + +def to_flags(value: Rcode) -> Tuple[int, int]: + """Return a (flags, ednsflags) tuple which encodes the rcode. + + *value*, a ``dns.rcode.Rcode``, the rcode. + + Raises ``ValueError`` if rcode is < 0 or > 4095. + + Returns an ``(int, int)`` tuple. + """ + + if value < 0 or value > 4095: + raise ValueError("rcode must be >= 0 and <= 4095") + v = value & 0xF + ev = (value & 0xFF0) << 20 + return (v, ev) + + +def to_text(value: Rcode, tsig: bool = False) -> str: + """Convert rcode into text. + + *value*, a ``dns.rcode.Rcode``, the rcode. + + Raises ``ValueError`` if rcode is < 0 or > 4095. + + Returns a ``str``. + """ + + if tsig and value == Rcode.BADVERS: + return "BADSIG" + return Rcode.to_text(value) + + +### BEGIN generated Rcode constants + +NOERROR = Rcode.NOERROR +FORMERR = Rcode.FORMERR +SERVFAIL = Rcode.SERVFAIL +NXDOMAIN = Rcode.NXDOMAIN +NOTIMP = Rcode.NOTIMP +REFUSED = Rcode.REFUSED +YXDOMAIN = Rcode.YXDOMAIN +YXRRSET = Rcode.YXRRSET +NXRRSET = Rcode.NXRRSET +NOTAUTH = Rcode.NOTAUTH +NOTZONE = Rcode.NOTZONE +DSOTYPENI = Rcode.DSOTYPENI +BADVERS = Rcode.BADVERS +BADSIG = Rcode.BADSIG +BADKEY = Rcode.BADKEY +BADTIME = Rcode.BADTIME +BADMODE = Rcode.BADMODE +BADNAME = Rcode.BADNAME +BADALG = Rcode.BADALG +BADTRUNC = Rcode.BADTRUNC +BADCOOKIE = Rcode.BADCOOKIE + +### END generated Rcode constants diff --git a/.venv/lib/python3.11/site-packages/dns/rdata.py b/.venv/lib/python3.11/site-packages/dns/rdata.py new file mode 100644 index 0000000..8099c26 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rdata.py @@ -0,0 +1,911 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2001-2017 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +"""DNS rdata.""" + +import base64 +import binascii +import inspect +import io +import itertools +import random +from importlib import import_module +from typing import Any, Dict, Optional, Tuple, Union + +import dns.exception +import dns.immutable +import dns.ipv4 +import dns.ipv6 +import dns.name +import dns.rdataclass +import dns.rdatatype +import dns.tokenizer +import dns.ttl +import dns.wire + +_chunksize = 32 + +# We currently allow comparisons for rdata with relative names for backwards +# compatibility, but in the future we will not, as these kinds of comparisons +# can lead to subtle bugs if code is not carefully written. +# +# This switch allows the future behavior to be turned on so code can be +# tested with it. +_allow_relative_comparisons = True + + +class NoRelativeRdataOrdering(dns.exception.DNSException): + """An attempt was made to do an ordered comparison of one or more + rdata with relative names. The only reliable way of sorting rdata + is to use non-relativized rdata. + + """ + + +def _wordbreak(data, chunksize=_chunksize, separator=b" "): + """Break a binary string into chunks of chunksize characters separated by + a space. + """ + + if not chunksize: + return data.decode() + return separator.join( + [data[i : i + chunksize] for i in range(0, len(data), chunksize)] + ).decode() + + +# pylint: disable=unused-argument + + +def _hexify(data, chunksize=_chunksize, separator=b" ", **kw): + """Convert a binary string into its hex encoding, broken up into chunks + of chunksize characters separated by a separator. + """ + + return _wordbreak(binascii.hexlify(data), chunksize, separator) + + +def _base64ify(data, chunksize=_chunksize, separator=b" ", **kw): + """Convert a binary string into its base64 encoding, broken up into chunks + of chunksize characters separated by a separator. + """ + + return _wordbreak(base64.b64encode(data), chunksize, separator) + + +# pylint: enable=unused-argument + +__escaped = b'"\\' + + +def _escapify(qstring): + """Escape the characters in a quoted string which need it.""" + + if isinstance(qstring, str): + qstring = qstring.encode() + if not isinstance(qstring, bytearray): + qstring = bytearray(qstring) + + text = "" + for c in qstring: + if c in __escaped: + text += "\\" + chr(c) + elif c >= 0x20 and c < 0x7F: + text += chr(c) + else: + text += "\\%03d" % c + return text + + +def _truncate_bitmap(what): + """Determine the index of greatest byte that isn't all zeros, and + return the bitmap that contains all the bytes less than that index. + """ + + for i in range(len(what) - 1, -1, -1): + if what[i] != 0: + return what[0 : i + 1] + return what[0:1] + + +# So we don't have to edit all the rdata classes... +_constify = dns.immutable.constify + + +@dns.immutable.immutable +class Rdata: + """Base class for all DNS rdata types.""" + + __slots__ = ["rdclass", "rdtype", "rdcomment"] + + def __init__(self, rdclass, rdtype): + """Initialize an rdata. + + *rdclass*, an ``int`` is the rdataclass of the Rdata. + + *rdtype*, an ``int`` is the rdatatype of the Rdata. + """ + + self.rdclass = self._as_rdataclass(rdclass) + self.rdtype = self._as_rdatatype(rdtype) + self.rdcomment = None + + def _get_all_slots(self): + return itertools.chain.from_iterable( + getattr(cls, "__slots__", []) for cls in self.__class__.__mro__ + ) + + def __getstate__(self): + # We used to try to do a tuple of all slots here, but it + # doesn't work as self._all_slots isn't available at + # __setstate__() time. Before that we tried to store a tuple + # of __slots__, but that didn't work as it didn't store the + # slots defined by ancestors. This older way didn't fail + # outright, but ended up with partially broken objects, e.g. + # if you unpickled an A RR it wouldn't have rdclass and rdtype + # attributes, and would compare badly. + state = {} + for slot in self._get_all_slots(): + state[slot] = getattr(self, slot) + return state + + def __setstate__(self, state): + for slot, val in state.items(): + object.__setattr__(self, slot, val) + if not hasattr(self, "rdcomment"): + # Pickled rdata from 2.0.x might not have a rdcomment, so add + # it if needed. + object.__setattr__(self, "rdcomment", None) + + def covers(self) -> dns.rdatatype.RdataType: + """Return the type a Rdata covers. + + DNS SIG/RRSIG rdatas apply to a specific type; this type is + returned by the covers() function. If the rdata type is not + SIG or RRSIG, dns.rdatatype.NONE is returned. This is useful when + creating rdatasets, allowing the rdataset to contain only RRSIGs + of a particular type, e.g. RRSIG(NS). + + Returns a ``dns.rdatatype.RdataType``. + """ + + return dns.rdatatype.NONE + + def extended_rdatatype(self) -> int: + """Return a 32-bit type value, the least significant 16 bits of + which are the ordinary DNS type, and the upper 16 bits of which are + the "covered" type, if any. + + Returns an ``int``. + """ + + return self.covers() << 16 | self.rdtype + + def to_text( + self, + origin: Optional[dns.name.Name] = None, + relativize: bool = True, + **kw: Dict[str, Any], + ) -> str: + """Convert an rdata to text format. + + Returns a ``str``. + """ + + raise NotImplementedError # pragma: no cover + + def _to_wire( + self, + file: Optional[Any], + compress: Optional[dns.name.CompressType] = None, + origin: Optional[dns.name.Name] = None, + canonicalize: bool = False, + ) -> None: + raise NotImplementedError # pragma: no cover + + def to_wire( + self, + file: Optional[Any] = None, + compress: Optional[dns.name.CompressType] = None, + origin: Optional[dns.name.Name] = None, + canonicalize: bool = False, + ) -> Optional[bytes]: + """Convert an rdata to wire format. + + Returns a ``bytes`` if no output file was specified, or ``None`` otherwise. + """ + + if file: + # We call _to_wire() and then return None explicitly instead of + # of just returning the None from _to_wire() as mypy's func-returns-value + # unhelpfully errors out with "error: "_to_wire" of "Rdata" does not return + # a value (it only ever returns None)" + self._to_wire(file, compress, origin, canonicalize) + return None + else: + f = io.BytesIO() + self._to_wire(f, compress, origin, canonicalize) + return f.getvalue() + + def to_generic( + self, origin: Optional[dns.name.Name] = None + ) -> "dns.rdata.GenericRdata": + """Creates a dns.rdata.GenericRdata equivalent of this rdata. + + Returns a ``dns.rdata.GenericRdata``. + """ + return dns.rdata.GenericRdata( + self.rdclass, self.rdtype, self.to_wire(origin=origin) + ) + + def to_digestable(self, origin: Optional[dns.name.Name] = None) -> bytes: + """Convert rdata to a format suitable for digesting in hashes. This + is also the DNSSEC canonical form. + + Returns a ``bytes``. + """ + wire = self.to_wire(origin=origin, canonicalize=True) + assert wire is not None # for mypy + return wire + + def __repr__(self): + covers = self.covers() + if covers == dns.rdatatype.NONE: + ctext = "" + else: + ctext = "(" + dns.rdatatype.to_text(covers) + ")" + return ( + "" + ) + + def __str__(self): + return self.to_text() + + def _cmp(self, other): + """Compare an rdata with another rdata of the same rdtype and + rdclass. + + For rdata with only absolute names: + Return < 0 if self < other in the DNSSEC ordering, 0 if self + == other, and > 0 if self > other. + For rdata with at least one relative names: + The rdata sorts before any rdata with only absolute names. + When compared with another relative rdata, all names are + made absolute as if they were relative to the root, as the + proper origin is not available. While this creates a stable + ordering, it is NOT guaranteed to be the DNSSEC ordering. + In the future, all ordering comparisons for rdata with + relative names will be disallowed. + """ + try: + our = self.to_digestable() + our_relative = False + except dns.name.NeedAbsoluteNameOrOrigin: + if _allow_relative_comparisons: + our = self.to_digestable(dns.name.root) + our_relative = True + try: + their = other.to_digestable() + their_relative = False + except dns.name.NeedAbsoluteNameOrOrigin: + if _allow_relative_comparisons: + their = other.to_digestable(dns.name.root) + their_relative = True + if _allow_relative_comparisons: + if our_relative != their_relative: + # For the purpose of comparison, all rdata with at least one + # relative name is less than an rdata with only absolute names. + if our_relative: + return -1 + else: + return 1 + elif our_relative or their_relative: + raise NoRelativeRdataOrdering + if our == their: + return 0 + elif our > their: + return 1 + else: + return -1 + + def __eq__(self, other): + if not isinstance(other, Rdata): + return False + if self.rdclass != other.rdclass or self.rdtype != other.rdtype: + return False + our_relative = False + their_relative = False + try: + our = self.to_digestable() + except dns.name.NeedAbsoluteNameOrOrigin: + our = self.to_digestable(dns.name.root) + our_relative = True + try: + their = other.to_digestable() + except dns.name.NeedAbsoluteNameOrOrigin: + their = other.to_digestable(dns.name.root) + their_relative = True + if our_relative != their_relative: + return False + return our == their + + def __ne__(self, other): + if not isinstance(other, Rdata): + return True + if self.rdclass != other.rdclass or self.rdtype != other.rdtype: + return True + return not self.__eq__(other) + + def __lt__(self, other): + if ( + not isinstance(other, Rdata) + or self.rdclass != other.rdclass + or self.rdtype != other.rdtype + ): + return NotImplemented + return self._cmp(other) < 0 + + def __le__(self, other): + if ( + not isinstance(other, Rdata) + or self.rdclass != other.rdclass + or self.rdtype != other.rdtype + ): + return NotImplemented + return self._cmp(other) <= 0 + + def __ge__(self, other): + if ( + not isinstance(other, Rdata) + or self.rdclass != other.rdclass + or self.rdtype != other.rdtype + ): + return NotImplemented + return self._cmp(other) >= 0 + + def __gt__(self, other): + if ( + not isinstance(other, Rdata) + or self.rdclass != other.rdclass + or self.rdtype != other.rdtype + ): + return NotImplemented + return self._cmp(other) > 0 + + def __hash__(self): + return hash(self.to_digestable(dns.name.root)) + + @classmethod + def from_text( + cls, + rdclass: dns.rdataclass.RdataClass, + rdtype: dns.rdatatype.RdataType, + tok: dns.tokenizer.Tokenizer, + origin: Optional[dns.name.Name] = None, + relativize: bool = True, + relativize_to: Optional[dns.name.Name] = None, + ) -> "Rdata": + raise NotImplementedError # pragma: no cover + + @classmethod + def from_wire_parser( + cls, + rdclass: dns.rdataclass.RdataClass, + rdtype: dns.rdatatype.RdataType, + parser: dns.wire.Parser, + origin: Optional[dns.name.Name] = None, + ) -> "Rdata": + raise NotImplementedError # pragma: no cover + + def replace(self, **kwargs: Any) -> "Rdata": + """ + Create a new Rdata instance based on the instance replace was + invoked on. It is possible to pass different parameters to + override the corresponding properties of the base Rdata. + + Any field specific to the Rdata type can be replaced, but the + *rdtype* and *rdclass* fields cannot. + + Returns an instance of the same Rdata subclass as *self*. + """ + + # Get the constructor parameters. + parameters = inspect.signature(self.__init__).parameters # type: ignore + + # Ensure that all of the arguments correspond to valid fields. + # Don't allow rdclass or rdtype to be changed, though. + for key in kwargs: + if key == "rdcomment": + continue + if key not in parameters: + raise AttributeError( + f"'{self.__class__.__name__}' object has no attribute '{key}'" + ) + if key in ("rdclass", "rdtype"): + raise AttributeError( + f"Cannot overwrite '{self.__class__.__name__}' attribute '{key}'" + ) + + # Construct the parameter list. For each field, use the value in + # kwargs if present, and the current value otherwise. + args = (kwargs.get(key, getattr(self, key)) for key in parameters) + + # Create, validate, and return the new object. + rd = self.__class__(*args) + # The comment is not set in the constructor, so give it special + # handling. + rdcomment = kwargs.get("rdcomment", self.rdcomment) + if rdcomment is not None: + object.__setattr__(rd, "rdcomment", rdcomment) + return rd + + # Type checking and conversion helpers. These are class methods as + # they don't touch object state and may be useful to others. + + @classmethod + def _as_rdataclass(cls, value): + return dns.rdataclass.RdataClass.make(value) + + @classmethod + def _as_rdatatype(cls, value): + return dns.rdatatype.RdataType.make(value) + + @classmethod + def _as_bytes( + cls, + value: Any, + encode: bool = False, + max_length: Optional[int] = None, + empty_ok: bool = True, + ) -> bytes: + if encode and isinstance(value, str): + bvalue = value.encode() + elif isinstance(value, bytearray): + bvalue = bytes(value) + elif isinstance(value, bytes): + bvalue = value + else: + raise ValueError("not bytes") + if max_length is not None and len(bvalue) > max_length: + raise ValueError("too long") + if not empty_ok and len(bvalue) == 0: + raise ValueError("empty bytes not allowed") + return bvalue + + @classmethod + def _as_name(cls, value): + # Note that proper name conversion (e.g. with origin and IDNA + # awareness) is expected to be done via from_text. This is just + # a simple thing for people invoking the constructor directly. + if isinstance(value, str): + return dns.name.from_text(value) + elif not isinstance(value, dns.name.Name): + raise ValueError("not a name") + return value + + @classmethod + def _as_uint8(cls, value): + if not isinstance(value, int): + raise ValueError("not an integer") + if value < 0 or value > 255: + raise ValueError("not a uint8") + return value + + @classmethod + def _as_uint16(cls, value): + if not isinstance(value, int): + raise ValueError("not an integer") + if value < 0 or value > 65535: + raise ValueError("not a uint16") + return value + + @classmethod + def _as_uint32(cls, value): + if not isinstance(value, int): + raise ValueError("not an integer") + if value < 0 or value > 4294967295: + raise ValueError("not a uint32") + return value + + @classmethod + def _as_uint48(cls, value): + if not isinstance(value, int): + raise ValueError("not an integer") + if value < 0 or value > 281474976710655: + raise ValueError("not a uint48") + return value + + @classmethod + def _as_int(cls, value, low=None, high=None): + if not isinstance(value, int): + raise ValueError("not an integer") + if low is not None and value < low: + raise ValueError("value too small") + if high is not None and value > high: + raise ValueError("value too large") + return value + + @classmethod + def _as_ipv4_address(cls, value): + if isinstance(value, str): + return dns.ipv4.canonicalize(value) + elif isinstance(value, bytes): + return dns.ipv4.inet_ntoa(value) + else: + raise ValueError("not an IPv4 address") + + @classmethod + def _as_ipv6_address(cls, value): + if isinstance(value, str): + return dns.ipv6.canonicalize(value) + elif isinstance(value, bytes): + return dns.ipv6.inet_ntoa(value) + else: + raise ValueError("not an IPv6 address") + + @classmethod + def _as_bool(cls, value): + if isinstance(value, bool): + return value + else: + raise ValueError("not a boolean") + + @classmethod + def _as_ttl(cls, value): + if isinstance(value, int): + return cls._as_int(value, 0, dns.ttl.MAX_TTL) + elif isinstance(value, str): + return dns.ttl.from_text(value) + else: + raise ValueError("not a TTL") + + @classmethod + def _as_tuple(cls, value, as_value): + try: + # For user convenience, if value is a singleton of the list + # element type, wrap it in a tuple. + return (as_value(value),) + except Exception: + # Otherwise, check each element of the iterable *value* + # against *as_value*. + return tuple(as_value(v) for v in value) + + # Processing order + + @classmethod + def _processing_order(cls, iterable): + items = list(iterable) + random.shuffle(items) + return items + + +@dns.immutable.immutable +class GenericRdata(Rdata): + """Generic Rdata Class + + This class is used for rdata types for which we have no better + implementation. It implements the DNS "unknown RRs" scheme. + """ + + __slots__ = ["data"] + + def __init__(self, rdclass, rdtype, data): + super().__init__(rdclass, rdtype) + self.data = data + + def to_text( + self, + origin: Optional[dns.name.Name] = None, + relativize: bool = True, + **kw: Dict[str, Any], + ) -> str: + return r"\# %d " % len(self.data) + _hexify(self.data, **kw) + + @classmethod + def from_text( + cls, rdclass, rdtype, tok, origin=None, relativize=True, relativize_to=None + ): + token = tok.get() + if not token.is_identifier() or token.value != r"\#": + raise dns.exception.SyntaxError(r"generic rdata does not start with \#") + length = tok.get_int() + hex = tok.concatenate_remaining_identifiers(True).encode() + data = binascii.unhexlify(hex) + if len(data) != length: + raise dns.exception.SyntaxError("generic rdata hex data has wrong length") + return cls(rdclass, rdtype, data) + + def _to_wire(self, file, compress=None, origin=None, canonicalize=False): + file.write(self.data) + + @classmethod + def from_wire_parser(cls, rdclass, rdtype, parser, origin=None): + return cls(rdclass, rdtype, parser.get_remaining()) + + +_rdata_classes: Dict[Tuple[dns.rdataclass.RdataClass, dns.rdatatype.RdataType], Any] = ( + {} +) +_module_prefix = "dns.rdtypes" +_dynamic_load_allowed = True + + +def get_rdata_class(rdclass, rdtype, use_generic=True): + cls = _rdata_classes.get((rdclass, rdtype)) + if not cls: + cls = _rdata_classes.get((dns.rdatatype.ANY, rdtype)) + if not cls and _dynamic_load_allowed: + rdclass_text = dns.rdataclass.to_text(rdclass) + rdtype_text = dns.rdatatype.to_text(rdtype) + rdtype_text = rdtype_text.replace("-", "_") + try: + mod = import_module( + ".".join([_module_prefix, rdclass_text, rdtype_text]) + ) + cls = getattr(mod, rdtype_text) + _rdata_classes[(rdclass, rdtype)] = cls + except ImportError: + try: + mod = import_module(".".join([_module_prefix, "ANY", rdtype_text])) + cls = getattr(mod, rdtype_text) + _rdata_classes[(dns.rdataclass.ANY, rdtype)] = cls + _rdata_classes[(rdclass, rdtype)] = cls + except ImportError: + pass + if not cls and use_generic: + cls = GenericRdata + _rdata_classes[(rdclass, rdtype)] = cls + return cls + + +def load_all_types(disable_dynamic_load=True): + """Load all rdata types for which dnspython has a non-generic implementation. + + Normally dnspython loads DNS rdatatype implementations on demand, but in some + specialized cases loading all types at an application-controlled time is preferred. + + If *disable_dynamic_load*, a ``bool``, is ``True`` then dnspython will not attempt + to use its dynamic loading mechanism if an unknown type is subsequently encountered, + and will simply use the ``GenericRdata`` class. + """ + # Load class IN and ANY types. + for rdtype in dns.rdatatype.RdataType: + get_rdata_class(dns.rdataclass.IN, rdtype, False) + # Load the one non-ANY implementation we have in CH. Everything + # else in CH is an ANY type, and we'll discover those on demand but won't + # have to import anything. + get_rdata_class(dns.rdataclass.CH, dns.rdatatype.A, False) + if disable_dynamic_load: + # Now disable dynamic loading so any subsequent unknown type immediately becomes + # GenericRdata without a load attempt. + global _dynamic_load_allowed + _dynamic_load_allowed = False + + +def from_text( + rdclass: Union[dns.rdataclass.RdataClass, str], + rdtype: Union[dns.rdatatype.RdataType, str], + tok: Union[dns.tokenizer.Tokenizer, str], + origin: Optional[dns.name.Name] = None, + relativize: bool = True, + relativize_to: Optional[dns.name.Name] = None, + idna_codec: Optional[dns.name.IDNACodec] = None, +) -> Rdata: + """Build an rdata object from text format. + + This function attempts to dynamically load a class which + implements the specified rdata class and type. If there is no + class-and-type-specific implementation, the GenericRdata class + is used. + + Once a class is chosen, its from_text() class method is called + with the parameters to this function. + + If *tok* is a ``str``, then a tokenizer is created and the string + is used as its input. + + *rdclass*, a ``dns.rdataclass.RdataClass`` or ``str``, the rdataclass. + + *rdtype*, a ``dns.rdatatype.RdataType`` or ``str``, the rdatatype. + + *tok*, a ``dns.tokenizer.Tokenizer`` or a ``str``. + + *origin*, a ``dns.name.Name`` (or ``None``), the + origin to use for relative names. + + *relativize*, a ``bool``. If true, name will be relativized. + + *relativize_to*, a ``dns.name.Name`` (or ``None``), the origin to use + when relativizing names. If not set, the *origin* value will be used. + + *idna_codec*, a ``dns.name.IDNACodec``, specifies the IDNA + encoder/decoder to use if a tokenizer needs to be created. If + ``None``, the default IDNA 2003 encoder/decoder is used. If a + tokenizer is not created, then the codec associated with the tokenizer + is the one that is used. + + Returns an instance of the chosen Rdata subclass. + + """ + if isinstance(tok, str): + tok = dns.tokenizer.Tokenizer(tok, idna_codec=idna_codec) + rdclass = dns.rdataclass.RdataClass.make(rdclass) + rdtype = dns.rdatatype.RdataType.make(rdtype) + cls = get_rdata_class(rdclass, rdtype) + with dns.exception.ExceptionWrapper(dns.exception.SyntaxError): + rdata = None + if cls != GenericRdata: + # peek at first token + token = tok.get() + tok.unget(token) + if token.is_identifier() and token.value == r"\#": + # + # Known type using the generic syntax. Extract the + # wire form from the generic syntax, and then run + # from_wire on it. + # + grdata = GenericRdata.from_text( + rdclass, rdtype, tok, origin, relativize, relativize_to + ) + rdata = from_wire( + rdclass, rdtype, grdata.data, 0, len(grdata.data), origin + ) + # + # If this comparison isn't equal, then there must have been + # compressed names in the wire format, which is an error, + # there being no reasonable context to decompress with. + # + rwire = rdata.to_wire() + if rwire != grdata.data: + raise dns.exception.SyntaxError( + "compressed data in " + "generic syntax form " + "of known rdatatype" + ) + if rdata is None: + rdata = cls.from_text( + rdclass, rdtype, tok, origin, relativize, relativize_to + ) + token = tok.get_eol_as_token() + if token.comment is not None: + object.__setattr__(rdata, "rdcomment", token.comment) + return rdata + + +def from_wire_parser( + rdclass: Union[dns.rdataclass.RdataClass, str], + rdtype: Union[dns.rdatatype.RdataType, str], + parser: dns.wire.Parser, + origin: Optional[dns.name.Name] = None, +) -> Rdata: + """Build an rdata object from wire format + + This function attempts to dynamically load a class which + implements the specified rdata class and type. If there is no + class-and-type-specific implementation, the GenericRdata class + is used. + + Once a class is chosen, its from_wire() class method is called + with the parameters to this function. + + *rdclass*, a ``dns.rdataclass.RdataClass`` or ``str``, the rdataclass. + + *rdtype*, a ``dns.rdatatype.RdataType`` or ``str``, the rdatatype. + + *parser*, a ``dns.wire.Parser``, the parser, which should be + restricted to the rdata length. + + *origin*, a ``dns.name.Name`` (or ``None``). If not ``None``, + then names will be relativized to this origin. + + Returns an instance of the chosen Rdata subclass. + """ + + rdclass = dns.rdataclass.RdataClass.make(rdclass) + rdtype = dns.rdatatype.RdataType.make(rdtype) + cls = get_rdata_class(rdclass, rdtype) + with dns.exception.ExceptionWrapper(dns.exception.FormError): + return cls.from_wire_parser(rdclass, rdtype, parser, origin) + + +def from_wire( + rdclass: Union[dns.rdataclass.RdataClass, str], + rdtype: Union[dns.rdatatype.RdataType, str], + wire: bytes, + current: int, + rdlen: int, + origin: Optional[dns.name.Name] = None, +) -> Rdata: + """Build an rdata object from wire format + + This function attempts to dynamically load a class which + implements the specified rdata class and type. If there is no + class-and-type-specific implementation, the GenericRdata class + is used. + + Once a class is chosen, its from_wire() class method is called + with the parameters to this function. + + *rdclass*, an ``int``, the rdataclass. + + *rdtype*, an ``int``, the rdatatype. + + *wire*, a ``bytes``, the wire-format message. + + *current*, an ``int``, the offset in wire of the beginning of + the rdata. + + *rdlen*, an ``int``, the length of the wire-format rdata + + *origin*, a ``dns.name.Name`` (or ``None``). If not ``None``, + then names will be relativized to this origin. + + Returns an instance of the chosen Rdata subclass. + """ + parser = dns.wire.Parser(wire, current) + with parser.restrict_to(rdlen): + return from_wire_parser(rdclass, rdtype, parser, origin) + + +class RdatatypeExists(dns.exception.DNSException): + """DNS rdatatype already exists.""" + + supp_kwargs = {"rdclass", "rdtype"} + fmt = ( + "The rdata type with class {rdclass:d} and rdtype {rdtype:d} " + + "already exists." + ) + + +def register_type( + implementation: Any, + rdtype: int, + rdtype_text: str, + is_singleton: bool = False, + rdclass: dns.rdataclass.RdataClass = dns.rdataclass.IN, +) -> None: + """Dynamically register a module to handle an rdatatype. + + *implementation*, a module implementing the type in the usual dnspython + way. + + *rdtype*, an ``int``, the rdatatype to register. + + *rdtype_text*, a ``str``, the textual form of the rdatatype. + + *is_singleton*, a ``bool``, indicating if the type is a singleton (i.e. + RRsets of the type can have only one member.) + + *rdclass*, the rdataclass of the type, or ``dns.rdataclass.ANY`` if + it applies to all classes. + """ + + rdtype = dns.rdatatype.RdataType.make(rdtype) + existing_cls = get_rdata_class(rdclass, rdtype) + if existing_cls != GenericRdata or dns.rdatatype.is_metatype(rdtype): + raise RdatatypeExists(rdclass=rdclass, rdtype=rdtype) + _rdata_classes[(rdclass, rdtype)] = getattr( + implementation, rdtype_text.replace("-", "_") + ) + dns.rdatatype.register_type(rdtype, rdtype_text, is_singleton) diff --git a/.venv/lib/python3.11/site-packages/dns/rdataclass.py b/.venv/lib/python3.11/site-packages/dns/rdataclass.py new file mode 100644 index 0000000..89b85a7 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rdataclass.py @@ -0,0 +1,118 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2001-2017 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +"""DNS Rdata Classes.""" + +import dns.enum +import dns.exception + + +class RdataClass(dns.enum.IntEnum): + """DNS Rdata Class""" + + RESERVED0 = 0 + IN = 1 + INTERNET = IN + CH = 3 + CHAOS = CH + HS = 4 + HESIOD = HS + NONE = 254 + ANY = 255 + + @classmethod + def _maximum(cls): + return 65535 + + @classmethod + def _short_name(cls): + return "class" + + @classmethod + def _prefix(cls): + return "CLASS" + + @classmethod + def _unknown_exception_class(cls): + return UnknownRdataclass + + +_metaclasses = {RdataClass.NONE, RdataClass.ANY} + + +class UnknownRdataclass(dns.exception.DNSException): + """A DNS class is unknown.""" + + +def from_text(text: str) -> RdataClass: + """Convert text into a DNS rdata class value. + + The input text can be a defined DNS RR class mnemonic or + instance of the DNS generic class syntax. + + For example, "IN" and "CLASS1" will both result in a value of 1. + + Raises ``dns.rdatatype.UnknownRdataclass`` if the class is unknown. + + Raises ``ValueError`` if the rdata class value is not >= 0 and <= 65535. + + Returns a ``dns.rdataclass.RdataClass``. + """ + + return RdataClass.from_text(text) + + +def to_text(value: RdataClass) -> str: + """Convert a DNS rdata class value to text. + + If the value has a known mnemonic, it will be used, otherwise the + DNS generic class syntax will be used. + + Raises ``ValueError`` if the rdata class value is not >= 0 and <= 65535. + + Returns a ``str``. + """ + + return RdataClass.to_text(value) + + +def is_metaclass(rdclass: RdataClass) -> bool: + """True if the specified class is a metaclass. + + The currently defined metaclasses are ANY and NONE. + + *rdclass* is a ``dns.rdataclass.RdataClass``. + """ + + if rdclass in _metaclasses: + return True + return False + + +### BEGIN generated RdataClass constants + +RESERVED0 = RdataClass.RESERVED0 +IN = RdataClass.IN +INTERNET = RdataClass.INTERNET +CH = RdataClass.CH +CHAOS = RdataClass.CHAOS +HS = RdataClass.HS +HESIOD = RdataClass.HESIOD +NONE = RdataClass.NONE +ANY = RdataClass.ANY + +### END generated RdataClass constants diff --git a/.venv/lib/python3.11/site-packages/dns/rdataset.py b/.venv/lib/python3.11/site-packages/dns/rdataset.py new file mode 100644 index 0000000..39cab23 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rdataset.py @@ -0,0 +1,512 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2001-2017 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +"""DNS rdatasets (an rdataset is a set of rdatas of a given type and class)""" + +import io +import random +import struct +from typing import Any, Collection, Dict, List, Optional, Union, cast + +import dns.exception +import dns.immutable +import dns.name +import dns.rdata +import dns.rdataclass +import dns.rdatatype +import dns.renderer +import dns.set +import dns.ttl + +# define SimpleSet here for backwards compatibility +SimpleSet = dns.set.Set + + +class DifferingCovers(dns.exception.DNSException): + """An attempt was made to add a DNS SIG/RRSIG whose covered type + is not the same as that of the other rdatas in the rdataset.""" + + +class IncompatibleTypes(dns.exception.DNSException): + """An attempt was made to add DNS RR data of an incompatible type.""" + + +class Rdataset(dns.set.Set): + """A DNS rdataset.""" + + __slots__ = ["rdclass", "rdtype", "covers", "ttl"] + + def __init__( + self, + rdclass: dns.rdataclass.RdataClass, + rdtype: dns.rdatatype.RdataType, + covers: dns.rdatatype.RdataType = dns.rdatatype.NONE, + ttl: int = 0, + ): + """Create a new rdataset of the specified class and type. + + *rdclass*, a ``dns.rdataclass.RdataClass``, the rdataclass. + + *rdtype*, an ``dns.rdatatype.RdataType``, the rdatatype. + + *covers*, an ``dns.rdatatype.RdataType``, the covered rdatatype. + + *ttl*, an ``int``, the TTL. + """ + + super().__init__() + self.rdclass = rdclass + self.rdtype: dns.rdatatype.RdataType = rdtype + self.covers: dns.rdatatype.RdataType = covers + self.ttl = ttl + + def _clone(self): + obj = super()._clone() + obj.rdclass = self.rdclass + obj.rdtype = self.rdtype + obj.covers = self.covers + obj.ttl = self.ttl + return obj + + def update_ttl(self, ttl: int) -> None: + """Perform TTL minimization. + + Set the TTL of the rdataset to be the lesser of the set's current + TTL or the specified TTL. If the set contains no rdatas, set the TTL + to the specified TTL. + + *ttl*, an ``int`` or ``str``. + """ + ttl = dns.ttl.make(ttl) + if len(self) == 0: + self.ttl = ttl + elif ttl < self.ttl: + self.ttl = ttl + + def add( # pylint: disable=arguments-differ,arguments-renamed + self, rd: dns.rdata.Rdata, ttl: Optional[int] = None + ) -> None: + """Add the specified rdata to the rdataset. + + If the optional *ttl* parameter is supplied, then + ``self.update_ttl(ttl)`` will be called prior to adding the rdata. + + *rd*, a ``dns.rdata.Rdata``, the rdata + + *ttl*, an ``int``, the TTL. + + Raises ``dns.rdataset.IncompatibleTypes`` if the type and class + do not match the type and class of the rdataset. + + Raises ``dns.rdataset.DifferingCovers`` if the type is a signature + type and the covered type does not match that of the rdataset. + """ + + # + # If we're adding a signature, do some special handling to + # check that the signature covers the same type as the + # other rdatas in this rdataset. If this is the first rdata + # in the set, initialize the covers field. + # + if self.rdclass != rd.rdclass or self.rdtype != rd.rdtype: + raise IncompatibleTypes + if ttl is not None: + self.update_ttl(ttl) + if self.rdtype == dns.rdatatype.RRSIG or self.rdtype == dns.rdatatype.SIG: + covers = rd.covers() + if len(self) == 0 and self.covers == dns.rdatatype.NONE: + self.covers = covers + elif self.covers != covers: + raise DifferingCovers + if dns.rdatatype.is_singleton(rd.rdtype) and len(self) > 0: + self.clear() + super().add(rd) + + def union_update(self, other): + self.update_ttl(other.ttl) + super().union_update(other) + + def intersection_update(self, other): + self.update_ttl(other.ttl) + super().intersection_update(other) + + def update(self, other): + """Add all rdatas in other to self. + + *other*, a ``dns.rdataset.Rdataset``, the rdataset from which + to update. + """ + + self.update_ttl(other.ttl) + super().update(other) + + def _rdata_repr(self): + def maybe_truncate(s): + if len(s) > 100: + return s[:100] + "..." + return s + + return "[" + ", ".join(f"<{maybe_truncate(str(rr))}>" for rr in self) + "]" + + def __repr__(self): + if self.covers == 0: + ctext = "" + else: + ctext = "(" + dns.rdatatype.to_text(self.covers) + ")" + return ( + "" + ) + + def __str__(self): + return self.to_text() + + def __eq__(self, other): + if not isinstance(other, Rdataset): + return False + if ( + self.rdclass != other.rdclass + or self.rdtype != other.rdtype + or self.covers != other.covers + ): + return False + return super().__eq__(other) + + def __ne__(self, other): + return not self.__eq__(other) + + def to_text( + self, + name: Optional[dns.name.Name] = None, + origin: Optional[dns.name.Name] = None, + relativize: bool = True, + override_rdclass: Optional[dns.rdataclass.RdataClass] = None, + want_comments: bool = False, + **kw: Dict[str, Any], + ) -> str: + """Convert the rdataset into DNS zone file format. + + See ``dns.name.Name.choose_relativity`` for more information + on how *origin* and *relativize* determine the way names + are emitted. + + Any additional keyword arguments are passed on to the rdata + ``to_text()`` method. + + *name*, a ``dns.name.Name``. If name is not ``None``, emit RRs with + *name* as the owner name. + + *origin*, a ``dns.name.Name`` or ``None``, the origin for relative + names. + + *relativize*, a ``bool``. If ``True``, names will be relativized + to *origin*. + + *override_rdclass*, a ``dns.rdataclass.RdataClass`` or ``None``. + If not ``None``, use this class instead of the Rdataset's class. + + *want_comments*, a ``bool``. If ``True``, emit comments for rdata + which have them. The default is ``False``. + """ + + if name is not None: + name = name.choose_relativity(origin, relativize) + ntext = str(name) + pad = " " + else: + ntext = "" + pad = "" + s = io.StringIO() + if override_rdclass is not None: + rdclass = override_rdclass + else: + rdclass = self.rdclass + if len(self) == 0: + # + # Empty rdatasets are used for the question section, and in + # some dynamic updates, so we don't need to print out the TTL + # (which is meaningless anyway). + # + s.write( + f"{ntext}{pad}{dns.rdataclass.to_text(rdclass)} " + f"{dns.rdatatype.to_text(self.rdtype)}\n" + ) + else: + for rd in self: + extra = "" + if want_comments: + if rd.rdcomment: + extra = f" ;{rd.rdcomment}" + s.write( + "%s%s%d %s %s %s%s\n" + % ( + ntext, + pad, + self.ttl, + dns.rdataclass.to_text(rdclass), + dns.rdatatype.to_text(self.rdtype), + rd.to_text(origin=origin, relativize=relativize, **kw), + extra, + ) + ) + # + # We strip off the final \n for the caller's convenience in printing + # + return s.getvalue()[:-1] + + def to_wire( + self, + name: dns.name.Name, + file: Any, + compress: Optional[dns.name.CompressType] = None, + origin: Optional[dns.name.Name] = None, + override_rdclass: Optional[dns.rdataclass.RdataClass] = None, + want_shuffle: bool = True, + ) -> int: + """Convert the rdataset to wire format. + + *name*, a ``dns.name.Name`` is the owner name to use. + + *file* is the file where the name is emitted (typically a + BytesIO file). + + *compress*, a ``dict``, is the compression table to use. If + ``None`` (the default), names will not be compressed. + + *origin* is a ``dns.name.Name`` or ``None``. If the name is + relative and origin is not ``None``, then *origin* will be appended + to it. + + *override_rdclass*, an ``int``, is used as the class instead of the + class of the rdataset. This is useful when rendering rdatasets + associated with dynamic updates. + + *want_shuffle*, a ``bool``. If ``True``, then the order of the + Rdatas within the Rdataset will be shuffled before rendering. + + Returns an ``int``, the number of records emitted. + """ + + if override_rdclass is not None: + rdclass = override_rdclass + want_shuffle = False + else: + rdclass = self.rdclass + if len(self) == 0: + name.to_wire(file, compress, origin) + file.write(struct.pack("!HHIH", self.rdtype, rdclass, 0, 0)) + return 1 + else: + l: Union[Rdataset, List[dns.rdata.Rdata]] + if want_shuffle: + l = list(self) + random.shuffle(l) + else: + l = self + for rd in l: + name.to_wire(file, compress, origin) + file.write(struct.pack("!HHI", self.rdtype, rdclass, self.ttl)) + with dns.renderer.prefixed_length(file, 2): + rd.to_wire(file, compress, origin) + return len(self) + + def match( + self, + rdclass: dns.rdataclass.RdataClass, + rdtype: dns.rdatatype.RdataType, + covers: dns.rdatatype.RdataType, + ) -> bool: + """Returns ``True`` if this rdataset matches the specified class, + type, and covers. + """ + if self.rdclass == rdclass and self.rdtype == rdtype and self.covers == covers: + return True + return False + + def processing_order(self) -> List[dns.rdata.Rdata]: + """Return rdatas in a valid processing order according to the type's + specification. For example, MX records are in preference order from + lowest to highest preferences, with items of the same preference + shuffled. + + For types that do not define a processing order, the rdatas are + simply shuffled. + """ + if len(self) == 0: + return [] + else: + return self[0]._processing_order(iter(self)) + + +@dns.immutable.immutable +class ImmutableRdataset(Rdataset): # lgtm[py/missing-equals] + """An immutable DNS rdataset.""" + + _clone_class = Rdataset + + def __init__(self, rdataset: Rdataset): + """Create an immutable rdataset from the specified rdataset.""" + + super().__init__( + rdataset.rdclass, rdataset.rdtype, rdataset.covers, rdataset.ttl + ) + self.items = dns.immutable.Dict(rdataset.items) + + def update_ttl(self, ttl): + raise TypeError("immutable") + + def add(self, rd, ttl=None): + raise TypeError("immutable") + + def union_update(self, other): + raise TypeError("immutable") + + def intersection_update(self, other): + raise TypeError("immutable") + + def update(self, other): + raise TypeError("immutable") + + def __delitem__(self, i): + raise TypeError("immutable") + + # lgtm complains about these not raising ArithmeticError, but there is + # precedent for overrides of these methods in other classes to raise + # TypeError, and it seems like the better exception. + + def __ior__(self, other): # lgtm[py/unexpected-raise-in-special-method] + raise TypeError("immutable") + + def __iand__(self, other): # lgtm[py/unexpected-raise-in-special-method] + raise TypeError("immutable") + + def __iadd__(self, other): # lgtm[py/unexpected-raise-in-special-method] + raise TypeError("immutable") + + def __isub__(self, other): # lgtm[py/unexpected-raise-in-special-method] + raise TypeError("immutable") + + def clear(self): + raise TypeError("immutable") + + def __copy__(self): + return ImmutableRdataset(super().copy()) + + def copy(self): + return ImmutableRdataset(super().copy()) + + def union(self, other): + return ImmutableRdataset(super().union(other)) + + def intersection(self, other): + return ImmutableRdataset(super().intersection(other)) + + def difference(self, other): + return ImmutableRdataset(super().difference(other)) + + def symmetric_difference(self, other): + return ImmutableRdataset(super().symmetric_difference(other)) + + +def from_text_list( + rdclass: Union[dns.rdataclass.RdataClass, str], + rdtype: Union[dns.rdatatype.RdataType, str], + ttl: int, + text_rdatas: Collection[str], + idna_codec: Optional[dns.name.IDNACodec] = None, + origin: Optional[dns.name.Name] = None, + relativize: bool = True, + relativize_to: Optional[dns.name.Name] = None, +) -> Rdataset: + """Create an rdataset with the specified class, type, and TTL, and with + the specified list of rdatas in text format. + + *idna_codec*, a ``dns.name.IDNACodec``, specifies the IDNA + encoder/decoder to use; if ``None``, the default IDNA 2003 + encoder/decoder is used. + + *origin*, a ``dns.name.Name`` (or ``None``), the + origin to use for relative names. + + *relativize*, a ``bool``. If true, name will be relativized. + + *relativize_to*, a ``dns.name.Name`` (or ``None``), the origin to use + when relativizing names. If not set, the *origin* value will be used. + + Returns a ``dns.rdataset.Rdataset`` object. + """ + + rdclass = dns.rdataclass.RdataClass.make(rdclass) + rdtype = dns.rdatatype.RdataType.make(rdtype) + r = Rdataset(rdclass, rdtype) + r.update_ttl(ttl) + for t in text_rdatas: + rd = dns.rdata.from_text( + r.rdclass, r.rdtype, t, origin, relativize, relativize_to, idna_codec + ) + r.add(rd) + return r + + +def from_text( + rdclass: Union[dns.rdataclass.RdataClass, str], + rdtype: Union[dns.rdatatype.RdataType, str], + ttl: int, + *text_rdatas: Any, +) -> Rdataset: + """Create an rdataset with the specified class, type, and TTL, and with + the specified rdatas in text format. + + Returns a ``dns.rdataset.Rdataset`` object. + """ + + return from_text_list(rdclass, rdtype, ttl, cast(Collection[str], text_rdatas)) + + +def from_rdata_list(ttl: int, rdatas: Collection[dns.rdata.Rdata]) -> Rdataset: + """Create an rdataset with the specified TTL, and with + the specified list of rdata objects. + + Returns a ``dns.rdataset.Rdataset`` object. + """ + + if len(rdatas) == 0: + raise ValueError("rdata list must not be empty") + r = None + for rd in rdatas: + if r is None: + r = Rdataset(rd.rdclass, rd.rdtype) + r.update_ttl(ttl) + r.add(rd) + assert r is not None + return r + + +def from_rdata(ttl: int, *rdatas: Any) -> Rdataset: + """Create an rdataset with the specified TTL, and with + the specified rdata objects. + + Returns a ``dns.rdataset.Rdataset`` object. + """ + + return from_rdata_list(ttl, cast(Collection[dns.rdata.Rdata], rdatas)) diff --git a/.venv/lib/python3.11/site-packages/dns/rdatatype.py b/.venv/lib/python3.11/site-packages/dns/rdatatype.py new file mode 100644 index 0000000..aa9e561 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rdatatype.py @@ -0,0 +1,336 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2001-2017 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +"""DNS Rdata Types.""" + +from typing import Dict + +import dns.enum +import dns.exception + + +class RdataType(dns.enum.IntEnum): + """DNS Rdata Type""" + + TYPE0 = 0 + NONE = 0 + A = 1 + NS = 2 + MD = 3 + MF = 4 + CNAME = 5 + SOA = 6 + MB = 7 + MG = 8 + MR = 9 + NULL = 10 + WKS = 11 + PTR = 12 + HINFO = 13 + MINFO = 14 + MX = 15 + TXT = 16 + RP = 17 + AFSDB = 18 + X25 = 19 + ISDN = 20 + RT = 21 + NSAP = 22 + NSAP_PTR = 23 + SIG = 24 + KEY = 25 + PX = 26 + GPOS = 27 + AAAA = 28 + LOC = 29 + NXT = 30 + SRV = 33 + NAPTR = 35 + KX = 36 + CERT = 37 + A6 = 38 + DNAME = 39 + OPT = 41 + APL = 42 + DS = 43 + SSHFP = 44 + IPSECKEY = 45 + RRSIG = 46 + NSEC = 47 + DNSKEY = 48 + DHCID = 49 + NSEC3 = 50 + NSEC3PARAM = 51 + TLSA = 52 + SMIMEA = 53 + HIP = 55 + NINFO = 56 + CDS = 59 + CDNSKEY = 60 + OPENPGPKEY = 61 + CSYNC = 62 + ZONEMD = 63 + SVCB = 64 + HTTPS = 65 + SPF = 99 + UNSPEC = 103 + NID = 104 + L32 = 105 + L64 = 106 + LP = 107 + EUI48 = 108 + EUI64 = 109 + TKEY = 249 + TSIG = 250 + IXFR = 251 + AXFR = 252 + MAILB = 253 + MAILA = 254 + ANY = 255 + URI = 256 + CAA = 257 + AVC = 258 + AMTRELAY = 260 + RESINFO = 261 + WALLET = 262 + TA = 32768 + DLV = 32769 + + @classmethod + def _maximum(cls): + return 65535 + + @classmethod + def _short_name(cls): + return "type" + + @classmethod + def _prefix(cls): + return "TYPE" + + @classmethod + def _extra_from_text(cls, text): + if text.find("-") >= 0: + try: + return cls[text.replace("-", "_")] + except KeyError: # pragma: no cover + pass + return _registered_by_text.get(text) + + @classmethod + def _extra_to_text(cls, value, current_text): + if current_text is None: + return _registered_by_value.get(value) + if current_text.find("_") >= 0: + return current_text.replace("_", "-") + return current_text + + @classmethod + def _unknown_exception_class(cls): + return UnknownRdatatype + + +_registered_by_text: Dict[str, RdataType] = {} +_registered_by_value: Dict[RdataType, str] = {} + +_metatypes = {RdataType.OPT} + +_singletons = { + RdataType.SOA, + RdataType.NXT, + RdataType.DNAME, + RdataType.NSEC, + RdataType.CNAME, +} + + +class UnknownRdatatype(dns.exception.DNSException): + """DNS resource record type is unknown.""" + + +def from_text(text: str) -> RdataType: + """Convert text into a DNS rdata type value. + + The input text can be a defined DNS RR type mnemonic or + instance of the DNS generic type syntax. + + For example, "NS" and "TYPE2" will both result in a value of 2. + + Raises ``dns.rdatatype.UnknownRdatatype`` if the type is unknown. + + Raises ``ValueError`` if the rdata type value is not >= 0 and <= 65535. + + Returns a ``dns.rdatatype.RdataType``. + """ + + return RdataType.from_text(text) + + +def to_text(value: RdataType) -> str: + """Convert a DNS rdata type value to text. + + If the value has a known mnemonic, it will be used, otherwise the + DNS generic type syntax will be used. + + Raises ``ValueError`` if the rdata type value is not >= 0 and <= 65535. + + Returns a ``str``. + """ + + return RdataType.to_text(value) + + +def is_metatype(rdtype: RdataType) -> bool: + """True if the specified type is a metatype. + + *rdtype* is a ``dns.rdatatype.RdataType``. + + The currently defined metatypes are TKEY, TSIG, IXFR, AXFR, MAILA, + MAILB, ANY, and OPT. + + Returns a ``bool``. + """ + + return (256 > rdtype >= 128) or rdtype in _metatypes + + +def is_singleton(rdtype: RdataType) -> bool: + """Is the specified type a singleton type? + + Singleton types can only have a single rdata in an rdataset, or a single + RR in an RRset. + + The currently defined singleton types are CNAME, DNAME, NSEC, NXT, and + SOA. + + *rdtype* is an ``int``. + + Returns a ``bool``. + """ + + if rdtype in _singletons: + return True + return False + + +# pylint: disable=redefined-outer-name +def register_type( + rdtype: RdataType, rdtype_text: str, is_singleton: bool = False +) -> None: + """Dynamically register an rdatatype. + + *rdtype*, a ``dns.rdatatype.RdataType``, the rdatatype to register. + + *rdtype_text*, a ``str``, the textual form of the rdatatype. + + *is_singleton*, a ``bool``, indicating if the type is a singleton (i.e. + RRsets of the type can have only one member.) + """ + + _registered_by_text[rdtype_text] = rdtype + _registered_by_value[rdtype] = rdtype_text + if is_singleton: + _singletons.add(rdtype) + + +### BEGIN generated RdataType constants + +TYPE0 = RdataType.TYPE0 +NONE = RdataType.NONE +A = RdataType.A +NS = RdataType.NS +MD = RdataType.MD +MF = RdataType.MF +CNAME = RdataType.CNAME +SOA = RdataType.SOA +MB = RdataType.MB +MG = RdataType.MG +MR = RdataType.MR +NULL = RdataType.NULL +WKS = RdataType.WKS +PTR = RdataType.PTR +HINFO = RdataType.HINFO +MINFO = RdataType.MINFO +MX = RdataType.MX +TXT = RdataType.TXT +RP = RdataType.RP +AFSDB = RdataType.AFSDB +X25 = RdataType.X25 +ISDN = RdataType.ISDN +RT = RdataType.RT +NSAP = RdataType.NSAP +NSAP_PTR = RdataType.NSAP_PTR +SIG = RdataType.SIG +KEY = RdataType.KEY +PX = RdataType.PX +GPOS = RdataType.GPOS +AAAA = RdataType.AAAA +LOC = RdataType.LOC +NXT = RdataType.NXT +SRV = RdataType.SRV +NAPTR = RdataType.NAPTR +KX = RdataType.KX +CERT = RdataType.CERT +A6 = RdataType.A6 +DNAME = RdataType.DNAME +OPT = RdataType.OPT +APL = RdataType.APL +DS = RdataType.DS +SSHFP = RdataType.SSHFP +IPSECKEY = RdataType.IPSECKEY +RRSIG = RdataType.RRSIG +NSEC = RdataType.NSEC +DNSKEY = RdataType.DNSKEY +DHCID = RdataType.DHCID +NSEC3 = RdataType.NSEC3 +NSEC3PARAM = RdataType.NSEC3PARAM +TLSA = RdataType.TLSA +SMIMEA = RdataType.SMIMEA +HIP = RdataType.HIP +NINFO = RdataType.NINFO +CDS = RdataType.CDS +CDNSKEY = RdataType.CDNSKEY +OPENPGPKEY = RdataType.OPENPGPKEY +CSYNC = RdataType.CSYNC +ZONEMD = RdataType.ZONEMD +SVCB = RdataType.SVCB +HTTPS = RdataType.HTTPS +SPF = RdataType.SPF +UNSPEC = RdataType.UNSPEC +NID = RdataType.NID +L32 = RdataType.L32 +L64 = RdataType.L64 +LP = RdataType.LP +EUI48 = RdataType.EUI48 +EUI64 = RdataType.EUI64 +TKEY = RdataType.TKEY +TSIG = RdataType.TSIG +IXFR = RdataType.IXFR +AXFR = RdataType.AXFR +MAILB = RdataType.MAILB +MAILA = RdataType.MAILA +ANY = RdataType.ANY +URI = RdataType.URI +CAA = RdataType.CAA +AVC = RdataType.AVC +AMTRELAY = RdataType.AMTRELAY +RESINFO = RdataType.RESINFO +WALLET = RdataType.WALLET +TA = RdataType.TA +DLV = RdataType.DLV + +### END generated RdataType constants diff --git a/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/AFSDB.py b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/AFSDB.py new file mode 100644 index 0000000..06a3b97 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/AFSDB.py @@ -0,0 +1,45 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2003-2007, 2009-2011 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +import dns.immutable +import dns.rdtypes.mxbase + + +@dns.immutable.immutable +class AFSDB(dns.rdtypes.mxbase.UncompressedDowncasingMX): + """AFSDB record""" + + # Use the property mechanism to make "subtype" an alias for the + # "preference" attribute, and "hostname" an alias for the "exchange" + # attribute. + # + # This lets us inherit the UncompressedMX implementation but lets + # the caller use appropriate attribute names for the rdata type. + # + # We probably lose some performance vs. a cut-and-paste + # implementation, but this way we don't copy code, and that's + # good. + + @property + def subtype(self): + "the AFSDB subtype" + return self.preference + + @property + def hostname(self): + "the AFSDB hostname" + return self.exchange diff --git a/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/AMTRELAY.py b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/AMTRELAY.py new file mode 100644 index 0000000..ed2b072 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/AMTRELAY.py @@ -0,0 +1,91 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2006, 2007, 2009-2011 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +import struct + +import dns.exception +import dns.immutable +import dns.rdtypes.util + + +class Relay(dns.rdtypes.util.Gateway): + name = "AMTRELAY relay" + + @property + def relay(self): + return self.gateway + + +@dns.immutable.immutable +class AMTRELAY(dns.rdata.Rdata): + """AMTRELAY record""" + + # see: RFC 8777 + + __slots__ = ["precedence", "discovery_optional", "relay_type", "relay"] + + def __init__( + self, rdclass, rdtype, precedence, discovery_optional, relay_type, relay + ): + super().__init__(rdclass, rdtype) + relay = Relay(relay_type, relay) + self.precedence = self._as_uint8(precedence) + self.discovery_optional = self._as_bool(discovery_optional) + self.relay_type = relay.type + self.relay = relay.relay + + def to_text(self, origin=None, relativize=True, **kw): + relay = Relay(self.relay_type, self.relay).to_text(origin, relativize) + return "%d %d %d %s" % ( + self.precedence, + self.discovery_optional, + self.relay_type, + relay, + ) + + @classmethod + def from_text( + cls, rdclass, rdtype, tok, origin=None, relativize=True, relativize_to=None + ): + precedence = tok.get_uint8() + discovery_optional = tok.get_uint8() + if discovery_optional > 1: + raise dns.exception.SyntaxError("expecting 0 or 1") + discovery_optional = bool(discovery_optional) + relay_type = tok.get_uint8() + if relay_type > 0x7F: + raise dns.exception.SyntaxError("expecting an integer <= 127") + relay = Relay.from_text(relay_type, tok, origin, relativize, relativize_to) + return cls( + rdclass, rdtype, precedence, discovery_optional, relay_type, relay.relay + ) + + def _to_wire(self, file, compress=None, origin=None, canonicalize=False): + relay_type = self.relay_type | (self.discovery_optional << 7) + header = struct.pack("!BB", self.precedence, relay_type) + file.write(header) + Relay(self.relay_type, self.relay).to_wire(file, compress, origin, canonicalize) + + @classmethod + def from_wire_parser(cls, rdclass, rdtype, parser, origin=None): + (precedence, relay_type) = parser.get_struct("!BB") + discovery_optional = bool(relay_type >> 7) + relay_type &= 0x7F + relay = Relay.from_wire_parser(relay_type, parser, origin) + return cls( + rdclass, rdtype, precedence, discovery_optional, relay_type, relay.relay + ) diff --git a/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/AVC.py b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/AVC.py new file mode 100644 index 0000000..a27ae2d --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/AVC.py @@ -0,0 +1,26 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2016 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +import dns.immutable +import dns.rdtypes.txtbase + + +@dns.immutable.immutable +class AVC(dns.rdtypes.txtbase.TXTBase): + """AVC record""" + + # See: IANA dns parameters for AVC diff --git a/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/CAA.py b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/CAA.py new file mode 100644 index 0000000..2e6a7e7 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/CAA.py @@ -0,0 +1,71 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2003-2007, 2009-2011 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +import struct + +import dns.exception +import dns.immutable +import dns.rdata +import dns.tokenizer + + +@dns.immutable.immutable +class CAA(dns.rdata.Rdata): + """CAA (Certification Authority Authorization) record""" + + # see: RFC 6844 + + __slots__ = ["flags", "tag", "value"] + + def __init__(self, rdclass, rdtype, flags, tag, value): + super().__init__(rdclass, rdtype) + self.flags = self._as_uint8(flags) + self.tag = self._as_bytes(tag, True, 255) + if not tag.isalnum(): + raise ValueError("tag is not alphanumeric") + self.value = self._as_bytes(value) + + def to_text(self, origin=None, relativize=True, **kw): + return '%u %s "%s"' % ( + self.flags, + dns.rdata._escapify(self.tag), + dns.rdata._escapify(self.value), + ) + + @classmethod + def from_text( + cls, rdclass, rdtype, tok, origin=None, relativize=True, relativize_to=None + ): + flags = tok.get_uint8() + tag = tok.get_string().encode() + value = tok.get_string().encode() + return cls(rdclass, rdtype, flags, tag, value) + + def _to_wire(self, file, compress=None, origin=None, canonicalize=False): + file.write(struct.pack("!B", self.flags)) + l = len(self.tag) + assert l < 256 + file.write(struct.pack("!B", l)) + file.write(self.tag) + file.write(self.value) + + @classmethod + def from_wire_parser(cls, rdclass, rdtype, parser, origin=None): + flags = parser.get_uint8() + tag = parser.get_counted_bytes() + value = parser.get_remaining() + return cls(rdclass, rdtype, flags, tag, value) diff --git a/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/CDNSKEY.py b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/CDNSKEY.py new file mode 100644 index 0000000..b613409 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/CDNSKEY.py @@ -0,0 +1,33 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2004-2007, 2009-2011 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +import dns.immutable +import dns.rdtypes.dnskeybase # lgtm[py/import-and-import-from] + +# pylint: disable=unused-import +from dns.rdtypes.dnskeybase import ( # noqa: F401 lgtm[py/unused-import] + REVOKE, + SEP, + ZONE, +) + +# pylint: enable=unused-import + + +@dns.immutable.immutable +class CDNSKEY(dns.rdtypes.dnskeybase.DNSKEYBase): + """CDNSKEY record""" diff --git a/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/CDS.py b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/CDS.py new file mode 100644 index 0000000..8312b97 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/CDS.py @@ -0,0 +1,29 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2003-2007, 2009-2011 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +import dns.immutable +import dns.rdtypes.dsbase + + +@dns.immutable.immutable +class CDS(dns.rdtypes.dsbase.DSBase): + """CDS record""" + + _digest_length_by_type = { + **dns.rdtypes.dsbase.DSBase._digest_length_by_type, + 0: 1, # delete, RFC 8078 Sec. 4 (including Errata ID 5049) + } diff --git a/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/CERT.py b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/CERT.py new file mode 100644 index 0000000..f369cc8 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/CERT.py @@ -0,0 +1,116 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2003-2007, 2009-2011 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +import base64 +import struct + +import dns.dnssectypes +import dns.exception +import dns.immutable +import dns.rdata +import dns.tokenizer + +_ctype_by_value = { + 1: "PKIX", + 2: "SPKI", + 3: "PGP", + 4: "IPKIX", + 5: "ISPKI", + 6: "IPGP", + 7: "ACPKIX", + 8: "IACPKIX", + 253: "URI", + 254: "OID", +} + +_ctype_by_name = { + "PKIX": 1, + "SPKI": 2, + "PGP": 3, + "IPKIX": 4, + "ISPKI": 5, + "IPGP": 6, + "ACPKIX": 7, + "IACPKIX": 8, + "URI": 253, + "OID": 254, +} + + +def _ctype_from_text(what): + v = _ctype_by_name.get(what) + if v is not None: + return v + return int(what) + + +def _ctype_to_text(what): + v = _ctype_by_value.get(what) + if v is not None: + return v + return str(what) + + +@dns.immutable.immutable +class CERT(dns.rdata.Rdata): + """CERT record""" + + # see RFC 4398 + + __slots__ = ["certificate_type", "key_tag", "algorithm", "certificate"] + + def __init__( + self, rdclass, rdtype, certificate_type, key_tag, algorithm, certificate + ): + super().__init__(rdclass, rdtype) + self.certificate_type = self._as_uint16(certificate_type) + self.key_tag = self._as_uint16(key_tag) + self.algorithm = self._as_uint8(algorithm) + self.certificate = self._as_bytes(certificate) + + def to_text(self, origin=None, relativize=True, **kw): + certificate_type = _ctype_to_text(self.certificate_type) + return "%s %d %s %s" % ( + certificate_type, + self.key_tag, + dns.dnssectypes.Algorithm.to_text(self.algorithm), + dns.rdata._base64ify(self.certificate, **kw), + ) + + @classmethod + def from_text( + cls, rdclass, rdtype, tok, origin=None, relativize=True, relativize_to=None + ): + certificate_type = _ctype_from_text(tok.get_string()) + key_tag = tok.get_uint16() + algorithm = dns.dnssectypes.Algorithm.from_text(tok.get_string()) + b64 = tok.concatenate_remaining_identifiers().encode() + certificate = base64.b64decode(b64) + return cls(rdclass, rdtype, certificate_type, key_tag, algorithm, certificate) + + def _to_wire(self, file, compress=None, origin=None, canonicalize=False): + prefix = struct.pack( + "!HHB", self.certificate_type, self.key_tag, self.algorithm + ) + file.write(prefix) + file.write(self.certificate) + + @classmethod + def from_wire_parser(cls, rdclass, rdtype, parser, origin=None): + (certificate_type, key_tag, algorithm) = parser.get_struct("!HHB") + certificate = parser.get_remaining() + return cls(rdclass, rdtype, certificate_type, key_tag, algorithm, certificate) diff --git a/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/CNAME.py b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/CNAME.py new file mode 100644 index 0000000..665e407 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/CNAME.py @@ -0,0 +1,28 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2003-2007, 2009-2011 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +import dns.immutable +import dns.rdtypes.nsbase + + +@dns.immutable.immutable +class CNAME(dns.rdtypes.nsbase.NSBase): + """CNAME record + + Note: although CNAME is officially a singleton type, dnspython allows + non-singleton CNAME rdatasets because such sets have been commonly + used by BIND and other nameservers for load balancing.""" diff --git a/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/CSYNC.py b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/CSYNC.py new file mode 100644 index 0000000..2f972f6 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/CSYNC.py @@ -0,0 +1,68 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2004-2007, 2009-2011, 2016 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +import struct + +import dns.exception +import dns.immutable +import dns.name +import dns.rdata +import dns.rdatatype +import dns.rdtypes.util + + +@dns.immutable.immutable +class Bitmap(dns.rdtypes.util.Bitmap): + type_name = "CSYNC" + + +@dns.immutable.immutable +class CSYNC(dns.rdata.Rdata): + """CSYNC record""" + + __slots__ = ["serial", "flags", "windows"] + + def __init__(self, rdclass, rdtype, serial, flags, windows): + super().__init__(rdclass, rdtype) + self.serial = self._as_uint32(serial) + self.flags = self._as_uint16(flags) + if not isinstance(windows, Bitmap): + windows = Bitmap(windows) + self.windows = tuple(windows.windows) + + def to_text(self, origin=None, relativize=True, **kw): + text = Bitmap(self.windows).to_text() + return "%d %d%s" % (self.serial, self.flags, text) + + @classmethod + def from_text( + cls, rdclass, rdtype, tok, origin=None, relativize=True, relativize_to=None + ): + serial = tok.get_uint32() + flags = tok.get_uint16() + bitmap = Bitmap.from_text(tok) + return cls(rdclass, rdtype, serial, flags, bitmap) + + def _to_wire(self, file, compress=None, origin=None, canonicalize=False): + file.write(struct.pack("!IH", self.serial, self.flags)) + Bitmap(self.windows).to_wire(file) + + @classmethod + def from_wire_parser(cls, rdclass, rdtype, parser, origin=None): + (serial, flags) = parser.get_struct("!IH") + bitmap = Bitmap.from_wire_parser(parser) + return cls(rdclass, rdtype, serial, flags, bitmap) diff --git a/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/DLV.py b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/DLV.py new file mode 100644 index 0000000..6c134f1 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/DLV.py @@ -0,0 +1,24 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2009-2011 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +import dns.immutable +import dns.rdtypes.dsbase + + +@dns.immutable.immutable +class DLV(dns.rdtypes.dsbase.DSBase): + """DLV record""" diff --git a/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/DNAME.py b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/DNAME.py new file mode 100644 index 0000000..bbf9186 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/DNAME.py @@ -0,0 +1,27 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2003-2007, 2009-2011 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +import dns.immutable +import dns.rdtypes.nsbase + + +@dns.immutable.immutable +class DNAME(dns.rdtypes.nsbase.UncompressedNS): + """DNAME record""" + + def _to_wire(self, file, compress=None, origin=None, canonicalize=False): + self.target.to_wire(file, None, origin, canonicalize) diff --git a/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/DNSKEY.py b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/DNSKEY.py new file mode 100644 index 0000000..6d961a9 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/DNSKEY.py @@ -0,0 +1,33 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2004-2007, 2009-2011 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +import dns.immutable +import dns.rdtypes.dnskeybase # lgtm[py/import-and-import-from] + +# pylint: disable=unused-import +from dns.rdtypes.dnskeybase import ( # noqa: F401 lgtm[py/unused-import] + REVOKE, + SEP, + ZONE, +) + +# pylint: enable=unused-import + + +@dns.immutable.immutable +class DNSKEY(dns.rdtypes.dnskeybase.DNSKEYBase): + """DNSKEY record""" diff --git a/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/DS.py b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/DS.py new file mode 100644 index 0000000..58b3108 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/DS.py @@ -0,0 +1,24 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2003-2007, 2009-2011 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +import dns.immutable +import dns.rdtypes.dsbase + + +@dns.immutable.immutable +class DS(dns.rdtypes.dsbase.DSBase): + """DS record""" diff --git a/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/EUI48.py b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/EUI48.py new file mode 100644 index 0000000..c843be5 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/EUI48.py @@ -0,0 +1,30 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2015 Red Hat, Inc. +# Author: Petr Spacek +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED 'AS IS' AND RED HAT DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +import dns.immutable +import dns.rdtypes.euibase + + +@dns.immutable.immutable +class EUI48(dns.rdtypes.euibase.EUIBase): + """EUI48 record""" + + # see: rfc7043.txt + + byte_len = 6 # 0123456789ab (in hex) + text_len = byte_len * 3 - 1 # 01-23-45-67-89-ab diff --git a/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/EUI64.py b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/EUI64.py new file mode 100644 index 0000000..f6d7e25 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/EUI64.py @@ -0,0 +1,30 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2015 Red Hat, Inc. +# Author: Petr Spacek +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED 'AS IS' AND RED HAT DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +import dns.immutable +import dns.rdtypes.euibase + + +@dns.immutable.immutable +class EUI64(dns.rdtypes.euibase.EUIBase): + """EUI64 record""" + + # see: rfc7043.txt + + byte_len = 8 # 0123456789abcdef (in hex) + text_len = byte_len * 3 - 1 # 01-23-45-67-89-ab-cd-ef diff --git a/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/GPOS.py b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/GPOS.py new file mode 100644 index 0000000..d79f4a0 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/GPOS.py @@ -0,0 +1,126 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2003-2007, 2009-2011 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +import struct + +import dns.exception +import dns.immutable +import dns.rdata +import dns.tokenizer + + +def _validate_float_string(what): + if len(what) == 0: + raise dns.exception.FormError + if what[0] == b"-"[0] or what[0] == b"+"[0]: + what = what[1:] + if what.isdigit(): + return + try: + (left, right) = what.split(b".") + except ValueError: + raise dns.exception.FormError + if left == b"" and right == b"": + raise dns.exception.FormError + if not left == b"" and not left.decode().isdigit(): + raise dns.exception.FormError + if not right == b"" and not right.decode().isdigit(): + raise dns.exception.FormError + + +@dns.immutable.immutable +class GPOS(dns.rdata.Rdata): + """GPOS record""" + + # see: RFC 1712 + + __slots__ = ["latitude", "longitude", "altitude"] + + def __init__(self, rdclass, rdtype, latitude, longitude, altitude): + super().__init__(rdclass, rdtype) + if isinstance(latitude, float) or isinstance(latitude, int): + latitude = str(latitude) + if isinstance(longitude, float) or isinstance(longitude, int): + longitude = str(longitude) + if isinstance(altitude, float) or isinstance(altitude, int): + altitude = str(altitude) + latitude = self._as_bytes(latitude, True, 255) + longitude = self._as_bytes(longitude, True, 255) + altitude = self._as_bytes(altitude, True, 255) + _validate_float_string(latitude) + _validate_float_string(longitude) + _validate_float_string(altitude) + self.latitude = latitude + self.longitude = longitude + self.altitude = altitude + flat = self.float_latitude + if flat < -90.0 or flat > 90.0: + raise dns.exception.FormError("bad latitude") + flong = self.float_longitude + if flong < -180.0 or flong > 180.0: + raise dns.exception.FormError("bad longitude") + + def to_text(self, origin=None, relativize=True, **kw): + return ( + f"{self.latitude.decode()} {self.longitude.decode()} " + f"{self.altitude.decode()}" + ) + + @classmethod + def from_text( + cls, rdclass, rdtype, tok, origin=None, relativize=True, relativize_to=None + ): + latitude = tok.get_string() + longitude = tok.get_string() + altitude = tok.get_string() + return cls(rdclass, rdtype, latitude, longitude, altitude) + + def _to_wire(self, file, compress=None, origin=None, canonicalize=False): + l = len(self.latitude) + assert l < 256 + file.write(struct.pack("!B", l)) + file.write(self.latitude) + l = len(self.longitude) + assert l < 256 + file.write(struct.pack("!B", l)) + file.write(self.longitude) + l = len(self.altitude) + assert l < 256 + file.write(struct.pack("!B", l)) + file.write(self.altitude) + + @classmethod + def from_wire_parser(cls, rdclass, rdtype, parser, origin=None): + latitude = parser.get_counted_bytes() + longitude = parser.get_counted_bytes() + altitude = parser.get_counted_bytes() + return cls(rdclass, rdtype, latitude, longitude, altitude) + + @property + def float_latitude(self): + "latitude as a floating point value" + return float(self.latitude) + + @property + def float_longitude(self): + "longitude as a floating point value" + return float(self.longitude) + + @property + def float_altitude(self): + "altitude as a floating point value" + return float(self.altitude) diff --git a/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/HINFO.py b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/HINFO.py new file mode 100644 index 0000000..06ad348 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/HINFO.py @@ -0,0 +1,64 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2003-2007, 2009-2011 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +import struct + +import dns.exception +import dns.immutable +import dns.rdata +import dns.tokenizer + + +@dns.immutable.immutable +class HINFO(dns.rdata.Rdata): + """HINFO record""" + + # see: RFC 1035 + + __slots__ = ["cpu", "os"] + + def __init__(self, rdclass, rdtype, cpu, os): + super().__init__(rdclass, rdtype) + self.cpu = self._as_bytes(cpu, True, 255) + self.os = self._as_bytes(os, True, 255) + + def to_text(self, origin=None, relativize=True, **kw): + return f'"{dns.rdata._escapify(self.cpu)}" "{dns.rdata._escapify(self.os)}"' + + @classmethod + def from_text( + cls, rdclass, rdtype, tok, origin=None, relativize=True, relativize_to=None + ): + cpu = tok.get_string(max_length=255) + os = tok.get_string(max_length=255) + return cls(rdclass, rdtype, cpu, os) + + def _to_wire(self, file, compress=None, origin=None, canonicalize=False): + l = len(self.cpu) + assert l < 256 + file.write(struct.pack("!B", l)) + file.write(self.cpu) + l = len(self.os) + assert l < 256 + file.write(struct.pack("!B", l)) + file.write(self.os) + + @classmethod + def from_wire_parser(cls, rdclass, rdtype, parser, origin=None): + cpu = parser.get_counted_bytes() + os = parser.get_counted_bytes() + return cls(rdclass, rdtype, cpu, os) diff --git a/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/HIP.py b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/HIP.py new file mode 100644 index 0000000..f3157da --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/HIP.py @@ -0,0 +1,85 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2010, 2011 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +import base64 +import binascii +import struct + +import dns.exception +import dns.immutable +import dns.rdata +import dns.rdatatype + + +@dns.immutable.immutable +class HIP(dns.rdata.Rdata): + """HIP record""" + + # see: RFC 5205 + + __slots__ = ["hit", "algorithm", "key", "servers"] + + def __init__(self, rdclass, rdtype, hit, algorithm, key, servers): + super().__init__(rdclass, rdtype) + self.hit = self._as_bytes(hit, True, 255) + self.algorithm = self._as_uint8(algorithm) + self.key = self._as_bytes(key, True) + self.servers = self._as_tuple(servers, self._as_name) + + def to_text(self, origin=None, relativize=True, **kw): + hit = binascii.hexlify(self.hit).decode() + key = base64.b64encode(self.key).replace(b"\n", b"").decode() + text = "" + servers = [] + for server in self.servers: + servers.append(server.choose_relativity(origin, relativize)) + if len(servers) > 0: + text += " " + " ".join(x.to_unicode() for x in servers) + return "%u %s %s%s" % (self.algorithm, hit, key, text) + + @classmethod + def from_text( + cls, rdclass, rdtype, tok, origin=None, relativize=True, relativize_to=None + ): + algorithm = tok.get_uint8() + hit = binascii.unhexlify(tok.get_string().encode()) + key = base64.b64decode(tok.get_string().encode()) + servers = [] + for token in tok.get_remaining(): + server = tok.as_name(token, origin, relativize, relativize_to) + servers.append(server) + return cls(rdclass, rdtype, hit, algorithm, key, servers) + + def _to_wire(self, file, compress=None, origin=None, canonicalize=False): + lh = len(self.hit) + lk = len(self.key) + file.write(struct.pack("!BBH", lh, self.algorithm, lk)) + file.write(self.hit) + file.write(self.key) + for server in self.servers: + server.to_wire(file, None, origin, False) + + @classmethod + def from_wire_parser(cls, rdclass, rdtype, parser, origin=None): + (lh, algorithm, lk) = parser.get_struct("!BBH") + hit = parser.get_bytes(lh) + key = parser.get_bytes(lk) + servers = [] + while parser.remaining() > 0: + server = parser.get_name(origin) + servers.append(server) + return cls(rdclass, rdtype, hit, algorithm, key, servers) diff --git a/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/ISDN.py b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/ISDN.py new file mode 100644 index 0000000..6428a0a --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/ISDN.py @@ -0,0 +1,78 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2003-2007, 2009-2011 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +import struct + +import dns.exception +import dns.immutable +import dns.rdata +import dns.tokenizer + + +@dns.immutable.immutable +class ISDN(dns.rdata.Rdata): + """ISDN record""" + + # see: RFC 1183 + + __slots__ = ["address", "subaddress"] + + def __init__(self, rdclass, rdtype, address, subaddress): + super().__init__(rdclass, rdtype) + self.address = self._as_bytes(address, True, 255) + self.subaddress = self._as_bytes(subaddress, True, 255) + + def to_text(self, origin=None, relativize=True, **kw): + if self.subaddress: + return ( + f'"{dns.rdata._escapify(self.address)}" ' + f'"{dns.rdata._escapify(self.subaddress)}"' + ) + else: + return f'"{dns.rdata._escapify(self.address)}"' + + @classmethod + def from_text( + cls, rdclass, rdtype, tok, origin=None, relativize=True, relativize_to=None + ): + address = tok.get_string() + tokens = tok.get_remaining(max_tokens=1) + if len(tokens) >= 1: + subaddress = tokens[0].unescape().value + else: + subaddress = "" + return cls(rdclass, rdtype, address, subaddress) + + def _to_wire(self, file, compress=None, origin=None, canonicalize=False): + l = len(self.address) + assert l < 256 + file.write(struct.pack("!B", l)) + file.write(self.address) + l = len(self.subaddress) + if l > 0: + assert l < 256 + file.write(struct.pack("!B", l)) + file.write(self.subaddress) + + @classmethod + def from_wire_parser(cls, rdclass, rdtype, parser, origin=None): + address = parser.get_counted_bytes() + if parser.remaining() > 0: + subaddress = parser.get_counted_bytes() + else: + subaddress = b"" + return cls(rdclass, rdtype, address, subaddress) diff --git a/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/L32.py b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/L32.py new file mode 100644 index 0000000..09804c2 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/L32.py @@ -0,0 +1,41 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +import struct + +import dns.immutable +import dns.rdata + + +@dns.immutable.immutable +class L32(dns.rdata.Rdata): + """L32 record""" + + # see: rfc6742.txt + + __slots__ = ["preference", "locator32"] + + def __init__(self, rdclass, rdtype, preference, locator32): + super().__init__(rdclass, rdtype) + self.preference = self._as_uint16(preference) + self.locator32 = self._as_ipv4_address(locator32) + + def to_text(self, origin=None, relativize=True, **kw): + return f"{self.preference} {self.locator32}" + + @classmethod + def from_text( + cls, rdclass, rdtype, tok, origin=None, relativize=True, relativize_to=None + ): + preference = tok.get_uint16() + nodeid = tok.get_identifier() + return cls(rdclass, rdtype, preference, nodeid) + + def _to_wire(self, file, compress=None, origin=None, canonicalize=False): + file.write(struct.pack("!H", self.preference)) + file.write(dns.ipv4.inet_aton(self.locator32)) + + @classmethod + def from_wire_parser(cls, rdclass, rdtype, parser, origin=None): + preference = parser.get_uint16() + locator32 = parser.get_remaining() + return cls(rdclass, rdtype, preference, locator32) diff --git a/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/L64.py b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/L64.py new file mode 100644 index 0000000..fb76808 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/L64.py @@ -0,0 +1,47 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +import struct + +import dns.immutable +import dns.rdtypes.util + + +@dns.immutable.immutable +class L64(dns.rdata.Rdata): + """L64 record""" + + # see: rfc6742.txt + + __slots__ = ["preference", "locator64"] + + def __init__(self, rdclass, rdtype, preference, locator64): + super().__init__(rdclass, rdtype) + self.preference = self._as_uint16(preference) + if isinstance(locator64, bytes): + if len(locator64) != 8: + raise ValueError("invalid locator64") + self.locator64 = dns.rdata._hexify(locator64, 4, b":") + else: + dns.rdtypes.util.parse_formatted_hex(locator64, 4, 4, ":") + self.locator64 = locator64 + + def to_text(self, origin=None, relativize=True, **kw): + return f"{self.preference} {self.locator64}" + + @classmethod + def from_text( + cls, rdclass, rdtype, tok, origin=None, relativize=True, relativize_to=None + ): + preference = tok.get_uint16() + locator64 = tok.get_identifier() + return cls(rdclass, rdtype, preference, locator64) + + def _to_wire(self, file, compress=None, origin=None, canonicalize=False): + file.write(struct.pack("!H", self.preference)) + file.write(dns.rdtypes.util.parse_formatted_hex(self.locator64, 4, 4, ":")) + + @classmethod + def from_wire_parser(cls, rdclass, rdtype, parser, origin=None): + preference = parser.get_uint16() + locator64 = parser.get_remaining() + return cls(rdclass, rdtype, preference, locator64) diff --git a/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/LOC.py b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/LOC.py new file mode 100644 index 0000000..1153cf0 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/LOC.py @@ -0,0 +1,353 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2003-2007, 2009-2011 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +import struct + +import dns.exception +import dns.immutable +import dns.rdata + +_pows = tuple(10**i for i in range(0, 11)) + +# default values are in centimeters +_default_size = 100.0 +_default_hprec = 1000000.0 +_default_vprec = 1000.0 + +# for use by from_wire() +_MAX_LATITUDE = 0x80000000 + 90 * 3600000 +_MIN_LATITUDE = 0x80000000 - 90 * 3600000 +_MAX_LONGITUDE = 0x80000000 + 180 * 3600000 +_MIN_LONGITUDE = 0x80000000 - 180 * 3600000 + + +def _exponent_of(what, desc): + if what == 0: + return 0 + exp = None + for i, pow in enumerate(_pows): + if what < pow: + exp = i - 1 + break + if exp is None or exp < 0: + raise dns.exception.SyntaxError(f"{desc} value out of bounds") + return exp + + +def _float_to_tuple(what): + if what < 0: + sign = -1 + what *= -1 + else: + sign = 1 + what = round(what * 3600000) + degrees = int(what // 3600000) + what -= degrees * 3600000 + minutes = int(what // 60000) + what -= minutes * 60000 + seconds = int(what // 1000) + what -= int(seconds * 1000) + what = int(what) + return (degrees, minutes, seconds, what, sign) + + +def _tuple_to_float(what): + value = float(what[0]) + value += float(what[1]) / 60.0 + value += float(what[2]) / 3600.0 + value += float(what[3]) / 3600000.0 + return float(what[4]) * value + + +def _encode_size(what, desc): + what = int(what) + exponent = _exponent_of(what, desc) & 0xF + base = what // pow(10, exponent) & 0xF + return base * 16 + exponent + + +def _decode_size(what, desc): + exponent = what & 0x0F + if exponent > 9: + raise dns.exception.FormError(f"bad {desc} exponent") + base = (what & 0xF0) >> 4 + if base > 9: + raise dns.exception.FormError(f"bad {desc} base") + return base * pow(10, exponent) + + +def _check_coordinate_list(value, low, high): + if value[0] < low or value[0] > high: + raise ValueError(f"not in range [{low}, {high}]") + if value[1] < 0 or value[1] > 59: + raise ValueError("bad minutes value") + if value[2] < 0 or value[2] > 59: + raise ValueError("bad seconds value") + if value[3] < 0 or value[3] > 999: + raise ValueError("bad milliseconds value") + if value[4] != 1 and value[4] != -1: + raise ValueError("bad hemisphere value") + + +@dns.immutable.immutable +class LOC(dns.rdata.Rdata): + """LOC record""" + + # see: RFC 1876 + + __slots__ = [ + "latitude", + "longitude", + "altitude", + "size", + "horizontal_precision", + "vertical_precision", + ] + + def __init__( + self, + rdclass, + rdtype, + latitude, + longitude, + altitude, + size=_default_size, + hprec=_default_hprec, + vprec=_default_vprec, + ): + """Initialize a LOC record instance. + + The parameters I{latitude} and I{longitude} may be either a 4-tuple + of integers specifying (degrees, minutes, seconds, milliseconds), + or they may be floating point values specifying the number of + degrees. The other parameters are floats. Size, horizontal precision, + and vertical precision are specified in centimeters.""" + + super().__init__(rdclass, rdtype) + if isinstance(latitude, int): + latitude = float(latitude) + if isinstance(latitude, float): + latitude = _float_to_tuple(latitude) + _check_coordinate_list(latitude, -90, 90) + self.latitude = tuple(latitude) + if isinstance(longitude, int): + longitude = float(longitude) + if isinstance(longitude, float): + longitude = _float_to_tuple(longitude) + _check_coordinate_list(longitude, -180, 180) + self.longitude = tuple(longitude) + self.altitude = float(altitude) + self.size = float(size) + self.horizontal_precision = float(hprec) + self.vertical_precision = float(vprec) + + def to_text(self, origin=None, relativize=True, **kw): + if self.latitude[4] > 0: + lat_hemisphere = "N" + else: + lat_hemisphere = "S" + if self.longitude[4] > 0: + long_hemisphere = "E" + else: + long_hemisphere = "W" + text = "%d %d %d.%03d %s %d %d %d.%03d %s %0.2fm" % ( + self.latitude[0], + self.latitude[1], + self.latitude[2], + self.latitude[3], + lat_hemisphere, + self.longitude[0], + self.longitude[1], + self.longitude[2], + self.longitude[3], + long_hemisphere, + self.altitude / 100.0, + ) + + # do not print default values + if ( + self.size != _default_size + or self.horizontal_precision != _default_hprec + or self.vertical_precision != _default_vprec + ): + text += ( + f" {self.size / 100.0:0.2f}m {self.horizontal_precision / 100.0:0.2f}m" + f" {self.vertical_precision / 100.0:0.2f}m" + ) + return text + + @classmethod + def from_text( + cls, rdclass, rdtype, tok, origin=None, relativize=True, relativize_to=None + ): + latitude = [0, 0, 0, 0, 1] + longitude = [0, 0, 0, 0, 1] + size = _default_size + hprec = _default_hprec + vprec = _default_vprec + + latitude[0] = tok.get_int() + t = tok.get_string() + if t.isdigit(): + latitude[1] = int(t) + t = tok.get_string() + if "." in t: + (seconds, milliseconds) = t.split(".") + if not seconds.isdigit(): + raise dns.exception.SyntaxError("bad latitude seconds value") + latitude[2] = int(seconds) + l = len(milliseconds) + if l == 0 or l > 3 or not milliseconds.isdigit(): + raise dns.exception.SyntaxError("bad latitude milliseconds value") + if l == 1: + m = 100 + elif l == 2: + m = 10 + else: + m = 1 + latitude[3] = m * int(milliseconds) + t = tok.get_string() + elif t.isdigit(): + latitude[2] = int(t) + t = tok.get_string() + if t == "S": + latitude[4] = -1 + elif t != "N": + raise dns.exception.SyntaxError("bad latitude hemisphere value") + + longitude[0] = tok.get_int() + t = tok.get_string() + if t.isdigit(): + longitude[1] = int(t) + t = tok.get_string() + if "." in t: + (seconds, milliseconds) = t.split(".") + if not seconds.isdigit(): + raise dns.exception.SyntaxError("bad longitude seconds value") + longitude[2] = int(seconds) + l = len(milliseconds) + if l == 0 or l > 3 or not milliseconds.isdigit(): + raise dns.exception.SyntaxError("bad longitude milliseconds value") + if l == 1: + m = 100 + elif l == 2: + m = 10 + else: + m = 1 + longitude[3] = m * int(milliseconds) + t = tok.get_string() + elif t.isdigit(): + longitude[2] = int(t) + t = tok.get_string() + if t == "W": + longitude[4] = -1 + elif t != "E": + raise dns.exception.SyntaxError("bad longitude hemisphere value") + + t = tok.get_string() + if t[-1] == "m": + t = t[0:-1] + altitude = float(t) * 100.0 # m -> cm + + tokens = tok.get_remaining(max_tokens=3) + if len(tokens) >= 1: + value = tokens[0].unescape().value + if value[-1] == "m": + value = value[0:-1] + size = float(value) * 100.0 # m -> cm + if len(tokens) >= 2: + value = tokens[1].unescape().value + if value[-1] == "m": + value = value[0:-1] + hprec = float(value) * 100.0 # m -> cm + if len(tokens) >= 3: + value = tokens[2].unescape().value + if value[-1] == "m": + value = value[0:-1] + vprec = float(value) * 100.0 # m -> cm + + # Try encoding these now so we raise if they are bad + _encode_size(size, "size") + _encode_size(hprec, "horizontal precision") + _encode_size(vprec, "vertical precision") + + return cls(rdclass, rdtype, latitude, longitude, altitude, size, hprec, vprec) + + def _to_wire(self, file, compress=None, origin=None, canonicalize=False): + milliseconds = ( + self.latitude[0] * 3600000 + + self.latitude[1] * 60000 + + self.latitude[2] * 1000 + + self.latitude[3] + ) * self.latitude[4] + latitude = 0x80000000 + milliseconds + milliseconds = ( + self.longitude[0] * 3600000 + + self.longitude[1] * 60000 + + self.longitude[2] * 1000 + + self.longitude[3] + ) * self.longitude[4] + longitude = 0x80000000 + milliseconds + altitude = int(self.altitude) + 10000000 + size = _encode_size(self.size, "size") + hprec = _encode_size(self.horizontal_precision, "horizontal precision") + vprec = _encode_size(self.vertical_precision, "vertical precision") + wire = struct.pack( + "!BBBBIII", 0, size, hprec, vprec, latitude, longitude, altitude + ) + file.write(wire) + + @classmethod + def from_wire_parser(cls, rdclass, rdtype, parser, origin=None): + ( + version, + size, + hprec, + vprec, + latitude, + longitude, + altitude, + ) = parser.get_struct("!BBBBIII") + if version != 0: + raise dns.exception.FormError("LOC version not zero") + if latitude < _MIN_LATITUDE or latitude > _MAX_LATITUDE: + raise dns.exception.FormError("bad latitude") + if latitude > 0x80000000: + latitude = (latitude - 0x80000000) / 3600000 + else: + latitude = -1 * (0x80000000 - latitude) / 3600000 + if longitude < _MIN_LONGITUDE or longitude > _MAX_LONGITUDE: + raise dns.exception.FormError("bad longitude") + if longitude > 0x80000000: + longitude = (longitude - 0x80000000) / 3600000 + else: + longitude = -1 * (0x80000000 - longitude) / 3600000 + altitude = float(altitude) - 10000000.0 + size = _decode_size(size, "size") + hprec = _decode_size(hprec, "horizontal precision") + vprec = _decode_size(vprec, "vertical precision") + return cls(rdclass, rdtype, latitude, longitude, altitude, size, hprec, vprec) + + @property + def float_latitude(self): + "latitude as a floating point value" + return _tuple_to_float(self.latitude) + + @property + def float_longitude(self): + "longitude as a floating point value" + return _tuple_to_float(self.longitude) diff --git a/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/LP.py b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/LP.py new file mode 100644 index 0000000..312663f --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/LP.py @@ -0,0 +1,42 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +import struct + +import dns.immutable +import dns.rdata + + +@dns.immutable.immutable +class LP(dns.rdata.Rdata): + """LP record""" + + # see: rfc6742.txt + + __slots__ = ["preference", "fqdn"] + + def __init__(self, rdclass, rdtype, preference, fqdn): + super().__init__(rdclass, rdtype) + self.preference = self._as_uint16(preference) + self.fqdn = self._as_name(fqdn) + + def to_text(self, origin=None, relativize=True, **kw): + fqdn = self.fqdn.choose_relativity(origin, relativize) + return "%d %s" % (self.preference, fqdn) + + @classmethod + def from_text( + cls, rdclass, rdtype, tok, origin=None, relativize=True, relativize_to=None + ): + preference = tok.get_uint16() + fqdn = tok.get_name(origin, relativize, relativize_to) + return cls(rdclass, rdtype, preference, fqdn) + + def _to_wire(self, file, compress=None, origin=None, canonicalize=False): + file.write(struct.pack("!H", self.preference)) + self.fqdn.to_wire(file, compress, origin, canonicalize) + + @classmethod + def from_wire_parser(cls, rdclass, rdtype, parser, origin=None): + preference = parser.get_uint16() + fqdn = parser.get_name(origin) + return cls(rdclass, rdtype, preference, fqdn) diff --git a/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/MX.py b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/MX.py new file mode 100644 index 0000000..0c300c5 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/MX.py @@ -0,0 +1,24 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2003-2007, 2009-2011 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +import dns.immutable +import dns.rdtypes.mxbase + + +@dns.immutable.immutable +class MX(dns.rdtypes.mxbase.MXBase): + """MX record""" diff --git a/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/NID.py b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/NID.py new file mode 100644 index 0000000..2f64917 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/NID.py @@ -0,0 +1,47 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +import struct + +import dns.immutable +import dns.rdtypes.util + + +@dns.immutable.immutable +class NID(dns.rdata.Rdata): + """NID record""" + + # see: rfc6742.txt + + __slots__ = ["preference", "nodeid"] + + def __init__(self, rdclass, rdtype, preference, nodeid): + super().__init__(rdclass, rdtype) + self.preference = self._as_uint16(preference) + if isinstance(nodeid, bytes): + if len(nodeid) != 8: + raise ValueError("invalid nodeid") + self.nodeid = dns.rdata._hexify(nodeid, 4, b":") + else: + dns.rdtypes.util.parse_formatted_hex(nodeid, 4, 4, ":") + self.nodeid = nodeid + + def to_text(self, origin=None, relativize=True, **kw): + return f"{self.preference} {self.nodeid}" + + @classmethod + def from_text( + cls, rdclass, rdtype, tok, origin=None, relativize=True, relativize_to=None + ): + preference = tok.get_uint16() + nodeid = tok.get_identifier() + return cls(rdclass, rdtype, preference, nodeid) + + def _to_wire(self, file, compress=None, origin=None, canonicalize=False): + file.write(struct.pack("!H", self.preference)) + file.write(dns.rdtypes.util.parse_formatted_hex(self.nodeid, 4, 4, ":")) + + @classmethod + def from_wire_parser(cls, rdclass, rdtype, parser, origin=None): + preference = parser.get_uint16() + nodeid = parser.get_remaining() + return cls(rdclass, rdtype, preference, nodeid) diff --git a/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/NINFO.py b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/NINFO.py new file mode 100644 index 0000000..b177bdd --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/NINFO.py @@ -0,0 +1,26 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2006, 2007, 2009-2011 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +import dns.immutable +import dns.rdtypes.txtbase + + +@dns.immutable.immutable +class NINFO(dns.rdtypes.txtbase.TXTBase): + """NINFO record""" + + # see: draft-reid-dnsext-zs-01 diff --git a/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/NS.py b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/NS.py new file mode 100644 index 0000000..c3f34ce --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/NS.py @@ -0,0 +1,24 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2003-2007, 2009-2011 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +import dns.immutable +import dns.rdtypes.nsbase + + +@dns.immutable.immutable +class NS(dns.rdtypes.nsbase.NSBase): + """NS record""" diff --git a/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/NSEC.py b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/NSEC.py new file mode 100644 index 0000000..3c78b72 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/NSEC.py @@ -0,0 +1,67 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2004-2007, 2009-2011 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +import dns.exception +import dns.immutable +import dns.name +import dns.rdata +import dns.rdatatype +import dns.rdtypes.util + + +@dns.immutable.immutable +class Bitmap(dns.rdtypes.util.Bitmap): + type_name = "NSEC" + + +@dns.immutable.immutable +class NSEC(dns.rdata.Rdata): + """NSEC record""" + + __slots__ = ["next", "windows"] + + def __init__(self, rdclass, rdtype, next, windows): + super().__init__(rdclass, rdtype) + self.next = self._as_name(next) + if not isinstance(windows, Bitmap): + windows = Bitmap(windows) + self.windows = tuple(windows.windows) + + def to_text(self, origin=None, relativize=True, **kw): + next = self.next.choose_relativity(origin, relativize) + text = Bitmap(self.windows).to_text() + return f"{next}{text}" + + @classmethod + def from_text( + cls, rdclass, rdtype, tok, origin=None, relativize=True, relativize_to=None + ): + next = tok.get_name(origin, relativize, relativize_to) + windows = Bitmap.from_text(tok) + return cls(rdclass, rdtype, next, windows) + + def _to_wire(self, file, compress=None, origin=None, canonicalize=False): + # Note that NSEC downcasing, originally mandated by RFC 4034 + # section 6.2 was removed by RFC 6840 section 5.1. + self.next.to_wire(file, None, origin, False) + Bitmap(self.windows).to_wire(file) + + @classmethod + def from_wire_parser(cls, rdclass, rdtype, parser, origin=None): + next = parser.get_name(origin) + bitmap = Bitmap.from_wire_parser(parser) + return cls(rdclass, rdtype, next, bitmap) diff --git a/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/NSEC3.py b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/NSEC3.py new file mode 100644 index 0000000..d71302b --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/NSEC3.py @@ -0,0 +1,126 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2004-2017 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +import base64 +import binascii +import struct + +import dns.exception +import dns.immutable +import dns.rdata +import dns.rdatatype +import dns.rdtypes.util + +b32_hex_to_normal = bytes.maketrans( + b"0123456789ABCDEFGHIJKLMNOPQRSTUV", b"ABCDEFGHIJKLMNOPQRSTUVWXYZ234567" +) +b32_normal_to_hex = bytes.maketrans( + b"ABCDEFGHIJKLMNOPQRSTUVWXYZ234567", b"0123456789ABCDEFGHIJKLMNOPQRSTUV" +) + +# hash algorithm constants +SHA1 = 1 + +# flag constants +OPTOUT = 1 + + +@dns.immutable.immutable +class Bitmap(dns.rdtypes.util.Bitmap): + type_name = "NSEC3" + + +@dns.immutable.immutable +class NSEC3(dns.rdata.Rdata): + """NSEC3 record""" + + __slots__ = ["algorithm", "flags", "iterations", "salt", "next", "windows"] + + def __init__( + self, rdclass, rdtype, algorithm, flags, iterations, salt, next, windows + ): + super().__init__(rdclass, rdtype) + self.algorithm = self._as_uint8(algorithm) + self.flags = self._as_uint8(flags) + self.iterations = self._as_uint16(iterations) + self.salt = self._as_bytes(salt, True, 255) + self.next = self._as_bytes(next, True, 255) + if not isinstance(windows, Bitmap): + windows = Bitmap(windows) + self.windows = tuple(windows.windows) + + def _next_text(self): + next = base64.b32encode(self.next).translate(b32_normal_to_hex).lower().decode() + next = next.rstrip("=") + return next + + def to_text(self, origin=None, relativize=True, **kw): + next = self._next_text() + if self.salt == b"": + salt = "-" + else: + salt = binascii.hexlify(self.salt).decode() + text = Bitmap(self.windows).to_text() + return "%u %u %u %s %s%s" % ( + self.algorithm, + self.flags, + self.iterations, + salt, + next, + text, + ) + + @classmethod + def from_text( + cls, rdclass, rdtype, tok, origin=None, relativize=True, relativize_to=None + ): + algorithm = tok.get_uint8() + flags = tok.get_uint8() + iterations = tok.get_uint16() + salt = tok.get_string() + if salt == "-": + salt = b"" + else: + salt = binascii.unhexlify(salt.encode("ascii")) + next = tok.get_string().encode("ascii").upper().translate(b32_hex_to_normal) + if next.endswith(b"="): + raise binascii.Error("Incorrect padding") + if len(next) % 8 != 0: + next += b"=" * (8 - len(next) % 8) + next = base64.b32decode(next) + bitmap = Bitmap.from_text(tok) + return cls(rdclass, rdtype, algorithm, flags, iterations, salt, next, bitmap) + + def _to_wire(self, file, compress=None, origin=None, canonicalize=False): + l = len(self.salt) + file.write(struct.pack("!BBHB", self.algorithm, self.flags, self.iterations, l)) + file.write(self.salt) + l = len(self.next) + file.write(struct.pack("!B", l)) + file.write(self.next) + Bitmap(self.windows).to_wire(file) + + @classmethod + def from_wire_parser(cls, rdclass, rdtype, parser, origin=None): + (algorithm, flags, iterations) = parser.get_struct("!BBH") + salt = parser.get_counted_bytes() + next = parser.get_counted_bytes() + bitmap = Bitmap.from_wire_parser(parser) + return cls(rdclass, rdtype, algorithm, flags, iterations, salt, next, bitmap) + + def next_name(self, origin=None): + return dns.name.from_text(self._next_text(), origin) diff --git a/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/NSEC3PARAM.py b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/NSEC3PARAM.py new file mode 100644 index 0000000..d1e62eb --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/NSEC3PARAM.py @@ -0,0 +1,69 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2004-2007, 2009-2011 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +import binascii +import struct + +import dns.exception +import dns.immutable +import dns.rdata + + +@dns.immutable.immutable +class NSEC3PARAM(dns.rdata.Rdata): + """NSEC3PARAM record""" + + __slots__ = ["algorithm", "flags", "iterations", "salt"] + + def __init__(self, rdclass, rdtype, algorithm, flags, iterations, salt): + super().__init__(rdclass, rdtype) + self.algorithm = self._as_uint8(algorithm) + self.flags = self._as_uint8(flags) + self.iterations = self._as_uint16(iterations) + self.salt = self._as_bytes(salt, True, 255) + + def to_text(self, origin=None, relativize=True, **kw): + if self.salt == b"": + salt = "-" + else: + salt = binascii.hexlify(self.salt).decode() + return "%u %u %u %s" % (self.algorithm, self.flags, self.iterations, salt) + + @classmethod + def from_text( + cls, rdclass, rdtype, tok, origin=None, relativize=True, relativize_to=None + ): + algorithm = tok.get_uint8() + flags = tok.get_uint8() + iterations = tok.get_uint16() + salt = tok.get_string() + if salt == "-": + salt = "" + else: + salt = binascii.unhexlify(salt.encode()) + return cls(rdclass, rdtype, algorithm, flags, iterations, salt) + + def _to_wire(self, file, compress=None, origin=None, canonicalize=False): + l = len(self.salt) + file.write(struct.pack("!BBHB", self.algorithm, self.flags, self.iterations, l)) + file.write(self.salt) + + @classmethod + def from_wire_parser(cls, rdclass, rdtype, parser, origin=None): + (algorithm, flags, iterations) = parser.get_struct("!BBH") + salt = parser.get_counted_bytes() + return cls(rdclass, rdtype, algorithm, flags, iterations, salt) diff --git a/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/OPENPGPKEY.py b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/OPENPGPKEY.py new file mode 100644 index 0000000..4d7a4b6 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/OPENPGPKEY.py @@ -0,0 +1,53 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2016 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +import base64 + +import dns.exception +import dns.immutable +import dns.rdata +import dns.tokenizer + + +@dns.immutable.immutable +class OPENPGPKEY(dns.rdata.Rdata): + """OPENPGPKEY record""" + + # see: RFC 7929 + + def __init__(self, rdclass, rdtype, key): + super().__init__(rdclass, rdtype) + self.key = self._as_bytes(key) + + def to_text(self, origin=None, relativize=True, **kw): + return dns.rdata._base64ify(self.key, chunksize=None, **kw) + + @classmethod + def from_text( + cls, rdclass, rdtype, tok, origin=None, relativize=True, relativize_to=None + ): + b64 = tok.concatenate_remaining_identifiers().encode() + key = base64.b64decode(b64) + return cls(rdclass, rdtype, key) + + def _to_wire(self, file, compress=None, origin=None, canonicalize=False): + file.write(self.key) + + @classmethod + def from_wire_parser(cls, rdclass, rdtype, parser, origin=None): + key = parser.get_remaining() + return cls(rdclass, rdtype, key) diff --git a/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/OPT.py b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/OPT.py new file mode 100644 index 0000000..d343dfa --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/OPT.py @@ -0,0 +1,77 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2001-2017 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +import struct + +import dns.edns +import dns.exception +import dns.immutable +import dns.rdata + +# We don't implement from_text, and that's ok. +# pylint: disable=abstract-method + + +@dns.immutable.immutable +class OPT(dns.rdata.Rdata): + """OPT record""" + + __slots__ = ["options"] + + def __init__(self, rdclass, rdtype, options): + """Initialize an OPT rdata. + + *rdclass*, an ``int`` is the rdataclass of the Rdata, + which is also the payload size. + + *rdtype*, an ``int`` is the rdatatype of the Rdata. + + *options*, a tuple of ``bytes`` + """ + + super().__init__(rdclass, rdtype) + + def as_option(option): + if not isinstance(option, dns.edns.Option): + raise ValueError("option is not a dns.edns.option") + return option + + self.options = self._as_tuple(options, as_option) + + def _to_wire(self, file, compress=None, origin=None, canonicalize=False): + for opt in self.options: + owire = opt.to_wire() + file.write(struct.pack("!HH", opt.otype, len(owire))) + file.write(owire) + + def to_text(self, origin=None, relativize=True, **kw): + return " ".join(opt.to_text() for opt in self.options) + + @classmethod + def from_wire_parser(cls, rdclass, rdtype, parser, origin=None): + options = [] + while parser.remaining() > 0: + (otype, olen) = parser.get_struct("!HH") + with parser.restrict_to(olen): + opt = dns.edns.option_from_wire_parser(otype, parser) + options.append(opt) + return cls(rdclass, rdtype, options) + + @property + def payload(self): + "payload size" + return self.rdclass diff --git a/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/PTR.py b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/PTR.py new file mode 100644 index 0000000..98c3616 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/PTR.py @@ -0,0 +1,24 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2003-2007, 2009-2011 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +import dns.immutable +import dns.rdtypes.nsbase + + +@dns.immutable.immutable +class PTR(dns.rdtypes.nsbase.NSBase): + """PTR record""" diff --git a/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/RESINFO.py b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/RESINFO.py new file mode 100644 index 0000000..76c8ea2 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/RESINFO.py @@ -0,0 +1,24 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2003-2007, 2009-2011 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +import dns.immutable +import dns.rdtypes.txtbase + + +@dns.immutable.immutable +class RESINFO(dns.rdtypes.txtbase.TXTBase): + """RESINFO record""" diff --git a/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/RP.py b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/RP.py new file mode 100644 index 0000000..a66cfc5 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/RP.py @@ -0,0 +1,58 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2003-2007, 2009-2011 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +import dns.exception +import dns.immutable +import dns.name +import dns.rdata + + +@dns.immutable.immutable +class RP(dns.rdata.Rdata): + """RP record""" + + # see: RFC 1183 + + __slots__ = ["mbox", "txt"] + + def __init__(self, rdclass, rdtype, mbox, txt): + super().__init__(rdclass, rdtype) + self.mbox = self._as_name(mbox) + self.txt = self._as_name(txt) + + def to_text(self, origin=None, relativize=True, **kw): + mbox = self.mbox.choose_relativity(origin, relativize) + txt = self.txt.choose_relativity(origin, relativize) + return f"{str(mbox)} {str(txt)}" + + @classmethod + def from_text( + cls, rdclass, rdtype, tok, origin=None, relativize=True, relativize_to=None + ): + mbox = tok.get_name(origin, relativize, relativize_to) + txt = tok.get_name(origin, relativize, relativize_to) + return cls(rdclass, rdtype, mbox, txt) + + def _to_wire(self, file, compress=None, origin=None, canonicalize=False): + self.mbox.to_wire(file, None, origin, canonicalize) + self.txt.to_wire(file, None, origin, canonicalize) + + @classmethod + def from_wire_parser(cls, rdclass, rdtype, parser, origin=None): + mbox = parser.get_name(origin) + txt = parser.get_name(origin) + return cls(rdclass, rdtype, mbox, txt) diff --git a/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/RRSIG.py b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/RRSIG.py new file mode 100644 index 0000000..8beb423 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/RRSIG.py @@ -0,0 +1,157 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2004-2007, 2009-2011 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +import base64 +import calendar +import struct +import time + +import dns.dnssectypes +import dns.exception +import dns.immutable +import dns.rdata +import dns.rdatatype + + +class BadSigTime(dns.exception.DNSException): + """Time in DNS SIG or RRSIG resource record cannot be parsed.""" + + +def sigtime_to_posixtime(what): + if len(what) <= 10 and what.isdigit(): + return int(what) + if len(what) != 14: + raise BadSigTime + year = int(what[0:4]) + month = int(what[4:6]) + day = int(what[6:8]) + hour = int(what[8:10]) + minute = int(what[10:12]) + second = int(what[12:14]) + return calendar.timegm((year, month, day, hour, minute, second, 0, 0, 0)) + + +def posixtime_to_sigtime(what): + return time.strftime("%Y%m%d%H%M%S", time.gmtime(what)) + + +@dns.immutable.immutable +class RRSIG(dns.rdata.Rdata): + """RRSIG record""" + + __slots__ = [ + "type_covered", + "algorithm", + "labels", + "original_ttl", + "expiration", + "inception", + "key_tag", + "signer", + "signature", + ] + + def __init__( + self, + rdclass, + rdtype, + type_covered, + algorithm, + labels, + original_ttl, + expiration, + inception, + key_tag, + signer, + signature, + ): + super().__init__(rdclass, rdtype) + self.type_covered = self._as_rdatatype(type_covered) + self.algorithm = dns.dnssectypes.Algorithm.make(algorithm) + self.labels = self._as_uint8(labels) + self.original_ttl = self._as_ttl(original_ttl) + self.expiration = self._as_uint32(expiration) + self.inception = self._as_uint32(inception) + self.key_tag = self._as_uint16(key_tag) + self.signer = self._as_name(signer) + self.signature = self._as_bytes(signature) + + def covers(self): + return self.type_covered + + def to_text(self, origin=None, relativize=True, **kw): + return "%s %d %d %d %s %s %d %s %s" % ( + dns.rdatatype.to_text(self.type_covered), + self.algorithm, + self.labels, + self.original_ttl, + posixtime_to_sigtime(self.expiration), + posixtime_to_sigtime(self.inception), + self.key_tag, + self.signer.choose_relativity(origin, relativize), + dns.rdata._base64ify(self.signature, **kw), + ) + + @classmethod + def from_text( + cls, rdclass, rdtype, tok, origin=None, relativize=True, relativize_to=None + ): + type_covered = dns.rdatatype.from_text(tok.get_string()) + algorithm = dns.dnssectypes.Algorithm.from_text(tok.get_string()) + labels = tok.get_int() + original_ttl = tok.get_ttl() + expiration = sigtime_to_posixtime(tok.get_string()) + inception = sigtime_to_posixtime(tok.get_string()) + key_tag = tok.get_int() + signer = tok.get_name(origin, relativize, relativize_to) + b64 = tok.concatenate_remaining_identifiers().encode() + signature = base64.b64decode(b64) + return cls( + rdclass, + rdtype, + type_covered, + algorithm, + labels, + original_ttl, + expiration, + inception, + key_tag, + signer, + signature, + ) + + def _to_wire(self, file, compress=None, origin=None, canonicalize=False): + header = struct.pack( + "!HBBIIIH", + self.type_covered, + self.algorithm, + self.labels, + self.original_ttl, + self.expiration, + self.inception, + self.key_tag, + ) + file.write(header) + self.signer.to_wire(file, None, origin, canonicalize) + file.write(self.signature) + + @classmethod + def from_wire_parser(cls, rdclass, rdtype, parser, origin=None): + header = parser.get_struct("!HBBIIIH") + signer = parser.get_name(origin) + signature = parser.get_remaining() + return cls(rdclass, rdtype, *header, signer, signature) diff --git a/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/RT.py b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/RT.py new file mode 100644 index 0000000..5a4d45c --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/RT.py @@ -0,0 +1,24 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2003-2007, 2009-2011 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +import dns.immutable +import dns.rdtypes.mxbase + + +@dns.immutable.immutable +class RT(dns.rdtypes.mxbase.UncompressedDowncasingMX): + """RT record""" diff --git a/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/SMIMEA.py b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/SMIMEA.py new file mode 100644 index 0000000..55d87bf --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/SMIMEA.py @@ -0,0 +1,9 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +import dns.immutable +import dns.rdtypes.tlsabase + + +@dns.immutable.immutable +class SMIMEA(dns.rdtypes.tlsabase.TLSABase): + """SMIMEA record""" diff --git a/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/SOA.py b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/SOA.py new file mode 100644 index 0000000..09aa832 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/SOA.py @@ -0,0 +1,86 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2003-2007, 2009-2011 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +import struct + +import dns.exception +import dns.immutable +import dns.name +import dns.rdata + + +@dns.immutable.immutable +class SOA(dns.rdata.Rdata): + """SOA record""" + + # see: RFC 1035 + + __slots__ = ["mname", "rname", "serial", "refresh", "retry", "expire", "minimum"] + + def __init__( + self, rdclass, rdtype, mname, rname, serial, refresh, retry, expire, minimum + ): + super().__init__(rdclass, rdtype) + self.mname = self._as_name(mname) + self.rname = self._as_name(rname) + self.serial = self._as_uint32(serial) + self.refresh = self._as_ttl(refresh) + self.retry = self._as_ttl(retry) + self.expire = self._as_ttl(expire) + self.minimum = self._as_ttl(minimum) + + def to_text(self, origin=None, relativize=True, **kw): + mname = self.mname.choose_relativity(origin, relativize) + rname = self.rname.choose_relativity(origin, relativize) + return "%s %s %d %d %d %d %d" % ( + mname, + rname, + self.serial, + self.refresh, + self.retry, + self.expire, + self.minimum, + ) + + @classmethod + def from_text( + cls, rdclass, rdtype, tok, origin=None, relativize=True, relativize_to=None + ): + mname = tok.get_name(origin, relativize, relativize_to) + rname = tok.get_name(origin, relativize, relativize_to) + serial = tok.get_uint32() + refresh = tok.get_ttl() + retry = tok.get_ttl() + expire = tok.get_ttl() + minimum = tok.get_ttl() + return cls( + rdclass, rdtype, mname, rname, serial, refresh, retry, expire, minimum + ) + + def _to_wire(self, file, compress=None, origin=None, canonicalize=False): + self.mname.to_wire(file, compress, origin, canonicalize) + self.rname.to_wire(file, compress, origin, canonicalize) + five_ints = struct.pack( + "!IIIII", self.serial, self.refresh, self.retry, self.expire, self.minimum + ) + file.write(five_ints) + + @classmethod + def from_wire_parser(cls, rdclass, rdtype, parser, origin=None): + mname = parser.get_name(origin) + rname = parser.get_name(origin) + return cls(rdclass, rdtype, mname, rname, *parser.get_struct("!IIIII")) diff --git a/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/SPF.py b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/SPF.py new file mode 100644 index 0000000..1df3b70 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/SPF.py @@ -0,0 +1,26 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2006, 2007, 2009-2011 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +import dns.immutable +import dns.rdtypes.txtbase + + +@dns.immutable.immutable +class SPF(dns.rdtypes.txtbase.TXTBase): + """SPF record""" + + # see: RFC 4408 diff --git a/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/SSHFP.py b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/SSHFP.py new file mode 100644 index 0000000..d2c4b07 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/SSHFP.py @@ -0,0 +1,68 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2005-2007, 2009-2011 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +import binascii +import struct + +import dns.immutable +import dns.rdata +import dns.rdatatype + + +@dns.immutable.immutable +class SSHFP(dns.rdata.Rdata): + """SSHFP record""" + + # See RFC 4255 + + __slots__ = ["algorithm", "fp_type", "fingerprint"] + + def __init__(self, rdclass, rdtype, algorithm, fp_type, fingerprint): + super().__init__(rdclass, rdtype) + self.algorithm = self._as_uint8(algorithm) + self.fp_type = self._as_uint8(fp_type) + self.fingerprint = self._as_bytes(fingerprint, True) + + def to_text(self, origin=None, relativize=True, **kw): + kw = kw.copy() + chunksize = kw.pop("chunksize", 128) + return "%d %d %s" % ( + self.algorithm, + self.fp_type, + dns.rdata._hexify(self.fingerprint, chunksize=chunksize, **kw), + ) + + @classmethod + def from_text( + cls, rdclass, rdtype, tok, origin=None, relativize=True, relativize_to=None + ): + algorithm = tok.get_uint8() + fp_type = tok.get_uint8() + fingerprint = tok.concatenate_remaining_identifiers().encode() + fingerprint = binascii.unhexlify(fingerprint) + return cls(rdclass, rdtype, algorithm, fp_type, fingerprint) + + def _to_wire(self, file, compress=None, origin=None, canonicalize=False): + header = struct.pack("!BB", self.algorithm, self.fp_type) + file.write(header) + file.write(self.fingerprint) + + @classmethod + def from_wire_parser(cls, rdclass, rdtype, parser, origin=None): + header = parser.get_struct("BB") + fingerprint = parser.get_remaining() + return cls(rdclass, rdtype, header[0], header[1], fingerprint) diff --git a/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/TKEY.py b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/TKEY.py new file mode 100644 index 0000000..75f6224 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/TKEY.py @@ -0,0 +1,142 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2004-2007, 2009-2011 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +import base64 +import struct + +import dns.exception +import dns.immutable +import dns.rdata + + +@dns.immutable.immutable +class TKEY(dns.rdata.Rdata): + """TKEY Record""" + + __slots__ = [ + "algorithm", + "inception", + "expiration", + "mode", + "error", + "key", + "other", + ] + + def __init__( + self, + rdclass, + rdtype, + algorithm, + inception, + expiration, + mode, + error, + key, + other=b"", + ): + super().__init__(rdclass, rdtype) + self.algorithm = self._as_name(algorithm) + self.inception = self._as_uint32(inception) + self.expiration = self._as_uint32(expiration) + self.mode = self._as_uint16(mode) + self.error = self._as_uint16(error) + self.key = self._as_bytes(key) + self.other = self._as_bytes(other) + + def to_text(self, origin=None, relativize=True, **kw): + _algorithm = self.algorithm.choose_relativity(origin, relativize) + text = "%s %u %u %u %u %s" % ( + str(_algorithm), + self.inception, + self.expiration, + self.mode, + self.error, + dns.rdata._base64ify(self.key, 0), + ) + if len(self.other) > 0: + text += f" {dns.rdata._base64ify(self.other, 0)}" + + return text + + @classmethod + def from_text( + cls, rdclass, rdtype, tok, origin=None, relativize=True, relativize_to=None + ): + algorithm = tok.get_name(relativize=False) + inception = tok.get_uint32() + expiration = tok.get_uint32() + mode = tok.get_uint16() + error = tok.get_uint16() + key_b64 = tok.get_string().encode() + key = base64.b64decode(key_b64) + other_b64 = tok.concatenate_remaining_identifiers(True).encode() + other = base64.b64decode(other_b64) + + return cls( + rdclass, rdtype, algorithm, inception, expiration, mode, error, key, other + ) + + def _to_wire(self, file, compress=None, origin=None, canonicalize=False): + self.algorithm.to_wire(file, compress, origin) + file.write( + struct.pack("!IIHH", self.inception, self.expiration, self.mode, self.error) + ) + file.write(struct.pack("!H", len(self.key))) + file.write(self.key) + file.write(struct.pack("!H", len(self.other))) + if len(self.other) > 0: + file.write(self.other) + + @classmethod + def from_wire_parser(cls, rdclass, rdtype, parser, origin=None): + algorithm = parser.get_name(origin) + inception, expiration, mode, error = parser.get_struct("!IIHH") + key = parser.get_counted_bytes(2) + other = parser.get_counted_bytes(2) + + return cls( + rdclass, rdtype, algorithm, inception, expiration, mode, error, key, other + ) + + # Constants for the mode field - from RFC 2930: + # 2.5 The Mode Field + # + # The mode field specifies the general scheme for key agreement or + # the purpose of the TKEY DNS message. Servers and resolvers + # supporting this specification MUST implement the Diffie-Hellman key + # agreement mode and the key deletion mode for queries. All other + # modes are OPTIONAL. A server supporting TKEY that receives a TKEY + # request with a mode it does not support returns the BADMODE error. + # The following values of the Mode octet are defined, available, or + # reserved: + # + # Value Description + # ----- ----------- + # 0 - reserved, see section 7 + # 1 server assignment + # 2 Diffie-Hellman exchange + # 3 GSS-API negotiation + # 4 resolver assignment + # 5 key deletion + # 6-65534 - available, see section 7 + # 65535 - reserved, see section 7 + SERVER_ASSIGNMENT = 1 + DIFFIE_HELLMAN_EXCHANGE = 2 + GSSAPI_NEGOTIATION = 3 + RESOLVER_ASSIGNMENT = 4 + KEY_DELETION = 5 diff --git a/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/TLSA.py b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/TLSA.py new file mode 100644 index 0000000..4dffc55 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/TLSA.py @@ -0,0 +1,9 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +import dns.immutable +import dns.rdtypes.tlsabase + + +@dns.immutable.immutable +class TLSA(dns.rdtypes.tlsabase.TLSABase): + """TLSA record""" diff --git a/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/TSIG.py b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/TSIG.py new file mode 100644 index 0000000..7942382 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/TSIG.py @@ -0,0 +1,160 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2001-2017 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +import base64 +import struct + +import dns.exception +import dns.immutable +import dns.rcode +import dns.rdata + + +@dns.immutable.immutable +class TSIG(dns.rdata.Rdata): + """TSIG record""" + + __slots__ = [ + "algorithm", + "time_signed", + "fudge", + "mac", + "original_id", + "error", + "other", + ] + + def __init__( + self, + rdclass, + rdtype, + algorithm, + time_signed, + fudge, + mac, + original_id, + error, + other, + ): + """Initialize a TSIG rdata. + + *rdclass*, an ``int`` is the rdataclass of the Rdata. + + *rdtype*, an ``int`` is the rdatatype of the Rdata. + + *algorithm*, a ``dns.name.Name``. + + *time_signed*, an ``int``. + + *fudge*, an ``int`. + + *mac*, a ``bytes`` + + *original_id*, an ``int`` + + *error*, an ``int`` + + *other*, a ``bytes`` + """ + + super().__init__(rdclass, rdtype) + self.algorithm = self._as_name(algorithm) + self.time_signed = self._as_uint48(time_signed) + self.fudge = self._as_uint16(fudge) + self.mac = self._as_bytes(mac) + self.original_id = self._as_uint16(original_id) + self.error = dns.rcode.Rcode.make(error) + self.other = self._as_bytes(other) + + def to_text(self, origin=None, relativize=True, **kw): + algorithm = self.algorithm.choose_relativity(origin, relativize) + error = dns.rcode.to_text(self.error, True) + text = ( + f"{algorithm} {self.time_signed} {self.fudge} " + + f"{len(self.mac)} {dns.rdata._base64ify(self.mac, 0)} " + + f"{self.original_id} {error} {len(self.other)}" + ) + if self.other: + text += f" {dns.rdata._base64ify(self.other, 0)}" + return text + + @classmethod + def from_text( + cls, rdclass, rdtype, tok, origin=None, relativize=True, relativize_to=None + ): + algorithm = tok.get_name(relativize=False) + time_signed = tok.get_uint48() + fudge = tok.get_uint16() + mac_len = tok.get_uint16() + mac = base64.b64decode(tok.get_string()) + if len(mac) != mac_len: + raise SyntaxError("invalid MAC") + original_id = tok.get_uint16() + error = dns.rcode.from_text(tok.get_string()) + other_len = tok.get_uint16() + if other_len > 0: + other = base64.b64decode(tok.get_string()) + if len(other) != other_len: + raise SyntaxError("invalid other data") + else: + other = b"" + return cls( + rdclass, + rdtype, + algorithm, + time_signed, + fudge, + mac, + original_id, + error, + other, + ) + + def _to_wire(self, file, compress=None, origin=None, canonicalize=False): + self.algorithm.to_wire(file, None, origin, False) + file.write( + struct.pack( + "!HIHH", + (self.time_signed >> 32) & 0xFFFF, + self.time_signed & 0xFFFFFFFF, + self.fudge, + len(self.mac), + ) + ) + file.write(self.mac) + file.write(struct.pack("!HHH", self.original_id, self.error, len(self.other))) + file.write(self.other) + + @classmethod + def from_wire_parser(cls, rdclass, rdtype, parser, origin=None): + algorithm = parser.get_name() + time_signed = parser.get_uint48() + fudge = parser.get_uint16() + mac = parser.get_counted_bytes(2) + (original_id, error) = parser.get_struct("!HH") + other = parser.get_counted_bytes(2) + return cls( + rdclass, + rdtype, + algorithm, + time_signed, + fudge, + mac, + original_id, + error, + other, + ) diff --git a/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/TXT.py b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/TXT.py new file mode 100644 index 0000000..6d4dae2 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/TXT.py @@ -0,0 +1,24 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2003-2007, 2009-2011 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +import dns.immutable +import dns.rdtypes.txtbase + + +@dns.immutable.immutable +class TXT(dns.rdtypes.txtbase.TXTBase): + """TXT record""" diff --git a/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/URI.py b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/URI.py new file mode 100644 index 0000000..2efbb30 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/URI.py @@ -0,0 +1,79 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2003-2007, 2009-2011 Nominum, Inc. +# Copyright (C) 2015 Red Hat, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +import struct + +import dns.exception +import dns.immutable +import dns.name +import dns.rdata +import dns.rdtypes.util + + +@dns.immutable.immutable +class URI(dns.rdata.Rdata): + """URI record""" + + # see RFC 7553 + + __slots__ = ["priority", "weight", "target"] + + def __init__(self, rdclass, rdtype, priority, weight, target): + super().__init__(rdclass, rdtype) + self.priority = self._as_uint16(priority) + self.weight = self._as_uint16(weight) + self.target = self._as_bytes(target, True) + if len(self.target) == 0: + raise dns.exception.SyntaxError("URI target cannot be empty") + + def to_text(self, origin=None, relativize=True, **kw): + return '%d %d "%s"' % (self.priority, self.weight, self.target.decode()) + + @classmethod + def from_text( + cls, rdclass, rdtype, tok, origin=None, relativize=True, relativize_to=None + ): + priority = tok.get_uint16() + weight = tok.get_uint16() + target = tok.get().unescape() + if not (target.is_quoted_string() or target.is_identifier()): + raise dns.exception.SyntaxError("URI target must be a string") + return cls(rdclass, rdtype, priority, weight, target.value) + + def _to_wire(self, file, compress=None, origin=None, canonicalize=False): + two_ints = struct.pack("!HH", self.priority, self.weight) + file.write(two_ints) + file.write(self.target) + + @classmethod + def from_wire_parser(cls, rdclass, rdtype, parser, origin=None): + (priority, weight) = parser.get_struct("!HH") + target = parser.get_remaining() + if len(target) == 0: + raise dns.exception.FormError("URI target may not be empty") + return cls(rdclass, rdtype, priority, weight, target) + + def _processing_priority(self): + return self.priority + + def _processing_weight(self): + return self.weight + + @classmethod + def _processing_order(cls, iterable): + return dns.rdtypes.util.weighted_processing_order(iterable) diff --git a/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/WALLET.py b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/WALLET.py new file mode 100644 index 0000000..ff46476 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/WALLET.py @@ -0,0 +1,9 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +import dns.immutable +import dns.rdtypes.txtbase + + +@dns.immutable.immutable +class WALLET(dns.rdtypes.txtbase.TXTBase): + """WALLET record""" diff --git a/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/X25.py b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/X25.py new file mode 100644 index 0000000..2436ddb --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/X25.py @@ -0,0 +1,57 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2003-2007, 2009-2011 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +import struct + +import dns.exception +import dns.immutable +import dns.rdata +import dns.tokenizer + + +@dns.immutable.immutable +class X25(dns.rdata.Rdata): + """X25 record""" + + # see RFC 1183 + + __slots__ = ["address"] + + def __init__(self, rdclass, rdtype, address): + super().__init__(rdclass, rdtype) + self.address = self._as_bytes(address, True, 255) + + def to_text(self, origin=None, relativize=True, **kw): + return f'"{dns.rdata._escapify(self.address)}"' + + @classmethod + def from_text( + cls, rdclass, rdtype, tok, origin=None, relativize=True, relativize_to=None + ): + address = tok.get_string() + return cls(rdclass, rdtype, address) + + def _to_wire(self, file, compress=None, origin=None, canonicalize=False): + l = len(self.address) + assert l < 256 + file.write(struct.pack("!B", l)) + file.write(self.address) + + @classmethod + def from_wire_parser(cls, rdclass, rdtype, parser, origin=None): + address = parser.get_counted_bytes() + return cls(rdclass, rdtype, address) diff --git a/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/ZONEMD.py b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/ZONEMD.py new file mode 100644 index 0000000..c90e3ee --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/ZONEMD.py @@ -0,0 +1,66 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +import binascii +import struct + +import dns.immutable +import dns.rdata +import dns.rdatatype +import dns.zonetypes + + +@dns.immutable.immutable +class ZONEMD(dns.rdata.Rdata): + """ZONEMD record""" + + # See RFC 8976 + + __slots__ = ["serial", "scheme", "hash_algorithm", "digest"] + + def __init__(self, rdclass, rdtype, serial, scheme, hash_algorithm, digest): + super().__init__(rdclass, rdtype) + self.serial = self._as_uint32(serial) + self.scheme = dns.zonetypes.DigestScheme.make(scheme) + self.hash_algorithm = dns.zonetypes.DigestHashAlgorithm.make(hash_algorithm) + self.digest = self._as_bytes(digest) + + if self.scheme == 0: # reserved, RFC 8976 Sec. 5.2 + raise ValueError("scheme 0 is reserved") + if self.hash_algorithm == 0: # reserved, RFC 8976 Sec. 5.3 + raise ValueError("hash_algorithm 0 is reserved") + + hasher = dns.zonetypes._digest_hashers.get(self.hash_algorithm) + if hasher and hasher().digest_size != len(self.digest): + raise ValueError("digest length inconsistent with hash algorithm") + + def to_text(self, origin=None, relativize=True, **kw): + kw = kw.copy() + chunksize = kw.pop("chunksize", 128) + return "%d %d %d %s" % ( + self.serial, + self.scheme, + self.hash_algorithm, + dns.rdata._hexify(self.digest, chunksize=chunksize, **kw), + ) + + @classmethod + def from_text( + cls, rdclass, rdtype, tok, origin=None, relativize=True, relativize_to=None + ): + serial = tok.get_uint32() + scheme = tok.get_uint8() + hash_algorithm = tok.get_uint8() + digest = tok.concatenate_remaining_identifiers().encode() + digest = binascii.unhexlify(digest) + return cls(rdclass, rdtype, serial, scheme, hash_algorithm, digest) + + def _to_wire(self, file, compress=None, origin=None, canonicalize=False): + header = struct.pack("!IBB", self.serial, self.scheme, self.hash_algorithm) + file.write(header) + file.write(self.digest) + + @classmethod + def from_wire_parser(cls, rdclass, rdtype, parser, origin=None): + header = parser.get_struct("!IBB") + digest = parser.get_remaining() + return cls(rdclass, rdtype, header[0], header[1], header[2], digest) diff --git a/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/__init__.py b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/__init__.py new file mode 100644 index 0000000..647b215 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rdtypes/ANY/__init__.py @@ -0,0 +1,70 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2003-2007, 2009-2011 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +"""Class ANY (generic) rdata type classes.""" + +__all__ = [ + "AFSDB", + "AMTRELAY", + "AVC", + "CAA", + "CDNSKEY", + "CDS", + "CERT", + "CNAME", + "CSYNC", + "DLV", + "DNAME", + "DNSKEY", + "DS", + "EUI48", + "EUI64", + "GPOS", + "HINFO", + "HIP", + "ISDN", + "L32", + "L64", + "LOC", + "LP", + "MX", + "NID", + "NINFO", + "NS", + "NSEC", + "NSEC3", + "NSEC3PARAM", + "OPENPGPKEY", + "OPT", + "PTR", + "RESINFO", + "RP", + "RRSIG", + "RT", + "SMIMEA", + "SOA", + "SPF", + "SSHFP", + "TKEY", + "TLSA", + "TSIG", + "TXT", + "URI", + "WALLET", + "X25", + "ZONEMD", +] diff --git a/.venv/lib/python3.11/site-packages/dns/rdtypes/CH/A.py b/.venv/lib/python3.11/site-packages/dns/rdtypes/CH/A.py new file mode 100644 index 0000000..832e8d3 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rdtypes/CH/A.py @@ -0,0 +1,59 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2003-2007, 2009-2011 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +import struct + +import dns.immutable +import dns.rdtypes.mxbase + + +@dns.immutable.immutable +class A(dns.rdata.Rdata): + """A record for Chaosnet""" + + # domain: the domain of the address + # address: the 16-bit address + + __slots__ = ["domain", "address"] + + def __init__(self, rdclass, rdtype, domain, address): + super().__init__(rdclass, rdtype) + self.domain = self._as_name(domain) + self.address = self._as_uint16(address) + + def to_text(self, origin=None, relativize=True, **kw): + domain = self.domain.choose_relativity(origin, relativize) + return f"{domain} {self.address:o}" + + @classmethod + def from_text( + cls, rdclass, rdtype, tok, origin=None, relativize=True, relativize_to=None + ): + domain = tok.get_name(origin, relativize, relativize_to) + address = tok.get_uint16(base=8) + return cls(rdclass, rdtype, domain, address) + + def _to_wire(self, file, compress=None, origin=None, canonicalize=False): + self.domain.to_wire(file, compress, origin, canonicalize) + pref = struct.pack("!H", self.address) + file.write(pref) + + @classmethod + def from_wire_parser(cls, rdclass, rdtype, parser, origin=None): + domain = parser.get_name(origin) + address = parser.get_uint16() + return cls(rdclass, rdtype, domain, address) diff --git a/.venv/lib/python3.11/site-packages/dns/rdtypes/CH/__init__.py b/.venv/lib/python3.11/site-packages/dns/rdtypes/CH/__init__.py new file mode 100644 index 0000000..0760c26 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rdtypes/CH/__init__.py @@ -0,0 +1,22 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2003-2007, 2009-2011 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +"""Class CH rdata type classes.""" + +__all__ = [ + "A", +] diff --git a/.venv/lib/python3.11/site-packages/dns/rdtypes/IN/A.py b/.venv/lib/python3.11/site-packages/dns/rdtypes/IN/A.py new file mode 100644 index 0000000..e09d611 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rdtypes/IN/A.py @@ -0,0 +1,51 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2003-2007, 2009-2011 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +import dns.exception +import dns.immutable +import dns.ipv4 +import dns.rdata +import dns.tokenizer + + +@dns.immutable.immutable +class A(dns.rdata.Rdata): + """A record.""" + + __slots__ = ["address"] + + def __init__(self, rdclass, rdtype, address): + super().__init__(rdclass, rdtype) + self.address = self._as_ipv4_address(address) + + def to_text(self, origin=None, relativize=True, **kw): + return self.address + + @classmethod + def from_text( + cls, rdclass, rdtype, tok, origin=None, relativize=True, relativize_to=None + ): + address = tok.get_identifier() + return cls(rdclass, rdtype, address) + + def _to_wire(self, file, compress=None, origin=None, canonicalize=False): + file.write(dns.ipv4.inet_aton(self.address)) + + @classmethod + def from_wire_parser(cls, rdclass, rdtype, parser, origin=None): + address = parser.get_remaining() + return cls(rdclass, rdtype, address) diff --git a/.venv/lib/python3.11/site-packages/dns/rdtypes/IN/AAAA.py b/.venv/lib/python3.11/site-packages/dns/rdtypes/IN/AAAA.py new file mode 100644 index 0000000..0cd139e --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rdtypes/IN/AAAA.py @@ -0,0 +1,51 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2003-2007, 2009-2011 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +import dns.exception +import dns.immutable +import dns.ipv6 +import dns.rdata +import dns.tokenizer + + +@dns.immutable.immutable +class AAAA(dns.rdata.Rdata): + """AAAA record.""" + + __slots__ = ["address"] + + def __init__(self, rdclass, rdtype, address): + super().__init__(rdclass, rdtype) + self.address = self._as_ipv6_address(address) + + def to_text(self, origin=None, relativize=True, **kw): + return self.address + + @classmethod + def from_text( + cls, rdclass, rdtype, tok, origin=None, relativize=True, relativize_to=None + ): + address = tok.get_identifier() + return cls(rdclass, rdtype, address) + + def _to_wire(self, file, compress=None, origin=None, canonicalize=False): + file.write(dns.ipv6.inet_aton(self.address)) + + @classmethod + def from_wire_parser(cls, rdclass, rdtype, parser, origin=None): + address = parser.get_remaining() + return cls(rdclass, rdtype, address) diff --git a/.venv/lib/python3.11/site-packages/dns/rdtypes/IN/APL.py b/.venv/lib/python3.11/site-packages/dns/rdtypes/IN/APL.py new file mode 100644 index 0000000..44cb3fe --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rdtypes/IN/APL.py @@ -0,0 +1,150 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2003-2017 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +import binascii +import codecs +import struct + +import dns.exception +import dns.immutable +import dns.ipv4 +import dns.ipv6 +import dns.rdata +import dns.tokenizer + + +@dns.immutable.immutable +class APLItem: + """An APL list item.""" + + __slots__ = ["family", "negation", "address", "prefix"] + + def __init__(self, family, negation, address, prefix): + self.family = dns.rdata.Rdata._as_uint16(family) + self.negation = dns.rdata.Rdata._as_bool(negation) + if self.family == 1: + self.address = dns.rdata.Rdata._as_ipv4_address(address) + self.prefix = dns.rdata.Rdata._as_int(prefix, 0, 32) + elif self.family == 2: + self.address = dns.rdata.Rdata._as_ipv6_address(address) + self.prefix = dns.rdata.Rdata._as_int(prefix, 0, 128) + else: + self.address = dns.rdata.Rdata._as_bytes(address, max_length=127) + self.prefix = dns.rdata.Rdata._as_uint8(prefix) + + def __str__(self): + if self.negation: + return "!%d:%s/%s" % (self.family, self.address, self.prefix) + else: + return "%d:%s/%s" % (self.family, self.address, self.prefix) + + def to_wire(self, file): + if self.family == 1: + address = dns.ipv4.inet_aton(self.address) + elif self.family == 2: + address = dns.ipv6.inet_aton(self.address) + else: + address = binascii.unhexlify(self.address) + # + # Truncate least significant zero bytes. + # + last = 0 + for i in range(len(address) - 1, -1, -1): + if address[i] != 0: + last = i + 1 + break + address = address[0:last] + l = len(address) + assert l < 128 + if self.negation: + l |= 0x80 + header = struct.pack("!HBB", self.family, self.prefix, l) + file.write(header) + file.write(address) + + +@dns.immutable.immutable +class APL(dns.rdata.Rdata): + """APL record.""" + + # see: RFC 3123 + + __slots__ = ["items"] + + def __init__(self, rdclass, rdtype, items): + super().__init__(rdclass, rdtype) + for item in items: + if not isinstance(item, APLItem): + raise ValueError("item not an APLItem") + self.items = tuple(items) + + def to_text(self, origin=None, relativize=True, **kw): + return " ".join(map(str, self.items)) + + @classmethod + def from_text( + cls, rdclass, rdtype, tok, origin=None, relativize=True, relativize_to=None + ): + items = [] + for token in tok.get_remaining(): + item = token.unescape().value + if item[0] == "!": + negation = True + item = item[1:] + else: + negation = False + (family, rest) = item.split(":", 1) + family = int(family) + (address, prefix) = rest.split("/", 1) + prefix = int(prefix) + item = APLItem(family, negation, address, prefix) + items.append(item) + + return cls(rdclass, rdtype, items) + + def _to_wire(self, file, compress=None, origin=None, canonicalize=False): + for item in self.items: + item.to_wire(file) + + @classmethod + def from_wire_parser(cls, rdclass, rdtype, parser, origin=None): + items = [] + while parser.remaining() > 0: + header = parser.get_struct("!HBB") + afdlen = header[2] + if afdlen > 127: + negation = True + afdlen -= 128 + else: + negation = False + address = parser.get_bytes(afdlen) + l = len(address) + if header[0] == 1: + if l < 4: + address += b"\x00" * (4 - l) + elif header[0] == 2: + if l < 16: + address += b"\x00" * (16 - l) + else: + # + # This isn't really right according to the RFC, but it + # seems better than throwing an exception + # + address = codecs.encode(address, "hex_codec") + item = APLItem(header[0], negation, address, header[1]) + items.append(item) + return cls(rdclass, rdtype, items) diff --git a/.venv/lib/python3.11/site-packages/dns/rdtypes/IN/DHCID.py b/.venv/lib/python3.11/site-packages/dns/rdtypes/IN/DHCID.py new file mode 100644 index 0000000..723492f --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rdtypes/IN/DHCID.py @@ -0,0 +1,54 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2006, 2007, 2009-2011 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +import base64 + +import dns.exception +import dns.immutable +import dns.rdata + + +@dns.immutable.immutable +class DHCID(dns.rdata.Rdata): + """DHCID record""" + + # see: RFC 4701 + + __slots__ = ["data"] + + def __init__(self, rdclass, rdtype, data): + super().__init__(rdclass, rdtype) + self.data = self._as_bytes(data) + + def to_text(self, origin=None, relativize=True, **kw): + return dns.rdata._base64ify(self.data, **kw) + + @classmethod + def from_text( + cls, rdclass, rdtype, tok, origin=None, relativize=True, relativize_to=None + ): + b64 = tok.concatenate_remaining_identifiers().encode() + data = base64.b64decode(b64) + return cls(rdclass, rdtype, data) + + def _to_wire(self, file, compress=None, origin=None, canonicalize=False): + file.write(self.data) + + @classmethod + def from_wire_parser(cls, rdclass, rdtype, parser, origin=None): + data = parser.get_remaining() + return cls(rdclass, rdtype, data) diff --git a/.venv/lib/python3.11/site-packages/dns/rdtypes/IN/HTTPS.py b/.venv/lib/python3.11/site-packages/dns/rdtypes/IN/HTTPS.py new file mode 100644 index 0000000..15464cb --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rdtypes/IN/HTTPS.py @@ -0,0 +1,9 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +import dns.immutable +import dns.rdtypes.svcbbase + + +@dns.immutable.immutable +class HTTPS(dns.rdtypes.svcbbase.SVCBBase): + """HTTPS record""" diff --git a/.venv/lib/python3.11/site-packages/dns/rdtypes/IN/IPSECKEY.py b/.venv/lib/python3.11/site-packages/dns/rdtypes/IN/IPSECKEY.py new file mode 100644 index 0000000..e3a6615 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rdtypes/IN/IPSECKEY.py @@ -0,0 +1,91 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2006, 2007, 2009-2011 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +import base64 +import struct + +import dns.exception +import dns.immutable +import dns.rdtypes.util + + +class Gateway(dns.rdtypes.util.Gateway): + name = "IPSECKEY gateway" + + +@dns.immutable.immutable +class IPSECKEY(dns.rdata.Rdata): + """IPSECKEY record""" + + # see: RFC 4025 + + __slots__ = ["precedence", "gateway_type", "algorithm", "gateway", "key"] + + def __init__( + self, rdclass, rdtype, precedence, gateway_type, algorithm, gateway, key + ): + super().__init__(rdclass, rdtype) + gateway = Gateway(gateway_type, gateway) + self.precedence = self._as_uint8(precedence) + self.gateway_type = gateway.type + self.algorithm = self._as_uint8(algorithm) + self.gateway = gateway.gateway + self.key = self._as_bytes(key) + + def to_text(self, origin=None, relativize=True, **kw): + gateway = Gateway(self.gateway_type, self.gateway).to_text(origin, relativize) + return "%d %d %d %s %s" % ( + self.precedence, + self.gateway_type, + self.algorithm, + gateway, + dns.rdata._base64ify(self.key, **kw), + ) + + @classmethod + def from_text( + cls, rdclass, rdtype, tok, origin=None, relativize=True, relativize_to=None + ): + precedence = tok.get_uint8() + gateway_type = tok.get_uint8() + algorithm = tok.get_uint8() + gateway = Gateway.from_text( + gateway_type, tok, origin, relativize, relativize_to + ) + b64 = tok.concatenate_remaining_identifiers().encode() + key = base64.b64decode(b64) + return cls( + rdclass, rdtype, precedence, gateway_type, algorithm, gateway.gateway, key + ) + + def _to_wire(self, file, compress=None, origin=None, canonicalize=False): + header = struct.pack("!BBB", self.precedence, self.gateway_type, self.algorithm) + file.write(header) + Gateway(self.gateway_type, self.gateway).to_wire( + file, compress, origin, canonicalize + ) + file.write(self.key) + + @classmethod + def from_wire_parser(cls, rdclass, rdtype, parser, origin=None): + header = parser.get_struct("!BBB") + gateway_type = header[1] + gateway = Gateway.from_wire_parser(gateway_type, parser, origin) + key = parser.get_remaining() + return cls( + rdclass, rdtype, header[0], gateway_type, header[2], gateway.gateway, key + ) diff --git a/.venv/lib/python3.11/site-packages/dns/rdtypes/IN/KX.py b/.venv/lib/python3.11/site-packages/dns/rdtypes/IN/KX.py new file mode 100644 index 0000000..6073df4 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rdtypes/IN/KX.py @@ -0,0 +1,24 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2003-2007, 2009-2011 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +import dns.immutable +import dns.rdtypes.mxbase + + +@dns.immutable.immutable +class KX(dns.rdtypes.mxbase.UncompressedDowncasingMX): + """KX record""" diff --git a/.venv/lib/python3.11/site-packages/dns/rdtypes/IN/NAPTR.py b/.venv/lib/python3.11/site-packages/dns/rdtypes/IN/NAPTR.py new file mode 100644 index 0000000..195d1cb --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rdtypes/IN/NAPTR.py @@ -0,0 +1,110 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2003-2007, 2009-2011 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +import struct + +import dns.exception +import dns.immutable +import dns.name +import dns.rdata +import dns.rdtypes.util + + +def _write_string(file, s): + l = len(s) + assert l < 256 + file.write(struct.pack("!B", l)) + file.write(s) + + +@dns.immutable.immutable +class NAPTR(dns.rdata.Rdata): + """NAPTR record""" + + # see: RFC 3403 + + __slots__ = ["order", "preference", "flags", "service", "regexp", "replacement"] + + def __init__( + self, rdclass, rdtype, order, preference, flags, service, regexp, replacement + ): + super().__init__(rdclass, rdtype) + self.flags = self._as_bytes(flags, True, 255) + self.service = self._as_bytes(service, True, 255) + self.regexp = self._as_bytes(regexp, True, 255) + self.order = self._as_uint16(order) + self.preference = self._as_uint16(preference) + self.replacement = self._as_name(replacement) + + def to_text(self, origin=None, relativize=True, **kw): + replacement = self.replacement.choose_relativity(origin, relativize) + return '%d %d "%s" "%s" "%s" %s' % ( + self.order, + self.preference, + dns.rdata._escapify(self.flags), + dns.rdata._escapify(self.service), + dns.rdata._escapify(self.regexp), + replacement, + ) + + @classmethod + def from_text( + cls, rdclass, rdtype, tok, origin=None, relativize=True, relativize_to=None + ): + order = tok.get_uint16() + preference = tok.get_uint16() + flags = tok.get_string() + service = tok.get_string() + regexp = tok.get_string() + replacement = tok.get_name(origin, relativize, relativize_to) + return cls( + rdclass, rdtype, order, preference, flags, service, regexp, replacement + ) + + def _to_wire(self, file, compress=None, origin=None, canonicalize=False): + two_ints = struct.pack("!HH", self.order, self.preference) + file.write(two_ints) + _write_string(file, self.flags) + _write_string(file, self.service) + _write_string(file, self.regexp) + self.replacement.to_wire(file, compress, origin, canonicalize) + + @classmethod + def from_wire_parser(cls, rdclass, rdtype, parser, origin=None): + (order, preference) = parser.get_struct("!HH") + strings = [] + for _ in range(3): + s = parser.get_counted_bytes() + strings.append(s) + replacement = parser.get_name(origin) + return cls( + rdclass, + rdtype, + order, + preference, + strings[0], + strings[1], + strings[2], + replacement, + ) + + def _processing_priority(self): + return (self.order, self.preference) + + @classmethod + def _processing_order(cls, iterable): + return dns.rdtypes.util.priority_processing_order(iterable) diff --git a/.venv/lib/python3.11/site-packages/dns/rdtypes/IN/NSAP.py b/.venv/lib/python3.11/site-packages/dns/rdtypes/IN/NSAP.py new file mode 100644 index 0000000..d55edb7 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rdtypes/IN/NSAP.py @@ -0,0 +1,60 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2003-2007, 2009-2011 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +import binascii + +import dns.exception +import dns.immutable +import dns.rdata +import dns.tokenizer + + +@dns.immutable.immutable +class NSAP(dns.rdata.Rdata): + """NSAP record.""" + + # see: RFC 1706 + + __slots__ = ["address"] + + def __init__(self, rdclass, rdtype, address): + super().__init__(rdclass, rdtype) + self.address = self._as_bytes(address) + + def to_text(self, origin=None, relativize=True, **kw): + return f"0x{binascii.hexlify(self.address).decode()}" + + @classmethod + def from_text( + cls, rdclass, rdtype, tok, origin=None, relativize=True, relativize_to=None + ): + address = tok.get_string() + if address[0:2] != "0x": + raise dns.exception.SyntaxError("string does not start with 0x") + address = address[2:].replace(".", "") + if len(address) % 2 != 0: + raise dns.exception.SyntaxError("hexstring has odd length") + address = binascii.unhexlify(address.encode()) + return cls(rdclass, rdtype, address) + + def _to_wire(self, file, compress=None, origin=None, canonicalize=False): + file.write(self.address) + + @classmethod + def from_wire_parser(cls, rdclass, rdtype, parser, origin=None): + address = parser.get_remaining() + return cls(rdclass, rdtype, address) diff --git a/.venv/lib/python3.11/site-packages/dns/rdtypes/IN/NSAP_PTR.py b/.venv/lib/python3.11/site-packages/dns/rdtypes/IN/NSAP_PTR.py new file mode 100644 index 0000000..ce1c663 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rdtypes/IN/NSAP_PTR.py @@ -0,0 +1,24 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2003-2007, 2009-2011 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +import dns.immutable +import dns.rdtypes.nsbase + + +@dns.immutable.immutable +class NSAP_PTR(dns.rdtypes.nsbase.UncompressedNS): + """NSAP-PTR record""" diff --git a/.venv/lib/python3.11/site-packages/dns/rdtypes/IN/PX.py b/.venv/lib/python3.11/site-packages/dns/rdtypes/IN/PX.py new file mode 100644 index 0000000..cdca153 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rdtypes/IN/PX.py @@ -0,0 +1,73 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2003-2007, 2009-2011 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +import struct + +import dns.exception +import dns.immutable +import dns.name +import dns.rdata +import dns.rdtypes.util + + +@dns.immutable.immutable +class PX(dns.rdata.Rdata): + """PX record.""" + + # see: RFC 2163 + + __slots__ = ["preference", "map822", "mapx400"] + + def __init__(self, rdclass, rdtype, preference, map822, mapx400): + super().__init__(rdclass, rdtype) + self.preference = self._as_uint16(preference) + self.map822 = self._as_name(map822) + self.mapx400 = self._as_name(mapx400) + + def to_text(self, origin=None, relativize=True, **kw): + map822 = self.map822.choose_relativity(origin, relativize) + mapx400 = self.mapx400.choose_relativity(origin, relativize) + return "%d %s %s" % (self.preference, map822, mapx400) + + @classmethod + def from_text( + cls, rdclass, rdtype, tok, origin=None, relativize=True, relativize_to=None + ): + preference = tok.get_uint16() + map822 = tok.get_name(origin, relativize, relativize_to) + mapx400 = tok.get_name(origin, relativize, relativize_to) + return cls(rdclass, rdtype, preference, map822, mapx400) + + def _to_wire(self, file, compress=None, origin=None, canonicalize=False): + pref = struct.pack("!H", self.preference) + file.write(pref) + self.map822.to_wire(file, None, origin, canonicalize) + self.mapx400.to_wire(file, None, origin, canonicalize) + + @classmethod + def from_wire_parser(cls, rdclass, rdtype, parser, origin=None): + preference = parser.get_uint16() + map822 = parser.get_name(origin) + mapx400 = parser.get_name(origin) + return cls(rdclass, rdtype, preference, map822, mapx400) + + def _processing_priority(self): + return self.preference + + @classmethod + def _processing_order(cls, iterable): + return dns.rdtypes.util.priority_processing_order(iterable) diff --git a/.venv/lib/python3.11/site-packages/dns/rdtypes/IN/SRV.py b/.venv/lib/python3.11/site-packages/dns/rdtypes/IN/SRV.py new file mode 100644 index 0000000..5adef98 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rdtypes/IN/SRV.py @@ -0,0 +1,75 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2003-2007, 2009-2011 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +import struct + +import dns.exception +import dns.immutable +import dns.name +import dns.rdata +import dns.rdtypes.util + + +@dns.immutable.immutable +class SRV(dns.rdata.Rdata): + """SRV record""" + + # see: RFC 2782 + + __slots__ = ["priority", "weight", "port", "target"] + + def __init__(self, rdclass, rdtype, priority, weight, port, target): + super().__init__(rdclass, rdtype) + self.priority = self._as_uint16(priority) + self.weight = self._as_uint16(weight) + self.port = self._as_uint16(port) + self.target = self._as_name(target) + + def to_text(self, origin=None, relativize=True, **kw): + target = self.target.choose_relativity(origin, relativize) + return "%d %d %d %s" % (self.priority, self.weight, self.port, target) + + @classmethod + def from_text( + cls, rdclass, rdtype, tok, origin=None, relativize=True, relativize_to=None + ): + priority = tok.get_uint16() + weight = tok.get_uint16() + port = tok.get_uint16() + target = tok.get_name(origin, relativize, relativize_to) + return cls(rdclass, rdtype, priority, weight, port, target) + + def _to_wire(self, file, compress=None, origin=None, canonicalize=False): + three_ints = struct.pack("!HHH", self.priority, self.weight, self.port) + file.write(three_ints) + self.target.to_wire(file, compress, origin, canonicalize) + + @classmethod + def from_wire_parser(cls, rdclass, rdtype, parser, origin=None): + (priority, weight, port) = parser.get_struct("!HHH") + target = parser.get_name(origin) + return cls(rdclass, rdtype, priority, weight, port, target) + + def _processing_priority(self): + return self.priority + + def _processing_weight(self): + return self.weight + + @classmethod + def _processing_order(cls, iterable): + return dns.rdtypes.util.weighted_processing_order(iterable) diff --git a/.venv/lib/python3.11/site-packages/dns/rdtypes/IN/SVCB.py b/.venv/lib/python3.11/site-packages/dns/rdtypes/IN/SVCB.py new file mode 100644 index 0000000..ff3e932 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rdtypes/IN/SVCB.py @@ -0,0 +1,9 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +import dns.immutable +import dns.rdtypes.svcbbase + + +@dns.immutable.immutable +class SVCB(dns.rdtypes.svcbbase.SVCBBase): + """SVCB record""" diff --git a/.venv/lib/python3.11/site-packages/dns/rdtypes/IN/WKS.py b/.venv/lib/python3.11/site-packages/dns/rdtypes/IN/WKS.py new file mode 100644 index 0000000..881a784 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rdtypes/IN/WKS.py @@ -0,0 +1,100 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2003-2007, 2009-2011 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +import socket +import struct + +import dns.immutable +import dns.ipv4 +import dns.rdata + +try: + _proto_tcp = socket.getprotobyname("tcp") + _proto_udp = socket.getprotobyname("udp") +except OSError: + # Fall back to defaults in case /etc/protocols is unavailable. + _proto_tcp = 6 + _proto_udp = 17 + + +@dns.immutable.immutable +class WKS(dns.rdata.Rdata): + """WKS record""" + + # see: RFC 1035 + + __slots__ = ["address", "protocol", "bitmap"] + + def __init__(self, rdclass, rdtype, address, protocol, bitmap): + super().__init__(rdclass, rdtype) + self.address = self._as_ipv4_address(address) + self.protocol = self._as_uint8(protocol) + self.bitmap = self._as_bytes(bitmap) + + def to_text(self, origin=None, relativize=True, **kw): + bits = [] + for i, byte in enumerate(self.bitmap): + for j in range(0, 8): + if byte & (0x80 >> j): + bits.append(str(i * 8 + j)) + text = " ".join(bits) + return "%s %d %s" % (self.address, self.protocol, text) + + @classmethod + def from_text( + cls, rdclass, rdtype, tok, origin=None, relativize=True, relativize_to=None + ): + address = tok.get_string() + protocol = tok.get_string() + if protocol.isdigit(): + protocol = int(protocol) + else: + protocol = socket.getprotobyname(protocol) + bitmap = bytearray() + for token in tok.get_remaining(): + value = token.unescape().value + if value.isdigit(): + serv = int(value) + else: + if protocol != _proto_udp and protocol != _proto_tcp: + raise NotImplementedError("protocol must be TCP or UDP") + if protocol == _proto_udp: + protocol_text = "udp" + else: + protocol_text = "tcp" + serv = socket.getservbyname(value, protocol_text) + i = serv // 8 + l = len(bitmap) + if l < i + 1: + for _ in range(l, i + 1): + bitmap.append(0) + bitmap[i] = bitmap[i] | (0x80 >> (serv % 8)) + bitmap = dns.rdata._truncate_bitmap(bitmap) + return cls(rdclass, rdtype, address, protocol, bitmap) + + def _to_wire(self, file, compress=None, origin=None, canonicalize=False): + file.write(dns.ipv4.inet_aton(self.address)) + protocol = struct.pack("!B", self.protocol) + file.write(protocol) + file.write(self.bitmap) + + @classmethod + def from_wire_parser(cls, rdclass, rdtype, parser, origin=None): + address = parser.get_bytes(4) + protocol = parser.get_uint8() + bitmap = parser.get_remaining() + return cls(rdclass, rdtype, address, protocol, bitmap) diff --git a/.venv/lib/python3.11/site-packages/dns/rdtypes/IN/__init__.py b/.venv/lib/python3.11/site-packages/dns/rdtypes/IN/__init__.py new file mode 100644 index 0000000..dcec4dd --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rdtypes/IN/__init__.py @@ -0,0 +1,35 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2003-2007, 2009-2011 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +"""Class IN rdata type classes.""" + +__all__ = [ + "A", + "AAAA", + "APL", + "DHCID", + "HTTPS", + "IPSECKEY", + "KX", + "NAPTR", + "NSAP", + "NSAP_PTR", + "PX", + "SRV", + "SVCB", + "WKS", +] diff --git a/.venv/lib/python3.11/site-packages/dns/rdtypes/__init__.py b/.venv/lib/python3.11/site-packages/dns/rdtypes/__init__.py new file mode 100644 index 0000000..3997f84 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rdtypes/__init__.py @@ -0,0 +1,33 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2003-2007, 2009-2011 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +"""DNS rdata type classes""" + +__all__ = [ + "ANY", + "IN", + "CH", + "dnskeybase", + "dsbase", + "euibase", + "mxbase", + "nsbase", + "svcbbase", + "tlsabase", + "txtbase", + "util", +] diff --git a/.venv/lib/python3.11/site-packages/dns/rdtypes/dnskeybase.py b/.venv/lib/python3.11/site-packages/dns/rdtypes/dnskeybase.py new file mode 100644 index 0000000..db300f8 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rdtypes/dnskeybase.py @@ -0,0 +1,87 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2004-2007, 2009-2011 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +import base64 +import enum +import struct + +import dns.dnssectypes +import dns.exception +import dns.immutable +import dns.rdata + +# wildcard import +__all__ = ["SEP", "REVOKE", "ZONE"] # noqa: F822 + + +class Flag(enum.IntFlag): + SEP = 0x0001 + REVOKE = 0x0080 + ZONE = 0x0100 + + +@dns.immutable.immutable +class DNSKEYBase(dns.rdata.Rdata): + """Base class for rdata that is like a DNSKEY record""" + + __slots__ = ["flags", "protocol", "algorithm", "key"] + + def __init__(self, rdclass, rdtype, flags, protocol, algorithm, key): + super().__init__(rdclass, rdtype) + self.flags = Flag(self._as_uint16(flags)) + self.protocol = self._as_uint8(protocol) + self.algorithm = dns.dnssectypes.Algorithm.make(algorithm) + self.key = self._as_bytes(key) + + def to_text(self, origin=None, relativize=True, **kw): + return "%d %d %d %s" % ( + self.flags, + self.protocol, + self.algorithm, + dns.rdata._base64ify(self.key, **kw), + ) + + @classmethod + def from_text( + cls, rdclass, rdtype, tok, origin=None, relativize=True, relativize_to=None + ): + flags = tok.get_uint16() + protocol = tok.get_uint8() + algorithm = tok.get_string() + b64 = tok.concatenate_remaining_identifiers().encode() + key = base64.b64decode(b64) + return cls(rdclass, rdtype, flags, protocol, algorithm, key) + + def _to_wire(self, file, compress=None, origin=None, canonicalize=False): + header = struct.pack("!HBB", self.flags, self.protocol, self.algorithm) + file.write(header) + file.write(self.key) + + @classmethod + def from_wire_parser(cls, rdclass, rdtype, parser, origin=None): + header = parser.get_struct("!HBB") + key = parser.get_remaining() + return cls(rdclass, rdtype, header[0], header[1], header[2], key) + + +### BEGIN generated Flag constants + +SEP = Flag.SEP +REVOKE = Flag.REVOKE +ZONE = Flag.ZONE + +### END generated Flag constants diff --git a/.venv/lib/python3.11/site-packages/dns/rdtypes/dsbase.py b/.venv/lib/python3.11/site-packages/dns/rdtypes/dsbase.py new file mode 100644 index 0000000..cd21f02 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rdtypes/dsbase.py @@ -0,0 +1,85 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2010, 2011 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +import binascii +import struct + +import dns.dnssectypes +import dns.immutable +import dns.rdata +import dns.rdatatype + + +@dns.immutable.immutable +class DSBase(dns.rdata.Rdata): + """Base class for rdata that is like a DS record""" + + __slots__ = ["key_tag", "algorithm", "digest_type", "digest"] + + # Digest types registry: + # https://www.iana.org/assignments/ds-rr-types/ds-rr-types.xhtml + _digest_length_by_type = { + 1: 20, # SHA-1, RFC 3658 Sec. 2.4 + 2: 32, # SHA-256, RFC 4509 Sec. 2.2 + 3: 32, # GOST R 34.11-94, RFC 5933 Sec. 4 in conjunction with RFC 4490 Sec. 2.1 + 4: 48, # SHA-384, RFC 6605 Sec. 2 + } + + def __init__(self, rdclass, rdtype, key_tag, algorithm, digest_type, digest): + super().__init__(rdclass, rdtype) + self.key_tag = self._as_uint16(key_tag) + self.algorithm = dns.dnssectypes.Algorithm.make(algorithm) + self.digest_type = dns.dnssectypes.DSDigest.make(self._as_uint8(digest_type)) + self.digest = self._as_bytes(digest) + try: + if len(self.digest) != self._digest_length_by_type[self.digest_type]: + raise ValueError("digest length inconsistent with digest type") + except KeyError: + if self.digest_type == 0: # reserved, RFC 3658 Sec. 2.4 + raise ValueError("digest type 0 is reserved") + + def to_text(self, origin=None, relativize=True, **kw): + kw = kw.copy() + chunksize = kw.pop("chunksize", 128) + return "%d %d %d %s" % ( + self.key_tag, + self.algorithm, + self.digest_type, + dns.rdata._hexify(self.digest, chunksize=chunksize, **kw), + ) + + @classmethod + def from_text( + cls, rdclass, rdtype, tok, origin=None, relativize=True, relativize_to=None + ): + key_tag = tok.get_uint16() + algorithm = tok.get_string() + digest_type = tok.get_uint8() + digest = tok.concatenate_remaining_identifiers().encode() + digest = binascii.unhexlify(digest) + return cls(rdclass, rdtype, key_tag, algorithm, digest_type, digest) + + def _to_wire(self, file, compress=None, origin=None, canonicalize=False): + header = struct.pack("!HBB", self.key_tag, self.algorithm, self.digest_type) + file.write(header) + file.write(self.digest) + + @classmethod + def from_wire_parser(cls, rdclass, rdtype, parser, origin=None): + header = parser.get_struct("!HBB") + digest = parser.get_remaining() + return cls(rdclass, rdtype, header[0], header[1], header[2], digest) diff --git a/.venv/lib/python3.11/site-packages/dns/rdtypes/euibase.py b/.venv/lib/python3.11/site-packages/dns/rdtypes/euibase.py new file mode 100644 index 0000000..a39c166 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rdtypes/euibase.py @@ -0,0 +1,70 @@ +# Copyright (C) 2015 Red Hat, Inc. +# Author: Petr Spacek +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED 'AS IS' AND RED HAT DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +import binascii + +import dns.immutable +import dns.rdata + + +@dns.immutable.immutable +class EUIBase(dns.rdata.Rdata): + """EUIxx record""" + + # see: rfc7043.txt + + __slots__ = ["eui"] + # define these in subclasses + # byte_len = 6 # 0123456789ab (in hex) + # text_len = byte_len * 3 - 1 # 01-23-45-67-89-ab + + def __init__(self, rdclass, rdtype, eui): + super().__init__(rdclass, rdtype) + self.eui = self._as_bytes(eui) + if len(self.eui) != self.byte_len: + raise dns.exception.FormError( + f"EUI{self.byte_len * 8} rdata has to have {self.byte_len} bytes" + ) + + def to_text(self, origin=None, relativize=True, **kw): + return dns.rdata._hexify(self.eui, chunksize=2, separator=b"-", **kw) + + @classmethod + def from_text( + cls, rdclass, rdtype, tok, origin=None, relativize=True, relativize_to=None + ): + text = tok.get_string() + if len(text) != cls.text_len: + raise dns.exception.SyntaxError( + f"Input text must have {cls.text_len} characters" + ) + for i in range(2, cls.byte_len * 3 - 1, 3): + if text[i] != "-": + raise dns.exception.SyntaxError(f"Dash expected at position {i}") + text = text.replace("-", "") + try: + data = binascii.unhexlify(text.encode()) + except (ValueError, TypeError) as ex: + raise dns.exception.SyntaxError(f"Hex decoding error: {str(ex)}") + return cls(rdclass, rdtype, data) + + def _to_wire(self, file, compress=None, origin=None, canonicalize=False): + file.write(self.eui) + + @classmethod + def from_wire_parser(cls, rdclass, rdtype, parser, origin=None): + eui = parser.get_bytes(cls.byte_len) + return cls(rdclass, rdtype, eui) diff --git a/.venv/lib/python3.11/site-packages/dns/rdtypes/mxbase.py b/.venv/lib/python3.11/site-packages/dns/rdtypes/mxbase.py new file mode 100644 index 0000000..6d5e3d8 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rdtypes/mxbase.py @@ -0,0 +1,87 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2003-2007, 2009-2011 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +"""MX-like base classes.""" + +import struct + +import dns.exception +import dns.immutable +import dns.name +import dns.rdata +import dns.rdtypes.util + + +@dns.immutable.immutable +class MXBase(dns.rdata.Rdata): + """Base class for rdata that is like an MX record.""" + + __slots__ = ["preference", "exchange"] + + def __init__(self, rdclass, rdtype, preference, exchange): + super().__init__(rdclass, rdtype) + self.preference = self._as_uint16(preference) + self.exchange = self._as_name(exchange) + + def to_text(self, origin=None, relativize=True, **kw): + exchange = self.exchange.choose_relativity(origin, relativize) + return "%d %s" % (self.preference, exchange) + + @classmethod + def from_text( + cls, rdclass, rdtype, tok, origin=None, relativize=True, relativize_to=None + ): + preference = tok.get_uint16() + exchange = tok.get_name(origin, relativize, relativize_to) + return cls(rdclass, rdtype, preference, exchange) + + def _to_wire(self, file, compress=None, origin=None, canonicalize=False): + pref = struct.pack("!H", self.preference) + file.write(pref) + self.exchange.to_wire(file, compress, origin, canonicalize) + + @classmethod + def from_wire_parser(cls, rdclass, rdtype, parser, origin=None): + preference = parser.get_uint16() + exchange = parser.get_name(origin) + return cls(rdclass, rdtype, preference, exchange) + + def _processing_priority(self): + return self.preference + + @classmethod + def _processing_order(cls, iterable): + return dns.rdtypes.util.priority_processing_order(iterable) + + +@dns.immutable.immutable +class UncompressedMX(MXBase): + """Base class for rdata that is like an MX record, but whose name + is not compressed when converted to DNS wire format, and whose + digestable form is not downcased.""" + + def _to_wire(self, file, compress=None, origin=None, canonicalize=False): + super()._to_wire(file, None, origin, False) + + +@dns.immutable.immutable +class UncompressedDowncasingMX(MXBase): + """Base class for rdata that is like an MX record, but whose name + is not compressed when convert to DNS wire format.""" + + def _to_wire(self, file, compress=None, origin=None, canonicalize=False): + super()._to_wire(file, None, origin, canonicalize) diff --git a/.venv/lib/python3.11/site-packages/dns/rdtypes/nsbase.py b/.venv/lib/python3.11/site-packages/dns/rdtypes/nsbase.py new file mode 100644 index 0000000..904224f --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rdtypes/nsbase.py @@ -0,0 +1,63 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2003-2007, 2009-2011 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +"""NS-like base classes.""" + +import dns.exception +import dns.immutable +import dns.name +import dns.rdata + + +@dns.immutable.immutable +class NSBase(dns.rdata.Rdata): + """Base class for rdata that is like an NS record.""" + + __slots__ = ["target"] + + def __init__(self, rdclass, rdtype, target): + super().__init__(rdclass, rdtype) + self.target = self._as_name(target) + + def to_text(self, origin=None, relativize=True, **kw): + target = self.target.choose_relativity(origin, relativize) + return str(target) + + @classmethod + def from_text( + cls, rdclass, rdtype, tok, origin=None, relativize=True, relativize_to=None + ): + target = tok.get_name(origin, relativize, relativize_to) + return cls(rdclass, rdtype, target) + + def _to_wire(self, file, compress=None, origin=None, canonicalize=False): + self.target.to_wire(file, compress, origin, canonicalize) + + @classmethod + def from_wire_parser(cls, rdclass, rdtype, parser, origin=None): + target = parser.get_name(origin) + return cls(rdclass, rdtype, target) + + +@dns.immutable.immutable +class UncompressedNS(NSBase): + """Base class for rdata that is like an NS record, but whose name + is not compressed when convert to DNS wire format, and whose + digestable form is not downcased.""" + + def _to_wire(self, file, compress=None, origin=None, canonicalize=False): + self.target.to_wire(file, None, origin, False) diff --git a/.venv/lib/python3.11/site-packages/dns/rdtypes/svcbbase.py b/.venv/lib/python3.11/site-packages/dns/rdtypes/svcbbase.py new file mode 100644 index 0000000..a2b15b9 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rdtypes/svcbbase.py @@ -0,0 +1,585 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +import base64 +import enum +import struct + +import dns.enum +import dns.exception +import dns.immutable +import dns.ipv4 +import dns.ipv6 +import dns.name +import dns.rdata +import dns.rdtypes.util +import dns.renderer +import dns.tokenizer +import dns.wire + +# Until there is an RFC, this module is experimental and may be changed in +# incompatible ways. + + +class UnknownParamKey(dns.exception.DNSException): + """Unknown SVCB ParamKey""" + + +class ParamKey(dns.enum.IntEnum): + """SVCB ParamKey""" + + MANDATORY = 0 + ALPN = 1 + NO_DEFAULT_ALPN = 2 + PORT = 3 + IPV4HINT = 4 + ECH = 5 + IPV6HINT = 6 + DOHPATH = 7 + OHTTP = 8 + + @classmethod + def _maximum(cls): + return 65535 + + @classmethod + def _short_name(cls): + return "SVCBParamKey" + + @classmethod + def _prefix(cls): + return "KEY" + + @classmethod + def _unknown_exception_class(cls): + return UnknownParamKey + + +class Emptiness(enum.IntEnum): + NEVER = 0 + ALWAYS = 1 + ALLOWED = 2 + + +def _validate_key(key): + force_generic = False + if isinstance(key, bytes): + # We decode to latin-1 so we get 0-255 as valid and do NOT interpret + # UTF-8 sequences + key = key.decode("latin-1") + if isinstance(key, str): + if key.lower().startswith("key"): + force_generic = True + if key[3:].startswith("0") and len(key) != 4: + # key has leading zeros + raise ValueError("leading zeros in key") + key = key.replace("-", "_") + return (ParamKey.make(key), force_generic) + + +def key_to_text(key): + return ParamKey.to_text(key).replace("_", "-").lower() + + +# Like rdata escapify, but escapes ',' too. + +_escaped = b'",\\' + + +def _escapify(qstring): + text = "" + for c in qstring: + if c in _escaped: + text += "\\" + chr(c) + elif c >= 0x20 and c < 0x7F: + text += chr(c) + else: + text += "\\%03d" % c + return text + + +def _unescape(value): + if value == "": + return value + unescaped = b"" + l = len(value) + i = 0 + while i < l: + c = value[i] + i += 1 + if c == "\\": + if i >= l: # pragma: no cover (can't happen via tokenizer get()) + raise dns.exception.UnexpectedEnd + c = value[i] + i += 1 + if c.isdigit(): + if i >= l: + raise dns.exception.UnexpectedEnd + c2 = value[i] + i += 1 + if i >= l: + raise dns.exception.UnexpectedEnd + c3 = value[i] + i += 1 + if not (c2.isdigit() and c3.isdigit()): + raise dns.exception.SyntaxError + codepoint = int(c) * 100 + int(c2) * 10 + int(c3) + if codepoint > 255: + raise dns.exception.SyntaxError + unescaped += b"%c" % (codepoint) + continue + unescaped += c.encode() + return unescaped + + +def _split(value): + l = len(value) + i = 0 + items = [] + unescaped = b"" + while i < l: + c = value[i] + i += 1 + if c == ord("\\"): + if i >= l: # pragma: no cover (can't happen via tokenizer get()) + raise dns.exception.UnexpectedEnd + c = value[i] + i += 1 + unescaped += b"%c" % (c) + elif c == ord(","): + items.append(unescaped) + unescaped = b"" + else: + unescaped += b"%c" % (c) + items.append(unescaped) + return items + + +@dns.immutable.immutable +class Param: + """Abstract base class for SVCB parameters""" + + @classmethod + def emptiness(cls): + return Emptiness.NEVER + + +@dns.immutable.immutable +class GenericParam(Param): + """Generic SVCB parameter""" + + def __init__(self, value): + self.value = dns.rdata.Rdata._as_bytes(value, True) + + @classmethod + def emptiness(cls): + return Emptiness.ALLOWED + + @classmethod + def from_value(cls, value): + if value is None or len(value) == 0: + return None + else: + return cls(_unescape(value)) + + def to_text(self): + return '"' + dns.rdata._escapify(self.value) + '"' + + @classmethod + def from_wire_parser(cls, parser, origin=None): # pylint: disable=W0613 + value = parser.get_bytes(parser.remaining()) + if len(value) == 0: + return None + else: + return cls(value) + + def to_wire(self, file, origin=None): # pylint: disable=W0613 + file.write(self.value) + + +@dns.immutable.immutable +class MandatoryParam(Param): + def __init__(self, keys): + # check for duplicates + keys = sorted([_validate_key(key)[0] for key in keys]) + prior_k = None + for k in keys: + if k == prior_k: + raise ValueError(f"duplicate key {k:d}") + prior_k = k + if k == ParamKey.MANDATORY: + raise ValueError("listed the mandatory key as mandatory") + self.keys = tuple(keys) + + @classmethod + def from_value(cls, value): + keys = [k.encode() for k in value.split(",")] + return cls(keys) + + def to_text(self): + return '"' + ",".join([key_to_text(key) for key in self.keys]) + '"' + + @classmethod + def from_wire_parser(cls, parser, origin=None): # pylint: disable=W0613 + keys = [] + last_key = -1 + while parser.remaining() > 0: + key = parser.get_uint16() + if key < last_key: + raise dns.exception.FormError("manadatory keys not ascending") + last_key = key + keys.append(key) + return cls(keys) + + def to_wire(self, file, origin=None): # pylint: disable=W0613 + for key in self.keys: + file.write(struct.pack("!H", key)) + + +@dns.immutable.immutable +class ALPNParam(Param): + def __init__(self, ids): + self.ids = dns.rdata.Rdata._as_tuple( + ids, lambda x: dns.rdata.Rdata._as_bytes(x, True, 255, False) + ) + + @classmethod + def from_value(cls, value): + return cls(_split(_unescape(value))) + + def to_text(self): + value = ",".join([_escapify(id) for id in self.ids]) + return '"' + dns.rdata._escapify(value.encode()) + '"' + + @classmethod + def from_wire_parser(cls, parser, origin=None): # pylint: disable=W0613 + ids = [] + while parser.remaining() > 0: + id = parser.get_counted_bytes() + ids.append(id) + return cls(ids) + + def to_wire(self, file, origin=None): # pylint: disable=W0613 + for id in self.ids: + file.write(struct.pack("!B", len(id))) + file.write(id) + + +@dns.immutable.immutable +class NoDefaultALPNParam(Param): + # We don't ever expect to instantiate this class, but we need + # a from_value() and a from_wire_parser(), so we just return None + # from the class methods when things are OK. + + @classmethod + def emptiness(cls): + return Emptiness.ALWAYS + + @classmethod + def from_value(cls, value): + if value is None or value == "": + return None + else: + raise ValueError("no-default-alpn with non-empty value") + + def to_text(self): + raise NotImplementedError # pragma: no cover + + @classmethod + def from_wire_parser(cls, parser, origin=None): # pylint: disable=W0613 + if parser.remaining() != 0: + raise dns.exception.FormError + return None + + def to_wire(self, file, origin=None): # pylint: disable=W0613 + raise NotImplementedError # pragma: no cover + + +@dns.immutable.immutable +class PortParam(Param): + def __init__(self, port): + self.port = dns.rdata.Rdata._as_uint16(port) + + @classmethod + def from_value(cls, value): + value = int(value) + return cls(value) + + def to_text(self): + return f'"{self.port}"' + + @classmethod + def from_wire_parser(cls, parser, origin=None): # pylint: disable=W0613 + port = parser.get_uint16() + return cls(port) + + def to_wire(self, file, origin=None): # pylint: disable=W0613 + file.write(struct.pack("!H", self.port)) + + +@dns.immutable.immutable +class IPv4HintParam(Param): + def __init__(self, addresses): + self.addresses = dns.rdata.Rdata._as_tuple( + addresses, dns.rdata.Rdata._as_ipv4_address + ) + + @classmethod + def from_value(cls, value): + addresses = value.split(",") + return cls(addresses) + + def to_text(self): + return '"' + ",".join(self.addresses) + '"' + + @classmethod + def from_wire_parser(cls, parser, origin=None): # pylint: disable=W0613 + addresses = [] + while parser.remaining() > 0: + ip = parser.get_bytes(4) + addresses.append(dns.ipv4.inet_ntoa(ip)) + return cls(addresses) + + def to_wire(self, file, origin=None): # pylint: disable=W0613 + for address in self.addresses: + file.write(dns.ipv4.inet_aton(address)) + + +@dns.immutable.immutable +class IPv6HintParam(Param): + def __init__(self, addresses): + self.addresses = dns.rdata.Rdata._as_tuple( + addresses, dns.rdata.Rdata._as_ipv6_address + ) + + @classmethod + def from_value(cls, value): + addresses = value.split(",") + return cls(addresses) + + def to_text(self): + return '"' + ",".join(self.addresses) + '"' + + @classmethod + def from_wire_parser(cls, parser, origin=None): # pylint: disable=W0613 + addresses = [] + while parser.remaining() > 0: + ip = parser.get_bytes(16) + addresses.append(dns.ipv6.inet_ntoa(ip)) + return cls(addresses) + + def to_wire(self, file, origin=None): # pylint: disable=W0613 + for address in self.addresses: + file.write(dns.ipv6.inet_aton(address)) + + +@dns.immutable.immutable +class ECHParam(Param): + def __init__(self, ech): + self.ech = dns.rdata.Rdata._as_bytes(ech, True) + + @classmethod + def from_value(cls, value): + if "\\" in value: + raise ValueError("escape in ECH value") + value = base64.b64decode(value.encode()) + return cls(value) + + def to_text(self): + b64 = base64.b64encode(self.ech).decode("ascii") + return f'"{b64}"' + + @classmethod + def from_wire_parser(cls, parser, origin=None): # pylint: disable=W0613 + value = parser.get_bytes(parser.remaining()) + return cls(value) + + def to_wire(self, file, origin=None): # pylint: disable=W0613 + file.write(self.ech) + + +@dns.immutable.immutable +class OHTTPParam(Param): + # We don't ever expect to instantiate this class, but we need + # a from_value() and a from_wire_parser(), so we just return None + # from the class methods when things are OK. + + @classmethod + def emptiness(cls): + return Emptiness.ALWAYS + + @classmethod + def from_value(cls, value): + if value is None or value == "": + return None + else: + raise ValueError("ohttp with non-empty value") + + def to_text(self): + raise NotImplementedError # pragma: no cover + + @classmethod + def from_wire_parser(cls, parser, origin=None): # pylint: disable=W0613 + if parser.remaining() != 0: + raise dns.exception.FormError + return None + + def to_wire(self, file, origin=None): # pylint: disable=W0613 + raise NotImplementedError # pragma: no cover + + +_class_for_key = { + ParamKey.MANDATORY: MandatoryParam, + ParamKey.ALPN: ALPNParam, + ParamKey.NO_DEFAULT_ALPN: NoDefaultALPNParam, + ParamKey.PORT: PortParam, + ParamKey.IPV4HINT: IPv4HintParam, + ParamKey.ECH: ECHParam, + ParamKey.IPV6HINT: IPv6HintParam, + ParamKey.OHTTP: OHTTPParam, +} + + +def _validate_and_define(params, key, value): + (key, force_generic) = _validate_key(_unescape(key)) + if key in params: + raise SyntaxError(f'duplicate key "{key:d}"') + cls = _class_for_key.get(key, GenericParam) + emptiness = cls.emptiness() + if value is None: + if emptiness == Emptiness.NEVER: + raise SyntaxError("value cannot be empty") + value = cls.from_value(value) + else: + if force_generic: + value = cls.from_wire_parser(dns.wire.Parser(_unescape(value))) + else: + value = cls.from_value(value) + params[key] = value + + +@dns.immutable.immutable +class SVCBBase(dns.rdata.Rdata): + """Base class for SVCB-like records""" + + # see: draft-ietf-dnsop-svcb-https-11 + + __slots__ = ["priority", "target", "params"] + + def __init__(self, rdclass, rdtype, priority, target, params): + super().__init__(rdclass, rdtype) + self.priority = self._as_uint16(priority) + self.target = self._as_name(target) + for k, v in params.items(): + k = ParamKey.make(k) + if not isinstance(v, Param) and v is not None: + raise ValueError(f"{k:d} not a Param") + self.params = dns.immutable.Dict(params) + # Make sure any parameter listed as mandatory is present in the + # record. + mandatory = params.get(ParamKey.MANDATORY) + if mandatory: + for key in mandatory.keys: + # Note we have to say "not in" as we have None as a value + # so a get() and a not None test would be wrong. + if key not in params: + raise ValueError(f"key {key:d} declared mandatory but not present") + # The no-default-alpn parameter requires the alpn parameter. + if ParamKey.NO_DEFAULT_ALPN in params: + if ParamKey.ALPN not in params: + raise ValueError("no-default-alpn present, but alpn missing") + + def to_text(self, origin=None, relativize=True, **kw): + target = self.target.choose_relativity(origin, relativize) + params = [] + for key in sorted(self.params.keys()): + value = self.params[key] + if value is None: + params.append(key_to_text(key)) + else: + kv = key_to_text(key) + "=" + value.to_text() + params.append(kv) + if len(params) > 0: + space = " " + else: + space = "" + return "%d %s%s%s" % (self.priority, target, space, " ".join(params)) + + @classmethod + def from_text( + cls, rdclass, rdtype, tok, origin=None, relativize=True, relativize_to=None + ): + priority = tok.get_uint16() + target = tok.get_name(origin, relativize, relativize_to) + if priority == 0: + token = tok.get() + if not token.is_eol_or_eof(): + raise SyntaxError("parameters in AliasMode") + tok.unget(token) + params = {} + while True: + token = tok.get() + if token.is_eol_or_eof(): + tok.unget(token) + break + if token.ttype != dns.tokenizer.IDENTIFIER: + raise SyntaxError("parameter is not an identifier") + equals = token.value.find("=") + if equals == len(token.value) - 1: + # 'key=', so next token should be a quoted string without + # any intervening whitespace. + key = token.value[:-1] + token = tok.get(want_leading=True) + if token.ttype != dns.tokenizer.QUOTED_STRING: + raise SyntaxError("whitespace after =") + value = token.value + elif equals > 0: + # key=value + key = token.value[:equals] + value = token.value[equals + 1 :] + elif equals == 0: + # =key + raise SyntaxError('parameter cannot start with "="') + else: + # key + key = token.value + value = None + _validate_and_define(params, key, value) + return cls(rdclass, rdtype, priority, target, params) + + def _to_wire(self, file, compress=None, origin=None, canonicalize=False): + file.write(struct.pack("!H", self.priority)) + self.target.to_wire(file, None, origin, False) + for key in sorted(self.params): + file.write(struct.pack("!H", key)) + value = self.params[key] + with dns.renderer.prefixed_length(file, 2): + # Note that we're still writing a length of zero if the value is None + if value is not None: + value.to_wire(file, origin) + + @classmethod + def from_wire_parser(cls, rdclass, rdtype, parser, origin=None): + priority = parser.get_uint16() + target = parser.get_name(origin) + if priority == 0 and parser.remaining() != 0: + raise dns.exception.FormError("parameters in AliasMode") + params = {} + prior_key = -1 + while parser.remaining() > 0: + key = parser.get_uint16() + if key < prior_key: + raise dns.exception.FormError("keys not in order") + prior_key = key + vlen = parser.get_uint16() + pcls = _class_for_key.get(key, GenericParam) + with parser.restrict_to(vlen): + value = pcls.from_wire_parser(parser, origin) + params[key] = value + return cls(rdclass, rdtype, priority, target, params) + + def _processing_priority(self): + return self.priority + + @classmethod + def _processing_order(cls, iterable): + return dns.rdtypes.util.priority_processing_order(iterable) diff --git a/.venv/lib/python3.11/site-packages/dns/rdtypes/tlsabase.py b/.venv/lib/python3.11/site-packages/dns/rdtypes/tlsabase.py new file mode 100644 index 0000000..a059d2c --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rdtypes/tlsabase.py @@ -0,0 +1,71 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2005-2007, 2009-2011 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +import binascii +import struct + +import dns.immutable +import dns.rdata +import dns.rdatatype + + +@dns.immutable.immutable +class TLSABase(dns.rdata.Rdata): + """Base class for TLSA and SMIMEA records""" + + # see: RFC 6698 + + __slots__ = ["usage", "selector", "mtype", "cert"] + + def __init__(self, rdclass, rdtype, usage, selector, mtype, cert): + super().__init__(rdclass, rdtype) + self.usage = self._as_uint8(usage) + self.selector = self._as_uint8(selector) + self.mtype = self._as_uint8(mtype) + self.cert = self._as_bytes(cert) + + def to_text(self, origin=None, relativize=True, **kw): + kw = kw.copy() + chunksize = kw.pop("chunksize", 128) + return "%d %d %d %s" % ( + self.usage, + self.selector, + self.mtype, + dns.rdata._hexify(self.cert, chunksize=chunksize, **kw), + ) + + @classmethod + def from_text( + cls, rdclass, rdtype, tok, origin=None, relativize=True, relativize_to=None + ): + usage = tok.get_uint8() + selector = tok.get_uint8() + mtype = tok.get_uint8() + cert = tok.concatenate_remaining_identifiers().encode() + cert = binascii.unhexlify(cert) + return cls(rdclass, rdtype, usage, selector, mtype, cert) + + def _to_wire(self, file, compress=None, origin=None, canonicalize=False): + header = struct.pack("!BBB", self.usage, self.selector, self.mtype) + file.write(header) + file.write(self.cert) + + @classmethod + def from_wire_parser(cls, rdclass, rdtype, parser, origin=None): + header = parser.get_struct("BBB") + cert = parser.get_remaining() + return cls(rdclass, rdtype, header[0], header[1], header[2], cert) diff --git a/.venv/lib/python3.11/site-packages/dns/rdtypes/txtbase.py b/.venv/lib/python3.11/site-packages/dns/rdtypes/txtbase.py new file mode 100644 index 0000000..73db6d9 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rdtypes/txtbase.py @@ -0,0 +1,106 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2006-2017 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +"""TXT-like base class.""" + +from typing import Any, Dict, Iterable, Optional, Tuple, Union + +import dns.exception +import dns.immutable +import dns.rdata +import dns.renderer +import dns.tokenizer + + +@dns.immutable.immutable +class TXTBase(dns.rdata.Rdata): + """Base class for rdata that is like a TXT record (see RFC 1035).""" + + __slots__ = ["strings"] + + def __init__( + self, + rdclass: dns.rdataclass.RdataClass, + rdtype: dns.rdatatype.RdataType, + strings: Iterable[Union[bytes, str]], + ): + """Initialize a TXT-like rdata. + + *rdclass*, an ``int`` is the rdataclass of the Rdata. + + *rdtype*, an ``int`` is the rdatatype of the Rdata. + + *strings*, a tuple of ``bytes`` + """ + super().__init__(rdclass, rdtype) + self.strings: Tuple[bytes] = self._as_tuple( + strings, lambda x: self._as_bytes(x, True, 255) + ) + if len(self.strings) == 0: + raise ValueError("the list of strings must not be empty") + + def to_text( + self, + origin: Optional[dns.name.Name] = None, + relativize: bool = True, + **kw: Dict[str, Any], + ) -> str: + txt = "" + prefix = "" + for s in self.strings: + txt += f'{prefix}"{dns.rdata._escapify(s)}"' + prefix = " " + return txt + + @classmethod + def from_text( + cls, + rdclass: dns.rdataclass.RdataClass, + rdtype: dns.rdatatype.RdataType, + tok: dns.tokenizer.Tokenizer, + origin: Optional[dns.name.Name] = None, + relativize: bool = True, + relativize_to: Optional[dns.name.Name] = None, + ) -> dns.rdata.Rdata: + strings = [] + for token in tok.get_remaining(): + token = token.unescape_to_bytes() + # The 'if' below is always true in the current code, but we + # are leaving this check in in case things change some day. + if not ( + token.is_quoted_string() or token.is_identifier() + ): # pragma: no cover + raise dns.exception.SyntaxError("expected a string") + if len(token.value) > 255: + raise dns.exception.SyntaxError("string too long") + strings.append(token.value) + if len(strings) == 0: + raise dns.exception.UnexpectedEnd + return cls(rdclass, rdtype, strings) + + def _to_wire(self, file, compress=None, origin=None, canonicalize=False): + for s in self.strings: + with dns.renderer.prefixed_length(file, 1): + file.write(s) + + @classmethod + def from_wire_parser(cls, rdclass, rdtype, parser, origin=None): + strings = [] + while parser.remaining() > 0: + s = parser.get_counted_bytes() + strings.append(s) + return cls(rdclass, rdtype, strings) diff --git a/.venv/lib/python3.11/site-packages/dns/rdtypes/util.py b/.venv/lib/python3.11/site-packages/dns/rdtypes/util.py new file mode 100644 index 0000000..653a0bf --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rdtypes/util.py @@ -0,0 +1,257 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2006, 2007, 2009-2011 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +import collections +import random +import struct +from typing import Any, List + +import dns.exception +import dns.ipv4 +import dns.ipv6 +import dns.name +import dns.rdata + + +class Gateway: + """A helper class for the IPSECKEY gateway and AMTRELAY relay fields""" + + name = "" + + def __init__(self, type, gateway=None): + self.type = dns.rdata.Rdata._as_uint8(type) + self.gateway = gateway + self._check() + + @classmethod + def _invalid_type(cls, gateway_type): + return f"invalid {cls.name} type: {gateway_type}" + + def _check(self): + if self.type == 0: + if self.gateway not in (".", None): + raise SyntaxError(f"invalid {self.name} for type 0") + self.gateway = None + elif self.type == 1: + # check that it's OK + dns.ipv4.inet_aton(self.gateway) + elif self.type == 2: + # check that it's OK + dns.ipv6.inet_aton(self.gateway) + elif self.type == 3: + if not isinstance(self.gateway, dns.name.Name): + raise SyntaxError(f"invalid {self.name}; not a name") + else: + raise SyntaxError(self._invalid_type(self.type)) + + def to_text(self, origin=None, relativize=True): + if self.type == 0: + return "." + elif self.type in (1, 2): + return self.gateway + elif self.type == 3: + return str(self.gateway.choose_relativity(origin, relativize)) + else: + raise ValueError(self._invalid_type(self.type)) # pragma: no cover + + @classmethod + def from_text( + cls, gateway_type, tok, origin=None, relativize=True, relativize_to=None + ): + if gateway_type in (0, 1, 2): + gateway = tok.get_string() + elif gateway_type == 3: + gateway = tok.get_name(origin, relativize, relativize_to) + else: + raise dns.exception.SyntaxError( + cls._invalid_type(gateway_type) + ) # pragma: no cover + return cls(gateway_type, gateway) + + # pylint: disable=unused-argument + def to_wire(self, file, compress=None, origin=None, canonicalize=False): + if self.type == 0: + pass + elif self.type == 1: + file.write(dns.ipv4.inet_aton(self.gateway)) + elif self.type == 2: + file.write(dns.ipv6.inet_aton(self.gateway)) + elif self.type == 3: + self.gateway.to_wire(file, None, origin, False) + else: + raise ValueError(self._invalid_type(self.type)) # pragma: no cover + + # pylint: enable=unused-argument + + @classmethod + def from_wire_parser(cls, gateway_type, parser, origin=None): + if gateway_type == 0: + gateway = None + elif gateway_type == 1: + gateway = dns.ipv4.inet_ntoa(parser.get_bytes(4)) + elif gateway_type == 2: + gateway = dns.ipv6.inet_ntoa(parser.get_bytes(16)) + elif gateway_type == 3: + gateway = parser.get_name(origin) + else: + raise dns.exception.FormError(cls._invalid_type(gateway_type)) + return cls(gateway_type, gateway) + + +class Bitmap: + """A helper class for the NSEC/NSEC3/CSYNC type bitmaps""" + + type_name = "" + + def __init__(self, windows=None): + last_window = -1 + self.windows = windows + for window, bitmap in self.windows: + if not isinstance(window, int): + raise ValueError(f"bad {self.type_name} window type") + if window <= last_window: + raise ValueError(f"bad {self.type_name} window order") + if window > 256: + raise ValueError(f"bad {self.type_name} window number") + last_window = window + if not isinstance(bitmap, bytes): + raise ValueError(f"bad {self.type_name} octets type") + if len(bitmap) == 0 or len(bitmap) > 32: + raise ValueError(f"bad {self.type_name} octets") + + def to_text(self) -> str: + text = "" + for window, bitmap in self.windows: + bits = [] + for i, byte in enumerate(bitmap): + for j in range(0, 8): + if byte & (0x80 >> j): + rdtype = window * 256 + i * 8 + j + bits.append(dns.rdatatype.to_text(rdtype)) + text += " " + " ".join(bits) + return text + + @classmethod + def from_text(cls, tok: "dns.tokenizer.Tokenizer") -> "Bitmap": + rdtypes = [] + for token in tok.get_remaining(): + rdtype = dns.rdatatype.from_text(token.unescape().value) + if rdtype == 0: + raise dns.exception.SyntaxError(f"{cls.type_name} with bit 0") + rdtypes.append(rdtype) + return cls.from_rdtypes(rdtypes) + + @classmethod + def from_rdtypes(cls, rdtypes: List[dns.rdatatype.RdataType]) -> "Bitmap": + rdtypes = sorted(rdtypes) + window = 0 + octets = 0 + prior_rdtype = 0 + bitmap = bytearray(b"\0" * 32) + windows = [] + for rdtype in rdtypes: + if rdtype == prior_rdtype: + continue + prior_rdtype = rdtype + new_window = rdtype // 256 + if new_window != window: + if octets != 0: + windows.append((window, bytes(bitmap[0:octets]))) + bitmap = bytearray(b"\0" * 32) + window = new_window + offset = rdtype % 256 + byte = offset // 8 + bit = offset % 8 + octets = byte + 1 + bitmap[byte] = bitmap[byte] | (0x80 >> bit) + if octets != 0: + windows.append((window, bytes(bitmap[0:octets]))) + return cls(windows) + + def to_wire(self, file: Any) -> None: + for window, bitmap in self.windows: + file.write(struct.pack("!BB", window, len(bitmap))) + file.write(bitmap) + + @classmethod + def from_wire_parser(cls, parser: "dns.wire.Parser") -> "Bitmap": + windows = [] + while parser.remaining() > 0: + window = parser.get_uint8() + bitmap = parser.get_counted_bytes() + windows.append((window, bitmap)) + return cls(windows) + + +def _priority_table(items): + by_priority = collections.defaultdict(list) + for rdata in items: + by_priority[rdata._processing_priority()].append(rdata) + return by_priority + + +def priority_processing_order(iterable): + items = list(iterable) + if len(items) == 1: + return items + by_priority = _priority_table(items) + ordered = [] + for k in sorted(by_priority.keys()): + rdatas = by_priority[k] + random.shuffle(rdatas) + ordered.extend(rdatas) + return ordered + + +_no_weight = 0.1 + + +def weighted_processing_order(iterable): + items = list(iterable) + if len(items) == 1: + return items + by_priority = _priority_table(items) + ordered = [] + for k in sorted(by_priority.keys()): + rdatas = by_priority[k] + total = sum(rdata._processing_weight() or _no_weight for rdata in rdatas) + while len(rdatas) > 1: + r = random.uniform(0, total) + for n, rdata in enumerate(rdatas): # noqa: B007 + weight = rdata._processing_weight() or _no_weight + if weight > r: + break + r -= weight + total -= weight + ordered.append(rdata) # pylint: disable=undefined-loop-variable + del rdatas[n] # pylint: disable=undefined-loop-variable + ordered.append(rdatas[0]) + return ordered + + +def parse_formatted_hex(formatted, num_chunks, chunk_size, separator): + if len(formatted) != num_chunks * (chunk_size + 1) - 1: + raise ValueError("invalid formatted hex string") + value = b"" + for _ in range(num_chunks): + chunk = formatted[0:chunk_size] + value += int(chunk, 16).to_bytes(chunk_size // 2, "big") + formatted = formatted[chunk_size:] + if len(formatted) > 0 and formatted[0] != separator: + raise ValueError("invalid formatted hex string") + formatted = formatted[1:] + return value diff --git a/.venv/lib/python3.11/site-packages/dns/renderer.py b/.venv/lib/python3.11/site-packages/dns/renderer.py new file mode 100644 index 0000000..a77481f --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/renderer.py @@ -0,0 +1,346 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2001-2017 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +"""Help for building DNS wire format messages""" + +import contextlib +import io +import random +import struct +import time + +import dns.exception +import dns.tsig + +QUESTION = 0 +ANSWER = 1 +AUTHORITY = 2 +ADDITIONAL = 3 + + +@contextlib.contextmanager +def prefixed_length(output, length_length): + output.write(b"\00" * length_length) + start = output.tell() + yield + end = output.tell() + length = end - start + if length > 0: + try: + output.seek(start - length_length) + try: + output.write(length.to_bytes(length_length, "big")) + except OverflowError: + raise dns.exception.FormError + finally: + output.seek(end) + + +class Renderer: + """Helper class for building DNS wire-format messages. + + Most applications can use the higher-level L{dns.message.Message} + class and its to_wire() method to generate wire-format messages. + This class is for those applications which need finer control + over the generation of messages. + + Typical use:: + + r = dns.renderer.Renderer(id=1, flags=0x80, max_size=512) + r.add_question(qname, qtype, qclass) + r.add_rrset(dns.renderer.ANSWER, rrset_1) + r.add_rrset(dns.renderer.ANSWER, rrset_2) + r.add_rrset(dns.renderer.AUTHORITY, ns_rrset) + r.add_rrset(dns.renderer.ADDITIONAL, ad_rrset_1) + r.add_rrset(dns.renderer.ADDITIONAL, ad_rrset_2) + r.add_edns(0, 0, 4096) + r.write_header() + r.add_tsig(keyname, secret, 300, 1, 0, '', request_mac) + wire = r.get_wire() + + If padding is going to be used, then the OPT record MUST be + written after everything else in the additional section except for + the TSIG (if any). + + output, an io.BytesIO, where rendering is written + + id: the message id + + flags: the message flags + + max_size: the maximum size of the message + + origin: the origin to use when rendering relative names + + compress: the compression table + + section: an int, the section currently being rendered + + counts: list of the number of RRs in each section + + mac: the MAC of the rendered message (if TSIG was used) + """ + + def __init__(self, id=None, flags=0, max_size=65535, origin=None): + """Initialize a new renderer.""" + + self.output = io.BytesIO() + if id is None: + self.id = random.randint(0, 65535) + else: + self.id = id + self.flags = flags + self.max_size = max_size + self.origin = origin + self.compress = {} + self.section = QUESTION + self.counts = [0, 0, 0, 0] + self.output.write(b"\x00" * 12) + self.mac = "" + self.reserved = 0 + self.was_padded = False + + def _rollback(self, where): + """Truncate the output buffer at offset *where*, and remove any + compression table entries that pointed beyond the truncation + point. + """ + + self.output.seek(where) + self.output.truncate() + keys_to_delete = [] + for k, v in self.compress.items(): + if v >= where: + keys_to_delete.append(k) + for k in keys_to_delete: + del self.compress[k] + + def _set_section(self, section): + """Set the renderer's current section. + + Sections must be rendered order: QUESTION, ANSWER, AUTHORITY, + ADDITIONAL. Sections may be empty. + + Raises dns.exception.FormError if an attempt was made to set + a section value less than the current section. + """ + + if self.section != section: + if self.section > section: + raise dns.exception.FormError + self.section = section + + @contextlib.contextmanager + def _track_size(self): + start = self.output.tell() + yield start + if self.output.tell() > self.max_size: + self._rollback(start) + raise dns.exception.TooBig + + @contextlib.contextmanager + def _temporarily_seek_to(self, where): + current = self.output.tell() + try: + self.output.seek(where) + yield + finally: + self.output.seek(current) + + def add_question(self, qname, rdtype, rdclass=dns.rdataclass.IN): + """Add a question to the message.""" + + self._set_section(QUESTION) + with self._track_size(): + qname.to_wire(self.output, self.compress, self.origin) + self.output.write(struct.pack("!HH", rdtype, rdclass)) + self.counts[QUESTION] += 1 + + def add_rrset(self, section, rrset, **kw): + """Add the rrset to the specified section. + + Any keyword arguments are passed on to the rdataset's to_wire() + routine. + """ + + self._set_section(section) + with self._track_size(): + n = rrset.to_wire(self.output, self.compress, self.origin, **kw) + self.counts[section] += n + + def add_rdataset(self, section, name, rdataset, **kw): + """Add the rdataset to the specified section, using the specified + name as the owner name. + + Any keyword arguments are passed on to the rdataset's to_wire() + routine. + """ + + self._set_section(section) + with self._track_size(): + n = rdataset.to_wire(name, self.output, self.compress, self.origin, **kw) + self.counts[section] += n + + def add_opt(self, opt, pad=0, opt_size=0, tsig_size=0): + """Add *opt* to the additional section, applying padding if desired. The + padding will take the specified precomputed OPT size and TSIG size into + account. + + Note that we don't have reliable way of knowing how big a GSS-TSIG digest + might be, so we we might not get an even multiple of the pad in that case.""" + if pad: + ttl = opt.ttl + assert opt_size >= 11 + opt_rdata = opt[0] + size_without_padding = self.output.tell() + opt_size + tsig_size + remainder = size_without_padding % pad + if remainder: + pad = b"\x00" * (pad - remainder) + else: + pad = b"" + options = list(opt_rdata.options) + options.append(dns.edns.GenericOption(dns.edns.OptionType.PADDING, pad)) + opt = dns.message.Message._make_opt(ttl, opt_rdata.rdclass, options) + self.was_padded = True + self.add_rrset(ADDITIONAL, opt) + + def add_edns(self, edns, ednsflags, payload, options=None): + """Add an EDNS OPT record to the message.""" + + # make sure the EDNS version in ednsflags agrees with edns + ednsflags &= 0xFF00FFFF + ednsflags |= edns << 16 + opt = dns.message.Message._make_opt(ednsflags, payload, options) + self.add_opt(opt) + + def add_tsig( + self, + keyname, + secret, + fudge, + id, + tsig_error, + other_data, + request_mac, + algorithm=dns.tsig.default_algorithm, + ): + """Add a TSIG signature to the message.""" + + s = self.output.getvalue() + + if isinstance(secret, dns.tsig.Key): + key = secret + else: + key = dns.tsig.Key(keyname, secret, algorithm) + tsig = dns.message.Message._make_tsig( + keyname, algorithm, 0, fudge, b"", id, tsig_error, other_data + ) + (tsig, _) = dns.tsig.sign(s, key, tsig[0], int(time.time()), request_mac) + self._write_tsig(tsig, keyname) + + def add_multi_tsig( + self, + ctx, + keyname, + secret, + fudge, + id, + tsig_error, + other_data, + request_mac, + algorithm=dns.tsig.default_algorithm, + ): + """Add a TSIG signature to the message. Unlike add_tsig(), this can be + used for a series of consecutive DNS envelopes, e.g. for a zone + transfer over TCP [RFC2845, 4.4]. + + For the first message in the sequence, give ctx=None. For each + subsequent message, give the ctx that was returned from the + add_multi_tsig() call for the previous message.""" + + s = self.output.getvalue() + + if isinstance(secret, dns.tsig.Key): + key = secret + else: + key = dns.tsig.Key(keyname, secret, algorithm) + tsig = dns.message.Message._make_tsig( + keyname, algorithm, 0, fudge, b"", id, tsig_error, other_data + ) + (tsig, ctx) = dns.tsig.sign( + s, key, tsig[0], int(time.time()), request_mac, ctx, True + ) + self._write_tsig(tsig, keyname) + return ctx + + def _write_tsig(self, tsig, keyname): + if self.was_padded: + compress = None + else: + compress = self.compress + self._set_section(ADDITIONAL) + with self._track_size(): + keyname.to_wire(self.output, compress, self.origin) + self.output.write( + struct.pack("!HHI", dns.rdatatype.TSIG, dns.rdataclass.ANY, 0) + ) + with prefixed_length(self.output, 2): + tsig.to_wire(self.output) + + self.counts[ADDITIONAL] += 1 + with self._temporarily_seek_to(10): + self.output.write(struct.pack("!H", self.counts[ADDITIONAL])) + + def write_header(self): + """Write the DNS message header. + + Writing the DNS message header is done after all sections + have been rendered, but before the optional TSIG signature + is added. + """ + + with self._temporarily_seek_to(0): + self.output.write( + struct.pack( + "!HHHHHH", + self.id, + self.flags, + self.counts[0], + self.counts[1], + self.counts[2], + self.counts[3], + ) + ) + + def get_wire(self): + """Return the wire format message.""" + + return self.output.getvalue() + + def reserve(self, size: int) -> None: + """Reserve *size* bytes.""" + if size < 0: + raise ValueError("reserved amount must be non-negative") + if size > self.max_size: + raise ValueError("cannot reserve more than the maximum size") + self.reserved += size + self.max_size -= size + + def release_reserved(self) -> None: + """Release the reserved bytes.""" + self.max_size += self.reserved + self.reserved = 0 diff --git a/.venv/lib/python3.11/site-packages/dns/resolver.py b/.venv/lib/python3.11/site-packages/dns/resolver.py new file mode 100644 index 0000000..3ba76e3 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/resolver.py @@ -0,0 +1,2053 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2003-2017 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +"""DNS stub resolver.""" + +import contextlib +import random +import socket +import sys +import threading +import time +import warnings +from typing import Any, Dict, Iterator, List, Optional, Sequence, Tuple, Union +from urllib.parse import urlparse + +import dns._ddr +import dns.edns +import dns.exception +import dns.flags +import dns.inet +import dns.ipv4 +import dns.ipv6 +import dns.message +import dns.name +import dns.rdata +import dns.nameserver +import dns.query +import dns.rcode +import dns.rdataclass +import dns.rdatatype +import dns.rdtypes.svcbbase +import dns.reversename +import dns.tsig + +if sys.platform == "win32": # pragma: no cover + import dns.win32util + + +class NXDOMAIN(dns.exception.DNSException): + """The DNS query name does not exist.""" + + supp_kwargs = {"qnames", "responses"} + fmt = None # we have our own __str__ implementation + + # pylint: disable=arguments-differ + + # We do this as otherwise mypy complains about unexpected keyword argument + # idna_exception + def __init__(self, *args, **kwargs): + super().__init__(*args, **kwargs) + + def _check_kwargs(self, qnames, responses=None): + if not isinstance(qnames, (list, tuple, set)): + raise AttributeError("qnames must be a list, tuple or set") + if len(qnames) == 0: + raise AttributeError("qnames must contain at least one element") + if responses is None: + responses = {} + elif not isinstance(responses, dict): + raise AttributeError("responses must be a dict(qname=response)") + kwargs = dict(qnames=qnames, responses=responses) + return kwargs + + def __str__(self) -> str: + if "qnames" not in self.kwargs: + return super().__str__() + qnames = self.kwargs["qnames"] + if len(qnames) > 1: + msg = "None of DNS query names exist" + else: + msg = "The DNS query name does not exist" + qnames = ", ".join(map(str, qnames)) + return f"{msg}: {qnames}" + + @property + def canonical_name(self): + """Return the unresolved canonical name.""" + if "qnames" not in self.kwargs: + raise TypeError("parametrized exception required") + for qname in self.kwargs["qnames"]: + response = self.kwargs["responses"][qname] + try: + cname = response.canonical_name() + if cname != qname: + return cname + except Exception: # pragma: no cover + # We can just eat this exception as it means there was + # something wrong with the response. + pass + return self.kwargs["qnames"][0] + + def __add__(self, e_nx): + """Augment by results from another NXDOMAIN exception.""" + qnames0 = list(self.kwargs.get("qnames", [])) + responses0 = dict(self.kwargs.get("responses", {})) + responses1 = e_nx.kwargs.get("responses", {}) + for qname1 in e_nx.kwargs.get("qnames", []): + if qname1 not in qnames0: + qnames0.append(qname1) + if qname1 in responses1: + responses0[qname1] = responses1[qname1] + return NXDOMAIN(qnames=qnames0, responses=responses0) + + def qnames(self): + """All of the names that were tried. + + Returns a list of ``dns.name.Name``. + """ + return self.kwargs["qnames"] + + def responses(self): + """A map from queried names to their NXDOMAIN responses. + + Returns a dict mapping a ``dns.name.Name`` to a + ``dns.message.Message``. + """ + return self.kwargs["responses"] + + def response(self, qname): + """The response for query *qname*. + + Returns a ``dns.message.Message``. + """ + return self.kwargs["responses"][qname] + + +class YXDOMAIN(dns.exception.DNSException): + """The DNS query name is too long after DNAME substitution.""" + + +ErrorTuple = Tuple[ + Optional[str], + bool, + int, + Union[Exception, str], + Optional[dns.message.Message], +] + + +def _errors_to_text(errors: List[ErrorTuple]) -> List[str]: + """Turn a resolution errors trace into a list of text.""" + texts = [] + for err in errors: + texts.append(f"Server {err[0]} answered {err[3]}") + return texts + + +class LifetimeTimeout(dns.exception.Timeout): + """The resolution lifetime expired.""" + + msg = "The resolution lifetime expired." + fmt = f"{msg[:-1]} after {{timeout:.3f}} seconds: {{errors}}" + supp_kwargs = {"timeout", "errors"} + + # We do this as otherwise mypy complains about unexpected keyword argument + # idna_exception + def __init__(self, *args, **kwargs): + super().__init__(*args, **kwargs) + + def _fmt_kwargs(self, **kwargs): + srv_msgs = _errors_to_text(kwargs["errors"]) + return super()._fmt_kwargs( + timeout=kwargs["timeout"], errors="; ".join(srv_msgs) + ) + + +# We added more detail to resolution timeouts, but they are still +# subclasses of dns.exception.Timeout for backwards compatibility. We also +# keep dns.resolver.Timeout defined for backwards compatibility. +Timeout = LifetimeTimeout + + +class NoAnswer(dns.exception.DNSException): + """The DNS response does not contain an answer to the question.""" + + fmt = "The DNS response does not contain an answer to the question: {query}" + supp_kwargs = {"response"} + + # We do this as otherwise mypy complains about unexpected keyword argument + # idna_exception + def __init__(self, *args, **kwargs): + super().__init__(*args, **kwargs) + + def _fmt_kwargs(self, **kwargs): + return super()._fmt_kwargs(query=kwargs["response"].question) + + def response(self): + return self.kwargs["response"] + + +class NoNameservers(dns.exception.DNSException): + """All nameservers failed to answer the query. + + errors: list of servers and respective errors + The type of errors is + [(server IP address, any object convertible to string)]. + Non-empty errors list will add explanatory message () + """ + + msg = "All nameservers failed to answer the query." + fmt = f"{msg[:-1]} {{query}}: {{errors}}" + supp_kwargs = {"request", "errors"} + + # We do this as otherwise mypy complains about unexpected keyword argument + # idna_exception + def __init__(self, *args, **kwargs): + super().__init__(*args, **kwargs) + + def _fmt_kwargs(self, **kwargs): + srv_msgs = _errors_to_text(kwargs["errors"]) + return super()._fmt_kwargs( + query=kwargs["request"].question, errors="; ".join(srv_msgs) + ) + + +class NotAbsolute(dns.exception.DNSException): + """An absolute domain name is required but a relative name was provided.""" + + +class NoRootSOA(dns.exception.DNSException): + """There is no SOA RR at the DNS root name. This should never happen!""" + + +class NoMetaqueries(dns.exception.DNSException): + """DNS metaqueries are not allowed.""" + + +class NoResolverConfiguration(dns.exception.DNSException): + """Resolver configuration could not be read or specified no nameservers.""" + + +class Answer: + """DNS stub resolver answer. + + Instances of this class bundle up the result of a successful DNS + resolution. + + For convenience, the answer object implements much of the sequence + protocol, forwarding to its ``rrset`` attribute. E.g. + ``for a in answer`` is equivalent to ``for a in answer.rrset``. + ``answer[i]`` is equivalent to ``answer.rrset[i]``, and + ``answer[i:j]`` is equivalent to ``answer.rrset[i:j]``. + + Note that CNAMEs or DNAMEs in the response may mean that answer + RRset's name might not be the query name. + """ + + def __init__( + self, + qname: dns.name.Name, + rdtype: dns.rdatatype.RdataType, + rdclass: dns.rdataclass.RdataClass, + response: dns.message.QueryMessage, + nameserver: Optional[str] = None, + port: Optional[int] = None, + ) -> None: + self.qname = qname + self.rdtype = rdtype + self.rdclass = rdclass + self.response = response + self.nameserver = nameserver + self.port = port + self.chaining_result = response.resolve_chaining() + # Copy some attributes out of chaining_result for backwards + # compatibility and convenience. + self.canonical_name = self.chaining_result.canonical_name + self.rrset = self.chaining_result.answer + self.expiration = time.time() + self.chaining_result.minimum_ttl + + def __getattr__(self, attr): # pragma: no cover + if attr == "name": + return self.rrset.name + elif attr == "ttl": + return self.rrset.ttl + elif attr == "covers": + return self.rrset.covers + elif attr == "rdclass": + return self.rrset.rdclass + elif attr == "rdtype": + return self.rrset.rdtype + else: + raise AttributeError(attr) + + def __len__(self) -> int: + return self.rrset and len(self.rrset) or 0 + + def __iter__(self) -> Iterator[dns.rdata.Rdata]: + return self.rrset and iter(self.rrset) or iter(tuple()) + + def __getitem__(self, i): + if self.rrset is None: + raise IndexError + return self.rrset[i] + + def __delitem__(self, i): + if self.rrset is None: + raise IndexError + del self.rrset[i] + + +class Answers(dict): + """A dict of DNS stub resolver answers, indexed by type.""" + + +class HostAnswers(Answers): + """A dict of DNS stub resolver answers to a host name lookup, indexed by + type. + """ + + @classmethod + def make( + cls, + v6: Optional[Answer] = None, + v4: Optional[Answer] = None, + add_empty: bool = True, + ) -> "HostAnswers": + answers = HostAnswers() + if v6 is not None and (add_empty or v6.rrset): + answers[dns.rdatatype.AAAA] = v6 + if v4 is not None and (add_empty or v4.rrset): + answers[dns.rdatatype.A] = v4 + return answers + + # Returns pairs of (address, family) from this result, potentially + # filtering by address family. + def addresses_and_families( + self, family: int = socket.AF_UNSPEC + ) -> Iterator[Tuple[str, int]]: + if family == socket.AF_UNSPEC: + yield from self.addresses_and_families(socket.AF_INET6) + yield from self.addresses_and_families(socket.AF_INET) + return + elif family == socket.AF_INET6: + answer = self.get(dns.rdatatype.AAAA) + elif family == socket.AF_INET: + answer = self.get(dns.rdatatype.A) + else: # pragma: no cover + raise NotImplementedError(f"unknown address family {family}") + if answer: + for rdata in answer: + yield (rdata.address, family) + + # Returns addresses from this result, potentially filtering by + # address family. + def addresses(self, family: int = socket.AF_UNSPEC) -> Iterator[str]: + return (pair[0] for pair in self.addresses_and_families(family)) + + # Returns the canonical name from this result. + def canonical_name(self) -> dns.name.Name: + answer = self.get(dns.rdatatype.AAAA, self.get(dns.rdatatype.A)) + return answer.canonical_name + + +class CacheStatistics: + """Cache Statistics""" + + def __init__(self, hits: int = 0, misses: int = 0) -> None: + self.hits = hits + self.misses = misses + + def reset(self) -> None: + self.hits = 0 + self.misses = 0 + + def clone(self) -> "CacheStatistics": + return CacheStatistics(self.hits, self.misses) + + +class CacheBase: + def __init__(self) -> None: + self.lock = threading.Lock() + self.statistics = CacheStatistics() + + def reset_statistics(self) -> None: + """Reset all statistics to zero.""" + with self.lock: + self.statistics.reset() + + def hits(self) -> int: + """How many hits has the cache had?""" + with self.lock: + return self.statistics.hits + + def misses(self) -> int: + """How many misses has the cache had?""" + with self.lock: + return self.statistics.misses + + def get_statistics_snapshot(self) -> CacheStatistics: + """Return a consistent snapshot of all the statistics. + + If running with multiple threads, it's better to take a + snapshot than to call statistics methods such as hits() and + misses() individually. + """ + with self.lock: + return self.statistics.clone() + + +CacheKey = Tuple[dns.name.Name, dns.rdatatype.RdataType, dns.rdataclass.RdataClass] + + +class Cache(CacheBase): + """Simple thread-safe DNS answer cache.""" + + def __init__(self, cleaning_interval: float = 300.0) -> None: + """*cleaning_interval*, a ``float`` is the number of seconds between + periodic cleanings. + """ + + super().__init__() + self.data: Dict[CacheKey, Answer] = {} + self.cleaning_interval = cleaning_interval + self.next_cleaning: float = time.time() + self.cleaning_interval + + def _maybe_clean(self) -> None: + """Clean the cache if it's time to do so.""" + + now = time.time() + if self.next_cleaning <= now: + keys_to_delete = [] + for k, v in self.data.items(): + if v.expiration <= now: + keys_to_delete.append(k) + for k in keys_to_delete: + del self.data[k] + now = time.time() + self.next_cleaning = now + self.cleaning_interval + + def get(self, key: CacheKey) -> Optional[Answer]: + """Get the answer associated with *key*. + + Returns None if no answer is cached for the key. + + *key*, a ``(dns.name.Name, dns.rdatatype.RdataType, dns.rdataclass.RdataClass)`` + tuple whose values are the query name, rdtype, and rdclass respectively. + + Returns a ``dns.resolver.Answer`` or ``None``. + """ + + with self.lock: + self._maybe_clean() + v = self.data.get(key) + if v is None or v.expiration <= time.time(): + self.statistics.misses += 1 + return None + self.statistics.hits += 1 + return v + + def put(self, key: CacheKey, value: Answer) -> None: + """Associate key and value in the cache. + + *key*, a ``(dns.name.Name, dns.rdatatype.RdataType, dns.rdataclass.RdataClass)`` + tuple whose values are the query name, rdtype, and rdclass respectively. + + *value*, a ``dns.resolver.Answer``, the answer. + """ + + with self.lock: + self._maybe_clean() + self.data[key] = value + + def flush(self, key: Optional[CacheKey] = None) -> None: + """Flush the cache. + + If *key* is not ``None``, only that item is flushed. Otherwise the entire cache + is flushed. + + *key*, a ``(dns.name.Name, dns.rdatatype.RdataType, dns.rdataclass.RdataClass)`` + tuple whose values are the query name, rdtype, and rdclass respectively. + """ + + with self.lock: + if key is not None: + if key in self.data: + del self.data[key] + else: + self.data = {} + self.next_cleaning = time.time() + self.cleaning_interval + + +class LRUCacheNode: + """LRUCache node.""" + + def __init__(self, key, value): + self.key = key + self.value = value + self.hits = 0 + self.prev = self + self.next = self + + def link_after(self, node: "LRUCacheNode") -> None: + self.prev = node + self.next = node.next + node.next.prev = self + node.next = self + + def unlink(self) -> None: + self.next.prev = self.prev + self.prev.next = self.next + + +class LRUCache(CacheBase): + """Thread-safe, bounded, least-recently-used DNS answer cache. + + This cache is better than the simple cache (above) if you're + running a web crawler or other process that does a lot of + resolutions. The LRUCache has a maximum number of nodes, and when + it is full, the least-recently used node is removed to make space + for a new one. + """ + + def __init__(self, max_size: int = 100000) -> None: + """*max_size*, an ``int``, is the maximum number of nodes to cache; + it must be greater than 0. + """ + + super().__init__() + self.data: Dict[CacheKey, LRUCacheNode] = {} + self.set_max_size(max_size) + self.sentinel: LRUCacheNode = LRUCacheNode(None, None) + self.sentinel.prev = self.sentinel + self.sentinel.next = self.sentinel + + def set_max_size(self, max_size: int) -> None: + if max_size < 1: + max_size = 1 + self.max_size = max_size + + def get(self, key: CacheKey) -> Optional[Answer]: + """Get the answer associated with *key*. + + Returns None if no answer is cached for the key. + + *key*, a ``(dns.name.Name, dns.rdatatype.RdataType, dns.rdataclass.RdataClass)`` + tuple whose values are the query name, rdtype, and rdclass respectively. + + Returns a ``dns.resolver.Answer`` or ``None``. + """ + + with self.lock: + node = self.data.get(key) + if node is None: + self.statistics.misses += 1 + return None + # Unlink because we're either going to move the node to the front + # of the LRU list or we're going to free it. + node.unlink() + if node.value.expiration <= time.time(): + del self.data[node.key] + self.statistics.misses += 1 + return None + node.link_after(self.sentinel) + self.statistics.hits += 1 + node.hits += 1 + return node.value + + def get_hits_for_key(self, key: CacheKey) -> int: + """Return the number of cache hits associated with the specified key.""" + with self.lock: + node = self.data.get(key) + if node is None or node.value.expiration <= time.time(): + return 0 + else: + return node.hits + + def put(self, key: CacheKey, value: Answer) -> None: + """Associate key and value in the cache. + + *key*, a ``(dns.name.Name, dns.rdatatype.RdataType, dns.rdataclass.RdataClass)`` + tuple whose values are the query name, rdtype, and rdclass respectively. + + *value*, a ``dns.resolver.Answer``, the answer. + """ + + with self.lock: + node = self.data.get(key) + if node is not None: + node.unlink() + del self.data[node.key] + while len(self.data) >= self.max_size: + gnode = self.sentinel.prev + gnode.unlink() + del self.data[gnode.key] + node = LRUCacheNode(key, value) + node.link_after(self.sentinel) + self.data[key] = node + + def flush(self, key: Optional[CacheKey] = None) -> None: + """Flush the cache. + + If *key* is not ``None``, only that item is flushed. Otherwise the entire cache + is flushed. + + *key*, a ``(dns.name.Name, dns.rdatatype.RdataType, dns.rdataclass.RdataClass)`` + tuple whose values are the query name, rdtype, and rdclass respectively. + """ + + with self.lock: + if key is not None: + node = self.data.get(key) + if node is not None: + node.unlink() + del self.data[node.key] + else: + gnode = self.sentinel.next + while gnode != self.sentinel: + next = gnode.next + gnode.unlink() + gnode = next + self.data = {} + + +class _Resolution: + """Helper class for dns.resolver.Resolver.resolve(). + + All of the "business logic" of resolution is encapsulated in this + class, allowing us to have multiple resolve() implementations + using different I/O schemes without copying all of the + complicated logic. + + This class is a "friend" to dns.resolver.Resolver and manipulates + resolver data structures directly. + """ + + def __init__( + self, + resolver: "BaseResolver", + qname: Union[dns.name.Name, str], + rdtype: Union[dns.rdatatype.RdataType, str], + rdclass: Union[dns.rdataclass.RdataClass, str], + tcp: bool, + raise_on_no_answer: bool, + search: Optional[bool], + ) -> None: + if isinstance(qname, str): + qname = dns.name.from_text(qname, None) + rdtype = dns.rdatatype.RdataType.make(rdtype) + if dns.rdatatype.is_metatype(rdtype): + raise NoMetaqueries + rdclass = dns.rdataclass.RdataClass.make(rdclass) + if dns.rdataclass.is_metaclass(rdclass): + raise NoMetaqueries + self.resolver = resolver + self.qnames_to_try = resolver._get_qnames_to_try(qname, search) + self.qnames = self.qnames_to_try[:] + self.rdtype = rdtype + self.rdclass = rdclass + self.tcp = tcp + self.raise_on_no_answer = raise_on_no_answer + self.nxdomain_responses: Dict[dns.name.Name, dns.message.QueryMessage] = {} + # Initialize other things to help analysis tools + self.qname = dns.name.empty + self.nameservers: List[dns.nameserver.Nameserver] = [] + self.current_nameservers: List[dns.nameserver.Nameserver] = [] + self.errors: List[ErrorTuple] = [] + self.nameserver: Optional[dns.nameserver.Nameserver] = None + self.tcp_attempt = False + self.retry_with_tcp = False + self.request: Optional[dns.message.QueryMessage] = None + self.backoff = 0.0 + + def next_request( + self, + ) -> Tuple[Optional[dns.message.QueryMessage], Optional[Answer]]: + """Get the next request to send, and check the cache. + + Returns a (request, answer) tuple. At most one of request or + answer will not be None. + """ + + # We return a tuple instead of Union[Message,Answer] as it lets + # the caller avoid isinstance(). + + while len(self.qnames) > 0: + self.qname = self.qnames.pop(0) + + # Do we know the answer? + if self.resolver.cache: + answer = self.resolver.cache.get( + (self.qname, self.rdtype, self.rdclass) + ) + if answer is not None: + if answer.rrset is None and self.raise_on_no_answer: + raise NoAnswer(response=answer.response) + else: + return (None, answer) + answer = self.resolver.cache.get( + (self.qname, dns.rdatatype.ANY, self.rdclass) + ) + if answer is not None and answer.response.rcode() == dns.rcode.NXDOMAIN: + # cached NXDOMAIN; record it and continue to next + # name. + self.nxdomain_responses[self.qname] = answer.response + continue + + # Build the request + request = dns.message.make_query(self.qname, self.rdtype, self.rdclass) + if self.resolver.keyname is not None: + request.use_tsig( + self.resolver.keyring, + self.resolver.keyname, + algorithm=self.resolver.keyalgorithm, + ) + request.use_edns( + self.resolver.edns, + self.resolver.ednsflags, + self.resolver.payload, + options=self.resolver.ednsoptions, + ) + if self.resolver.flags is not None: + request.flags = self.resolver.flags + + self.nameservers = self.resolver._enrich_nameservers( + self.resolver._nameservers, + self.resolver.nameserver_ports, + self.resolver.port, + ) + if self.resolver.rotate: + random.shuffle(self.nameservers) + self.current_nameservers = self.nameservers[:] + self.errors = [] + self.nameserver = None + self.tcp_attempt = False + self.retry_with_tcp = False + self.request = request + self.backoff = 0.10 + + return (request, None) + + # + # We've tried everything and only gotten NXDOMAINs. (We know + # it's only NXDOMAINs as anything else would have returned + # before now.) + # + raise NXDOMAIN(qnames=self.qnames_to_try, responses=self.nxdomain_responses) + + def next_nameserver(self) -> Tuple[dns.nameserver.Nameserver, bool, float]: + if self.retry_with_tcp: + assert self.nameserver is not None + assert not self.nameserver.is_always_max_size() + self.tcp_attempt = True + self.retry_with_tcp = False + return (self.nameserver, True, 0) + + backoff = 0.0 + if not self.current_nameservers: + if len(self.nameservers) == 0: + # Out of things to try! + raise NoNameservers(request=self.request, errors=self.errors) + self.current_nameservers = self.nameservers[:] + backoff = self.backoff + self.backoff = min(self.backoff * 2, 2) + + self.nameserver = self.current_nameservers.pop(0) + self.tcp_attempt = self.tcp or self.nameserver.is_always_max_size() + return (self.nameserver, self.tcp_attempt, backoff) + + def query_result( + self, response: Optional[dns.message.Message], ex: Optional[Exception] + ) -> Tuple[Optional[Answer], bool]: + # + # returns an (answer: Answer, end_loop: bool) tuple. + # + assert self.nameserver is not None + if ex: + # Exception during I/O or from_wire() + assert response is None + self.errors.append( + ( + str(self.nameserver), + self.tcp_attempt, + self.nameserver.answer_port(), + ex, + response, + ) + ) + if ( + isinstance(ex, dns.exception.FormError) + or isinstance(ex, EOFError) + or isinstance(ex, OSError) + or isinstance(ex, NotImplementedError) + ): + # This nameserver is no good, take it out of the mix. + self.nameservers.remove(self.nameserver) + elif isinstance(ex, dns.message.Truncated): + if self.tcp_attempt: + # Truncation with TCP is no good! + self.nameservers.remove(self.nameserver) + else: + self.retry_with_tcp = True + return (None, False) + # We got an answer! + assert response is not None + assert isinstance(response, dns.message.QueryMessage) + rcode = response.rcode() + if rcode == dns.rcode.NOERROR: + try: + answer = Answer( + self.qname, + self.rdtype, + self.rdclass, + response, + self.nameserver.answer_nameserver(), + self.nameserver.answer_port(), + ) + except Exception as e: + self.errors.append( + ( + str(self.nameserver), + self.tcp_attempt, + self.nameserver.answer_port(), + e, + response, + ) + ) + # The nameserver is no good, take it out of the mix. + self.nameservers.remove(self.nameserver) + return (None, False) + if self.resolver.cache: + self.resolver.cache.put((self.qname, self.rdtype, self.rdclass), answer) + if answer.rrset is None and self.raise_on_no_answer: + raise NoAnswer(response=answer.response) + return (answer, True) + elif rcode == dns.rcode.NXDOMAIN: + # Further validate the response by making an Answer, even + # if we aren't going to cache it. + try: + answer = Answer( + self.qname, dns.rdatatype.ANY, dns.rdataclass.IN, response + ) + except Exception as e: + self.errors.append( + ( + str(self.nameserver), + self.tcp_attempt, + self.nameserver.answer_port(), + e, + response, + ) + ) + # The nameserver is no good, take it out of the mix. + self.nameservers.remove(self.nameserver) + return (None, False) + self.nxdomain_responses[self.qname] = response + if self.resolver.cache: + self.resolver.cache.put( + (self.qname, dns.rdatatype.ANY, self.rdclass), answer + ) + # Make next_nameserver() return None, so caller breaks its + # inner loop and calls next_request(). + return (None, True) + elif rcode == dns.rcode.YXDOMAIN: + yex = YXDOMAIN() + self.errors.append( + ( + str(self.nameserver), + self.tcp_attempt, + self.nameserver.answer_port(), + yex, + response, + ) + ) + raise yex + else: + # + # We got a response, but we're not happy with the + # rcode in it. + # + if rcode != dns.rcode.SERVFAIL or not self.resolver.retry_servfail: + self.nameservers.remove(self.nameserver) + self.errors.append( + ( + str(self.nameserver), + self.tcp_attempt, + self.nameserver.answer_port(), + dns.rcode.to_text(rcode), + response, + ) + ) + return (None, False) + + +class BaseResolver: + """DNS stub resolver.""" + + # We initialize in reset() + # + # pylint: disable=attribute-defined-outside-init + + domain: dns.name.Name + nameserver_ports: Dict[str, int] + port: int + search: List[dns.name.Name] + use_search_by_default: bool + timeout: float + lifetime: float + keyring: Optional[Any] + keyname: Optional[Union[dns.name.Name, str]] + keyalgorithm: Union[dns.name.Name, str] + edns: int + ednsflags: int + ednsoptions: Optional[List[dns.edns.Option]] + payload: int + cache: Any + flags: Optional[int] + retry_servfail: bool + rotate: bool + ndots: Optional[int] + _nameservers: Sequence[Union[str, dns.nameserver.Nameserver]] + + def __init__( + self, filename: str = "/etc/resolv.conf", configure: bool = True + ) -> None: + """*filename*, a ``str`` or file object, specifying a file + in standard /etc/resolv.conf format. This parameter is meaningful + only when *configure* is true and the platform is POSIX. + + *configure*, a ``bool``. If True (the default), the resolver + instance is configured in the normal fashion for the operating + system the resolver is running on. (I.e. by reading a + /etc/resolv.conf file on POSIX systems and from the registry + on Windows systems.) + """ + + self.reset() + if configure: + if sys.platform == "win32": # pragma: no cover + self.read_registry() + elif filename: + self.read_resolv_conf(filename) + + def reset(self) -> None: + """Reset all resolver configuration to the defaults.""" + + self.domain = dns.name.Name(dns.name.from_text(socket.gethostname())[1:]) + if len(self.domain) == 0: # pragma: no cover + self.domain = dns.name.root + self._nameservers = [] + self.nameserver_ports = {} + self.port = 53 + self.search = [] + self.use_search_by_default = False + self.timeout = 2.0 + self.lifetime = 5.0 + self.keyring = None + self.keyname = None + self.keyalgorithm = dns.tsig.default_algorithm + self.edns = -1 + self.ednsflags = 0 + self.ednsoptions = None + self.payload = 0 + self.cache = None + self.flags = None + self.retry_servfail = False + self.rotate = False + self.ndots = None + + def read_resolv_conf(self, f: Any) -> None: + """Process *f* as a file in the /etc/resolv.conf format. If f is + a ``str``, it is used as the name of the file to open; otherwise it + is treated as the file itself. + + Interprets the following items: + + - nameserver - name server IP address + + - domain - local domain name + + - search - search list for host-name lookup + + - options - supported options are rotate, timeout, edns0, and ndots + + """ + + nameservers = [] + if isinstance(f, str): + try: + cm: contextlib.AbstractContextManager = open(f) + except OSError: + # /etc/resolv.conf doesn't exist, can't be read, etc. + raise NoResolverConfiguration(f"cannot open {f}") + else: + cm = contextlib.nullcontext(f) + with cm as f: + for l in f: + if len(l) == 0 or l[0] == "#" or l[0] == ";": + continue + tokens = l.split() + + # Any line containing less than 2 tokens is malformed + if len(tokens) < 2: + continue + + if tokens[0] == "nameserver": + nameservers.append(tokens[1]) + elif tokens[0] == "domain": + self.domain = dns.name.from_text(tokens[1]) + # domain and search are exclusive + self.search = [] + elif tokens[0] == "search": + # the last search wins + self.search = [] + for suffix in tokens[1:]: + self.search.append(dns.name.from_text(suffix)) + # We don't set domain as it is not used if + # len(self.search) > 0 + elif tokens[0] == "options": + for opt in tokens[1:]: + if opt == "rotate": + self.rotate = True + elif opt == "edns0": + self.use_edns() + elif "timeout" in opt: + try: + self.timeout = int(opt.split(":")[1]) + except (ValueError, IndexError): + pass + elif "ndots" in opt: + try: + self.ndots = int(opt.split(":")[1]) + except (ValueError, IndexError): + pass + if len(nameservers) == 0: + raise NoResolverConfiguration("no nameservers") + # Assigning directly instead of appending means we invoke the + # setter logic, with additonal checking and enrichment. + self.nameservers = nameservers + + def read_registry(self) -> None: # pragma: no cover + """Extract resolver configuration from the Windows registry.""" + try: + info = dns.win32util.get_dns_info() # type: ignore + if info.domain is not None: + self.domain = info.domain + self.nameservers = info.nameservers + self.search = info.search + except AttributeError: + raise NotImplementedError + + def _compute_timeout( + self, + start: float, + lifetime: Optional[float] = None, + errors: Optional[List[ErrorTuple]] = None, + ) -> float: + lifetime = self.lifetime if lifetime is None else lifetime + now = time.time() + duration = now - start + if errors is None: + errors = [] + if duration < 0: + if duration < -1: + # Time going backwards is bad. Just give up. + raise LifetimeTimeout(timeout=duration, errors=errors) + else: + # Time went backwards, but only a little. This can + # happen, e.g. under vmware with older linux kernels. + # Pretend it didn't happen. + duration = 0 + if duration >= lifetime: + raise LifetimeTimeout(timeout=duration, errors=errors) + return min(lifetime - duration, self.timeout) + + def _get_qnames_to_try( + self, qname: dns.name.Name, search: Optional[bool] + ) -> List[dns.name.Name]: + # This is a separate method so we can unit test the search + # rules without requiring the Internet. + if search is None: + search = self.use_search_by_default + qnames_to_try = [] + if qname.is_absolute(): + qnames_to_try.append(qname) + else: + abs_qname = qname.concatenate(dns.name.root) + if search: + if len(self.search) > 0: + # There is a search list, so use it exclusively + search_list = self.search[:] + elif self.domain != dns.name.root and self.domain is not None: + # We have some notion of a domain that isn't the root, so + # use it as the search list. + search_list = [self.domain] + else: + search_list = [] + # Figure out the effective ndots (default is 1) + if self.ndots is None: + ndots = 1 + else: + ndots = self.ndots + for suffix in search_list: + qnames_to_try.append(qname + suffix) + if len(qname) > ndots: + # The name has at least ndots dots, so we should try an + # absolute query first. + qnames_to_try.insert(0, abs_qname) + else: + # The name has less than ndots dots, so we should search + # first, then try the absolute name. + qnames_to_try.append(abs_qname) + else: + qnames_to_try.append(abs_qname) + return qnames_to_try + + def use_tsig( + self, + keyring: Any, + keyname: Optional[Union[dns.name.Name, str]] = None, + algorithm: Union[dns.name.Name, str] = dns.tsig.default_algorithm, + ) -> None: + """Add a TSIG signature to each query. + + The parameters are passed to ``dns.message.Message.use_tsig()``; + see its documentation for details. + """ + + self.keyring = keyring + self.keyname = keyname + self.keyalgorithm = algorithm + + def use_edns( + self, + edns: Optional[Union[int, bool]] = 0, + ednsflags: int = 0, + payload: int = dns.message.DEFAULT_EDNS_PAYLOAD, + options: Optional[List[dns.edns.Option]] = None, + ) -> None: + """Configure EDNS behavior. + + *edns*, an ``int``, is the EDNS level to use. Specifying + ``None``, ``False``, or ``-1`` means "do not use EDNS", and in this case + the other parameters are ignored. Specifying ``True`` is + equivalent to specifying 0, i.e. "use EDNS0". + + *ednsflags*, an ``int``, the EDNS flag values. + + *payload*, an ``int``, is the EDNS sender's payload field, which is the + maximum size of UDP datagram the sender can handle. I.e. how big + a response to this message can be. + + *options*, a list of ``dns.edns.Option`` objects or ``None``, the EDNS + options. + """ + + if edns is None or edns is False: + edns = -1 + elif edns is True: + edns = 0 + self.edns = edns + self.ednsflags = ednsflags + self.payload = payload + self.ednsoptions = options + + def set_flags(self, flags: int) -> None: + """Overrides the default flags with your own. + + *flags*, an ``int``, the message flags to use. + """ + + self.flags = flags + + @classmethod + def _enrich_nameservers( + cls, + nameservers: Sequence[Union[str, dns.nameserver.Nameserver]], + nameserver_ports: Dict[str, int], + default_port: int, + ) -> List[dns.nameserver.Nameserver]: + enriched_nameservers = [] + if isinstance(nameservers, list): + for nameserver in nameservers: + enriched_nameserver: dns.nameserver.Nameserver + if isinstance(nameserver, dns.nameserver.Nameserver): + enriched_nameserver = nameserver + elif dns.inet.is_address(nameserver): + port = nameserver_ports.get(nameserver, default_port) + enriched_nameserver = dns.nameserver.Do53Nameserver( + nameserver, port + ) + else: + try: + if urlparse(nameserver).scheme != "https": + raise NotImplementedError + except Exception: + raise ValueError( + f"nameserver {nameserver} is not a " + "dns.nameserver.Nameserver instance or text form, " + "IP address, nor a valid https URL" + ) + enriched_nameserver = dns.nameserver.DoHNameserver(nameserver) + enriched_nameservers.append(enriched_nameserver) + else: + raise ValueError( + f"nameservers must be a list or tuple (not a {type(nameservers)})" + ) + return enriched_nameservers + + @property + def nameservers( + self, + ) -> Sequence[Union[str, dns.nameserver.Nameserver]]: + return self._nameservers + + @nameservers.setter + def nameservers( + self, nameservers: Sequence[Union[str, dns.nameserver.Nameserver]] + ) -> None: + """ + *nameservers*, a ``list`` of nameservers, where a nameserver is either + a string interpretable as a nameserver, or a ``dns.nameserver.Nameserver`` + instance. + + Raises ``ValueError`` if *nameservers* is not a list of nameservers. + """ + # We just call _enrich_nameservers() for checking + self._enrich_nameservers(nameservers, self.nameserver_ports, self.port) + self._nameservers = nameservers + + +class Resolver(BaseResolver): + """DNS stub resolver.""" + + def resolve( + self, + qname: Union[dns.name.Name, str], + rdtype: Union[dns.rdatatype.RdataType, str] = dns.rdatatype.A, + rdclass: Union[dns.rdataclass.RdataClass, str] = dns.rdataclass.IN, + tcp: bool = False, + source: Optional[str] = None, + raise_on_no_answer: bool = True, + source_port: int = 0, + lifetime: Optional[float] = None, + search: Optional[bool] = None, + ) -> Answer: # pylint: disable=arguments-differ + """Query nameservers to find the answer to the question. + + The *qname*, *rdtype*, and *rdclass* parameters may be objects + of the appropriate type, or strings that can be converted into objects + of the appropriate type. + + *qname*, a ``dns.name.Name`` or ``str``, the query name. + + *rdtype*, an ``int`` or ``str``, the query type. + + *rdclass*, an ``int`` or ``str``, the query class. + + *tcp*, a ``bool``. If ``True``, use TCP to make the query. + + *source*, a ``str`` or ``None``. If not ``None``, bind to this IP + address when making queries. + + *raise_on_no_answer*, a ``bool``. If ``True``, raise + ``dns.resolver.NoAnswer`` if there's no answer to the question. + + *source_port*, an ``int``, the port from which to send the message. + + *lifetime*, a ``float``, how many seconds a query should run + before timing out. + + *search*, a ``bool`` or ``None``, determines whether the + search list configured in the system's resolver configuration + are used for relative names, and whether the resolver's domain + may be added to relative names. The default is ``None``, + which causes the value of the resolver's + ``use_search_by_default`` attribute to be used. + + Raises ``dns.resolver.LifetimeTimeout`` if no answers could be found + in the specified lifetime. + + Raises ``dns.resolver.NXDOMAIN`` if the query name does not exist. + + Raises ``dns.resolver.YXDOMAIN`` if the query name is too long after + DNAME substitution. + + Raises ``dns.resolver.NoAnswer`` if *raise_on_no_answer* is + ``True`` and the query name exists but has no RRset of the + desired type and class. + + Raises ``dns.resolver.NoNameservers`` if no non-broken + nameservers are available to answer the question. + + Returns a ``dns.resolver.Answer`` instance. + + """ + + resolution = _Resolution( + self, qname, rdtype, rdclass, tcp, raise_on_no_answer, search + ) + start = time.time() + while True: + (request, answer) = resolution.next_request() + # Note we need to say "if answer is not None" and not just + # "if answer" because answer implements __len__, and python + # will call that. We want to return if we have an answer + # object, including in cases where its length is 0. + if answer is not None: + # cache hit! + return answer + assert request is not None # needed for type checking + done = False + while not done: + (nameserver, tcp, backoff) = resolution.next_nameserver() + if backoff: + time.sleep(backoff) + timeout = self._compute_timeout(start, lifetime, resolution.errors) + try: + response = nameserver.query( + request, + timeout=timeout, + source=source, + source_port=source_port, + max_size=tcp, + ) + except Exception as ex: + (_, done) = resolution.query_result(None, ex) + continue + (answer, done) = resolution.query_result(response, None) + # Note we need to say "if answer is not None" and not just + # "if answer" because answer implements __len__, and python + # will call that. We want to return if we have an answer + # object, including in cases where its length is 0. + if answer is not None: + return answer + + def query( + self, + qname: Union[dns.name.Name, str], + rdtype: Union[dns.rdatatype.RdataType, str] = dns.rdatatype.A, + rdclass: Union[dns.rdataclass.RdataClass, str] = dns.rdataclass.IN, + tcp: bool = False, + source: Optional[str] = None, + raise_on_no_answer: bool = True, + source_port: int = 0, + lifetime: Optional[float] = None, + ) -> Answer: # pragma: no cover + """Query nameservers to find the answer to the question. + + This method calls resolve() with ``search=True``, and is + provided for backwards compatibility with prior versions of + dnspython. See the documentation for the resolve() method for + further details. + """ + warnings.warn( + "please use dns.resolver.Resolver.resolve() instead", + DeprecationWarning, + stacklevel=2, + ) + return self.resolve( + qname, + rdtype, + rdclass, + tcp, + source, + raise_on_no_answer, + source_port, + lifetime, + True, + ) + + def resolve_address(self, ipaddr: str, *args: Any, **kwargs: Any) -> Answer: + """Use a resolver to run a reverse query for PTR records. + + This utilizes the resolve() method to perform a PTR lookup on the + specified IP address. + + *ipaddr*, a ``str``, the IPv4 or IPv6 address you want to get + the PTR record for. + + All other arguments that can be passed to the resolve() function + except for rdtype and rdclass are also supported by this + function. + """ + # We make a modified kwargs for type checking happiness, as otherwise + # we get a legit warning about possibly having rdtype and rdclass + # in the kwargs more than once. + modified_kwargs: Dict[str, Any] = {} + modified_kwargs.update(kwargs) + modified_kwargs["rdtype"] = dns.rdatatype.PTR + modified_kwargs["rdclass"] = dns.rdataclass.IN + return self.resolve( + dns.reversename.from_address(ipaddr), *args, **modified_kwargs + ) + + def resolve_name( + self, + name: Union[dns.name.Name, str], + family: int = socket.AF_UNSPEC, + **kwargs: Any, + ) -> HostAnswers: + """Use a resolver to query for address records. + + This utilizes the resolve() method to perform A and/or AAAA lookups on + the specified name. + + *qname*, a ``dns.name.Name`` or ``str``, the name to resolve. + + *family*, an ``int``, the address family. If socket.AF_UNSPEC + (the default), both A and AAAA records will be retrieved. + + All other arguments that can be passed to the resolve() function + except for rdtype and rdclass are also supported by this + function. + """ + # We make a modified kwargs for type checking happiness, as otherwise + # we get a legit warning about possibly having rdtype and rdclass + # in the kwargs more than once. + modified_kwargs: Dict[str, Any] = {} + modified_kwargs.update(kwargs) + modified_kwargs.pop("rdtype", None) + modified_kwargs["rdclass"] = dns.rdataclass.IN + + if family == socket.AF_INET: + v4 = self.resolve(name, dns.rdatatype.A, **modified_kwargs) + return HostAnswers.make(v4=v4) + elif family == socket.AF_INET6: + v6 = self.resolve(name, dns.rdatatype.AAAA, **modified_kwargs) + return HostAnswers.make(v6=v6) + elif family != socket.AF_UNSPEC: # pragma: no cover + raise NotImplementedError(f"unknown address family {family}") + + raise_on_no_answer = modified_kwargs.pop("raise_on_no_answer", True) + lifetime = modified_kwargs.pop("lifetime", None) + start = time.time() + v6 = self.resolve( + name, + dns.rdatatype.AAAA, + raise_on_no_answer=False, + lifetime=self._compute_timeout(start, lifetime), + **modified_kwargs, + ) + # Note that setting name ensures we query the same name + # for A as we did for AAAA. (This is just in case search lists + # are active by default in the resolver configuration and + # we might be talking to a server that says NXDOMAIN when it + # wants to say NOERROR no data. + name = v6.qname + v4 = self.resolve( + name, + dns.rdatatype.A, + raise_on_no_answer=False, + lifetime=self._compute_timeout(start, lifetime), + **modified_kwargs, + ) + answers = HostAnswers.make(v6=v6, v4=v4, add_empty=not raise_on_no_answer) + if not answers: + raise NoAnswer(response=v6.response) + return answers + + # pylint: disable=redefined-outer-name + + def canonical_name(self, name: Union[dns.name.Name, str]) -> dns.name.Name: + """Determine the canonical name of *name*. + + The canonical name is the name the resolver uses for queries + after all CNAME and DNAME renamings have been applied. + + *name*, a ``dns.name.Name`` or ``str``, the query name. + + This method can raise any exception that ``resolve()`` can + raise, other than ``dns.resolver.NoAnswer`` and + ``dns.resolver.NXDOMAIN``. + + Returns a ``dns.name.Name``. + """ + try: + answer = self.resolve(name, raise_on_no_answer=False) + canonical_name = answer.canonical_name + except dns.resolver.NXDOMAIN as e: + canonical_name = e.canonical_name + return canonical_name + + # pylint: enable=redefined-outer-name + + def try_ddr(self, lifetime: float = 5.0) -> None: + """Try to update the resolver's nameservers using Discovery of Designated + Resolvers (DDR). If successful, the resolver will subsequently use + DNS-over-HTTPS or DNS-over-TLS for future queries. + + *lifetime*, a float, is the maximum time to spend attempting DDR. The default + is 5 seconds. + + If the SVCB query is successful and results in a non-empty list of nameservers, + then the resolver's nameservers are set to the returned servers in priority + order. + + The current implementation does not use any address hints from the SVCB record, + nor does it resolve addresses for the SCVB target name, rather it assumes that + the bootstrap nameserver will always be one of the addresses and uses it. + A future revision to the code may offer fuller support. The code verifies that + the bootstrap nameserver is in the Subject Alternative Name field of the + TLS certficate. + """ + try: + expiration = time.time() + lifetime + answer = self.resolve( + dns._ddr._local_resolver_name, "SVCB", lifetime=lifetime + ) + timeout = dns.query._remaining(expiration) + nameservers = dns._ddr._get_nameservers_sync(answer, timeout) + if len(nameservers) > 0: + self.nameservers = nameservers + except Exception: # pragma: no cover + pass + + +#: The default resolver. +default_resolver: Optional[Resolver] = None + + +def get_default_resolver() -> Resolver: + """Get the default resolver, initializing it if necessary.""" + if default_resolver is None: + reset_default_resolver() + assert default_resolver is not None + return default_resolver + + +def reset_default_resolver() -> None: + """Re-initialize default resolver. + + Note that the resolver configuration (i.e. /etc/resolv.conf on UNIX + systems) will be re-read immediately. + """ + + global default_resolver + default_resolver = Resolver() + + +def resolve( + qname: Union[dns.name.Name, str], + rdtype: Union[dns.rdatatype.RdataType, str] = dns.rdatatype.A, + rdclass: Union[dns.rdataclass.RdataClass, str] = dns.rdataclass.IN, + tcp: bool = False, + source: Optional[str] = None, + raise_on_no_answer: bool = True, + source_port: int = 0, + lifetime: Optional[float] = None, + search: Optional[bool] = None, +) -> Answer: # pragma: no cover + """Query nameservers to find the answer to the question. + + This is a convenience function that uses the default resolver + object to make the query. + + See ``dns.resolver.Resolver.resolve`` for more information on the + parameters. + """ + + return get_default_resolver().resolve( + qname, + rdtype, + rdclass, + tcp, + source, + raise_on_no_answer, + source_port, + lifetime, + search, + ) + + +def query( + qname: Union[dns.name.Name, str], + rdtype: Union[dns.rdatatype.RdataType, str] = dns.rdatatype.A, + rdclass: Union[dns.rdataclass.RdataClass, str] = dns.rdataclass.IN, + tcp: bool = False, + source: Optional[str] = None, + raise_on_no_answer: bool = True, + source_port: int = 0, + lifetime: Optional[float] = None, +) -> Answer: # pragma: no cover + """Query nameservers to find the answer to the question. + + This method calls resolve() with ``search=True``, and is + provided for backwards compatibility with prior versions of + dnspython. See the documentation for the resolve() method for + further details. + """ + warnings.warn( + "please use dns.resolver.resolve() instead", DeprecationWarning, stacklevel=2 + ) + return resolve( + qname, + rdtype, + rdclass, + tcp, + source, + raise_on_no_answer, + source_port, + lifetime, + True, + ) + + +def resolve_address(ipaddr: str, *args: Any, **kwargs: Any) -> Answer: + """Use a resolver to run a reverse query for PTR records. + + See ``dns.resolver.Resolver.resolve_address`` for more information on the + parameters. + """ + + return get_default_resolver().resolve_address(ipaddr, *args, **kwargs) + + +def resolve_name( + name: Union[dns.name.Name, str], family: int = socket.AF_UNSPEC, **kwargs: Any +) -> HostAnswers: + """Use a resolver to query for address records. + + See ``dns.resolver.Resolver.resolve_name`` for more information on the + parameters. + """ + + return get_default_resolver().resolve_name(name, family, **kwargs) + + +def canonical_name(name: Union[dns.name.Name, str]) -> dns.name.Name: + """Determine the canonical name of *name*. + + See ``dns.resolver.Resolver.canonical_name`` for more information on the + parameters and possible exceptions. + """ + + return get_default_resolver().canonical_name(name) + + +def try_ddr(lifetime: float = 5.0) -> None: # pragma: no cover + """Try to update the default resolver's nameservers using Discovery of Designated + Resolvers (DDR). If successful, the resolver will subsequently use + DNS-over-HTTPS or DNS-over-TLS for future queries. + + See :py:func:`dns.resolver.Resolver.try_ddr` for more information. + """ + return get_default_resolver().try_ddr(lifetime) + + +def zone_for_name( + name: Union[dns.name.Name, str], + rdclass: dns.rdataclass.RdataClass = dns.rdataclass.IN, + tcp: bool = False, + resolver: Optional[Resolver] = None, + lifetime: Optional[float] = None, +) -> dns.name.Name: + """Find the name of the zone which contains the specified name. + + *name*, an absolute ``dns.name.Name`` or ``str``, the query name. + + *rdclass*, an ``int``, the query class. + + *tcp*, a ``bool``. If ``True``, use TCP to make the query. + + *resolver*, a ``dns.resolver.Resolver`` or ``None``, the resolver to use. + If ``None``, the default, then the default resolver is used. + + *lifetime*, a ``float``, the total time to allow for the queries needed + to determine the zone. If ``None``, the default, then only the individual + query limits of the resolver apply. + + Raises ``dns.resolver.NoRootSOA`` if there is no SOA RR at the DNS + root. (This is only likely to happen if you're using non-default + root servers in your network and they are misconfigured.) + + Raises ``dns.resolver.LifetimeTimeout`` if the answer could not be + found in the allotted lifetime. + + Returns a ``dns.name.Name``. + """ + + if isinstance(name, str): + name = dns.name.from_text(name, dns.name.root) + if resolver is None: + resolver = get_default_resolver() + if not name.is_absolute(): + raise NotAbsolute(name) + start = time.time() + expiration: Optional[float] + if lifetime is not None: + expiration = start + lifetime + else: + expiration = None + while 1: + try: + rlifetime: Optional[float] + if expiration is not None: + rlifetime = expiration - time.time() + if rlifetime <= 0: + rlifetime = 0 + else: + rlifetime = None + answer = resolver.resolve( + name, dns.rdatatype.SOA, rdclass, tcp, lifetime=rlifetime + ) + assert answer.rrset is not None + if answer.rrset.name == name: + return name + # otherwise we were CNAMEd or DNAMEd and need to look higher + except (dns.resolver.NXDOMAIN, dns.resolver.NoAnswer) as e: + if isinstance(e, dns.resolver.NXDOMAIN): + response = e.responses().get(name) + else: + response = e.response() # pylint: disable=no-value-for-parameter + if response: + for rrs in response.authority: + if rrs.rdtype == dns.rdatatype.SOA and rrs.rdclass == rdclass: + (nr, _, _) = rrs.name.fullcompare(name) + if nr == dns.name.NAMERELN_SUPERDOMAIN: + # We're doing a proper superdomain check as + # if the name were equal we ought to have gotten + # it in the answer section! We are ignoring the + # possibility that the authority is insane and + # is including multiple SOA RRs for different + # authorities. + return rrs.name + # we couldn't extract anything useful from the response (e.g. it's + # a type 3 NXDOMAIN) + try: + name = name.parent() + except dns.name.NoParent: + raise NoRootSOA + + +def make_resolver_at( + where: Union[dns.name.Name, str], + port: int = 53, + family: int = socket.AF_UNSPEC, + resolver: Optional[Resolver] = None, +) -> Resolver: + """Make a stub resolver using the specified destination as the full resolver. + + *where*, a ``dns.name.Name`` or ``str`` the domain name or IP address of the + full resolver. + + *port*, an ``int``, the port to use. If not specified, the default is 53. + + *family*, an ``int``, the address family to use. This parameter is used if + *where* is not an address. The default is ``socket.AF_UNSPEC`` in which case + the first address returned by ``resolve_name()`` will be used, otherwise the + first address of the specified family will be used. + + *resolver*, a ``dns.resolver.Resolver`` or ``None``, the resolver to use for + resolution of hostnames. If not specified, the default resolver will be used. + + Returns a ``dns.resolver.Resolver`` or raises an exception. + """ + if resolver is None: + resolver = get_default_resolver() + nameservers: List[Union[str, dns.nameserver.Nameserver]] = [] + if isinstance(where, str) and dns.inet.is_address(where): + nameservers.append(dns.nameserver.Do53Nameserver(where, port)) + else: + for address in resolver.resolve_name(where, family).addresses(): + nameservers.append(dns.nameserver.Do53Nameserver(address, port)) + res = dns.resolver.Resolver(configure=False) + res.nameservers = nameservers + return res + + +def resolve_at( + where: Union[dns.name.Name, str], + qname: Union[dns.name.Name, str], + rdtype: Union[dns.rdatatype.RdataType, str] = dns.rdatatype.A, + rdclass: Union[dns.rdataclass.RdataClass, str] = dns.rdataclass.IN, + tcp: bool = False, + source: Optional[str] = None, + raise_on_no_answer: bool = True, + source_port: int = 0, + lifetime: Optional[float] = None, + search: Optional[bool] = None, + port: int = 53, + family: int = socket.AF_UNSPEC, + resolver: Optional[Resolver] = None, +) -> Answer: + """Query nameservers to find the answer to the question. + + This is a convenience function that calls ``dns.resolver.make_resolver_at()`` to + make a resolver, and then uses it to resolve the query. + + See ``dns.resolver.Resolver.resolve`` for more information on the resolution + parameters, and ``dns.resolver.make_resolver_at`` for information about the resolver + parameters *where*, *port*, *family*, and *resolver*. + + If making more than one query, it is more efficient to call + ``dns.resolver.make_resolver_at()`` and then use that resolver for the queries + instead of calling ``resolve_at()`` multiple times. + """ + return make_resolver_at(where, port, family, resolver).resolve( + qname, + rdtype, + rdclass, + tcp, + source, + raise_on_no_answer, + source_port, + lifetime, + search, + ) + + +# +# Support for overriding the system resolver for all python code in the +# running process. +# + +_protocols_for_socktype = { + socket.SOCK_DGRAM: [socket.SOL_UDP], + socket.SOCK_STREAM: [socket.SOL_TCP], +} + +_resolver = None +_original_getaddrinfo = socket.getaddrinfo +_original_getnameinfo = socket.getnameinfo +_original_getfqdn = socket.getfqdn +_original_gethostbyname = socket.gethostbyname +_original_gethostbyname_ex = socket.gethostbyname_ex +_original_gethostbyaddr = socket.gethostbyaddr + + +def _getaddrinfo( + host=None, service=None, family=socket.AF_UNSPEC, socktype=0, proto=0, flags=0 +): + if flags & socket.AI_NUMERICHOST != 0: + # Short circuit directly into the system's getaddrinfo(). We're + # not adding any value in this case, and this avoids infinite loops + # because dns.query.* needs to call getaddrinfo() for IPv6 scoping + # reasons. We will also do this short circuit below if we + # discover that the host is an address literal. + return _original_getaddrinfo(host, service, family, socktype, proto, flags) + if flags & (socket.AI_ADDRCONFIG | socket.AI_V4MAPPED) != 0: + # Not implemented. We raise a gaierror as opposed to a + # NotImplementedError as it helps callers handle errors more + # appropriately. [Issue #316] + # + # We raise EAI_FAIL as opposed to EAI_SYSTEM because there is + # no EAI_SYSTEM on Windows [Issue #416]. We didn't go for + # EAI_BADFLAGS as the flags aren't bad, we just don't + # implement them. + raise socket.gaierror( + socket.EAI_FAIL, "Non-recoverable failure in name resolution" + ) + if host is None and service is None: + raise socket.gaierror(socket.EAI_NONAME, "Name or service not known") + addrs = [] + canonical_name = None # pylint: disable=redefined-outer-name + # Is host None or an address literal? If so, use the system's + # getaddrinfo(). + if host is None: + return _original_getaddrinfo(host, service, family, socktype, proto, flags) + try: + # We don't care about the result of af_for_address(), we're just + # calling it so it raises an exception if host is not an IPv4 or + # IPv6 address. + dns.inet.af_for_address(host) + return _original_getaddrinfo(host, service, family, socktype, proto, flags) + except Exception: + pass + # Something needs resolution! + try: + answers = _resolver.resolve_name(host, family) + addrs = answers.addresses_and_families() + canonical_name = answers.canonical_name().to_text(True) + except dns.resolver.NXDOMAIN: + raise socket.gaierror(socket.EAI_NONAME, "Name or service not known") + except Exception: + # We raise EAI_AGAIN here as the failure may be temporary + # (e.g. a timeout) and EAI_SYSTEM isn't defined on Windows. + # [Issue #416] + raise socket.gaierror(socket.EAI_AGAIN, "Temporary failure in name resolution") + port = None + try: + # Is it a port literal? + if service is None: + port = 0 + else: + port = int(service) + except Exception: + if flags & socket.AI_NUMERICSERV == 0: + try: + port = socket.getservbyname(service) + except Exception: + pass + if port is None: + raise socket.gaierror(socket.EAI_NONAME, "Name or service not known") + tuples = [] + if socktype == 0: + socktypes = [socket.SOCK_DGRAM, socket.SOCK_STREAM] + else: + socktypes = [socktype] + if flags & socket.AI_CANONNAME != 0: + cname = canonical_name + else: + cname = "" + for addr, af in addrs: + for socktype in socktypes: + for proto in _protocols_for_socktype[socktype]: + addr_tuple = dns.inet.low_level_address_tuple((addr, port), af) + tuples.append((af, socktype, proto, cname, addr_tuple)) + if len(tuples) == 0: + raise socket.gaierror(socket.EAI_NONAME, "Name or service not known") + return tuples + + +def _getnameinfo(sockaddr, flags=0): + host = sockaddr[0] + port = sockaddr[1] + if len(sockaddr) == 4: + scope = sockaddr[3] + family = socket.AF_INET6 + else: + scope = None + family = socket.AF_INET + tuples = _getaddrinfo(host, port, family, socket.SOCK_STREAM, socket.SOL_TCP, 0) + if len(tuples) > 1: + raise OSError("sockaddr resolved to multiple addresses") + addr = tuples[0][4][0] + if flags & socket.NI_DGRAM: + pname = "udp" + else: + pname = "tcp" + qname = dns.reversename.from_address(addr) + if flags & socket.NI_NUMERICHOST == 0: + try: + answer = _resolver.resolve(qname, "PTR") + hostname = answer.rrset[0].target.to_text(True) + except (dns.resolver.NXDOMAIN, dns.resolver.NoAnswer): + if flags & socket.NI_NAMEREQD: + raise socket.gaierror(socket.EAI_NONAME, "Name or service not known") + hostname = addr + if scope is not None: + hostname += "%" + str(scope) + else: + hostname = addr + if scope is not None: + hostname += "%" + str(scope) + if flags & socket.NI_NUMERICSERV: + service = str(port) + else: + service = socket.getservbyport(port, pname) + return (hostname, service) + + +def _getfqdn(name=None): + if name is None: + name = socket.gethostname() + try: + (name, _, _) = _gethostbyaddr(name) + # Python's version checks aliases too, but our gethostbyname + # ignores them, so we do so here as well. + except Exception: # pragma: no cover + pass + return name + + +def _gethostbyname(name): + return _gethostbyname_ex(name)[2][0] + + +def _gethostbyname_ex(name): + aliases = [] + addresses = [] + tuples = _getaddrinfo( + name, 0, socket.AF_INET, socket.SOCK_STREAM, socket.SOL_TCP, socket.AI_CANONNAME + ) + canonical = tuples[0][3] + for item in tuples: + addresses.append(item[4][0]) + # XXX we just ignore aliases + return (canonical, aliases, addresses) + + +def _gethostbyaddr(ip): + try: + dns.ipv6.inet_aton(ip) + sockaddr = (ip, 80, 0, 0) + family = socket.AF_INET6 + except Exception: + try: + dns.ipv4.inet_aton(ip) + except Exception: + raise socket.gaierror(socket.EAI_NONAME, "Name or service not known") + sockaddr = (ip, 80) + family = socket.AF_INET + (name, _) = _getnameinfo(sockaddr, socket.NI_NAMEREQD) + aliases = [] + addresses = [] + tuples = _getaddrinfo( + name, 0, family, socket.SOCK_STREAM, socket.SOL_TCP, socket.AI_CANONNAME + ) + canonical = tuples[0][3] + # We only want to include an address from the tuples if it's the + # same as the one we asked about. We do this comparison in binary + # to avoid any differences in text representations. + bin_ip = dns.inet.inet_pton(family, ip) + for item in tuples: + addr = item[4][0] + bin_addr = dns.inet.inet_pton(family, addr) + if bin_ip == bin_addr: + addresses.append(addr) + # XXX we just ignore aliases + return (canonical, aliases, addresses) + + +def override_system_resolver(resolver: Optional[Resolver] = None) -> None: + """Override the system resolver routines in the socket module with + versions which use dnspython's resolver. + + This can be useful in testing situations where you want to control + the resolution behavior of python code without having to change + the system's resolver settings (e.g. /etc/resolv.conf). + + The resolver to use may be specified; if it's not, the default + resolver will be used. + + resolver, a ``dns.resolver.Resolver`` or ``None``, the resolver to use. + """ + + if resolver is None: + resolver = get_default_resolver() + global _resolver + _resolver = resolver + socket.getaddrinfo = _getaddrinfo + socket.getnameinfo = _getnameinfo + socket.getfqdn = _getfqdn + socket.gethostbyname = _gethostbyname + socket.gethostbyname_ex = _gethostbyname_ex + socket.gethostbyaddr = _gethostbyaddr + + +def restore_system_resolver() -> None: + """Undo the effects of prior override_system_resolver().""" + + global _resolver + _resolver = None + socket.getaddrinfo = _original_getaddrinfo + socket.getnameinfo = _original_getnameinfo + socket.getfqdn = _original_getfqdn + socket.gethostbyname = _original_gethostbyname + socket.gethostbyname_ex = _original_gethostbyname_ex + socket.gethostbyaddr = _original_gethostbyaddr diff --git a/.venv/lib/python3.11/site-packages/dns/reversename.py b/.venv/lib/python3.11/site-packages/dns/reversename.py new file mode 100644 index 0000000..8236c71 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/reversename.py @@ -0,0 +1,105 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2006-2017 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +"""DNS Reverse Map Names.""" + +import binascii + +import dns.ipv4 +import dns.ipv6 +import dns.name + +ipv4_reverse_domain = dns.name.from_text("in-addr.arpa.") +ipv6_reverse_domain = dns.name.from_text("ip6.arpa.") + + +def from_address( + text: str, + v4_origin: dns.name.Name = ipv4_reverse_domain, + v6_origin: dns.name.Name = ipv6_reverse_domain, +) -> dns.name.Name: + """Convert an IPv4 or IPv6 address in textual form into a Name object whose + value is the reverse-map domain name of the address. + + *text*, a ``str``, is an IPv4 or IPv6 address in textual form + (e.g. '127.0.0.1', '::1') + + *v4_origin*, a ``dns.name.Name`` to append to the labels corresponding to + the address if the address is an IPv4 address, instead of the default + (in-addr.arpa.) + + *v6_origin*, a ``dns.name.Name`` to append to the labels corresponding to + the address if the address is an IPv6 address, instead of the default + (ip6.arpa.) + + Raises ``dns.exception.SyntaxError`` if the address is badly formed. + + Returns a ``dns.name.Name``. + """ + + try: + v6 = dns.ipv6.inet_aton(text) + if dns.ipv6.is_mapped(v6): + parts = ["%d" % byte for byte in v6[12:]] + origin = v4_origin + else: + parts = [x for x in str(binascii.hexlify(v6).decode())] + origin = v6_origin + except Exception: + parts = ["%d" % byte for byte in dns.ipv4.inet_aton(text)] + origin = v4_origin + return dns.name.from_text(".".join(reversed(parts)), origin=origin) + + +def to_address( + name: dns.name.Name, + v4_origin: dns.name.Name = ipv4_reverse_domain, + v6_origin: dns.name.Name = ipv6_reverse_domain, +) -> str: + """Convert a reverse map domain name into textual address form. + + *name*, a ``dns.name.Name``, an IPv4 or IPv6 address in reverse-map name + form. + + *v4_origin*, a ``dns.name.Name`` representing the top-level domain for + IPv4 addresses, instead of the default (in-addr.arpa.) + + *v6_origin*, a ``dns.name.Name`` representing the top-level domain for + IPv4 addresses, instead of the default (ip6.arpa.) + + Raises ``dns.exception.SyntaxError`` if the name does not have a + reverse-map form. + + Returns a ``str``. + """ + + if name.is_subdomain(v4_origin): + name = name.relativize(v4_origin) + text = b".".join(reversed(name.labels)) + # run through inet_ntoa() to check syntax and make pretty. + return dns.ipv4.inet_ntoa(dns.ipv4.inet_aton(text)) + elif name.is_subdomain(v6_origin): + name = name.relativize(v6_origin) + labels = list(reversed(name.labels)) + parts = [] + for i in range(0, len(labels), 4): + parts.append(b"".join(labels[i : i + 4])) + text = b":".join(parts) + # run through inet_ntoa() to check syntax and make pretty. + return dns.ipv6.inet_ntoa(dns.ipv6.inet_aton(text)) + else: + raise dns.exception.SyntaxError("unknown reverse-map address family") diff --git a/.venv/lib/python3.11/site-packages/dns/rrset.py b/.venv/lib/python3.11/site-packages/dns/rrset.py new file mode 100644 index 0000000..6f39b10 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/rrset.py @@ -0,0 +1,285 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2003-2017 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +"""DNS RRsets (an RRset is a named rdataset)""" + +from typing import Any, Collection, Dict, Optional, Union, cast + +import dns.name +import dns.rdataclass +import dns.rdataset +import dns.renderer + + +class RRset(dns.rdataset.Rdataset): + """A DNS RRset (named rdataset). + + RRset inherits from Rdataset, and RRsets can be treated as + Rdatasets in most cases. There are, however, a few notable + exceptions. RRsets have different to_wire() and to_text() method + arguments, reflecting the fact that RRsets always have an owner + name. + """ + + __slots__ = ["name", "deleting"] + + def __init__( + self, + name: dns.name.Name, + rdclass: dns.rdataclass.RdataClass, + rdtype: dns.rdatatype.RdataType, + covers: dns.rdatatype.RdataType = dns.rdatatype.NONE, + deleting: Optional[dns.rdataclass.RdataClass] = None, + ): + """Create a new RRset.""" + + super().__init__(rdclass, rdtype, covers) + self.name = name + self.deleting = deleting + + def _clone(self): + obj = super()._clone() + obj.name = self.name + obj.deleting = self.deleting + return obj + + def __repr__(self): + if self.covers == 0: + ctext = "" + else: + ctext = "(" + dns.rdatatype.to_text(self.covers) + ")" + if self.deleting is not None: + dtext = " delete=" + dns.rdataclass.to_text(self.deleting) + else: + dtext = "" + return ( + "" + ) + + def __str__(self): + return self.to_text() + + def __eq__(self, other): + if isinstance(other, RRset): + if self.name != other.name: + return False + elif not isinstance(other, dns.rdataset.Rdataset): + return False + return super().__eq__(other) + + def match(self, *args: Any, **kwargs: Any) -> bool: # type: ignore[override] + """Does this rrset match the specified attributes? + + Behaves as :py:func:`full_match()` if the first argument is a + ``dns.name.Name``, and as :py:func:`dns.rdataset.Rdataset.match()` + otherwise. + + (This behavior fixes a design mistake where the signature of this + method became incompatible with that of its superclass. The fix + makes RRsets matchable as Rdatasets while preserving backwards + compatibility.) + """ + if isinstance(args[0], dns.name.Name): + return self.full_match(*args, **kwargs) # type: ignore[arg-type] + else: + return super().match(*args, **kwargs) # type: ignore[arg-type] + + def full_match( + self, + name: dns.name.Name, + rdclass: dns.rdataclass.RdataClass, + rdtype: dns.rdatatype.RdataType, + covers: dns.rdatatype.RdataType, + deleting: Optional[dns.rdataclass.RdataClass] = None, + ) -> bool: + """Returns ``True`` if this rrset matches the specified name, class, + type, covers, and deletion state. + """ + if not super().match(rdclass, rdtype, covers): + return False + if self.name != name or self.deleting != deleting: + return False + return True + + # pylint: disable=arguments-differ + + def to_text( # type: ignore[override] + self, + origin: Optional[dns.name.Name] = None, + relativize: bool = True, + **kw: Dict[str, Any], + ) -> str: + """Convert the RRset into DNS zone file format. + + See ``dns.name.Name.choose_relativity`` for more information + on how *origin* and *relativize* determine the way names + are emitted. + + Any additional keyword arguments are passed on to the rdata + ``to_text()`` method. + + *origin*, a ``dns.name.Name`` or ``None``, the origin for relative + names. + + *relativize*, a ``bool``. If ``True``, names will be relativized + to *origin*. + """ + + return super().to_text( + self.name, origin, relativize, self.deleting, **kw # type: ignore + ) + + def to_wire( # type: ignore[override] + self, + file: Any, + compress: Optional[dns.name.CompressType] = None, # type: ignore + origin: Optional[dns.name.Name] = None, + **kw: Dict[str, Any], + ) -> int: + """Convert the RRset to wire format. + + All keyword arguments are passed to ``dns.rdataset.to_wire()``; see + that function for details. + + Returns an ``int``, the number of records emitted. + """ + + return super().to_wire( + self.name, file, compress, origin, self.deleting, **kw # type:ignore + ) + + # pylint: enable=arguments-differ + + def to_rdataset(self) -> dns.rdataset.Rdataset: + """Convert an RRset into an Rdataset. + + Returns a ``dns.rdataset.Rdataset``. + """ + return dns.rdataset.from_rdata_list(self.ttl, list(self)) + + +def from_text_list( + name: Union[dns.name.Name, str], + ttl: int, + rdclass: Union[dns.rdataclass.RdataClass, str], + rdtype: Union[dns.rdatatype.RdataType, str], + text_rdatas: Collection[str], + idna_codec: Optional[dns.name.IDNACodec] = None, + origin: Optional[dns.name.Name] = None, + relativize: bool = True, + relativize_to: Optional[dns.name.Name] = None, +) -> RRset: + """Create an RRset with the specified name, TTL, class, and type, and with + the specified list of rdatas in text format. + + *idna_codec*, a ``dns.name.IDNACodec``, specifies the IDNA + encoder/decoder to use; if ``None``, the default IDNA 2003 + encoder/decoder is used. + + *origin*, a ``dns.name.Name`` (or ``None``), the + origin to use for relative names. + + *relativize*, a ``bool``. If true, name will be relativized. + + *relativize_to*, a ``dns.name.Name`` (or ``None``), the origin to use + when relativizing names. If not set, the *origin* value will be used. + + Returns a ``dns.rrset.RRset`` object. + """ + + if isinstance(name, str): + name = dns.name.from_text(name, None, idna_codec=idna_codec) + rdclass = dns.rdataclass.RdataClass.make(rdclass) + rdtype = dns.rdatatype.RdataType.make(rdtype) + r = RRset(name, rdclass, rdtype) + r.update_ttl(ttl) + for t in text_rdatas: + rd = dns.rdata.from_text( + r.rdclass, r.rdtype, t, origin, relativize, relativize_to, idna_codec + ) + r.add(rd) + return r + + +def from_text( + name: Union[dns.name.Name, str], + ttl: int, + rdclass: Union[dns.rdataclass.RdataClass, str], + rdtype: Union[dns.rdatatype.RdataType, str], + *text_rdatas: Any, +) -> RRset: + """Create an RRset with the specified name, TTL, class, and type and with + the specified rdatas in text format. + + Returns a ``dns.rrset.RRset`` object. + """ + + return from_text_list( + name, ttl, rdclass, rdtype, cast(Collection[str], text_rdatas) + ) + + +def from_rdata_list( + name: Union[dns.name.Name, str], + ttl: int, + rdatas: Collection[dns.rdata.Rdata], + idna_codec: Optional[dns.name.IDNACodec] = None, +) -> RRset: + """Create an RRset with the specified name and TTL, and with + the specified list of rdata objects. + + *idna_codec*, a ``dns.name.IDNACodec``, specifies the IDNA + encoder/decoder to use; if ``None``, the default IDNA 2003 + encoder/decoder is used. + + Returns a ``dns.rrset.RRset`` object. + + """ + + if isinstance(name, str): + name = dns.name.from_text(name, None, idna_codec=idna_codec) + + if len(rdatas) == 0: + raise ValueError("rdata list must not be empty") + r = None + for rd in rdatas: + if r is None: + r = RRset(name, rd.rdclass, rd.rdtype) + r.update_ttl(ttl) + r.add(rd) + assert r is not None + return r + + +def from_rdata(name: Union[dns.name.Name, str], ttl: int, *rdatas: Any) -> RRset: + """Create an RRset with the specified name and TTL, and with + the specified rdata objects. + + Returns a ``dns.rrset.RRset`` object. + """ + + return from_rdata_list(name, ttl, cast(Collection[dns.rdata.Rdata], rdatas)) diff --git a/.venv/lib/python3.11/site-packages/dns/serial.py b/.venv/lib/python3.11/site-packages/dns/serial.py new file mode 100644 index 0000000..3417299 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/serial.py @@ -0,0 +1,118 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +"""Serial Number Arthimetic from RFC 1982""" + + +class Serial: + def __init__(self, value: int, bits: int = 32): + self.value = value % 2**bits + self.bits = bits + + def __repr__(self): + return f"dns.serial.Serial({self.value}, {self.bits})" + + def __eq__(self, other): + if isinstance(other, int): + other = Serial(other, self.bits) + elif not isinstance(other, Serial) or other.bits != self.bits: + return NotImplemented + return self.value == other.value + + def __ne__(self, other): + if isinstance(other, int): + other = Serial(other, self.bits) + elif not isinstance(other, Serial) or other.bits != self.bits: + return NotImplemented + return self.value != other.value + + def __lt__(self, other): + if isinstance(other, int): + other = Serial(other, self.bits) + elif not isinstance(other, Serial) or other.bits != self.bits: + return NotImplemented + if self.value < other.value and other.value - self.value < 2 ** (self.bits - 1): + return True + elif self.value > other.value and self.value - other.value > 2 ** ( + self.bits - 1 + ): + return True + else: + return False + + def __le__(self, other): + return self == other or self < other + + def __gt__(self, other): + if isinstance(other, int): + other = Serial(other, self.bits) + elif not isinstance(other, Serial) or other.bits != self.bits: + return NotImplemented + if self.value < other.value and other.value - self.value > 2 ** (self.bits - 1): + return True + elif self.value > other.value and self.value - other.value < 2 ** ( + self.bits - 1 + ): + return True + else: + return False + + def __ge__(self, other): + return self == other or self > other + + def __add__(self, other): + v = self.value + if isinstance(other, Serial): + delta = other.value + elif isinstance(other, int): + delta = other + else: + raise ValueError + if abs(delta) > (2 ** (self.bits - 1) - 1): + raise ValueError + v += delta + v = v % 2**self.bits + return Serial(v, self.bits) + + def __iadd__(self, other): + v = self.value + if isinstance(other, Serial): + delta = other.value + elif isinstance(other, int): + delta = other + else: + raise ValueError + if abs(delta) > (2 ** (self.bits - 1) - 1): + raise ValueError + v += delta + v = v % 2**self.bits + self.value = v + return self + + def __sub__(self, other): + v = self.value + if isinstance(other, Serial): + delta = other.value + elif isinstance(other, int): + delta = other + else: + raise ValueError + if abs(delta) > (2 ** (self.bits - 1) - 1): + raise ValueError + v -= delta + v = v % 2**self.bits + return Serial(v, self.bits) + + def __isub__(self, other): + v = self.value + if isinstance(other, Serial): + delta = other.value + elif isinstance(other, int): + delta = other + else: + raise ValueError + if abs(delta) > (2 ** (self.bits - 1) - 1): + raise ValueError + v -= delta + v = v % 2**self.bits + self.value = v + return self diff --git a/.venv/lib/python3.11/site-packages/dns/set.py b/.venv/lib/python3.11/site-packages/dns/set.py new file mode 100644 index 0000000..ae8f0dd --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/set.py @@ -0,0 +1,308 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2003-2017 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +import itertools + + +class Set: + """A simple set class. + + This class was originally used to deal with python not having a set class, and + originally the class used lists in its implementation. The ordered and indexable + nature of RRsets and Rdatasets is unfortunately widely used in dnspython + applications, so for backwards compatibility sets continue to be a custom class, now + based on an ordered dictionary. + """ + + __slots__ = ["items"] + + def __init__(self, items=None): + """Initialize the set. + + *items*, an iterable or ``None``, the initial set of items. + """ + + self.items = dict() + if items is not None: + for item in items: + # This is safe for how we use set, but if other code + # subclasses it could be a legitimate issue. + self.add(item) # lgtm[py/init-calls-subclass] + + def __repr__(self): + return f"dns.set.Set({repr(list(self.items.keys()))})" # pragma: no cover + + def add(self, item): + """Add an item to the set.""" + + if item not in self.items: + self.items[item] = None + + def remove(self, item): + """Remove an item from the set.""" + + try: + del self.items[item] + except KeyError: + raise ValueError + + def discard(self, item): + """Remove an item from the set if present.""" + + self.items.pop(item, None) + + def pop(self): + """Remove an arbitrary item from the set.""" + (k, _) = self.items.popitem() + return k + + def _clone(self) -> "Set": + """Make a (shallow) copy of the set. + + There is a 'clone protocol' that subclasses of this class + should use. To make a copy, first call your super's _clone() + method, and use the object returned as the new instance. Then + make shallow copies of the attributes defined in the subclass. + + This protocol allows us to write the set algorithms that + return new instances (e.g. union) once, and keep using them in + subclasses. + """ + + if hasattr(self, "_clone_class"): + cls = self._clone_class # type: ignore + else: + cls = self.__class__ + obj = cls.__new__(cls) + obj.items = dict() + obj.items.update(self.items) + return obj + + def __copy__(self): + """Make a (shallow) copy of the set.""" + + return self._clone() + + def copy(self): + """Make a (shallow) copy of the set.""" + + return self._clone() + + def union_update(self, other): + """Update the set, adding any elements from other which are not + already in the set. + """ + + if not isinstance(other, Set): + raise ValueError("other must be a Set instance") + if self is other: # lgtm[py/comparison-using-is] + return + for item in other.items: + self.add(item) + + def intersection_update(self, other): + """Update the set, removing any elements from other which are not + in both sets. + """ + + if not isinstance(other, Set): + raise ValueError("other must be a Set instance") + if self is other: # lgtm[py/comparison-using-is] + return + # we make a copy of the list so that we can remove items from + # the list without breaking the iterator. + for item in list(self.items): + if item not in other.items: + del self.items[item] + + def difference_update(self, other): + """Update the set, removing any elements from other which are in + the set. + """ + + if not isinstance(other, Set): + raise ValueError("other must be a Set instance") + if self is other: # lgtm[py/comparison-using-is] + self.items.clear() + else: + for item in other.items: + self.discard(item) + + def symmetric_difference_update(self, other): + """Update the set, retaining only elements unique to both sets.""" + + if not isinstance(other, Set): + raise ValueError("other must be a Set instance") + if self is other: # lgtm[py/comparison-using-is] + self.items.clear() + else: + overlap = self.intersection(other) + self.union_update(other) + self.difference_update(overlap) + + def union(self, other): + """Return a new set which is the union of ``self`` and ``other``. + + Returns the same Set type as this set. + """ + + obj = self._clone() + obj.union_update(other) + return obj + + def intersection(self, other): + """Return a new set which is the intersection of ``self`` and + ``other``. + + Returns the same Set type as this set. + """ + + obj = self._clone() + obj.intersection_update(other) + return obj + + def difference(self, other): + """Return a new set which ``self`` - ``other``, i.e. the items + in ``self`` which are not also in ``other``. + + Returns the same Set type as this set. + """ + + obj = self._clone() + obj.difference_update(other) + return obj + + def symmetric_difference(self, other): + """Return a new set which (``self`` - ``other``) | (``other`` + - ``self), ie: the items in either ``self`` or ``other`` which + are not contained in their intersection. + + Returns the same Set type as this set. + """ + + obj = self._clone() + obj.symmetric_difference_update(other) + return obj + + def __or__(self, other): + return self.union(other) + + def __and__(self, other): + return self.intersection(other) + + def __add__(self, other): + return self.union(other) + + def __sub__(self, other): + return self.difference(other) + + def __xor__(self, other): + return self.symmetric_difference(other) + + def __ior__(self, other): + self.union_update(other) + return self + + def __iand__(self, other): + self.intersection_update(other) + return self + + def __iadd__(self, other): + self.union_update(other) + return self + + def __isub__(self, other): + self.difference_update(other) + return self + + def __ixor__(self, other): + self.symmetric_difference_update(other) + return self + + def update(self, other): + """Update the set, adding any elements from other which are not + already in the set. + + *other*, the collection of items with which to update the set, which + may be any iterable type. + """ + + for item in other: + self.add(item) + + def clear(self): + """Make the set empty.""" + self.items.clear() + + def __eq__(self, other): + return self.items == other.items + + def __ne__(self, other): + return not self.__eq__(other) + + def __len__(self): + return len(self.items) + + def __iter__(self): + return iter(self.items) + + def __getitem__(self, i): + if isinstance(i, slice): + return list(itertools.islice(self.items, i.start, i.stop, i.step)) + else: + return next(itertools.islice(self.items, i, i + 1)) + + def __delitem__(self, i): + if isinstance(i, slice): + for elt in list(self[i]): + del self.items[elt] + else: + del self.items[self[i]] + + def issubset(self, other): + """Is this set a subset of *other*? + + Returns a ``bool``. + """ + + if not isinstance(other, Set): + raise ValueError("other must be a Set instance") + for item in self.items: + if item not in other.items: + return False + return True + + def issuperset(self, other): + """Is this set a superset of *other*? + + Returns a ``bool``. + """ + + if not isinstance(other, Set): + raise ValueError("other must be a Set instance") + for item in other.items: + if item not in self.items: + return False + return True + + def isdisjoint(self, other): + if not isinstance(other, Set): + raise ValueError("other must be a Set instance") + for item in other.items: + if item in self.items: + return False + return True diff --git a/.venv/lib/python3.11/site-packages/dns/tokenizer.py b/.venv/lib/python3.11/site-packages/dns/tokenizer.py new file mode 100644 index 0000000..ab205bc --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/tokenizer.py @@ -0,0 +1,708 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2003-2017 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +"""Tokenize DNS zone file format""" + +import io +import sys +from typing import Any, List, Optional, Tuple + +import dns.exception +import dns.name +import dns.ttl + +_DELIMITERS = {" ", "\t", "\n", ";", "(", ")", '"'} +_QUOTING_DELIMITERS = {'"'} + +EOF = 0 +EOL = 1 +WHITESPACE = 2 +IDENTIFIER = 3 +QUOTED_STRING = 4 +COMMENT = 5 +DELIMITER = 6 + + +class UngetBufferFull(dns.exception.DNSException): + """An attempt was made to unget a token when the unget buffer was full.""" + + +class Token: + """A DNS zone file format token. + + ttype: The token type + value: The token value + has_escape: Does the token value contain escapes? + """ + + def __init__( + self, + ttype: int, + value: Any = "", + has_escape: bool = False, + comment: Optional[str] = None, + ): + """Initialize a token instance.""" + + self.ttype = ttype + self.value = value + self.has_escape = has_escape + self.comment = comment + + def is_eof(self) -> bool: + return self.ttype == EOF + + def is_eol(self) -> bool: + return self.ttype == EOL + + def is_whitespace(self) -> bool: + return self.ttype == WHITESPACE + + def is_identifier(self) -> bool: + return self.ttype == IDENTIFIER + + def is_quoted_string(self) -> bool: + return self.ttype == QUOTED_STRING + + def is_comment(self) -> bool: + return self.ttype == COMMENT + + def is_delimiter(self) -> bool: # pragma: no cover (we don't return delimiters yet) + return self.ttype == DELIMITER + + def is_eol_or_eof(self) -> bool: + return self.ttype == EOL or self.ttype == EOF + + def __eq__(self, other): + if not isinstance(other, Token): + return False + return self.ttype == other.ttype and self.value == other.value + + def __ne__(self, other): + if not isinstance(other, Token): + return True + return self.ttype != other.ttype or self.value != other.value + + def __str__(self): + return '%d "%s"' % (self.ttype, self.value) + + def unescape(self) -> "Token": + if not self.has_escape: + return self + unescaped = "" + l = len(self.value) + i = 0 + while i < l: + c = self.value[i] + i += 1 + if c == "\\": + if i >= l: # pragma: no cover (can't happen via get()) + raise dns.exception.UnexpectedEnd + c = self.value[i] + i += 1 + if c.isdigit(): + if i >= l: + raise dns.exception.UnexpectedEnd + c2 = self.value[i] + i += 1 + if i >= l: + raise dns.exception.UnexpectedEnd + c3 = self.value[i] + i += 1 + if not (c2.isdigit() and c3.isdigit()): + raise dns.exception.SyntaxError + codepoint = int(c) * 100 + int(c2) * 10 + int(c3) + if codepoint > 255: + raise dns.exception.SyntaxError + c = chr(codepoint) + unescaped += c + return Token(self.ttype, unescaped) + + def unescape_to_bytes(self) -> "Token": + # We used to use unescape() for TXT-like records, but this + # caused problems as we'd process DNS escapes into Unicode code + # points instead of byte values, and then a to_text() of the + # processed data would not equal the original input. For + # example, \226 in the TXT record would have a to_text() of + # \195\162 because we applied UTF-8 encoding to Unicode code + # point 226. + # + # We now apply escapes while converting directly to bytes, + # avoiding this double encoding. + # + # This code also handles cases where the unicode input has + # non-ASCII code-points in it by converting it to UTF-8. TXT + # records aren't defined for Unicode, but this is the best we + # can do to preserve meaning. For example, + # + # foo\u200bbar + # + # (where \u200b is Unicode code point 0x200b) will be treated + # as if the input had been the UTF-8 encoding of that string, + # namely: + # + # foo\226\128\139bar + # + unescaped = b"" + l = len(self.value) + i = 0 + while i < l: + c = self.value[i] + i += 1 + if c == "\\": + if i >= l: # pragma: no cover (can't happen via get()) + raise dns.exception.UnexpectedEnd + c = self.value[i] + i += 1 + if c.isdigit(): + if i >= l: + raise dns.exception.UnexpectedEnd + c2 = self.value[i] + i += 1 + if i >= l: + raise dns.exception.UnexpectedEnd + c3 = self.value[i] + i += 1 + if not (c2.isdigit() and c3.isdigit()): + raise dns.exception.SyntaxError + codepoint = int(c) * 100 + int(c2) * 10 + int(c3) + if codepoint > 255: + raise dns.exception.SyntaxError + unescaped += b"%c" % (codepoint) + else: + # Note that as mentioned above, if c is a Unicode + # code point outside of the ASCII range, then this + # += is converting that code point to its UTF-8 + # encoding and appending multiple bytes to + # unescaped. + unescaped += c.encode() + else: + unescaped += c.encode() + return Token(self.ttype, bytes(unescaped)) + + +class Tokenizer: + """A DNS zone file format tokenizer. + + A token object is basically a (type, value) tuple. The valid + types are EOF, EOL, WHITESPACE, IDENTIFIER, QUOTED_STRING, + COMMENT, and DELIMITER. + + file: The file to tokenize + + ungotten_char: The most recently ungotten character, or None. + + ungotten_token: The most recently ungotten token, or None. + + multiline: The current multiline level. This value is increased + by one every time a '(' delimiter is read, and decreased by one every time + a ')' delimiter is read. + + quoting: This variable is true if the tokenizer is currently + reading a quoted string. + + eof: This variable is true if the tokenizer has encountered EOF. + + delimiters: The current delimiter dictionary. + + line_number: The current line number + + filename: A filename that will be returned by the where() method. + + idna_codec: A dns.name.IDNACodec, specifies the IDNA + encoder/decoder. If None, the default IDNA 2003 + encoder/decoder is used. + """ + + def __init__( + self, + f: Any = sys.stdin, + filename: Optional[str] = None, + idna_codec: Optional[dns.name.IDNACodec] = None, + ): + """Initialize a tokenizer instance. + + f: The file to tokenize. The default is sys.stdin. + This parameter may also be a string, in which case the tokenizer + will take its input from the contents of the string. + + filename: the name of the filename that the where() method + will return. + + idna_codec: A dns.name.IDNACodec, specifies the IDNA + encoder/decoder. If None, the default IDNA 2003 + encoder/decoder is used. + """ + + if isinstance(f, str): + f = io.StringIO(f) + if filename is None: + filename = "" + elif isinstance(f, bytes): + f = io.StringIO(f.decode()) + if filename is None: + filename = "" + else: + if filename is None: + if f is sys.stdin: + filename = "" + else: + filename = "" + self.file = f + self.ungotten_char: Optional[str] = None + self.ungotten_token: Optional[Token] = None + self.multiline = 0 + self.quoting = False + self.eof = False + self.delimiters = _DELIMITERS + self.line_number = 1 + assert filename is not None + self.filename = filename + if idna_codec is None: + self.idna_codec: dns.name.IDNACodec = dns.name.IDNA_2003 + else: + self.idna_codec = idna_codec + + def _get_char(self) -> str: + """Read a character from input.""" + + if self.ungotten_char is None: + if self.eof: + c = "" + else: + c = self.file.read(1) + if c == "": + self.eof = True + elif c == "\n": + self.line_number += 1 + else: + c = self.ungotten_char + self.ungotten_char = None + return c + + def where(self) -> Tuple[str, int]: + """Return the current location in the input. + + Returns a (string, int) tuple. The first item is the filename of + the input, the second is the current line number. + """ + + return (self.filename, self.line_number) + + def _unget_char(self, c: str) -> None: + """Unget a character. + + The unget buffer for characters is only one character large; it is + an error to try to unget a character when the unget buffer is not + empty. + + c: the character to unget + raises UngetBufferFull: there is already an ungotten char + """ + + if self.ungotten_char is not None: + # this should never happen! + raise UngetBufferFull # pragma: no cover + self.ungotten_char = c + + def skip_whitespace(self) -> int: + """Consume input until a non-whitespace character is encountered. + + The non-whitespace character is then ungotten, and the number of + whitespace characters consumed is returned. + + If the tokenizer is in multiline mode, then newlines are whitespace. + + Returns the number of characters skipped. + """ + + skipped = 0 + while True: + c = self._get_char() + if c != " " and c != "\t": + if (c != "\n") or not self.multiline: + self._unget_char(c) + return skipped + skipped += 1 + + def get(self, want_leading: bool = False, want_comment: bool = False) -> Token: + """Get the next token. + + want_leading: If True, return a WHITESPACE token if the + first character read is whitespace. The default is False. + + want_comment: If True, return a COMMENT token if the + first token read is a comment. The default is False. + + Raises dns.exception.UnexpectedEnd: input ended prematurely + + Raises dns.exception.SyntaxError: input was badly formed + + Returns a Token. + """ + + if self.ungotten_token is not None: + utoken = self.ungotten_token + self.ungotten_token = None + if utoken.is_whitespace(): + if want_leading: + return utoken + elif utoken.is_comment(): + if want_comment: + return utoken + else: + return utoken + skipped = self.skip_whitespace() + if want_leading and skipped > 0: + return Token(WHITESPACE, " ") + token = "" + ttype = IDENTIFIER + has_escape = False + while True: + c = self._get_char() + if c == "" or c in self.delimiters: + if c == "" and self.quoting: + raise dns.exception.UnexpectedEnd + if token == "" and ttype != QUOTED_STRING: + if c == "(": + self.multiline += 1 + self.skip_whitespace() + continue + elif c == ")": + if self.multiline <= 0: + raise dns.exception.SyntaxError + self.multiline -= 1 + self.skip_whitespace() + continue + elif c == '"': + if not self.quoting: + self.quoting = True + self.delimiters = _QUOTING_DELIMITERS + ttype = QUOTED_STRING + continue + else: + self.quoting = False + self.delimiters = _DELIMITERS + self.skip_whitespace() + continue + elif c == "\n": + return Token(EOL, "\n") + elif c == ";": + while 1: + c = self._get_char() + if c == "\n" or c == "": + break + token += c + if want_comment: + self._unget_char(c) + return Token(COMMENT, token) + elif c == "": + if self.multiline: + raise dns.exception.SyntaxError( + "unbalanced parentheses" + ) + return Token(EOF, comment=token) + elif self.multiline: + self.skip_whitespace() + token = "" + continue + else: + return Token(EOL, "\n", comment=token) + else: + # This code exists in case we ever want a + # delimiter to be returned. It never produces + # a token currently. + token = c + ttype = DELIMITER + else: + self._unget_char(c) + break + elif self.quoting and c == "\n": + raise dns.exception.SyntaxError("newline in quoted string") + elif c == "\\": + # + # It's an escape. Put it and the next character into + # the token; it will be checked later for goodness. + # + token += c + has_escape = True + c = self._get_char() + if c == "" or (c == "\n" and not self.quoting): + raise dns.exception.UnexpectedEnd + token += c + if token == "" and ttype != QUOTED_STRING: + if self.multiline: + raise dns.exception.SyntaxError("unbalanced parentheses") + ttype = EOF + return Token(ttype, token, has_escape) + + def unget(self, token: Token) -> None: + """Unget a token. + + The unget buffer for tokens is only one token large; it is + an error to try to unget a token when the unget buffer is not + empty. + + token: the token to unget + + Raises UngetBufferFull: there is already an ungotten token + """ + + if self.ungotten_token is not None: + raise UngetBufferFull + self.ungotten_token = token + + def next(self): + """Return the next item in an iteration. + + Returns a Token. + """ + + token = self.get() + if token.is_eof(): + raise StopIteration + return token + + __next__ = next + + def __iter__(self): + return self + + # Helpers + + def get_int(self, base: int = 10) -> int: + """Read the next token and interpret it as an unsigned integer. + + Raises dns.exception.SyntaxError if not an unsigned integer. + + Returns an int. + """ + + token = self.get().unescape() + if not token.is_identifier(): + raise dns.exception.SyntaxError("expecting an identifier") + if not token.value.isdigit(): + raise dns.exception.SyntaxError("expecting an integer") + return int(token.value, base) + + def get_uint8(self) -> int: + """Read the next token and interpret it as an 8-bit unsigned + integer. + + Raises dns.exception.SyntaxError if not an 8-bit unsigned integer. + + Returns an int. + """ + + value = self.get_int() + if value < 0 or value > 255: + raise dns.exception.SyntaxError( + "%d is not an unsigned 8-bit integer" % value + ) + return value + + def get_uint16(self, base: int = 10) -> int: + """Read the next token and interpret it as a 16-bit unsigned + integer. + + Raises dns.exception.SyntaxError if not a 16-bit unsigned integer. + + Returns an int. + """ + + value = self.get_int(base=base) + if value < 0 or value > 65535: + if base == 8: + raise dns.exception.SyntaxError( + f"{value:o} is not an octal unsigned 16-bit integer" + ) + else: + raise dns.exception.SyntaxError( + "%d is not an unsigned 16-bit integer" % value + ) + return value + + def get_uint32(self, base: int = 10) -> int: + """Read the next token and interpret it as a 32-bit unsigned + integer. + + Raises dns.exception.SyntaxError if not a 32-bit unsigned integer. + + Returns an int. + """ + + value = self.get_int(base=base) + if value < 0 or value > 4294967295: + raise dns.exception.SyntaxError( + "%d is not an unsigned 32-bit integer" % value + ) + return value + + def get_uint48(self, base: int = 10) -> int: + """Read the next token and interpret it as a 48-bit unsigned + integer. + + Raises dns.exception.SyntaxError if not a 48-bit unsigned integer. + + Returns an int. + """ + + value = self.get_int(base=base) + if value < 0 or value > 281474976710655: + raise dns.exception.SyntaxError( + "%d is not an unsigned 48-bit integer" % value + ) + return value + + def get_string(self, max_length: Optional[int] = None) -> str: + """Read the next token and interpret it as a string. + + Raises dns.exception.SyntaxError if not a string. + Raises dns.exception.SyntaxError if token value length + exceeds max_length (if specified). + + Returns a string. + """ + + token = self.get().unescape() + if not (token.is_identifier() or token.is_quoted_string()): + raise dns.exception.SyntaxError("expecting a string") + if max_length and len(token.value) > max_length: + raise dns.exception.SyntaxError("string too long") + return token.value + + def get_identifier(self) -> str: + """Read the next token, which should be an identifier. + + Raises dns.exception.SyntaxError if not an identifier. + + Returns a string. + """ + + token = self.get().unescape() + if not token.is_identifier(): + raise dns.exception.SyntaxError("expecting an identifier") + return token.value + + def get_remaining(self, max_tokens: Optional[int] = None) -> List[Token]: + """Return the remaining tokens on the line, until an EOL or EOF is seen. + + max_tokens: If not None, stop after this number of tokens. + + Returns a list of tokens. + """ + + tokens = [] + while True: + token = self.get() + if token.is_eol_or_eof(): + self.unget(token) + break + tokens.append(token) + if len(tokens) == max_tokens: + break + return tokens + + def concatenate_remaining_identifiers(self, allow_empty: bool = False) -> str: + """Read the remaining tokens on the line, which should be identifiers. + + Raises dns.exception.SyntaxError if there are no remaining tokens, + unless `allow_empty=True` is given. + + Raises dns.exception.SyntaxError if a token is seen that is not an + identifier. + + Returns a string containing a concatenation of the remaining + identifiers. + """ + s = "" + while True: + token = self.get().unescape() + if token.is_eol_or_eof(): + self.unget(token) + break + if not token.is_identifier(): + raise dns.exception.SyntaxError + s += token.value + if not (allow_empty or s): + raise dns.exception.SyntaxError("expecting another identifier") + return s + + def as_name( + self, + token: Token, + origin: Optional[dns.name.Name] = None, + relativize: bool = False, + relativize_to: Optional[dns.name.Name] = None, + ) -> dns.name.Name: + """Try to interpret the token as a DNS name. + + Raises dns.exception.SyntaxError if not a name. + + Returns a dns.name.Name. + """ + if not token.is_identifier(): + raise dns.exception.SyntaxError("expecting an identifier") + name = dns.name.from_text(token.value, origin, self.idna_codec) + return name.choose_relativity(relativize_to or origin, relativize) + + def get_name( + self, + origin: Optional[dns.name.Name] = None, + relativize: bool = False, + relativize_to: Optional[dns.name.Name] = None, + ) -> dns.name.Name: + """Read the next token and interpret it as a DNS name. + + Raises dns.exception.SyntaxError if not a name. + + Returns a dns.name.Name. + """ + + token = self.get() + return self.as_name(token, origin, relativize, relativize_to) + + def get_eol_as_token(self) -> Token: + """Read the next token and raise an exception if it isn't EOL or + EOF. + + Returns a string. + """ + + token = self.get() + if not token.is_eol_or_eof(): + raise dns.exception.SyntaxError( + 'expected EOL or EOF, got %d "%s"' % (token.ttype, token.value) + ) + return token + + def get_eol(self) -> str: + return self.get_eol_as_token().value + + def get_ttl(self) -> int: + """Read the next token and interpret it as a DNS TTL. + + Raises dns.exception.SyntaxError or dns.ttl.BadTTL if not an + identifier or badly formed. + + Returns an int. + """ + + token = self.get().unescape() + if not token.is_identifier(): + raise dns.exception.SyntaxError("expecting an identifier") + return dns.ttl.from_text(token.value) diff --git a/.venv/lib/python3.11/site-packages/dns/transaction.py b/.venv/lib/python3.11/site-packages/dns/transaction.py new file mode 100644 index 0000000..aa2e116 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/transaction.py @@ -0,0 +1,649 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +import collections +from typing import Any, Callable, Iterator, List, Optional, Tuple, Union + +import dns.exception +import dns.name +import dns.node +import dns.rdataclass +import dns.rdataset +import dns.rdatatype +import dns.rrset +import dns.serial +import dns.ttl + + +class TransactionManager: + def reader(self) -> "Transaction": + """Begin a read-only transaction.""" + raise NotImplementedError # pragma: no cover + + def writer(self, replacement: bool = False) -> "Transaction": + """Begin a writable transaction. + + *replacement*, a ``bool``. If `True`, the content of the + transaction completely replaces any prior content. If False, + the default, then the content of the transaction updates the + existing content. + """ + raise NotImplementedError # pragma: no cover + + def origin_information( + self, + ) -> Tuple[Optional[dns.name.Name], bool, Optional[dns.name.Name]]: + """Returns a tuple + + (absolute_origin, relativize, effective_origin) + + giving the absolute name of the default origin for any + relative domain names, the "effective origin", and whether + names should be relativized. The "effective origin" is the + absolute origin if relativize is False, and the empty name if + relativize is true. (The effective origin is provided even + though it can be computed from the absolute_origin and + relativize setting because it avoids a lot of code + duplication.) + + If the returned names are `None`, then no origin information is + available. + + This information is used by code working with transactions to + allow it to coordinate relativization. The transaction code + itself takes what it gets (i.e. does not change name + relativity). + + """ + raise NotImplementedError # pragma: no cover + + def get_class(self) -> dns.rdataclass.RdataClass: + """The class of the transaction manager.""" + raise NotImplementedError # pragma: no cover + + def from_wire_origin(self) -> Optional[dns.name.Name]: + """Origin to use in from_wire() calls.""" + (absolute_origin, relativize, _) = self.origin_information() + if relativize: + return absolute_origin + else: + return None + + +class DeleteNotExact(dns.exception.DNSException): + """Existing data did not match data specified by an exact delete.""" + + +class ReadOnly(dns.exception.DNSException): + """Tried to write to a read-only transaction.""" + + +class AlreadyEnded(dns.exception.DNSException): + """Tried to use an already-ended transaction.""" + + +def _ensure_immutable_rdataset(rdataset): + if rdataset is None or isinstance(rdataset, dns.rdataset.ImmutableRdataset): + return rdataset + return dns.rdataset.ImmutableRdataset(rdataset) + + +def _ensure_immutable_node(node): + if node is None or node.is_immutable(): + return node + return dns.node.ImmutableNode(node) + + +CheckPutRdatasetType = Callable[ + ["Transaction", dns.name.Name, dns.rdataset.Rdataset], None +] +CheckDeleteRdatasetType = Callable[ + ["Transaction", dns.name.Name, dns.rdatatype.RdataType, dns.rdatatype.RdataType], + None, +] +CheckDeleteNameType = Callable[["Transaction", dns.name.Name], None] + + +class Transaction: + def __init__( + self, + manager: TransactionManager, + replacement: bool = False, + read_only: bool = False, + ): + self.manager = manager + self.replacement = replacement + self.read_only = read_only + self._ended = False + self._check_put_rdataset: List[CheckPutRdatasetType] = [] + self._check_delete_rdataset: List[CheckDeleteRdatasetType] = [] + self._check_delete_name: List[CheckDeleteNameType] = [] + + # + # This is the high level API + # + # Note that we currently use non-immutable types in the return type signature to + # avoid covariance problems, e.g. if the caller has a List[Rdataset], mypy will be + # unhappy if we return an ImmutableRdataset. + + def get( + self, + name: Optional[Union[dns.name.Name, str]], + rdtype: Union[dns.rdatatype.RdataType, str], + covers: Union[dns.rdatatype.RdataType, str] = dns.rdatatype.NONE, + ) -> dns.rdataset.Rdataset: + """Return the rdataset associated with *name*, *rdtype*, and *covers*, + or `None` if not found. + + Note that the returned rdataset is immutable. + """ + self._check_ended() + if isinstance(name, str): + name = dns.name.from_text(name, None) + rdtype = dns.rdatatype.RdataType.make(rdtype) + covers = dns.rdatatype.RdataType.make(covers) + rdataset = self._get_rdataset(name, rdtype, covers) + return _ensure_immutable_rdataset(rdataset) + + def get_node(self, name: dns.name.Name) -> Optional[dns.node.Node]: + """Return the node at *name*, if any. + + Returns an immutable node or ``None``. + """ + return _ensure_immutable_node(self._get_node(name)) + + def _check_read_only(self) -> None: + if self.read_only: + raise ReadOnly + + def add(self, *args: Any) -> None: + """Add records. + + The arguments may be: + + - rrset + + - name, rdataset... + + - name, ttl, rdata... + """ + self._check_ended() + self._check_read_only() + self._add(False, args) + + def replace(self, *args: Any) -> None: + """Replace the existing rdataset at the name with the specified + rdataset, or add the specified rdataset if there was no existing + rdataset. + + The arguments may be: + + - rrset + + - name, rdataset... + + - name, ttl, rdata... + + Note that if you want to replace the entire node, you should do + a delete of the name followed by one or more calls to add() or + replace(). + """ + self._check_ended() + self._check_read_only() + self._add(True, args) + + def delete(self, *args: Any) -> None: + """Delete records. + + It is not an error if some of the records are not in the existing + set. + + The arguments may be: + + - rrset + + - name + + - name, rdatatype, [covers] + + - name, rdataset... + + - name, rdata... + """ + self._check_ended() + self._check_read_only() + self._delete(False, args) + + def delete_exact(self, *args: Any) -> None: + """Delete records. + + The arguments may be: + + - rrset + + - name + + - name, rdatatype, [covers] + + - name, rdataset... + + - name, rdata... + + Raises dns.transaction.DeleteNotExact if some of the records + are not in the existing set. + + """ + self._check_ended() + self._check_read_only() + self._delete(True, args) + + def name_exists(self, name: Union[dns.name.Name, str]) -> bool: + """Does the specified name exist?""" + self._check_ended() + if isinstance(name, str): + name = dns.name.from_text(name, None) + return self._name_exists(name) + + def update_serial( + self, + value: int = 1, + relative: bool = True, + name: dns.name.Name = dns.name.empty, + ) -> None: + """Update the serial number. + + *value*, an `int`, is an increment if *relative* is `True`, or the + actual value to set if *relative* is `False`. + + Raises `KeyError` if there is no SOA rdataset at *name*. + + Raises `ValueError` if *value* is negative or if the increment is + so large that it would cause the new serial to be less than the + prior value. + """ + self._check_ended() + if value < 0: + raise ValueError("negative update_serial() value") + if isinstance(name, str): + name = dns.name.from_text(name, None) + rdataset = self._get_rdataset(name, dns.rdatatype.SOA, dns.rdatatype.NONE) + if rdataset is None or len(rdataset) == 0: + raise KeyError + if relative: + serial = dns.serial.Serial(rdataset[0].serial) + value + else: + serial = dns.serial.Serial(value) + serial = serial.value # convert back to int + if serial == 0: + serial = 1 + rdata = rdataset[0].replace(serial=serial) + new_rdataset = dns.rdataset.from_rdata(rdataset.ttl, rdata) + self.replace(name, new_rdataset) + + def __iter__(self): + self._check_ended() + return self._iterate_rdatasets() + + def changed(self) -> bool: + """Has this transaction changed anything? + + For read-only transactions, the result is always `False`. + + For writable transactions, the result is `True` if at some time + during the life of the transaction, the content was changed. + """ + self._check_ended() + return self._changed() + + def commit(self) -> None: + """Commit the transaction. + + Normally transactions are used as context managers and commit + or rollback automatically, but it may be done explicitly if needed. + A ``dns.transaction.Ended`` exception will be raised if you try + to use a transaction after it has been committed or rolled back. + + Raises an exception if the commit fails (in which case the transaction + is also rolled back. + """ + self._end(True) + + def rollback(self) -> None: + """Rollback the transaction. + + Normally transactions are used as context managers and commit + or rollback automatically, but it may be done explicitly if needed. + A ``dns.transaction.AlreadyEnded`` exception will be raised if you try + to use a transaction after it has been committed or rolled back. + + Rollback cannot otherwise fail. + """ + self._end(False) + + def check_put_rdataset(self, check: CheckPutRdatasetType) -> None: + """Call *check* before putting (storing) an rdataset. + + The function is called with the transaction, the name, and the rdataset. + + The check function may safely make non-mutating transaction method + calls, but behavior is undefined if mutating transaction methods are + called. The check function should raise an exception if it objects to + the put, and otherwise should return ``None``. + """ + self._check_put_rdataset.append(check) + + def check_delete_rdataset(self, check: CheckDeleteRdatasetType) -> None: + """Call *check* before deleting an rdataset. + + The function is called with the transaction, the name, the rdatatype, + and the covered rdatatype. + + The check function may safely make non-mutating transaction method + calls, but behavior is undefined if mutating transaction methods are + called. The check function should raise an exception if it objects to + the put, and otherwise should return ``None``. + """ + self._check_delete_rdataset.append(check) + + def check_delete_name(self, check: CheckDeleteNameType) -> None: + """Call *check* before putting (storing) an rdataset. + + The function is called with the transaction and the name. + + The check function may safely make non-mutating transaction method + calls, but behavior is undefined if mutating transaction methods are + called. The check function should raise an exception if it objects to + the put, and otherwise should return ``None``. + """ + self._check_delete_name.append(check) + + def iterate_rdatasets( + self, + ) -> Iterator[Tuple[dns.name.Name, dns.rdataset.Rdataset]]: + """Iterate all the rdatasets in the transaction, returning + (`dns.name.Name`, `dns.rdataset.Rdataset`) tuples. + + Note that as is usual with python iterators, adding or removing items + while iterating will invalidate the iterator and may raise `RuntimeError` + or fail to iterate over all entries.""" + self._check_ended() + return self._iterate_rdatasets() + + def iterate_names(self) -> Iterator[dns.name.Name]: + """Iterate all the names in the transaction. + + Note that as is usual with python iterators, adding or removing names + while iterating will invalidate the iterator and may raise `RuntimeError` + or fail to iterate over all entries.""" + self._check_ended() + return self._iterate_names() + + # + # Helper methods + # + + def _raise_if_not_empty(self, method, args): + if len(args) != 0: + raise TypeError(f"extra parameters to {method}") + + def _rdataset_from_args(self, method, deleting, args): + try: + arg = args.popleft() + if isinstance(arg, dns.rrset.RRset): + rdataset = arg.to_rdataset() + elif isinstance(arg, dns.rdataset.Rdataset): + rdataset = arg + else: + if deleting: + ttl = 0 + else: + if isinstance(arg, int): + ttl = arg + if ttl > dns.ttl.MAX_TTL: + raise ValueError(f"{method}: TTL value too big") + else: + raise TypeError(f"{method}: expected a TTL") + arg = args.popleft() + if isinstance(arg, dns.rdata.Rdata): + rdataset = dns.rdataset.from_rdata(ttl, arg) + else: + raise TypeError(f"{method}: expected an Rdata") + return rdataset + except IndexError: + if deleting: + return None + else: + # reraise + raise TypeError(f"{method}: expected more arguments") + + def _add(self, replace, args): + try: + args = collections.deque(args) + if replace: + method = "replace()" + else: + method = "add()" + arg = args.popleft() + if isinstance(arg, str): + arg = dns.name.from_text(arg, None) + if isinstance(arg, dns.name.Name): + name = arg + rdataset = self._rdataset_from_args(method, False, args) + elif isinstance(arg, dns.rrset.RRset): + rrset = arg + name = rrset.name + # rrsets are also rdatasets, but they don't print the + # same and can't be stored in nodes, so convert. + rdataset = rrset.to_rdataset() + else: + raise TypeError( + f"{method} requires a name or RRset as the first argument" + ) + if rdataset.rdclass != self.manager.get_class(): + raise ValueError(f"{method} has objects of wrong RdataClass") + if rdataset.rdtype == dns.rdatatype.SOA: + (_, _, origin) = self._origin_information() + if name != origin: + raise ValueError(f"{method} has non-origin SOA") + self._raise_if_not_empty(method, args) + if not replace: + existing = self._get_rdataset(name, rdataset.rdtype, rdataset.covers) + if existing is not None: + if isinstance(existing, dns.rdataset.ImmutableRdataset): + trds = dns.rdataset.Rdataset( + existing.rdclass, existing.rdtype, existing.covers + ) + trds.update(existing) + existing = trds + rdataset = existing.union(rdataset) + self._checked_put_rdataset(name, rdataset) + except IndexError: + raise TypeError(f"not enough parameters to {method}") + + def _delete(self, exact, args): + try: + args = collections.deque(args) + if exact: + method = "delete_exact()" + else: + method = "delete()" + arg = args.popleft() + if isinstance(arg, str): + arg = dns.name.from_text(arg, None) + if isinstance(arg, dns.name.Name): + name = arg + if len(args) > 0 and ( + isinstance(args[0], int) or isinstance(args[0], str) + ): + # deleting by type and (optionally) covers + rdtype = dns.rdatatype.RdataType.make(args.popleft()) + if len(args) > 0: + covers = dns.rdatatype.RdataType.make(args.popleft()) + else: + covers = dns.rdatatype.NONE + self._raise_if_not_empty(method, args) + existing = self._get_rdataset(name, rdtype, covers) + if existing is None: + if exact: + raise DeleteNotExact(f"{method}: missing rdataset") + else: + self._checked_delete_rdataset(name, rdtype, covers) + return + else: + rdataset = self._rdataset_from_args(method, True, args) + elif isinstance(arg, dns.rrset.RRset): + rdataset = arg # rrsets are also rdatasets + name = rdataset.name + else: + raise TypeError( + f"{method} requires a name or RRset as the first argument" + ) + self._raise_if_not_empty(method, args) + if rdataset: + if rdataset.rdclass != self.manager.get_class(): + raise ValueError(f"{method} has objects of wrong RdataClass") + existing = self._get_rdataset(name, rdataset.rdtype, rdataset.covers) + if existing is not None: + if exact: + intersection = existing.intersection(rdataset) + if intersection != rdataset: + raise DeleteNotExact(f"{method}: missing rdatas") + rdataset = existing.difference(rdataset) + if len(rdataset) == 0: + self._checked_delete_rdataset( + name, rdataset.rdtype, rdataset.covers + ) + else: + self._checked_put_rdataset(name, rdataset) + elif exact: + raise DeleteNotExact(f"{method}: missing rdataset") + else: + if exact and not self._name_exists(name): + raise DeleteNotExact(f"{method}: name not known") + self._checked_delete_name(name) + except IndexError: + raise TypeError(f"not enough parameters to {method}") + + def _check_ended(self): + if self._ended: + raise AlreadyEnded + + def _end(self, commit): + self._check_ended() + try: + self._end_transaction(commit) + finally: + self._ended = True + + def _checked_put_rdataset(self, name, rdataset): + for check in self._check_put_rdataset: + check(self, name, rdataset) + self._put_rdataset(name, rdataset) + + def _checked_delete_rdataset(self, name, rdtype, covers): + for check in self._check_delete_rdataset: + check(self, name, rdtype, covers) + self._delete_rdataset(name, rdtype, covers) + + def _checked_delete_name(self, name): + for check in self._check_delete_name: + check(self, name) + self._delete_name(name) + + # + # Transactions are context managers. + # + + def __enter__(self): + return self + + def __exit__(self, exc_type, exc_val, exc_tb): + if not self._ended: + if exc_type is None: + self.commit() + else: + self.rollback() + return False + + # + # This is the low level API, which must be implemented by subclasses + # of Transaction. + # + + def _get_rdataset(self, name, rdtype, covers): + """Return the rdataset associated with *name*, *rdtype*, and *covers*, + or `None` if not found. + """ + raise NotImplementedError # pragma: no cover + + def _put_rdataset(self, name, rdataset): + """Store the rdataset.""" + raise NotImplementedError # pragma: no cover + + def _delete_name(self, name): + """Delete all data associated with *name*. + + It is not an error if the name does not exist. + """ + raise NotImplementedError # pragma: no cover + + def _delete_rdataset(self, name, rdtype, covers): + """Delete all data associated with *name*, *rdtype*, and *covers*. + + It is not an error if the rdataset does not exist. + """ + raise NotImplementedError # pragma: no cover + + def _name_exists(self, name): + """Does name exist? + + Returns a bool. + """ + raise NotImplementedError # pragma: no cover + + def _changed(self): + """Has this transaction changed anything?""" + raise NotImplementedError # pragma: no cover + + def _end_transaction(self, commit): + """End the transaction. + + *commit*, a bool. If ``True``, commit the transaction, otherwise + roll it back. + + If committing and the commit fails, then roll back and raise an + exception. + """ + raise NotImplementedError # pragma: no cover + + def _set_origin(self, origin): + """Set the origin. + + This method is called when reading a possibly relativized + source, and an origin setting operation occurs (e.g. $ORIGIN + in a zone file). + """ + raise NotImplementedError # pragma: no cover + + def _iterate_rdatasets(self): + """Return an iterator that yields (name, rdataset) tuples.""" + raise NotImplementedError # pragma: no cover + + def _iterate_names(self): + """Return an iterator that yields a name.""" + raise NotImplementedError # pragma: no cover + + def _get_node(self, name): + """Return the node at *name*, if any. + + Returns a node or ``None``. + """ + raise NotImplementedError # pragma: no cover + + # + # Low-level API with a default implementation, in case a subclass needs + # to override. + # + + def _origin_information(self): + # This is only used by _add() + return self.manager.origin_information() diff --git a/.venv/lib/python3.11/site-packages/dns/tsig.py b/.venv/lib/python3.11/site-packages/dns/tsig.py new file mode 100644 index 0000000..780852e --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/tsig.py @@ -0,0 +1,352 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2001-2007, 2009-2011 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +"""DNS TSIG support.""" + +import base64 +import hashlib +import hmac +import struct + +import dns.exception +import dns.name +import dns.rcode +import dns.rdataclass + + +class BadTime(dns.exception.DNSException): + """The current time is not within the TSIG's validity time.""" + + +class BadSignature(dns.exception.DNSException): + """The TSIG signature fails to verify.""" + + +class BadKey(dns.exception.DNSException): + """The TSIG record owner name does not match the key.""" + + +class BadAlgorithm(dns.exception.DNSException): + """The TSIG algorithm does not match the key.""" + + +class PeerError(dns.exception.DNSException): + """Base class for all TSIG errors generated by the remote peer""" + + +class PeerBadKey(PeerError): + """The peer didn't know the key we used""" + + +class PeerBadSignature(PeerError): + """The peer didn't like the signature we sent""" + + +class PeerBadTime(PeerError): + """The peer didn't like the time we sent""" + + +class PeerBadTruncation(PeerError): + """The peer didn't like amount of truncation in the TSIG we sent""" + + +# TSIG Algorithms + +HMAC_MD5 = dns.name.from_text("HMAC-MD5.SIG-ALG.REG.INT") +HMAC_SHA1 = dns.name.from_text("hmac-sha1") +HMAC_SHA224 = dns.name.from_text("hmac-sha224") +HMAC_SHA256 = dns.name.from_text("hmac-sha256") +HMAC_SHA256_128 = dns.name.from_text("hmac-sha256-128") +HMAC_SHA384 = dns.name.from_text("hmac-sha384") +HMAC_SHA384_192 = dns.name.from_text("hmac-sha384-192") +HMAC_SHA512 = dns.name.from_text("hmac-sha512") +HMAC_SHA512_256 = dns.name.from_text("hmac-sha512-256") +GSS_TSIG = dns.name.from_text("gss-tsig") + +default_algorithm = HMAC_SHA256 + +mac_sizes = { + HMAC_SHA1: 20, + HMAC_SHA224: 28, + HMAC_SHA256: 32, + HMAC_SHA256_128: 16, + HMAC_SHA384: 48, + HMAC_SHA384_192: 24, + HMAC_SHA512: 64, + HMAC_SHA512_256: 32, + HMAC_MD5: 16, + GSS_TSIG: 128, # This is what we assume to be the worst case! +} + + +class GSSTSig: + """ + GSS-TSIG TSIG implementation. This uses the GSS-API context established + in the TKEY message handshake to sign messages using GSS-API message + integrity codes, per the RFC. + + In order to avoid a direct GSSAPI dependency, the keyring holds a ref + to the GSSAPI object required, rather than the key itself. + """ + + def __init__(self, gssapi_context): + self.gssapi_context = gssapi_context + self.data = b"" + self.name = "gss-tsig" + + def update(self, data): + self.data += data + + def sign(self): + # defer to the GSSAPI function to sign + return self.gssapi_context.get_signature(self.data) + + def verify(self, expected): + try: + # defer to the GSSAPI function to verify + return self.gssapi_context.verify_signature(self.data, expected) + except Exception: + # note the usage of a bare exception + raise BadSignature + + +class GSSTSigAdapter: + def __init__(self, keyring): + self.keyring = keyring + + def __call__(self, message, keyname): + if keyname in self.keyring: + key = self.keyring[keyname] + if isinstance(key, Key) and key.algorithm == GSS_TSIG: + if message: + GSSTSigAdapter.parse_tkey_and_step(key, message, keyname) + return key + else: + return None + + @classmethod + def parse_tkey_and_step(cls, key, message, keyname): + # if the message is a TKEY type, absorb the key material + # into the context using step(); this is used to allow the + # client to complete the GSSAPI negotiation before attempting + # to verify the signed response to a TKEY message exchange + try: + rrset = message.find_rrset( + message.answer, keyname, dns.rdataclass.ANY, dns.rdatatype.TKEY + ) + if rrset: + token = rrset[0].key + gssapi_context = key.secret + return gssapi_context.step(token) + except KeyError: + pass + + +class HMACTSig: + """ + HMAC TSIG implementation. This uses the HMAC python module to handle the + sign/verify operations. + """ + + _hashes = { + HMAC_SHA1: hashlib.sha1, + HMAC_SHA224: hashlib.sha224, + HMAC_SHA256: hashlib.sha256, + HMAC_SHA256_128: (hashlib.sha256, 128), + HMAC_SHA384: hashlib.sha384, + HMAC_SHA384_192: (hashlib.sha384, 192), + HMAC_SHA512: hashlib.sha512, + HMAC_SHA512_256: (hashlib.sha512, 256), + HMAC_MD5: hashlib.md5, + } + + def __init__(self, key, algorithm): + try: + hashinfo = self._hashes[algorithm] + except KeyError: + raise NotImplementedError(f"TSIG algorithm {algorithm} is not supported") + + # create the HMAC context + if isinstance(hashinfo, tuple): + self.hmac_context = hmac.new(key, digestmod=hashinfo[0]) + self.size = hashinfo[1] + else: + self.hmac_context = hmac.new(key, digestmod=hashinfo) + self.size = None + self.name = self.hmac_context.name + if self.size: + self.name += f"-{self.size}" + + def update(self, data): + return self.hmac_context.update(data) + + def sign(self): + # defer to the HMAC digest() function for that digestmod + digest = self.hmac_context.digest() + if self.size: + digest = digest[: (self.size // 8)] + return digest + + def verify(self, expected): + # re-digest and compare the results + mac = self.sign() + if not hmac.compare_digest(mac, expected): + raise BadSignature + + +def _digest(wire, key, rdata, time=None, request_mac=None, ctx=None, multi=None): + """Return a context containing the TSIG rdata for the input parameters + @rtype: dns.tsig.HMACTSig or dns.tsig.GSSTSig object + @raises ValueError: I{other_data} is too long + @raises NotImplementedError: I{algorithm} is not supported + """ + + first = not (ctx and multi) + if first: + ctx = get_context(key) + if request_mac: + ctx.update(struct.pack("!H", len(request_mac))) + ctx.update(request_mac) + ctx.update(struct.pack("!H", rdata.original_id)) + ctx.update(wire[2:]) + if first: + ctx.update(key.name.to_digestable()) + ctx.update(struct.pack("!H", dns.rdataclass.ANY)) + ctx.update(struct.pack("!I", 0)) + if time is None: + time = rdata.time_signed + upper_time = (time >> 32) & 0xFFFF + lower_time = time & 0xFFFFFFFF + time_encoded = struct.pack("!HIH", upper_time, lower_time, rdata.fudge) + other_len = len(rdata.other) + if other_len > 65535: + raise ValueError("TSIG Other Data is > 65535 bytes") + if first: + ctx.update(key.algorithm.to_digestable() + time_encoded) + ctx.update(struct.pack("!HH", rdata.error, other_len) + rdata.other) + else: + ctx.update(time_encoded) + return ctx + + +def _maybe_start_digest(key, mac, multi): + """If this is the first message in a multi-message sequence, + start a new context. + @rtype: dns.tsig.HMACTSig or dns.tsig.GSSTSig object + """ + if multi: + ctx = get_context(key) + ctx.update(struct.pack("!H", len(mac))) + ctx.update(mac) + return ctx + else: + return None + + +def sign(wire, key, rdata, time=None, request_mac=None, ctx=None, multi=False): + """Return a (tsig_rdata, mac, ctx) tuple containing the HMAC TSIG rdata + for the input parameters, the HMAC MAC calculated by applying the + TSIG signature algorithm, and the TSIG digest context. + @rtype: (string, dns.tsig.HMACTSig or dns.tsig.GSSTSig object) + @raises ValueError: I{other_data} is too long + @raises NotImplementedError: I{algorithm} is not supported + """ + + ctx = _digest(wire, key, rdata, time, request_mac, ctx, multi) + mac = ctx.sign() + tsig = rdata.replace(time_signed=time, mac=mac) + + return (tsig, _maybe_start_digest(key, mac, multi)) + + +def validate( + wire, key, owner, rdata, now, request_mac, tsig_start, ctx=None, multi=False +): + """Validate the specified TSIG rdata against the other input parameters. + + @raises FormError: The TSIG is badly formed. + @raises BadTime: There is too much time skew between the client and the + server. + @raises BadSignature: The TSIG signature did not validate + @rtype: dns.tsig.HMACTSig or dns.tsig.GSSTSig object""" + + (adcount,) = struct.unpack("!H", wire[10:12]) + if adcount == 0: + raise dns.exception.FormError + adcount -= 1 + new_wire = wire[0:10] + struct.pack("!H", adcount) + wire[12:tsig_start] + if rdata.error != 0: + if rdata.error == dns.rcode.BADSIG: + raise PeerBadSignature + elif rdata.error == dns.rcode.BADKEY: + raise PeerBadKey + elif rdata.error == dns.rcode.BADTIME: + raise PeerBadTime + elif rdata.error == dns.rcode.BADTRUNC: + raise PeerBadTruncation + else: + raise PeerError("unknown TSIG error code %d" % rdata.error) + if abs(rdata.time_signed - now) > rdata.fudge: + raise BadTime + if key.name != owner: + raise BadKey + if key.algorithm != rdata.algorithm: + raise BadAlgorithm + ctx = _digest(new_wire, key, rdata, None, request_mac, ctx, multi) + ctx.verify(rdata.mac) + return _maybe_start_digest(key, rdata.mac, multi) + + +def get_context(key): + """Returns an HMAC context for the specified key. + + @rtype: HMAC context + @raises NotImplementedError: I{algorithm} is not supported + """ + + if key.algorithm == GSS_TSIG: + return GSSTSig(key.secret) + else: + return HMACTSig(key.secret, key.algorithm) + + +class Key: + def __init__(self, name, secret, algorithm=default_algorithm): + if isinstance(name, str): + name = dns.name.from_text(name) + self.name = name + if isinstance(secret, str): + secret = base64.decodebytes(secret.encode()) + self.secret = secret + if isinstance(algorithm, str): + algorithm = dns.name.from_text(algorithm) + self.algorithm = algorithm + + def __eq__(self, other): + return ( + isinstance(other, Key) + and self.name == other.name + and self.secret == other.secret + and self.algorithm == other.algorithm + ) + + def __repr__(self): + r = f" Dict[dns.name.Name, dns.tsig.Key]: + """Convert a dictionary containing (textual DNS name, base64 secret) + pairs into a binary keyring which has (dns.name.Name, bytes) pairs, or + a dictionary containing (textual DNS name, (algorithm, base64 secret)) + pairs into a binary keyring which has (dns.name.Name, dns.tsig.Key) pairs. + @rtype: dict""" + + keyring = {} + for name, value in textring.items(): + kname = dns.name.from_text(name) + if isinstance(value, str): + keyring[kname] = dns.tsig.Key(kname, value).secret + else: + (algorithm, secret) = value + keyring[kname] = dns.tsig.Key(kname, secret, algorithm) + return keyring + + +def to_text(keyring: Dict[dns.name.Name, Any]) -> Dict[str, Any]: + """Convert a dictionary containing (dns.name.Name, dns.tsig.Key) pairs + into a text keyring which has (textual DNS name, (textual algorithm, + base64 secret)) pairs, or a dictionary containing (dns.name.Name, bytes) + pairs into a text keyring which has (textual DNS name, base64 secret) pairs. + @rtype: dict""" + + textring = {} + + def b64encode(secret): + return base64.encodebytes(secret).decode().rstrip() + + for name, key in keyring.items(): + tname = name.to_text() + if isinstance(key, bytes): + textring[tname] = b64encode(key) + else: + if isinstance(key.secret, bytes): + text_secret = b64encode(key.secret) + else: + text_secret = str(key.secret) + + textring[tname] = (key.algorithm.to_text(), text_secret) + return textring diff --git a/.venv/lib/python3.11/site-packages/dns/ttl.py b/.venv/lib/python3.11/site-packages/dns/ttl.py new file mode 100644 index 0000000..b9a99fe --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/ttl.py @@ -0,0 +1,92 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2003-2017 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +"""DNS TTL conversion.""" + +from typing import Union + +import dns.exception + +# Technically TTLs are supposed to be between 0 and 2**31 - 1, with values +# greater than that interpreted as 0, but we do not impose this policy here +# as values > 2**31 - 1 occur in real world data. +# +# We leave it to applications to impose tighter bounds if desired. +MAX_TTL = 2**32 - 1 + + +class BadTTL(dns.exception.SyntaxError): + """DNS TTL value is not well-formed.""" + + +def from_text(text: str) -> int: + """Convert the text form of a TTL to an integer. + + The BIND 8 units syntax for TTLs (e.g. '1w6d4h3m10s') is supported. + + *text*, a ``str``, the textual TTL. + + Raises ``dns.ttl.BadTTL`` if the TTL is not well-formed. + + Returns an ``int``. + """ + + if text.isdigit(): + total = int(text) + elif len(text) == 0: + raise BadTTL + else: + total = 0 + current = 0 + need_digit = True + for c in text: + if c.isdigit(): + current *= 10 + current += int(c) + need_digit = False + else: + if need_digit: + raise BadTTL + c = c.lower() + if c == "w": + total += current * 604800 + elif c == "d": + total += current * 86400 + elif c == "h": + total += current * 3600 + elif c == "m": + total += current * 60 + elif c == "s": + total += current + else: + raise BadTTL(f"unknown unit '{c}'") + current = 0 + need_digit = True + if not current == 0: + raise BadTTL("trailing integer") + if total < 0 or total > MAX_TTL: + raise BadTTL("TTL should be between 0 and 2**32 - 1 (inclusive)") + return total + + +def make(value: Union[int, str]) -> int: + if isinstance(value, int): + return value + elif isinstance(value, str): + return dns.ttl.from_text(value) + else: + raise ValueError("cannot convert value to TTL") diff --git a/.venv/lib/python3.11/site-packages/dns/update.py b/.venv/lib/python3.11/site-packages/dns/update.py new file mode 100644 index 0000000..bf1157a --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/update.py @@ -0,0 +1,386 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2003-2007, 2009-2011 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +"""DNS Dynamic Update Support""" + +from typing import Any, List, Optional, Union + +import dns.message +import dns.name +import dns.opcode +import dns.rdata +import dns.rdataclass +import dns.rdataset +import dns.rdatatype +import dns.tsig + + +class UpdateSection(dns.enum.IntEnum): + """Update sections""" + + ZONE = 0 + PREREQ = 1 + UPDATE = 2 + ADDITIONAL = 3 + + @classmethod + def _maximum(cls): + return 3 + + +class UpdateMessage(dns.message.Message): # lgtm[py/missing-equals] + # ignore the mypy error here as we mean to use a different enum + _section_enum = UpdateSection # type: ignore + + def __init__( + self, + zone: Optional[Union[dns.name.Name, str]] = None, + rdclass: dns.rdataclass.RdataClass = dns.rdataclass.IN, + keyring: Optional[Any] = None, + keyname: Optional[dns.name.Name] = None, + keyalgorithm: Union[dns.name.Name, str] = dns.tsig.default_algorithm, + id: Optional[int] = None, + ): + """Initialize a new DNS Update object. + + See the documentation of the Message class for a complete + description of the keyring dictionary. + + *zone*, a ``dns.name.Name``, ``str``, or ``None``, the zone + which is being updated. ``None`` should only be used by dnspython's + message constructors, as a zone is required for the convenience + methods like ``add()``, ``replace()``, etc. + + *rdclass*, an ``int`` or ``str``, the class of the zone. + + The *keyring*, *keyname*, and *keyalgorithm* parameters are passed to + ``use_tsig()``; see its documentation for details. + """ + super().__init__(id=id) + self.flags |= dns.opcode.to_flags(dns.opcode.UPDATE) + if isinstance(zone, str): + zone = dns.name.from_text(zone) + self.origin = zone + rdclass = dns.rdataclass.RdataClass.make(rdclass) + self.zone_rdclass = rdclass + if self.origin: + self.find_rrset( + self.zone, + self.origin, + rdclass, + dns.rdatatype.SOA, + create=True, + force_unique=True, + ) + if keyring is not None: + self.use_tsig(keyring, keyname, algorithm=keyalgorithm) + + @property + def zone(self) -> List[dns.rrset.RRset]: + """The zone section.""" + return self.sections[0] + + @zone.setter + def zone(self, v): + self.sections[0] = v + + @property + def prerequisite(self) -> List[dns.rrset.RRset]: + """The prerequisite section.""" + return self.sections[1] + + @prerequisite.setter + def prerequisite(self, v): + self.sections[1] = v + + @property + def update(self) -> List[dns.rrset.RRset]: + """The update section.""" + return self.sections[2] + + @update.setter + def update(self, v): + self.sections[2] = v + + def _add_rr(self, name, ttl, rd, deleting=None, section=None): + """Add a single RR to the update section.""" + + if section is None: + section = self.update + covers = rd.covers() + rrset = self.find_rrset( + section, name, self.zone_rdclass, rd.rdtype, covers, deleting, True, True + ) + rrset.add(rd, ttl) + + def _add(self, replace, section, name, *args): + """Add records. + + *replace* is the replacement mode. If ``False``, + RRs are added to an existing RRset; if ``True``, the RRset + is replaced with the specified contents. The second + argument is the section to add to. The third argument + is always a name. The other arguments can be: + + - rdataset... + + - ttl, rdata... + + - ttl, rdtype, string... + """ + + if isinstance(name, str): + name = dns.name.from_text(name, None) + if isinstance(args[0], dns.rdataset.Rdataset): + for rds in args: + if replace: + self.delete(name, rds.rdtype) + for rd in rds: + self._add_rr(name, rds.ttl, rd, section=section) + else: + args = list(args) + ttl = int(args.pop(0)) + if isinstance(args[0], dns.rdata.Rdata): + if replace: + self.delete(name, args[0].rdtype) + for rd in args: + self._add_rr(name, ttl, rd, section=section) + else: + rdtype = dns.rdatatype.RdataType.make(args.pop(0)) + if replace: + self.delete(name, rdtype) + for s in args: + rd = dns.rdata.from_text(self.zone_rdclass, rdtype, s, self.origin) + self._add_rr(name, ttl, rd, section=section) + + def add(self, name: Union[dns.name.Name, str], *args: Any) -> None: + """Add records. + + The first argument is always a name. The other + arguments can be: + + - rdataset... + + - ttl, rdata... + + - ttl, rdtype, string... + """ + + self._add(False, self.update, name, *args) + + def delete(self, name: Union[dns.name.Name, str], *args: Any) -> None: + """Delete records. + + The first argument is always a name. The other + arguments can be: + + - *empty* + + - rdataset... + + - rdata... + + - rdtype, [string...] + """ + + if isinstance(name, str): + name = dns.name.from_text(name, None) + if len(args) == 0: + self.find_rrset( + self.update, + name, + dns.rdataclass.ANY, + dns.rdatatype.ANY, + dns.rdatatype.NONE, + dns.rdataclass.ANY, + True, + True, + ) + elif isinstance(args[0], dns.rdataset.Rdataset): + for rds in args: + for rd in rds: + self._add_rr(name, 0, rd, dns.rdataclass.NONE) + else: + largs = list(args) + if isinstance(largs[0], dns.rdata.Rdata): + for rd in largs: + self._add_rr(name, 0, rd, dns.rdataclass.NONE) + else: + rdtype = dns.rdatatype.RdataType.make(largs.pop(0)) + if len(largs) == 0: + self.find_rrset( + self.update, + name, + self.zone_rdclass, + rdtype, + dns.rdatatype.NONE, + dns.rdataclass.ANY, + True, + True, + ) + else: + for s in largs: + rd = dns.rdata.from_text( + self.zone_rdclass, + rdtype, + s, # type: ignore[arg-type] + self.origin, + ) + self._add_rr(name, 0, rd, dns.rdataclass.NONE) + + def replace(self, name: Union[dns.name.Name, str], *args: Any) -> None: + """Replace records. + + The first argument is always a name. The other + arguments can be: + + - rdataset... + + - ttl, rdata... + + - ttl, rdtype, string... + + Note that if you want to replace the entire node, you should do + a delete of the name followed by one or more calls to add. + """ + + self._add(True, self.update, name, *args) + + def present(self, name: Union[dns.name.Name, str], *args: Any) -> None: + """Require that an owner name (and optionally an rdata type, + or specific rdataset) exists as a prerequisite to the + execution of the update. + + The first argument is always a name. + The other arguments can be: + + - rdataset... + + - rdata... + + - rdtype, string... + """ + + if isinstance(name, str): + name = dns.name.from_text(name, None) + if len(args) == 0: + self.find_rrset( + self.prerequisite, + name, + dns.rdataclass.ANY, + dns.rdatatype.ANY, + dns.rdatatype.NONE, + None, + True, + True, + ) + elif ( + isinstance(args[0], dns.rdataset.Rdataset) + or isinstance(args[0], dns.rdata.Rdata) + or len(args) > 1 + ): + if not isinstance(args[0], dns.rdataset.Rdataset): + # Add a 0 TTL + largs = list(args) + largs.insert(0, 0) # type: ignore[arg-type] + self._add(False, self.prerequisite, name, *largs) + else: + self._add(False, self.prerequisite, name, *args) + else: + rdtype = dns.rdatatype.RdataType.make(args[0]) + self.find_rrset( + self.prerequisite, + name, + dns.rdataclass.ANY, + rdtype, + dns.rdatatype.NONE, + None, + True, + True, + ) + + def absent( + self, + name: Union[dns.name.Name, str], + rdtype: Optional[Union[dns.rdatatype.RdataType, str]] = None, + ) -> None: + """Require that an owner name (and optionally an rdata type) does + not exist as a prerequisite to the execution of the update.""" + + if isinstance(name, str): + name = dns.name.from_text(name, None) + if rdtype is None: + self.find_rrset( + self.prerequisite, + name, + dns.rdataclass.NONE, + dns.rdatatype.ANY, + dns.rdatatype.NONE, + None, + True, + True, + ) + else: + rdtype = dns.rdatatype.RdataType.make(rdtype) + self.find_rrset( + self.prerequisite, + name, + dns.rdataclass.NONE, + rdtype, + dns.rdatatype.NONE, + None, + True, + True, + ) + + def _get_one_rr_per_rrset(self, value): + # Updates are always one_rr_per_rrset + return True + + def _parse_rr_header(self, section, name, rdclass, rdtype): + deleting = None + empty = False + if section == UpdateSection.ZONE: + if ( + dns.rdataclass.is_metaclass(rdclass) + or rdtype != dns.rdatatype.SOA + or self.zone + ): + raise dns.exception.FormError + else: + if not self.zone: + raise dns.exception.FormError + if rdclass in (dns.rdataclass.ANY, dns.rdataclass.NONE): + deleting = rdclass + rdclass = self.zone[0].rdclass + empty = ( + deleting == dns.rdataclass.ANY or section == UpdateSection.PREREQ + ) + return (rdclass, rdtype, deleting, empty) + + +# backwards compatibility +Update = UpdateMessage + +### BEGIN generated UpdateSection constants + +ZONE = UpdateSection.ZONE +PREREQ = UpdateSection.PREREQ +UPDATE = UpdateSection.UPDATE +ADDITIONAL = UpdateSection.ADDITIONAL + +### END generated UpdateSection constants diff --git a/.venv/lib/python3.11/site-packages/dns/version.py b/.venv/lib/python3.11/site-packages/dns/version.py new file mode 100644 index 0000000..9ed2ce1 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/version.py @@ -0,0 +1,58 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2003-2017 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +"""dnspython release version information.""" + +#: MAJOR +MAJOR = 2 +#: MINOR +MINOR = 7 +#: MICRO +MICRO = 0 +#: RELEASELEVEL +RELEASELEVEL = 0x0F +#: SERIAL +SERIAL = 0 + +if RELEASELEVEL == 0x0F: # pragma: no cover lgtm[py/unreachable-statement] + #: version + version = "%d.%d.%d" % (MAJOR, MINOR, MICRO) # lgtm[py/unreachable-statement] +elif RELEASELEVEL == 0x00: # pragma: no cover lgtm[py/unreachable-statement] + version = "%d.%d.%ddev%d" % ( + MAJOR, + MINOR, + MICRO, + SERIAL, + ) # lgtm[py/unreachable-statement] +elif RELEASELEVEL == 0x0C: # pragma: no cover lgtm[py/unreachable-statement] + version = "%d.%d.%drc%d" % ( + MAJOR, + MINOR, + MICRO, + SERIAL, + ) # lgtm[py/unreachable-statement] +else: # pragma: no cover lgtm[py/unreachable-statement] + version = "%d.%d.%d%x%d" % ( + MAJOR, + MINOR, + MICRO, + RELEASELEVEL, + SERIAL, + ) # lgtm[py/unreachable-statement] + +#: hexversion +hexversion = MAJOR << 24 | MINOR << 16 | MICRO << 8 | RELEASELEVEL << 4 | SERIAL diff --git a/.venv/lib/python3.11/site-packages/dns/versioned.py b/.venv/lib/python3.11/site-packages/dns/versioned.py new file mode 100644 index 0000000..fd78e67 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/versioned.py @@ -0,0 +1,318 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +"""DNS Versioned Zones.""" + +import collections +import threading +from typing import Callable, Deque, Optional, Set, Union + +import dns.exception +import dns.immutable +import dns.name +import dns.node +import dns.rdataclass +import dns.rdataset +import dns.rdatatype +import dns.rdtypes.ANY.SOA +import dns.zone + + +class UseTransaction(dns.exception.DNSException): + """To alter a versioned zone, use a transaction.""" + + +# Backwards compatibility +Node = dns.zone.VersionedNode +ImmutableNode = dns.zone.ImmutableVersionedNode +Version = dns.zone.Version +WritableVersion = dns.zone.WritableVersion +ImmutableVersion = dns.zone.ImmutableVersion +Transaction = dns.zone.Transaction + + +class Zone(dns.zone.Zone): # lgtm[py/missing-equals] + __slots__ = [ + "_versions", + "_versions_lock", + "_write_txn", + "_write_waiters", + "_write_event", + "_pruning_policy", + "_readers", + ] + + node_factory = Node + + def __init__( + self, + origin: Optional[Union[dns.name.Name, str]], + rdclass: dns.rdataclass.RdataClass = dns.rdataclass.IN, + relativize: bool = True, + pruning_policy: Optional[Callable[["Zone", Version], Optional[bool]]] = None, + ): + """Initialize a versioned zone object. + + *origin* is the origin of the zone. It may be a ``dns.name.Name``, + a ``str``, or ``None``. If ``None``, then the zone's origin will + be set by the first ``$ORIGIN`` line in a zone file. + + *rdclass*, an ``int``, the zone's rdata class; the default is class IN. + + *relativize*, a ``bool``, determine's whether domain names are + relativized to the zone's origin. The default is ``True``. + + *pruning policy*, a function taking a ``Zone`` and a ``Version`` and returning + a ``bool``, or ``None``. Should the version be pruned? If ``None``, + the default policy, which retains one version is used. + """ + super().__init__(origin, rdclass, relativize) + self._versions: Deque[Version] = collections.deque() + self._version_lock = threading.Lock() + if pruning_policy is None: + self._pruning_policy = self._default_pruning_policy + else: + self._pruning_policy = pruning_policy + self._write_txn: Optional[Transaction] = None + self._write_event: Optional[threading.Event] = None + self._write_waiters: Deque[threading.Event] = collections.deque() + self._readers: Set[Transaction] = set() + self._commit_version_unlocked( + None, WritableVersion(self, replacement=True), origin + ) + + def reader( + self, id: Optional[int] = None, serial: Optional[int] = None + ) -> Transaction: # pylint: disable=arguments-differ + if id is not None and serial is not None: + raise ValueError("cannot specify both id and serial") + with self._version_lock: + if id is not None: + version = None + for v in reversed(self._versions): + if v.id == id: + version = v + break + if version is None: + raise KeyError("version not found") + elif serial is not None: + if self.relativize: + oname = dns.name.empty + else: + assert self.origin is not None + oname = self.origin + version = None + for v in reversed(self._versions): + n = v.nodes.get(oname) + if n: + rds = n.get_rdataset(self.rdclass, dns.rdatatype.SOA) + if rds and rds[0].serial == serial: + version = v + break + if version is None: + raise KeyError("serial not found") + else: + version = self._versions[-1] + txn = Transaction(self, False, version) + self._readers.add(txn) + return txn + + def writer(self, replacement: bool = False) -> Transaction: + event = None + while True: + with self._version_lock: + # Checking event == self._write_event ensures that either + # no one was waiting before we got lucky and found no write + # txn, or we were the one who was waiting and got woken up. + # This prevents "taking cuts" when creating a write txn. + if self._write_txn is None and event == self._write_event: + # Creating the transaction defers version setup + # (i.e. copying the nodes dictionary) until we + # give up the lock, so that we hold the lock as + # short a time as possible. This is why we call + # _setup_version() below. + self._write_txn = Transaction( + self, replacement, make_immutable=True + ) + # give up our exclusive right to make a Transaction + self._write_event = None + break + # Someone else is writing already, so we will have to + # wait, but we want to do the actual wait outside the + # lock. + event = threading.Event() + self._write_waiters.append(event) + # wait (note we gave up the lock!) + # + # We only wake one sleeper at a time, so it's important + # that no event waiter can exit this method (e.g. via + # cancellation) without returning a transaction or waking + # someone else up. + # + # This is not a problem with Threading module threads as + # they cannot be canceled, but could be an issue with trio + # tasks when we do the async version of writer(). + # I.e. we'd need to do something like: + # + # try: + # event.wait() + # except trio.Cancelled: + # with self._version_lock: + # self._maybe_wakeup_one_waiter_unlocked() + # raise + # + event.wait() + # Do the deferred version setup. + self._write_txn._setup_version() + return self._write_txn + + def _maybe_wakeup_one_waiter_unlocked(self): + if len(self._write_waiters) > 0: + self._write_event = self._write_waiters.popleft() + self._write_event.set() + + # pylint: disable=unused-argument + def _default_pruning_policy(self, zone, version): + return True + + # pylint: enable=unused-argument + + def _prune_versions_unlocked(self): + assert len(self._versions) > 0 + # Don't ever prune a version greater than or equal to one that + # a reader has open. This pins versions in memory while the + # reader is open, and importantly lets the reader open a txn on + # a successor version (e.g. if generating an IXFR). + # + # Note our definition of least_kept also ensures we do not try to + # delete the greatest version. + if len(self._readers) > 0: + least_kept = min(txn.version.id for txn in self._readers) + else: + least_kept = self._versions[-1].id + while self._versions[0].id < least_kept and self._pruning_policy( + self, self._versions[0] + ): + self._versions.popleft() + + def set_max_versions(self, max_versions: Optional[int]) -> None: + """Set a pruning policy that retains up to the specified number + of versions + """ + if max_versions is not None and max_versions < 1: + raise ValueError("max versions must be at least 1") + if max_versions is None: + + def policy(zone, _): # pylint: disable=unused-argument + return False + + else: + + def policy(zone, _): + return len(zone._versions) > max_versions + + self.set_pruning_policy(policy) + + def set_pruning_policy( + self, policy: Optional[Callable[["Zone", Version], Optional[bool]]] + ) -> None: + """Set the pruning policy for the zone. + + The *policy* function takes a `Version` and returns `True` if + the version should be pruned, and `False` otherwise. `None` + may also be specified for policy, in which case the default policy + is used. + + Pruning checking proceeds from the least version and the first + time the function returns `False`, the checking stops. I.e. the + retained versions are always a consecutive sequence. + """ + if policy is None: + policy = self._default_pruning_policy + with self._version_lock: + self._pruning_policy = policy + self._prune_versions_unlocked() + + def _end_read(self, txn): + with self._version_lock: + self._readers.remove(txn) + self._prune_versions_unlocked() + + def _end_write_unlocked(self, txn): + assert self._write_txn == txn + self._write_txn = None + self._maybe_wakeup_one_waiter_unlocked() + + def _end_write(self, txn): + with self._version_lock: + self._end_write_unlocked(txn) + + def _commit_version_unlocked(self, txn, version, origin): + self._versions.append(version) + self._prune_versions_unlocked() + self.nodes = version.nodes + if self.origin is None: + self.origin = origin + # txn can be None in __init__ when we make the empty version. + if txn is not None: + self._end_write_unlocked(txn) + + def _commit_version(self, txn, version, origin): + with self._version_lock: + self._commit_version_unlocked(txn, version, origin) + + def _get_next_version_id(self): + if len(self._versions) > 0: + id = self._versions[-1].id + 1 + else: + id = 1 + return id + + def find_node( + self, name: Union[dns.name.Name, str], create: bool = False + ) -> dns.node.Node: + if create: + raise UseTransaction + return super().find_node(name) + + def delete_node(self, name: Union[dns.name.Name, str]) -> None: + raise UseTransaction + + def find_rdataset( + self, + name: Union[dns.name.Name, str], + rdtype: Union[dns.rdatatype.RdataType, str], + covers: Union[dns.rdatatype.RdataType, str] = dns.rdatatype.NONE, + create: bool = False, + ) -> dns.rdataset.Rdataset: + if create: + raise UseTransaction + rdataset = super().find_rdataset(name, rdtype, covers) + return dns.rdataset.ImmutableRdataset(rdataset) + + def get_rdataset( + self, + name: Union[dns.name.Name, str], + rdtype: Union[dns.rdatatype.RdataType, str], + covers: Union[dns.rdatatype.RdataType, str] = dns.rdatatype.NONE, + create: bool = False, + ) -> Optional[dns.rdataset.Rdataset]: + if create: + raise UseTransaction + rdataset = super().get_rdataset(name, rdtype, covers) + if rdataset is not None: + return dns.rdataset.ImmutableRdataset(rdataset) + else: + return None + + def delete_rdataset( + self, + name: Union[dns.name.Name, str], + rdtype: Union[dns.rdatatype.RdataType, str], + covers: Union[dns.rdatatype.RdataType, str] = dns.rdatatype.NONE, + ) -> None: + raise UseTransaction + + def replace_rdataset( + self, name: Union[dns.name.Name, str], replacement: dns.rdataset.Rdataset + ) -> None: + raise UseTransaction diff --git a/.venv/lib/python3.11/site-packages/dns/win32util.py b/.venv/lib/python3.11/site-packages/dns/win32util.py new file mode 100644 index 0000000..9ed3f11 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/win32util.py @@ -0,0 +1,242 @@ +import sys + +import dns._features + +if sys.platform == "win32": + from typing import Any + + import dns.name + + _prefer_wmi = True + + import winreg # pylint: disable=import-error + + # Keep pylint quiet on non-windows. + try: + _ = WindowsError # pylint: disable=used-before-assignment + except NameError: + WindowsError = Exception + + if dns._features.have("wmi"): + import threading + + import pythoncom # pylint: disable=import-error + import wmi # pylint: disable=import-error + + _have_wmi = True + else: + _have_wmi = False + + def _config_domain(domain): + # Sometimes DHCP servers add a '.' prefix to the default domain, and + # Windows just stores such values in the registry (see #687). + # Check for this and fix it. + if domain.startswith("."): + domain = domain[1:] + return dns.name.from_text(domain) + + class DnsInfo: + def __init__(self): + self.domain = None + self.nameservers = [] + self.search = [] + + if _have_wmi: + + class _WMIGetter(threading.Thread): + # pylint: disable=possibly-used-before-assignment + def __init__(self): + super().__init__() + self.info = DnsInfo() + + def run(self): + pythoncom.CoInitialize() + try: + system = wmi.WMI() + for interface in system.Win32_NetworkAdapterConfiguration(): + if interface.IPEnabled and interface.DNSServerSearchOrder: + self.info.nameservers = list(interface.DNSServerSearchOrder) + if interface.DNSDomain: + self.info.domain = _config_domain(interface.DNSDomain) + if interface.DNSDomainSuffixSearchOrder: + self.info.search = [ + _config_domain(x) + for x in interface.DNSDomainSuffixSearchOrder + ] + break + finally: + pythoncom.CoUninitialize() + + def get(self): + # We always run in a separate thread to avoid any issues with + # the COM threading model. + self.start() + self.join() + return self.info + + else: + + class _WMIGetter: # type: ignore + pass + + class _RegistryGetter: + def __init__(self): + self.info = DnsInfo() + + def _split(self, text): + # The windows registry has used both " " and "," as a delimiter, and while + # it is currently using "," in Windows 10 and later, updates can seemingly + # leave a space in too, e.g. "a, b". So we just convert all commas to + # spaces, and use split() in its default configuration, which splits on + # all whitespace and ignores empty strings. + return text.replace(",", " ").split() + + def _config_nameservers(self, nameservers): + for ns in self._split(nameservers): + if ns not in self.info.nameservers: + self.info.nameservers.append(ns) + + def _config_search(self, search): + for s in self._split(search): + s = _config_domain(s) + if s not in self.info.search: + self.info.search.append(s) + + def _config_fromkey(self, key, always_try_domain): + try: + servers, _ = winreg.QueryValueEx(key, "NameServer") + except WindowsError: + servers = None + if servers: + self._config_nameservers(servers) + if servers or always_try_domain: + try: + dom, _ = winreg.QueryValueEx(key, "Domain") + if dom: + self.info.domain = _config_domain(dom) + except WindowsError: + pass + else: + try: + servers, _ = winreg.QueryValueEx(key, "DhcpNameServer") + except WindowsError: + servers = None + if servers: + self._config_nameservers(servers) + try: + dom, _ = winreg.QueryValueEx(key, "DhcpDomain") + if dom: + self.info.domain = _config_domain(dom) + except WindowsError: + pass + try: + search, _ = winreg.QueryValueEx(key, "SearchList") + except WindowsError: + search = None + if search is None: + try: + search, _ = winreg.QueryValueEx(key, "DhcpSearchList") + except WindowsError: + search = None + if search: + self._config_search(search) + + def _is_nic_enabled(self, lm, guid): + # Look in the Windows Registry to determine whether the network + # interface corresponding to the given guid is enabled. + # + # (Code contributed by Paul Marks, thanks!) + # + try: + # This hard-coded location seems to be consistent, at least + # from Windows 2000 through Vista. + connection_key = winreg.OpenKey( + lm, + r"SYSTEM\CurrentControlSet\Control\Network" + r"\{4D36E972-E325-11CE-BFC1-08002BE10318}" + rf"\{guid}\Connection", + ) + + try: + # The PnpInstanceID points to a key inside Enum + (pnp_id, ttype) = winreg.QueryValueEx( + connection_key, "PnpInstanceID" + ) + + if ttype != winreg.REG_SZ: + raise ValueError # pragma: no cover + + device_key = winreg.OpenKey( + lm, rf"SYSTEM\CurrentControlSet\Enum\{pnp_id}" + ) + + try: + # Get ConfigFlags for this device + (flags, ttype) = winreg.QueryValueEx(device_key, "ConfigFlags") + + if ttype != winreg.REG_DWORD: + raise ValueError # pragma: no cover + + # Based on experimentation, bit 0x1 indicates that the + # device is disabled. + # + # XXXRTH I suspect we really want to & with 0x03 so + # that CONFIGFLAGS_REMOVED devices are also ignored, + # but we're shifting to WMI as ConfigFlags is not + # supposed to be used. + return not flags & 0x1 + + finally: + device_key.Close() + finally: + connection_key.Close() + except Exception: # pragma: no cover + return False + + def get(self): + """Extract resolver configuration from the Windows registry.""" + + lm = winreg.ConnectRegistry(None, winreg.HKEY_LOCAL_MACHINE) + try: + tcp_params = winreg.OpenKey( + lm, r"SYSTEM\CurrentControlSet\Services\Tcpip\Parameters" + ) + try: + self._config_fromkey(tcp_params, True) + finally: + tcp_params.Close() + interfaces = winreg.OpenKey( + lm, + r"SYSTEM\CurrentControlSet\Services\Tcpip\Parameters\Interfaces", + ) + try: + i = 0 + while True: + try: + guid = winreg.EnumKey(interfaces, i) + i += 1 + key = winreg.OpenKey(interfaces, guid) + try: + if not self._is_nic_enabled(lm, guid): + continue + self._config_fromkey(key, False) + finally: + key.Close() + except OSError: + break + finally: + interfaces.Close() + finally: + lm.Close() + return self.info + + _getter_class: Any + if _have_wmi and _prefer_wmi: + _getter_class = _WMIGetter + else: + _getter_class = _RegistryGetter + + def get_dns_info(): + """Extract resolver configuration.""" + getter = _getter_class() + return getter.get() diff --git a/.venv/lib/python3.11/site-packages/dns/wire.py b/.venv/lib/python3.11/site-packages/dns/wire.py new file mode 100644 index 0000000..9f9b157 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/wire.py @@ -0,0 +1,89 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +import contextlib +import struct +from typing import Iterator, Optional, Tuple + +import dns.exception +import dns.name + + +class Parser: + def __init__(self, wire: bytes, current: int = 0): + self.wire = wire + self.current = 0 + self.end = len(self.wire) + if current: + self.seek(current) + self.furthest = current + + def remaining(self) -> int: + return self.end - self.current + + def get_bytes(self, size: int) -> bytes: + assert size >= 0 + if size > self.remaining(): + raise dns.exception.FormError + output = self.wire[self.current : self.current + size] + self.current += size + self.furthest = max(self.furthest, self.current) + return output + + def get_counted_bytes(self, length_size: int = 1) -> bytes: + length = int.from_bytes(self.get_bytes(length_size), "big") + return self.get_bytes(length) + + def get_remaining(self) -> bytes: + return self.get_bytes(self.remaining()) + + def get_uint8(self) -> int: + return struct.unpack("!B", self.get_bytes(1))[0] + + def get_uint16(self) -> int: + return struct.unpack("!H", self.get_bytes(2))[0] + + def get_uint32(self) -> int: + return struct.unpack("!I", self.get_bytes(4))[0] + + def get_uint48(self) -> int: + return int.from_bytes(self.get_bytes(6), "big") + + def get_struct(self, format: str) -> Tuple: + return struct.unpack(format, self.get_bytes(struct.calcsize(format))) + + def get_name(self, origin: Optional["dns.name.Name"] = None) -> "dns.name.Name": + name = dns.name.from_wire_parser(self) + if origin: + name = name.relativize(origin) + return name + + def seek(self, where: int) -> None: + # Note that seeking to the end is OK! (If you try to read + # after such a seek, you'll get an exception as expected.) + if where < 0 or where > self.end: + raise dns.exception.FormError + self.current = where + + @contextlib.contextmanager + def restrict_to(self, size: int) -> Iterator: + assert size >= 0 + if size > self.remaining(): + raise dns.exception.FormError + saved_end = self.end + try: + self.end = self.current + size + yield + # We make this check here and not in the finally as we + # don't want to raise if we're already raising for some + # other reason. + if self.current != self.end: + raise dns.exception.FormError + finally: + self.end = saved_end + + @contextlib.contextmanager + def restore_furthest(self) -> Iterator: + try: + yield None + finally: + self.current = self.furthest diff --git a/.venv/lib/python3.11/site-packages/dns/xfr.py b/.venv/lib/python3.11/site-packages/dns/xfr.py new file mode 100644 index 0000000..520aa32 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/xfr.py @@ -0,0 +1,343 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2003-2017 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +from typing import Any, List, Optional, Tuple, Union + +import dns.exception +import dns.message +import dns.name +import dns.rcode +import dns.rdataset +import dns.rdatatype +import dns.serial +import dns.transaction +import dns.tsig +import dns.zone + + +class TransferError(dns.exception.DNSException): + """A zone transfer response got a non-zero rcode.""" + + def __init__(self, rcode): + message = f"Zone transfer error: {dns.rcode.to_text(rcode)}" + super().__init__(message) + self.rcode = rcode + + +class SerialWentBackwards(dns.exception.FormError): + """The current serial number is less than the serial we know.""" + + +class UseTCP(dns.exception.DNSException): + """This IXFR cannot be completed with UDP.""" + + +class Inbound: + """ + State machine for zone transfers. + """ + + def __init__( + self, + txn_manager: dns.transaction.TransactionManager, + rdtype: dns.rdatatype.RdataType = dns.rdatatype.AXFR, + serial: Optional[int] = None, + is_udp: bool = False, + ): + """Initialize an inbound zone transfer. + + *txn_manager* is a :py:class:`dns.transaction.TransactionManager`. + + *rdtype* can be `dns.rdatatype.AXFR` or `dns.rdatatype.IXFR` + + *serial* is the base serial number for IXFRs, and is required in + that case. + + *is_udp*, a ``bool`` indidicates if UDP is being used for this + XFR. + """ + self.txn_manager = txn_manager + self.txn: Optional[dns.transaction.Transaction] = None + self.rdtype = rdtype + if rdtype == dns.rdatatype.IXFR: + if serial is None: + raise ValueError("a starting serial must be supplied for IXFRs") + elif is_udp: + raise ValueError("is_udp specified for AXFR") + self.serial = serial + self.is_udp = is_udp + (_, _, self.origin) = txn_manager.origin_information() + self.soa_rdataset: Optional[dns.rdataset.Rdataset] = None + self.done = False + self.expecting_SOA = False + self.delete_mode = False + + def process_message(self, message: dns.message.Message) -> bool: + """Process one message in the transfer. + + The message should have the same relativization as was specified when + the `dns.xfr.Inbound` was created. The message should also have been + created with `one_rr_per_rrset=True` because order matters. + + Returns `True` if the transfer is complete, and `False` otherwise. + """ + if self.txn is None: + replacement = self.rdtype == dns.rdatatype.AXFR + self.txn = self.txn_manager.writer(replacement) + rcode = message.rcode() + if rcode != dns.rcode.NOERROR: + raise TransferError(rcode) + # + # We don't require a question section, but if it is present is + # should be correct. + # + if len(message.question) > 0: + if message.question[0].name != self.origin: + raise dns.exception.FormError("wrong question name") + if message.question[0].rdtype != self.rdtype: + raise dns.exception.FormError("wrong question rdatatype") + answer_index = 0 + if self.soa_rdataset is None: + # + # This is the first message. We're expecting an SOA at + # the origin. + # + if not message.answer or message.answer[0].name != self.origin: + raise dns.exception.FormError("No answer or RRset not for zone origin") + rrset = message.answer[0] + rdataset = rrset + if rdataset.rdtype != dns.rdatatype.SOA: + raise dns.exception.FormError("first RRset is not an SOA") + answer_index = 1 + self.soa_rdataset = rdataset.copy() + if self.rdtype == dns.rdatatype.IXFR: + if self.soa_rdataset[0].serial == self.serial: + # + # We're already up-to-date. + # + self.done = True + elif dns.serial.Serial(self.soa_rdataset[0].serial) < self.serial: + # It went backwards! + raise SerialWentBackwards + else: + if self.is_udp and len(message.answer[answer_index:]) == 0: + # + # There are no more records, so this is the + # "truncated" response. Say to use TCP + # + raise UseTCP + # + # Note we're expecting another SOA so we can detect + # if this IXFR response is an AXFR-style response. + # + self.expecting_SOA = True + # + # Process the answer section (other than the initial SOA in + # the first message). + # + for rrset in message.answer[answer_index:]: + name = rrset.name + rdataset = rrset + if self.done: + raise dns.exception.FormError("answers after final SOA") + assert self.txn is not None # for mypy + if rdataset.rdtype == dns.rdatatype.SOA and name == self.origin: + # + # Every time we see an origin SOA delete_mode inverts + # + if self.rdtype == dns.rdatatype.IXFR: + self.delete_mode = not self.delete_mode + # + # If this SOA Rdataset is equal to the first we saw + # then we're finished. If this is an IXFR we also + # check that we're seeing the record in the expected + # part of the response. + # + if rdataset == self.soa_rdataset and ( + self.rdtype == dns.rdatatype.AXFR + or (self.rdtype == dns.rdatatype.IXFR and self.delete_mode) + ): + # + # This is the final SOA + # + if self.expecting_SOA: + # We got an empty IXFR sequence! + raise dns.exception.FormError("empty IXFR sequence") + if ( + self.rdtype == dns.rdatatype.IXFR + and self.serial != rdataset[0].serial + ): + raise dns.exception.FormError("unexpected end of IXFR sequence") + self.txn.replace(name, rdataset) + self.txn.commit() + self.txn = None + self.done = True + else: + # + # This is not the final SOA + # + self.expecting_SOA = False + if self.rdtype == dns.rdatatype.IXFR: + if self.delete_mode: + # This is the start of an IXFR deletion set + if rdataset[0].serial != self.serial: + raise dns.exception.FormError( + "IXFR base serial mismatch" + ) + else: + # This is the start of an IXFR addition set + self.serial = rdataset[0].serial + self.txn.replace(name, rdataset) + else: + # We saw a non-final SOA for the origin in an AXFR. + raise dns.exception.FormError("unexpected origin SOA in AXFR") + continue + if self.expecting_SOA: + # + # We made an IXFR request and are expecting another + # SOA RR, but saw something else, so this must be an + # AXFR response. + # + self.rdtype = dns.rdatatype.AXFR + self.expecting_SOA = False + self.delete_mode = False + self.txn.rollback() + self.txn = self.txn_manager.writer(True) + # + # Note we are falling through into the code below + # so whatever rdataset this was gets written. + # + # Add or remove the data + if self.delete_mode: + self.txn.delete_exact(name, rdataset) + else: + self.txn.add(name, rdataset) + if self.is_udp and not self.done: + # + # This is a UDP IXFR and we didn't get to done, and we didn't + # get the proper "truncated" response + # + raise dns.exception.FormError("unexpected end of UDP IXFR") + return self.done + + # + # Inbounds are context managers. + # + + def __enter__(self): + return self + + def __exit__(self, exc_type, exc_val, exc_tb): + if self.txn: + self.txn.rollback() + return False + + +def make_query( + txn_manager: dns.transaction.TransactionManager, + serial: Optional[int] = 0, + use_edns: Optional[Union[int, bool]] = None, + ednsflags: Optional[int] = None, + payload: Optional[int] = None, + request_payload: Optional[int] = None, + options: Optional[List[dns.edns.Option]] = None, + keyring: Any = None, + keyname: Optional[dns.name.Name] = None, + keyalgorithm: Union[dns.name.Name, str] = dns.tsig.default_algorithm, +) -> Tuple[dns.message.QueryMessage, Optional[int]]: + """Make an AXFR or IXFR query. + + *txn_manager* is a ``dns.transaction.TransactionManager``, typically a + ``dns.zone.Zone``. + + *serial* is an ``int`` or ``None``. If 0, then IXFR will be + attempted using the most recent serial number from the + *txn_manager*; it is the caller's responsibility to ensure there + are no write transactions active that could invalidate the + retrieved serial. If a serial cannot be determined, AXFR will be + forced. Other integer values are the starting serial to use. + ``None`` forces an AXFR. + + Please see the documentation for :py:func:`dns.message.make_query` and + :py:func:`dns.message.Message.use_tsig` for details on the other parameters + to this function. + + Returns a `(query, serial)` tuple. + """ + (zone_origin, _, origin) = txn_manager.origin_information() + if zone_origin is None: + raise ValueError("no zone origin") + if serial is None: + rdtype = dns.rdatatype.AXFR + elif not isinstance(serial, int): + raise ValueError("serial is not an integer") + elif serial == 0: + with txn_manager.reader() as txn: + rdataset = txn.get(origin, "SOA") + if rdataset: + serial = rdataset[0].serial + rdtype = dns.rdatatype.IXFR + else: + serial = None + rdtype = dns.rdatatype.AXFR + elif serial > 0 and serial < 4294967296: + rdtype = dns.rdatatype.IXFR + else: + raise ValueError("serial out-of-range") + rdclass = txn_manager.get_class() + q = dns.message.make_query( + zone_origin, + rdtype, + rdclass, + use_edns, + False, + ednsflags, + payload, + request_payload, + options, + ) + if serial is not None: + rdata = dns.rdata.from_text(rdclass, "SOA", f". . {serial} 0 0 0 0") + rrset = q.find_rrset( + q.authority, zone_origin, rdclass, dns.rdatatype.SOA, create=True + ) + rrset.add(rdata, 0) + if keyring is not None: + q.use_tsig(keyring, keyname, algorithm=keyalgorithm) + return (q, serial) + + +def extract_serial_from_query(query: dns.message.Message) -> Optional[int]: + """Extract the SOA serial number from query if it is an IXFR and return + it, otherwise return None. + + *query* is a dns.message.QueryMessage that is an IXFR or AXFR request. + + Raises if the query is not an IXFR or AXFR, or if an IXFR doesn't have + an appropriate SOA RRset in the authority section. + """ + if not isinstance(query, dns.message.QueryMessage): + raise ValueError("query not a QueryMessage") + question = query.question[0] + if question.rdtype == dns.rdatatype.AXFR: + return None + elif question.rdtype != dns.rdatatype.IXFR: + raise ValueError("query is not an AXFR or IXFR") + soa = query.find_rrset( + query.authority, question.name, question.rdclass, dns.rdatatype.SOA + ) + return soa[0].serial diff --git a/.venv/lib/python3.11/site-packages/dns/zone.py b/.venv/lib/python3.11/site-packages/dns/zone.py new file mode 100644 index 0000000..844919e --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/zone.py @@ -0,0 +1,1434 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2003-2007, 2009-2011 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +"""DNS Zones.""" + +import contextlib +import io +import os +import struct +from typing import ( + Any, + Callable, + Iterable, + Iterator, + List, + MutableMapping, + Optional, + Set, + Tuple, + Union, +) + +import dns.exception +import dns.grange +import dns.immutable +import dns.name +import dns.node +import dns.rdata +import dns.rdataclass +import dns.rdataset +import dns.rdatatype +import dns.rdtypes.ANY.SOA +import dns.rdtypes.ANY.ZONEMD +import dns.rrset +import dns.tokenizer +import dns.transaction +import dns.ttl +import dns.zonefile +from dns.zonetypes import DigestHashAlgorithm, DigestScheme, _digest_hashers + + +class BadZone(dns.exception.DNSException): + """The DNS zone is malformed.""" + + +class NoSOA(BadZone): + """The DNS zone has no SOA RR at its origin.""" + + +class NoNS(BadZone): + """The DNS zone has no NS RRset at its origin.""" + + +class UnknownOrigin(BadZone): + """The DNS zone's origin is unknown.""" + + +class UnsupportedDigestScheme(dns.exception.DNSException): + """The zone digest's scheme is unsupported.""" + + +class UnsupportedDigestHashAlgorithm(dns.exception.DNSException): + """The zone digest's origin is unsupported.""" + + +class NoDigest(dns.exception.DNSException): + """The DNS zone has no ZONEMD RRset at its origin.""" + + +class DigestVerificationFailure(dns.exception.DNSException): + """The ZONEMD digest failed to verify.""" + + +def _validate_name( + name: dns.name.Name, + origin: Optional[dns.name.Name], + relativize: bool, +) -> dns.name.Name: + # This name validation code is shared by Zone and Version + if origin is None: + # This should probably never happen as other code (e.g. + # _rr_line) will notice the lack of an origin before us, but + # we check just in case! + raise KeyError("no zone origin is defined") + if name.is_absolute(): + if not name.is_subdomain(origin): + raise KeyError("name parameter must be a subdomain of the zone origin") + if relativize: + name = name.relativize(origin) + else: + # We have a relative name. Make sure that the derelativized name is + # not too long. + try: + abs_name = name.derelativize(origin) + except dns.name.NameTooLong: + # We map dns.name.NameTooLong to KeyError to be consistent with + # the other exceptions above. + raise KeyError("relative name too long for zone") + if not relativize: + # We have a relative name in a non-relative zone, so use the + # derelativized name. + name = abs_name + return name + + +class Zone(dns.transaction.TransactionManager): + """A DNS zone. + + A ``Zone`` is a mapping from names to nodes. The zone object may be + treated like a Python dictionary, e.g. ``zone[name]`` will retrieve + the node associated with that name. The *name* may be a + ``dns.name.Name object``, or it may be a string. In either case, + if the name is relative it is treated as relative to the origin of + the zone. + """ + + node_factory: Callable[[], dns.node.Node] = dns.node.Node + map_factory: Callable[[], MutableMapping[dns.name.Name, dns.node.Node]] = dict + writable_version_factory: Optional[Callable[[], "WritableVersion"]] = None + immutable_version_factory: Optional[Callable[[], "ImmutableVersion"]] = None + + __slots__ = ["rdclass", "origin", "nodes", "relativize"] + + def __init__( + self, + origin: Optional[Union[dns.name.Name, str]], + rdclass: dns.rdataclass.RdataClass = dns.rdataclass.IN, + relativize: bool = True, + ): + """Initialize a zone object. + + *origin* is the origin of the zone. It may be a ``dns.name.Name``, + a ``str``, or ``None``. If ``None``, then the zone's origin will + be set by the first ``$ORIGIN`` line in a zone file. + + *rdclass*, an ``int``, the zone's rdata class; the default is class IN. + + *relativize*, a ``bool``, determine's whether domain names are + relativized to the zone's origin. The default is ``True``. + """ + + if origin is not None: + if isinstance(origin, str): + origin = dns.name.from_text(origin) + elif not isinstance(origin, dns.name.Name): + raise ValueError("origin parameter must be convertible to a DNS name") + if not origin.is_absolute(): + raise ValueError("origin parameter must be an absolute name") + self.origin = origin + self.rdclass = rdclass + self.nodes: MutableMapping[dns.name.Name, dns.node.Node] = self.map_factory() + self.relativize = relativize + + def __eq__(self, other): + """Two zones are equal if they have the same origin, class, and + nodes. + + Returns a ``bool``. + """ + + if not isinstance(other, Zone): + return False + if ( + self.rdclass != other.rdclass + or self.origin != other.origin + or self.nodes != other.nodes + ): + return False + return True + + def __ne__(self, other): + """Are two zones not equal? + + Returns a ``bool``. + """ + + return not self.__eq__(other) + + def _validate_name(self, name: Union[dns.name.Name, str]) -> dns.name.Name: + # Note that any changes in this method should have corresponding changes + # made in the Version _validate_name() method. + if isinstance(name, str): + name = dns.name.from_text(name, None) + elif not isinstance(name, dns.name.Name): + raise KeyError("name parameter must be convertible to a DNS name") + return _validate_name(name, self.origin, self.relativize) + + def __getitem__(self, key): + key = self._validate_name(key) + return self.nodes[key] + + def __setitem__(self, key, value): + key = self._validate_name(key) + self.nodes[key] = value + + def __delitem__(self, key): + key = self._validate_name(key) + del self.nodes[key] + + def __iter__(self): + return self.nodes.__iter__() + + def keys(self): + return self.nodes.keys() + + def values(self): + return self.nodes.values() + + def items(self): + return self.nodes.items() + + def get(self, key): + key = self._validate_name(key) + return self.nodes.get(key) + + def __contains__(self, key): + key = self._validate_name(key) + return key in self.nodes + + def find_node( + self, name: Union[dns.name.Name, str], create: bool = False + ) -> dns.node.Node: + """Find a node in the zone, possibly creating it. + + *name*: the name of the node to find. + The value may be a ``dns.name.Name`` or a ``str``. If absolute, the + name must be a subdomain of the zone's origin. If ``zone.relativize`` + is ``True``, then the name will be relativized. + + *create*, a ``bool``. If true, the node will be created if it does + not exist. + + Raises ``KeyError`` if the name is not known and create was + not specified, or if the name was not a subdomain of the origin. + + Returns a ``dns.node.Node``. + """ + + name = self._validate_name(name) + node = self.nodes.get(name) + if node is None: + if not create: + raise KeyError + node = self.node_factory() + self.nodes[name] = node + return node + + def get_node( + self, name: Union[dns.name.Name, str], create: bool = False + ) -> Optional[dns.node.Node]: + """Get a node in the zone, possibly creating it. + + This method is like ``find_node()``, except it returns None instead + of raising an exception if the node does not exist and creation + has not been requested. + + *name*: the name of the node to find. + The value may be a ``dns.name.Name`` or a ``str``. If absolute, the + name must be a subdomain of the zone's origin. If ``zone.relativize`` + is ``True``, then the name will be relativized. + + *create*, a ``bool``. If true, the node will be created if it does + not exist. + + Returns a ``dns.node.Node`` or ``None``. + """ + + try: + node = self.find_node(name, create) + except KeyError: + node = None + return node + + def delete_node(self, name: Union[dns.name.Name, str]) -> None: + """Delete the specified node if it exists. + + *name*: the name of the node to find. + The value may be a ``dns.name.Name`` or a ``str``. If absolute, the + name must be a subdomain of the zone's origin. If ``zone.relativize`` + is ``True``, then the name will be relativized. + + It is not an error if the node does not exist. + """ + + name = self._validate_name(name) + if name in self.nodes: + del self.nodes[name] + + def find_rdataset( + self, + name: Union[dns.name.Name, str], + rdtype: Union[dns.rdatatype.RdataType, str], + covers: Union[dns.rdatatype.RdataType, str] = dns.rdatatype.NONE, + create: bool = False, + ) -> dns.rdataset.Rdataset: + """Look for an rdataset with the specified name and type in the zone, + and return an rdataset encapsulating it. + + The rdataset returned is not a copy; changes to it will change + the zone. + + KeyError is raised if the name or type are not found. + + *name*: the name of the node to find. + The value may be a ``dns.name.Name`` or a ``str``. If absolute, the + name must be a subdomain of the zone's origin. If ``zone.relativize`` + is ``True``, then the name will be relativized. + + *rdtype*, a ``dns.rdatatype.RdataType`` or ``str``, the rdata type desired. + + *covers*, a ``dns.rdatatype.RdataType`` or ``str`` the covered type. + Usually this value is ``dns.rdatatype.NONE``, but if the + rdtype is ``dns.rdatatype.SIG`` or ``dns.rdatatype.RRSIG``, + then the covers value will be the rdata type the SIG/RRSIG + covers. The library treats the SIG and RRSIG types as if they + were a family of types, e.g. RRSIG(A), RRSIG(NS), RRSIG(SOA). + This makes RRSIGs much easier to work with than if RRSIGs + covering different rdata types were aggregated into a single + RRSIG rdataset. + + *create*, a ``bool``. If true, the node will be created if it does + not exist. + + Raises ``KeyError`` if the name is not known and create was + not specified, or if the name was not a subdomain of the origin. + + Returns a ``dns.rdataset.Rdataset``. + """ + + name = self._validate_name(name) + rdtype = dns.rdatatype.RdataType.make(rdtype) + covers = dns.rdatatype.RdataType.make(covers) + node = self.find_node(name, create) + return node.find_rdataset(self.rdclass, rdtype, covers, create) + + def get_rdataset( + self, + name: Union[dns.name.Name, str], + rdtype: Union[dns.rdatatype.RdataType, str], + covers: Union[dns.rdatatype.RdataType, str] = dns.rdatatype.NONE, + create: bool = False, + ) -> Optional[dns.rdataset.Rdataset]: + """Look for an rdataset with the specified name and type in the zone. + + This method is like ``find_rdataset()``, except it returns None instead + of raising an exception if the rdataset does not exist and creation + has not been requested. + + The rdataset returned is not a copy; changes to it will change + the zone. + + *name*: the name of the node to find. + The value may be a ``dns.name.Name`` or a ``str``. If absolute, the + name must be a subdomain of the zone's origin. If ``zone.relativize`` + is ``True``, then the name will be relativized. + + *rdtype*, a ``dns.rdatatype.RdataType`` or ``str``, the rdata type desired. + + *covers*, a ``dns.rdatatype.RdataType`` or ``str``, the covered type. + Usually this value is ``dns.rdatatype.NONE``, but if the + rdtype is ``dns.rdatatype.SIG`` or ``dns.rdatatype.RRSIG``, + then the covers value will be the rdata type the SIG/RRSIG + covers. The library treats the SIG and RRSIG types as if they + were a family of types, e.g. RRSIG(A), RRSIG(NS), RRSIG(SOA). + This makes RRSIGs much easier to work with than if RRSIGs + covering different rdata types were aggregated into a single + RRSIG rdataset. + + *create*, a ``bool``. If true, the node will be created if it does + not exist. + + Raises ``KeyError`` if the name is not known and create was + not specified, or if the name was not a subdomain of the origin. + + Returns a ``dns.rdataset.Rdataset`` or ``None``. + """ + + try: + rdataset = self.find_rdataset(name, rdtype, covers, create) + except KeyError: + rdataset = None + return rdataset + + def delete_rdataset( + self, + name: Union[dns.name.Name, str], + rdtype: Union[dns.rdatatype.RdataType, str], + covers: Union[dns.rdatatype.RdataType, str] = dns.rdatatype.NONE, + ) -> None: + """Delete the rdataset matching *rdtype* and *covers*, if it + exists at the node specified by *name*. + + It is not an error if the node does not exist, or if there is no matching + rdataset at the node. + + If the node has no rdatasets after the deletion, it will itself be deleted. + + *name*: the name of the node to find. The value may be a ``dns.name.Name`` or a + ``str``. If absolute, the name must be a subdomain of the zone's origin. If + ``zone.relativize`` is ``True``, then the name will be relativized. + + *rdtype*, a ``dns.rdatatype.RdataType`` or ``str``, the rdata type desired. + + *covers*, a ``dns.rdatatype.RdataType`` or ``str`` or ``None``, the covered + type. Usually this value is ``dns.rdatatype.NONE``, but if the rdtype is + ``dns.rdatatype.SIG`` or ``dns.rdatatype.RRSIG``, then the covers value will be + the rdata type the SIG/RRSIG covers. The library treats the SIG and RRSIG types + as if they were a family of types, e.g. RRSIG(A), RRSIG(NS), RRSIG(SOA). This + makes RRSIGs much easier to work with than if RRSIGs covering different rdata + types were aggregated into a single RRSIG rdataset. + """ + + name = self._validate_name(name) + rdtype = dns.rdatatype.RdataType.make(rdtype) + covers = dns.rdatatype.RdataType.make(covers) + node = self.get_node(name) + if node is not None: + node.delete_rdataset(self.rdclass, rdtype, covers) + if len(node) == 0: + self.delete_node(name) + + def replace_rdataset( + self, name: Union[dns.name.Name, str], replacement: dns.rdataset.Rdataset + ) -> None: + """Replace an rdataset at name. + + It is not an error if there is no rdataset matching I{replacement}. + + Ownership of the *replacement* object is transferred to the zone; + in other words, this method does not store a copy of *replacement* + at the node, it stores *replacement* itself. + + If the node does not exist, it is created. + + *name*: the name of the node to find. + The value may be a ``dns.name.Name`` or a ``str``. If absolute, the + name must be a subdomain of the zone's origin. If ``zone.relativize`` + is ``True``, then the name will be relativized. + + *replacement*, a ``dns.rdataset.Rdataset``, the replacement rdataset. + """ + + if replacement.rdclass != self.rdclass: + raise ValueError("replacement.rdclass != zone.rdclass") + node = self.find_node(name, True) + node.replace_rdataset(replacement) + + def find_rrset( + self, + name: Union[dns.name.Name, str], + rdtype: Union[dns.rdatatype.RdataType, str], + covers: Union[dns.rdatatype.RdataType, str] = dns.rdatatype.NONE, + ) -> dns.rrset.RRset: + """Look for an rdataset with the specified name and type in the zone, + and return an RRset encapsulating it. + + This method is less efficient than the similar + ``find_rdataset()`` because it creates an RRset instead of + returning the matching rdataset. It may be more convenient + for some uses since it returns an object which binds the owner + name to the rdataset. + + This method may not be used to create new nodes or rdatasets; + use ``find_rdataset`` instead. + + *name*: the name of the node to find. + The value may be a ``dns.name.Name`` or a ``str``. If absolute, the + name must be a subdomain of the zone's origin. If ``zone.relativize`` + is ``True``, then the name will be relativized. + + *rdtype*, a ``dns.rdatatype.RdataType`` or ``str``, the rdata type desired. + + *covers*, a ``dns.rdatatype.RdataType`` or ``str``, the covered type. + Usually this value is ``dns.rdatatype.NONE``, but if the + rdtype is ``dns.rdatatype.SIG`` or ``dns.rdatatype.RRSIG``, + then the covers value will be the rdata type the SIG/RRSIG + covers. The library treats the SIG and RRSIG types as if they + were a family of types, e.g. RRSIG(A), RRSIG(NS), RRSIG(SOA). + This makes RRSIGs much easier to work with than if RRSIGs + covering different rdata types were aggregated into a single + RRSIG rdataset. + + *create*, a ``bool``. If true, the node will be created if it does + not exist. + + Raises ``KeyError`` if the name is not known and create was + not specified, or if the name was not a subdomain of the origin. + + Returns a ``dns.rrset.RRset`` or ``None``. + """ + + vname = self._validate_name(name) + rdtype = dns.rdatatype.RdataType.make(rdtype) + covers = dns.rdatatype.RdataType.make(covers) + rdataset = self.nodes[vname].find_rdataset(self.rdclass, rdtype, covers) + rrset = dns.rrset.RRset(vname, self.rdclass, rdtype, covers) + rrset.update(rdataset) + return rrset + + def get_rrset( + self, + name: Union[dns.name.Name, str], + rdtype: Union[dns.rdatatype.RdataType, str], + covers: Union[dns.rdatatype.RdataType, str] = dns.rdatatype.NONE, + ) -> Optional[dns.rrset.RRset]: + """Look for an rdataset with the specified name and type in the zone, + and return an RRset encapsulating it. + + This method is less efficient than the similar ``get_rdataset()`` + because it creates an RRset instead of returning the matching + rdataset. It may be more convenient for some uses since it + returns an object which binds the owner name to the rdataset. + + This method may not be used to create new nodes or rdatasets; + use ``get_rdataset()`` instead. + + *name*: the name of the node to find. + The value may be a ``dns.name.Name`` or a ``str``. If absolute, the + name must be a subdomain of the zone's origin. If ``zone.relativize`` + is ``True``, then the name will be relativized. + + *rdtype*, a ``dns.rdataset.Rdataset`` or ``str``, the rdata type desired. + + *covers*, a ``dns.rdataset.Rdataset`` or ``str``, the covered type. + Usually this value is ``dns.rdatatype.NONE``, but if the + rdtype is ``dns.rdatatype.SIG`` or ``dns.rdatatype.RRSIG``, + then the covers value will be the rdata type the SIG/RRSIG + covers. The library treats the SIG and RRSIG types as if they + were a family of types, e.g. RRSIG(A), RRSIG(NS), RRSIG(SOA). + This makes RRSIGs much easier to work with than if RRSIGs + covering different rdata types were aggregated into a single + RRSIG rdataset. + + *create*, a ``bool``. If true, the node will be created if it does + not exist. + + Returns a ``dns.rrset.RRset`` or ``None``. + """ + + try: + rrset = self.find_rrset(name, rdtype, covers) + except KeyError: + rrset = None + return rrset + + def iterate_rdatasets( + self, + rdtype: Union[dns.rdatatype.RdataType, str] = dns.rdatatype.ANY, + covers: Union[dns.rdatatype.RdataType, str] = dns.rdatatype.NONE, + ) -> Iterator[Tuple[dns.name.Name, dns.rdataset.Rdataset]]: + """Return a generator which yields (name, rdataset) tuples for + all rdatasets in the zone which have the specified *rdtype* + and *covers*. If *rdtype* is ``dns.rdatatype.ANY``, the default, + then all rdatasets will be matched. + + *rdtype*, a ``dns.rdataset.Rdataset`` or ``str``, the rdata type desired. + + *covers*, a ``dns.rdataset.Rdataset`` or ``str``, the covered type. + Usually this value is ``dns.rdatatype.NONE``, but if the + rdtype is ``dns.rdatatype.SIG`` or ``dns.rdatatype.RRSIG``, + then the covers value will be the rdata type the SIG/RRSIG + covers. The library treats the SIG and RRSIG types as if they + were a family of types, e.g. RRSIG(A), RRSIG(NS), RRSIG(SOA). + This makes RRSIGs much easier to work with than if RRSIGs + covering different rdata types were aggregated into a single + RRSIG rdataset. + """ + + rdtype = dns.rdatatype.RdataType.make(rdtype) + covers = dns.rdatatype.RdataType.make(covers) + for name, node in self.items(): + for rds in node: + if rdtype == dns.rdatatype.ANY or ( + rds.rdtype == rdtype and rds.covers == covers + ): + yield (name, rds) + + def iterate_rdatas( + self, + rdtype: Union[dns.rdatatype.RdataType, str] = dns.rdatatype.ANY, + covers: Union[dns.rdatatype.RdataType, str] = dns.rdatatype.NONE, + ) -> Iterator[Tuple[dns.name.Name, int, dns.rdata.Rdata]]: + """Return a generator which yields (name, ttl, rdata) tuples for + all rdatas in the zone which have the specified *rdtype* + and *covers*. If *rdtype* is ``dns.rdatatype.ANY``, the default, + then all rdatas will be matched. + + *rdtype*, a ``dns.rdataset.Rdataset`` or ``str``, the rdata type desired. + + *covers*, a ``dns.rdataset.Rdataset`` or ``str``, the covered type. + Usually this value is ``dns.rdatatype.NONE``, but if the + rdtype is ``dns.rdatatype.SIG`` or ``dns.rdatatype.RRSIG``, + then the covers value will be the rdata type the SIG/RRSIG + covers. The library treats the SIG and RRSIG types as if they + were a family of types, e.g. RRSIG(A), RRSIG(NS), RRSIG(SOA). + This makes RRSIGs much easier to work with than if RRSIGs + covering different rdata types were aggregated into a single + RRSIG rdataset. + """ + + rdtype = dns.rdatatype.RdataType.make(rdtype) + covers = dns.rdatatype.RdataType.make(covers) + for name, node in self.items(): + for rds in node: + if rdtype == dns.rdatatype.ANY or ( + rds.rdtype == rdtype and rds.covers == covers + ): + for rdata in rds: + yield (name, rds.ttl, rdata) + + def to_file( + self, + f: Any, + sorted: bool = True, + relativize: bool = True, + nl: Optional[str] = None, + want_comments: bool = False, + want_origin: bool = False, + ) -> None: + """Write a zone to a file. + + *f*, a file or `str`. If *f* is a string, it is treated + as the name of a file to open. + + *sorted*, a ``bool``. If True, the default, then the file + will be written with the names sorted in DNSSEC order from + least to greatest. Otherwise the names will be written in + whatever order they happen to have in the zone's dictionary. + + *relativize*, a ``bool``. If True, the default, then domain + names in the output will be relativized to the zone's origin + if possible. + + *nl*, a ``str`` or None. The end of line string. If not + ``None``, the output will use the platform's native + end-of-line marker (i.e. LF on POSIX, CRLF on Windows). + + *want_comments*, a ``bool``. If ``True``, emit end-of-line comments + as part of writing the file. If ``False``, the default, do not + emit them. + + *want_origin*, a ``bool``. If ``True``, emit a $ORIGIN line at + the start of the file. If ``False``, the default, do not emit + one. + """ + + if isinstance(f, str): + cm: contextlib.AbstractContextManager = open(f, "wb") + else: + cm = contextlib.nullcontext(f) + with cm as f: + # must be in this way, f.encoding may contain None, or even + # attribute may not be there + file_enc = getattr(f, "encoding", None) + if file_enc is None: + file_enc = "utf-8" + + if nl is None: + # binary mode, '\n' is not enough + nl_b = os.linesep.encode(file_enc) + nl = "\n" + elif isinstance(nl, str): + nl_b = nl.encode(file_enc) + else: + nl_b = nl + nl = nl.decode() + + if want_origin: + assert self.origin is not None + l = "$ORIGIN " + self.origin.to_text() + l_b = l.encode(file_enc) + try: + f.write(l_b) + f.write(nl_b) + except TypeError: # textual mode + f.write(l) + f.write(nl) + + if sorted: + names = list(self.keys()) + names.sort() + else: + names = self.keys() + for n in names: + l = self[n].to_text( + n, + origin=self.origin, + relativize=relativize, + want_comments=want_comments, + ) + l_b = l.encode(file_enc) + + try: + f.write(l_b) + f.write(nl_b) + except TypeError: # textual mode + f.write(l) + f.write(nl) + + def to_text( + self, + sorted: bool = True, + relativize: bool = True, + nl: Optional[str] = None, + want_comments: bool = False, + want_origin: bool = False, + ) -> str: + """Return a zone's text as though it were written to a file. + + *sorted*, a ``bool``. If True, the default, then the file + will be written with the names sorted in DNSSEC order from + least to greatest. Otherwise the names will be written in + whatever order they happen to have in the zone's dictionary. + + *relativize*, a ``bool``. If True, the default, then domain + names in the output will be relativized to the zone's origin + if possible. + + *nl*, a ``str`` or None. The end of line string. If not + ``None``, the output will use the platform's native + end-of-line marker (i.e. LF on POSIX, CRLF on Windows). + + *want_comments*, a ``bool``. If ``True``, emit end-of-line comments + as part of writing the file. If ``False``, the default, do not + emit them. + + *want_origin*, a ``bool``. If ``True``, emit a $ORIGIN line at + the start of the output. If ``False``, the default, do not emit + one. + + Returns a ``str``. + """ + temp_buffer = io.StringIO() + self.to_file(temp_buffer, sorted, relativize, nl, want_comments, want_origin) + return_value = temp_buffer.getvalue() + temp_buffer.close() + return return_value + + def check_origin(self) -> None: + """Do some simple checking of the zone's origin. + + Raises ``dns.zone.NoSOA`` if there is no SOA RRset. + + Raises ``dns.zone.NoNS`` if there is no NS RRset. + + Raises ``KeyError`` if there is no origin node. + """ + if self.relativize: + name = dns.name.empty + else: + assert self.origin is not None + name = self.origin + if self.get_rdataset(name, dns.rdatatype.SOA) is None: + raise NoSOA + if self.get_rdataset(name, dns.rdatatype.NS) is None: + raise NoNS + + def get_soa( + self, txn: Optional[dns.transaction.Transaction] = None + ) -> dns.rdtypes.ANY.SOA.SOA: + """Get the zone SOA rdata. + + Raises ``dns.zone.NoSOA`` if there is no SOA RRset. + + Returns a ``dns.rdtypes.ANY.SOA.SOA`` Rdata. + """ + if self.relativize: + origin_name = dns.name.empty + else: + if self.origin is None: + # get_soa() has been called very early, and there must not be + # an SOA if there is no origin. + raise NoSOA + origin_name = self.origin + soa: Optional[dns.rdataset.Rdataset] + if txn: + soa = txn.get(origin_name, dns.rdatatype.SOA) + else: + soa = self.get_rdataset(origin_name, dns.rdatatype.SOA) + if soa is None: + raise NoSOA + return soa[0] + + def _compute_digest( + self, + hash_algorithm: DigestHashAlgorithm, + scheme: DigestScheme = DigestScheme.SIMPLE, + ) -> bytes: + hashinfo = _digest_hashers.get(hash_algorithm) + if not hashinfo: + raise UnsupportedDigestHashAlgorithm + if scheme != DigestScheme.SIMPLE: + raise UnsupportedDigestScheme + + if self.relativize: + origin_name = dns.name.empty + else: + assert self.origin is not None + origin_name = self.origin + hasher = hashinfo() + for name, node in sorted(self.items()): + rrnamebuf = name.to_digestable(self.origin) + for rdataset in sorted(node, key=lambda rds: (rds.rdtype, rds.covers)): + if name == origin_name and dns.rdatatype.ZONEMD in ( + rdataset.rdtype, + rdataset.covers, + ): + continue + rrfixed = struct.pack( + "!HHI", rdataset.rdtype, rdataset.rdclass, rdataset.ttl + ) + rdatas = [rdata.to_digestable(self.origin) for rdata in rdataset] + for rdata in sorted(rdatas): + rrlen = struct.pack("!H", len(rdata)) + hasher.update(rrnamebuf + rrfixed + rrlen + rdata) + return hasher.digest() + + def compute_digest( + self, + hash_algorithm: DigestHashAlgorithm, + scheme: DigestScheme = DigestScheme.SIMPLE, + ) -> dns.rdtypes.ANY.ZONEMD.ZONEMD: + serial = self.get_soa().serial + digest = self._compute_digest(hash_algorithm, scheme) + return dns.rdtypes.ANY.ZONEMD.ZONEMD( + self.rdclass, dns.rdatatype.ZONEMD, serial, scheme, hash_algorithm, digest + ) + + def verify_digest( + self, zonemd: Optional[dns.rdtypes.ANY.ZONEMD.ZONEMD] = None + ) -> None: + digests: Union[dns.rdataset.Rdataset, List[dns.rdtypes.ANY.ZONEMD.ZONEMD]] + if zonemd: + digests = [zonemd] + else: + assert self.origin is not None + rds = self.get_rdataset(self.origin, dns.rdatatype.ZONEMD) + if rds is None: + raise NoDigest + digests = rds + for digest in digests: + try: + computed = self._compute_digest(digest.hash_algorithm, digest.scheme) + if computed == digest.digest: + return + except Exception: + pass + raise DigestVerificationFailure + + # TransactionManager methods + + def reader(self) -> "Transaction": + return Transaction(self, False, Version(self, 1, self.nodes, self.origin)) + + def writer(self, replacement: bool = False) -> "Transaction": + txn = Transaction(self, replacement) + txn._setup_version() + return txn + + def origin_information( + self, + ) -> Tuple[Optional[dns.name.Name], bool, Optional[dns.name.Name]]: + effective: Optional[dns.name.Name] + if self.relativize: + effective = dns.name.empty + else: + effective = self.origin + return (self.origin, self.relativize, effective) + + def get_class(self): + return self.rdclass + + # Transaction methods + + def _end_read(self, txn): + pass + + def _end_write(self, txn): + pass + + def _commit_version(self, _, version, origin): + self.nodes = version.nodes + if self.origin is None: + self.origin = origin + + def _get_next_version_id(self): + # Versions are ephemeral and all have id 1 + return 1 + + +# These classes used to be in dns.versioned, but have moved here so we can use +# the copy-on-write transaction mechanism for both kinds of zones. In a +# regular zone, the version only exists during the transaction, and the nodes +# are regular dns.node.Nodes. + +# A node with a version id. + + +class VersionedNode(dns.node.Node): # lgtm[py/missing-equals] + __slots__ = ["id"] + + def __init__(self): + super().__init__() + # A proper id will get set by the Version + self.id = 0 + + +@dns.immutable.immutable +class ImmutableVersionedNode(VersionedNode): + def __init__(self, node): + super().__init__() + self.id = node.id + self.rdatasets = tuple( + [dns.rdataset.ImmutableRdataset(rds) for rds in node.rdatasets] + ) + + def find_rdataset( + self, + rdclass: dns.rdataclass.RdataClass, + rdtype: dns.rdatatype.RdataType, + covers: dns.rdatatype.RdataType = dns.rdatatype.NONE, + create: bool = False, + ) -> dns.rdataset.Rdataset: + if create: + raise TypeError("immutable") + return super().find_rdataset(rdclass, rdtype, covers, False) + + def get_rdataset( + self, + rdclass: dns.rdataclass.RdataClass, + rdtype: dns.rdatatype.RdataType, + covers: dns.rdatatype.RdataType = dns.rdatatype.NONE, + create: bool = False, + ) -> Optional[dns.rdataset.Rdataset]: + if create: + raise TypeError("immutable") + return super().get_rdataset(rdclass, rdtype, covers, False) + + def delete_rdataset( + self, + rdclass: dns.rdataclass.RdataClass, + rdtype: dns.rdatatype.RdataType, + covers: dns.rdatatype.RdataType = dns.rdatatype.NONE, + ) -> None: + raise TypeError("immutable") + + def replace_rdataset(self, replacement: dns.rdataset.Rdataset) -> None: + raise TypeError("immutable") + + def is_immutable(self) -> bool: + return True + + +class Version: + def __init__( + self, + zone: Zone, + id: int, + nodes: Optional[MutableMapping[dns.name.Name, dns.node.Node]] = None, + origin: Optional[dns.name.Name] = None, + ): + self.zone = zone + self.id = id + if nodes is not None: + self.nodes = nodes + else: + self.nodes = zone.map_factory() + self.origin = origin + + def _validate_name(self, name: dns.name.Name) -> dns.name.Name: + return _validate_name(name, self.origin, self.zone.relativize) + + def get_node(self, name: dns.name.Name) -> Optional[dns.node.Node]: + name = self._validate_name(name) + return self.nodes.get(name) + + def get_rdataset( + self, + name: dns.name.Name, + rdtype: dns.rdatatype.RdataType, + covers: dns.rdatatype.RdataType, + ) -> Optional[dns.rdataset.Rdataset]: + node = self.get_node(name) + if node is None: + return None + return node.get_rdataset(self.zone.rdclass, rdtype, covers) + + def keys(self): + return self.nodes.keys() + + def items(self): + return self.nodes.items() + + +class WritableVersion(Version): + def __init__(self, zone: Zone, replacement: bool = False): + # The zone._versions_lock must be held by our caller in a versioned + # zone. + id = zone._get_next_version_id() + super().__init__(zone, id) + if not replacement: + # We copy the map, because that gives us a simple and thread-safe + # way of doing versions, and we have a garbage collector to help + # us. We only make new node objects if we actually change the + # node. + self.nodes.update(zone.nodes) + # We have to copy the zone origin as it may be None in the first + # version, and we don't want to mutate the zone until we commit. + self.origin = zone.origin + self.changed: Set[dns.name.Name] = set() + + def _maybe_cow(self, name: dns.name.Name) -> dns.node.Node: + name = self._validate_name(name) + node = self.nodes.get(name) + if node is None or name not in self.changed: + new_node = self.zone.node_factory() + if hasattr(new_node, "id"): + # We keep doing this for backwards compatibility, as earlier + # code used new_node.id != self.id for the "do we need to CoW?" + # test. Now we use the changed set as this works with both + # regular zones and versioned zones. + # + # We ignore the mypy error as this is safe but it doesn't see it. + new_node.id = self.id # type: ignore + if node is not None: + # moo! copy on write! + new_node.rdatasets.extend(node.rdatasets) + self.nodes[name] = new_node + self.changed.add(name) + return new_node + else: + return node + + def delete_node(self, name: dns.name.Name) -> None: + name = self._validate_name(name) + if name in self.nodes: + del self.nodes[name] + self.changed.add(name) + + def put_rdataset( + self, name: dns.name.Name, rdataset: dns.rdataset.Rdataset + ) -> None: + node = self._maybe_cow(name) + node.replace_rdataset(rdataset) + + def delete_rdataset( + self, + name: dns.name.Name, + rdtype: dns.rdatatype.RdataType, + covers: dns.rdatatype.RdataType, + ) -> None: + node = self._maybe_cow(name) + node.delete_rdataset(self.zone.rdclass, rdtype, covers) + if len(node) == 0: + del self.nodes[name] + + +@dns.immutable.immutable +class ImmutableVersion(Version): + def __init__(self, version: WritableVersion): + # We tell super() that it's a replacement as we don't want it + # to copy the nodes, as we're about to do that with an + # immutable Dict. + super().__init__(version.zone, True) + # set the right id! + self.id = version.id + # keep the origin + self.origin = version.origin + # Make changed nodes immutable + for name in version.changed: + node = version.nodes.get(name) + # it might not exist if we deleted it in the version + if node: + version.nodes[name] = ImmutableVersionedNode(node) + # We're changing the type of the nodes dictionary here on purpose, so + # we ignore the mypy error. + self.nodes = dns.immutable.Dict( + version.nodes, True, self.zone.map_factory + ) # type: ignore + + +class Transaction(dns.transaction.Transaction): + def __init__(self, zone, replacement, version=None, make_immutable=False): + read_only = version is not None + super().__init__(zone, replacement, read_only) + self.version = version + self.make_immutable = make_immutable + + @property + def zone(self): + return self.manager + + def _setup_version(self): + assert self.version is None + factory = self.manager.writable_version_factory + if factory is None: + factory = WritableVersion + self.version = factory(self.zone, self.replacement) + + def _get_rdataset(self, name, rdtype, covers): + return self.version.get_rdataset(name, rdtype, covers) + + def _put_rdataset(self, name, rdataset): + assert not self.read_only + self.version.put_rdataset(name, rdataset) + + def _delete_name(self, name): + assert not self.read_only + self.version.delete_node(name) + + def _delete_rdataset(self, name, rdtype, covers): + assert not self.read_only + self.version.delete_rdataset(name, rdtype, covers) + + def _name_exists(self, name): + return self.version.get_node(name) is not None + + def _changed(self): + if self.read_only: + return False + else: + return len(self.version.changed) > 0 + + def _end_transaction(self, commit): + if self.read_only: + self.zone._end_read(self) + elif commit and len(self.version.changed) > 0: + if self.make_immutable: + factory = self.manager.immutable_version_factory + if factory is None: + factory = ImmutableVersion + version = factory(self.version) + else: + version = self.version + self.zone._commit_version(self, version, self.version.origin) + else: + # rollback + self.zone._end_write(self) + + def _set_origin(self, origin): + if self.version.origin is None: + self.version.origin = origin + + def _iterate_rdatasets(self): + for name, node in self.version.items(): + for rdataset in node: + yield (name, rdataset) + + def _iterate_names(self): + return self.version.keys() + + def _get_node(self, name): + return self.version.get_node(name) + + def _origin_information(self): + (absolute, relativize, effective) = self.manager.origin_information() + if absolute is None and self.version.origin is not None: + # No origin has been committed yet, but we've learned one as part of + # this txn. Use it. + absolute = self.version.origin + if relativize: + effective = dns.name.empty + else: + effective = absolute + return (absolute, relativize, effective) + + +def _from_text( + text: Any, + origin: Optional[Union[dns.name.Name, str]] = None, + rdclass: dns.rdataclass.RdataClass = dns.rdataclass.IN, + relativize: bool = True, + zone_factory: Any = Zone, + filename: Optional[str] = None, + allow_include: bool = False, + check_origin: bool = True, + idna_codec: Optional[dns.name.IDNACodec] = None, + allow_directives: Union[bool, Iterable[str]] = True, +) -> Zone: + # See the comments for the public APIs from_text() and from_file() for + # details. + + # 'text' can also be a file, but we don't publish that fact + # since it's an implementation detail. The official file + # interface is from_file(). + + if filename is None: + filename = "" + zone = zone_factory(origin, rdclass, relativize=relativize) + with zone.writer(True) as txn: + tok = dns.tokenizer.Tokenizer(text, filename, idna_codec=idna_codec) + reader = dns.zonefile.Reader( + tok, + rdclass, + txn, + allow_include=allow_include, + allow_directives=allow_directives, + ) + try: + reader.read() + except dns.zonefile.UnknownOrigin: + # for backwards compatibility + raise dns.zone.UnknownOrigin + # Now that we're done reading, do some basic checking of the zone. + if check_origin: + zone.check_origin() + return zone + + +def from_text( + text: str, + origin: Optional[Union[dns.name.Name, str]] = None, + rdclass: dns.rdataclass.RdataClass = dns.rdataclass.IN, + relativize: bool = True, + zone_factory: Any = Zone, + filename: Optional[str] = None, + allow_include: bool = False, + check_origin: bool = True, + idna_codec: Optional[dns.name.IDNACodec] = None, + allow_directives: Union[bool, Iterable[str]] = True, +) -> Zone: + """Build a zone object from a zone file format string. + + *text*, a ``str``, the zone file format input. + + *origin*, a ``dns.name.Name``, a ``str``, or ``None``. The origin + of the zone; if not specified, the first ``$ORIGIN`` statement in the + zone file will determine the origin of the zone. + + *rdclass*, a ``dns.rdataclass.RdataClass``, the zone's rdata class; the default is + class IN. + + *relativize*, a ``bool``, determine's whether domain names are + relativized to the zone's origin. The default is ``True``. + + *zone_factory*, the zone factory to use or ``None``. If ``None``, then + ``dns.zone.Zone`` will be used. The value may be any class or callable + that returns a subclass of ``dns.zone.Zone``. + + *filename*, a ``str`` or ``None``, the filename to emit when + describing where an error occurred; the default is ``''``. + + *allow_include*, a ``bool``. If ``True``, the default, then ``$INCLUDE`` + directives are permitted. If ``False``, then encoutering a ``$INCLUDE`` + will raise a ``SyntaxError`` exception. + + *check_origin*, a ``bool``. If ``True``, the default, then sanity + checks of the origin node will be made by calling the zone's + ``check_origin()`` method. + + *idna_codec*, a ``dns.name.IDNACodec``, specifies the IDNA + encoder/decoder. If ``None``, the default IDNA 2003 encoder/decoder + is used. + + *allow_directives*, a ``bool`` or an iterable of `str`. If ``True``, the default, + then directives are permitted, and the *allow_include* parameter controls whether + ``$INCLUDE`` is permitted. If ``False`` or an empty iterable, then no directive + processing is done and any directive-like text will be treated as a regular owner + name. If a non-empty iterable, then only the listed directives (including the + ``$``) are allowed. + + Raises ``dns.zone.NoSOA`` if there is no SOA RRset. + + Raises ``dns.zone.NoNS`` if there is no NS RRset. + + Raises ``KeyError`` if there is no origin node. + + Returns a subclass of ``dns.zone.Zone``. + """ + return _from_text( + text, + origin, + rdclass, + relativize, + zone_factory, + filename, + allow_include, + check_origin, + idna_codec, + allow_directives, + ) + + +def from_file( + f: Any, + origin: Optional[Union[dns.name.Name, str]] = None, + rdclass: dns.rdataclass.RdataClass = dns.rdataclass.IN, + relativize: bool = True, + zone_factory: Any = Zone, + filename: Optional[str] = None, + allow_include: bool = True, + check_origin: bool = True, + idna_codec: Optional[dns.name.IDNACodec] = None, + allow_directives: Union[bool, Iterable[str]] = True, +) -> Zone: + """Read a zone file and build a zone object. + + *f*, a file or ``str``. If *f* is a string, it is treated + as the name of a file to open. + + *origin*, a ``dns.name.Name``, a ``str``, or ``None``. The origin + of the zone; if not specified, the first ``$ORIGIN`` statement in the + zone file will determine the origin of the zone. + + *rdclass*, an ``int``, the zone's rdata class; the default is class IN. + + *relativize*, a ``bool``, determine's whether domain names are + relativized to the zone's origin. The default is ``True``. + + *zone_factory*, the zone factory to use or ``None``. If ``None``, then + ``dns.zone.Zone`` will be used. The value may be any class or callable + that returns a subclass of ``dns.zone.Zone``. + + *filename*, a ``str`` or ``None``, the filename to emit when + describing where an error occurred; the default is ``''``. + + *allow_include*, a ``bool``. If ``True``, the default, then ``$INCLUDE`` + directives are permitted. If ``False``, then encoutering a ``$INCLUDE`` + will raise a ``SyntaxError`` exception. + + *check_origin*, a ``bool``. If ``True``, the default, then sanity + checks of the origin node will be made by calling the zone's + ``check_origin()`` method. + + *idna_codec*, a ``dns.name.IDNACodec``, specifies the IDNA + encoder/decoder. If ``None``, the default IDNA 2003 encoder/decoder + is used. + + *allow_directives*, a ``bool`` or an iterable of `str`. If ``True``, the default, + then directives are permitted, and the *allow_include* parameter controls whether + ``$INCLUDE`` is permitted. If ``False`` or an empty iterable, then no directive + processing is done and any directive-like text will be treated as a regular owner + name. If a non-empty iterable, then only the listed directives (including the + ``$``) are allowed. + + Raises ``dns.zone.NoSOA`` if there is no SOA RRset. + + Raises ``dns.zone.NoNS`` if there is no NS RRset. + + Raises ``KeyError`` if there is no origin node. + + Returns a subclass of ``dns.zone.Zone``. + """ + + if isinstance(f, str): + if filename is None: + filename = f + cm: contextlib.AbstractContextManager = open(f) + else: + cm = contextlib.nullcontext(f) + with cm as f: + return _from_text( + f, + origin, + rdclass, + relativize, + zone_factory, + filename, + allow_include, + check_origin, + idna_codec, + allow_directives, + ) + assert False # make mypy happy lgtm[py/unreachable-statement] + + +def from_xfr( + xfr: Any, + zone_factory: Any = Zone, + relativize: bool = True, + check_origin: bool = True, +) -> Zone: + """Convert the output of a zone transfer generator into a zone object. + + *xfr*, a generator of ``dns.message.Message`` objects, typically + ``dns.query.xfr()``. + + *relativize*, a ``bool``, determine's whether domain names are + relativized to the zone's origin. The default is ``True``. + It is essential that the relativize setting matches the one specified + to the generator. + + *check_origin*, a ``bool``. If ``True``, the default, then sanity + checks of the origin node will be made by calling the zone's + ``check_origin()`` method. + + Raises ``dns.zone.NoSOA`` if there is no SOA RRset. + + Raises ``dns.zone.NoNS`` if there is no NS RRset. + + Raises ``KeyError`` if there is no origin node. + + Raises ``ValueError`` if no messages are yielded by the generator. + + Returns a subclass of ``dns.zone.Zone``. + """ + + z = None + for r in xfr: + if z is None: + if relativize: + origin = r.origin + else: + origin = r.answer[0].name + rdclass = r.answer[0].rdclass + z = zone_factory(origin, rdclass, relativize=relativize) + for rrset in r.answer: + znode = z.nodes.get(rrset.name) + if not znode: + znode = z.node_factory() + z.nodes[rrset.name] = znode + zrds = znode.find_rdataset(rrset.rdclass, rrset.rdtype, rrset.covers, True) + zrds.update_ttl(rrset.ttl) + for rd in rrset: + zrds.add(rd) + if z is None: + raise ValueError("empty transfer") + if check_origin: + z.check_origin() + return z diff --git a/.venv/lib/python3.11/site-packages/dns/zonefile.py b/.venv/lib/python3.11/site-packages/dns/zonefile.py new file mode 100644 index 0000000..d74510b --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/zonefile.py @@ -0,0 +1,744 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +# Copyright (C) 2003-2007, 2009-2011 Nominum, Inc. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose with or without fee is hereby granted, +# provided that the above copyright notice and this permission notice +# appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +"""DNS Zones.""" + +import re +import sys +from typing import Any, Iterable, List, Optional, Set, Tuple, Union + +import dns.exception +import dns.grange +import dns.name +import dns.node +import dns.rdata +import dns.rdataclass +import dns.rdatatype +import dns.rdtypes.ANY.SOA +import dns.rrset +import dns.tokenizer +import dns.transaction +import dns.ttl + + +class UnknownOrigin(dns.exception.DNSException): + """Unknown origin""" + + +class CNAMEAndOtherData(dns.exception.DNSException): + """A node has a CNAME and other data""" + + +def _check_cname_and_other_data(txn, name, rdataset): + rdataset_kind = dns.node.NodeKind.classify_rdataset(rdataset) + node = txn.get_node(name) + if node is None: + # empty nodes are neutral. + return + node_kind = node.classify() + if ( + node_kind == dns.node.NodeKind.CNAME + and rdataset_kind == dns.node.NodeKind.REGULAR + ): + raise CNAMEAndOtherData("rdataset type is not compatible with a CNAME node") + elif ( + node_kind == dns.node.NodeKind.REGULAR + and rdataset_kind == dns.node.NodeKind.CNAME + ): + raise CNAMEAndOtherData( + "CNAME rdataset is not compatible with a regular data node" + ) + # Otherwise at least one of the node and the rdataset is neutral, so + # adding the rdataset is ok + + +SavedStateType = Tuple[ + dns.tokenizer.Tokenizer, + Optional[dns.name.Name], # current_origin + Optional[dns.name.Name], # last_name + Optional[Any], # current_file + int, # last_ttl + bool, # last_ttl_known + int, # default_ttl + bool, +] # default_ttl_known + + +def _upper_dollarize(s): + s = s.upper() + if not s.startswith("$"): + s = "$" + s + return s + + +class Reader: + """Read a DNS zone file into a transaction.""" + + def __init__( + self, + tok: dns.tokenizer.Tokenizer, + rdclass: dns.rdataclass.RdataClass, + txn: dns.transaction.Transaction, + allow_include: bool = False, + allow_directives: Union[bool, Iterable[str]] = True, + force_name: Optional[dns.name.Name] = None, + force_ttl: Optional[int] = None, + force_rdclass: Optional[dns.rdataclass.RdataClass] = None, + force_rdtype: Optional[dns.rdatatype.RdataType] = None, + default_ttl: Optional[int] = None, + ): + self.tok = tok + (self.zone_origin, self.relativize, _) = txn.manager.origin_information() + self.current_origin = self.zone_origin + self.last_ttl = 0 + self.last_ttl_known = False + if force_ttl is not None: + default_ttl = force_ttl + if default_ttl is None: + self.default_ttl = 0 + self.default_ttl_known = False + else: + self.default_ttl = default_ttl + self.default_ttl_known = True + self.last_name = self.current_origin + self.zone_rdclass = rdclass + self.txn = txn + self.saved_state: List[SavedStateType] = [] + self.current_file: Optional[Any] = None + self.allowed_directives: Set[str] + if allow_directives is True: + self.allowed_directives = {"$GENERATE", "$ORIGIN", "$TTL"} + if allow_include: + self.allowed_directives.add("$INCLUDE") + elif allow_directives is False: + # allow_include was ignored in earlier releases if allow_directives was + # False, so we continue that. + self.allowed_directives = set() + else: + # Note that if directives are explicitly specified, then allow_include + # is ignored. + self.allowed_directives = set(_upper_dollarize(d) for d in allow_directives) + self.force_name = force_name + self.force_ttl = force_ttl + self.force_rdclass = force_rdclass + self.force_rdtype = force_rdtype + self.txn.check_put_rdataset(_check_cname_and_other_data) + + def _eat_line(self): + while 1: + token = self.tok.get() + if token.is_eol_or_eof(): + break + + def _get_identifier(self): + token = self.tok.get() + if not token.is_identifier(): + raise dns.exception.SyntaxError + return token + + def _rr_line(self): + """Process one line from a DNS zone file.""" + token = None + # Name + if self.force_name is not None: + name = self.force_name + else: + if self.current_origin is None: + raise UnknownOrigin + token = self.tok.get(want_leading=True) + if not token.is_whitespace(): + self.last_name = self.tok.as_name(token, self.current_origin) + else: + token = self.tok.get() + if token.is_eol_or_eof(): + # treat leading WS followed by EOL/EOF as if they were EOL/EOF. + return + self.tok.unget(token) + name = self.last_name + if not name.is_subdomain(self.zone_origin): + self._eat_line() + return + if self.relativize: + name = name.relativize(self.zone_origin) + + # TTL + if self.force_ttl is not None: + ttl = self.force_ttl + self.last_ttl = ttl + self.last_ttl_known = True + else: + token = self._get_identifier() + ttl = None + try: + ttl = dns.ttl.from_text(token.value) + self.last_ttl = ttl + self.last_ttl_known = True + token = None + except dns.ttl.BadTTL: + self.tok.unget(token) + + # Class + if self.force_rdclass is not None: + rdclass = self.force_rdclass + else: + token = self._get_identifier() + try: + rdclass = dns.rdataclass.from_text(token.value) + except dns.exception.SyntaxError: + raise + except Exception: + rdclass = self.zone_rdclass + self.tok.unget(token) + if rdclass != self.zone_rdclass: + raise dns.exception.SyntaxError("RR class is not zone's class") + + if ttl is None: + # support for syntax + token = self._get_identifier() + ttl = None + try: + ttl = dns.ttl.from_text(token.value) + self.last_ttl = ttl + self.last_ttl_known = True + token = None + except dns.ttl.BadTTL: + if self.default_ttl_known: + ttl = self.default_ttl + elif self.last_ttl_known: + ttl = self.last_ttl + self.tok.unget(token) + + # Type + if self.force_rdtype is not None: + rdtype = self.force_rdtype + else: + token = self._get_identifier() + try: + rdtype = dns.rdatatype.from_text(token.value) + except Exception: + raise dns.exception.SyntaxError(f"unknown rdatatype '{token.value}'") + + try: + rd = dns.rdata.from_text( + rdclass, + rdtype, + self.tok, + self.current_origin, + self.relativize, + self.zone_origin, + ) + except dns.exception.SyntaxError: + # Catch and reraise. + raise + except Exception: + # All exceptions that occur in the processing of rdata + # are treated as syntax errors. This is not strictly + # correct, but it is correct almost all of the time. + # We convert them to syntax errors so that we can emit + # helpful filename:line info. + (ty, va) = sys.exc_info()[:2] + raise dns.exception.SyntaxError(f"caught exception {str(ty)}: {str(va)}") + + if not self.default_ttl_known and rdtype == dns.rdatatype.SOA: + # The pre-RFC2308 and pre-BIND9 behavior inherits the zone default + # TTL from the SOA minttl if no $TTL statement is present before the + # SOA is parsed. + self.default_ttl = rd.minimum + self.default_ttl_known = True + if ttl is None: + # if we didn't have a TTL on the SOA, set it! + ttl = rd.minimum + + # TTL check. We had to wait until now to do this as the SOA RR's + # own TTL can be inferred from its minimum. + if ttl is None: + raise dns.exception.SyntaxError("Missing default TTL value") + + self.txn.add(name, ttl, rd) + + def _parse_modify(self, side: str) -> Tuple[str, str, int, int, str]: + # Here we catch everything in '{' '}' in a group so we can replace it + # with ''. + is_generate1 = re.compile(r"^.*\$({(\+|-?)(\d+),(\d+),(.)}).*$") + is_generate2 = re.compile(r"^.*\$({(\+|-?)(\d+)}).*$") + is_generate3 = re.compile(r"^.*\$({(\+|-?)(\d+),(\d+)}).*$") + # Sometimes there are modifiers in the hostname. These come after + # the dollar sign. They are in the form: ${offset[,width[,base]]}. + # Make names + mod = "" + sign = "+" + offset = "0" + width = "0" + base = "d" + g1 = is_generate1.match(side) + if g1: + mod, sign, offset, width, base = g1.groups() + if sign == "": + sign = "+" + else: + g2 = is_generate2.match(side) + if g2: + mod, sign, offset = g2.groups() + if sign == "": + sign = "+" + width = "0" + base = "d" + else: + g3 = is_generate3.match(side) + if g3: + mod, sign, offset, width = g3.groups() + if sign == "": + sign = "+" + base = "d" + + ioffset = int(offset) + iwidth = int(width) + + if sign not in ["+", "-"]: + raise dns.exception.SyntaxError(f"invalid offset sign {sign}") + if base not in ["d", "o", "x", "X", "n", "N"]: + raise dns.exception.SyntaxError(f"invalid type {base}") + + return mod, sign, ioffset, iwidth, base + + def _generate_line(self): + # range lhs [ttl] [class] type rhs [ comment ] + """Process one line containing the GENERATE statement from a DNS + zone file.""" + if self.current_origin is None: + raise UnknownOrigin + + token = self.tok.get() + # Range (required) + try: + start, stop, step = dns.grange.from_text(token.value) + token = self.tok.get() + if not token.is_identifier(): + raise dns.exception.SyntaxError + except Exception: + raise dns.exception.SyntaxError + + # lhs (required) + try: + lhs = token.value + token = self.tok.get() + if not token.is_identifier(): + raise dns.exception.SyntaxError + except Exception: + raise dns.exception.SyntaxError + + # TTL + try: + ttl = dns.ttl.from_text(token.value) + self.last_ttl = ttl + self.last_ttl_known = True + token = self.tok.get() + if not token.is_identifier(): + raise dns.exception.SyntaxError + except dns.ttl.BadTTL: + if not (self.last_ttl_known or self.default_ttl_known): + raise dns.exception.SyntaxError("Missing default TTL value") + if self.default_ttl_known: + ttl = self.default_ttl + elif self.last_ttl_known: + ttl = self.last_ttl + # Class + try: + rdclass = dns.rdataclass.from_text(token.value) + token = self.tok.get() + if not token.is_identifier(): + raise dns.exception.SyntaxError + except dns.exception.SyntaxError: + raise dns.exception.SyntaxError + except Exception: + rdclass = self.zone_rdclass + if rdclass != self.zone_rdclass: + raise dns.exception.SyntaxError("RR class is not zone's class") + # Type + try: + rdtype = dns.rdatatype.from_text(token.value) + token = self.tok.get() + if not token.is_identifier(): + raise dns.exception.SyntaxError + except Exception: + raise dns.exception.SyntaxError(f"unknown rdatatype '{token.value}'") + + # rhs (required) + rhs = token.value + + def _calculate_index(counter: int, offset_sign: str, offset: int) -> int: + """Calculate the index from the counter and offset.""" + if offset_sign == "-": + offset *= -1 + return counter + offset + + def _format_index(index: int, base: str, width: int) -> str: + """Format the index with the given base, and zero-fill it + to the given width.""" + if base in ["d", "o", "x", "X"]: + return format(index, base).zfill(width) + + # base can only be n or N here + hexa = _format_index(index, "x", width) + nibbles = ".".join(hexa[::-1])[:width] + if base == "N": + nibbles = nibbles.upper() + return nibbles + + lmod, lsign, loffset, lwidth, lbase = self._parse_modify(lhs) + rmod, rsign, roffset, rwidth, rbase = self._parse_modify(rhs) + for i in range(start, stop + 1, step): + # +1 because bind is inclusive and python is exclusive + + lindex = _calculate_index(i, lsign, loffset) + rindex = _calculate_index(i, rsign, roffset) + + lzfindex = _format_index(lindex, lbase, lwidth) + rzfindex = _format_index(rindex, rbase, rwidth) + + name = lhs.replace(f"${lmod}", lzfindex) + rdata = rhs.replace(f"${rmod}", rzfindex) + + self.last_name = dns.name.from_text( + name, self.current_origin, self.tok.idna_codec + ) + name = self.last_name + if not name.is_subdomain(self.zone_origin): + self._eat_line() + return + if self.relativize: + name = name.relativize(self.zone_origin) + + try: + rd = dns.rdata.from_text( + rdclass, + rdtype, + rdata, + self.current_origin, + self.relativize, + self.zone_origin, + ) + except dns.exception.SyntaxError: + # Catch and reraise. + raise + except Exception: + # All exceptions that occur in the processing of rdata + # are treated as syntax errors. This is not strictly + # correct, but it is correct almost all of the time. + # We convert them to syntax errors so that we can emit + # helpful filename:line info. + (ty, va) = sys.exc_info()[:2] + raise dns.exception.SyntaxError( + f"caught exception {str(ty)}: {str(va)}" + ) + + self.txn.add(name, ttl, rd) + + def read(self) -> None: + """Read a DNS zone file and build a zone object. + + @raises dns.zone.NoSOA: No SOA RR was found at the zone origin + @raises dns.zone.NoNS: No NS RRset was found at the zone origin + """ + + try: + while 1: + token = self.tok.get(True, True) + if token.is_eof(): + if self.current_file is not None: + self.current_file.close() + if len(self.saved_state) > 0: + ( + self.tok, + self.current_origin, + self.last_name, + self.current_file, + self.last_ttl, + self.last_ttl_known, + self.default_ttl, + self.default_ttl_known, + ) = self.saved_state.pop(-1) + continue + break + elif token.is_eol(): + continue + elif token.is_comment(): + self.tok.get_eol() + continue + elif token.value[0] == "$" and len(self.allowed_directives) > 0: + # Note that we only run directive processing code if at least + # one directive is allowed in order to be backwards compatible + c = token.value.upper() + if c not in self.allowed_directives: + raise dns.exception.SyntaxError( + f"zone file directive '{c}' is not allowed" + ) + if c == "$TTL": + token = self.tok.get() + if not token.is_identifier(): + raise dns.exception.SyntaxError("bad $TTL") + self.default_ttl = dns.ttl.from_text(token.value) + self.default_ttl_known = True + self.tok.get_eol() + elif c == "$ORIGIN": + self.current_origin = self.tok.get_name() + self.tok.get_eol() + if self.zone_origin is None: + self.zone_origin = self.current_origin + self.txn._set_origin(self.current_origin) + elif c == "$INCLUDE": + token = self.tok.get() + filename = token.value + token = self.tok.get() + new_origin: Optional[dns.name.Name] + if token.is_identifier(): + new_origin = dns.name.from_text( + token.value, self.current_origin, self.tok.idna_codec + ) + self.tok.get_eol() + elif not token.is_eol_or_eof(): + raise dns.exception.SyntaxError("bad origin in $INCLUDE") + else: + new_origin = self.current_origin + self.saved_state.append( + ( + self.tok, + self.current_origin, + self.last_name, + self.current_file, + self.last_ttl, + self.last_ttl_known, + self.default_ttl, + self.default_ttl_known, + ) + ) + self.current_file = open(filename) + self.tok = dns.tokenizer.Tokenizer(self.current_file, filename) + self.current_origin = new_origin + elif c == "$GENERATE": + self._generate_line() + else: + raise dns.exception.SyntaxError( + f"Unknown zone file directive '{c}'" + ) + continue + self.tok.unget(token) + self._rr_line() + except dns.exception.SyntaxError as detail: + (filename, line_number) = self.tok.where() + if detail is None: + detail = "syntax error" + ex = dns.exception.SyntaxError( + "%s:%d: %s" % (filename, line_number, detail) + ) + tb = sys.exc_info()[2] + raise ex.with_traceback(tb) from None + + +class RRsetsReaderTransaction(dns.transaction.Transaction): + def __init__(self, manager, replacement, read_only): + assert not read_only + super().__init__(manager, replacement, read_only) + self.rdatasets = {} + + def _get_rdataset(self, name, rdtype, covers): + return self.rdatasets.get((name, rdtype, covers)) + + def _get_node(self, name): + rdatasets = [] + for (rdataset_name, _, _), rdataset in self.rdatasets.items(): + if name == rdataset_name: + rdatasets.append(rdataset) + if len(rdatasets) == 0: + return None + node = dns.node.Node() + node.rdatasets = rdatasets + return node + + def _put_rdataset(self, name, rdataset): + self.rdatasets[(name, rdataset.rdtype, rdataset.covers)] = rdataset + + def _delete_name(self, name): + # First remove any changes involving the name + remove = [] + for key in self.rdatasets: + if key[0] == name: + remove.append(key) + if len(remove) > 0: + for key in remove: + del self.rdatasets[key] + + def _delete_rdataset(self, name, rdtype, covers): + try: + del self.rdatasets[(name, rdtype, covers)] + except KeyError: + pass + + def _name_exists(self, name): + for n, _, _ in self.rdatasets: + if n == name: + return True + return False + + def _changed(self): + return len(self.rdatasets) > 0 + + def _end_transaction(self, commit): + if commit and self._changed(): + rrsets = [] + for (name, _, _), rdataset in self.rdatasets.items(): + rrset = dns.rrset.RRset( + name, rdataset.rdclass, rdataset.rdtype, rdataset.covers + ) + rrset.update(rdataset) + rrsets.append(rrset) + self.manager.set_rrsets(rrsets) + + def _set_origin(self, origin): + pass + + def _iterate_rdatasets(self): + raise NotImplementedError # pragma: no cover + + def _iterate_names(self): + raise NotImplementedError # pragma: no cover + + +class RRSetsReaderManager(dns.transaction.TransactionManager): + def __init__( + self, origin=dns.name.root, relativize=False, rdclass=dns.rdataclass.IN + ): + self.origin = origin + self.relativize = relativize + self.rdclass = rdclass + self.rrsets = [] + + def reader(self): # pragma: no cover + raise NotImplementedError + + def writer(self, replacement=False): + assert replacement is True + return RRsetsReaderTransaction(self, True, False) + + def get_class(self): + return self.rdclass + + def origin_information(self): + if self.relativize: + effective = dns.name.empty + else: + effective = self.origin + return (self.origin, self.relativize, effective) + + def set_rrsets(self, rrsets): + self.rrsets = rrsets + + +def read_rrsets( + text: Any, + name: Optional[Union[dns.name.Name, str]] = None, + ttl: Optional[int] = None, + rdclass: Optional[Union[dns.rdataclass.RdataClass, str]] = dns.rdataclass.IN, + default_rdclass: Union[dns.rdataclass.RdataClass, str] = dns.rdataclass.IN, + rdtype: Optional[Union[dns.rdatatype.RdataType, str]] = None, + default_ttl: Optional[Union[int, str]] = None, + idna_codec: Optional[dns.name.IDNACodec] = None, + origin: Optional[Union[dns.name.Name, str]] = dns.name.root, + relativize: bool = False, +) -> List[dns.rrset.RRset]: + """Read one or more rrsets from the specified text, possibly subject + to restrictions. + + *text*, a file object or a string, is the input to process. + + *name*, a string, ``dns.name.Name``, or ``None``, is the owner name of + the rrset. If not ``None``, then the owner name is "forced", and the + input must not specify an owner name. If ``None``, then any owner names + are allowed and must be present in the input. + + *ttl*, an ``int``, string, or None. If not ``None``, the the TTL is + forced to be the specified value and the input must not specify a TTL. + If ``None``, then a TTL may be specified in the input. If it is not + specified, then the *default_ttl* will be used. + + *rdclass*, a ``dns.rdataclass.RdataClass``, string, or ``None``. If + not ``None``, then the class is forced to the specified value, and the + input must not specify a class. If ``None``, then the input may specify + a class that matches *default_rdclass*. Note that it is not possible to + return rrsets with differing classes; specifying ``None`` for the class + simply allows the user to optionally type a class as that may be convenient + when cutting and pasting. + + *default_rdclass*, a ``dns.rdataclass.RdataClass`` or string. The class + of the returned rrsets. + + *rdtype*, a ``dns.rdatatype.RdataType``, string, or ``None``. If not + ``None``, then the type is forced to the specified value, and the + input must not specify a type. If ``None``, then a type must be present + for each RR. + + *default_ttl*, an ``int``, string, or ``None``. If not ``None``, then if + the TTL is not forced and is not specified, then this value will be used. + if ``None``, then if the TTL is not forced an error will occur if the TTL + is not specified. + + *idna_codec*, a ``dns.name.IDNACodec``, specifies the IDNA + encoder/decoder. If ``None``, the default IDNA 2003 encoder/decoder + is used. Note that codecs only apply to the owner name; dnspython does + not do IDNA for names in rdata, as there is no IDNA zonefile format. + + *origin*, a string, ``dns.name.Name``, or ``None``, is the origin for any + relative names in the input, and also the origin to relativize to if + *relativize* is ``True``. + + *relativize*, a bool. If ``True``, names are relativized to the *origin*; + if ``False`` then any relative names in the input are made absolute by + appending the *origin*. + """ + if isinstance(origin, str): + origin = dns.name.from_text(origin, dns.name.root, idna_codec) + if isinstance(name, str): + name = dns.name.from_text(name, origin, idna_codec) + if isinstance(ttl, str): + ttl = dns.ttl.from_text(ttl) + if isinstance(default_ttl, str): + default_ttl = dns.ttl.from_text(default_ttl) + if rdclass is not None: + rdclass = dns.rdataclass.RdataClass.make(rdclass) + else: + rdclass = None + default_rdclass = dns.rdataclass.RdataClass.make(default_rdclass) + if rdtype is not None: + rdtype = dns.rdatatype.RdataType.make(rdtype) + else: + rdtype = None + manager = RRSetsReaderManager(origin, relativize, default_rdclass) + with manager.writer(True) as txn: + tok = dns.tokenizer.Tokenizer(text, "", idna_codec=idna_codec) + reader = Reader( + tok, + default_rdclass, + txn, + allow_directives=False, + force_name=name, + force_ttl=ttl, + force_rdclass=rdclass, + force_rdtype=rdtype, + default_ttl=default_ttl, + ) + reader.read() + return manager.rrsets diff --git a/.venv/lib/python3.11/site-packages/dns/zonetypes.py b/.venv/lib/python3.11/site-packages/dns/zonetypes.py new file mode 100644 index 0000000..195ee2e --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dns/zonetypes.py @@ -0,0 +1,37 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +"""Common zone-related types.""" + +# This is a separate file to avoid import circularity between dns.zone and +# the implementation of the ZONEMD type. + +import hashlib + +import dns.enum + + +class DigestScheme(dns.enum.IntEnum): + """ZONEMD Scheme""" + + SIMPLE = 1 + + @classmethod + def _maximum(cls): + return 255 + + +class DigestHashAlgorithm(dns.enum.IntEnum): + """ZONEMD Hash Algorithm""" + + SHA384 = 1 + SHA512 = 2 + + @classmethod + def _maximum(cls): + return 255 + + +_digest_hashers = { + DigestHashAlgorithm.SHA384: hashlib.sha384, + DigestHashAlgorithm.SHA512: hashlib.sha512, +} diff --git a/.venv/lib/python3.11/site-packages/dnspython-2.7.0.dist-info/INSTALLER b/.venv/lib/python3.11/site-packages/dnspython-2.7.0.dist-info/INSTALLER new file mode 100644 index 0000000..c2a1515 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dnspython-2.7.0.dist-info/INSTALLER @@ -0,0 +1 @@ +Poetry 2.1.3 \ No newline at end of file diff --git a/.venv/lib/python3.11/site-packages/dnspython-2.7.0.dist-info/METADATA b/.venv/lib/python3.11/site-packages/dnspython-2.7.0.dist-info/METADATA new file mode 100644 index 0000000..ca4a4f4 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dnspython-2.7.0.dist-info/METADATA @@ -0,0 +1,149 @@ +Metadata-Version: 2.3 +Name: dnspython +Version: 2.7.0 +Summary: DNS toolkit +Project-URL: homepage, https://www.dnspython.org +Project-URL: repository, https://github.com/rthalley/dnspython.git +Project-URL: documentation, https://dnspython.readthedocs.io/en/stable/ +Project-URL: issues, https://github.com/rthalley/dnspython/issues +Author-email: Bob Halley +License: ISC +License-File: LICENSE +Classifier: Development Status :: 5 - Production/Stable +Classifier: Intended Audience :: Developers +Classifier: Intended Audience :: System Administrators +Classifier: License :: OSI Approved :: ISC License (ISCL) +Classifier: Operating System :: Microsoft :: Windows +Classifier: Operating System :: POSIX +Classifier: Programming Language :: Python +Classifier: Programming Language :: Python :: 3 +Classifier: Programming Language :: Python :: 3.9 +Classifier: Programming Language :: Python :: 3.10 +Classifier: Programming Language :: Python :: 3.11 +Classifier: Programming Language :: Python :: 3.12 +Classifier: Programming Language :: Python :: 3.13 +Classifier: Topic :: Internet :: Name Service (DNS) +Classifier: Topic :: Software Development :: Libraries :: Python Modules +Requires-Python: >=3.9 +Provides-Extra: dev +Requires-Dist: black>=23.1.0; extra == 'dev' +Requires-Dist: coverage>=7.0; extra == 'dev' +Requires-Dist: flake8>=7; extra == 'dev' +Requires-Dist: hypercorn>=0.16.0; extra == 'dev' +Requires-Dist: mypy>=1.8; extra == 'dev' +Requires-Dist: pylint>=3; extra == 'dev' +Requires-Dist: pytest-cov>=4.1.0; extra == 'dev' +Requires-Dist: pytest>=7.4; extra == 'dev' +Requires-Dist: quart-trio>=0.11.0; extra == 'dev' +Requires-Dist: sphinx-rtd-theme>=2.0.0; extra == 'dev' +Requires-Dist: sphinx>=7.2.0; extra == 'dev' +Requires-Dist: twine>=4.0.0; extra == 'dev' +Requires-Dist: wheel>=0.42.0; extra == 'dev' +Provides-Extra: dnssec +Requires-Dist: cryptography>=43; extra == 'dnssec' +Provides-Extra: doh +Requires-Dist: h2>=4.1.0; extra == 'doh' +Requires-Dist: httpcore>=1.0.0; extra == 'doh' +Requires-Dist: httpx>=0.26.0; extra == 'doh' +Provides-Extra: doq +Requires-Dist: aioquic>=1.0.0; extra == 'doq' +Provides-Extra: idna +Requires-Dist: idna>=3.7; extra == 'idna' +Provides-Extra: trio +Requires-Dist: trio>=0.23; extra == 'trio' +Provides-Extra: wmi +Requires-Dist: wmi>=1.5.1; extra == 'wmi' +Description-Content-Type: text/markdown + +# dnspython + +[![Build Status](https://github.com/rthalley/dnspython/actions/workflows/ci.yml/badge.svg)](https://github.com/rthalley/dnspython/actions/) +[![Documentation Status](https://readthedocs.org/projects/dnspython/badge/?version=latest)](https://dnspython.readthedocs.io/en/latest/?badge=latest) +[![PyPI version](https://badge.fury.io/py/dnspython.svg)](https://badge.fury.io/py/dnspython) +[![License: ISC](https://img.shields.io/badge/License-ISC-brightgreen.svg)](https://opensource.org/licenses/ISC) +[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black) + +## INTRODUCTION + +dnspython is a DNS toolkit for Python. It supports almost all record types. It +can be used for queries, zone transfers, and dynamic updates. It supports TSIG +authenticated messages and EDNS0. + +dnspython provides both high and low level access to DNS. The high level classes +perform queries for data of a given name, type, and class, and return an answer +set. The low level classes allow direct manipulation of DNS zones, messages, +names, and records. + +To see a few of the ways dnspython can be used, look in the `examples/` +directory. + +dnspython is a utility to work with DNS, `/etc/hosts` is thus not used. For +simple forward DNS lookups, it's better to use `socket.getaddrinfo()` or +`socket.gethostbyname()`. + +dnspython originated at Nominum where it was developed +to facilitate the testing of DNS software. + +## ABOUT THIS RELEASE + +This is dnspython 2.7.0. +Please read +[What's New](https://dnspython.readthedocs.io/en/stable/whatsnew.html) for +information about the changes in this release. + +## INSTALLATION + +* Many distributions have dnspython packaged for you, so you should + check there first. +* To use a wheel downloaded from PyPi, run: + + pip install dnspython + +* To install from the source code, go into the top-level of the source code + and run: + +``` + pip install --upgrade pip build + python -m build + pip install dist/*.whl +``` + +* To install the latest from the main branch, run `pip install git+https://github.com/rthalley/dnspython.git` + +Dnspython's default installation does not depend on any modules other than +those in the Python standard library. To use some features, additional modules +must be installed. For convenience, pip options are defined for the +requirements. + +If you want to use DNS-over-HTTPS, run +`pip install dnspython[doh]`. + +If you want to use DNSSEC functionality, run +`pip install dnspython[dnssec]`. + +If you want to use internationalized domain names (IDNA) +functionality, you must run +`pip install dnspython[idna]` + +If you want to use the Trio asynchronous I/O package, run +`pip install dnspython[trio]`. + +If you want to use WMI on Windows to determine the active DNS settings +instead of the default registry scanning method, run +`pip install dnspython[wmi]`. + +If you want to try the experimental DNS-over-QUIC code, run +`pip install dnspython[doq]`. + +Note that you can install any combination of the above, e.g.: +`pip install dnspython[doh,dnssec,idna]` + +### Notices + +Python 2.x support ended with the release of 1.16.0. Dnspython 2.6.x supports +Python 3.8 and later, though support for 3.8 ends on October 14, 2024. +Dnspython 2.7.x supports Python 3.9 and later. Future support is aligned with the +lifetime of the Python 3 versions. + +Documentation has moved to +[dnspython.readthedocs.io](https://dnspython.readthedocs.io). diff --git a/.venv/lib/python3.11/site-packages/dnspython-2.7.0.dist-info/RECORD b/.venv/lib/python3.11/site-packages/dnspython-2.7.0.dist-info/RECORD new file mode 100644 index 0000000..dd606e4 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dnspython-2.7.0.dist-info/RECORD @@ -0,0 +1,150 @@ +dns/__init__.py,sha256=YJZtDG14Idw5ui3h1nWooSwPM9gsxQgB8M0GBZ3aly0,1663 +dns/_asyncbackend.py,sha256=pamIAWJ73e7ic2u7Q3RJyG6_6L8t78ccttvi65682MM,2396 +dns/_asyncio_backend.py,sha256=iLqhcUXqnFWC_2tcAp9U00NOGxT5GKPn4qeXS4iKaro,9051 +dns/_ddr.py,sha256=rHXKC8kncCTT9N4KBh1flicl79nyDjQ-DDvq30MJ3B8,5247 +dns/_features.py,sha256=Ig_leAKUT9RDiOVOfA0nXmmqpiPfnOnP9TcxlISUGSk,2492 +dns/_immutable_ctx.py,sha256=gtoCLMmdHXI23zt5lRSIS3A4Ca3jZJngebdoFFOtiwU,2459 +dns/_trio_backend.py,sha256=IXNdUP1MUBPyZRgAFhGH71KHtUCh3Rm5dM8SX4bMj2U,8473 +dns/asyncbackend.py,sha256=82fXTFls_m7F_ekQbgUGOkoBbs4BI-GBLDZAWNGUvJ0,2796 +dns/asyncquery.py,sha256=PMZ_D4Z8vgSioWHftyxNw7eax1IqrPleqY5FIi40hd8,30821 +dns/asyncresolver.py,sha256=GD86dCyW9YGKs6SggWXwBKEXifW7Qdx4cEAGFKY6fA4,17852 +dns/dnssec.py,sha256=gXmIrbKK1t1hE8ht-WlhUc0giy1PpLYj07r6o0pVATY,41717 +dns/dnssectypes.py,sha256=CyeuGTS_rM3zXr8wD9qMT9jkzvVfTY2JWckUcogG83E,1799 +dns/e164.py,sha256=EsK8cnOtOx7kQ0DmSwibcwkzp6efMWjbRiTyHZO8Q-M,3978 +dns/edns.py,sha256=-XDhC2jr7BRLsJrpCAWShxLn-3eG1oI0HhduWhLxdMw,17089 +dns/entropy.py,sha256=qkG8hXDLzrJS6R5My26iA59c0RhPwJNzuOhOCAZU5Bw,4242 +dns/enum.py,sha256=EepaunPKixTSrascy7iAe9UQEXXxP_MB5Gx4jUpHIhg,3691 +dns/exception.py,sha256=8vjxLf4T3T77vfANe_iKVeButAEhSJve6UrPjiBzht4,5953 +dns/flags.py,sha256=cQ3kTFyvcKiWHAxI5AwchNqxVOrsIrgJ6brgrH42Wq8,2750 +dns/grange.py,sha256=D016OrOv3i44G3mb_CzPFjDk61uZ6BMRib3yJnDQvbw,2144 +dns/immutable.py,sha256=InrtpKvPxl-74oYbzsyneZwAuX78hUqeG22f2aniZbk,2017 +dns/inet.py,sha256=j6jQs3K_ehVhDv-i4jwCKePr5HpEiSzvOXQ4uhgn1sU,5772 +dns/ipv4.py,sha256=qEUXtlqWDH_blicj6VMvyQhfX7-BF0gB_lWJliV-2FI,2552 +dns/ipv6.py,sha256=Ww8ayshM6FxtQsRYdXXuKkPFTad5ZcGbBd9lr1nFct4,6554 +dns/message.py,sha256=QOtdFBEAORhTKN0uQg86uSNvthdxJx40HhMQXYCBHng,68185 +dns/name.py,sha256=Bf3170QHhLFLDnMsWeJyik4i9ucBDbIY6Bydcz8H-2o,42778 +dns/namedict.py,sha256=hJRYpKeQv6Bd2LaUOPV0L_a0eXEIuqgggPXaH4c3Tow,4000 +dns/nameserver.py,sha256=hH4LLOkB4jeyO3VDUWK0lNpMJNNt_cFYf23-HdhpSmE,10115 +dns/node.py,sha256=NGZa0AUMq-CNledJ6wn1Rx6TFYc703cH2OraLysoNWM,12663 +dns/opcode.py,sha256=I6JyuFUL0msja_BYm6bzXHfbbfqUod_69Ss4xcv8xWQ,2730 +dns/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +dns/query.py,sha256=_Ev7EivZNEpgrUiPIn4BVnDRFCizcayHHcBXt0Ju3As,56298 +dns/rcode.py,sha256=N6JjrIQjCdJy0boKIp8Hcky5tm__LSDscpDz3rE_sgU,4156 +dns/rdata.py,sha256=uk82eldqpWR8L2zp_CB8JG6wWWfK7zdYowWISfMC2XE,31022 +dns/rdataclass.py,sha256=TK4W4ywB1L_X7EZqk2Gmwnu7vdQpolQF5DtQWyNk5xo,2984 +dns/rdataset.py,sha256=BMNvGAzE4HfYHA-pnhsKwELfpr-saz73BzYwMucoKj0,16664 +dns/rdatatype.py,sha256=wgKWnu4mAbXnmG8wKHpV8dZHkhMqNeSsWWlWFo5HcDY,7448 +dns/renderer.py,sha256=5THf1iKql2JPL2sKZt2-b4zqHKfk_vlx0FEfPtMJysY,11254 +dns/resolver.py,sha256=FH_hiMeCdVYonIYmE3QqEWJKgHOOxlTcHS0dwd_loGY,73730 +dns/reversename.py,sha256=zoqXEbMZXm6R13nXbJHgTsf6L2C6uReODj6mqSHrTiE,3828 +dns/rrset.py,sha256=J-oQPEPJuKueLLiz1FN08P-ys9fjHhPWuwpDdrL4UTQ,9170 +dns/serial.py,sha256=-t5rPW-TcJwzBMfIJo7Tl-uDtaYtpqOfCVYx9dMaDCY,3606 +dns/set.py,sha256=hublMKCIhd9zp5Hz_fvQTwF-Ze28jn7mjqei6vTGWfs,9213 +dns/tokenizer.py,sha256=65vVkEeTuml3l2AT-NePE6Gt6ucDQNvSpeIVgMpP6G0,23583 +dns/transaction.py,sha256=UhwD6CLQI51dguuz__dxJS8V91vKAoqHdQDCBErJWxE,22589 +dns/tsig.py,sha256=I-Y-c3WMBX11bVioy5puFly2BhlpptUz82ikahxuh1c,11413 +dns/tsigkeyring.py,sha256=Z0xZemcU3XjZ9HlxBYv2E2PSuIhaFreqLDlD7HcmZDA,2633 +dns/ttl.py,sha256=Y4inc4bvkfKpogZn5i1n-tpg1CAjDJxH4_HvfeVjVsM,2977 +dns/update.py,sha256=y9d6LOO8xrUaH2UrZhy3ssnx8bJEsxqTArw5V8XqBRs,12243 +dns/version.py,sha256=GTecBDFJx8cKnGiCmxJhSVjk1EkqnuNVt4xailIi3sk,1926 +dns/versioned.py,sha256=3YQj8mzGmZEsjnuVJJjcWopVmDKYLhEj4hEGTLEwzco,11765 +dns/win32util.py,sha256=r9dOvC0Tq288vwPk-ngugsVpwB5YnfW22DaRv6TTPcU,8874 +dns/wire.py,sha256=vy0SolgECbO1UXB4dnhXhDeFKOJT29nQxXvSfKOgA5s,2830 +dns/xfr.py,sha256=aoW0UtvweaE0NV8cmzgMKLYQOa3hwJ3NudRuqjit4SU,13271 +dns/zone.py,sha256=lLAarSxPtpx4Sw29OQ0ifPshD4QauGu8RnPh2dEropA,52086 +dns/zonefile.py,sha256=Y9lm6I7n4eRS35CyclooiQ_jxiOs3pSyH_0uD4FQyag,27926 +dns/zonetypes.py,sha256=HrQNZxZ_gWLWI9dskix71msi9wkYK5pgrBBbPb1T74Y,690 +dns/dnssecalgs/__init__.py,sha256=OWvTadxZ3oF5PxVGodNimxBt_-3YUNTOSV62HrIb4PQ,4331 +dns/dnssecalgs/base.py,sha256=jlTV_nd1Nqkvqyf-FVHIccXKFrE2LL6GVu6AW8QUh2E,2513 +dns/dnssecalgs/cryptography.py,sha256=3uqMfRm-zCkJPOrxUqlu9CmdxIMy71dVor9eAHi0wZM,2425 +dns/dnssecalgs/dsa.py,sha256=DNO68g_lbG7_oKcDN8c2xuzYRPbLaZc9Ns7oQoa0Vbc,3564 +dns/dnssecalgs/ecdsa.py,sha256=RfvFKRNExsYgd5SoXXRxMHkoBeF2Gktkz2rOwObEYAY,3172 +dns/dnssecalgs/eddsa.py,sha256=7VGARpVUzIYRjPh0gFapTPFzmsK8WJDqDZDLw2KLc8w,1981 +dns/dnssecalgs/rsa.py,sha256=_tNABpr6iwd8STBEHYIXfyLrgBpRNCj8K0UQj32_kOU,3622 +dns/quic/__init__.py,sha256=S5_2UuYzSU_LLtrLAf8DHh3KqNF2YHeKJ_-Wv991WlI,2272 +dns/quic/_asyncio.py,sha256=dnABPz5f-JOJsA7D_BdPfuyzpkL_87AaY4CUcmgNj-g,9870 +dns/quic/_common.py,sha256=koWf6rq9_gUorIOV60QZKAHwZF5MuSgQvBznzA5rGzk,10857 +dns/quic/_sync.py,sha256=QF-dW19NwiDW_BDoJZkSQmHz2uEpfgedsUKTPc0JAio,10436 +dns/quic/_trio.py,sha256=01HH4_hU1VRx-BWXl8bQo4-LZem_eKRBNy6RolTZZXY,9248 +dns/rdtypes/__init__.py,sha256=NYizfGglJfhqt_GMtSSXf7YQXIEHHCiJ_Y_qaLVeiOI,1073 +dns/rdtypes/dnskeybase.py,sha256=FoDllfa9Pz2j2rf45VyUUYUsIt3kjjrwDy6LxrlPb5s,2856 +dns/rdtypes/dsbase.py,sha256=I85Aps1lBsiItdqGpsNY1O8icosfPtkWjiUn1J1lLUQ,3427 +dns/rdtypes/euibase.py,sha256=1yKWOM4xBwLLIFFfEj7M9JMankO2l8ljxhG-5OOxXDg,2618 +dns/rdtypes/mxbase.py,sha256=DzjbiKoAAgpqbhwMBIFGA081jR5_doqGAq-kLvy2mns,3196 +dns/rdtypes/nsbase.py,sha256=tueXVV6E8lelebOmrmoOPq47eeRvOpsxHVXH4cOFxcs,2323 +dns/rdtypes/svcbbase.py,sha256=YOH3Wz3fp5GQjdTF7hU-1ys9iDkYEC5p4d0F32ivv5g,17612 +dns/rdtypes/tlsabase.py,sha256=pIiWem6sF4IwyyKmyqx5xg55IG0w3K9r502Yx8PdziA,2596 +dns/rdtypes/txtbase.py,sha256=Dt9ptWSWtnq0Qwlni6IT6YUz_DCixQDDUl5d4P_AfqY,3696 +dns/rdtypes/util.py,sha256=c3eLaucwuxXZjXWuNyCGKzwltgub4AjT4uLVytEuxSk,9017 +dns/rdtypes/ANY/AFSDB.py,sha256=k75wMwreF1DAfDymu4lHh16BUx7ulVP3PLeQBZnkurY,1661 +dns/rdtypes/ANY/AMTRELAY.py,sha256=19jfS61mT1CQT-8vf67ZylhDS9JVRVp4WCbFE-7l0jM,3381 +dns/rdtypes/ANY/AVC.py,sha256=SpsXYzlBirRWN0mGnQe0MdN6H8fvlgXPJX5PjOHnEak,1024 +dns/rdtypes/ANY/CAA.py,sha256=AHh59Is-4WiVWd26yovnPM3hXqKS-yx7IWfXSS0NZhE,2511 +dns/rdtypes/ANY/CDNSKEY.py,sha256=bJAdrBMsFHIJz8TF1AxZoNbdxVWBCRTG-bR_uR_r_G4,1225 +dns/rdtypes/ANY/CDS.py,sha256=Y9nIRUCAabztVLbxm2SXAdYapFemCOUuGh5JqroCDUs,1163 +dns/rdtypes/ANY/CERT.py,sha256=2Cu2LQM6-K4darqhHv1EM_blmpYpnrBIIX1GnL_rxKE,3533 +dns/rdtypes/ANY/CNAME.py,sha256=IHGGq2BDpeKUahTr1pvyBQgm0NGBI_vQ3Vs5mKTXO4w,1206 +dns/rdtypes/ANY/CSYNC.py,sha256=KkZ_rG6PfeL14il97nmJGWWmUGGS5o9nd2EqbJqOuYo,2439 +dns/rdtypes/ANY/DLV.py,sha256=J-pOrw5xXsDoaB9G0r6znlYXJtqtcqhsl1OXs6CPRU4,986 +dns/rdtypes/ANY/DNAME.py,sha256=yqXRtx4dAWwB4YCCv-qW6uaxeGhg2LPQ2uyKwWaMdXs,1150 +dns/rdtypes/ANY/DNSKEY.py,sha256=MD8HUVH5XXeAGOnFWg5aVz_w-2tXYwCeVXmzExhiIeQ,1223 +dns/rdtypes/ANY/DS.py,sha256=_gf8vk1O_uY8QXFjsfUw-bny-fm6e-QpCk3PT0JCyoM,995 +dns/rdtypes/ANY/EUI48.py,sha256=x0BkK0sY_tgzuCwfDYpw6tyuChHjjtbRpAgYhO0Y44o,1151 +dns/rdtypes/ANY/EUI64.py,sha256=1jCff2-SXHJLDnNDnMW8Cd_o-ok0P3x6zKy_bcCU5h4,1161 +dns/rdtypes/ANY/GPOS.py,sha256=u4qwiDBVoC7bsKfxDKGbPjnOKddpdjy2p1AhziDWcPw,4439 +dns/rdtypes/ANY/HINFO.py,sha256=D2WvjTsvD_XqT8BepBIyjPL2iYGMgYqb1VQa9ApO0qE,2217 +dns/rdtypes/ANY/HIP.py,sha256=c32Ewlk88schJ1nPOmT5BVR60ttIM-uH8I8LaRAkFOA,3226 +dns/rdtypes/ANY/ISDN.py,sha256=L4C2Rxrr4JJN17lmJRbZN8RhM_ujjwIskY_4V4Gd3r4,2723 +dns/rdtypes/ANY/L32.py,sha256=TMz2kdGCd0siiQZyiocVDCSnvkOdjhUuYRFyf8o622M,1286 +dns/rdtypes/ANY/L64.py,sha256=sb2BjuPA0PQt67nEyT9rBt759C9e6lH71d3EJHGGnww,1592 +dns/rdtypes/ANY/LOC.py,sha256=NZKIUJULZ3BcK1-gnb2Mk76Pc4UUZry47C5n9VBvhnk,11995 +dns/rdtypes/ANY/LP.py,sha256=wTsKIjtK6vh66qZRLSsiE0k54GO8ieVBGZH8dzVvFnE,1338 +dns/rdtypes/ANY/MX.py,sha256=qQk83idY0-SbRMDmB15JOpJi7cSyiheF-ALUD0Ev19E,995 +dns/rdtypes/ANY/NID.py,sha256=N7Xx4kXf3yVAocTlCXQeJ3BtiQNPFPQVdL1iMuyl5W4,1544 +dns/rdtypes/ANY/NINFO.py,sha256=bdL_-6Bejb2EH-xwR1rfSr_9E3SDXLTAnov7x2924FI,1041 +dns/rdtypes/ANY/NS.py,sha256=ThfaPalUlhbyZyNyvBM3k-7onl3eJKq5wCORrOGtkMM,995 +dns/rdtypes/ANY/NSEC.py,sha256=kicEYxcKaLBpV6C_M8cHdDaqBoiYl6EYtPvjyR6kExI,2465 +dns/rdtypes/ANY/NSEC3.py,sha256=696h-Zz30bmcT0n1rqoEtS5wqE6jIgsVGzaw5TfdGJo,4331 +dns/rdtypes/ANY/NSEC3PARAM.py,sha256=08p6NWS4DiLav1wOuPbxUxB9MtY2IPjfOMCtJwzzMuA,2635 +dns/rdtypes/ANY/OPENPGPKEY.py,sha256=Va0FGo_8vm1OeX62N5iDTWukAdLwrjTXIZeQ6oanE78,1851 +dns/rdtypes/ANY/OPT.py,sha256=W36RslT_Psp95OPUC70knumOYjKpaRHvGT27I-NV2qc,2561 +dns/rdtypes/ANY/PTR.py,sha256=5HcR1D77Otyk91vVY4tmqrfZfSxSXWyWvwIW-rIH5gc,997 +dns/rdtypes/ANY/RESINFO.py,sha256=Kf2NcKbkeI5gFE1bJfQNqQCaitYyXfV_9nQYl1luUZ0,1008 +dns/rdtypes/ANY/RP.py,sha256=8doJlhjYDYiAT6KNF1mAaemJ20YJFUPvit8LOx4-I-U,2174 +dns/rdtypes/ANY/RRSIG.py,sha256=O8vwzS7ldfaj_x8DypvEGFsDSb7al-D7OEnprA3QQoo,4922 +dns/rdtypes/ANY/RT.py,sha256=2t9q3FZQ28iEyceeU25KU2Ur0T5JxELAu8BTwfOUgVw,1013 +dns/rdtypes/ANY/SMIMEA.py,sha256=6yjHuVDfIEodBU9wxbCGCDZ5cWYwyY6FCk-aq2VNU0s,222 +dns/rdtypes/ANY/SOA.py,sha256=Cn8yrag1YvrvwivQgWg-KXmOCaVQVdFHSkFF77w-CE0,3145 +dns/rdtypes/ANY/SPF.py,sha256=rA3Srs9ECQx-37lqm7Zf7aYmMpp_asv4tGS8_fSQ-CU,1022 +dns/rdtypes/ANY/SSHFP.py,sha256=l6TZH2R0kytiZGWez_g-Lq94o5a2xMuwLKwUwsPMx5w,2530 +dns/rdtypes/ANY/TKEY.py,sha256=1ecTuBse2b4QPH2qmx3vn-gfPK0INcKXfxrIyAJxFHA,4927 +dns/rdtypes/ANY/TLSA.py,sha256=cytzebS3W7FFr9qeJ9gFSHq_bOwUk9aRVlXWHfnVrRs,218 +dns/rdtypes/ANY/TSIG.py,sha256=4fNQJSNWZXUKZejCciwQuUJtTw2g-YbPmqHrEj_pitg,4750 +dns/rdtypes/ANY/TXT.py,sha256=F1U9gIAhwXIV4UVT7CwOCEn_su6G1nJIdgWJsLktk20,1000 +dns/rdtypes/ANY/URI.py,sha256=dpcS8KwcJ2WJ7BkOp4CZYaUyRuw7U2S9GzvVwKUihQg,2921 +dns/rdtypes/ANY/WALLET.py,sha256=IaP2g7Nq26jWGKa8MVxvJjWXLQ0wrNR1IWJVyyMG8oU,219 +dns/rdtypes/ANY/X25.py,sha256=BzEM7uOY7CMAm7QN-dSLj-_LvgnnohwJDUjMstzwqYo,1942 +dns/rdtypes/ANY/ZONEMD.py,sha256=JQicv69EvUxh4FCT7eZSLzzU5L5brw_dSM65Um2t5lQ,2393 +dns/rdtypes/ANY/__init__.py,sha256=My5jT8T5bA66zBydmRSxkmDCFxwI81B4DBRA_S36IL8,1526 +dns/rdtypes/CH/A.py,sha256=-4G3ASZGj7oUlPfDxADibAB1WfTsZBavUO8ghDWarJ8,2212 +dns/rdtypes/CH/__init__.py,sha256=GD9YeDKb9VBDo-J5rrChX1MWEGyQXuR9Htnbhg_iYLc,923 +dns/rdtypes/IN/A.py,sha256=FfFn3SqbpneL9Ky63COP50V2ZFxqS1ldCKJh39Enwug,1814 +dns/rdtypes/IN/AAAA.py,sha256=AxrOlYy-1TTTWeQypDKeXrDCrdHGor0EKCE4fxzSQGo,1820 +dns/rdtypes/IN/APL.py,sha256=ppyFwn0KYMdyDzphxd0BUhgTmZv0QnDMRLjzQQM793U,5097 +dns/rdtypes/IN/DHCID.py,sha256=zRUh_EOxUPVpJjWY5m7taX8q4Oz5K70785ZtKv5OTCU,1856 +dns/rdtypes/IN/HTTPS.py,sha256=P-IjwcvDQMmtoBgsDHglXF7KgLX73G6jEDqCKsnaGpQ,220 +dns/rdtypes/IN/IPSECKEY.py,sha256=RyIy9K0Yt0uJRjdr6cj5S95ELHHbl--0xV-Qq9O3QQk,3290 +dns/rdtypes/IN/KX.py,sha256=K1JwItL0n5G-YGFCjWeh0C9DyDD8G8VzicsBeQiNAv0,1013 +dns/rdtypes/IN/NAPTR.py,sha256=SaOK-0hIYImwLtb5Hqewi-e49ykJaQiLNvk8ZzNoG7Q,3750 +dns/rdtypes/IN/NSAP.py,sha256=6YfWCVSIPTTBmRAzG8nVBj3LnohncXUhSFJHgp-TRdc,2163 +dns/rdtypes/IN/NSAP_PTR.py,sha256=iTxlV6fr_Y9lqivLLncSHxEhmFqz5UEElDW3HMBtuCU,1015 +dns/rdtypes/IN/PX.py,sha256=vHDNN2rfLObuUKwpYDIvpPB482BqXlHA-ZQpQn9Sb_E,2756 +dns/rdtypes/IN/SRV.py,sha256=a0zGaUwzvih_a4Q9BViUTFs7NZaCqgl7mls3-KRVHm8,2769 +dns/rdtypes/IN/SVCB.py,sha256=HeFmi2v01F00Hott8FlvQ4R7aPxFmT7RF-gt45R5K_M,218 +dns/rdtypes/IN/WKS.py,sha256=kErSG5AO2qIuot_hkMHnQuZB1_uUzUirNdqBoCp97rk,3652 +dns/rdtypes/IN/__init__.py,sha256=HbI8aw9HWroI6SgEvl8Sx6FdkDswCCXMbSRuJy5o8LQ,1083 +dnspython-2.7.0.dist-info/METADATA,sha256=1lF6uqZwb6RAQFYVtBkLic6pBCe9t14TQWtkK9U5eyY,5763 +dnspython-2.7.0.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87 +dnspython-2.7.0.dist-info/licenses/LICENSE,sha256=w-o_9WVLMpwZ07xfdIGvYjw93tSmFFWFSZ-EOtPXQc0,1526 +dnspython-2.7.0.dist-info/INSTALLER,sha256=9Fj27hpVKWMXZsBOPfrH05WeL2C7QXSjAHAgayzBJ8A,12 +dnspython-2.7.0.dist-info/RECORD,, diff --git a/.venv/lib/python3.11/site-packages/dnspython-2.7.0.dist-info/WHEEL b/.venv/lib/python3.11/site-packages/dnspython-2.7.0.dist-info/WHEEL new file mode 100644 index 0000000..cdd68a4 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dnspython-2.7.0.dist-info/WHEEL @@ -0,0 +1,4 @@ +Wheel-Version: 1.0 +Generator: hatchling 1.25.0 +Root-Is-Purelib: true +Tag: py3-none-any diff --git a/.venv/lib/python3.11/site-packages/dnspython-2.7.0.dist-info/licenses/LICENSE b/.venv/lib/python3.11/site-packages/dnspython-2.7.0.dist-info/licenses/LICENSE new file mode 100644 index 0000000..390a726 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/dnspython-2.7.0.dist-info/licenses/LICENSE @@ -0,0 +1,35 @@ +ISC License + +Copyright (C) Dnspython Contributors + +Permission to use, copy, modify, and/or distribute this software for +any purpose with or without fee is hereby granted, provided that the +above copyright notice and this permission notice appear in all +copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL +WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE +AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL +DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR +PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THIS SOFTWARE. + + + +Copyright (C) 2001-2017 Nominum, Inc. +Copyright (C) Google Inc. + +Permission to use, copy, modify, and distribute this software and its +documentation for any purpose with or without fee is hereby granted, +provided that the above copyright notice and this permission notice +appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. diff --git a/.venv/lib/python3.11/site-packages/email_validator-2.2.0.dist-info/INSTALLER b/.venv/lib/python3.11/site-packages/email_validator-2.2.0.dist-info/INSTALLER new file mode 100644 index 0000000..c2a1515 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/email_validator-2.2.0.dist-info/INSTALLER @@ -0,0 +1 @@ +Poetry 2.1.3 \ No newline at end of file diff --git a/.venv/lib/python3.11/site-packages/email_validator-2.2.0.dist-info/LICENSE b/.venv/lib/python3.11/site-packages/email_validator-2.2.0.dist-info/LICENSE new file mode 100644 index 0000000..122e7a7 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/email_validator-2.2.0.dist-info/LICENSE @@ -0,0 +1,27 @@ +This is free and unencumbered software released into the public +domain. + +Anyone is free to copy, modify, publish, use, compile, sell, or +distribute this software, either in source code form or as a +compiled binary, for any purpose, commercial or non-commercial, +and by any means. + +In jurisdictions that recognize copyright laws, the author or +authors of this software dedicate any and all copyright +interest in the software to the public domain. We make this +dedication for the benefit of the public at large and to the +detriment of our heirs and successors. We intend this +dedication to be an overt act of relinquishment in perpetuity +of all present and future rights to this software under +copyright law. + +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 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. + +For more information, please refer to diff --git a/.venv/lib/python3.11/site-packages/email_validator-2.2.0.dist-info/METADATA b/.venv/lib/python3.11/site-packages/email_validator-2.2.0.dist-info/METADATA new file mode 100644 index 0000000..7f7350e --- /dev/null +++ b/.venv/lib/python3.11/site-packages/email_validator-2.2.0.dist-info/METADATA @@ -0,0 +1,465 @@ +Metadata-Version: 2.1 +Name: email_validator +Version: 2.2.0 +Summary: A robust email address syntax and deliverability validation library. +Home-page: https://github.com/JoshData/python-email-validator +Author: Joshua Tauberer +Author-email: jt@occams.info +License: Unlicense +Keywords: email address validator +Classifier: Development Status :: 5 - Production/Stable +Classifier: Intended Audience :: Developers +Classifier: License :: OSI Approved :: The Unlicense (Unlicense) +Classifier: Programming Language :: Python :: 3 +Classifier: Programming Language :: Python :: 3.8 +Classifier: Programming Language :: Python :: 3.9 +Classifier: Programming Language :: Python :: 3.10 +Classifier: Programming Language :: Python :: 3.11 +Classifier: Programming Language :: Python :: 3.12 +Classifier: Topic :: Software Development :: Libraries :: Python Modules +Requires-Python: >=3.8 +Description-Content-Type: text/markdown +License-File: LICENSE +Requires-Dist: dnspython >=2.0.0 +Requires-Dist: idna >=2.0.0 + +email-validator: Validate Email Addresses +========================================= + +A robust email address syntax and deliverability validation library for +Python 3.8+ by [Joshua Tauberer](https://joshdata.me). + +This library validates that a string is of the form `name@example.com` +and optionally checks that the domain name is set up to receive email. +This is the sort of validation you would want when you are identifying +users by their email address like on a registration form. + +Key features: + +* Checks that an email address has the correct syntax --- great for + email-based registration/login forms or validing data. +* Gives friendly English error messages when validation fails that you + can display to end-users. +* Checks deliverability (optional): Does the domain name resolve? + (You can override the default DNS resolver to add query caching.) +* Supports internationalized domain names (like `@ツ.life`), + internationalized local parts (like `ツ@example.com`), + and optionally parses display names (e.g. `"My Name" `). +* Rejects addresses with invalid or unsafe Unicode characters, + obsolete email address syntax that you'd find unexpected, + special use domain names like `@localhost`, + and domains without a dot by default. + This is an opinionated library! +* Normalizes email addresses (important for internationalized + and quoted-string addresses! see below). +* Python type annotations are used. + +This is an opinionated library. You should definitely also consider using +the less-opinionated [pyIsEmail](https://github.com/michaelherold/pyIsEmail) +if it works better for you. + +[![Build Status](https://github.com/JoshData/python-email-validator/actions/workflows/test_and_build.yaml/badge.svg)](https://github.com/JoshData/python-email-validator/actions/workflows/test_and_build.yaml) + +View the [CHANGELOG / Release Notes](CHANGELOG.md) for the version history of changes in the library. Occasionally this README is ahead of the latest published package --- see the CHANGELOG for details. + +--- + +Installation +------------ + +This package [is on PyPI](https://pypi.org/project/email-validator/), so: + +```sh +pip install email-validator +``` + +(You might need to use `pip3` depending on your local environment.) + +Quick Start +----------- + +If you're validating a user's email address before creating a user +account in your application, you might do this: + +```python +from email_validator import validate_email, EmailNotValidError + +email = "my+address@example.org" + +try: + + # Check that the email address is valid. Turn on check_deliverability + # for first-time validations like on account creation pages (but not + # login pages). + emailinfo = validate_email(email, check_deliverability=False) + + # After this point, use only the normalized form of the email address, + # especially before going to a database query. + email = emailinfo.normalized + +except EmailNotValidError as e: + + # The exception message is human-readable explanation of why it's + # not a valid (or deliverable) email address. + print(str(e)) +``` + +This validates the address and gives you its normalized form. You should +**put the normalized form in your database** and always normalize before +checking if an address is in your database. When using this in a login form, +set `check_deliverability` to `False` to avoid unnecessary DNS queries. + +Usage +----- + +### Overview + +The module provides a function `validate_email(email_address)` which +takes an email address and: + +- Raises a `EmailNotValidError` with a helpful, human-readable error + message explaining why the email address is not valid, or +- Returns an object with a normalized form of the email address (which + you should use!) and other information about it. + +When an email address is not valid, `validate_email` raises either an +`EmailSyntaxError` if the form of the address is invalid or an +`EmailUndeliverableError` if the domain name fails DNS checks. Both +exception classes are subclasses of `EmailNotValidError`, which in turn +is a subclass of `ValueError`. + +But when an email address is valid, an object is returned containing +a normalized form of the email address (which you should use!) and +other information. + +The validator doesn't, by default, permit obsoleted forms of email addresses +that no one uses anymore even though they are still valid and deliverable, since +they will probably give you grief if you're using email for login. (See +later in the document about how to allow some obsolete forms.) + +The validator optionally checks that the domain name in the email address has +a DNS MX record indicating that it can receive email. (Except a Null MX record. +If there is no MX record, a fallback A/AAAA-record is permitted, unless +a reject-all SPF record is present.) DNS is slow and sometimes unavailable or +unreliable, so consider whether these checks are useful for your use case and +turn them off if they aren't. +There is nothing to be gained by trying to actually contact an SMTP server, so +that's not done here. For privacy, security, and practicality reasons, servers +are good at not giving away whether an address is +deliverable or not: email addresses that appear to accept mail at first +can bounce mail after a delay, and bounced mail may indicate a temporary +failure of a good email address (sometimes an intentional failure, like +greylisting). + +### Options + +The `validate_email` function also accepts the following keyword arguments +(defaults are as shown below): + +`check_deliverability=True`: If true, DNS queries are made to check that the domain name in the email address (the part after the @-sign) can receive mail, as described above. Set to `False` to skip this DNS-based check. It is recommended to pass `False` when performing validation for login pages (but not account creation pages) since re-validation of a previously validated domain in your database by querying DNS at every login is probably undesirable. You can also set `email_validator.CHECK_DELIVERABILITY` to `False` to turn this off for all calls by default. + +`dns_resolver=None`: Pass an instance of [dns.resolver.Resolver](https://dnspython.readthedocs.io/en/latest/resolver-class.html) to control the DNS resolver including setting a timeout and [a cache](https://dnspython.readthedocs.io/en/latest/resolver-caching.html). The `caching_resolver` function shown below is a helper function to construct a dns.resolver.Resolver with a [LRUCache](https://dnspython.readthedocs.io/en/latest/resolver-caching.html#dns.resolver.LRUCache). Reuse the same resolver instance across calls to `validate_email` to make use of the cache. + +`test_environment=False`: If `True`, DNS-based deliverability checks are disabled and `test` and `**.test` domain names are permitted (see below). You can also set `email_validator.TEST_ENVIRONMENT` to `True` to turn it on for all calls by default. + +`allow_smtputf8=True`: Set to `False` to prohibit internationalized addresses that would + require the + [SMTPUTF8](https://tools.ietf.org/html/rfc6531) extension. You can also set `email_validator.ALLOW_SMTPUTF8` to `False` to turn it off for all calls by default. + +`allow_quoted_local=False`: Set to `True` to allow obscure and potentially problematic email addresses in which the part of the address before the @-sign contains spaces, @-signs, or other surprising characters when the local part is surrounded in quotes (so-called quoted-string local parts). In the object returned by `validate_email`, the normalized local part removes any unnecessary backslash-escaping and even removes the surrounding quotes if the address would be valid without them. You can also set `email_validator.ALLOW_QUOTED_LOCAL` to `True` to turn this on for all calls by default. + +`allow_domain_literal=False`: Set to `True` to allow bracketed IPv4 and "IPv6:"-prefixd IPv6 addresses in the domain part of the email address. No deliverability checks are performed for these addresses. In the object returned by `validate_email`, the normalized domain will use the condensed IPv6 format, if applicable. The object's `domain_address` attribute will hold the parsed `ipaddress.IPv4Address` or `ipaddress.IPv6Address` object if applicable. You can also set `email_validator.ALLOW_DOMAIN_LITERAL` to `True` to turn this on for all calls by default. + +`allow_display_name=False`: Set to `True` to allow a display name and bracketed address in the input string, like `My Name `. It's implemented in the spirit but not the letter of RFC 5322 3.4, so it may be stricter or more relaxed than what you want. The display name, if present, is provided in the returned object's `display_name` field after being unquoted and unescaped. You can also set `email_validator.ALLOW_DISPLAY_NAME` to `True` to turn this on for all calls by default. + +`allow_empty_local=False`: Set to `True` to allow an empty local part (i.e. + `@example.com`), e.g. for validating Postfix aliases. + + +### DNS timeout and cache + +When validating many email addresses or to control the timeout (the default is 15 seconds), create a caching [dns.resolver.Resolver](https://dnspython.readthedocs.io/en/latest/resolver-class.html) to reuse in each call. The `caching_resolver` function returns one easily for you: + +```python +from email_validator import validate_email, caching_resolver + +resolver = caching_resolver(timeout=10) + +while True: + validate_email(email, dns_resolver=resolver) +``` + +### Test addresses + +This library rejects email addresses that use the [Special Use Domain Names](https://www.iana.org/assignments/special-use-domain-names/special-use-domain-names.xhtml) `invalid`, `localhost`, `test`, and some others by raising `EmailSyntaxError`. This is to protect your system from abuse: You probably don't want a user to be able to cause an email to be sent to `localhost` (although they might be able to still do so via a malicious MX record). However, in your non-production test environments you may want to use `@test` or `@myname.test` email addresses. There are three ways you can allow this: + +1. Add `test_environment=True` to the call to `validate_email` (see above). +2. Set `email_validator.TEST_ENVIRONMENT` to `True` globally. +3. Remove the special-use domain name that you want to use from `email_validator.SPECIAL_USE_DOMAIN_NAMES`, e.g.: + +```python +import email_validator +email_validator.SPECIAL_USE_DOMAIN_NAMES.remove("test") +``` + +It is tempting to use `@example.com/net/org` in tests. They are *not* in this library's `SPECIAL_USE_DOMAIN_NAMES` list so you can, but shouldn't, use them. These domains are reserved to IANA for use in documentation so there is no risk of accidentally emailing someone at those domains. But beware that this library will nevertheless reject these domain names if DNS-based deliverability checks are not disabled because these domains do not resolve to domains that accept email. In tests, consider using your own domain name or `@test` or `@myname.test` instead. + +Internationalized email addresses +--------------------------------- + +The email protocol SMTP and the domain name system DNS have historically +only allowed English (ASCII) characters in email addresses and domain names, +respectively. Each has adapted to internationalization in a separate +way, creating two separate aspects to email address internationalization. + +(If your mail submission library doesn't support Unicode at all, then +immediately prior to mail submission you must replace the email address with +its ASCII-ized form. This library gives you back the ASCII-ized form in the +`ascii_email` field in the returned object.) + +### Internationalized domain names (IDN) + +The first is [internationalized domain names (RFC +5891)](https://tools.ietf.org/html/rfc5891), a.k.a IDNA 2008. The DNS +system has not been updated with Unicode support. Instead, internationalized +domain names are converted into a special IDNA ASCII "[Punycode](https://www.rfc-editor.org/rfc/rfc3492.txt)" +form starting with `xn--`. When an email address has non-ASCII +characters in its domain part, the domain part is replaced with its IDNA +ASCII equivalent form in the process of mail transmission. Your mail +submission library probably does this for you transparently. ([Compliance +around the web is not very good though](http://archives.miloush.net/michkap/archive/2012/02/27/10273315.html).) This library conforms to IDNA 2008 +using the [idna](https://github.com/kjd/idna) module by Kim Davies. + +### Internationalized local parts + +The second sort of internationalization is internationalization in the +*local* part of the address (before the @-sign). In non-internationalized +email addresses, only English letters, numbers, and some punctuation +(`._!#$%&'^``*+-=~/?{|}`) are allowed. In internationalized email address +local parts, a wider range of Unicode characters are allowed. + +Email addresses with these non-ASCII characters require that your mail +submission library and all the mail servers along the route to the destination, +including your own outbound mail server, all support the +[SMTPUTF8 (RFC 6531)](https://tools.ietf.org/html/rfc6531) extension. +Support for SMTPUTF8 varies. If you know ahead of time that SMTPUTF8 is not +supported by your mail submission stack, then you must filter out addresses that +require SMTPUTF8 using the `allow_smtputf8=False` keyword argument (see above). +This will cause the validation function to raise a `EmailSyntaxError` if +delivery would require SMTPUTF8. If you do not set `allow_smtputf8=False`, +you can also check the value of the `smtputf8` field in the returned object. + +### Unsafe Unicode characters are rejected + +A surprisingly large number of Unicode characters are not safe to display, +especially when the email address is concatenated with other text, so this +library tries to protect you by not permitting reserved, non-, private use, +formatting (which can be used to alter the display order of characters), +whitespace, and control characters, and combining characters +as the first character of the local part and the domain name (so that they +cannot combine with something outside of the email address string or with +the @-sign). See https://qntm.org/safe and https://trojansource.codes/ +for relevant prior work. (Other than whitespace, these are checks that +you should be applying to nearly all user inputs in a security-sensitive +context.) This does not guard against the well known problem that many +Unicode characters look alike, which can be used to fool humans reading +displayed text. + + +Normalization +------------- + +### Unicode Normalization + +The use of Unicode in email addresses introduced a normalization +problem. Different Unicode strings can look identical and have the same +semantic meaning to the user. The `normalized` field returned on successful +validation provides the correctly normalized form of the given email +address. + +For example, the CJK fullwidth Latin letters are considered semantically +equivalent in domain names to their ASCII counterparts. This library +normalizes them to their ASCII counterparts (as required by IDNA): + +```python +emailinfo = validate_email("me@Domain.com") +print(emailinfo.normalized) +print(emailinfo.ascii_email) +# prints "me@domain.com" twice +``` + +Because an end-user might type their email address in different (but +equivalent) un-normalized forms at different times, you ought to +replace what they enter with the normalized form immediately prior to +going into your database (during account creation), querying your database +(during login), or sending outbound mail. + +The normalizations include lowercasing the domain part of the email +address (domain names are case-insensitive), [Unicode "NFC" +normalization](https://en.wikipedia.org/wiki/Unicode_equivalence) of the +whole address (which turns characters plus [combining +characters](https://en.wikipedia.org/wiki/Combining_character) into +precomposed characters where possible, replacement of [fullwidth and +halfwidth +characters](https://en.wikipedia.org/wiki/Halfwidth_and_fullwidth_forms) +in the domain part, possibly other +[UTS46](http://unicode.org/reports/tr46) mappings on the domain part, +and conversion from Punycode to Unicode characters. + +Normalization may change the characters in the email address and the +length of the email address, such that a string might be a valid address +before normalization but invalid after, or vice versa. This library only +permits addresses that are valid both before and after normalization. + +(See [RFC 6532 (internationalized email) section +3.1](https://tools.ietf.org/html/rfc6532#section-3.1) and [RFC 5895 +(IDNA 2008) section 2](http://www.ietf.org/rfc/rfc5895.txt).) + +### Other Normalization + +Normalization is also applied to quoted-string local parts and domain +literal IPv6 addresses if you have allowed them by the `allow_quoted_local` +and `allow_domain_literal` options. In quoted-string local parts, unnecessary +backslash escaping is removed and even the surrounding quotes are removed if +they are unnecessary. For IPv6 domain literals, the IPv6 address is +normalized to condensed form. [RFC 2142](https://datatracker.ietf.org/doc/html/rfc2142) +also requires lowercase normalization for some specific mailbox names like `postmaster@`. + + +Examples +-------- + +For the email address `test@joshdata.me`, the returned object is: + +```python +ValidatedEmail( + normalized='test@joshdata.me', + local_part='test', + domain='joshdata.me', + ascii_email='test@joshdata.me', + ascii_local_part='test', + ascii_domain='joshdata.me', + smtputf8=False) +``` + +For the fictitious but valid address `example@ツ.ⓁⒾⒻⒺ`, which has an +internationalized domain but ASCII local part, the returned object is: + +```python +ValidatedEmail( + normalized='example@ツ.life', + local_part='example', + domain='ツ.life', + ascii_email='example@xn--bdk.life', + ascii_local_part='example', + ascii_domain='xn--bdk.life', + smtputf8=False) + +``` + +Note that `normalized` and other fields provide a normalized form of the +email address, domain name, and (in other cases) local part (see earlier +discussion of normalization), which you should use in your database. + +Calling `validate_email` with the ASCII form of the above email address, +`example@xn--bdk.life`, returns the exact same information (i.e., the +`normalized` field always will contain Unicode characters, not Punycode). + +For the fictitious address `ツ-test@joshdata.me`, which has an +internationalized local part, the returned object is: + +```python +ValidatedEmail( + normalized='ツ-test@joshdata.me', + local_part='ツ-test', + domain='joshdata.me', + ascii_email=None, + ascii_local_part=None, + ascii_domain='joshdata.me', + smtputf8=True) +``` + +Now `smtputf8` is `True` and `ascii_email` is `None` because the local +part of the address is internationalized. The `local_part` and `normalized` fields +return the normalized form of the address. + +Return value +------------ + +When an email address passes validation, the fields in the returned object +are: + +| Field | Value | +| -----:|-------| +| `normalized` | The normalized form of the email address that you should put in your database. This combines the `local_part` and `domain` fields (see below). | +| `ascii_email` | If set, an ASCII-only form of the normalized email address by replacing the domain part with [IDNA](https://tools.ietf.org/html/rfc5891) [Punycode](https://www.rfc-editor.org/rfc/rfc3492.txt). This field will be present when an ASCII-only form of the email address exists (including if the email address is already ASCII). If the local part of the email address contains internationalized characters, `ascii_email` will be `None`. If set, it merely combines `ascii_local_part` and `ascii_domain`. | +| `local_part` | The normalized local part of the given email address (before the @-sign). Normalization includes Unicode NFC normalization and removing unnecessary quoted-string quotes and backslashes. If `allow_quoted_local` is True and the surrounding quotes are necessary, the quotes _will_ be present in this field. | +| `ascii_local_part` | If set, the local part, which is composed of ASCII characters only. | +| `domain` | The canonical internationalized Unicode form of the domain part of the email address. If the returned string contains non-ASCII characters, either the [SMTPUTF8](https://tools.ietf.org/html/rfc6531) feature of your mail relay will be required to transmit the message or else the email address's domain part must be converted to IDNA ASCII first: Use `ascii_domain` field instead. | +| `ascii_domain` | The [IDNA](https://tools.ietf.org/html/rfc5891) [Punycode](https://www.rfc-editor.org/rfc/rfc3492.txt)-encoded form of the domain part of the given email address, as it would be transmitted on the wire. | +| `domain_address` | If domain literals are allowed and if the email address contains one, an `ipaddress.IPv4Address` or `ipaddress.IPv6Address` object. | +| `display_name` | If no display name was present and angle brackets do not surround the address, this will be `None`; otherwise, it will be set to the display name, or the empty string if there were angle brackets but no display name. If the display name was quoted, it will be unquoted and unescaped. | +| `smtputf8` | A boolean indicating that the [SMTPUTF8](https://tools.ietf.org/html/rfc6531) feature of your mail relay will be required to transmit messages to this address because the local part of the address has non-ASCII characters (the local part cannot be IDNA-encoded). If `allow_smtputf8=False` is passed as an argument, this flag will always be false because an exception is raised if it would have been true. | +| `mx` | A list of (priority, domain) tuples of MX records specified in the DNS for the domain (see [RFC 5321 section 5](https://tools.ietf.org/html/rfc5321#section-5)). May be `None` if the deliverability check could not be completed because of a temporary issue like a timeout. | +| `mx_fallback_type` | `None` if an `MX` record is found. If no MX records are actually specified in DNS and instead are inferred, through an obsolete mechanism, from A or AAAA records, the value is the type of DNS record used instead (`A` or `AAAA`). May be `None` if the deliverability check could not be completed because of a temporary issue like a timeout. | +| `spf` | Any SPF record found while checking deliverability. Only set if the SPF record is queried. | + +Assumptions +----------- + +By design, this validator does not pass all email addresses that +strictly conform to the standards. Many email address forms are obsolete +or likely to cause trouble: + +* The validator assumes the email address is intended to be + usable on the public Internet. The domain part + of the email address must be a resolvable domain name + (see the deliverability checks described above). + Most [Special Use Domain Names](https://www.iana.org/assignments/special-use-domain-names/special-use-domain-names.xhtml) + and their subdomains, as well as + domain names without a `.`, are rejected as a syntax error + (except see the `test_environment` parameter above). +* Obsolete email syntaxes are rejected: + The unusual ["(comment)" syntax](https://github.com/JoshData/python-email-validator/issues/77) + is rejected. Extremely old obsolete syntaxes are + rejected. Quoted-string local parts and domain-literal addresses + are rejected by default, but there are options to allow them (see above). + No one uses these forms anymore, and I can't think of any reason why anyone + using this library would need to accept them. + +Testing +------- + +Tests can be run using + +```sh +pip install -r test_requirements.txt +make test +``` + +Tests run with mocked DNS responses. When adding or changing tests, temporarily turn on the `BUILD_MOCKED_DNS_RESPONSE_DATA` flag in `tests/mocked_dns_responses.py` to re-build the database of mocked responses from live queries. + +For Project Maintainers +----------------------- + +The package is distributed as a universal wheel and as a source package. + +To release: + +* Update CHANGELOG.md. +* Update the version number in `email_validator/version.py`. +* Make & push a commit with the new version number and make sure tests pass. +* Make & push a tag (see command below). +* Make a release at https://github.com/JoshData/python-email-validator/releases/new. +* Publish a source and wheel distribution to pypi (see command below). + +```sh +git tag v$(cat email_validator/version.py | sed "s/.* = //" | sed 's/"//g') +git push --tags +./release_to_pypi.sh +``` + +License +------- + +This project is free of any copyright restrictions per the [Unlicense](https://unlicense.org/). (Prior to Feb. 4, 2024, the project was made available under the terms of the [CC0 1.0 Universal public domain dedication](http://creativecommons.org/publicdomain/zero/1.0/).) See [LICENSE](LICENSE) and [CONTRIBUTING.md](CONTRIBUTING.md). diff --git a/.venv/lib/python3.11/site-packages/email_validator-2.2.0.dist-info/RECORD b/.venv/lib/python3.11/site-packages/email_validator-2.2.0.dist-info/RECORD new file mode 100644 index 0000000..80fbd69 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/email_validator-2.2.0.dist-info/RECORD @@ -0,0 +1,17 @@ +../../../bin/email_validator,sha256=t3_96dZ5xDR8AtGQr08UxJ94AMTAMFh3OBnJAt6oJiU,291 +email_validator/__init__.py,sha256=g-TFM6vzpEt4dMG93giGlS343yXXXIy7EOLNFEn6DfA,4360 +email_validator/__main__.py,sha256=TIvjaG_OSFRciH0J2pnEJEdX3uJy3ZgocmasEqh9EEI,2243 +email_validator/deliverability.py,sha256=e6eODNSaLMiM29EZ3bWYDFkQDlMIdicBaykjYQJwYig,7222 +email_validator/exceptions_types.py,sha256=yLxXqwtl5dXa-938K7skLP1pMFgi0oovzCs74mX7TGs,6024 +email_validator/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +email_validator/rfc_constants.py,sha256=KVUshwIu699cle3UzDU2_fFBSQOO7p91Z_hrlNANtGM,2767 +email_validator/syntax.py,sha256=Mo5KLgEsbQcvNzs8zO5QbhzUK4MAjL9yJFDpwsF12lY,36005 +email_validator/validate_email.py,sha256=YUXY5Sv_mQ7Vuu_AmGdISza8v-VaABnNMLrlWv8EIl4,8401 +email_validator/version.py,sha256=DKk-1b-rZsJFxFi1JoJ7TmEvIEQ0rf-C9HAZWwvjuM0,22 +email_validator-2.2.0.dist-info/LICENSE,sha256=ZyF5dS4QkTSj-yvdB4Cyn9t6A5dPD1hqE66tUSlWLUw,1212 +email_validator-2.2.0.dist-info/METADATA,sha256=vELkkg-p-qMuqNFX6uzDmMaruT7Pe5PDAQexHLAB4XM,25741 +email_validator-2.2.0.dist-info/WHEEL,sha256=cpQTJ5IWu9CdaPViMhC9YzF8gZuS5-vlfoFihTBC86A,91 +email_validator-2.2.0.dist-info/entry_points.txt,sha256=zRM_6bNIUSHTbNx5u6M3nK1MAguvryrc9hICC6HyrBg,66 +email_validator-2.2.0.dist-info/top_level.txt,sha256=fYDOSWFZke46ut7WqdOAJjjhlpPYAaOwOwIsh3s8oWI,16 +email_validator-2.2.0.dist-info/INSTALLER,sha256=9Fj27hpVKWMXZsBOPfrH05WeL2C7QXSjAHAgayzBJ8A,12 +email_validator-2.2.0.dist-info/RECORD,, diff --git a/.venv/lib/python3.11/site-packages/email_validator-2.2.0.dist-info/WHEEL b/.venv/lib/python3.11/site-packages/email_validator-2.2.0.dist-info/WHEEL new file mode 100644 index 0000000..9086d27 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/email_validator-2.2.0.dist-info/WHEEL @@ -0,0 +1,5 @@ +Wheel-Version: 1.0 +Generator: setuptools (70.1.0) +Root-Is-Purelib: true +Tag: py3-none-any + diff --git a/.venv/lib/python3.11/site-packages/email_validator-2.2.0.dist-info/entry_points.txt b/.venv/lib/python3.11/site-packages/email_validator-2.2.0.dist-info/entry_points.txt new file mode 100644 index 0000000..03c6e23 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/email_validator-2.2.0.dist-info/entry_points.txt @@ -0,0 +1,2 @@ +[console_scripts] +email_validator = email_validator.__main__:main diff --git a/.venv/lib/python3.11/site-packages/email_validator-2.2.0.dist-info/top_level.txt b/.venv/lib/python3.11/site-packages/email_validator-2.2.0.dist-info/top_level.txt new file mode 100644 index 0000000..798fd5e --- /dev/null +++ b/.venv/lib/python3.11/site-packages/email_validator-2.2.0.dist-info/top_level.txt @@ -0,0 +1 @@ +email_validator diff --git a/.venv/lib/python3.11/site-packages/email_validator/__init__.py b/.venv/lib/python3.11/site-packages/email_validator/__init__.py new file mode 100644 index 0000000..626aa00 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/email_validator/__init__.py @@ -0,0 +1,101 @@ +from typing import TYPE_CHECKING + +# Export the main method, helper methods, and the public data types. +from .exceptions_types import ValidatedEmail, EmailNotValidError, \ + EmailSyntaxError, EmailUndeliverableError +from .validate_email import validate_email +from .version import __version__ + +__all__ = ["validate_email", + "ValidatedEmail", "EmailNotValidError", + "EmailSyntaxError", "EmailUndeliverableError", + "caching_resolver", "__version__"] + +if TYPE_CHECKING: + from .deliverability import caching_resolver +else: + def caching_resolver(*args, **kwargs): + # Lazy load `deliverability` as it is slow to import (due to dns.resolver) + from .deliverability import caching_resolver + + return caching_resolver(*args, **kwargs) + + +# These global attributes are a part of the library's API and can be +# changed by library users. + +# Default values for keyword arguments. + +ALLOW_SMTPUTF8 = True +ALLOW_QUOTED_LOCAL = False +ALLOW_DOMAIN_LITERAL = False +ALLOW_DISPLAY_NAME = False +GLOBALLY_DELIVERABLE = True +CHECK_DELIVERABILITY = True +TEST_ENVIRONMENT = False +DEFAULT_TIMEOUT = 15 # secs + +# IANA Special Use Domain Names +# Last Updated 2021-09-21 +# https://www.iana.org/assignments/special-use-domain-names/special-use-domain-names.txt +# +# The domain names without dots would be caught by the check that the domain +# name in an email address must have a period, but this list will also catch +# subdomains of these domains, which are also reserved. +SPECIAL_USE_DOMAIN_NAMES = [ + # The "arpa" entry here is consolidated from a lot of arpa subdomains + # for private address (i.e. non-routable IP addresses like 172.16.x.x) + # reverse mapping, plus some other subdomains. Although RFC 6761 says + # that application software should not treat these domains as special, + # they are private-use domains and so cannot have globally deliverable + # email addresses, which is an assumption of this library, and probably + # all of arpa is similarly special-use, so we reject it all. + "arpa", + + # RFC 6761 says applications "SHOULD NOT" treat the "example" domains + # as special, i.e. applications should accept these domains. + # + # The domain "example" alone fails our syntax validation because it + # lacks a dot (we assume no one has an email address on a TLD directly). + # "@example.com/net/org" will currently fail DNS-based deliverability + # checks because IANA publishes a NULL MX for these domains, and + # "@mail.example[.com/net/org]" and other subdomains will fail DNS- + # based deliverability checks because IANA does not publish MX or A + # DNS records for these subdomains. + # "example", # i.e. "wwww.example" + # "example.com", + # "example.net", + # "example.org", + + # RFC 6761 says that applications are permitted to treat this domain + # as special and that DNS should return an immediate negative response, + # so we also immediately reject this domain, which also follows the + # purpose of the domain. + "invalid", + + # RFC 6762 says that applications "may" treat ".local" as special and + # that "name resolution APIs and libraries SHOULD recognize these names + # as special," and since ".local" has no global definition, we reject + # it, as we expect email addresses to be gloally routable. + "local", + + # RFC 6761 says that applications (like this library) are permitted + # to treat "localhost" as special, and since it cannot have a globally + # deliverable email address, we reject it. + "localhost", + + # RFC 7686 says "applications that do not implement the Tor protocol + # SHOULD generate an error upon the use of .onion and SHOULD NOT + # perform a DNS lookup. + "onion", + + # Although RFC 6761 says that application software should not treat + # these domains as special, it also warns users that the address may + # resolve differently in different systems, and therefore it cannot + # have a globally routable email address, which is an assumption of + # this library, so we reject "@test" and "@*.test" addresses, unless + # the test_environment keyword argument is given, to allow their use + # in application-level test environments. These domains will generally + # fail deliverability checks because "test" is not an actual TLD. + "test", +] diff --git a/.venv/lib/python3.11/site-packages/email_validator/__main__.py b/.venv/lib/python3.11/site-packages/email_validator/__main__.py new file mode 100644 index 0000000..52791c7 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/email_validator/__main__.py @@ -0,0 +1,60 @@ +# A command-line tool for testing. +# +# Usage: +# +# python -m email_validator test@example.org +# python -m email_validator < LIST_OF_ADDRESSES.TXT +# +# Provide email addresses to validate either as a command-line argument +# or in STDIN separated by newlines. Validation errors will be printed for +# invalid email addresses. When passing an email address on the command +# line, if the email address is valid, information about it will be printed. +# When using STDIN, no output will be given for valid email addresses. +# +# Keyword arguments to validate_email can be set in environment variables +# of the same name but upprcase (see below). + +import json +import os +import sys +from typing import Any, Dict, Optional + +from .validate_email import validate_email, _Resolver +from .deliverability import caching_resolver +from .exceptions_types import EmailNotValidError + + +def main(dns_resolver: Optional[_Resolver] = None) -> None: + # The dns_resolver argument is for tests. + + # Set options from environment variables. + options: Dict[str, Any] = {} + for varname in ('ALLOW_SMTPUTF8', 'ALLOW_QUOTED_LOCAL', 'ALLOW_DOMAIN_LITERAL', + 'GLOBALLY_DELIVERABLE', 'CHECK_DELIVERABILITY', 'TEST_ENVIRONMENT'): + if varname in os.environ: + options[varname.lower()] = bool(os.environ[varname]) + for varname in ('DEFAULT_TIMEOUT',): + if varname in os.environ: + options[varname.lower()] = float(os.environ[varname]) + + if len(sys.argv) == 1: + # Validate the email addresses pased line-by-line on STDIN. + dns_resolver = dns_resolver or caching_resolver() + for line in sys.stdin: + email = line.strip() + try: + validate_email(email, dns_resolver=dns_resolver, **options) + except EmailNotValidError as e: + print(f"{email} {e}") + else: + # Validate the email address passed on the command line. + email = sys.argv[1] + try: + result = validate_email(email, dns_resolver=dns_resolver, **options) + print(json.dumps(result.as_dict(), indent=2, sort_keys=True, ensure_ascii=False)) + except EmailNotValidError as e: + print(e) + + +if __name__ == "__main__": + main() diff --git a/.venv/lib/python3.11/site-packages/email_validator/deliverability.py b/.venv/lib/python3.11/site-packages/email_validator/deliverability.py new file mode 100644 index 0000000..90f5f9a --- /dev/null +++ b/.venv/lib/python3.11/site-packages/email_validator/deliverability.py @@ -0,0 +1,159 @@ +from typing import Any, List, Optional, Tuple, TypedDict + +import ipaddress + +from .exceptions_types import EmailUndeliverableError + +import dns.resolver +import dns.exception + + +def caching_resolver(*, timeout: Optional[int] = None, cache: Any = None, dns_resolver: Optional[dns.resolver.Resolver] = None) -> dns.resolver.Resolver: + if timeout is None: + from . import DEFAULT_TIMEOUT + timeout = DEFAULT_TIMEOUT + resolver = dns_resolver or dns.resolver.Resolver() + resolver.cache = cache or dns.resolver.LRUCache() + resolver.lifetime = timeout # timeout, in seconds + return resolver + + +DeliverabilityInfo = TypedDict("DeliverabilityInfo", { + "mx": List[Tuple[int, str]], + "mx_fallback_type": Optional[str], + "unknown-deliverability": str, +}, total=False) + + +def validate_email_deliverability(domain: str, domain_i18n: str, timeout: Optional[int] = None, dns_resolver: Optional[dns.resolver.Resolver] = None) -> DeliverabilityInfo: + # Check that the domain resolves to an MX record. If there is no MX record, + # try an A or AAAA record which is a deprecated fallback for deliverability. + # Raises an EmailUndeliverableError on failure. On success, returns a dict + # with deliverability information. + + # If no dns.resolver.Resolver was given, get dnspython's default resolver. + # Override the default resolver's timeout. This may affect other uses of + # dnspython in this process. + if dns_resolver is None: + from . import DEFAULT_TIMEOUT + if timeout is None: + timeout = DEFAULT_TIMEOUT + dns_resolver = dns.resolver.get_default_resolver() + dns_resolver.lifetime = timeout + elif timeout is not None: + raise ValueError("It's not valid to pass both timeout and dns_resolver.") + + deliverability_info: DeliverabilityInfo = {} + + try: + try: + # Try resolving for MX records (RFC 5321 Section 5). + response = dns_resolver.resolve(domain, "MX") + + # For reporting, put them in priority order and remove the trailing dot in the qnames. + mtas = sorted([(r.preference, str(r.exchange).rstrip('.')) for r in response]) + + # RFC 7505: Null MX (0, ".") records signify the domain does not accept email. + # Remove null MX records from the mtas list (but we've stripped trailing dots, + # so the 'exchange' is just "") so we can check if there are no non-null MX + # records remaining. + mtas = [(preference, exchange) for preference, exchange in mtas + if exchange != ""] + if len(mtas) == 0: # null MX only, if there were no MX records originally a NoAnswer exception would have occurred + raise EmailUndeliverableError(f"The domain name {domain_i18n} does not accept email.") + + deliverability_info["mx"] = mtas + deliverability_info["mx_fallback_type"] = None + + except dns.resolver.NoAnswer: + # If there was no MX record, fall back to an A or AAA record + # (RFC 5321 Section 5). Check A first since it's more common. + + # If the A/AAAA response has no Globally Reachable IP address, + # treat the response as if it were NoAnswer, i.e., the following + # address types are not allowed fallbacks: Private-Use, Loopback, + # Link-Local, and some other obscure ranges. See + # https://www.iana.org/assignments/iana-ipv4-special-registry/iana-ipv4-special-registry.xhtml + # https://www.iana.org/assignments/iana-ipv6-special-registry/iana-ipv6-special-registry.xhtml + # (Issue #134.) + def is_global_addr(address: Any) -> bool: + try: + ipaddr = ipaddress.ip_address(address) + except ValueError: + return False + return ipaddr.is_global + + try: + response = dns_resolver.resolve(domain, "A") + + if not any(is_global_addr(r.address) for r in response): + raise dns.resolver.NoAnswer # fall back to AAAA + + deliverability_info["mx"] = [(0, domain)] + deliverability_info["mx_fallback_type"] = "A" + + except dns.resolver.NoAnswer: + + # If there was no A record, fall back to an AAAA record. + # (It's unclear if SMTP servers actually do this.) + try: + response = dns_resolver.resolve(domain, "AAAA") + + if not any(is_global_addr(r.address) for r in response): + raise dns.resolver.NoAnswer + + deliverability_info["mx"] = [(0, domain)] + deliverability_info["mx_fallback_type"] = "AAAA" + + except dns.resolver.NoAnswer as e: + # If there was no MX, A, or AAAA record, then mail to + # this domain is not deliverable, although the domain + # name has other records (otherwise NXDOMAIN would + # have been raised). + raise EmailUndeliverableError(f"The domain name {domain_i18n} does not accept email.") from e + + # Check for a SPF (RFC 7208) reject-all record ("v=spf1 -all") which indicates + # no emails are sent from this domain (similar to a Null MX record + # but for sending rather than receiving). In combination with the + # absence of an MX record, this is probably a good sign that the + # domain is not used for email. + try: + response = dns_resolver.resolve(domain, "TXT") + for rec in response: + value = b"".join(rec.strings) + if value.startswith(b"v=spf1 "): + if value == b"v=spf1 -all": + raise EmailUndeliverableError(f"The domain name {domain_i18n} does not send email.") + except dns.resolver.NoAnswer: + # No TXT records means there is no SPF policy, so we cannot take any action. + pass + + except dns.resolver.NXDOMAIN as e: + # The domain name does not exist --- there are no records of any sort + # for the domain name. + raise EmailUndeliverableError(f"The domain name {domain_i18n} does not exist.") from e + + except dns.resolver.NoNameservers: + # All nameservers failed to answer the query. This might be a problem + # with local nameservers, maybe? We'll allow the domain to go through. + return { + "unknown-deliverability": "no_nameservers", + } + + except dns.exception.Timeout: + # A timeout could occur for various reasons, so don't treat it as a failure. + return { + "unknown-deliverability": "timeout", + } + + except EmailUndeliverableError: + # Don't let these get clobbered by the wider except block below. + raise + + except Exception as e: + # Unhandled conditions should not propagate. + raise EmailUndeliverableError( + "There was an error while checking if the domain name in the email address is deliverable: " + str(e) + ) from e + + return deliverability_info diff --git a/.venv/lib/python3.11/site-packages/email_validator/exceptions_types.py b/.venv/lib/python3.11/site-packages/email_validator/exceptions_types.py new file mode 100644 index 0000000..928a94f --- /dev/null +++ b/.venv/lib/python3.11/site-packages/email_validator/exceptions_types.py @@ -0,0 +1,141 @@ +import warnings +from typing import Any, Dict, List, Optional, Tuple, Union + + +class EmailNotValidError(ValueError): + """Parent class of all exceptions raised by this module.""" + pass + + +class EmailSyntaxError(EmailNotValidError): + """Exception raised when an email address fails validation because of its form.""" + pass + + +class EmailUndeliverableError(EmailNotValidError): + """Exception raised when an email address fails validation because its domain name does not appear deliverable.""" + pass + + +class ValidatedEmail: + """The validate_email function returns objects of this type holding the normalized form of the email address + and other information.""" + + """The email address that was passed to validate_email. (If passed as bytes, this will be a string.)""" + original: str + + """The normalized email address, which should always be used in preference to the original address. + The normalized address converts an IDNA ASCII domain name to Unicode, if possible, and performs + Unicode normalization on the local part and on the domain (if originally Unicode). It is the + concatenation of the local_part and domain attributes, separated by an @-sign.""" + normalized: str + + """The local part of the email address after Unicode normalization.""" + local_part: str + + """The domain part of the email address after Unicode normalization or conversion to + Unicode from IDNA ascii.""" + domain: str + + """If the domain part is a domain literal, the IPv4Address or IPv6Address object.""" + domain_address: object + + """If not None, a form of the email address that uses 7-bit ASCII characters only.""" + ascii_email: Optional[str] + + """If not None, the local part of the email address using 7-bit ASCII characters only.""" + ascii_local_part: Optional[str] + + """A form of the domain name that uses 7-bit ASCII characters only.""" + ascii_domain: str + + """If True, the SMTPUTF8 feature of your mail relay will be required to transmit messages + to this address. This flag is True just when ascii_local_part is missing. Otherwise it + is False.""" + smtputf8: bool + + """If a deliverability check is performed and if it succeeds, a list of (priority, domain) + tuples of MX records specified in the DNS for the domain.""" + mx: List[Tuple[int, str]] + + """If no MX records are actually specified in DNS and instead are inferred, through an obsolete + mechanism, from A or AAAA records, the value is the type of DNS record used instead (`A` or `AAAA`).""" + mx_fallback_type: Optional[str] + + """The display name in the original input text, unquoted and unescaped, or None.""" + display_name: Optional[str] + + def __repr__(self) -> str: + return f"" + + """For backwards compatibility, support old field names.""" + def __getattr__(self, key: str) -> str: + if key == "original_email": + return self.original + if key == "email": + return self.normalized + raise AttributeError(key) + + @property + def email(self) -> str: + warnings.warn("ValidatedEmail.email is deprecated and will be removed, use ValidatedEmail.normalized instead", DeprecationWarning) + return self.normalized + + """For backwards compatibility, some fields are also exposed through a dict-like interface. Note + that some of the names changed when they became attributes.""" + def __getitem__(self, key: str) -> Union[Optional[str], bool, List[Tuple[int, str]]]: + warnings.warn("dict-like access to the return value of validate_email is deprecated and may not be supported in the future.", DeprecationWarning, stacklevel=2) + if key == "email": + return self.normalized + if key == "email_ascii": + return self.ascii_email + if key == "local": + return self.local_part + if key == "domain": + return self.ascii_domain + if key == "domain_i18n": + return self.domain + if key == "smtputf8": + return self.smtputf8 + if key == "mx": + return self.mx + if key == "mx-fallback": + return self.mx_fallback_type + raise KeyError() + + """Tests use this.""" + def __eq__(self, other: object) -> bool: + if not isinstance(other, ValidatedEmail): + return False + return ( + self.normalized == other.normalized + and self.local_part == other.local_part + and self.domain == other.domain + and getattr(self, 'ascii_email', None) == getattr(other, 'ascii_email', None) + and getattr(self, 'ascii_local_part', None) == getattr(other, 'ascii_local_part', None) + and getattr(self, 'ascii_domain', None) == getattr(other, 'ascii_domain', None) + and self.smtputf8 == other.smtputf8 + and repr(sorted(self.mx) if getattr(self, 'mx', None) else None) + == repr(sorted(other.mx) if getattr(other, 'mx', None) else None) + and getattr(self, 'mx_fallback_type', None) == getattr(other, 'mx_fallback_type', None) + and getattr(self, 'display_name', None) == getattr(other, 'display_name', None) + ) + + """This helps producing the README.""" + def as_constructor(self) -> str: + return "ValidatedEmail(" \ + + ",".join(f"\n {key}={repr(getattr(self, key))}" + for key in ('normalized', 'local_part', 'domain', + 'ascii_email', 'ascii_local_part', 'ascii_domain', + 'smtputf8', 'mx', 'mx_fallback_type', + 'display_name') + if hasattr(self, key) + ) \ + + ")" + + """Convenience method for accessing ValidatedEmail as a dict""" + def as_dict(self) -> Dict[str, Any]: + d = self.__dict__ + if d.get('domain_address'): + d['domain_address'] = repr(d['domain_address']) + return d diff --git a/.venv/lib/python3.11/site-packages/email_validator/py.typed b/.venv/lib/python3.11/site-packages/email_validator/py.typed new file mode 100644 index 0000000..e69de29 diff --git a/.venv/lib/python3.11/site-packages/email_validator/rfc_constants.py b/.venv/lib/python3.11/site-packages/email_validator/rfc_constants.py new file mode 100644 index 0000000..39d8e31 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/email_validator/rfc_constants.py @@ -0,0 +1,51 @@ +# These constants are defined by the email specifications. + +import re + +# Based on RFC 5322 3.2.3, these characters are permitted in email +# addresses (not taking into account internationalization) separated by dots: +ATEXT = r'a-zA-Z0-9_!#\$%&\'\*\+\-/=\?\^`\{\|\}~' +ATEXT_RE = re.compile('[.' + ATEXT + ']') # ATEXT plus dots +DOT_ATOM_TEXT = re.compile('[' + ATEXT + ']+(?:\\.[' + ATEXT + r']+)*\Z') + +# RFC 6531 3.3 extends the allowed characters in internationalized +# addresses to also include three specific ranges of UTF8 defined in +# RFC 3629 section 4, which appear to be the Unicode code points from +# U+0080 to U+10FFFF. +ATEXT_INTL = ATEXT + "\u0080-\U0010FFFF" +ATEXT_INTL_DOT_RE = re.compile('[.' + ATEXT_INTL + ']') # ATEXT_INTL plus dots +DOT_ATOM_TEXT_INTL = re.compile('[' + ATEXT_INTL + ']+(?:\\.[' + ATEXT_INTL + r']+)*\Z') + +# The domain part of the email address, after IDNA (ASCII) encoding, +# must also satisfy the requirements of RFC 952/RFC 1123 2.1 which +# restrict the allowed characters of hostnames further. +ATEXT_HOSTNAME_INTL = re.compile(r"[a-zA-Z0-9\-\." + "\u0080-\U0010FFFF" + "]") +HOSTNAME_LABEL = r'(?:(?:[a-zA-Z0-9][a-zA-Z0-9\-]*)?[a-zA-Z0-9])' +DOT_ATOM_TEXT_HOSTNAME = re.compile(HOSTNAME_LABEL + r'(?:\.' + HOSTNAME_LABEL + r')*\Z') +DOMAIN_NAME_REGEX = re.compile(r"[A-Za-z]\Z") # all TLDs currently end with a letter + +# Domain literal (RFC 5322 3.4.1) +DOMAIN_LITERAL_CHARS = re.compile(r"[\u0021-\u00FA\u005E-\u007E]") + +# Quoted-string local part (RFC 5321 4.1.2, internationalized by RFC 6531 3.3) +# The permitted characters in a quoted string are the characters in the range +# 32-126, except that quotes and (literal) backslashes can only appear when escaped +# by a backslash. When internationalized, UTF-8 strings are also permitted except +# the ASCII characters that are not previously permitted (see above). +# QUOTED_LOCAL_PART_ADDR = re.compile(r"^\"((?:[\u0020-\u0021\u0023-\u005B\u005D-\u007E]|\\[\u0020-\u007E])*)\"@(.*)") +QTEXT_INTL = re.compile(r"[\u0020-\u007E\u0080-\U0010FFFF]") + +# Length constants +# RFC 3696 + errata 1003 + errata 1690 (https://www.rfc-editor.org/errata_search.php?rfc=3696&eid=1690) +# explains the maximum length of an email address is 254 octets. +EMAIL_MAX_LENGTH = 254 +LOCAL_PART_MAX_LENGTH = 64 +DNS_LABEL_LENGTH_LIMIT = 63 # in "octets", RFC 1035 2.3.1 +DOMAIN_MAX_LENGTH = 253 # in "octets" as transmitted, RFC 1035 2.3.4 and RFC 5321 4.5.3.1.2, and see https://stackoverflow.com/questions/32290167/what-is-the-maximum-length-of-a-dns-name + +# RFC 2142 +CASE_INSENSITIVE_MAILBOX_NAMES = [ + 'info', 'marketing', 'sales', 'support', # section 3 + 'abuse', 'noc', 'security', # section 4 + 'postmaster', 'hostmaster', 'usenet', 'news', 'webmaster', 'www', 'uucp', 'ftp', # section 5 +] diff --git a/.venv/lib/python3.11/site-packages/email_validator/syntax.py b/.venv/lib/python3.11/site-packages/email_validator/syntax.py new file mode 100644 index 0000000..c655451 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/email_validator/syntax.py @@ -0,0 +1,761 @@ +from .exceptions_types import EmailSyntaxError, ValidatedEmail +from .rfc_constants import EMAIL_MAX_LENGTH, LOCAL_PART_MAX_LENGTH, DOMAIN_MAX_LENGTH, \ + DOT_ATOM_TEXT, DOT_ATOM_TEXT_INTL, ATEXT_RE, ATEXT_INTL_DOT_RE, ATEXT_HOSTNAME_INTL, QTEXT_INTL, \ + DNS_LABEL_LENGTH_LIMIT, DOT_ATOM_TEXT_HOSTNAME, DOMAIN_NAME_REGEX, DOMAIN_LITERAL_CHARS + +import re +import unicodedata +import idna # implements IDNA 2008; Python's codec is only IDNA 2003 +import ipaddress +from typing import Optional, Tuple, TypedDict, Union + + +def split_email(email: str) -> Tuple[Optional[str], str, str, bool]: + # Return the display name, unescaped local part, and domain part + # of the address, and whether the local part was quoted. If no + # display name was present and angle brackets do not surround + # the address, display name will be None; otherwise, it will be + # set to the display name or the empty string if there were + # angle brackets but no display name. + + # Typical email addresses have a single @-sign and no quote + # characters, but the awkward "quoted string" local part form + # (RFC 5321 4.1.2) allows @-signs and escaped quotes to appear + # in the local part if the local part is quoted. + + # A `display name ` format is also present in MIME messages + # (RFC 5322 3.4) and this format is also often recognized in + # mail UIs. It's not allowed in SMTP commands or in typical web + # login forms, but parsing it has been requested, so it's done + # here as a convenience. It's implemented in the spirit but not + # the letter of RFC 5322 3.4 because MIME messages allow newlines + # and comments as a part of the CFWS rule, but this is typically + # not allowed in mail UIs (although comment syntax was requested + # once too). + # + # Display names are either basic characters (the same basic characters + # permitted in email addresses, but periods are not allowed and spaces + # are allowed; see RFC 5322 Appendix A.1.2), or or a quoted string with + # the same rules as a quoted local part. (Multiple quoted strings might + # be allowed? Unclear.) Optional space (RFC 5322 3.4 CFWS) and then the + # email address follows in angle brackets. + # + # An initial quote is ambiguous between starting a display name or + # a quoted local part --- fun. + # + # We assume the input string is already stripped of leading and + # trailing CFWS. + + def split_string_at_unquoted_special(text: str, specials: Tuple[str, ...]) -> Tuple[str, str]: + # Split the string at the first character in specials (an @-sign + # or left angle bracket) that does not occur within quotes and + # is not followed by a Unicode combining character. + # If no special character is found, raise an error. + inside_quote = False + escaped = False + left_part = "" + for i, c in enumerate(text): + # < plus U+0338 (Combining Long Solidus Overlay) normalizes to + # ≮ U+226E (Not Less-Than), and it would be confusing to treat + # the < as the start of "" syntax in that case. Liekwise, + # if anything combines with an @ or ", we should probably not + # treat it as a special character. + if unicodedata.normalize("NFC", text[i:])[0] != c: + left_part += c + + elif inside_quote: + left_part += c + if c == '\\' and not escaped: + escaped = True + elif c == '"' and not escaped: + # The only way to exit the quote is an unescaped quote. + inside_quote = False + escaped = False + else: + escaped = False + elif c == '"': + left_part += c + inside_quote = True + elif c in specials: + # When unquoted, stop before a special character. + break + else: + left_part += c + + if len(left_part) == len(text): + raise EmailSyntaxError("An email address must have an @-sign.") + + # The right part is whatever is left. + right_part = text[len(left_part):] + + return left_part, right_part + + def unquote_quoted_string(text: str) -> Tuple[str, bool]: + # Remove surrounding quotes and unescape escaped backslashes + # and quotes. Escapes are parsed liberally. I think only + # backslashes and quotes can be escaped but we'll allow anything + # to be. + quoted = False + escaped = False + value = "" + for i, c in enumerate(text): + if quoted: + if escaped: + value += c + escaped = False + elif c == '\\': + escaped = True + elif c == '"': + if i != len(text) - 1: + raise EmailSyntaxError("Extra character(s) found after close quote: " + + ", ".join(safe_character_display(c) for c in text[i + 1:])) + break + else: + value += c + elif i == 0 and c == '"': + quoted = True + else: + value += c + + return value, quoted + + # Split the string at the first unquoted @-sign or left angle bracket. + left_part, right_part = split_string_at_unquoted_special(email, ("@", "<")) + + # If the right part starts with an angle bracket, + # then the left part is a display name and the rest + # of the right part up to the final right angle bracket + # is the email address, . + if right_part.startswith("<"): + # Remove space between the display name and angle bracket. + left_part = left_part.rstrip() + + # Unquote and unescape the display name. + display_name, display_name_quoted = unquote_quoted_string(left_part) + + # Check that only basic characters are present in a + # non-quoted display name. + if not display_name_quoted: + bad_chars = { + safe_character_display(c) + for c in display_name + if (not ATEXT_RE.match(c) and c != ' ') or c == '.' + } + if bad_chars: + raise EmailSyntaxError("The display name contains invalid characters when not quoted: " + ", ".join(sorted(bad_chars)) + ".") + + # Check for other unsafe characters. + check_unsafe_chars(display_name, allow_space=True) + + # Check that the right part ends with an angle bracket + # but allow spaces after it, I guess. + if ">" not in right_part: + raise EmailSyntaxError("An open angle bracket at the start of the email address has to be followed by a close angle bracket at the end.") + right_part = right_part.rstrip(" ") + if right_part[-1] != ">": + raise EmailSyntaxError("There can't be anything after the email address.") + + # Remove the initial and trailing angle brackets. + addr_spec = right_part[1:].rstrip(">") + + # Split the email address at the first unquoted @-sign. + local_part, domain_part = split_string_at_unquoted_special(addr_spec, ("@",)) + + # Otherwise there is no display name. The left part is the local + # part and the right part is the domain. + else: + display_name = None + local_part, domain_part = left_part, right_part + + if domain_part.startswith("@"): + domain_part = domain_part[1:] + + # Unquote the local part if it is quoted. + local_part, is_quoted_local_part = unquote_quoted_string(local_part) + + return display_name, local_part, domain_part, is_quoted_local_part + + +def get_length_reason(addr: str, limit: int) -> str: + """Helper function to return an error message related to invalid length.""" + diff = len(addr) - limit + suffix = "s" if diff > 1 else "" + return f"({diff} character{suffix} too many)" + + +def safe_character_display(c: str) -> str: + # Return safely displayable characters in quotes. + if c == '\\': + return f"\"{c}\"" # can't use repr because it escapes it + if unicodedata.category(c)[0] in ("L", "N", "P", "S"): + return repr(c) + + # Construct a hex string in case the unicode name doesn't exist. + if ord(c) < 0xFFFF: + h = f"U+{ord(c):04x}".upper() + else: + h = f"U+{ord(c):08x}".upper() + + # Return the character name or, if it has no name, the hex string. + return unicodedata.name(c, h) + + +class LocalPartValidationResult(TypedDict): + local_part: str + ascii_local_part: Optional[str] + smtputf8: bool + + +def validate_email_local_part(local: str, allow_smtputf8: bool = True, allow_empty_local: bool = False, + quoted_local_part: bool = False) -> LocalPartValidationResult: + """Validates the syntax of the local part of an email address.""" + + if len(local) == 0: + if not allow_empty_local: + raise EmailSyntaxError("There must be something before the @-sign.") + + # The caller allows an empty local part. Useful for validating certain + # Postfix aliases. + return { + "local_part": local, + "ascii_local_part": local, + "smtputf8": False, + } + + # Check the length of the local part by counting characters. + # (RFC 5321 4.5.3.1.1) + # We're checking the number of characters here. If the local part + # is ASCII-only, then that's the same as bytes (octets). If it's + # internationalized, then the UTF-8 encoding may be longer, but + # that may not be relevant. We will check the total address length + # instead. + if len(local) > LOCAL_PART_MAX_LENGTH: + reason = get_length_reason(local, limit=LOCAL_PART_MAX_LENGTH) + raise EmailSyntaxError(f"The email address is too long before the @-sign {reason}.") + + # Check the local part against the non-internationalized regular expression. + # Most email addresses match this regex so it's probably fastest to check this first. + # (RFC 5322 3.2.3) + # All local parts matching the dot-atom rule are also valid as a quoted string + # so if it was originally quoted (quoted_local_part is True) and this regex matches, + # it's ok. + # (RFC 5321 4.1.2 / RFC 5322 3.2.4). + if DOT_ATOM_TEXT.match(local): + # It's valid. And since it's just the permitted ASCII characters, + # it's normalized and safe. If the local part was originally quoted, + # the quoting was unnecessary and it'll be returned as normalized to + # non-quoted form. + + # Return the local part and flag that SMTPUTF8 is not needed. + return { + "local_part": local, + "ascii_local_part": local, + "smtputf8": False, + } + + # The local part failed the basic dot-atom check. Try the extended character set + # for internationalized addresses. It's the same pattern but with additional + # characters permitted. + # RFC 6531 section 3.3. + valid: Optional[str] = None + requires_smtputf8 = False + if DOT_ATOM_TEXT_INTL.match(local): + # But international characters in the local part may not be permitted. + if not allow_smtputf8: + # Check for invalid characters against the non-internationalized + # permitted character set. + # (RFC 5322 3.2.3) + bad_chars = { + safe_character_display(c) + for c in local + if not ATEXT_RE.match(c) + } + if bad_chars: + raise EmailSyntaxError("Internationalized characters before the @-sign are not supported: " + ", ".join(sorted(bad_chars)) + ".") + + # Although the check above should always find something, fall back to this just in case. + raise EmailSyntaxError("Internationalized characters before the @-sign are not supported.") + + # It's valid. + valid = "dot-atom" + requires_smtputf8 = True + + # There are no syntactic restrictions on quoted local parts, so if + # it was originally quoted, it is probably valid. More characters + # are allowed, like @-signs, spaces, and quotes, and there are no + # restrictions on the placement of dots, as in dot-atom local parts. + elif quoted_local_part: + # Check for invalid characters in a quoted string local part. + # (RFC 5321 4.1.2. RFC 5322 lists additional permitted *obsolete* + # characters which are *not* allowed here. RFC 6531 section 3.3 + # extends the range to UTF8 strings.) + bad_chars = { + safe_character_display(c) + for c in local + if not QTEXT_INTL.match(c) + } + if bad_chars: + raise EmailSyntaxError("The email address contains invalid characters in quotes before the @-sign: " + ", ".join(sorted(bad_chars)) + ".") + + # See if any characters are outside of the ASCII range. + bad_chars = { + safe_character_display(c) + for c in local + if not (32 <= ord(c) <= 126) + } + if bad_chars: + requires_smtputf8 = True + + # International characters in the local part may not be permitted. + if not allow_smtputf8: + raise EmailSyntaxError("Internationalized characters before the @-sign are not supported: " + ", ".join(sorted(bad_chars)) + ".") + + # It's valid. + valid = "quoted" + + # If the local part matches the internationalized dot-atom form or was quoted, + # perform additional checks for Unicode strings. + if valid: + # Check that the local part is a valid, safe, and sensible Unicode string. + # Some of this may be redundant with the range U+0080 to U+10FFFF that is checked + # by DOT_ATOM_TEXT_INTL and QTEXT_INTL. Other characters may be permitted by the + # email specs, but they may not be valid, safe, or sensible Unicode strings. + # See the function for rationale. + check_unsafe_chars(local, allow_space=(valid == "quoted")) + + # Try encoding to UTF-8. Failure is possible with some characters like + # surrogate code points, but those are checked above. Still, we don't + # want to have an unhandled exception later. + try: + local.encode("utf8") + except ValueError as e: + raise EmailSyntaxError("The email address contains an invalid character.") from e + + # If this address passes only by the quoted string form, re-quote it + # and backslash-escape quotes and backslashes (removing any unnecessary + # escapes). Per RFC 5321 4.1.2, "all quoted forms MUST be treated as equivalent, + # and the sending system SHOULD transmit the form that uses the minimum quoting possible." + if valid == "quoted": + local = '"' + re.sub(r'(["\\])', r'\\\1', local) + '"' + + return { + "local_part": local, + "ascii_local_part": local if not requires_smtputf8 else None, + "smtputf8": requires_smtputf8, + } + + # It's not a valid local part. Let's find out why. + # (Since quoted local parts are all valid or handled above, these checks + # don't apply in those cases.) + + # Check for invalid characters. + # (RFC 5322 3.2.3, plus RFC 6531 3.3) + bad_chars = { + safe_character_display(c) + for c in local + if not ATEXT_INTL_DOT_RE.match(c) + } + if bad_chars: + raise EmailSyntaxError("The email address contains invalid characters before the @-sign: " + ", ".join(sorted(bad_chars)) + ".") + + # Check for dot errors imposted by the dot-atom rule. + # (RFC 5322 3.2.3) + check_dot_atom(local, 'An email address cannot start with a {}.', 'An email address cannot have a {} immediately before the @-sign.', is_hostname=False) + + # All of the reasons should already have been checked, but just in case + # we have a fallback message. + raise EmailSyntaxError("The email address contains invalid characters before the @-sign.") + + +def check_unsafe_chars(s: str, allow_space: bool = False) -> None: + # Check for unsafe characters or characters that would make the string + # invalid or non-sensible Unicode. + bad_chars = set() + for i, c in enumerate(s): + category = unicodedata.category(c) + if category[0] in ("L", "N", "P", "S"): + # Letters, numbers, punctuation, and symbols are permitted. + pass + elif category[0] == "M": + # Combining character in first position would combine with something + # outside of the email address if concatenated, so they are not safe. + # We also check if this occurs after the @-sign, which would not be + # sensible because it would modify the @-sign. + if i == 0: + bad_chars.add(c) + elif category == "Zs": + # Spaces outside of the ASCII range are not specifically disallowed in + # internationalized addresses as far as I can tell, but they violate + # the spirit of the non-internationalized specification that email + # addresses do not contain ASCII spaces when not quoted. Excluding + # ASCII spaces when not quoted is handled directly by the atom regex. + # + # In quoted-string local parts, spaces are explicitly permitted, and + # the ASCII space has category Zs, so we must allow it here, and we'll + # allow all Unicode spaces to be consistent. + if not allow_space: + bad_chars.add(c) + elif category[0] == "Z": + # The two line and paragraph separator characters (in categories Zl and Zp) + # are not specifically disallowed in internationalized addresses + # as far as I can tell, but they violate the spirit of the non-internationalized + # specification that email addresses do not contain line breaks when not quoted. + bad_chars.add(c) + elif category[0] == "C": + # Control, format, surrogate, private use, and unassigned code points (C) + # are all unsafe in various ways. Control and format characters can affect + # text rendering if the email address is concatenated with other text. + # Bidirectional format characters are unsafe, even if used properly, because + # they cause an email address to render as a different email address. + # Private use characters do not make sense for publicly deliverable + # email addresses. + bad_chars.add(c) + else: + # All categories should be handled above, but in case there is something new + # to the Unicode specification in the future, reject all other categories. + bad_chars.add(c) + if bad_chars: + raise EmailSyntaxError("The email address contains unsafe characters: " + + ", ".join(safe_character_display(c) for c in sorted(bad_chars)) + ".") + + +def check_dot_atom(label: str, start_descr: str, end_descr: str, is_hostname: bool) -> None: + # RFC 5322 3.2.3 + if label.endswith("."): + raise EmailSyntaxError(end_descr.format("period")) + if label.startswith("."): + raise EmailSyntaxError(start_descr.format("period")) + if ".." in label: + raise EmailSyntaxError("An email address cannot have two periods in a row.") + + if is_hostname: + # RFC 952 + if label.endswith("-"): + raise EmailSyntaxError(end_descr.format("hyphen")) + if label.startswith("-"): + raise EmailSyntaxError(start_descr.format("hyphen")) + if ".-" in label or "-." in label: + raise EmailSyntaxError("An email address cannot have a period and a hyphen next to each other.") + + +class DomainNameValidationResult(TypedDict): + ascii_domain: str + domain: str + + +def validate_email_domain_name(domain: str, test_environment: bool = False, globally_deliverable: bool = True) -> DomainNameValidationResult: + """Validates the syntax of the domain part of an email address.""" + + # Check for invalid characters. + # (RFC 952 plus RFC 6531 section 3.3 for internationalized addresses) + bad_chars = { + safe_character_display(c) + for c in domain + if not ATEXT_HOSTNAME_INTL.match(c) + } + if bad_chars: + raise EmailSyntaxError("The part after the @-sign contains invalid characters: " + ", ".join(sorted(bad_chars)) + ".") + + # Check for unsafe characters. + # Some of this may be redundant with the range U+0080 to U+10FFFF that is checked + # by DOT_ATOM_TEXT_INTL. Other characters may be permitted by the email specs, but + # they may not be valid, safe, or sensible Unicode strings. + check_unsafe_chars(domain) + + # Perform UTS-46 normalization, which includes casefolding, NFC normalization, + # and converting all label separators (the period/full stop, fullwidth full stop, + # ideographic full stop, and halfwidth ideographic full stop) to regular dots. + # It will also raise an exception if there is an invalid character in the input, + # such as "⒈" which is invalid because it would expand to include a dot and + # U+1FEF which normalizes to a backtick, which is not an allowed hostname character. + # Since several characters *are* normalized to a dot, this has to come before + # checks related to dots, like check_dot_atom which comes next. + original_domain = domain + try: + domain = idna.uts46_remap(domain, std3_rules=False, transitional=False) + except idna.IDNAError as e: + raise EmailSyntaxError(f"The part after the @-sign contains invalid characters ({e}).") from e + + # Check for invalid characters after Unicode normalization which are not caught + # by uts46_remap (see tests for examples). + bad_chars = { + safe_character_display(c) + for c in domain + if not ATEXT_HOSTNAME_INTL.match(c) + } + if bad_chars: + raise EmailSyntaxError("The part after the @-sign contains invalid characters after Unicode normalization: " + ", ".join(sorted(bad_chars)) + ".") + + # The domain part is made up dot-separated "labels." Each label must + # have at least one character and cannot start or end with dashes, which + # means there are some surprising restrictions on periods and dashes. + # Check that before we do IDNA encoding because the IDNA library gives + # unfriendly errors for these cases, but after UTS-46 normalization because + # it can insert periods and hyphens (from fullwidth characters). + # (RFC 952, RFC 1123 2.1, RFC 5322 3.2.3) + check_dot_atom(domain, 'An email address cannot have a {} immediately after the @-sign.', 'An email address cannot end with a {}.', is_hostname=True) + + # Check for RFC 5890's invalid R-LDH labels, which are labels that start + # with two characters other than "xn" and two dashes. + for label in domain.split("."): + if re.match(r"(?!xn)..--", label, re.I): + raise EmailSyntaxError("An email address cannot have two letters followed by two dashes immediately after the @-sign or after a period, except Punycode.") + + if DOT_ATOM_TEXT_HOSTNAME.match(domain): + # This is a valid non-internationalized domain. + ascii_domain = domain + else: + # If international characters are present in the domain name, convert + # the domain to IDNA ASCII. If internationalized characters are present, + # the MTA must either support SMTPUTF8 or the mail client must convert the + # domain name to IDNA before submission. + # + # For ASCII-only domains, the transformation does nothing and is safe to + # apply. However, to ensure we don't rely on the idna library for basic + # syntax checks, we don't use it if it's not needed. + # + # idna.encode also checks the domain name length after encoding but it + # doesn't give a nice error, so we call the underlying idna.alabel method + # directly. idna.alabel checks label length and doesn't give great messages, + # but we can't easily go to lower level methods. + try: + ascii_domain = ".".join( + idna.alabel(label).decode("ascii") + for label in domain.split(".") + ) + except idna.IDNAError as e: + # Some errors would have already been raised by idna.uts46_remap. + raise EmailSyntaxError(f"The part after the @-sign is invalid ({e}).") from e + + # Check the syntax of the string returned by idna.encode. + # It should never fail. + if not DOT_ATOM_TEXT_HOSTNAME.match(ascii_domain): + raise EmailSyntaxError("The email address contains invalid characters after the @-sign after IDNA encoding.") + + # Check the length of the domain name in bytes. + # (RFC 1035 2.3.4 and RFC 5321 4.5.3.1.2) + # We're checking the number of bytes ("octets") here, which can be much + # higher than the number of characters in internationalized domains, + # on the assumption that the domain may be transmitted without SMTPUTF8 + # as IDNA ASCII. (This is also checked by idna.encode, so this exception + # is never reached for internationalized domains.) + if len(ascii_domain) > DOMAIN_MAX_LENGTH: + if ascii_domain == original_domain: + reason = get_length_reason(ascii_domain, limit=DOMAIN_MAX_LENGTH) + raise EmailSyntaxError(f"The email address is too long after the @-sign {reason}.") + else: + diff = len(ascii_domain) - DOMAIN_MAX_LENGTH + s = "" if diff == 1 else "s" + raise EmailSyntaxError(f"The email address is too long after the @-sign ({diff} byte{s} too many after IDNA encoding).") + + # Also check the label length limit. + # (RFC 1035 2.3.1) + for label in ascii_domain.split("."): + if len(label) > DNS_LABEL_LENGTH_LIMIT: + reason = get_length_reason(label, limit=DNS_LABEL_LENGTH_LIMIT) + raise EmailSyntaxError(f"After the @-sign, periods cannot be separated by so many characters {reason}.") + + if globally_deliverable: + # All publicly deliverable addresses have domain names with at least + # one period, at least for gTLDs created since 2013 (per the ICANN Board + # New gTLD Program Committee, https://www.icann.org/en/announcements/details/new-gtld-dotless-domain-names-prohibited-30-8-2013-en). + # We'll consider the lack of a period a syntax error + # since that will match people's sense of what an email address looks + # like. We'll skip this in test environments to allow '@test' email + # addresses. + if "." not in ascii_domain and not (ascii_domain == "test" and test_environment): + raise EmailSyntaxError("The part after the @-sign is not valid. It should have a period.") + + # We also know that all TLDs currently end with a letter. + if not DOMAIN_NAME_REGEX.search(ascii_domain): + raise EmailSyntaxError("The part after the @-sign is not valid. It is not within a valid top-level domain.") + + # Check special-use and reserved domain names. + # Some might fail DNS-based deliverability checks, but that + # can be turned off, so we should fail them all sooner. + # See the references in __init__.py. + from . import SPECIAL_USE_DOMAIN_NAMES + for d in SPECIAL_USE_DOMAIN_NAMES: + # See the note near the definition of SPECIAL_USE_DOMAIN_NAMES. + if d == "test" and test_environment: + continue + + if ascii_domain == d or ascii_domain.endswith("." + d): + raise EmailSyntaxError("The part after the @-sign is a special-use or reserved name that cannot be used with email.") + + # We may have been given an IDNA ASCII domain to begin with. Check + # that the domain actually conforms to IDNA. It could look like IDNA + # but not be actual IDNA. For ASCII-only domains, the conversion out + # of IDNA just gives the same thing back. + # + # This gives us the canonical internationalized form of the domain, + # which we return to the caller as a part of the normalized email + # address. + try: + domain_i18n = idna.decode(ascii_domain.encode('ascii')) + except idna.IDNAError as e: + raise EmailSyntaxError(f"The part after the @-sign is not valid IDNA ({e}).") from e + + # Check that this normalized domain name has not somehow become + # an invalid domain name. All of the checks before this point + # using the idna package probably guarantee that we now have + # a valid international domain name in most respects. But it + # doesn't hurt to re-apply some tests to be sure. See the similar + # tests above. + + # Check for invalid and unsafe characters. We have no test + # case for this. + bad_chars = { + safe_character_display(c) + for c in domain + if not ATEXT_HOSTNAME_INTL.match(c) + } + if bad_chars: + raise EmailSyntaxError("The part after the @-sign contains invalid characters: " + ", ".join(sorted(bad_chars)) + ".") + check_unsafe_chars(domain) + + # Check that it can be encoded back to IDNA ASCII. We have no test + # case for this. + try: + idna.encode(domain_i18n) + except idna.IDNAError as e: + raise EmailSyntaxError(f"The part after the @-sign became invalid after normalizing to international characters ({e}).") from e + + # Return the IDNA ASCII-encoded form of the domain, which is how it + # would be transmitted on the wire (except when used with SMTPUTF8 + # possibly), as well as the canonical Unicode form of the domain, + # which is better for display purposes. This should also take care + # of RFC 6532 section 3.1's suggestion to apply Unicode NFC + # normalization to addresses. + return { + "ascii_domain": ascii_domain, + "domain": domain_i18n, + } + + +def validate_email_length(addrinfo: ValidatedEmail) -> None: + # There are three forms of the email address whose length must be checked: + # + # 1) The original email address string. Since callers may continue to use + # this string, even though we recommend using the normalized form, we + # should not pass validation when the original input is not valid. This + # form is checked first because it is the original input. + # 2) The normalized email address. We perform Unicode NFC normalization of + # the local part, we normalize the domain to internationalized characters + # (if originaly IDNA ASCII) which also includes Unicode normalization, + # and we may remove quotes in quoted local parts. We recommend that + # callers use this string, so it must be valid. + # 3) The email address with the IDNA ASCII representation of the domain + # name, since this string may be used with email stacks that don't + # support UTF-8. Since this is the least likely to be used by callers, + # it is checked last. Note that ascii_email will only be set if the + # local part is ASCII, but conceivably the caller may combine a + # internationalized local part with an ASCII domain, so we check this + # on that combination also. Since we only return the normalized local + # part, we use that (and not the unnormalized local part). + # + # In all cases, the length is checked in UTF-8 because the SMTPUTF8 + # extension to SMTP validates the length in bytes. + + addresses_to_check = [ + (addrinfo.original, None), + (addrinfo.normalized, "after normalization"), + ((addrinfo.ascii_local_part or addrinfo.local_part or "") + "@" + addrinfo.ascii_domain, "when the part after the @-sign is converted to IDNA ASCII"), + ] + + for addr, reason in addresses_to_check: + addr_len = len(addr) + addr_utf8_len = len(addr.encode("utf8")) + diff = addr_utf8_len - EMAIL_MAX_LENGTH + if diff > 0: + if reason is None and addr_len == addr_utf8_len: + # If there is no normalization or transcoding, + # we can give a simple count of the number of + # characters over the limit. + reason = get_length_reason(addr, limit=EMAIL_MAX_LENGTH) + elif reason is None: + # If there is no normalization but there is + # some transcoding to UTF-8, we can compute + # the minimum number of characters over the + # limit by dividing the number of bytes over + # the limit by the maximum number of bytes + # per character. + mbpc = max(len(c.encode("utf8")) for c in addr) + mchars = max(1, diff // mbpc) + suffix = "s" if diff > 1 else "" + if mchars == diff: + reason = f"({diff} character{suffix} too many)" + else: + reason = f"({mchars}-{diff} character{suffix} too many)" + else: + # Since there is normalization, the number of + # characters in the input that need to change is + # impossible to know. + suffix = "s" if diff > 1 else "" + reason += f" ({diff} byte{suffix} too many)" + raise EmailSyntaxError(f"The email address is too long {reason}.") + + +class DomainLiteralValidationResult(TypedDict): + domain_address: Union[ipaddress.IPv4Address, ipaddress.IPv6Address] + domain: str + + +def validate_email_domain_literal(domain_literal: str) -> DomainLiteralValidationResult: + # This is obscure domain-literal syntax. Parse it and return + # a compressed/normalized address. + # RFC 5321 4.1.3 and RFC 5322 3.4.1. + + addr: Union[ipaddress.IPv4Address, ipaddress.IPv6Address] + + # Try to parse the domain literal as an IPv4 address. + # There is no tag for IPv4 addresses, so we can never + # be sure if the user intends an IPv4 address. + if re.match(r"^[0-9\.]+$", domain_literal): + try: + addr = ipaddress.IPv4Address(domain_literal) + except ValueError as e: + raise EmailSyntaxError(f"The address in brackets after the @-sign is not valid: It is not an IPv4 address ({e}) or is missing an address literal tag.") from e + + # Return the IPv4Address object and the domain back unchanged. + return { + "domain_address": addr, + "domain": f"[{addr}]", + } + + # If it begins with "IPv6:" it's an IPv6 address. + if domain_literal.startswith("IPv6:"): + try: + addr = ipaddress.IPv6Address(domain_literal[5:]) + except ValueError as e: + raise EmailSyntaxError(f"The IPv6 address in brackets after the @-sign is not valid ({e}).") from e + + # Return the IPv6Address object and construct a normalized + # domain literal. + return { + "domain_address": addr, + "domain": f"[IPv6:{addr.compressed}]", + } + + # Nothing else is valid. + + if ":" not in domain_literal: + raise EmailSyntaxError("The part after the @-sign in brackets is not an IPv4 address and has no address literal tag.") + + # The tag (the part before the colon) has character restrictions, + # but since it must come from a registry of tags (in which only "IPv6" is defined), + # there's no need to check the syntax of the tag. See RFC 5321 4.1.2. + + # Check for permitted ASCII characters. This actually doesn't matter + # since there will be an exception after anyway. + bad_chars = { + safe_character_display(c) + for c in domain_literal + if not DOMAIN_LITERAL_CHARS.match(c) + } + if bad_chars: + raise EmailSyntaxError("The part after the @-sign contains invalid characters in brackets: " + ", ".join(sorted(bad_chars)) + ".") + + # There are no other domain literal tags. + # https://www.iana.org/assignments/address-literal-tags/address-literal-tags.xhtml + raise EmailSyntaxError("The part after the @-sign contains an invalid address literal tag in brackets.") diff --git a/.venv/lib/python3.11/site-packages/email_validator/validate_email.py b/.venv/lib/python3.11/site-packages/email_validator/validate_email.py new file mode 100644 index 0000000..a134c77 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/email_validator/validate_email.py @@ -0,0 +1,180 @@ +from typing import Optional, Union, TYPE_CHECKING +import unicodedata + +from .exceptions_types import EmailSyntaxError, ValidatedEmail +from .syntax import split_email, validate_email_local_part, validate_email_domain_name, validate_email_domain_literal, validate_email_length +from .rfc_constants import CASE_INSENSITIVE_MAILBOX_NAMES + +if TYPE_CHECKING: + import dns.resolver + _Resolver = dns.resolver.Resolver +else: + _Resolver = object + + +def validate_email( + email: Union[str, bytes], + /, # prior arguments are positional-only + *, # subsequent arguments are keyword-only + allow_smtputf8: Optional[bool] = None, + allow_empty_local: bool = False, + allow_quoted_local: Optional[bool] = None, + allow_domain_literal: Optional[bool] = None, + allow_display_name: Optional[bool] = None, + check_deliverability: Optional[bool] = None, + test_environment: Optional[bool] = None, + globally_deliverable: Optional[bool] = None, + timeout: Optional[int] = None, + dns_resolver: Optional[_Resolver] = None +) -> ValidatedEmail: + """ + Given an email address, and some options, returns a ValidatedEmail instance + with information about the address if it is valid or, if the address is not + valid, raises an EmailNotValidError. This is the main function of the module. + """ + + # Fill in default values of arguments. + from . import ALLOW_SMTPUTF8, ALLOW_QUOTED_LOCAL, ALLOW_DOMAIN_LITERAL, ALLOW_DISPLAY_NAME, \ + GLOBALLY_DELIVERABLE, CHECK_DELIVERABILITY, TEST_ENVIRONMENT, DEFAULT_TIMEOUT + if allow_smtputf8 is None: + allow_smtputf8 = ALLOW_SMTPUTF8 + if allow_quoted_local is None: + allow_quoted_local = ALLOW_QUOTED_LOCAL + if allow_domain_literal is None: + allow_domain_literal = ALLOW_DOMAIN_LITERAL + if allow_display_name is None: + allow_display_name = ALLOW_DISPLAY_NAME + if check_deliverability is None: + check_deliverability = CHECK_DELIVERABILITY + if test_environment is None: + test_environment = TEST_ENVIRONMENT + if globally_deliverable is None: + globally_deliverable = GLOBALLY_DELIVERABLE + if timeout is None and dns_resolver is None: + timeout = DEFAULT_TIMEOUT + + # Allow email to be a str or bytes instance. If bytes, + # it must be ASCII because that's how the bytes work + # on the wire with SMTP. + if not isinstance(email, str): + try: + email = email.decode("ascii") + except ValueError as e: + raise EmailSyntaxError("The email address is not valid ASCII.") from e + + # Split the address into the display name (or None), the local part + # (before the @-sign), and the domain part (after the @-sign). + # Normally, there is only one @-sign. But the awkward "quoted string" + # local part form (RFC 5321 4.1.2) allows @-signs in the local + # part if the local part is quoted. + display_name, local_part, domain_part, is_quoted_local_part \ + = split_email(email) + + # Collect return values in this instance. + ret = ValidatedEmail() + ret.original = ((local_part if not is_quoted_local_part + else ('"' + local_part + '"')) + + "@" + domain_part) # drop the display name, if any, for email length tests at the end + ret.display_name = display_name + + # Validate the email address's local part syntax and get a normalized form. + # If the original address was quoted and the decoded local part is a valid + # unquoted local part, then we'll get back a normalized (unescaped) local + # part. + local_part_info = validate_email_local_part(local_part, + allow_smtputf8=allow_smtputf8, + allow_empty_local=allow_empty_local, + quoted_local_part=is_quoted_local_part) + ret.local_part = local_part_info["local_part"] + ret.ascii_local_part = local_part_info["ascii_local_part"] + ret.smtputf8 = local_part_info["smtputf8"] + + # RFC 6532 section 3.1 says that Unicode NFC normalization should be applied, + # so we'll return the NFC-normalized local part. Since the caller may use that + # string in place of the original string, ensure it is also valid. + normalized_local_part = unicodedata.normalize("NFC", ret.local_part) + if normalized_local_part != ret.local_part: + try: + validate_email_local_part(normalized_local_part, + allow_smtputf8=allow_smtputf8, + allow_empty_local=allow_empty_local, + quoted_local_part=is_quoted_local_part) + except EmailSyntaxError as e: + raise EmailSyntaxError("After Unicode normalization: " + str(e)) from e + ret.local_part = normalized_local_part + + # If a quoted local part isn't allowed but is present, now raise an exception. + # This is done after any exceptions raised by validate_email_local_part so + # that mandatory checks have highest precedence. + if is_quoted_local_part and not allow_quoted_local: + raise EmailSyntaxError("Quoting the part before the @-sign is not allowed here.") + + # Some local parts are required to be case-insensitive, so we should normalize + # to lowercase. + # RFC 2142 + if ret.ascii_local_part is not None \ + and ret.ascii_local_part.lower() in CASE_INSENSITIVE_MAILBOX_NAMES \ + and ret.local_part is not None: + ret.ascii_local_part = ret.ascii_local_part.lower() + ret.local_part = ret.local_part.lower() + + # Validate the email address's domain part syntax and get a normalized form. + is_domain_literal = False + if len(domain_part) == 0: + raise EmailSyntaxError("There must be something after the @-sign.") + + elif domain_part.startswith("[") and domain_part.endswith("]"): + # Parse the address in the domain literal and get back a normalized domain. + domain_literal_info = validate_email_domain_literal(domain_part[1:-1]) + if not allow_domain_literal: + raise EmailSyntaxError("A bracketed IP address after the @-sign is not allowed here.") + ret.domain = domain_literal_info["domain"] + ret.ascii_domain = domain_literal_info["domain"] # Domain literals are always ASCII. + ret.domain_address = domain_literal_info["domain_address"] + is_domain_literal = True # Prevent deliverability checks. + + else: + # Check the syntax of the domain and get back a normalized + # internationalized and ASCII form. + domain_name_info = validate_email_domain_name(domain_part, test_environment=test_environment, globally_deliverable=globally_deliverable) + ret.domain = domain_name_info["domain"] + ret.ascii_domain = domain_name_info["ascii_domain"] + + # Construct the complete normalized form. + ret.normalized = ret.local_part + "@" + ret.domain + + # If the email address has an ASCII form, add it. + if not ret.smtputf8: + if not ret.ascii_domain: + raise Exception("Missing ASCII domain.") + ret.ascii_email = (ret.ascii_local_part or "") + "@" + ret.ascii_domain + else: + ret.ascii_email = None + + # Check the length of the address. + validate_email_length(ret) + + # Check that a display name is permitted. It's the last syntax check + # because we always check against optional parsing features last. + if display_name is not None and not allow_display_name: + raise EmailSyntaxError("A display name and angle brackets around the email address are not permitted here.") + + if check_deliverability and not test_environment: + # Validate the email address's deliverability using DNS + # and update the returned ValidatedEmail object with metadata. + + if is_domain_literal: + # There is nothing to check --- skip deliverability checks. + return ret + + # Lazy load `deliverability` as it is slow to import (due to dns.resolver) + from .deliverability import validate_email_deliverability + deliverability_info = validate_email_deliverability( + ret.ascii_domain, ret.domain, timeout, dns_resolver + ) + mx = deliverability_info.get("mx") + if mx is not None: + ret.mx = mx + ret.mx_fallback_type = deliverability_info.get("mx_fallback_type") + + return ret diff --git a/.venv/lib/python3.11/site-packages/email_validator/version.py b/.venv/lib/python3.11/site-packages/email_validator/version.py new file mode 100644 index 0000000..8a124bf --- /dev/null +++ b/.venv/lib/python3.11/site-packages/email_validator/version.py @@ -0,0 +1 @@ +__version__ = "2.2.0" diff --git a/.venv/lib/python3.11/site-packages/idna-3.10.dist-info/INSTALLER b/.venv/lib/python3.11/site-packages/idna-3.10.dist-info/INSTALLER new file mode 100644 index 0000000..c2a1515 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/idna-3.10.dist-info/INSTALLER @@ -0,0 +1 @@ +Poetry 2.1.3 \ No newline at end of file diff --git a/.venv/lib/python3.11/site-packages/idna-3.10.dist-info/LICENSE.md b/.venv/lib/python3.11/site-packages/idna-3.10.dist-info/LICENSE.md new file mode 100644 index 0000000..19b6b45 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/idna-3.10.dist-info/LICENSE.md @@ -0,0 +1,31 @@ +BSD 3-Clause License + +Copyright (c) 2013-2024, Kim Davies and contributors. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + +3. Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED +TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR +PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF +LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/.venv/lib/python3.11/site-packages/idna-3.10.dist-info/METADATA b/.venv/lib/python3.11/site-packages/idna-3.10.dist-info/METADATA new file mode 100644 index 0000000..c42623e --- /dev/null +++ b/.venv/lib/python3.11/site-packages/idna-3.10.dist-info/METADATA @@ -0,0 +1,250 @@ +Metadata-Version: 2.1 +Name: idna +Version: 3.10 +Summary: Internationalized Domain Names in Applications (IDNA) +Author-email: Kim Davies +Requires-Python: >=3.6 +Description-Content-Type: text/x-rst +Classifier: Development Status :: 5 - Production/Stable +Classifier: Intended Audience :: Developers +Classifier: Intended Audience :: System Administrators +Classifier: License :: OSI Approved :: BSD License +Classifier: Operating System :: OS Independent +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 :: 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 :: Internet :: Name Service (DNS) +Classifier: Topic :: Software Development :: Libraries :: Python Modules +Classifier: Topic :: Utilities +Requires-Dist: ruff >= 0.6.2 ; extra == "all" +Requires-Dist: mypy >= 1.11.2 ; extra == "all" +Requires-Dist: pytest >= 8.3.2 ; extra == "all" +Requires-Dist: flake8 >= 7.1.1 ; extra == "all" +Project-URL: Changelog, https://github.com/kjd/idna/blob/master/HISTORY.rst +Project-URL: Issue tracker, https://github.com/kjd/idna/issues +Project-URL: Source, https://github.com/kjd/idna +Provides-Extra: all + +Internationalized Domain Names in Applications (IDNA) +===================================================== + +Support for the Internationalized Domain Names in +Applications (IDNA) protocol as specified in `RFC 5891 +`_. This is the latest version of +the protocol and is sometimes referred to as “IDNA 2008”. + +This library also provides support for Unicode Technical +Standard 46, `Unicode IDNA Compatibility Processing +`_. + +This acts as a suitable replacement for the “encodings.idna” +module that comes with the Python standard library, but which +only supports the older superseded IDNA specification (`RFC 3490 +`_). + +Basic functions are simply executed: + +.. code-block:: pycon + + >>> import idna + >>> idna.encode('ドメイン.テスト') + b'xn--eckwd4c7c.xn--zckzah' + >>> print(idna.decode('xn--eckwd4c7c.xn--zckzah')) + ドメイン.テスト + + +Installation +------------ + +This package is available for installation from PyPI: + +.. code-block:: bash + + $ python3 -m pip install idna + + +Usage +----- + +For typical usage, the ``encode`` and ``decode`` functions will take a +domain name argument and perform a conversion to A-labels or U-labels +respectively. + +.. code-block:: pycon + + >>> import idna + >>> idna.encode('ドメイン.テスト') + b'xn--eckwd4c7c.xn--zckzah' + >>> print(idna.decode('xn--eckwd4c7c.xn--zckzah')) + ドメイン.テスト + +You may use the codec encoding and decoding methods using the +``idna.codec`` module: + +.. code-block:: pycon + + >>> import idna.codec + >>> print('домен.испытание'.encode('idna2008')) + b'xn--d1acufc.xn--80akhbyknj4f' + >>> print(b'xn--d1acufc.xn--80akhbyknj4f'.decode('idna2008')) + домен.испытание + +Conversions can be applied at a per-label basis using the ``ulabel`` or +``alabel`` functions if necessary: + +.. code-block:: pycon + + >>> idna.alabel('测试') + b'xn--0zwm56d' + +Compatibility Mapping (UTS #46) ++++++++++++++++++++++++++++++++ + +As described in `RFC 5895 `_, the +IDNA specification does not normalize input from different potential +ways a user may input a domain name. This functionality, known as +a “mapping”, is considered by the specification to be a local +user-interface issue distinct from IDNA conversion functionality. + +This library provides one such mapping that was developed by the +Unicode Consortium. Known as `Unicode IDNA Compatibility Processing +`_, it provides for both a regular +mapping for typical applications, as well as a transitional mapping to +help migrate from older IDNA 2003 applications. Strings are +preprocessed according to Section 4.4 “Preprocessing for IDNA2008” +prior to the IDNA operations. + +For example, “Königsgäßchen” is not a permissible label as *LATIN +CAPITAL LETTER K* is not allowed (nor are capital letters in general). +UTS 46 will convert this into lower case prior to applying the IDNA +conversion. + +.. code-block:: pycon + + >>> import idna + >>> idna.encode('Königsgäßchen') + ... + idna.core.InvalidCodepoint: Codepoint U+004B at position 1 of 'Königsgäßchen' not allowed + >>> idna.encode('Königsgäßchen', uts46=True) + b'xn--knigsgchen-b4a3dun' + >>> print(idna.decode('xn--knigsgchen-b4a3dun')) + königsgäßchen + +Transitional processing provides conversions to help transition from +the older 2003 standard to the current standard. For example, in the +original IDNA specification, the *LATIN SMALL LETTER SHARP S* (ß) was +converted into two *LATIN SMALL LETTER S* (ss), whereas in the current +IDNA specification this conversion is not performed. + +.. code-block:: pycon + + >>> idna.encode('Königsgäßchen', uts46=True, transitional=True) + 'xn--knigsgsschen-lcb0w' + +Implementers should use transitional processing with caution, only in +rare cases where conversion from legacy labels to current labels must be +performed (i.e. IDNA implementations that pre-date 2008). For typical +applications that just need to convert labels, transitional processing +is unlikely to be beneficial and could produce unexpected incompatible +results. + +``encodings.idna`` Compatibility +++++++++++++++++++++++++++++++++ + +Function calls from the Python built-in ``encodings.idna`` module are +mapped to their IDNA 2008 equivalents using the ``idna.compat`` module. +Simply substitute the ``import`` clause in your code to refer to the new +module name. + +Exceptions +---------- + +All errors raised during the conversion following the specification +should raise an exception derived from the ``idna.IDNAError`` base +class. + +More specific exceptions that may be generated as ``idna.IDNABidiError`` +when the error reflects an illegal combination of left-to-right and +right-to-left characters in a label; ``idna.InvalidCodepoint`` when +a specific codepoint is an illegal character in an IDN label (i.e. +INVALID); and ``idna.InvalidCodepointContext`` when the codepoint is +illegal based on its positional context (i.e. it is CONTEXTO or CONTEXTJ +but the contextual requirements are not satisfied.) + +Building and Diagnostics +------------------------ + +The IDNA and UTS 46 functionality relies upon pre-calculated lookup +tables for performance. These tables are derived from computing against +eligibility criteria in the respective standards. These tables are +computed using the command-line script ``tools/idna-data``. + +This tool will fetch relevant codepoint data from the Unicode repository +and perform the required calculations to identify eligibility. There are +three main modes: + +* ``idna-data make-libdata``. Generates ``idnadata.py`` and + ``uts46data.py``, the pre-calculated lookup tables used for IDNA and + UTS 46 conversions. Implementers who wish to track this library against + a different Unicode version may use this tool to manually generate a + different version of the ``idnadata.py`` and ``uts46data.py`` files. + +* ``idna-data make-table``. Generate a table of the IDNA disposition + (e.g. PVALID, CONTEXTJ, CONTEXTO) in the format found in Appendix + B.1 of RFC 5892 and the pre-computed tables published by `IANA + `_. + +* ``idna-data U+0061``. Prints debugging output on the various + properties associated with an individual Unicode codepoint (in this + case, U+0061), that are used to assess the IDNA and UTS 46 status of a + codepoint. This is helpful in debugging or analysis. + +The tool accepts a number of arguments, described using ``idna-data +-h``. Most notably, the ``--version`` argument allows the specification +of the version of Unicode to be used in computing the table data. For +example, ``idna-data --version 9.0.0 make-libdata`` will generate +library data against Unicode 9.0.0. + + +Additional Notes +---------------- + +* **Packages**. The latest tagged release version is published in the + `Python Package Index `_. + +* **Version support**. This library supports Python 3.6 and higher. + As this library serves as a low-level toolkit for a variety of + applications, many of which strive for broad compatibility with older + Python versions, there is no rush to remove older interpreter support. + Removing support for older versions should be well justified in that the + maintenance burden has become too high. + +* **Python 2**. Python 2 is supported by version 2.x of this library. + Use "idna<3" in your requirements file if you need this library for + a Python 2 application. Be advised that these versions are no longer + actively developed. + +* **Testing**. The library has a test suite based on each rule of the + IDNA specification, as well as tests that are provided as part of the + Unicode Technical Standard 46, `Unicode IDNA Compatibility Processing + `_. + +* **Emoji**. It is an occasional request to support emoji domains in + this library. Encoding of symbols like emoji is expressly prohibited by + the technical standard IDNA 2008 and emoji domains are broadly phased + out across the domain industry due to associated security risks. For + now, applications that need to support these non-compliant labels + may wish to consider trying the encode/decode operation in this library + first, and then falling back to using `encodings.idna`. See `the Github + project `_ for more discussion. + diff --git a/.venv/lib/python3.11/site-packages/idna-3.10.dist-info/RECORD b/.venv/lib/python3.11/site-packages/idna-3.10.dist-info/RECORD new file mode 100644 index 0000000..a8e5dc0 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/idna-3.10.dist-info/RECORD @@ -0,0 +1,14 @@ +idna/__init__.py,sha256=MPqNDLZbXqGaNdXxAFhiqFPKEQXju2jNQhCey6-5eJM,868 +idna/codec.py,sha256=PEew3ItwzjW4hymbasnty2N2OXvNcgHB-JjrBuxHPYY,3422 +idna/compat.py,sha256=RzLy6QQCdl9784aFhb2EX9EKGCJjg0P3PilGdeXXcx8,316 +idna/core.py,sha256=YJYyAMnwiQEPjVC4-Fqu_p4CJ6yKKuDGmppBNQNQpFs,13239 +idna/idnadata.py,sha256=W30GcIGvtOWYwAjZj4ZjuouUutC6ffgNuyjJy7fZ-lo,78306 +idna/intranges.py,sha256=amUtkdhYcQG8Zr-CoMM_kVRacxkivC1WgxN1b63KKdU,1898 +idna/package_data.py,sha256=q59S3OXsc5VI8j6vSD0sGBMyk6zZ4vWFREE88yCJYKs,21 +idna/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +idna/uts46data.py,sha256=rt90K9J40gUSwppDPCrhjgi5AA6pWM65dEGRSf6rIhM,239289 +idna-3.10.dist-info/LICENSE.md,sha256=pZ8LDvNjWHQQmkRhykT_enDVBpboFHZ7-vch1Mmw2w8,1541 +idna-3.10.dist-info/WHEEL,sha256=EZbGkh7Ie4PoZfRQ8I0ZuP9VklN_TvcZ6DSE5Uar4z4,81 +idna-3.10.dist-info/METADATA,sha256=URR5ZyDfQ1PCEGhkYoojqfi2Ra0tau2--lhwG4XSfjI,10158 +idna-3.10.dist-info/INSTALLER,sha256=9Fj27hpVKWMXZsBOPfrH05WeL2C7QXSjAHAgayzBJ8A,12 +idna-3.10.dist-info/RECORD,, diff --git a/.venv/lib/python3.11/site-packages/idna-3.10.dist-info/WHEEL b/.venv/lib/python3.11/site-packages/idna-3.10.dist-info/WHEEL new file mode 100644 index 0000000..3b5e64b --- /dev/null +++ b/.venv/lib/python3.11/site-packages/idna-3.10.dist-info/WHEEL @@ -0,0 +1,4 @@ +Wheel-Version: 1.0 +Generator: flit 3.9.0 +Root-Is-Purelib: true +Tag: py3-none-any diff --git a/.venv/lib/python3.11/site-packages/idna/__init__.py b/.venv/lib/python3.11/site-packages/idna/__init__.py new file mode 100644 index 0000000..cfdc030 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/idna/__init__.py @@ -0,0 +1,45 @@ +from .core import ( + IDNABidiError, + IDNAError, + InvalidCodepoint, + InvalidCodepointContext, + alabel, + check_bidi, + check_hyphen_ok, + check_initial_combiner, + check_label, + check_nfc, + decode, + encode, + ulabel, + uts46_remap, + valid_contextj, + valid_contexto, + valid_label_length, + valid_string_length, +) +from .intranges import intranges_contain +from .package_data import __version__ + +__all__ = [ + "__version__", + "IDNABidiError", + "IDNAError", + "InvalidCodepoint", + "InvalidCodepointContext", + "alabel", + "check_bidi", + "check_hyphen_ok", + "check_initial_combiner", + "check_label", + "check_nfc", + "decode", + "encode", + "intranges_contain", + "ulabel", + "uts46_remap", + "valid_contextj", + "valid_contexto", + "valid_label_length", + "valid_string_length", +] diff --git a/.venv/lib/python3.11/site-packages/idna/codec.py b/.venv/lib/python3.11/site-packages/idna/codec.py new file mode 100644 index 0000000..913abfd --- /dev/null +++ b/.venv/lib/python3.11/site-packages/idna/codec.py @@ -0,0 +1,122 @@ +import codecs +import re +from typing import Any, Optional, Tuple + +from .core import IDNAError, alabel, decode, encode, ulabel + +_unicode_dots_re = re.compile("[\u002e\u3002\uff0e\uff61]") + + +class Codec(codecs.Codec): + def encode(self, data: str, errors: str = "strict") -> Tuple[bytes, int]: + if errors != "strict": + raise IDNAError('Unsupported error handling "{}"'.format(errors)) + + if not data: + return b"", 0 + + return encode(data), len(data) + + def decode(self, data: bytes, errors: str = "strict") -> Tuple[str, int]: + if errors != "strict": + raise IDNAError('Unsupported error handling "{}"'.format(errors)) + + if not data: + return "", 0 + + return decode(data), len(data) + + +class IncrementalEncoder(codecs.BufferedIncrementalEncoder): + def _buffer_encode(self, data: str, errors: str, final: bool) -> Tuple[bytes, int]: + if errors != "strict": + raise IDNAError('Unsupported error handling "{}"'.format(errors)) + + if not data: + return b"", 0 + + labels = _unicode_dots_re.split(data) + trailing_dot = b"" + if labels: + if not labels[-1]: + trailing_dot = b"." + del labels[-1] + elif not final: + # Keep potentially unfinished label until the next call + del labels[-1] + if labels: + trailing_dot = b"." + + result = [] + size = 0 + for label in labels: + result.append(alabel(label)) + if size: + size += 1 + size += len(label) + + # Join with U+002E + result_bytes = b".".join(result) + trailing_dot + size += len(trailing_dot) + return result_bytes, size + + +class IncrementalDecoder(codecs.BufferedIncrementalDecoder): + def _buffer_decode(self, data: Any, errors: str, final: bool) -> Tuple[str, int]: + if errors != "strict": + raise IDNAError('Unsupported error handling "{}"'.format(errors)) + + if not data: + return ("", 0) + + if not isinstance(data, str): + data = str(data, "ascii") + + labels = _unicode_dots_re.split(data) + trailing_dot = "" + if labels: + if not labels[-1]: + trailing_dot = "." + del labels[-1] + elif not final: + # Keep potentially unfinished label until the next call + del labels[-1] + if labels: + trailing_dot = "." + + result = [] + size = 0 + for label in labels: + result.append(ulabel(label)) + if size: + size += 1 + size += len(label) + + result_str = ".".join(result) + trailing_dot + size += len(trailing_dot) + return (result_str, size) + + +class StreamWriter(Codec, codecs.StreamWriter): + pass + + +class StreamReader(Codec, codecs.StreamReader): + pass + + +def search_function(name: str) -> Optional[codecs.CodecInfo]: + if name != "idna2008": + return None + return codecs.CodecInfo( + name=name, + encode=Codec().encode, + decode=Codec().decode, + incrementalencoder=IncrementalEncoder, + incrementaldecoder=IncrementalDecoder, + streamwriter=StreamWriter, + streamreader=StreamReader, + ) + + +codecs.register(search_function) diff --git a/.venv/lib/python3.11/site-packages/idna/compat.py b/.venv/lib/python3.11/site-packages/idna/compat.py new file mode 100644 index 0000000..1df9f2a --- /dev/null +++ b/.venv/lib/python3.11/site-packages/idna/compat.py @@ -0,0 +1,15 @@ +from typing import Any, Union + +from .core import decode, encode + + +def ToASCII(label: str) -> bytes: + return encode(label) + + +def ToUnicode(label: Union[bytes, bytearray]) -> str: + return decode(label) + + +def nameprep(s: Any) -> None: + raise NotImplementedError("IDNA 2008 does not utilise nameprep protocol") diff --git a/.venv/lib/python3.11/site-packages/idna/core.py b/.venv/lib/python3.11/site-packages/idna/core.py new file mode 100644 index 0000000..9115f12 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/idna/core.py @@ -0,0 +1,437 @@ +import bisect +import re +import unicodedata +from typing import Optional, Union + +from . import idnadata +from .intranges import intranges_contain + +_virama_combining_class = 9 +_alabel_prefix = b"xn--" +_unicode_dots_re = re.compile("[\u002e\u3002\uff0e\uff61]") + + +class IDNAError(UnicodeError): + """Base exception for all IDNA-encoding related problems""" + + pass + + +class IDNABidiError(IDNAError): + """Exception when bidirectional requirements are not satisfied""" + + pass + + +class InvalidCodepoint(IDNAError): + """Exception when a disallowed or unallocated codepoint is used""" + + pass + + +class InvalidCodepointContext(IDNAError): + """Exception when the codepoint is not valid in the context it is used""" + + pass + + +def _combining_class(cp: int) -> int: + v = unicodedata.combining(chr(cp)) + if v == 0: + if not unicodedata.name(chr(cp)): + raise ValueError("Unknown character in unicodedata") + return v + + +def _is_script(cp: str, script: str) -> bool: + return intranges_contain(ord(cp), idnadata.scripts[script]) + + +def _punycode(s: str) -> bytes: + return s.encode("punycode") + + +def _unot(s: int) -> str: + return "U+{:04X}".format(s) + + +def valid_label_length(label: Union[bytes, str]) -> bool: + if len(label) > 63: + return False + return True + + +def valid_string_length(label: Union[bytes, str], trailing_dot: bool) -> bool: + if len(label) > (254 if trailing_dot else 253): + return False + return True + + +def check_bidi(label: str, check_ltr: bool = False) -> bool: + # Bidi rules should only be applied if string contains RTL characters + bidi_label = False + for idx, cp in enumerate(label, 1): + direction = unicodedata.bidirectional(cp) + if direction == "": + # String likely comes from a newer version of Unicode + raise IDNABidiError("Unknown directionality in label {} at position {}".format(repr(label), idx)) + if direction in ["R", "AL", "AN"]: + bidi_label = True + if not bidi_label and not check_ltr: + return True + + # Bidi rule 1 + direction = unicodedata.bidirectional(label[0]) + if direction in ["R", "AL"]: + rtl = True + elif direction == "L": + rtl = False + else: + raise IDNABidiError("First codepoint in label {} must be directionality L, R or AL".format(repr(label))) + + valid_ending = False + number_type: Optional[str] = None + for idx, cp in enumerate(label, 1): + direction = unicodedata.bidirectional(cp) + + if rtl: + # Bidi rule 2 + if direction not in [ + "R", + "AL", + "AN", + "EN", + "ES", + "CS", + "ET", + "ON", + "BN", + "NSM", + ]: + raise IDNABidiError("Invalid direction for codepoint at position {} in a right-to-left label".format(idx)) + # Bidi rule 3 + if direction in ["R", "AL", "EN", "AN"]: + valid_ending = True + elif direction != "NSM": + valid_ending = False + # Bidi rule 4 + if direction in ["AN", "EN"]: + if not number_type: + number_type = direction + else: + if number_type != direction: + raise IDNABidiError("Can not mix numeral types in a right-to-left label") + else: + # Bidi rule 5 + if direction not in ["L", "EN", "ES", "CS", "ET", "ON", "BN", "NSM"]: + raise IDNABidiError("Invalid direction for codepoint at position {} in a left-to-right label".format(idx)) + # Bidi rule 6 + if direction in ["L", "EN"]: + valid_ending = True + elif direction != "NSM": + valid_ending = False + + if not valid_ending: + raise IDNABidiError("Label ends with illegal codepoint directionality") + + return True + + +def check_initial_combiner(label: str) -> bool: + if unicodedata.category(label[0])[0] == "M": + raise IDNAError("Label begins with an illegal combining character") + return True + + +def check_hyphen_ok(label: str) -> bool: + if label[2:4] == "--": + raise IDNAError("Label has disallowed hyphens in 3rd and 4th position") + if label[0] == "-" or label[-1] == "-": + raise IDNAError("Label must not start or end with a hyphen") + return True + + +def check_nfc(label: str) -> None: + if unicodedata.normalize("NFC", label) != label: + raise IDNAError("Label must be in Normalization Form C") + + +def valid_contextj(label: str, pos: int) -> bool: + cp_value = ord(label[pos]) + + if cp_value == 0x200C: + if pos > 0: + if _combining_class(ord(label[pos - 1])) == _virama_combining_class: + return True + + ok = False + for i in range(pos - 1, -1, -1): + joining_type = idnadata.joining_types.get(ord(label[i])) + if joining_type == ord("T"): + continue + elif joining_type in [ord("L"), ord("D")]: + ok = True + break + else: + break + + if not ok: + return False + + ok = False + for i in range(pos + 1, len(label)): + joining_type = idnadata.joining_types.get(ord(label[i])) + if joining_type == ord("T"): + continue + elif joining_type in [ord("R"), ord("D")]: + ok = True + break + else: + break + return ok + + if cp_value == 0x200D: + if pos > 0: + if _combining_class(ord(label[pos - 1])) == _virama_combining_class: + return True + return False + + else: + return False + + +def valid_contexto(label: str, pos: int, exception: bool = False) -> bool: + cp_value = ord(label[pos]) + + if cp_value == 0x00B7: + if 0 < pos < len(label) - 1: + if ord(label[pos - 1]) == 0x006C and ord(label[pos + 1]) == 0x006C: + return True + return False + + elif cp_value == 0x0375: + if pos < len(label) - 1 and len(label) > 1: + return _is_script(label[pos + 1], "Greek") + return False + + elif cp_value == 0x05F3 or cp_value == 0x05F4: + if pos > 0: + return _is_script(label[pos - 1], "Hebrew") + return False + + elif cp_value == 0x30FB: + for cp in label: + if cp == "\u30fb": + continue + if _is_script(cp, "Hiragana") or _is_script(cp, "Katakana") or _is_script(cp, "Han"): + return True + return False + + elif 0x660 <= cp_value <= 0x669: + for cp in label: + if 0x6F0 <= ord(cp) <= 0x06F9: + return False + return True + + elif 0x6F0 <= cp_value <= 0x6F9: + for cp in label: + if 0x660 <= ord(cp) <= 0x0669: + return False + return True + + return False + + +def check_label(label: Union[str, bytes, bytearray]) -> None: + if isinstance(label, (bytes, bytearray)): + label = label.decode("utf-8") + if len(label) == 0: + raise IDNAError("Empty Label") + + check_nfc(label) + check_hyphen_ok(label) + check_initial_combiner(label) + + for pos, cp in enumerate(label): + cp_value = ord(cp) + if intranges_contain(cp_value, idnadata.codepoint_classes["PVALID"]): + continue + elif intranges_contain(cp_value, idnadata.codepoint_classes["CONTEXTJ"]): + try: + if not valid_contextj(label, pos): + raise InvalidCodepointContext( + "Joiner {} not allowed at position {} in {}".format(_unot(cp_value), pos + 1, repr(label)) + ) + except ValueError: + raise IDNAError( + "Unknown codepoint adjacent to joiner {} at position {} in {}".format( + _unot(cp_value), pos + 1, repr(label) + ) + ) + elif intranges_contain(cp_value, idnadata.codepoint_classes["CONTEXTO"]): + if not valid_contexto(label, pos): + raise InvalidCodepointContext( + "Codepoint {} not allowed at position {} in {}".format(_unot(cp_value), pos + 1, repr(label)) + ) + else: + raise InvalidCodepoint( + "Codepoint {} at position {} of {} not allowed".format(_unot(cp_value), pos + 1, repr(label)) + ) + + check_bidi(label) + + +def alabel(label: str) -> bytes: + try: + label_bytes = label.encode("ascii") + ulabel(label_bytes) + if not valid_label_length(label_bytes): + raise IDNAError("Label too long") + return label_bytes + except UnicodeEncodeError: + pass + + check_label(label) + label_bytes = _alabel_prefix + _punycode(label) + + if not valid_label_length(label_bytes): + raise IDNAError("Label too long") + + return label_bytes + + +def ulabel(label: Union[str, bytes, bytearray]) -> str: + if not isinstance(label, (bytes, bytearray)): + try: + label_bytes = label.encode("ascii") + except UnicodeEncodeError: + check_label(label) + return label + else: + label_bytes = label + + label_bytes = label_bytes.lower() + if label_bytes.startswith(_alabel_prefix): + label_bytes = label_bytes[len(_alabel_prefix) :] + if not label_bytes: + raise IDNAError("Malformed A-label, no Punycode eligible content found") + if label_bytes.decode("ascii")[-1] == "-": + raise IDNAError("A-label must not end with a hyphen") + else: + check_label(label_bytes) + return label_bytes.decode("ascii") + + try: + label = label_bytes.decode("punycode") + except UnicodeError: + raise IDNAError("Invalid A-label") + check_label(label) + return label + + +def uts46_remap(domain: str, std3_rules: bool = True, transitional: bool = False) -> str: + """Re-map the characters in the string according to UTS46 processing.""" + from .uts46data import uts46data + + output = "" + + for pos, char in enumerate(domain): + code_point = ord(char) + try: + uts46row = uts46data[code_point if code_point < 256 else bisect.bisect_left(uts46data, (code_point, "Z")) - 1] + status = uts46row[1] + replacement: Optional[str] = None + if len(uts46row) == 3: + replacement = uts46row[2] + if ( + status == "V" + or (status == "D" and not transitional) + or (status == "3" and not std3_rules and replacement is None) + ): + output += char + elif replacement is not None and ( + status == "M" or (status == "3" and not std3_rules) or (status == "D" and transitional) + ): + output += replacement + elif status != "I": + raise IndexError() + except IndexError: + raise InvalidCodepoint( + "Codepoint {} not allowed at position {} in {}".format(_unot(code_point), pos + 1, repr(domain)) + ) + + return unicodedata.normalize("NFC", output) + + +def encode( + s: Union[str, bytes, bytearray], + strict: bool = False, + uts46: bool = False, + std3_rules: bool = False, + transitional: bool = False, +) -> bytes: + if not isinstance(s, str): + try: + s = str(s, "ascii") + except UnicodeDecodeError: + raise IDNAError("should pass a unicode string to the function rather than a byte string.") + if uts46: + s = uts46_remap(s, std3_rules, transitional) + trailing_dot = False + result = [] + if strict: + labels = s.split(".") + else: + labels = _unicode_dots_re.split(s) + if not labels or labels == [""]: + raise IDNAError("Empty domain") + if labels[-1] == "": + del labels[-1] + trailing_dot = True + for label in labels: + s = alabel(label) + if s: + result.append(s) + else: + raise IDNAError("Empty label") + if trailing_dot: + result.append(b"") + s = b".".join(result) + if not valid_string_length(s, trailing_dot): + raise IDNAError("Domain too long") + return s + + +def decode( + s: Union[str, bytes, bytearray], + strict: bool = False, + uts46: bool = False, + std3_rules: bool = False, +) -> str: + try: + if not isinstance(s, str): + s = str(s, "ascii") + except UnicodeDecodeError: + raise IDNAError("Invalid ASCII in A-label") + if uts46: + s = uts46_remap(s, std3_rules, False) + trailing_dot = False + result = [] + if not strict: + labels = _unicode_dots_re.split(s) + else: + labels = s.split(".") + if not labels or labels == [""]: + raise IDNAError("Empty domain") + if not labels[-1]: + del labels[-1] + trailing_dot = True + for label in labels: + s = ulabel(label) + if s: + result.append(s) + else: + raise IDNAError("Empty label") + if trailing_dot: + result.append("") + return ".".join(result) diff --git a/.venv/lib/python3.11/site-packages/idna/idnadata.py b/.venv/lib/python3.11/site-packages/idna/idnadata.py new file mode 100644 index 0000000..4be6004 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/idna/idnadata.py @@ -0,0 +1,4243 @@ +# This file is automatically generated by tools/idna-data + +__version__ = "15.1.0" +scripts = { + "Greek": ( + 0x37000000374, + 0x37500000378, + 0x37A0000037E, + 0x37F00000380, + 0x38400000385, + 0x38600000387, + 0x3880000038B, + 0x38C0000038D, + 0x38E000003A2, + 0x3A3000003E2, + 0x3F000000400, + 0x1D2600001D2B, + 0x1D5D00001D62, + 0x1D6600001D6B, + 0x1DBF00001DC0, + 0x1F0000001F16, + 0x1F1800001F1E, + 0x1F2000001F46, + 0x1F4800001F4E, + 0x1F5000001F58, + 0x1F5900001F5A, + 0x1F5B00001F5C, + 0x1F5D00001F5E, + 0x1F5F00001F7E, + 0x1F8000001FB5, + 0x1FB600001FC5, + 0x1FC600001FD4, + 0x1FD600001FDC, + 0x1FDD00001FF0, + 0x1FF200001FF5, + 0x1FF600001FFF, + 0x212600002127, + 0xAB650000AB66, + 0x101400001018F, + 0x101A0000101A1, + 0x1D2000001D246, + ), + "Han": ( + 0x2E8000002E9A, + 0x2E9B00002EF4, + 0x2F0000002FD6, + 0x300500003006, + 0x300700003008, + 0x30210000302A, + 0x30380000303C, + 0x340000004DC0, + 0x4E000000A000, + 0xF9000000FA6E, + 0xFA700000FADA, + 0x16FE200016FE4, + 0x16FF000016FF2, + 0x200000002A6E0, + 0x2A7000002B73A, + 0x2B7400002B81E, + 0x2B8200002CEA2, + 0x2CEB00002EBE1, + 0x2EBF00002EE5E, + 0x2F8000002FA1E, + 0x300000003134B, + 0x31350000323B0, + ), + "Hebrew": ( + 0x591000005C8, + 0x5D0000005EB, + 0x5EF000005F5, + 0xFB1D0000FB37, + 0xFB380000FB3D, + 0xFB3E0000FB3F, + 0xFB400000FB42, + 0xFB430000FB45, + 0xFB460000FB50, + ), + "Hiragana": ( + 0x304100003097, + 0x309D000030A0, + 0x1B0010001B120, + 0x1B1320001B133, + 0x1B1500001B153, + 0x1F2000001F201, + ), + "Katakana": ( + 0x30A1000030FB, + 0x30FD00003100, + 0x31F000003200, + 0x32D0000032FF, + 0x330000003358, + 0xFF660000FF70, + 0xFF710000FF9E, + 0x1AFF00001AFF4, + 0x1AFF50001AFFC, + 0x1AFFD0001AFFF, + 0x1B0000001B001, + 0x1B1200001B123, + 0x1B1550001B156, + 0x1B1640001B168, + ), +} +joining_types = { + 0xAD: 84, + 0x300: 84, + 0x301: 84, + 0x302: 84, + 0x303: 84, + 0x304: 84, + 0x305: 84, + 0x306: 84, + 0x307: 84, + 0x308: 84, + 0x309: 84, + 0x30A: 84, + 0x30B: 84, + 0x30C: 84, + 0x30D: 84, + 0x30E: 84, + 0x30F: 84, + 0x310: 84, + 0x311: 84, + 0x312: 84, + 0x313: 84, + 0x314: 84, + 0x315: 84, + 0x316: 84, + 0x317: 84, + 0x318: 84, + 0x319: 84, + 0x31A: 84, + 0x31B: 84, + 0x31C: 84, + 0x31D: 84, + 0x31E: 84, + 0x31F: 84, + 0x320: 84, + 0x321: 84, + 0x322: 84, + 0x323: 84, + 0x324: 84, + 0x325: 84, + 0x326: 84, + 0x327: 84, + 0x328: 84, + 0x329: 84, + 0x32A: 84, + 0x32B: 84, + 0x32C: 84, + 0x32D: 84, + 0x32E: 84, + 0x32F: 84, + 0x330: 84, + 0x331: 84, + 0x332: 84, + 0x333: 84, + 0x334: 84, + 0x335: 84, + 0x336: 84, + 0x337: 84, + 0x338: 84, + 0x339: 84, + 0x33A: 84, + 0x33B: 84, + 0x33C: 84, + 0x33D: 84, + 0x33E: 84, + 0x33F: 84, + 0x340: 84, + 0x341: 84, + 0x342: 84, + 0x343: 84, + 0x344: 84, + 0x345: 84, + 0x346: 84, + 0x347: 84, + 0x348: 84, + 0x349: 84, + 0x34A: 84, + 0x34B: 84, + 0x34C: 84, + 0x34D: 84, + 0x34E: 84, + 0x34F: 84, + 0x350: 84, + 0x351: 84, + 0x352: 84, + 0x353: 84, + 0x354: 84, + 0x355: 84, + 0x356: 84, + 0x357: 84, + 0x358: 84, + 0x359: 84, + 0x35A: 84, + 0x35B: 84, + 0x35C: 84, + 0x35D: 84, + 0x35E: 84, + 0x35F: 84, + 0x360: 84, + 0x361: 84, + 0x362: 84, + 0x363: 84, + 0x364: 84, + 0x365: 84, + 0x366: 84, + 0x367: 84, + 0x368: 84, + 0x369: 84, + 0x36A: 84, + 0x36B: 84, + 0x36C: 84, + 0x36D: 84, + 0x36E: 84, + 0x36F: 84, + 0x483: 84, + 0x484: 84, + 0x485: 84, + 0x486: 84, + 0x487: 84, + 0x488: 84, + 0x489: 84, + 0x591: 84, + 0x592: 84, + 0x593: 84, + 0x594: 84, + 0x595: 84, + 0x596: 84, + 0x597: 84, + 0x598: 84, + 0x599: 84, + 0x59A: 84, + 0x59B: 84, + 0x59C: 84, + 0x59D: 84, + 0x59E: 84, + 0x59F: 84, + 0x5A0: 84, + 0x5A1: 84, + 0x5A2: 84, + 0x5A3: 84, + 0x5A4: 84, + 0x5A5: 84, + 0x5A6: 84, + 0x5A7: 84, + 0x5A8: 84, + 0x5A9: 84, + 0x5AA: 84, + 0x5AB: 84, + 0x5AC: 84, + 0x5AD: 84, + 0x5AE: 84, + 0x5AF: 84, + 0x5B0: 84, + 0x5B1: 84, + 0x5B2: 84, + 0x5B3: 84, + 0x5B4: 84, + 0x5B5: 84, + 0x5B6: 84, + 0x5B7: 84, + 0x5B8: 84, + 0x5B9: 84, + 0x5BA: 84, + 0x5BB: 84, + 0x5BC: 84, + 0x5BD: 84, + 0x5BF: 84, + 0x5C1: 84, + 0x5C2: 84, + 0x5C4: 84, + 0x5C5: 84, + 0x5C7: 84, + 0x610: 84, + 0x611: 84, + 0x612: 84, + 0x613: 84, + 0x614: 84, + 0x615: 84, + 0x616: 84, + 0x617: 84, + 0x618: 84, + 0x619: 84, + 0x61A: 84, + 0x61C: 84, + 0x620: 68, + 0x622: 82, + 0x623: 82, + 0x624: 82, + 0x625: 82, + 0x626: 68, + 0x627: 82, + 0x628: 68, + 0x629: 82, + 0x62A: 68, + 0x62B: 68, + 0x62C: 68, + 0x62D: 68, + 0x62E: 68, + 0x62F: 82, + 0x630: 82, + 0x631: 82, + 0x632: 82, + 0x633: 68, + 0x634: 68, + 0x635: 68, + 0x636: 68, + 0x637: 68, + 0x638: 68, + 0x639: 68, + 0x63A: 68, + 0x63B: 68, + 0x63C: 68, + 0x63D: 68, + 0x63E: 68, + 0x63F: 68, + 0x640: 67, + 0x641: 68, + 0x642: 68, + 0x643: 68, + 0x644: 68, + 0x645: 68, + 0x646: 68, + 0x647: 68, + 0x648: 82, + 0x649: 68, + 0x64A: 68, + 0x64B: 84, + 0x64C: 84, + 0x64D: 84, + 0x64E: 84, + 0x64F: 84, + 0x650: 84, + 0x651: 84, + 0x652: 84, + 0x653: 84, + 0x654: 84, + 0x655: 84, + 0x656: 84, + 0x657: 84, + 0x658: 84, + 0x659: 84, + 0x65A: 84, + 0x65B: 84, + 0x65C: 84, + 0x65D: 84, + 0x65E: 84, + 0x65F: 84, + 0x66E: 68, + 0x66F: 68, + 0x670: 84, + 0x671: 82, + 0x672: 82, + 0x673: 82, + 0x675: 82, + 0x676: 82, + 0x677: 82, + 0x678: 68, + 0x679: 68, + 0x67A: 68, + 0x67B: 68, + 0x67C: 68, + 0x67D: 68, + 0x67E: 68, + 0x67F: 68, + 0x680: 68, + 0x681: 68, + 0x682: 68, + 0x683: 68, + 0x684: 68, + 0x685: 68, + 0x686: 68, + 0x687: 68, + 0x688: 82, + 0x689: 82, + 0x68A: 82, + 0x68B: 82, + 0x68C: 82, + 0x68D: 82, + 0x68E: 82, + 0x68F: 82, + 0x690: 82, + 0x691: 82, + 0x692: 82, + 0x693: 82, + 0x694: 82, + 0x695: 82, + 0x696: 82, + 0x697: 82, + 0x698: 82, + 0x699: 82, + 0x69A: 68, + 0x69B: 68, + 0x69C: 68, + 0x69D: 68, + 0x69E: 68, + 0x69F: 68, + 0x6A0: 68, + 0x6A1: 68, + 0x6A2: 68, + 0x6A3: 68, + 0x6A4: 68, + 0x6A5: 68, + 0x6A6: 68, + 0x6A7: 68, + 0x6A8: 68, + 0x6A9: 68, + 0x6AA: 68, + 0x6AB: 68, + 0x6AC: 68, + 0x6AD: 68, + 0x6AE: 68, + 0x6AF: 68, + 0x6B0: 68, + 0x6B1: 68, + 0x6B2: 68, + 0x6B3: 68, + 0x6B4: 68, + 0x6B5: 68, + 0x6B6: 68, + 0x6B7: 68, + 0x6B8: 68, + 0x6B9: 68, + 0x6BA: 68, + 0x6BB: 68, + 0x6BC: 68, + 0x6BD: 68, + 0x6BE: 68, + 0x6BF: 68, + 0x6C0: 82, + 0x6C1: 68, + 0x6C2: 68, + 0x6C3: 82, + 0x6C4: 82, + 0x6C5: 82, + 0x6C6: 82, + 0x6C7: 82, + 0x6C8: 82, + 0x6C9: 82, + 0x6CA: 82, + 0x6CB: 82, + 0x6CC: 68, + 0x6CD: 82, + 0x6CE: 68, + 0x6CF: 82, + 0x6D0: 68, + 0x6D1: 68, + 0x6D2: 82, + 0x6D3: 82, + 0x6D5: 82, + 0x6D6: 84, + 0x6D7: 84, + 0x6D8: 84, + 0x6D9: 84, + 0x6DA: 84, + 0x6DB: 84, + 0x6DC: 84, + 0x6DF: 84, + 0x6E0: 84, + 0x6E1: 84, + 0x6E2: 84, + 0x6E3: 84, + 0x6E4: 84, + 0x6E7: 84, + 0x6E8: 84, + 0x6EA: 84, + 0x6EB: 84, + 0x6EC: 84, + 0x6ED: 84, + 0x6EE: 82, + 0x6EF: 82, + 0x6FA: 68, + 0x6FB: 68, + 0x6FC: 68, + 0x6FF: 68, + 0x70F: 84, + 0x710: 82, + 0x711: 84, + 0x712: 68, + 0x713: 68, + 0x714: 68, + 0x715: 82, + 0x716: 82, + 0x717: 82, + 0x718: 82, + 0x719: 82, + 0x71A: 68, + 0x71B: 68, + 0x71C: 68, + 0x71D: 68, + 0x71E: 82, + 0x71F: 68, + 0x720: 68, + 0x721: 68, + 0x722: 68, + 0x723: 68, + 0x724: 68, + 0x725: 68, + 0x726: 68, + 0x727: 68, + 0x728: 82, + 0x729: 68, + 0x72A: 82, + 0x72B: 68, + 0x72C: 82, + 0x72D: 68, + 0x72E: 68, + 0x72F: 82, + 0x730: 84, + 0x731: 84, + 0x732: 84, + 0x733: 84, + 0x734: 84, + 0x735: 84, + 0x736: 84, + 0x737: 84, + 0x738: 84, + 0x739: 84, + 0x73A: 84, + 0x73B: 84, + 0x73C: 84, + 0x73D: 84, + 0x73E: 84, + 0x73F: 84, + 0x740: 84, + 0x741: 84, + 0x742: 84, + 0x743: 84, + 0x744: 84, + 0x745: 84, + 0x746: 84, + 0x747: 84, + 0x748: 84, + 0x749: 84, + 0x74A: 84, + 0x74D: 82, + 0x74E: 68, + 0x74F: 68, + 0x750: 68, + 0x751: 68, + 0x752: 68, + 0x753: 68, + 0x754: 68, + 0x755: 68, + 0x756: 68, + 0x757: 68, + 0x758: 68, + 0x759: 82, + 0x75A: 82, + 0x75B: 82, + 0x75C: 68, + 0x75D: 68, + 0x75E: 68, + 0x75F: 68, + 0x760: 68, + 0x761: 68, + 0x762: 68, + 0x763: 68, + 0x764: 68, + 0x765: 68, + 0x766: 68, + 0x767: 68, + 0x768: 68, + 0x769: 68, + 0x76A: 68, + 0x76B: 82, + 0x76C: 82, + 0x76D: 68, + 0x76E: 68, + 0x76F: 68, + 0x770: 68, + 0x771: 82, + 0x772: 68, + 0x773: 82, + 0x774: 82, + 0x775: 68, + 0x776: 68, + 0x777: 68, + 0x778: 82, + 0x779: 82, + 0x77A: 68, + 0x77B: 68, + 0x77C: 68, + 0x77D: 68, + 0x77E: 68, + 0x77F: 68, + 0x7A6: 84, + 0x7A7: 84, + 0x7A8: 84, + 0x7A9: 84, + 0x7AA: 84, + 0x7AB: 84, + 0x7AC: 84, + 0x7AD: 84, + 0x7AE: 84, + 0x7AF: 84, + 0x7B0: 84, + 0x7CA: 68, + 0x7CB: 68, + 0x7CC: 68, + 0x7CD: 68, + 0x7CE: 68, + 0x7CF: 68, + 0x7D0: 68, + 0x7D1: 68, + 0x7D2: 68, + 0x7D3: 68, + 0x7D4: 68, + 0x7D5: 68, + 0x7D6: 68, + 0x7D7: 68, + 0x7D8: 68, + 0x7D9: 68, + 0x7DA: 68, + 0x7DB: 68, + 0x7DC: 68, + 0x7DD: 68, + 0x7DE: 68, + 0x7DF: 68, + 0x7E0: 68, + 0x7E1: 68, + 0x7E2: 68, + 0x7E3: 68, + 0x7E4: 68, + 0x7E5: 68, + 0x7E6: 68, + 0x7E7: 68, + 0x7E8: 68, + 0x7E9: 68, + 0x7EA: 68, + 0x7EB: 84, + 0x7EC: 84, + 0x7ED: 84, + 0x7EE: 84, + 0x7EF: 84, + 0x7F0: 84, + 0x7F1: 84, + 0x7F2: 84, + 0x7F3: 84, + 0x7FA: 67, + 0x7FD: 84, + 0x816: 84, + 0x817: 84, + 0x818: 84, + 0x819: 84, + 0x81B: 84, + 0x81C: 84, + 0x81D: 84, + 0x81E: 84, + 0x81F: 84, + 0x820: 84, + 0x821: 84, + 0x822: 84, + 0x823: 84, + 0x825: 84, + 0x826: 84, + 0x827: 84, + 0x829: 84, + 0x82A: 84, + 0x82B: 84, + 0x82C: 84, + 0x82D: 84, + 0x840: 82, + 0x841: 68, + 0x842: 68, + 0x843: 68, + 0x844: 68, + 0x845: 68, + 0x846: 82, + 0x847: 82, + 0x848: 68, + 0x849: 82, + 0x84A: 68, + 0x84B: 68, + 0x84C: 68, + 0x84D: 68, + 0x84E: 68, + 0x84F: 68, + 0x850: 68, + 0x851: 68, + 0x852: 68, + 0x853: 68, + 0x854: 82, + 0x855: 68, + 0x856: 82, + 0x857: 82, + 0x858: 82, + 0x859: 84, + 0x85A: 84, + 0x85B: 84, + 0x860: 68, + 0x862: 68, + 0x863: 68, + 0x864: 68, + 0x865: 68, + 0x867: 82, + 0x868: 68, + 0x869: 82, + 0x86A: 82, + 0x870: 82, + 0x871: 82, + 0x872: 82, + 0x873: 82, + 0x874: 82, + 0x875: 82, + 0x876: 82, + 0x877: 82, + 0x878: 82, + 0x879: 82, + 0x87A: 82, + 0x87B: 82, + 0x87C: 82, + 0x87D: 82, + 0x87E: 82, + 0x87F: 82, + 0x880: 82, + 0x881: 82, + 0x882: 82, + 0x883: 67, + 0x884: 67, + 0x885: 67, + 0x886: 68, + 0x889: 68, + 0x88A: 68, + 0x88B: 68, + 0x88C: 68, + 0x88D: 68, + 0x88E: 82, + 0x898: 84, + 0x899: 84, + 0x89A: 84, + 0x89B: 84, + 0x89C: 84, + 0x89D: 84, + 0x89E: 84, + 0x89F: 84, + 0x8A0: 68, + 0x8A1: 68, + 0x8A2: 68, + 0x8A3: 68, + 0x8A4: 68, + 0x8A5: 68, + 0x8A6: 68, + 0x8A7: 68, + 0x8A8: 68, + 0x8A9: 68, + 0x8AA: 82, + 0x8AB: 82, + 0x8AC: 82, + 0x8AE: 82, + 0x8AF: 68, + 0x8B0: 68, + 0x8B1: 82, + 0x8B2: 82, + 0x8B3: 68, + 0x8B4: 68, + 0x8B5: 68, + 0x8B6: 68, + 0x8B7: 68, + 0x8B8: 68, + 0x8B9: 82, + 0x8BA: 68, + 0x8BB: 68, + 0x8BC: 68, + 0x8BD: 68, + 0x8BE: 68, + 0x8BF: 68, + 0x8C0: 68, + 0x8C1: 68, + 0x8C2: 68, + 0x8C3: 68, + 0x8C4: 68, + 0x8C5: 68, + 0x8C6: 68, + 0x8C7: 68, + 0x8C8: 68, + 0x8CA: 84, + 0x8CB: 84, + 0x8CC: 84, + 0x8CD: 84, + 0x8CE: 84, + 0x8CF: 84, + 0x8D0: 84, + 0x8D1: 84, + 0x8D2: 84, + 0x8D3: 84, + 0x8D4: 84, + 0x8D5: 84, + 0x8D6: 84, + 0x8D7: 84, + 0x8D8: 84, + 0x8D9: 84, + 0x8DA: 84, + 0x8DB: 84, + 0x8DC: 84, + 0x8DD: 84, + 0x8DE: 84, + 0x8DF: 84, + 0x8E0: 84, + 0x8E1: 84, + 0x8E3: 84, + 0x8E4: 84, + 0x8E5: 84, + 0x8E6: 84, + 0x8E7: 84, + 0x8E8: 84, + 0x8E9: 84, + 0x8EA: 84, + 0x8EB: 84, + 0x8EC: 84, + 0x8ED: 84, + 0x8EE: 84, + 0x8EF: 84, + 0x8F0: 84, + 0x8F1: 84, + 0x8F2: 84, + 0x8F3: 84, + 0x8F4: 84, + 0x8F5: 84, + 0x8F6: 84, + 0x8F7: 84, + 0x8F8: 84, + 0x8F9: 84, + 0x8FA: 84, + 0x8FB: 84, + 0x8FC: 84, + 0x8FD: 84, + 0x8FE: 84, + 0x8FF: 84, + 0x900: 84, + 0x901: 84, + 0x902: 84, + 0x93A: 84, + 0x93C: 84, + 0x941: 84, + 0x942: 84, + 0x943: 84, + 0x944: 84, + 0x945: 84, + 0x946: 84, + 0x947: 84, + 0x948: 84, + 0x94D: 84, + 0x951: 84, + 0x952: 84, + 0x953: 84, + 0x954: 84, + 0x955: 84, + 0x956: 84, + 0x957: 84, + 0x962: 84, + 0x963: 84, + 0x981: 84, + 0x9BC: 84, + 0x9C1: 84, + 0x9C2: 84, + 0x9C3: 84, + 0x9C4: 84, + 0x9CD: 84, + 0x9E2: 84, + 0x9E3: 84, + 0x9FE: 84, + 0xA01: 84, + 0xA02: 84, + 0xA3C: 84, + 0xA41: 84, + 0xA42: 84, + 0xA47: 84, + 0xA48: 84, + 0xA4B: 84, + 0xA4C: 84, + 0xA4D: 84, + 0xA51: 84, + 0xA70: 84, + 0xA71: 84, + 0xA75: 84, + 0xA81: 84, + 0xA82: 84, + 0xABC: 84, + 0xAC1: 84, + 0xAC2: 84, + 0xAC3: 84, + 0xAC4: 84, + 0xAC5: 84, + 0xAC7: 84, + 0xAC8: 84, + 0xACD: 84, + 0xAE2: 84, + 0xAE3: 84, + 0xAFA: 84, + 0xAFB: 84, + 0xAFC: 84, + 0xAFD: 84, + 0xAFE: 84, + 0xAFF: 84, + 0xB01: 84, + 0xB3C: 84, + 0xB3F: 84, + 0xB41: 84, + 0xB42: 84, + 0xB43: 84, + 0xB44: 84, + 0xB4D: 84, + 0xB55: 84, + 0xB56: 84, + 0xB62: 84, + 0xB63: 84, + 0xB82: 84, + 0xBC0: 84, + 0xBCD: 84, + 0xC00: 84, + 0xC04: 84, + 0xC3C: 84, + 0xC3E: 84, + 0xC3F: 84, + 0xC40: 84, + 0xC46: 84, + 0xC47: 84, + 0xC48: 84, + 0xC4A: 84, + 0xC4B: 84, + 0xC4C: 84, + 0xC4D: 84, + 0xC55: 84, + 0xC56: 84, + 0xC62: 84, + 0xC63: 84, + 0xC81: 84, + 0xCBC: 84, + 0xCBF: 84, + 0xCC6: 84, + 0xCCC: 84, + 0xCCD: 84, + 0xCE2: 84, + 0xCE3: 84, + 0xD00: 84, + 0xD01: 84, + 0xD3B: 84, + 0xD3C: 84, + 0xD41: 84, + 0xD42: 84, + 0xD43: 84, + 0xD44: 84, + 0xD4D: 84, + 0xD62: 84, + 0xD63: 84, + 0xD81: 84, + 0xDCA: 84, + 0xDD2: 84, + 0xDD3: 84, + 0xDD4: 84, + 0xDD6: 84, + 0xE31: 84, + 0xE34: 84, + 0xE35: 84, + 0xE36: 84, + 0xE37: 84, + 0xE38: 84, + 0xE39: 84, + 0xE3A: 84, + 0xE47: 84, + 0xE48: 84, + 0xE49: 84, + 0xE4A: 84, + 0xE4B: 84, + 0xE4C: 84, + 0xE4D: 84, + 0xE4E: 84, + 0xEB1: 84, + 0xEB4: 84, + 0xEB5: 84, + 0xEB6: 84, + 0xEB7: 84, + 0xEB8: 84, + 0xEB9: 84, + 0xEBA: 84, + 0xEBB: 84, + 0xEBC: 84, + 0xEC8: 84, + 0xEC9: 84, + 0xECA: 84, + 0xECB: 84, + 0xECC: 84, + 0xECD: 84, + 0xECE: 84, + 0xF18: 84, + 0xF19: 84, + 0xF35: 84, + 0xF37: 84, + 0xF39: 84, + 0xF71: 84, + 0xF72: 84, + 0xF73: 84, + 0xF74: 84, + 0xF75: 84, + 0xF76: 84, + 0xF77: 84, + 0xF78: 84, + 0xF79: 84, + 0xF7A: 84, + 0xF7B: 84, + 0xF7C: 84, + 0xF7D: 84, + 0xF7E: 84, + 0xF80: 84, + 0xF81: 84, + 0xF82: 84, + 0xF83: 84, + 0xF84: 84, + 0xF86: 84, + 0xF87: 84, + 0xF8D: 84, + 0xF8E: 84, + 0xF8F: 84, + 0xF90: 84, + 0xF91: 84, + 0xF92: 84, + 0xF93: 84, + 0xF94: 84, + 0xF95: 84, + 0xF96: 84, + 0xF97: 84, + 0xF99: 84, + 0xF9A: 84, + 0xF9B: 84, + 0xF9C: 84, + 0xF9D: 84, + 0xF9E: 84, + 0xF9F: 84, + 0xFA0: 84, + 0xFA1: 84, + 0xFA2: 84, + 0xFA3: 84, + 0xFA4: 84, + 0xFA5: 84, + 0xFA6: 84, + 0xFA7: 84, + 0xFA8: 84, + 0xFA9: 84, + 0xFAA: 84, + 0xFAB: 84, + 0xFAC: 84, + 0xFAD: 84, + 0xFAE: 84, + 0xFAF: 84, + 0xFB0: 84, + 0xFB1: 84, + 0xFB2: 84, + 0xFB3: 84, + 0xFB4: 84, + 0xFB5: 84, + 0xFB6: 84, + 0xFB7: 84, + 0xFB8: 84, + 0xFB9: 84, + 0xFBA: 84, + 0xFBB: 84, + 0xFBC: 84, + 0xFC6: 84, + 0x102D: 84, + 0x102E: 84, + 0x102F: 84, + 0x1030: 84, + 0x1032: 84, + 0x1033: 84, + 0x1034: 84, + 0x1035: 84, + 0x1036: 84, + 0x1037: 84, + 0x1039: 84, + 0x103A: 84, + 0x103D: 84, + 0x103E: 84, + 0x1058: 84, + 0x1059: 84, + 0x105E: 84, + 0x105F: 84, + 0x1060: 84, + 0x1071: 84, + 0x1072: 84, + 0x1073: 84, + 0x1074: 84, + 0x1082: 84, + 0x1085: 84, + 0x1086: 84, + 0x108D: 84, + 0x109D: 84, + 0x135D: 84, + 0x135E: 84, + 0x135F: 84, + 0x1712: 84, + 0x1713: 84, + 0x1714: 84, + 0x1732: 84, + 0x1733: 84, + 0x1752: 84, + 0x1753: 84, + 0x1772: 84, + 0x1773: 84, + 0x17B4: 84, + 0x17B5: 84, + 0x17B7: 84, + 0x17B8: 84, + 0x17B9: 84, + 0x17BA: 84, + 0x17BB: 84, + 0x17BC: 84, + 0x17BD: 84, + 0x17C6: 84, + 0x17C9: 84, + 0x17CA: 84, + 0x17CB: 84, + 0x17CC: 84, + 0x17CD: 84, + 0x17CE: 84, + 0x17CF: 84, + 0x17D0: 84, + 0x17D1: 84, + 0x17D2: 84, + 0x17D3: 84, + 0x17DD: 84, + 0x1807: 68, + 0x180A: 67, + 0x180B: 84, + 0x180C: 84, + 0x180D: 84, + 0x180F: 84, + 0x1820: 68, + 0x1821: 68, + 0x1822: 68, + 0x1823: 68, + 0x1824: 68, + 0x1825: 68, + 0x1826: 68, + 0x1827: 68, + 0x1828: 68, + 0x1829: 68, + 0x182A: 68, + 0x182B: 68, + 0x182C: 68, + 0x182D: 68, + 0x182E: 68, + 0x182F: 68, + 0x1830: 68, + 0x1831: 68, + 0x1832: 68, + 0x1833: 68, + 0x1834: 68, + 0x1835: 68, + 0x1836: 68, + 0x1837: 68, + 0x1838: 68, + 0x1839: 68, + 0x183A: 68, + 0x183B: 68, + 0x183C: 68, + 0x183D: 68, + 0x183E: 68, + 0x183F: 68, + 0x1840: 68, + 0x1841: 68, + 0x1842: 68, + 0x1843: 68, + 0x1844: 68, + 0x1845: 68, + 0x1846: 68, + 0x1847: 68, + 0x1848: 68, + 0x1849: 68, + 0x184A: 68, + 0x184B: 68, + 0x184C: 68, + 0x184D: 68, + 0x184E: 68, + 0x184F: 68, + 0x1850: 68, + 0x1851: 68, + 0x1852: 68, + 0x1853: 68, + 0x1854: 68, + 0x1855: 68, + 0x1856: 68, + 0x1857: 68, + 0x1858: 68, + 0x1859: 68, + 0x185A: 68, + 0x185B: 68, + 0x185C: 68, + 0x185D: 68, + 0x185E: 68, + 0x185F: 68, + 0x1860: 68, + 0x1861: 68, + 0x1862: 68, + 0x1863: 68, + 0x1864: 68, + 0x1865: 68, + 0x1866: 68, + 0x1867: 68, + 0x1868: 68, + 0x1869: 68, + 0x186A: 68, + 0x186B: 68, + 0x186C: 68, + 0x186D: 68, + 0x186E: 68, + 0x186F: 68, + 0x1870: 68, + 0x1871: 68, + 0x1872: 68, + 0x1873: 68, + 0x1874: 68, + 0x1875: 68, + 0x1876: 68, + 0x1877: 68, + 0x1878: 68, + 0x1885: 84, + 0x1886: 84, + 0x1887: 68, + 0x1888: 68, + 0x1889: 68, + 0x188A: 68, + 0x188B: 68, + 0x188C: 68, + 0x188D: 68, + 0x188E: 68, + 0x188F: 68, + 0x1890: 68, + 0x1891: 68, + 0x1892: 68, + 0x1893: 68, + 0x1894: 68, + 0x1895: 68, + 0x1896: 68, + 0x1897: 68, + 0x1898: 68, + 0x1899: 68, + 0x189A: 68, + 0x189B: 68, + 0x189C: 68, + 0x189D: 68, + 0x189E: 68, + 0x189F: 68, + 0x18A0: 68, + 0x18A1: 68, + 0x18A2: 68, + 0x18A3: 68, + 0x18A4: 68, + 0x18A5: 68, + 0x18A6: 68, + 0x18A7: 68, + 0x18A8: 68, + 0x18A9: 84, + 0x18AA: 68, + 0x1920: 84, + 0x1921: 84, + 0x1922: 84, + 0x1927: 84, + 0x1928: 84, + 0x1932: 84, + 0x1939: 84, + 0x193A: 84, + 0x193B: 84, + 0x1A17: 84, + 0x1A18: 84, + 0x1A1B: 84, + 0x1A56: 84, + 0x1A58: 84, + 0x1A59: 84, + 0x1A5A: 84, + 0x1A5B: 84, + 0x1A5C: 84, + 0x1A5D: 84, + 0x1A5E: 84, + 0x1A60: 84, + 0x1A62: 84, + 0x1A65: 84, + 0x1A66: 84, + 0x1A67: 84, + 0x1A68: 84, + 0x1A69: 84, + 0x1A6A: 84, + 0x1A6B: 84, + 0x1A6C: 84, + 0x1A73: 84, + 0x1A74: 84, + 0x1A75: 84, + 0x1A76: 84, + 0x1A77: 84, + 0x1A78: 84, + 0x1A79: 84, + 0x1A7A: 84, + 0x1A7B: 84, + 0x1A7C: 84, + 0x1A7F: 84, + 0x1AB0: 84, + 0x1AB1: 84, + 0x1AB2: 84, + 0x1AB3: 84, + 0x1AB4: 84, + 0x1AB5: 84, + 0x1AB6: 84, + 0x1AB7: 84, + 0x1AB8: 84, + 0x1AB9: 84, + 0x1ABA: 84, + 0x1ABB: 84, + 0x1ABC: 84, + 0x1ABD: 84, + 0x1ABE: 84, + 0x1ABF: 84, + 0x1AC0: 84, + 0x1AC1: 84, + 0x1AC2: 84, + 0x1AC3: 84, + 0x1AC4: 84, + 0x1AC5: 84, + 0x1AC6: 84, + 0x1AC7: 84, + 0x1AC8: 84, + 0x1AC9: 84, + 0x1ACA: 84, + 0x1ACB: 84, + 0x1ACC: 84, + 0x1ACD: 84, + 0x1ACE: 84, + 0x1B00: 84, + 0x1B01: 84, + 0x1B02: 84, + 0x1B03: 84, + 0x1B34: 84, + 0x1B36: 84, + 0x1B37: 84, + 0x1B38: 84, + 0x1B39: 84, + 0x1B3A: 84, + 0x1B3C: 84, + 0x1B42: 84, + 0x1B6B: 84, + 0x1B6C: 84, + 0x1B6D: 84, + 0x1B6E: 84, + 0x1B6F: 84, + 0x1B70: 84, + 0x1B71: 84, + 0x1B72: 84, + 0x1B73: 84, + 0x1B80: 84, + 0x1B81: 84, + 0x1BA2: 84, + 0x1BA3: 84, + 0x1BA4: 84, + 0x1BA5: 84, + 0x1BA8: 84, + 0x1BA9: 84, + 0x1BAB: 84, + 0x1BAC: 84, + 0x1BAD: 84, + 0x1BE6: 84, + 0x1BE8: 84, + 0x1BE9: 84, + 0x1BED: 84, + 0x1BEF: 84, + 0x1BF0: 84, + 0x1BF1: 84, + 0x1C2C: 84, + 0x1C2D: 84, + 0x1C2E: 84, + 0x1C2F: 84, + 0x1C30: 84, + 0x1C31: 84, + 0x1C32: 84, + 0x1C33: 84, + 0x1C36: 84, + 0x1C37: 84, + 0x1CD0: 84, + 0x1CD1: 84, + 0x1CD2: 84, + 0x1CD4: 84, + 0x1CD5: 84, + 0x1CD6: 84, + 0x1CD7: 84, + 0x1CD8: 84, + 0x1CD9: 84, + 0x1CDA: 84, + 0x1CDB: 84, + 0x1CDC: 84, + 0x1CDD: 84, + 0x1CDE: 84, + 0x1CDF: 84, + 0x1CE0: 84, + 0x1CE2: 84, + 0x1CE3: 84, + 0x1CE4: 84, + 0x1CE5: 84, + 0x1CE6: 84, + 0x1CE7: 84, + 0x1CE8: 84, + 0x1CED: 84, + 0x1CF4: 84, + 0x1CF8: 84, + 0x1CF9: 84, + 0x1DC0: 84, + 0x1DC1: 84, + 0x1DC2: 84, + 0x1DC3: 84, + 0x1DC4: 84, + 0x1DC5: 84, + 0x1DC6: 84, + 0x1DC7: 84, + 0x1DC8: 84, + 0x1DC9: 84, + 0x1DCA: 84, + 0x1DCB: 84, + 0x1DCC: 84, + 0x1DCD: 84, + 0x1DCE: 84, + 0x1DCF: 84, + 0x1DD0: 84, + 0x1DD1: 84, + 0x1DD2: 84, + 0x1DD3: 84, + 0x1DD4: 84, + 0x1DD5: 84, + 0x1DD6: 84, + 0x1DD7: 84, + 0x1DD8: 84, + 0x1DD9: 84, + 0x1DDA: 84, + 0x1DDB: 84, + 0x1DDC: 84, + 0x1DDD: 84, + 0x1DDE: 84, + 0x1DDF: 84, + 0x1DE0: 84, + 0x1DE1: 84, + 0x1DE2: 84, + 0x1DE3: 84, + 0x1DE4: 84, + 0x1DE5: 84, + 0x1DE6: 84, + 0x1DE7: 84, + 0x1DE8: 84, + 0x1DE9: 84, + 0x1DEA: 84, + 0x1DEB: 84, + 0x1DEC: 84, + 0x1DED: 84, + 0x1DEE: 84, + 0x1DEF: 84, + 0x1DF0: 84, + 0x1DF1: 84, + 0x1DF2: 84, + 0x1DF3: 84, + 0x1DF4: 84, + 0x1DF5: 84, + 0x1DF6: 84, + 0x1DF7: 84, + 0x1DF8: 84, + 0x1DF9: 84, + 0x1DFA: 84, + 0x1DFB: 84, + 0x1DFC: 84, + 0x1DFD: 84, + 0x1DFE: 84, + 0x1DFF: 84, + 0x200B: 84, + 0x200D: 67, + 0x200E: 84, + 0x200F: 84, + 0x202A: 84, + 0x202B: 84, + 0x202C: 84, + 0x202D: 84, + 0x202E: 84, + 0x2060: 84, + 0x2061: 84, + 0x2062: 84, + 0x2063: 84, + 0x2064: 84, + 0x206A: 84, + 0x206B: 84, + 0x206C: 84, + 0x206D: 84, + 0x206E: 84, + 0x206F: 84, + 0x20D0: 84, + 0x20D1: 84, + 0x20D2: 84, + 0x20D3: 84, + 0x20D4: 84, + 0x20D5: 84, + 0x20D6: 84, + 0x20D7: 84, + 0x20D8: 84, + 0x20D9: 84, + 0x20DA: 84, + 0x20DB: 84, + 0x20DC: 84, + 0x20DD: 84, + 0x20DE: 84, + 0x20DF: 84, + 0x20E0: 84, + 0x20E1: 84, + 0x20E2: 84, + 0x20E3: 84, + 0x20E4: 84, + 0x20E5: 84, + 0x20E6: 84, + 0x20E7: 84, + 0x20E8: 84, + 0x20E9: 84, + 0x20EA: 84, + 0x20EB: 84, + 0x20EC: 84, + 0x20ED: 84, + 0x20EE: 84, + 0x20EF: 84, + 0x20F0: 84, + 0x2CEF: 84, + 0x2CF0: 84, + 0x2CF1: 84, + 0x2D7F: 84, + 0x2DE0: 84, + 0x2DE1: 84, + 0x2DE2: 84, + 0x2DE3: 84, + 0x2DE4: 84, + 0x2DE5: 84, + 0x2DE6: 84, + 0x2DE7: 84, + 0x2DE8: 84, + 0x2DE9: 84, + 0x2DEA: 84, + 0x2DEB: 84, + 0x2DEC: 84, + 0x2DED: 84, + 0x2DEE: 84, + 0x2DEF: 84, + 0x2DF0: 84, + 0x2DF1: 84, + 0x2DF2: 84, + 0x2DF3: 84, + 0x2DF4: 84, + 0x2DF5: 84, + 0x2DF6: 84, + 0x2DF7: 84, + 0x2DF8: 84, + 0x2DF9: 84, + 0x2DFA: 84, + 0x2DFB: 84, + 0x2DFC: 84, + 0x2DFD: 84, + 0x2DFE: 84, + 0x2DFF: 84, + 0x302A: 84, + 0x302B: 84, + 0x302C: 84, + 0x302D: 84, + 0x3099: 84, + 0x309A: 84, + 0xA66F: 84, + 0xA670: 84, + 0xA671: 84, + 0xA672: 84, + 0xA674: 84, + 0xA675: 84, + 0xA676: 84, + 0xA677: 84, + 0xA678: 84, + 0xA679: 84, + 0xA67A: 84, + 0xA67B: 84, + 0xA67C: 84, + 0xA67D: 84, + 0xA69E: 84, + 0xA69F: 84, + 0xA6F0: 84, + 0xA6F1: 84, + 0xA802: 84, + 0xA806: 84, + 0xA80B: 84, + 0xA825: 84, + 0xA826: 84, + 0xA82C: 84, + 0xA840: 68, + 0xA841: 68, + 0xA842: 68, + 0xA843: 68, + 0xA844: 68, + 0xA845: 68, + 0xA846: 68, + 0xA847: 68, + 0xA848: 68, + 0xA849: 68, + 0xA84A: 68, + 0xA84B: 68, + 0xA84C: 68, + 0xA84D: 68, + 0xA84E: 68, + 0xA84F: 68, + 0xA850: 68, + 0xA851: 68, + 0xA852: 68, + 0xA853: 68, + 0xA854: 68, + 0xA855: 68, + 0xA856: 68, + 0xA857: 68, + 0xA858: 68, + 0xA859: 68, + 0xA85A: 68, + 0xA85B: 68, + 0xA85C: 68, + 0xA85D: 68, + 0xA85E: 68, + 0xA85F: 68, + 0xA860: 68, + 0xA861: 68, + 0xA862: 68, + 0xA863: 68, + 0xA864: 68, + 0xA865: 68, + 0xA866: 68, + 0xA867: 68, + 0xA868: 68, + 0xA869: 68, + 0xA86A: 68, + 0xA86B: 68, + 0xA86C: 68, + 0xA86D: 68, + 0xA86E: 68, + 0xA86F: 68, + 0xA870: 68, + 0xA871: 68, + 0xA872: 76, + 0xA8C4: 84, + 0xA8C5: 84, + 0xA8E0: 84, + 0xA8E1: 84, + 0xA8E2: 84, + 0xA8E3: 84, + 0xA8E4: 84, + 0xA8E5: 84, + 0xA8E6: 84, + 0xA8E7: 84, + 0xA8E8: 84, + 0xA8E9: 84, + 0xA8EA: 84, + 0xA8EB: 84, + 0xA8EC: 84, + 0xA8ED: 84, + 0xA8EE: 84, + 0xA8EF: 84, + 0xA8F0: 84, + 0xA8F1: 84, + 0xA8FF: 84, + 0xA926: 84, + 0xA927: 84, + 0xA928: 84, + 0xA929: 84, + 0xA92A: 84, + 0xA92B: 84, + 0xA92C: 84, + 0xA92D: 84, + 0xA947: 84, + 0xA948: 84, + 0xA949: 84, + 0xA94A: 84, + 0xA94B: 84, + 0xA94C: 84, + 0xA94D: 84, + 0xA94E: 84, + 0xA94F: 84, + 0xA950: 84, + 0xA951: 84, + 0xA980: 84, + 0xA981: 84, + 0xA982: 84, + 0xA9B3: 84, + 0xA9B6: 84, + 0xA9B7: 84, + 0xA9B8: 84, + 0xA9B9: 84, + 0xA9BC: 84, + 0xA9BD: 84, + 0xA9E5: 84, + 0xAA29: 84, + 0xAA2A: 84, + 0xAA2B: 84, + 0xAA2C: 84, + 0xAA2D: 84, + 0xAA2E: 84, + 0xAA31: 84, + 0xAA32: 84, + 0xAA35: 84, + 0xAA36: 84, + 0xAA43: 84, + 0xAA4C: 84, + 0xAA7C: 84, + 0xAAB0: 84, + 0xAAB2: 84, + 0xAAB3: 84, + 0xAAB4: 84, + 0xAAB7: 84, + 0xAAB8: 84, + 0xAABE: 84, + 0xAABF: 84, + 0xAAC1: 84, + 0xAAEC: 84, + 0xAAED: 84, + 0xAAF6: 84, + 0xABE5: 84, + 0xABE8: 84, + 0xABED: 84, + 0xFB1E: 84, + 0xFE00: 84, + 0xFE01: 84, + 0xFE02: 84, + 0xFE03: 84, + 0xFE04: 84, + 0xFE05: 84, + 0xFE06: 84, + 0xFE07: 84, + 0xFE08: 84, + 0xFE09: 84, + 0xFE0A: 84, + 0xFE0B: 84, + 0xFE0C: 84, + 0xFE0D: 84, + 0xFE0E: 84, + 0xFE0F: 84, + 0xFE20: 84, + 0xFE21: 84, + 0xFE22: 84, + 0xFE23: 84, + 0xFE24: 84, + 0xFE25: 84, + 0xFE26: 84, + 0xFE27: 84, + 0xFE28: 84, + 0xFE29: 84, + 0xFE2A: 84, + 0xFE2B: 84, + 0xFE2C: 84, + 0xFE2D: 84, + 0xFE2E: 84, + 0xFE2F: 84, + 0xFEFF: 84, + 0xFFF9: 84, + 0xFFFA: 84, + 0xFFFB: 84, + 0x101FD: 84, + 0x102E0: 84, + 0x10376: 84, + 0x10377: 84, + 0x10378: 84, + 0x10379: 84, + 0x1037A: 84, + 0x10A01: 84, + 0x10A02: 84, + 0x10A03: 84, + 0x10A05: 84, + 0x10A06: 84, + 0x10A0C: 84, + 0x10A0D: 84, + 0x10A0E: 84, + 0x10A0F: 84, + 0x10A38: 84, + 0x10A39: 84, + 0x10A3A: 84, + 0x10A3F: 84, + 0x10AC0: 68, + 0x10AC1: 68, + 0x10AC2: 68, + 0x10AC3: 68, + 0x10AC4: 68, + 0x10AC5: 82, + 0x10AC7: 82, + 0x10AC9: 82, + 0x10ACA: 82, + 0x10ACD: 76, + 0x10ACE: 82, + 0x10ACF: 82, + 0x10AD0: 82, + 0x10AD1: 82, + 0x10AD2: 82, + 0x10AD3: 68, + 0x10AD4: 68, + 0x10AD5: 68, + 0x10AD6: 68, + 0x10AD7: 76, + 0x10AD8: 68, + 0x10AD9: 68, + 0x10ADA: 68, + 0x10ADB: 68, + 0x10ADC: 68, + 0x10ADD: 82, + 0x10ADE: 68, + 0x10ADF: 68, + 0x10AE0: 68, + 0x10AE1: 82, + 0x10AE4: 82, + 0x10AE5: 84, + 0x10AE6: 84, + 0x10AEB: 68, + 0x10AEC: 68, + 0x10AED: 68, + 0x10AEE: 68, + 0x10AEF: 82, + 0x10B80: 68, + 0x10B81: 82, + 0x10B82: 68, + 0x10B83: 82, + 0x10B84: 82, + 0x10B85: 82, + 0x10B86: 68, + 0x10B87: 68, + 0x10B88: 68, + 0x10B89: 82, + 0x10B8A: 68, + 0x10B8B: 68, + 0x10B8C: 82, + 0x10B8D: 68, + 0x10B8E: 82, + 0x10B8F: 82, + 0x10B90: 68, + 0x10B91: 82, + 0x10BA9: 82, + 0x10BAA: 82, + 0x10BAB: 82, + 0x10BAC: 82, + 0x10BAD: 68, + 0x10BAE: 68, + 0x10D00: 76, + 0x10D01: 68, + 0x10D02: 68, + 0x10D03: 68, + 0x10D04: 68, + 0x10D05: 68, + 0x10D06: 68, + 0x10D07: 68, + 0x10D08: 68, + 0x10D09: 68, + 0x10D0A: 68, + 0x10D0B: 68, + 0x10D0C: 68, + 0x10D0D: 68, + 0x10D0E: 68, + 0x10D0F: 68, + 0x10D10: 68, + 0x10D11: 68, + 0x10D12: 68, + 0x10D13: 68, + 0x10D14: 68, + 0x10D15: 68, + 0x10D16: 68, + 0x10D17: 68, + 0x10D18: 68, + 0x10D19: 68, + 0x10D1A: 68, + 0x10D1B: 68, + 0x10D1C: 68, + 0x10D1D: 68, + 0x10D1E: 68, + 0x10D1F: 68, + 0x10D20: 68, + 0x10D21: 68, + 0x10D22: 82, + 0x10D23: 68, + 0x10D24: 84, + 0x10D25: 84, + 0x10D26: 84, + 0x10D27: 84, + 0x10EAB: 84, + 0x10EAC: 84, + 0x10EFD: 84, + 0x10EFE: 84, + 0x10EFF: 84, + 0x10F30: 68, + 0x10F31: 68, + 0x10F32: 68, + 0x10F33: 82, + 0x10F34: 68, + 0x10F35: 68, + 0x10F36: 68, + 0x10F37: 68, + 0x10F38: 68, + 0x10F39: 68, + 0x10F3A: 68, + 0x10F3B: 68, + 0x10F3C: 68, + 0x10F3D: 68, + 0x10F3E: 68, + 0x10F3F: 68, + 0x10F40: 68, + 0x10F41: 68, + 0x10F42: 68, + 0x10F43: 68, + 0x10F44: 68, + 0x10F46: 84, + 0x10F47: 84, + 0x10F48: 84, + 0x10F49: 84, + 0x10F4A: 84, + 0x10F4B: 84, + 0x10F4C: 84, + 0x10F4D: 84, + 0x10F4E: 84, + 0x10F4F: 84, + 0x10F50: 84, + 0x10F51: 68, + 0x10F52: 68, + 0x10F53: 68, + 0x10F54: 82, + 0x10F70: 68, + 0x10F71: 68, + 0x10F72: 68, + 0x10F73: 68, + 0x10F74: 82, + 0x10F75: 82, + 0x10F76: 68, + 0x10F77: 68, + 0x10F78: 68, + 0x10F79: 68, + 0x10F7A: 68, + 0x10F7B: 68, + 0x10F7C: 68, + 0x10F7D: 68, + 0x10F7E: 68, + 0x10F7F: 68, + 0x10F80: 68, + 0x10F81: 68, + 0x10F82: 84, + 0x10F83: 84, + 0x10F84: 84, + 0x10F85: 84, + 0x10FB0: 68, + 0x10FB2: 68, + 0x10FB3: 68, + 0x10FB4: 82, + 0x10FB5: 82, + 0x10FB6: 82, + 0x10FB8: 68, + 0x10FB9: 82, + 0x10FBA: 82, + 0x10FBB: 68, + 0x10FBC: 68, + 0x10FBD: 82, + 0x10FBE: 68, + 0x10FBF: 68, + 0x10FC1: 68, + 0x10FC2: 82, + 0x10FC3: 82, + 0x10FC4: 68, + 0x10FC9: 82, + 0x10FCA: 68, + 0x10FCB: 76, + 0x11001: 84, + 0x11038: 84, + 0x11039: 84, + 0x1103A: 84, + 0x1103B: 84, + 0x1103C: 84, + 0x1103D: 84, + 0x1103E: 84, + 0x1103F: 84, + 0x11040: 84, + 0x11041: 84, + 0x11042: 84, + 0x11043: 84, + 0x11044: 84, + 0x11045: 84, + 0x11046: 84, + 0x11070: 84, + 0x11073: 84, + 0x11074: 84, + 0x1107F: 84, + 0x11080: 84, + 0x11081: 84, + 0x110B3: 84, + 0x110B4: 84, + 0x110B5: 84, + 0x110B6: 84, + 0x110B9: 84, + 0x110BA: 84, + 0x110C2: 84, + 0x11100: 84, + 0x11101: 84, + 0x11102: 84, + 0x11127: 84, + 0x11128: 84, + 0x11129: 84, + 0x1112A: 84, + 0x1112B: 84, + 0x1112D: 84, + 0x1112E: 84, + 0x1112F: 84, + 0x11130: 84, + 0x11131: 84, + 0x11132: 84, + 0x11133: 84, + 0x11134: 84, + 0x11173: 84, + 0x11180: 84, + 0x11181: 84, + 0x111B6: 84, + 0x111B7: 84, + 0x111B8: 84, + 0x111B9: 84, + 0x111BA: 84, + 0x111BB: 84, + 0x111BC: 84, + 0x111BD: 84, + 0x111BE: 84, + 0x111C9: 84, + 0x111CA: 84, + 0x111CB: 84, + 0x111CC: 84, + 0x111CF: 84, + 0x1122F: 84, + 0x11230: 84, + 0x11231: 84, + 0x11234: 84, + 0x11236: 84, + 0x11237: 84, + 0x1123E: 84, + 0x11241: 84, + 0x112DF: 84, + 0x112E3: 84, + 0x112E4: 84, + 0x112E5: 84, + 0x112E6: 84, + 0x112E7: 84, + 0x112E8: 84, + 0x112E9: 84, + 0x112EA: 84, + 0x11300: 84, + 0x11301: 84, + 0x1133B: 84, + 0x1133C: 84, + 0x11340: 84, + 0x11366: 84, + 0x11367: 84, + 0x11368: 84, + 0x11369: 84, + 0x1136A: 84, + 0x1136B: 84, + 0x1136C: 84, + 0x11370: 84, + 0x11371: 84, + 0x11372: 84, + 0x11373: 84, + 0x11374: 84, + 0x11438: 84, + 0x11439: 84, + 0x1143A: 84, + 0x1143B: 84, + 0x1143C: 84, + 0x1143D: 84, + 0x1143E: 84, + 0x1143F: 84, + 0x11442: 84, + 0x11443: 84, + 0x11444: 84, + 0x11446: 84, + 0x1145E: 84, + 0x114B3: 84, + 0x114B4: 84, + 0x114B5: 84, + 0x114B6: 84, + 0x114B7: 84, + 0x114B8: 84, + 0x114BA: 84, + 0x114BF: 84, + 0x114C0: 84, + 0x114C2: 84, + 0x114C3: 84, + 0x115B2: 84, + 0x115B3: 84, + 0x115B4: 84, + 0x115B5: 84, + 0x115BC: 84, + 0x115BD: 84, + 0x115BF: 84, + 0x115C0: 84, + 0x115DC: 84, + 0x115DD: 84, + 0x11633: 84, + 0x11634: 84, + 0x11635: 84, + 0x11636: 84, + 0x11637: 84, + 0x11638: 84, + 0x11639: 84, + 0x1163A: 84, + 0x1163D: 84, + 0x1163F: 84, + 0x11640: 84, + 0x116AB: 84, + 0x116AD: 84, + 0x116B0: 84, + 0x116B1: 84, + 0x116B2: 84, + 0x116B3: 84, + 0x116B4: 84, + 0x116B5: 84, + 0x116B7: 84, + 0x1171D: 84, + 0x1171E: 84, + 0x1171F: 84, + 0x11722: 84, + 0x11723: 84, + 0x11724: 84, + 0x11725: 84, + 0x11727: 84, + 0x11728: 84, + 0x11729: 84, + 0x1172A: 84, + 0x1172B: 84, + 0x1182F: 84, + 0x11830: 84, + 0x11831: 84, + 0x11832: 84, + 0x11833: 84, + 0x11834: 84, + 0x11835: 84, + 0x11836: 84, + 0x11837: 84, + 0x11839: 84, + 0x1183A: 84, + 0x1193B: 84, + 0x1193C: 84, + 0x1193E: 84, + 0x11943: 84, + 0x119D4: 84, + 0x119D5: 84, + 0x119D6: 84, + 0x119D7: 84, + 0x119DA: 84, + 0x119DB: 84, + 0x119E0: 84, + 0x11A01: 84, + 0x11A02: 84, + 0x11A03: 84, + 0x11A04: 84, + 0x11A05: 84, + 0x11A06: 84, + 0x11A07: 84, + 0x11A08: 84, + 0x11A09: 84, + 0x11A0A: 84, + 0x11A33: 84, + 0x11A34: 84, + 0x11A35: 84, + 0x11A36: 84, + 0x11A37: 84, + 0x11A38: 84, + 0x11A3B: 84, + 0x11A3C: 84, + 0x11A3D: 84, + 0x11A3E: 84, + 0x11A47: 84, + 0x11A51: 84, + 0x11A52: 84, + 0x11A53: 84, + 0x11A54: 84, + 0x11A55: 84, + 0x11A56: 84, + 0x11A59: 84, + 0x11A5A: 84, + 0x11A5B: 84, + 0x11A8A: 84, + 0x11A8B: 84, + 0x11A8C: 84, + 0x11A8D: 84, + 0x11A8E: 84, + 0x11A8F: 84, + 0x11A90: 84, + 0x11A91: 84, + 0x11A92: 84, + 0x11A93: 84, + 0x11A94: 84, + 0x11A95: 84, + 0x11A96: 84, + 0x11A98: 84, + 0x11A99: 84, + 0x11C30: 84, + 0x11C31: 84, + 0x11C32: 84, + 0x11C33: 84, + 0x11C34: 84, + 0x11C35: 84, + 0x11C36: 84, + 0x11C38: 84, + 0x11C39: 84, + 0x11C3A: 84, + 0x11C3B: 84, + 0x11C3C: 84, + 0x11C3D: 84, + 0x11C3F: 84, + 0x11C92: 84, + 0x11C93: 84, + 0x11C94: 84, + 0x11C95: 84, + 0x11C96: 84, + 0x11C97: 84, + 0x11C98: 84, + 0x11C99: 84, + 0x11C9A: 84, + 0x11C9B: 84, + 0x11C9C: 84, + 0x11C9D: 84, + 0x11C9E: 84, + 0x11C9F: 84, + 0x11CA0: 84, + 0x11CA1: 84, + 0x11CA2: 84, + 0x11CA3: 84, + 0x11CA4: 84, + 0x11CA5: 84, + 0x11CA6: 84, + 0x11CA7: 84, + 0x11CAA: 84, + 0x11CAB: 84, + 0x11CAC: 84, + 0x11CAD: 84, + 0x11CAE: 84, + 0x11CAF: 84, + 0x11CB0: 84, + 0x11CB2: 84, + 0x11CB3: 84, + 0x11CB5: 84, + 0x11CB6: 84, + 0x11D31: 84, + 0x11D32: 84, + 0x11D33: 84, + 0x11D34: 84, + 0x11D35: 84, + 0x11D36: 84, + 0x11D3A: 84, + 0x11D3C: 84, + 0x11D3D: 84, + 0x11D3F: 84, + 0x11D40: 84, + 0x11D41: 84, + 0x11D42: 84, + 0x11D43: 84, + 0x11D44: 84, + 0x11D45: 84, + 0x11D47: 84, + 0x11D90: 84, + 0x11D91: 84, + 0x11D95: 84, + 0x11D97: 84, + 0x11EF3: 84, + 0x11EF4: 84, + 0x11F00: 84, + 0x11F01: 84, + 0x11F36: 84, + 0x11F37: 84, + 0x11F38: 84, + 0x11F39: 84, + 0x11F3A: 84, + 0x11F40: 84, + 0x11F42: 84, + 0x13430: 84, + 0x13431: 84, + 0x13432: 84, + 0x13433: 84, + 0x13434: 84, + 0x13435: 84, + 0x13436: 84, + 0x13437: 84, + 0x13438: 84, + 0x13439: 84, + 0x1343A: 84, + 0x1343B: 84, + 0x1343C: 84, + 0x1343D: 84, + 0x1343E: 84, + 0x1343F: 84, + 0x13440: 84, + 0x13447: 84, + 0x13448: 84, + 0x13449: 84, + 0x1344A: 84, + 0x1344B: 84, + 0x1344C: 84, + 0x1344D: 84, + 0x1344E: 84, + 0x1344F: 84, + 0x13450: 84, + 0x13451: 84, + 0x13452: 84, + 0x13453: 84, + 0x13454: 84, + 0x13455: 84, + 0x16AF0: 84, + 0x16AF1: 84, + 0x16AF2: 84, + 0x16AF3: 84, + 0x16AF4: 84, + 0x16B30: 84, + 0x16B31: 84, + 0x16B32: 84, + 0x16B33: 84, + 0x16B34: 84, + 0x16B35: 84, + 0x16B36: 84, + 0x16F4F: 84, + 0x16F8F: 84, + 0x16F90: 84, + 0x16F91: 84, + 0x16F92: 84, + 0x16FE4: 84, + 0x1BC9D: 84, + 0x1BC9E: 84, + 0x1BCA0: 84, + 0x1BCA1: 84, + 0x1BCA2: 84, + 0x1BCA3: 84, + 0x1CF00: 84, + 0x1CF01: 84, + 0x1CF02: 84, + 0x1CF03: 84, + 0x1CF04: 84, + 0x1CF05: 84, + 0x1CF06: 84, + 0x1CF07: 84, + 0x1CF08: 84, + 0x1CF09: 84, + 0x1CF0A: 84, + 0x1CF0B: 84, + 0x1CF0C: 84, + 0x1CF0D: 84, + 0x1CF0E: 84, + 0x1CF0F: 84, + 0x1CF10: 84, + 0x1CF11: 84, + 0x1CF12: 84, + 0x1CF13: 84, + 0x1CF14: 84, + 0x1CF15: 84, + 0x1CF16: 84, + 0x1CF17: 84, + 0x1CF18: 84, + 0x1CF19: 84, + 0x1CF1A: 84, + 0x1CF1B: 84, + 0x1CF1C: 84, + 0x1CF1D: 84, + 0x1CF1E: 84, + 0x1CF1F: 84, + 0x1CF20: 84, + 0x1CF21: 84, + 0x1CF22: 84, + 0x1CF23: 84, + 0x1CF24: 84, + 0x1CF25: 84, + 0x1CF26: 84, + 0x1CF27: 84, + 0x1CF28: 84, + 0x1CF29: 84, + 0x1CF2A: 84, + 0x1CF2B: 84, + 0x1CF2C: 84, + 0x1CF2D: 84, + 0x1CF30: 84, + 0x1CF31: 84, + 0x1CF32: 84, + 0x1CF33: 84, + 0x1CF34: 84, + 0x1CF35: 84, + 0x1CF36: 84, + 0x1CF37: 84, + 0x1CF38: 84, + 0x1CF39: 84, + 0x1CF3A: 84, + 0x1CF3B: 84, + 0x1CF3C: 84, + 0x1CF3D: 84, + 0x1CF3E: 84, + 0x1CF3F: 84, + 0x1CF40: 84, + 0x1CF41: 84, + 0x1CF42: 84, + 0x1CF43: 84, + 0x1CF44: 84, + 0x1CF45: 84, + 0x1CF46: 84, + 0x1D167: 84, + 0x1D168: 84, + 0x1D169: 84, + 0x1D173: 84, + 0x1D174: 84, + 0x1D175: 84, + 0x1D176: 84, + 0x1D177: 84, + 0x1D178: 84, + 0x1D179: 84, + 0x1D17A: 84, + 0x1D17B: 84, + 0x1D17C: 84, + 0x1D17D: 84, + 0x1D17E: 84, + 0x1D17F: 84, + 0x1D180: 84, + 0x1D181: 84, + 0x1D182: 84, + 0x1D185: 84, + 0x1D186: 84, + 0x1D187: 84, + 0x1D188: 84, + 0x1D189: 84, + 0x1D18A: 84, + 0x1D18B: 84, + 0x1D1AA: 84, + 0x1D1AB: 84, + 0x1D1AC: 84, + 0x1D1AD: 84, + 0x1D242: 84, + 0x1D243: 84, + 0x1D244: 84, + 0x1DA00: 84, + 0x1DA01: 84, + 0x1DA02: 84, + 0x1DA03: 84, + 0x1DA04: 84, + 0x1DA05: 84, + 0x1DA06: 84, + 0x1DA07: 84, + 0x1DA08: 84, + 0x1DA09: 84, + 0x1DA0A: 84, + 0x1DA0B: 84, + 0x1DA0C: 84, + 0x1DA0D: 84, + 0x1DA0E: 84, + 0x1DA0F: 84, + 0x1DA10: 84, + 0x1DA11: 84, + 0x1DA12: 84, + 0x1DA13: 84, + 0x1DA14: 84, + 0x1DA15: 84, + 0x1DA16: 84, + 0x1DA17: 84, + 0x1DA18: 84, + 0x1DA19: 84, + 0x1DA1A: 84, + 0x1DA1B: 84, + 0x1DA1C: 84, + 0x1DA1D: 84, + 0x1DA1E: 84, + 0x1DA1F: 84, + 0x1DA20: 84, + 0x1DA21: 84, + 0x1DA22: 84, + 0x1DA23: 84, + 0x1DA24: 84, + 0x1DA25: 84, + 0x1DA26: 84, + 0x1DA27: 84, + 0x1DA28: 84, + 0x1DA29: 84, + 0x1DA2A: 84, + 0x1DA2B: 84, + 0x1DA2C: 84, + 0x1DA2D: 84, + 0x1DA2E: 84, + 0x1DA2F: 84, + 0x1DA30: 84, + 0x1DA31: 84, + 0x1DA32: 84, + 0x1DA33: 84, + 0x1DA34: 84, + 0x1DA35: 84, + 0x1DA36: 84, + 0x1DA3B: 84, + 0x1DA3C: 84, + 0x1DA3D: 84, + 0x1DA3E: 84, + 0x1DA3F: 84, + 0x1DA40: 84, + 0x1DA41: 84, + 0x1DA42: 84, + 0x1DA43: 84, + 0x1DA44: 84, + 0x1DA45: 84, + 0x1DA46: 84, + 0x1DA47: 84, + 0x1DA48: 84, + 0x1DA49: 84, + 0x1DA4A: 84, + 0x1DA4B: 84, + 0x1DA4C: 84, + 0x1DA4D: 84, + 0x1DA4E: 84, + 0x1DA4F: 84, + 0x1DA50: 84, + 0x1DA51: 84, + 0x1DA52: 84, + 0x1DA53: 84, + 0x1DA54: 84, + 0x1DA55: 84, + 0x1DA56: 84, + 0x1DA57: 84, + 0x1DA58: 84, + 0x1DA59: 84, + 0x1DA5A: 84, + 0x1DA5B: 84, + 0x1DA5C: 84, + 0x1DA5D: 84, + 0x1DA5E: 84, + 0x1DA5F: 84, + 0x1DA60: 84, + 0x1DA61: 84, + 0x1DA62: 84, + 0x1DA63: 84, + 0x1DA64: 84, + 0x1DA65: 84, + 0x1DA66: 84, + 0x1DA67: 84, + 0x1DA68: 84, + 0x1DA69: 84, + 0x1DA6A: 84, + 0x1DA6B: 84, + 0x1DA6C: 84, + 0x1DA75: 84, + 0x1DA84: 84, + 0x1DA9B: 84, + 0x1DA9C: 84, + 0x1DA9D: 84, + 0x1DA9E: 84, + 0x1DA9F: 84, + 0x1DAA1: 84, + 0x1DAA2: 84, + 0x1DAA3: 84, + 0x1DAA4: 84, + 0x1DAA5: 84, + 0x1DAA6: 84, + 0x1DAA7: 84, + 0x1DAA8: 84, + 0x1DAA9: 84, + 0x1DAAA: 84, + 0x1DAAB: 84, + 0x1DAAC: 84, + 0x1DAAD: 84, + 0x1DAAE: 84, + 0x1DAAF: 84, + 0x1E000: 84, + 0x1E001: 84, + 0x1E002: 84, + 0x1E003: 84, + 0x1E004: 84, + 0x1E005: 84, + 0x1E006: 84, + 0x1E008: 84, + 0x1E009: 84, + 0x1E00A: 84, + 0x1E00B: 84, + 0x1E00C: 84, + 0x1E00D: 84, + 0x1E00E: 84, + 0x1E00F: 84, + 0x1E010: 84, + 0x1E011: 84, + 0x1E012: 84, + 0x1E013: 84, + 0x1E014: 84, + 0x1E015: 84, + 0x1E016: 84, + 0x1E017: 84, + 0x1E018: 84, + 0x1E01B: 84, + 0x1E01C: 84, + 0x1E01D: 84, + 0x1E01E: 84, + 0x1E01F: 84, + 0x1E020: 84, + 0x1E021: 84, + 0x1E023: 84, + 0x1E024: 84, + 0x1E026: 84, + 0x1E027: 84, + 0x1E028: 84, + 0x1E029: 84, + 0x1E02A: 84, + 0x1E08F: 84, + 0x1E130: 84, + 0x1E131: 84, + 0x1E132: 84, + 0x1E133: 84, + 0x1E134: 84, + 0x1E135: 84, + 0x1E136: 84, + 0x1E2AE: 84, + 0x1E2EC: 84, + 0x1E2ED: 84, + 0x1E2EE: 84, + 0x1E2EF: 84, + 0x1E4EC: 84, + 0x1E4ED: 84, + 0x1E4EE: 84, + 0x1E4EF: 84, + 0x1E8D0: 84, + 0x1E8D1: 84, + 0x1E8D2: 84, + 0x1E8D3: 84, + 0x1E8D4: 84, + 0x1E8D5: 84, + 0x1E8D6: 84, + 0x1E900: 68, + 0x1E901: 68, + 0x1E902: 68, + 0x1E903: 68, + 0x1E904: 68, + 0x1E905: 68, + 0x1E906: 68, + 0x1E907: 68, + 0x1E908: 68, + 0x1E909: 68, + 0x1E90A: 68, + 0x1E90B: 68, + 0x1E90C: 68, + 0x1E90D: 68, + 0x1E90E: 68, + 0x1E90F: 68, + 0x1E910: 68, + 0x1E911: 68, + 0x1E912: 68, + 0x1E913: 68, + 0x1E914: 68, + 0x1E915: 68, + 0x1E916: 68, + 0x1E917: 68, + 0x1E918: 68, + 0x1E919: 68, + 0x1E91A: 68, + 0x1E91B: 68, + 0x1E91C: 68, + 0x1E91D: 68, + 0x1E91E: 68, + 0x1E91F: 68, + 0x1E920: 68, + 0x1E921: 68, + 0x1E922: 68, + 0x1E923: 68, + 0x1E924: 68, + 0x1E925: 68, + 0x1E926: 68, + 0x1E927: 68, + 0x1E928: 68, + 0x1E929: 68, + 0x1E92A: 68, + 0x1E92B: 68, + 0x1E92C: 68, + 0x1E92D: 68, + 0x1E92E: 68, + 0x1E92F: 68, + 0x1E930: 68, + 0x1E931: 68, + 0x1E932: 68, + 0x1E933: 68, + 0x1E934: 68, + 0x1E935: 68, + 0x1E936: 68, + 0x1E937: 68, + 0x1E938: 68, + 0x1E939: 68, + 0x1E93A: 68, + 0x1E93B: 68, + 0x1E93C: 68, + 0x1E93D: 68, + 0x1E93E: 68, + 0x1E93F: 68, + 0x1E940: 68, + 0x1E941: 68, + 0x1E942: 68, + 0x1E943: 68, + 0x1E944: 84, + 0x1E945: 84, + 0x1E946: 84, + 0x1E947: 84, + 0x1E948: 84, + 0x1E949: 84, + 0x1E94A: 84, + 0x1E94B: 84, + 0xE0001: 84, + 0xE0020: 84, + 0xE0021: 84, + 0xE0022: 84, + 0xE0023: 84, + 0xE0024: 84, + 0xE0025: 84, + 0xE0026: 84, + 0xE0027: 84, + 0xE0028: 84, + 0xE0029: 84, + 0xE002A: 84, + 0xE002B: 84, + 0xE002C: 84, + 0xE002D: 84, + 0xE002E: 84, + 0xE002F: 84, + 0xE0030: 84, + 0xE0031: 84, + 0xE0032: 84, + 0xE0033: 84, + 0xE0034: 84, + 0xE0035: 84, + 0xE0036: 84, + 0xE0037: 84, + 0xE0038: 84, + 0xE0039: 84, + 0xE003A: 84, + 0xE003B: 84, + 0xE003C: 84, + 0xE003D: 84, + 0xE003E: 84, + 0xE003F: 84, + 0xE0040: 84, + 0xE0041: 84, + 0xE0042: 84, + 0xE0043: 84, + 0xE0044: 84, + 0xE0045: 84, + 0xE0046: 84, + 0xE0047: 84, + 0xE0048: 84, + 0xE0049: 84, + 0xE004A: 84, + 0xE004B: 84, + 0xE004C: 84, + 0xE004D: 84, + 0xE004E: 84, + 0xE004F: 84, + 0xE0050: 84, + 0xE0051: 84, + 0xE0052: 84, + 0xE0053: 84, + 0xE0054: 84, + 0xE0055: 84, + 0xE0056: 84, + 0xE0057: 84, + 0xE0058: 84, + 0xE0059: 84, + 0xE005A: 84, + 0xE005B: 84, + 0xE005C: 84, + 0xE005D: 84, + 0xE005E: 84, + 0xE005F: 84, + 0xE0060: 84, + 0xE0061: 84, + 0xE0062: 84, + 0xE0063: 84, + 0xE0064: 84, + 0xE0065: 84, + 0xE0066: 84, + 0xE0067: 84, + 0xE0068: 84, + 0xE0069: 84, + 0xE006A: 84, + 0xE006B: 84, + 0xE006C: 84, + 0xE006D: 84, + 0xE006E: 84, + 0xE006F: 84, + 0xE0070: 84, + 0xE0071: 84, + 0xE0072: 84, + 0xE0073: 84, + 0xE0074: 84, + 0xE0075: 84, + 0xE0076: 84, + 0xE0077: 84, + 0xE0078: 84, + 0xE0079: 84, + 0xE007A: 84, + 0xE007B: 84, + 0xE007C: 84, + 0xE007D: 84, + 0xE007E: 84, + 0xE007F: 84, + 0xE0100: 84, + 0xE0101: 84, + 0xE0102: 84, + 0xE0103: 84, + 0xE0104: 84, + 0xE0105: 84, + 0xE0106: 84, + 0xE0107: 84, + 0xE0108: 84, + 0xE0109: 84, + 0xE010A: 84, + 0xE010B: 84, + 0xE010C: 84, + 0xE010D: 84, + 0xE010E: 84, + 0xE010F: 84, + 0xE0110: 84, + 0xE0111: 84, + 0xE0112: 84, + 0xE0113: 84, + 0xE0114: 84, + 0xE0115: 84, + 0xE0116: 84, + 0xE0117: 84, + 0xE0118: 84, + 0xE0119: 84, + 0xE011A: 84, + 0xE011B: 84, + 0xE011C: 84, + 0xE011D: 84, + 0xE011E: 84, + 0xE011F: 84, + 0xE0120: 84, + 0xE0121: 84, + 0xE0122: 84, + 0xE0123: 84, + 0xE0124: 84, + 0xE0125: 84, + 0xE0126: 84, + 0xE0127: 84, + 0xE0128: 84, + 0xE0129: 84, + 0xE012A: 84, + 0xE012B: 84, + 0xE012C: 84, + 0xE012D: 84, + 0xE012E: 84, + 0xE012F: 84, + 0xE0130: 84, + 0xE0131: 84, + 0xE0132: 84, + 0xE0133: 84, + 0xE0134: 84, + 0xE0135: 84, + 0xE0136: 84, + 0xE0137: 84, + 0xE0138: 84, + 0xE0139: 84, + 0xE013A: 84, + 0xE013B: 84, + 0xE013C: 84, + 0xE013D: 84, + 0xE013E: 84, + 0xE013F: 84, + 0xE0140: 84, + 0xE0141: 84, + 0xE0142: 84, + 0xE0143: 84, + 0xE0144: 84, + 0xE0145: 84, + 0xE0146: 84, + 0xE0147: 84, + 0xE0148: 84, + 0xE0149: 84, + 0xE014A: 84, + 0xE014B: 84, + 0xE014C: 84, + 0xE014D: 84, + 0xE014E: 84, + 0xE014F: 84, + 0xE0150: 84, + 0xE0151: 84, + 0xE0152: 84, + 0xE0153: 84, + 0xE0154: 84, + 0xE0155: 84, + 0xE0156: 84, + 0xE0157: 84, + 0xE0158: 84, + 0xE0159: 84, + 0xE015A: 84, + 0xE015B: 84, + 0xE015C: 84, + 0xE015D: 84, + 0xE015E: 84, + 0xE015F: 84, + 0xE0160: 84, + 0xE0161: 84, + 0xE0162: 84, + 0xE0163: 84, + 0xE0164: 84, + 0xE0165: 84, + 0xE0166: 84, + 0xE0167: 84, + 0xE0168: 84, + 0xE0169: 84, + 0xE016A: 84, + 0xE016B: 84, + 0xE016C: 84, + 0xE016D: 84, + 0xE016E: 84, + 0xE016F: 84, + 0xE0170: 84, + 0xE0171: 84, + 0xE0172: 84, + 0xE0173: 84, + 0xE0174: 84, + 0xE0175: 84, + 0xE0176: 84, + 0xE0177: 84, + 0xE0178: 84, + 0xE0179: 84, + 0xE017A: 84, + 0xE017B: 84, + 0xE017C: 84, + 0xE017D: 84, + 0xE017E: 84, + 0xE017F: 84, + 0xE0180: 84, + 0xE0181: 84, + 0xE0182: 84, + 0xE0183: 84, + 0xE0184: 84, + 0xE0185: 84, + 0xE0186: 84, + 0xE0187: 84, + 0xE0188: 84, + 0xE0189: 84, + 0xE018A: 84, + 0xE018B: 84, + 0xE018C: 84, + 0xE018D: 84, + 0xE018E: 84, + 0xE018F: 84, + 0xE0190: 84, + 0xE0191: 84, + 0xE0192: 84, + 0xE0193: 84, + 0xE0194: 84, + 0xE0195: 84, + 0xE0196: 84, + 0xE0197: 84, + 0xE0198: 84, + 0xE0199: 84, + 0xE019A: 84, + 0xE019B: 84, + 0xE019C: 84, + 0xE019D: 84, + 0xE019E: 84, + 0xE019F: 84, + 0xE01A0: 84, + 0xE01A1: 84, + 0xE01A2: 84, + 0xE01A3: 84, + 0xE01A4: 84, + 0xE01A5: 84, + 0xE01A6: 84, + 0xE01A7: 84, + 0xE01A8: 84, + 0xE01A9: 84, + 0xE01AA: 84, + 0xE01AB: 84, + 0xE01AC: 84, + 0xE01AD: 84, + 0xE01AE: 84, + 0xE01AF: 84, + 0xE01B0: 84, + 0xE01B1: 84, + 0xE01B2: 84, + 0xE01B3: 84, + 0xE01B4: 84, + 0xE01B5: 84, + 0xE01B6: 84, + 0xE01B7: 84, + 0xE01B8: 84, + 0xE01B9: 84, + 0xE01BA: 84, + 0xE01BB: 84, + 0xE01BC: 84, + 0xE01BD: 84, + 0xE01BE: 84, + 0xE01BF: 84, + 0xE01C0: 84, + 0xE01C1: 84, + 0xE01C2: 84, + 0xE01C3: 84, + 0xE01C4: 84, + 0xE01C5: 84, + 0xE01C6: 84, + 0xE01C7: 84, + 0xE01C8: 84, + 0xE01C9: 84, + 0xE01CA: 84, + 0xE01CB: 84, + 0xE01CC: 84, + 0xE01CD: 84, + 0xE01CE: 84, + 0xE01CF: 84, + 0xE01D0: 84, + 0xE01D1: 84, + 0xE01D2: 84, + 0xE01D3: 84, + 0xE01D4: 84, + 0xE01D5: 84, + 0xE01D6: 84, + 0xE01D7: 84, + 0xE01D8: 84, + 0xE01D9: 84, + 0xE01DA: 84, + 0xE01DB: 84, + 0xE01DC: 84, + 0xE01DD: 84, + 0xE01DE: 84, + 0xE01DF: 84, + 0xE01E0: 84, + 0xE01E1: 84, + 0xE01E2: 84, + 0xE01E3: 84, + 0xE01E4: 84, + 0xE01E5: 84, + 0xE01E6: 84, + 0xE01E7: 84, + 0xE01E8: 84, + 0xE01E9: 84, + 0xE01EA: 84, + 0xE01EB: 84, + 0xE01EC: 84, + 0xE01ED: 84, + 0xE01EE: 84, + 0xE01EF: 84, +} +codepoint_classes = { + "PVALID": ( + 0x2D0000002E, + 0x300000003A, + 0x610000007B, + 0xDF000000F7, + 0xF800000100, + 0x10100000102, + 0x10300000104, + 0x10500000106, + 0x10700000108, + 0x1090000010A, + 0x10B0000010C, + 0x10D0000010E, + 0x10F00000110, + 0x11100000112, + 0x11300000114, + 0x11500000116, + 0x11700000118, + 0x1190000011A, + 0x11B0000011C, + 0x11D0000011E, + 0x11F00000120, + 0x12100000122, + 0x12300000124, + 0x12500000126, + 0x12700000128, + 0x1290000012A, + 0x12B0000012C, + 0x12D0000012E, + 0x12F00000130, + 0x13100000132, + 0x13500000136, + 0x13700000139, + 0x13A0000013B, + 0x13C0000013D, + 0x13E0000013F, + 0x14200000143, + 0x14400000145, + 0x14600000147, + 0x14800000149, + 0x14B0000014C, + 0x14D0000014E, + 0x14F00000150, + 0x15100000152, + 0x15300000154, + 0x15500000156, + 0x15700000158, + 0x1590000015A, + 0x15B0000015C, + 0x15D0000015E, + 0x15F00000160, + 0x16100000162, + 0x16300000164, + 0x16500000166, + 0x16700000168, + 0x1690000016A, + 0x16B0000016C, + 0x16D0000016E, + 0x16F00000170, + 0x17100000172, + 0x17300000174, + 0x17500000176, + 0x17700000178, + 0x17A0000017B, + 0x17C0000017D, + 0x17E0000017F, + 0x18000000181, + 0x18300000184, + 0x18500000186, + 0x18800000189, + 0x18C0000018E, + 0x19200000193, + 0x19500000196, + 0x1990000019C, + 0x19E0000019F, + 0x1A1000001A2, + 0x1A3000001A4, + 0x1A5000001A6, + 0x1A8000001A9, + 0x1AA000001AC, + 0x1AD000001AE, + 0x1B0000001B1, + 0x1B4000001B5, + 0x1B6000001B7, + 0x1B9000001BC, + 0x1BD000001C4, + 0x1CE000001CF, + 0x1D0000001D1, + 0x1D2000001D3, + 0x1D4000001D5, + 0x1D6000001D7, + 0x1D8000001D9, + 0x1DA000001DB, + 0x1DC000001DE, + 0x1DF000001E0, + 0x1E1000001E2, + 0x1E3000001E4, + 0x1E5000001E6, + 0x1E7000001E8, + 0x1E9000001EA, + 0x1EB000001EC, + 0x1ED000001EE, + 0x1EF000001F1, + 0x1F5000001F6, + 0x1F9000001FA, + 0x1FB000001FC, + 0x1FD000001FE, + 0x1FF00000200, + 0x20100000202, + 0x20300000204, + 0x20500000206, + 0x20700000208, + 0x2090000020A, + 0x20B0000020C, + 0x20D0000020E, + 0x20F00000210, + 0x21100000212, + 0x21300000214, + 0x21500000216, + 0x21700000218, + 0x2190000021A, + 0x21B0000021C, + 0x21D0000021E, + 0x21F00000220, + 0x22100000222, + 0x22300000224, + 0x22500000226, + 0x22700000228, + 0x2290000022A, + 0x22B0000022C, + 0x22D0000022E, + 0x22F00000230, + 0x23100000232, + 0x2330000023A, + 0x23C0000023D, + 0x23F00000241, + 0x24200000243, + 0x24700000248, + 0x2490000024A, + 0x24B0000024C, + 0x24D0000024E, + 0x24F000002B0, + 0x2B9000002C2, + 0x2C6000002D2, + 0x2EC000002ED, + 0x2EE000002EF, + 0x30000000340, + 0x34200000343, + 0x3460000034F, + 0x35000000370, + 0x37100000372, + 0x37300000374, + 0x37700000378, + 0x37B0000037E, + 0x39000000391, + 0x3AC000003CF, + 0x3D7000003D8, + 0x3D9000003DA, + 0x3DB000003DC, + 0x3DD000003DE, + 0x3DF000003E0, + 0x3E1000003E2, + 0x3E3000003E4, + 0x3E5000003E6, + 0x3E7000003E8, + 0x3E9000003EA, + 0x3EB000003EC, + 0x3ED000003EE, + 0x3EF000003F0, + 0x3F3000003F4, + 0x3F8000003F9, + 0x3FB000003FD, + 0x43000000460, + 0x46100000462, + 0x46300000464, + 0x46500000466, + 0x46700000468, + 0x4690000046A, + 0x46B0000046C, + 0x46D0000046E, + 0x46F00000470, + 0x47100000472, + 0x47300000474, + 0x47500000476, + 0x47700000478, + 0x4790000047A, + 0x47B0000047C, + 0x47D0000047E, + 0x47F00000480, + 0x48100000482, + 0x48300000488, + 0x48B0000048C, + 0x48D0000048E, + 0x48F00000490, + 0x49100000492, + 0x49300000494, + 0x49500000496, + 0x49700000498, + 0x4990000049A, + 0x49B0000049C, + 0x49D0000049E, + 0x49F000004A0, + 0x4A1000004A2, + 0x4A3000004A4, + 0x4A5000004A6, + 0x4A7000004A8, + 0x4A9000004AA, + 0x4AB000004AC, + 0x4AD000004AE, + 0x4AF000004B0, + 0x4B1000004B2, + 0x4B3000004B4, + 0x4B5000004B6, + 0x4B7000004B8, + 0x4B9000004BA, + 0x4BB000004BC, + 0x4BD000004BE, + 0x4BF000004C0, + 0x4C2000004C3, + 0x4C4000004C5, + 0x4C6000004C7, + 0x4C8000004C9, + 0x4CA000004CB, + 0x4CC000004CD, + 0x4CE000004D0, + 0x4D1000004D2, + 0x4D3000004D4, + 0x4D5000004D6, + 0x4D7000004D8, + 0x4D9000004DA, + 0x4DB000004DC, + 0x4DD000004DE, + 0x4DF000004E0, + 0x4E1000004E2, + 0x4E3000004E4, + 0x4E5000004E6, + 0x4E7000004E8, + 0x4E9000004EA, + 0x4EB000004EC, + 0x4ED000004EE, + 0x4EF000004F0, + 0x4F1000004F2, + 0x4F3000004F4, + 0x4F5000004F6, + 0x4F7000004F8, + 0x4F9000004FA, + 0x4FB000004FC, + 0x4FD000004FE, + 0x4FF00000500, + 0x50100000502, + 0x50300000504, + 0x50500000506, + 0x50700000508, + 0x5090000050A, + 0x50B0000050C, + 0x50D0000050E, + 0x50F00000510, + 0x51100000512, + 0x51300000514, + 0x51500000516, + 0x51700000518, + 0x5190000051A, + 0x51B0000051C, + 0x51D0000051E, + 0x51F00000520, + 0x52100000522, + 0x52300000524, + 0x52500000526, + 0x52700000528, + 0x5290000052A, + 0x52B0000052C, + 0x52D0000052E, + 0x52F00000530, + 0x5590000055A, + 0x56000000587, + 0x58800000589, + 0x591000005BE, + 0x5BF000005C0, + 0x5C1000005C3, + 0x5C4000005C6, + 0x5C7000005C8, + 0x5D0000005EB, + 0x5EF000005F3, + 0x6100000061B, + 0x62000000640, + 0x64100000660, + 0x66E00000675, + 0x679000006D4, + 0x6D5000006DD, + 0x6DF000006E9, + 0x6EA000006F0, + 0x6FA00000700, + 0x7100000074B, + 0x74D000007B2, + 0x7C0000007F6, + 0x7FD000007FE, + 0x8000000082E, + 0x8400000085C, + 0x8600000086B, + 0x87000000888, + 0x8890000088F, + 0x898000008E2, + 0x8E300000958, + 0x96000000964, + 0x96600000970, + 0x97100000984, + 0x9850000098D, + 0x98F00000991, + 0x993000009A9, + 0x9AA000009B1, + 0x9B2000009B3, + 0x9B6000009BA, + 0x9BC000009C5, + 0x9C7000009C9, + 0x9CB000009CF, + 0x9D7000009D8, + 0x9E0000009E4, + 0x9E6000009F2, + 0x9FC000009FD, + 0x9FE000009FF, + 0xA0100000A04, + 0xA0500000A0B, + 0xA0F00000A11, + 0xA1300000A29, + 0xA2A00000A31, + 0xA3200000A33, + 0xA3500000A36, + 0xA3800000A3A, + 0xA3C00000A3D, + 0xA3E00000A43, + 0xA4700000A49, + 0xA4B00000A4E, + 0xA5100000A52, + 0xA5C00000A5D, + 0xA6600000A76, + 0xA8100000A84, + 0xA8500000A8E, + 0xA8F00000A92, + 0xA9300000AA9, + 0xAAA00000AB1, + 0xAB200000AB4, + 0xAB500000ABA, + 0xABC00000AC6, + 0xAC700000ACA, + 0xACB00000ACE, + 0xAD000000AD1, + 0xAE000000AE4, + 0xAE600000AF0, + 0xAF900000B00, + 0xB0100000B04, + 0xB0500000B0D, + 0xB0F00000B11, + 0xB1300000B29, + 0xB2A00000B31, + 0xB3200000B34, + 0xB3500000B3A, + 0xB3C00000B45, + 0xB4700000B49, + 0xB4B00000B4E, + 0xB5500000B58, + 0xB5F00000B64, + 0xB6600000B70, + 0xB7100000B72, + 0xB8200000B84, + 0xB8500000B8B, + 0xB8E00000B91, + 0xB9200000B96, + 0xB9900000B9B, + 0xB9C00000B9D, + 0xB9E00000BA0, + 0xBA300000BA5, + 0xBA800000BAB, + 0xBAE00000BBA, + 0xBBE00000BC3, + 0xBC600000BC9, + 0xBCA00000BCE, + 0xBD000000BD1, + 0xBD700000BD8, + 0xBE600000BF0, + 0xC0000000C0D, + 0xC0E00000C11, + 0xC1200000C29, + 0xC2A00000C3A, + 0xC3C00000C45, + 0xC4600000C49, + 0xC4A00000C4E, + 0xC5500000C57, + 0xC5800000C5B, + 0xC5D00000C5E, + 0xC6000000C64, + 0xC6600000C70, + 0xC8000000C84, + 0xC8500000C8D, + 0xC8E00000C91, + 0xC9200000CA9, + 0xCAA00000CB4, + 0xCB500000CBA, + 0xCBC00000CC5, + 0xCC600000CC9, + 0xCCA00000CCE, + 0xCD500000CD7, + 0xCDD00000CDF, + 0xCE000000CE4, + 0xCE600000CF0, + 0xCF100000CF4, + 0xD0000000D0D, + 0xD0E00000D11, + 0xD1200000D45, + 0xD4600000D49, + 0xD4A00000D4F, + 0xD5400000D58, + 0xD5F00000D64, + 0xD6600000D70, + 0xD7A00000D80, + 0xD8100000D84, + 0xD8500000D97, + 0xD9A00000DB2, + 0xDB300000DBC, + 0xDBD00000DBE, + 0xDC000000DC7, + 0xDCA00000DCB, + 0xDCF00000DD5, + 0xDD600000DD7, + 0xDD800000DE0, + 0xDE600000DF0, + 0xDF200000DF4, + 0xE0100000E33, + 0xE3400000E3B, + 0xE4000000E4F, + 0xE5000000E5A, + 0xE8100000E83, + 0xE8400000E85, + 0xE8600000E8B, + 0xE8C00000EA4, + 0xEA500000EA6, + 0xEA700000EB3, + 0xEB400000EBE, + 0xEC000000EC5, + 0xEC600000EC7, + 0xEC800000ECF, + 0xED000000EDA, + 0xEDE00000EE0, + 0xF0000000F01, + 0xF0B00000F0C, + 0xF1800000F1A, + 0xF2000000F2A, + 0xF3500000F36, + 0xF3700000F38, + 0xF3900000F3A, + 0xF3E00000F43, + 0xF4400000F48, + 0xF4900000F4D, + 0xF4E00000F52, + 0xF5300000F57, + 0xF5800000F5C, + 0xF5D00000F69, + 0xF6A00000F6D, + 0xF7100000F73, + 0xF7400000F75, + 0xF7A00000F81, + 0xF8200000F85, + 0xF8600000F93, + 0xF9400000F98, + 0xF9900000F9D, + 0xF9E00000FA2, + 0xFA300000FA7, + 0xFA800000FAC, + 0xFAD00000FB9, + 0xFBA00000FBD, + 0xFC600000FC7, + 0x10000000104A, + 0x10500000109E, + 0x10D0000010FB, + 0x10FD00001100, + 0x120000001249, + 0x124A0000124E, + 0x125000001257, + 0x125800001259, + 0x125A0000125E, + 0x126000001289, + 0x128A0000128E, + 0x1290000012B1, + 0x12B2000012B6, + 0x12B8000012BF, + 0x12C0000012C1, + 0x12C2000012C6, + 0x12C8000012D7, + 0x12D800001311, + 0x131200001316, + 0x13180000135B, + 0x135D00001360, + 0x138000001390, + 0x13A0000013F6, + 0x14010000166D, + 0x166F00001680, + 0x16810000169B, + 0x16A0000016EB, + 0x16F1000016F9, + 0x170000001716, + 0x171F00001735, + 0x174000001754, + 0x17600000176D, + 0x176E00001771, + 0x177200001774, + 0x1780000017B4, + 0x17B6000017D4, + 0x17D7000017D8, + 0x17DC000017DE, + 0x17E0000017EA, + 0x18100000181A, + 0x182000001879, + 0x1880000018AB, + 0x18B0000018F6, + 0x19000000191F, + 0x19200000192C, + 0x19300000193C, + 0x19460000196E, + 0x197000001975, + 0x1980000019AC, + 0x19B0000019CA, + 0x19D0000019DA, + 0x1A0000001A1C, + 0x1A2000001A5F, + 0x1A6000001A7D, + 0x1A7F00001A8A, + 0x1A9000001A9A, + 0x1AA700001AA8, + 0x1AB000001ABE, + 0x1ABF00001ACF, + 0x1B0000001B4D, + 0x1B5000001B5A, + 0x1B6B00001B74, + 0x1B8000001BF4, + 0x1C0000001C38, + 0x1C4000001C4A, + 0x1C4D00001C7E, + 0x1CD000001CD3, + 0x1CD400001CFB, + 0x1D0000001D2C, + 0x1D2F00001D30, + 0x1D3B00001D3C, + 0x1D4E00001D4F, + 0x1D6B00001D78, + 0x1D7900001D9B, + 0x1DC000001E00, + 0x1E0100001E02, + 0x1E0300001E04, + 0x1E0500001E06, + 0x1E0700001E08, + 0x1E0900001E0A, + 0x1E0B00001E0C, + 0x1E0D00001E0E, + 0x1E0F00001E10, + 0x1E1100001E12, + 0x1E1300001E14, + 0x1E1500001E16, + 0x1E1700001E18, + 0x1E1900001E1A, + 0x1E1B00001E1C, + 0x1E1D00001E1E, + 0x1E1F00001E20, + 0x1E2100001E22, + 0x1E2300001E24, + 0x1E2500001E26, + 0x1E2700001E28, + 0x1E2900001E2A, + 0x1E2B00001E2C, + 0x1E2D00001E2E, + 0x1E2F00001E30, + 0x1E3100001E32, + 0x1E3300001E34, + 0x1E3500001E36, + 0x1E3700001E38, + 0x1E3900001E3A, + 0x1E3B00001E3C, + 0x1E3D00001E3E, + 0x1E3F00001E40, + 0x1E4100001E42, + 0x1E4300001E44, + 0x1E4500001E46, + 0x1E4700001E48, + 0x1E4900001E4A, + 0x1E4B00001E4C, + 0x1E4D00001E4E, + 0x1E4F00001E50, + 0x1E5100001E52, + 0x1E5300001E54, + 0x1E5500001E56, + 0x1E5700001E58, + 0x1E5900001E5A, + 0x1E5B00001E5C, + 0x1E5D00001E5E, + 0x1E5F00001E60, + 0x1E6100001E62, + 0x1E6300001E64, + 0x1E6500001E66, + 0x1E6700001E68, + 0x1E6900001E6A, + 0x1E6B00001E6C, + 0x1E6D00001E6E, + 0x1E6F00001E70, + 0x1E7100001E72, + 0x1E7300001E74, + 0x1E7500001E76, + 0x1E7700001E78, + 0x1E7900001E7A, + 0x1E7B00001E7C, + 0x1E7D00001E7E, + 0x1E7F00001E80, + 0x1E8100001E82, + 0x1E8300001E84, + 0x1E8500001E86, + 0x1E8700001E88, + 0x1E8900001E8A, + 0x1E8B00001E8C, + 0x1E8D00001E8E, + 0x1E8F00001E90, + 0x1E9100001E92, + 0x1E9300001E94, + 0x1E9500001E9A, + 0x1E9C00001E9E, + 0x1E9F00001EA0, + 0x1EA100001EA2, + 0x1EA300001EA4, + 0x1EA500001EA6, + 0x1EA700001EA8, + 0x1EA900001EAA, + 0x1EAB00001EAC, + 0x1EAD00001EAE, + 0x1EAF00001EB0, + 0x1EB100001EB2, + 0x1EB300001EB4, + 0x1EB500001EB6, + 0x1EB700001EB8, + 0x1EB900001EBA, + 0x1EBB00001EBC, + 0x1EBD00001EBE, + 0x1EBF00001EC0, + 0x1EC100001EC2, + 0x1EC300001EC4, + 0x1EC500001EC6, + 0x1EC700001EC8, + 0x1EC900001ECA, + 0x1ECB00001ECC, + 0x1ECD00001ECE, + 0x1ECF00001ED0, + 0x1ED100001ED2, + 0x1ED300001ED4, + 0x1ED500001ED6, + 0x1ED700001ED8, + 0x1ED900001EDA, + 0x1EDB00001EDC, + 0x1EDD00001EDE, + 0x1EDF00001EE0, + 0x1EE100001EE2, + 0x1EE300001EE4, + 0x1EE500001EE6, + 0x1EE700001EE8, + 0x1EE900001EEA, + 0x1EEB00001EEC, + 0x1EED00001EEE, + 0x1EEF00001EF0, + 0x1EF100001EF2, + 0x1EF300001EF4, + 0x1EF500001EF6, + 0x1EF700001EF8, + 0x1EF900001EFA, + 0x1EFB00001EFC, + 0x1EFD00001EFE, + 0x1EFF00001F08, + 0x1F1000001F16, + 0x1F2000001F28, + 0x1F3000001F38, + 0x1F4000001F46, + 0x1F5000001F58, + 0x1F6000001F68, + 0x1F7000001F71, + 0x1F7200001F73, + 0x1F7400001F75, + 0x1F7600001F77, + 0x1F7800001F79, + 0x1F7A00001F7B, + 0x1F7C00001F7D, + 0x1FB000001FB2, + 0x1FB600001FB7, + 0x1FC600001FC7, + 0x1FD000001FD3, + 0x1FD600001FD8, + 0x1FE000001FE3, + 0x1FE400001FE8, + 0x1FF600001FF7, + 0x214E0000214F, + 0x218400002185, + 0x2C3000002C60, + 0x2C6100002C62, + 0x2C6500002C67, + 0x2C6800002C69, + 0x2C6A00002C6B, + 0x2C6C00002C6D, + 0x2C7100002C72, + 0x2C7300002C75, + 0x2C7600002C7C, + 0x2C8100002C82, + 0x2C8300002C84, + 0x2C8500002C86, + 0x2C8700002C88, + 0x2C8900002C8A, + 0x2C8B00002C8C, + 0x2C8D00002C8E, + 0x2C8F00002C90, + 0x2C9100002C92, + 0x2C9300002C94, + 0x2C9500002C96, + 0x2C9700002C98, + 0x2C9900002C9A, + 0x2C9B00002C9C, + 0x2C9D00002C9E, + 0x2C9F00002CA0, + 0x2CA100002CA2, + 0x2CA300002CA4, + 0x2CA500002CA6, + 0x2CA700002CA8, + 0x2CA900002CAA, + 0x2CAB00002CAC, + 0x2CAD00002CAE, + 0x2CAF00002CB0, + 0x2CB100002CB2, + 0x2CB300002CB4, + 0x2CB500002CB6, + 0x2CB700002CB8, + 0x2CB900002CBA, + 0x2CBB00002CBC, + 0x2CBD00002CBE, + 0x2CBF00002CC0, + 0x2CC100002CC2, + 0x2CC300002CC4, + 0x2CC500002CC6, + 0x2CC700002CC8, + 0x2CC900002CCA, + 0x2CCB00002CCC, + 0x2CCD00002CCE, + 0x2CCF00002CD0, + 0x2CD100002CD2, + 0x2CD300002CD4, + 0x2CD500002CD6, + 0x2CD700002CD8, + 0x2CD900002CDA, + 0x2CDB00002CDC, + 0x2CDD00002CDE, + 0x2CDF00002CE0, + 0x2CE100002CE2, + 0x2CE300002CE5, + 0x2CEC00002CED, + 0x2CEE00002CF2, + 0x2CF300002CF4, + 0x2D0000002D26, + 0x2D2700002D28, + 0x2D2D00002D2E, + 0x2D3000002D68, + 0x2D7F00002D97, + 0x2DA000002DA7, + 0x2DA800002DAF, + 0x2DB000002DB7, + 0x2DB800002DBF, + 0x2DC000002DC7, + 0x2DC800002DCF, + 0x2DD000002DD7, + 0x2DD800002DDF, + 0x2DE000002E00, + 0x2E2F00002E30, + 0x300500003008, + 0x302A0000302E, + 0x303C0000303D, + 0x304100003097, + 0x30990000309B, + 0x309D0000309F, + 0x30A1000030FB, + 0x30FC000030FF, + 0x310500003130, + 0x31A0000031C0, + 0x31F000003200, + 0x340000004DC0, + 0x4E000000A48D, + 0xA4D00000A4FE, + 0xA5000000A60D, + 0xA6100000A62C, + 0xA6410000A642, + 0xA6430000A644, + 0xA6450000A646, + 0xA6470000A648, + 0xA6490000A64A, + 0xA64B0000A64C, + 0xA64D0000A64E, + 0xA64F0000A650, + 0xA6510000A652, + 0xA6530000A654, + 0xA6550000A656, + 0xA6570000A658, + 0xA6590000A65A, + 0xA65B0000A65C, + 0xA65D0000A65E, + 0xA65F0000A660, + 0xA6610000A662, + 0xA6630000A664, + 0xA6650000A666, + 0xA6670000A668, + 0xA6690000A66A, + 0xA66B0000A66C, + 0xA66D0000A670, + 0xA6740000A67E, + 0xA67F0000A680, + 0xA6810000A682, + 0xA6830000A684, + 0xA6850000A686, + 0xA6870000A688, + 0xA6890000A68A, + 0xA68B0000A68C, + 0xA68D0000A68E, + 0xA68F0000A690, + 0xA6910000A692, + 0xA6930000A694, + 0xA6950000A696, + 0xA6970000A698, + 0xA6990000A69A, + 0xA69B0000A69C, + 0xA69E0000A6E6, + 0xA6F00000A6F2, + 0xA7170000A720, + 0xA7230000A724, + 0xA7250000A726, + 0xA7270000A728, + 0xA7290000A72A, + 0xA72B0000A72C, + 0xA72D0000A72E, + 0xA72F0000A732, + 0xA7330000A734, + 0xA7350000A736, + 0xA7370000A738, + 0xA7390000A73A, + 0xA73B0000A73C, + 0xA73D0000A73E, + 0xA73F0000A740, + 0xA7410000A742, + 0xA7430000A744, + 0xA7450000A746, + 0xA7470000A748, + 0xA7490000A74A, + 0xA74B0000A74C, + 0xA74D0000A74E, + 0xA74F0000A750, + 0xA7510000A752, + 0xA7530000A754, + 0xA7550000A756, + 0xA7570000A758, + 0xA7590000A75A, + 0xA75B0000A75C, + 0xA75D0000A75E, + 0xA75F0000A760, + 0xA7610000A762, + 0xA7630000A764, + 0xA7650000A766, + 0xA7670000A768, + 0xA7690000A76A, + 0xA76B0000A76C, + 0xA76D0000A76E, + 0xA76F0000A770, + 0xA7710000A779, + 0xA77A0000A77B, + 0xA77C0000A77D, + 0xA77F0000A780, + 0xA7810000A782, + 0xA7830000A784, + 0xA7850000A786, + 0xA7870000A789, + 0xA78C0000A78D, + 0xA78E0000A790, + 0xA7910000A792, + 0xA7930000A796, + 0xA7970000A798, + 0xA7990000A79A, + 0xA79B0000A79C, + 0xA79D0000A79E, + 0xA79F0000A7A0, + 0xA7A10000A7A2, + 0xA7A30000A7A4, + 0xA7A50000A7A6, + 0xA7A70000A7A8, + 0xA7A90000A7AA, + 0xA7AF0000A7B0, + 0xA7B50000A7B6, + 0xA7B70000A7B8, + 0xA7B90000A7BA, + 0xA7BB0000A7BC, + 0xA7BD0000A7BE, + 0xA7BF0000A7C0, + 0xA7C10000A7C2, + 0xA7C30000A7C4, + 0xA7C80000A7C9, + 0xA7CA0000A7CB, + 0xA7D10000A7D2, + 0xA7D30000A7D4, + 0xA7D50000A7D6, + 0xA7D70000A7D8, + 0xA7D90000A7DA, + 0xA7F60000A7F8, + 0xA7FA0000A828, + 0xA82C0000A82D, + 0xA8400000A874, + 0xA8800000A8C6, + 0xA8D00000A8DA, + 0xA8E00000A8F8, + 0xA8FB0000A8FC, + 0xA8FD0000A92E, + 0xA9300000A954, + 0xA9800000A9C1, + 0xA9CF0000A9DA, + 0xA9E00000A9FF, + 0xAA000000AA37, + 0xAA400000AA4E, + 0xAA500000AA5A, + 0xAA600000AA77, + 0xAA7A0000AAC3, + 0xAADB0000AADE, + 0xAAE00000AAF0, + 0xAAF20000AAF7, + 0xAB010000AB07, + 0xAB090000AB0F, + 0xAB110000AB17, + 0xAB200000AB27, + 0xAB280000AB2F, + 0xAB300000AB5B, + 0xAB600000AB69, + 0xABC00000ABEB, + 0xABEC0000ABEE, + 0xABF00000ABFA, + 0xAC000000D7A4, + 0xFA0E0000FA10, + 0xFA110000FA12, + 0xFA130000FA15, + 0xFA1F0000FA20, + 0xFA210000FA22, + 0xFA230000FA25, + 0xFA270000FA2A, + 0xFB1E0000FB1F, + 0xFE200000FE30, + 0xFE730000FE74, + 0x100000001000C, + 0x1000D00010027, + 0x100280001003B, + 0x1003C0001003E, + 0x1003F0001004E, + 0x100500001005E, + 0x10080000100FB, + 0x101FD000101FE, + 0x102800001029D, + 0x102A0000102D1, + 0x102E0000102E1, + 0x1030000010320, + 0x1032D00010341, + 0x103420001034A, + 0x103500001037B, + 0x103800001039E, + 0x103A0000103C4, + 0x103C8000103D0, + 0x104280001049E, + 0x104A0000104AA, + 0x104D8000104FC, + 0x1050000010528, + 0x1053000010564, + 0x10597000105A2, + 0x105A3000105B2, + 0x105B3000105BA, + 0x105BB000105BD, + 0x1060000010737, + 0x1074000010756, + 0x1076000010768, + 0x1078000010781, + 0x1080000010806, + 0x1080800010809, + 0x1080A00010836, + 0x1083700010839, + 0x1083C0001083D, + 0x1083F00010856, + 0x1086000010877, + 0x108800001089F, + 0x108E0000108F3, + 0x108F4000108F6, + 0x1090000010916, + 0x109200001093A, + 0x10980000109B8, + 0x109BE000109C0, + 0x10A0000010A04, + 0x10A0500010A07, + 0x10A0C00010A14, + 0x10A1500010A18, + 0x10A1900010A36, + 0x10A3800010A3B, + 0x10A3F00010A40, + 0x10A6000010A7D, + 0x10A8000010A9D, + 0x10AC000010AC8, + 0x10AC900010AE7, + 0x10B0000010B36, + 0x10B4000010B56, + 0x10B6000010B73, + 0x10B8000010B92, + 0x10C0000010C49, + 0x10CC000010CF3, + 0x10D0000010D28, + 0x10D3000010D3A, + 0x10E8000010EAA, + 0x10EAB00010EAD, + 0x10EB000010EB2, + 0x10EFD00010F1D, + 0x10F2700010F28, + 0x10F3000010F51, + 0x10F7000010F86, + 0x10FB000010FC5, + 0x10FE000010FF7, + 0x1100000011047, + 0x1106600011076, + 0x1107F000110BB, + 0x110C2000110C3, + 0x110D0000110E9, + 0x110F0000110FA, + 0x1110000011135, + 0x1113600011140, + 0x1114400011148, + 0x1115000011174, + 0x1117600011177, + 0x11180000111C5, + 0x111C9000111CD, + 0x111CE000111DB, + 0x111DC000111DD, + 0x1120000011212, + 0x1121300011238, + 0x1123E00011242, + 0x1128000011287, + 0x1128800011289, + 0x1128A0001128E, + 0x1128F0001129E, + 0x1129F000112A9, + 0x112B0000112EB, + 0x112F0000112FA, + 0x1130000011304, + 0x113050001130D, + 0x1130F00011311, + 0x1131300011329, + 0x1132A00011331, + 0x1133200011334, + 0x113350001133A, + 0x1133B00011345, + 0x1134700011349, + 0x1134B0001134E, + 0x1135000011351, + 0x1135700011358, + 0x1135D00011364, + 0x113660001136D, + 0x1137000011375, + 0x114000001144B, + 0x114500001145A, + 0x1145E00011462, + 0x11480000114C6, + 0x114C7000114C8, + 0x114D0000114DA, + 0x11580000115B6, + 0x115B8000115C1, + 0x115D8000115DE, + 0x1160000011641, + 0x1164400011645, + 0x116500001165A, + 0x11680000116B9, + 0x116C0000116CA, + 0x117000001171B, + 0x1171D0001172C, + 0x117300001173A, + 0x1174000011747, + 0x118000001183B, + 0x118C0000118EA, + 0x118FF00011907, + 0x119090001190A, + 0x1190C00011914, + 0x1191500011917, + 0x1191800011936, + 0x1193700011939, + 0x1193B00011944, + 0x119500001195A, + 0x119A0000119A8, + 0x119AA000119D8, + 0x119DA000119E2, + 0x119E3000119E5, + 0x11A0000011A3F, + 0x11A4700011A48, + 0x11A5000011A9A, + 0x11A9D00011A9E, + 0x11AB000011AF9, + 0x11C0000011C09, + 0x11C0A00011C37, + 0x11C3800011C41, + 0x11C5000011C5A, + 0x11C7200011C90, + 0x11C9200011CA8, + 0x11CA900011CB7, + 0x11D0000011D07, + 0x11D0800011D0A, + 0x11D0B00011D37, + 0x11D3A00011D3B, + 0x11D3C00011D3E, + 0x11D3F00011D48, + 0x11D5000011D5A, + 0x11D6000011D66, + 0x11D6700011D69, + 0x11D6A00011D8F, + 0x11D9000011D92, + 0x11D9300011D99, + 0x11DA000011DAA, + 0x11EE000011EF7, + 0x11F0000011F11, + 0x11F1200011F3B, + 0x11F3E00011F43, + 0x11F5000011F5A, + 0x11FB000011FB1, + 0x120000001239A, + 0x1248000012544, + 0x12F9000012FF1, + 0x1300000013430, + 0x1344000013456, + 0x1440000014647, + 0x1680000016A39, + 0x16A4000016A5F, + 0x16A6000016A6A, + 0x16A7000016ABF, + 0x16AC000016ACA, + 0x16AD000016AEE, + 0x16AF000016AF5, + 0x16B0000016B37, + 0x16B4000016B44, + 0x16B5000016B5A, + 0x16B6300016B78, + 0x16B7D00016B90, + 0x16E6000016E80, + 0x16F0000016F4B, + 0x16F4F00016F88, + 0x16F8F00016FA0, + 0x16FE000016FE2, + 0x16FE300016FE5, + 0x16FF000016FF2, + 0x17000000187F8, + 0x1880000018CD6, + 0x18D0000018D09, + 0x1AFF00001AFF4, + 0x1AFF50001AFFC, + 0x1AFFD0001AFFF, + 0x1B0000001B123, + 0x1B1320001B133, + 0x1B1500001B153, + 0x1B1550001B156, + 0x1B1640001B168, + 0x1B1700001B2FC, + 0x1BC000001BC6B, + 0x1BC700001BC7D, + 0x1BC800001BC89, + 0x1BC900001BC9A, + 0x1BC9D0001BC9F, + 0x1CF000001CF2E, + 0x1CF300001CF47, + 0x1DA000001DA37, + 0x1DA3B0001DA6D, + 0x1DA750001DA76, + 0x1DA840001DA85, + 0x1DA9B0001DAA0, + 0x1DAA10001DAB0, + 0x1DF000001DF1F, + 0x1DF250001DF2B, + 0x1E0000001E007, + 0x1E0080001E019, + 0x1E01B0001E022, + 0x1E0230001E025, + 0x1E0260001E02B, + 0x1E08F0001E090, + 0x1E1000001E12D, + 0x1E1300001E13E, + 0x1E1400001E14A, + 0x1E14E0001E14F, + 0x1E2900001E2AF, + 0x1E2C00001E2FA, + 0x1E4D00001E4FA, + 0x1E7E00001E7E7, + 0x1E7E80001E7EC, + 0x1E7ED0001E7EF, + 0x1E7F00001E7FF, + 0x1E8000001E8C5, + 0x1E8D00001E8D7, + 0x1E9220001E94C, + 0x1E9500001E95A, + 0x200000002A6E0, + 0x2A7000002B73A, + 0x2B7400002B81E, + 0x2B8200002CEA2, + 0x2CEB00002EBE1, + 0x2EBF00002EE5E, + 0x300000003134B, + 0x31350000323B0, + ), + "CONTEXTJ": (0x200C0000200E,), + "CONTEXTO": ( + 0xB7000000B8, + 0x37500000376, + 0x5F3000005F5, + 0x6600000066A, + 0x6F0000006FA, + 0x30FB000030FC, + ), +} diff --git a/.venv/lib/python3.11/site-packages/idna/intranges.py b/.venv/lib/python3.11/site-packages/idna/intranges.py new file mode 100644 index 0000000..7bfaa8d --- /dev/null +++ b/.venv/lib/python3.11/site-packages/idna/intranges.py @@ -0,0 +1,57 @@ +""" +Given a list of integers, made up of (hopefully) a small number of long runs +of consecutive integers, compute a representation of the form +((start1, end1), (start2, end2) ...). Then answer the question "was x present +in the original list?" in time O(log(# runs)). +""" + +import bisect +from typing import List, Tuple + + +def intranges_from_list(list_: List[int]) -> Tuple[int, ...]: + """Represent a list of integers as a sequence of ranges: + ((start_0, end_0), (start_1, end_1), ...), such that the original + integers are exactly those x such that start_i <= x < end_i for some i. + + Ranges are encoded as single integers (start << 32 | end), not as tuples. + """ + + sorted_list = sorted(list_) + ranges = [] + last_write = -1 + for i in range(len(sorted_list)): + if i + 1 < len(sorted_list): + if sorted_list[i] == sorted_list[i + 1] - 1: + continue + current_range = sorted_list[last_write + 1 : i + 1] + ranges.append(_encode_range(current_range[0], current_range[-1] + 1)) + last_write = i + + return tuple(ranges) + + +def _encode_range(start: int, end: int) -> int: + return (start << 32) | end + + +def _decode_range(r: int) -> Tuple[int, int]: + return (r >> 32), (r & ((1 << 32) - 1)) + + +def intranges_contain(int_: int, ranges: Tuple[int, ...]) -> bool: + """Determine if `int_` falls into one of the ranges in `ranges`.""" + tuple_ = _encode_range(int_, 0) + pos = bisect.bisect_left(ranges, tuple_) + # we could be immediately ahead of a tuple (start, end) + # with start < int_ <= end + if pos > 0: + left, right = _decode_range(ranges[pos - 1]) + if left <= int_ < right: + return True + # or we could be immediately behind a tuple (int_, end) + if pos < len(ranges): + left, _ = _decode_range(ranges[pos]) + if left == int_: + return True + return False diff --git a/.venv/lib/python3.11/site-packages/idna/package_data.py b/.venv/lib/python3.11/site-packages/idna/package_data.py new file mode 100644 index 0000000..514ff7e --- /dev/null +++ b/.venv/lib/python3.11/site-packages/idna/package_data.py @@ -0,0 +1 @@ +__version__ = "3.10" diff --git a/.venv/lib/python3.11/site-packages/idna/py.typed b/.venv/lib/python3.11/site-packages/idna/py.typed new file mode 100644 index 0000000..e69de29 diff --git a/.venv/lib/python3.11/site-packages/idna/uts46data.py b/.venv/lib/python3.11/site-packages/idna/uts46data.py new file mode 100644 index 0000000..eb89432 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/idna/uts46data.py @@ -0,0 +1,8681 @@ +# This file is automatically generated by tools/idna-data +# vim: set fileencoding=utf-8 : + +from typing import List, Tuple, Union + +"""IDNA Mapping Table from UTS46.""" + + +__version__ = "15.1.0" + + +def _seg_0() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x0, "3"), + (0x1, "3"), + (0x2, "3"), + (0x3, "3"), + (0x4, "3"), + (0x5, "3"), + (0x6, "3"), + (0x7, "3"), + (0x8, "3"), + (0x9, "3"), + (0xA, "3"), + (0xB, "3"), + (0xC, "3"), + (0xD, "3"), + (0xE, "3"), + (0xF, "3"), + (0x10, "3"), + (0x11, "3"), + (0x12, "3"), + (0x13, "3"), + (0x14, "3"), + (0x15, "3"), + (0x16, "3"), + (0x17, "3"), + (0x18, "3"), + (0x19, "3"), + (0x1A, "3"), + (0x1B, "3"), + (0x1C, "3"), + (0x1D, "3"), + (0x1E, "3"), + (0x1F, "3"), + (0x20, "3"), + (0x21, "3"), + (0x22, "3"), + (0x23, "3"), + (0x24, "3"), + (0x25, "3"), + (0x26, "3"), + (0x27, "3"), + (0x28, "3"), + (0x29, "3"), + (0x2A, "3"), + (0x2B, "3"), + (0x2C, "3"), + (0x2D, "V"), + (0x2E, "V"), + (0x2F, "3"), + (0x30, "V"), + (0x31, "V"), + (0x32, "V"), + (0x33, "V"), + (0x34, "V"), + (0x35, "V"), + (0x36, "V"), + (0x37, "V"), + (0x38, "V"), + (0x39, "V"), + (0x3A, "3"), + (0x3B, "3"), + (0x3C, "3"), + (0x3D, "3"), + (0x3E, "3"), + (0x3F, "3"), + (0x40, "3"), + (0x41, "M", "a"), + (0x42, "M", "b"), + (0x43, "M", "c"), + (0x44, "M", "d"), + (0x45, "M", "e"), + (0x46, "M", "f"), + (0x47, "M", "g"), + (0x48, "M", "h"), + (0x49, "M", "i"), + (0x4A, "M", "j"), + (0x4B, "M", "k"), + (0x4C, "M", "l"), + (0x4D, "M", "m"), + (0x4E, "M", "n"), + (0x4F, "M", "o"), + (0x50, "M", "p"), + (0x51, "M", "q"), + (0x52, "M", "r"), + (0x53, "M", "s"), + (0x54, "M", "t"), + (0x55, "M", "u"), + (0x56, "M", "v"), + (0x57, "M", "w"), + (0x58, "M", "x"), + (0x59, "M", "y"), + (0x5A, "M", "z"), + (0x5B, "3"), + (0x5C, "3"), + (0x5D, "3"), + (0x5E, "3"), + (0x5F, "3"), + (0x60, "3"), + (0x61, "V"), + (0x62, "V"), + (0x63, "V"), + ] + + +def _seg_1() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x64, "V"), + (0x65, "V"), + (0x66, "V"), + (0x67, "V"), + (0x68, "V"), + (0x69, "V"), + (0x6A, "V"), + (0x6B, "V"), + (0x6C, "V"), + (0x6D, "V"), + (0x6E, "V"), + (0x6F, "V"), + (0x70, "V"), + (0x71, "V"), + (0x72, "V"), + (0x73, "V"), + (0x74, "V"), + (0x75, "V"), + (0x76, "V"), + (0x77, "V"), + (0x78, "V"), + (0x79, "V"), + (0x7A, "V"), + (0x7B, "3"), + (0x7C, "3"), + (0x7D, "3"), + (0x7E, "3"), + (0x7F, "3"), + (0x80, "X"), + (0x81, "X"), + (0x82, "X"), + (0x83, "X"), + (0x84, "X"), + (0x85, "X"), + (0x86, "X"), + (0x87, "X"), + (0x88, "X"), + (0x89, "X"), + (0x8A, "X"), + (0x8B, "X"), + (0x8C, "X"), + (0x8D, "X"), + (0x8E, "X"), + (0x8F, "X"), + (0x90, "X"), + (0x91, "X"), + (0x92, "X"), + (0x93, "X"), + (0x94, "X"), + (0x95, "X"), + (0x96, "X"), + (0x97, "X"), + (0x98, "X"), + (0x99, "X"), + (0x9A, "X"), + (0x9B, "X"), + (0x9C, "X"), + (0x9D, "X"), + (0x9E, "X"), + (0x9F, "X"), + (0xA0, "3", " "), + (0xA1, "V"), + (0xA2, "V"), + (0xA3, "V"), + (0xA4, "V"), + (0xA5, "V"), + (0xA6, "V"), + (0xA7, "V"), + (0xA8, "3", " ̈"), + (0xA9, "V"), + (0xAA, "M", "a"), + (0xAB, "V"), + (0xAC, "V"), + (0xAD, "I"), + (0xAE, "V"), + (0xAF, "3", " ̄"), + (0xB0, "V"), + (0xB1, "V"), + (0xB2, "M", "2"), + (0xB3, "M", "3"), + (0xB4, "3", " ́"), + (0xB5, "M", "μ"), + (0xB6, "V"), + (0xB7, "V"), + (0xB8, "3", " ̧"), + (0xB9, "M", "1"), + (0xBA, "M", "o"), + (0xBB, "V"), + (0xBC, "M", "1⁄4"), + (0xBD, "M", "1⁄2"), + (0xBE, "M", "3⁄4"), + (0xBF, "V"), + (0xC0, "M", "à"), + (0xC1, "M", "á"), + (0xC2, "M", "â"), + (0xC3, "M", "ã"), + (0xC4, "M", "ä"), + (0xC5, "M", "å"), + (0xC6, "M", "æ"), + (0xC7, "M", "ç"), + ] + + +def _seg_2() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xC8, "M", "è"), + (0xC9, "M", "é"), + (0xCA, "M", "ê"), + (0xCB, "M", "ë"), + (0xCC, "M", "ì"), + (0xCD, "M", "í"), + (0xCE, "M", "î"), + (0xCF, "M", "ï"), + (0xD0, "M", "ð"), + (0xD1, "M", "ñ"), + (0xD2, "M", "ò"), + (0xD3, "M", "ó"), + (0xD4, "M", "ô"), + (0xD5, "M", "õ"), + (0xD6, "M", "ö"), + (0xD7, "V"), + (0xD8, "M", "ø"), + (0xD9, "M", "ù"), + (0xDA, "M", "ú"), + (0xDB, "M", "û"), + (0xDC, "M", "ü"), + (0xDD, "M", "ý"), + (0xDE, "M", "þ"), + (0xDF, "D", "ss"), + (0xE0, "V"), + (0xE1, "V"), + (0xE2, "V"), + (0xE3, "V"), + (0xE4, "V"), + (0xE5, "V"), + (0xE6, "V"), + (0xE7, "V"), + (0xE8, "V"), + (0xE9, "V"), + (0xEA, "V"), + (0xEB, "V"), + (0xEC, "V"), + (0xED, "V"), + (0xEE, "V"), + (0xEF, "V"), + (0xF0, "V"), + (0xF1, "V"), + (0xF2, "V"), + (0xF3, "V"), + (0xF4, "V"), + (0xF5, "V"), + (0xF6, "V"), + (0xF7, "V"), + (0xF8, "V"), + (0xF9, "V"), + (0xFA, "V"), + (0xFB, "V"), + (0xFC, "V"), + (0xFD, "V"), + (0xFE, "V"), + (0xFF, "V"), + (0x100, "M", "ā"), + (0x101, "V"), + (0x102, "M", "ă"), + (0x103, "V"), + (0x104, "M", "ą"), + (0x105, "V"), + (0x106, "M", "ć"), + (0x107, "V"), + (0x108, "M", "ĉ"), + (0x109, "V"), + (0x10A, "M", "ċ"), + (0x10B, "V"), + (0x10C, "M", "č"), + (0x10D, "V"), + (0x10E, "M", "ď"), + (0x10F, "V"), + (0x110, "M", "đ"), + (0x111, "V"), + (0x112, "M", "ē"), + (0x113, "V"), + (0x114, "M", "ĕ"), + (0x115, "V"), + (0x116, "M", "ė"), + (0x117, "V"), + (0x118, "M", "ę"), + (0x119, "V"), + (0x11A, "M", "ě"), + (0x11B, "V"), + (0x11C, "M", "ĝ"), + (0x11D, "V"), + (0x11E, "M", "ğ"), + (0x11F, "V"), + (0x120, "M", "ġ"), + (0x121, "V"), + (0x122, "M", "ģ"), + (0x123, "V"), + (0x124, "M", "ĥ"), + (0x125, "V"), + (0x126, "M", "ħ"), + (0x127, "V"), + (0x128, "M", "ĩ"), + (0x129, "V"), + (0x12A, "M", "ī"), + (0x12B, "V"), + ] + + +def _seg_3() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x12C, "M", "ĭ"), + (0x12D, "V"), + (0x12E, "M", "į"), + (0x12F, "V"), + (0x130, "M", "i̇"), + (0x131, "V"), + (0x132, "M", "ij"), + (0x134, "M", "ĵ"), + (0x135, "V"), + (0x136, "M", "ķ"), + (0x137, "V"), + (0x139, "M", "ĺ"), + (0x13A, "V"), + (0x13B, "M", "ļ"), + (0x13C, "V"), + (0x13D, "M", "ľ"), + (0x13E, "V"), + (0x13F, "M", "l·"), + (0x141, "M", "ł"), + (0x142, "V"), + (0x143, "M", "ń"), + (0x144, "V"), + (0x145, "M", "ņ"), + (0x146, "V"), + (0x147, "M", "ň"), + (0x148, "V"), + (0x149, "M", "ʼn"), + (0x14A, "M", "ŋ"), + (0x14B, "V"), + (0x14C, "M", "ō"), + (0x14D, "V"), + (0x14E, "M", "ŏ"), + (0x14F, "V"), + (0x150, "M", "ő"), + (0x151, "V"), + (0x152, "M", "œ"), + (0x153, "V"), + (0x154, "M", "ŕ"), + (0x155, "V"), + (0x156, "M", "ŗ"), + (0x157, "V"), + (0x158, "M", "ř"), + (0x159, "V"), + (0x15A, "M", "ś"), + (0x15B, "V"), + (0x15C, "M", "ŝ"), + (0x15D, "V"), + (0x15E, "M", "ş"), + (0x15F, "V"), + (0x160, "M", "š"), + (0x161, "V"), + (0x162, "M", "ţ"), + (0x163, "V"), + (0x164, "M", "ť"), + (0x165, "V"), + (0x166, "M", "ŧ"), + (0x167, "V"), + (0x168, "M", "ũ"), + (0x169, "V"), + (0x16A, "M", "ū"), + (0x16B, "V"), + (0x16C, "M", "ŭ"), + (0x16D, "V"), + (0x16E, "M", "ů"), + (0x16F, "V"), + (0x170, "M", "ű"), + (0x171, "V"), + (0x172, "M", "ų"), + (0x173, "V"), + (0x174, "M", "ŵ"), + (0x175, "V"), + (0x176, "M", "ŷ"), + (0x177, "V"), + (0x178, "M", "ÿ"), + (0x179, "M", "ź"), + (0x17A, "V"), + (0x17B, "M", "ż"), + (0x17C, "V"), + (0x17D, "M", "ž"), + (0x17E, "V"), + (0x17F, "M", "s"), + (0x180, "V"), + (0x181, "M", "ɓ"), + (0x182, "M", "ƃ"), + (0x183, "V"), + (0x184, "M", "ƅ"), + (0x185, "V"), + (0x186, "M", "ɔ"), + (0x187, "M", "ƈ"), + (0x188, "V"), + (0x189, "M", "ɖ"), + (0x18A, "M", "ɗ"), + (0x18B, "M", "ƌ"), + (0x18C, "V"), + (0x18E, "M", "ǝ"), + (0x18F, "M", "ə"), + (0x190, "M", "ɛ"), + (0x191, "M", "ƒ"), + (0x192, "V"), + (0x193, "M", "ɠ"), + ] + + +def _seg_4() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x194, "M", "ɣ"), + (0x195, "V"), + (0x196, "M", "ɩ"), + (0x197, "M", "ɨ"), + (0x198, "M", "ƙ"), + (0x199, "V"), + (0x19C, "M", "ɯ"), + (0x19D, "M", "ɲ"), + (0x19E, "V"), + (0x19F, "M", "ɵ"), + (0x1A0, "M", "ơ"), + (0x1A1, "V"), + (0x1A2, "M", "ƣ"), + (0x1A3, "V"), + (0x1A4, "M", "ƥ"), + (0x1A5, "V"), + (0x1A6, "M", "ʀ"), + (0x1A7, "M", "ƨ"), + (0x1A8, "V"), + (0x1A9, "M", "ʃ"), + (0x1AA, "V"), + (0x1AC, "M", "ƭ"), + (0x1AD, "V"), + (0x1AE, "M", "ʈ"), + (0x1AF, "M", "ư"), + (0x1B0, "V"), + (0x1B1, "M", "ʊ"), + (0x1B2, "M", "ʋ"), + (0x1B3, "M", "ƴ"), + (0x1B4, "V"), + (0x1B5, "M", "ƶ"), + (0x1B6, "V"), + (0x1B7, "M", "ʒ"), + (0x1B8, "M", "ƹ"), + (0x1B9, "V"), + (0x1BC, "M", "ƽ"), + (0x1BD, "V"), + (0x1C4, "M", "dž"), + (0x1C7, "M", "lj"), + (0x1CA, "M", "nj"), + (0x1CD, "M", "ǎ"), + (0x1CE, "V"), + (0x1CF, "M", "ǐ"), + (0x1D0, "V"), + (0x1D1, "M", "ǒ"), + (0x1D2, "V"), + (0x1D3, "M", "ǔ"), + (0x1D4, "V"), + (0x1D5, "M", "ǖ"), + (0x1D6, "V"), + (0x1D7, "M", "ǘ"), + (0x1D8, "V"), + (0x1D9, "M", "ǚ"), + (0x1DA, "V"), + (0x1DB, "M", "ǜ"), + (0x1DC, "V"), + (0x1DE, "M", "ǟ"), + (0x1DF, "V"), + (0x1E0, "M", "ǡ"), + (0x1E1, "V"), + (0x1E2, "M", "ǣ"), + (0x1E3, "V"), + (0x1E4, "M", "ǥ"), + (0x1E5, "V"), + (0x1E6, "M", "ǧ"), + (0x1E7, "V"), + (0x1E8, "M", "ǩ"), + (0x1E9, "V"), + (0x1EA, "M", "ǫ"), + (0x1EB, "V"), + (0x1EC, "M", "ǭ"), + (0x1ED, "V"), + (0x1EE, "M", "ǯ"), + (0x1EF, "V"), + (0x1F1, "M", "dz"), + (0x1F4, "M", "ǵ"), + (0x1F5, "V"), + (0x1F6, "M", "ƕ"), + (0x1F7, "M", "ƿ"), + (0x1F8, "M", "ǹ"), + (0x1F9, "V"), + (0x1FA, "M", "ǻ"), + (0x1FB, "V"), + (0x1FC, "M", "ǽ"), + (0x1FD, "V"), + (0x1FE, "M", "ǿ"), + (0x1FF, "V"), + (0x200, "M", "ȁ"), + (0x201, "V"), + (0x202, "M", "ȃ"), + (0x203, "V"), + (0x204, "M", "ȅ"), + (0x205, "V"), + (0x206, "M", "ȇ"), + (0x207, "V"), + (0x208, "M", "ȉ"), + (0x209, "V"), + (0x20A, "M", "ȋ"), + (0x20B, "V"), + (0x20C, "M", "ȍ"), + ] + + +def _seg_5() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x20D, "V"), + (0x20E, "M", "ȏ"), + (0x20F, "V"), + (0x210, "M", "ȑ"), + (0x211, "V"), + (0x212, "M", "ȓ"), + (0x213, "V"), + (0x214, "M", "ȕ"), + (0x215, "V"), + (0x216, "M", "ȗ"), + (0x217, "V"), + (0x218, "M", "ș"), + (0x219, "V"), + (0x21A, "M", "ț"), + (0x21B, "V"), + (0x21C, "M", "ȝ"), + (0x21D, "V"), + (0x21E, "M", "ȟ"), + (0x21F, "V"), + (0x220, "M", "ƞ"), + (0x221, "V"), + (0x222, "M", "ȣ"), + (0x223, "V"), + (0x224, "M", "ȥ"), + (0x225, "V"), + (0x226, "M", "ȧ"), + (0x227, "V"), + (0x228, "M", "ȩ"), + (0x229, "V"), + (0x22A, "M", "ȫ"), + (0x22B, "V"), + (0x22C, "M", "ȭ"), + (0x22D, "V"), + (0x22E, "M", "ȯ"), + (0x22F, "V"), + (0x230, "M", "ȱ"), + (0x231, "V"), + (0x232, "M", "ȳ"), + (0x233, "V"), + (0x23A, "M", "ⱥ"), + (0x23B, "M", "ȼ"), + (0x23C, "V"), + (0x23D, "M", "ƚ"), + (0x23E, "M", "ⱦ"), + (0x23F, "V"), + (0x241, "M", "ɂ"), + (0x242, "V"), + (0x243, "M", "ƀ"), + (0x244, "M", "ʉ"), + (0x245, "M", "ʌ"), + (0x246, "M", "ɇ"), + (0x247, "V"), + (0x248, "M", "ɉ"), + (0x249, "V"), + (0x24A, "M", "ɋ"), + (0x24B, "V"), + (0x24C, "M", "ɍ"), + (0x24D, "V"), + (0x24E, "M", "ɏ"), + (0x24F, "V"), + (0x2B0, "M", "h"), + (0x2B1, "M", "ɦ"), + (0x2B2, "M", "j"), + (0x2B3, "M", "r"), + (0x2B4, "M", "ɹ"), + (0x2B5, "M", "ɻ"), + (0x2B6, "M", "ʁ"), + (0x2B7, "M", "w"), + (0x2B8, "M", "y"), + (0x2B9, "V"), + (0x2D8, "3", " ̆"), + (0x2D9, "3", " ̇"), + (0x2DA, "3", " ̊"), + (0x2DB, "3", " ̨"), + (0x2DC, "3", " ̃"), + (0x2DD, "3", " ̋"), + (0x2DE, "V"), + (0x2E0, "M", "ɣ"), + (0x2E1, "M", "l"), + (0x2E2, "M", "s"), + (0x2E3, "M", "x"), + (0x2E4, "M", "ʕ"), + (0x2E5, "V"), + (0x340, "M", "̀"), + (0x341, "M", "́"), + (0x342, "V"), + (0x343, "M", "̓"), + (0x344, "M", "̈́"), + (0x345, "M", "ι"), + (0x346, "V"), + (0x34F, "I"), + (0x350, "V"), + (0x370, "M", "ͱ"), + (0x371, "V"), + (0x372, "M", "ͳ"), + (0x373, "V"), + (0x374, "M", "ʹ"), + (0x375, "V"), + (0x376, "M", "ͷ"), + (0x377, "V"), + ] + + +def _seg_6() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x378, "X"), + (0x37A, "3", " ι"), + (0x37B, "V"), + (0x37E, "3", ";"), + (0x37F, "M", "ϳ"), + (0x380, "X"), + (0x384, "3", " ́"), + (0x385, "3", " ̈́"), + (0x386, "M", "ά"), + (0x387, "M", "·"), + (0x388, "M", "έ"), + (0x389, "M", "ή"), + (0x38A, "M", "ί"), + (0x38B, "X"), + (0x38C, "M", "ό"), + (0x38D, "X"), + (0x38E, "M", "ύ"), + (0x38F, "M", "ώ"), + (0x390, "V"), + (0x391, "M", "α"), + (0x392, "M", "β"), + (0x393, "M", "γ"), + (0x394, "M", "δ"), + (0x395, "M", "ε"), + (0x396, "M", "ζ"), + (0x397, "M", "η"), + (0x398, "M", "θ"), + (0x399, "M", "ι"), + (0x39A, "M", "κ"), + (0x39B, "M", "λ"), + (0x39C, "M", "μ"), + (0x39D, "M", "ν"), + (0x39E, "M", "ξ"), + (0x39F, "M", "ο"), + (0x3A0, "M", "π"), + (0x3A1, "M", "ρ"), + (0x3A2, "X"), + (0x3A3, "M", "σ"), + (0x3A4, "M", "τ"), + (0x3A5, "M", "υ"), + (0x3A6, "M", "φ"), + (0x3A7, "M", "χ"), + (0x3A8, "M", "ψ"), + (0x3A9, "M", "ω"), + (0x3AA, "M", "ϊ"), + (0x3AB, "M", "ϋ"), + (0x3AC, "V"), + (0x3C2, "D", "σ"), + (0x3C3, "V"), + (0x3CF, "M", "ϗ"), + (0x3D0, "M", "β"), + (0x3D1, "M", "θ"), + (0x3D2, "M", "υ"), + (0x3D3, "M", "ύ"), + (0x3D4, "M", "ϋ"), + (0x3D5, "M", "φ"), + (0x3D6, "M", "π"), + (0x3D7, "V"), + (0x3D8, "M", "ϙ"), + (0x3D9, "V"), + (0x3DA, "M", "ϛ"), + (0x3DB, "V"), + (0x3DC, "M", "ϝ"), + (0x3DD, "V"), + (0x3DE, "M", "ϟ"), + (0x3DF, "V"), + (0x3E0, "M", "ϡ"), + (0x3E1, "V"), + (0x3E2, "M", "ϣ"), + (0x3E3, "V"), + (0x3E4, "M", "ϥ"), + (0x3E5, "V"), + (0x3E6, "M", "ϧ"), + (0x3E7, "V"), + (0x3E8, "M", "ϩ"), + (0x3E9, "V"), + (0x3EA, "M", "ϫ"), + (0x3EB, "V"), + (0x3EC, "M", "ϭ"), + (0x3ED, "V"), + (0x3EE, "M", "ϯ"), + (0x3EF, "V"), + (0x3F0, "M", "κ"), + (0x3F1, "M", "ρ"), + (0x3F2, "M", "σ"), + (0x3F3, "V"), + (0x3F4, "M", "θ"), + (0x3F5, "M", "ε"), + (0x3F6, "V"), + (0x3F7, "M", "ϸ"), + (0x3F8, "V"), + (0x3F9, "M", "σ"), + (0x3FA, "M", "ϻ"), + (0x3FB, "V"), + (0x3FD, "M", "ͻ"), + (0x3FE, "M", "ͼ"), + (0x3FF, "M", "ͽ"), + (0x400, "M", "ѐ"), + (0x401, "M", "ё"), + (0x402, "M", "ђ"), + ] + + +def _seg_7() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x403, "M", "ѓ"), + (0x404, "M", "є"), + (0x405, "M", "ѕ"), + (0x406, "M", "і"), + (0x407, "M", "ї"), + (0x408, "M", "ј"), + (0x409, "M", "љ"), + (0x40A, "M", "њ"), + (0x40B, "M", "ћ"), + (0x40C, "M", "ќ"), + (0x40D, "M", "ѝ"), + (0x40E, "M", "ў"), + (0x40F, "M", "џ"), + (0x410, "M", "а"), + (0x411, "M", "б"), + (0x412, "M", "в"), + (0x413, "M", "г"), + (0x414, "M", "д"), + (0x415, "M", "е"), + (0x416, "M", "ж"), + (0x417, "M", "з"), + (0x418, "M", "и"), + (0x419, "M", "й"), + (0x41A, "M", "к"), + (0x41B, "M", "л"), + (0x41C, "M", "м"), + (0x41D, "M", "н"), + (0x41E, "M", "о"), + (0x41F, "M", "п"), + (0x420, "M", "р"), + (0x421, "M", "с"), + (0x422, "M", "т"), + (0x423, "M", "у"), + (0x424, "M", "ф"), + (0x425, "M", "х"), + (0x426, "M", "ц"), + (0x427, "M", "ч"), + (0x428, "M", "ш"), + (0x429, "M", "щ"), + (0x42A, "M", "ъ"), + (0x42B, "M", "ы"), + (0x42C, "M", "ь"), + (0x42D, "M", "э"), + (0x42E, "M", "ю"), + (0x42F, "M", "я"), + (0x430, "V"), + (0x460, "M", "ѡ"), + (0x461, "V"), + (0x462, "M", "ѣ"), + (0x463, "V"), + (0x464, "M", "ѥ"), + (0x465, "V"), + (0x466, "M", "ѧ"), + (0x467, "V"), + (0x468, "M", "ѩ"), + (0x469, "V"), + (0x46A, "M", "ѫ"), + (0x46B, "V"), + (0x46C, "M", "ѭ"), + (0x46D, "V"), + (0x46E, "M", "ѯ"), + (0x46F, "V"), + (0x470, "M", "ѱ"), + (0x471, "V"), + (0x472, "M", "ѳ"), + (0x473, "V"), + (0x474, "M", "ѵ"), + (0x475, "V"), + (0x476, "M", "ѷ"), + (0x477, "V"), + (0x478, "M", "ѹ"), + (0x479, "V"), + (0x47A, "M", "ѻ"), + (0x47B, "V"), + (0x47C, "M", "ѽ"), + (0x47D, "V"), + (0x47E, "M", "ѿ"), + (0x47F, "V"), + (0x480, "M", "ҁ"), + (0x481, "V"), + (0x48A, "M", "ҋ"), + (0x48B, "V"), + (0x48C, "M", "ҍ"), + (0x48D, "V"), + (0x48E, "M", "ҏ"), + (0x48F, "V"), + (0x490, "M", "ґ"), + (0x491, "V"), + (0x492, "M", "ғ"), + (0x493, "V"), + (0x494, "M", "ҕ"), + (0x495, "V"), + (0x496, "M", "җ"), + (0x497, "V"), + (0x498, "M", "ҙ"), + (0x499, "V"), + (0x49A, "M", "қ"), + (0x49B, "V"), + (0x49C, "M", "ҝ"), + (0x49D, "V"), + ] + + +def _seg_8() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x49E, "M", "ҟ"), + (0x49F, "V"), + (0x4A0, "M", "ҡ"), + (0x4A1, "V"), + (0x4A2, "M", "ң"), + (0x4A3, "V"), + (0x4A4, "M", "ҥ"), + (0x4A5, "V"), + (0x4A6, "M", "ҧ"), + (0x4A7, "V"), + (0x4A8, "M", "ҩ"), + (0x4A9, "V"), + (0x4AA, "M", "ҫ"), + (0x4AB, "V"), + (0x4AC, "M", "ҭ"), + (0x4AD, "V"), + (0x4AE, "M", "ү"), + (0x4AF, "V"), + (0x4B0, "M", "ұ"), + (0x4B1, "V"), + (0x4B2, "M", "ҳ"), + (0x4B3, "V"), + (0x4B4, "M", "ҵ"), + (0x4B5, "V"), + (0x4B6, "M", "ҷ"), + (0x4B7, "V"), + (0x4B8, "M", "ҹ"), + (0x4B9, "V"), + (0x4BA, "M", "һ"), + (0x4BB, "V"), + (0x4BC, "M", "ҽ"), + (0x4BD, "V"), + (0x4BE, "M", "ҿ"), + (0x4BF, "V"), + (0x4C0, "X"), + (0x4C1, "M", "ӂ"), + (0x4C2, "V"), + (0x4C3, "M", "ӄ"), + (0x4C4, "V"), + (0x4C5, "M", "ӆ"), + (0x4C6, "V"), + (0x4C7, "M", "ӈ"), + (0x4C8, "V"), + (0x4C9, "M", "ӊ"), + (0x4CA, "V"), + (0x4CB, "M", "ӌ"), + (0x4CC, "V"), + (0x4CD, "M", "ӎ"), + (0x4CE, "V"), + (0x4D0, "M", "ӑ"), + (0x4D1, "V"), + (0x4D2, "M", "ӓ"), + (0x4D3, "V"), + (0x4D4, "M", "ӕ"), + (0x4D5, "V"), + (0x4D6, "M", "ӗ"), + (0x4D7, "V"), + (0x4D8, "M", "ә"), + (0x4D9, "V"), + (0x4DA, "M", "ӛ"), + (0x4DB, "V"), + (0x4DC, "M", "ӝ"), + (0x4DD, "V"), + (0x4DE, "M", "ӟ"), + (0x4DF, "V"), + (0x4E0, "M", "ӡ"), + (0x4E1, "V"), + (0x4E2, "M", "ӣ"), + (0x4E3, "V"), + (0x4E4, "M", "ӥ"), + (0x4E5, "V"), + (0x4E6, "M", "ӧ"), + (0x4E7, "V"), + (0x4E8, "M", "ө"), + (0x4E9, "V"), + (0x4EA, "M", "ӫ"), + (0x4EB, "V"), + (0x4EC, "M", "ӭ"), + (0x4ED, "V"), + (0x4EE, "M", "ӯ"), + (0x4EF, "V"), + (0x4F0, "M", "ӱ"), + (0x4F1, "V"), + (0x4F2, "M", "ӳ"), + (0x4F3, "V"), + (0x4F4, "M", "ӵ"), + (0x4F5, "V"), + (0x4F6, "M", "ӷ"), + (0x4F7, "V"), + (0x4F8, "M", "ӹ"), + (0x4F9, "V"), + (0x4FA, "M", "ӻ"), + (0x4FB, "V"), + (0x4FC, "M", "ӽ"), + (0x4FD, "V"), + (0x4FE, "M", "ӿ"), + (0x4FF, "V"), + (0x500, "M", "ԁ"), + (0x501, "V"), + (0x502, "M", "ԃ"), + ] + + +def _seg_9() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x503, "V"), + (0x504, "M", "ԅ"), + (0x505, "V"), + (0x506, "M", "ԇ"), + (0x507, "V"), + (0x508, "M", "ԉ"), + (0x509, "V"), + (0x50A, "M", "ԋ"), + (0x50B, "V"), + (0x50C, "M", "ԍ"), + (0x50D, "V"), + (0x50E, "M", "ԏ"), + (0x50F, "V"), + (0x510, "M", "ԑ"), + (0x511, "V"), + (0x512, "M", "ԓ"), + (0x513, "V"), + (0x514, "M", "ԕ"), + (0x515, "V"), + (0x516, "M", "ԗ"), + (0x517, "V"), + (0x518, "M", "ԙ"), + (0x519, "V"), + (0x51A, "M", "ԛ"), + (0x51B, "V"), + (0x51C, "M", "ԝ"), + (0x51D, "V"), + (0x51E, "M", "ԟ"), + (0x51F, "V"), + (0x520, "M", "ԡ"), + (0x521, "V"), + (0x522, "M", "ԣ"), + (0x523, "V"), + (0x524, "M", "ԥ"), + (0x525, "V"), + (0x526, "M", "ԧ"), + (0x527, "V"), + (0x528, "M", "ԩ"), + (0x529, "V"), + (0x52A, "M", "ԫ"), + (0x52B, "V"), + (0x52C, "M", "ԭ"), + (0x52D, "V"), + (0x52E, "M", "ԯ"), + (0x52F, "V"), + (0x530, "X"), + (0x531, "M", "ա"), + (0x532, "M", "բ"), + (0x533, "M", "գ"), + (0x534, "M", "դ"), + (0x535, "M", "ե"), + (0x536, "M", "զ"), + (0x537, "M", "է"), + (0x538, "M", "ը"), + (0x539, "M", "թ"), + (0x53A, "M", "ժ"), + (0x53B, "M", "ի"), + (0x53C, "M", "լ"), + (0x53D, "M", "խ"), + (0x53E, "M", "ծ"), + (0x53F, "M", "կ"), + (0x540, "M", "հ"), + (0x541, "M", "ձ"), + (0x542, "M", "ղ"), + (0x543, "M", "ճ"), + (0x544, "M", "մ"), + (0x545, "M", "յ"), + (0x546, "M", "ն"), + (0x547, "M", "շ"), + (0x548, "M", "ո"), + (0x549, "M", "չ"), + (0x54A, "M", "պ"), + (0x54B, "M", "ջ"), + (0x54C, "M", "ռ"), + (0x54D, "M", "ս"), + (0x54E, "M", "վ"), + (0x54F, "M", "տ"), + (0x550, "M", "ր"), + (0x551, "M", "ց"), + (0x552, "M", "ւ"), + (0x553, "M", "փ"), + (0x554, "M", "ք"), + (0x555, "M", "օ"), + (0x556, "M", "ֆ"), + (0x557, "X"), + (0x559, "V"), + (0x587, "M", "եւ"), + (0x588, "V"), + (0x58B, "X"), + (0x58D, "V"), + (0x590, "X"), + (0x591, "V"), + (0x5C8, "X"), + (0x5D0, "V"), + (0x5EB, "X"), + (0x5EF, "V"), + (0x5F5, "X"), + (0x606, "V"), + (0x61C, "X"), + (0x61D, "V"), + ] + + +def _seg_10() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x675, "M", "اٴ"), + (0x676, "M", "وٴ"), + (0x677, "M", "ۇٴ"), + (0x678, "M", "يٴ"), + (0x679, "V"), + (0x6DD, "X"), + (0x6DE, "V"), + (0x70E, "X"), + (0x710, "V"), + (0x74B, "X"), + (0x74D, "V"), + (0x7B2, "X"), + (0x7C0, "V"), + (0x7FB, "X"), + (0x7FD, "V"), + (0x82E, "X"), + (0x830, "V"), + (0x83F, "X"), + (0x840, "V"), + (0x85C, "X"), + (0x85E, "V"), + (0x85F, "X"), + (0x860, "V"), + (0x86B, "X"), + (0x870, "V"), + (0x88F, "X"), + (0x898, "V"), + (0x8E2, "X"), + (0x8E3, "V"), + (0x958, "M", "क़"), + (0x959, "M", "ख़"), + (0x95A, "M", "ग़"), + (0x95B, "M", "ज़"), + (0x95C, "M", "ड़"), + (0x95D, "M", "ढ़"), + (0x95E, "M", "फ़"), + (0x95F, "M", "य़"), + (0x960, "V"), + (0x984, "X"), + (0x985, "V"), + (0x98D, "X"), + (0x98F, "V"), + (0x991, "X"), + (0x993, "V"), + (0x9A9, "X"), + (0x9AA, "V"), + (0x9B1, "X"), + (0x9B2, "V"), + (0x9B3, "X"), + (0x9B6, "V"), + (0x9BA, "X"), + (0x9BC, "V"), + (0x9C5, "X"), + (0x9C7, "V"), + (0x9C9, "X"), + (0x9CB, "V"), + (0x9CF, "X"), + (0x9D7, "V"), + (0x9D8, "X"), + (0x9DC, "M", "ড়"), + (0x9DD, "M", "ঢ়"), + (0x9DE, "X"), + (0x9DF, "M", "য়"), + (0x9E0, "V"), + (0x9E4, "X"), + (0x9E6, "V"), + (0x9FF, "X"), + (0xA01, "V"), + (0xA04, "X"), + (0xA05, "V"), + (0xA0B, "X"), + (0xA0F, "V"), + (0xA11, "X"), + (0xA13, "V"), + (0xA29, "X"), + (0xA2A, "V"), + (0xA31, "X"), + (0xA32, "V"), + (0xA33, "M", "ਲ਼"), + (0xA34, "X"), + (0xA35, "V"), + (0xA36, "M", "ਸ਼"), + (0xA37, "X"), + (0xA38, "V"), + (0xA3A, "X"), + (0xA3C, "V"), + (0xA3D, "X"), + (0xA3E, "V"), + (0xA43, "X"), + (0xA47, "V"), + (0xA49, "X"), + (0xA4B, "V"), + (0xA4E, "X"), + (0xA51, "V"), + (0xA52, "X"), + (0xA59, "M", "ਖ਼"), + (0xA5A, "M", "ਗ਼"), + (0xA5B, "M", "ਜ਼"), + (0xA5C, "V"), + (0xA5D, "X"), + ] + + +def _seg_11() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xA5E, "M", "ਫ਼"), + (0xA5F, "X"), + (0xA66, "V"), + (0xA77, "X"), + (0xA81, "V"), + (0xA84, "X"), + (0xA85, "V"), + (0xA8E, "X"), + (0xA8F, "V"), + (0xA92, "X"), + (0xA93, "V"), + (0xAA9, "X"), + (0xAAA, "V"), + (0xAB1, "X"), + (0xAB2, "V"), + (0xAB4, "X"), + (0xAB5, "V"), + (0xABA, "X"), + (0xABC, "V"), + (0xAC6, "X"), + (0xAC7, "V"), + (0xACA, "X"), + (0xACB, "V"), + (0xACE, "X"), + (0xAD0, "V"), + (0xAD1, "X"), + (0xAE0, "V"), + (0xAE4, "X"), + (0xAE6, "V"), + (0xAF2, "X"), + (0xAF9, "V"), + (0xB00, "X"), + (0xB01, "V"), + (0xB04, "X"), + (0xB05, "V"), + (0xB0D, "X"), + (0xB0F, "V"), + (0xB11, "X"), + (0xB13, "V"), + (0xB29, "X"), + (0xB2A, "V"), + (0xB31, "X"), + (0xB32, "V"), + (0xB34, "X"), + (0xB35, "V"), + (0xB3A, "X"), + (0xB3C, "V"), + (0xB45, "X"), + (0xB47, "V"), + (0xB49, "X"), + (0xB4B, "V"), + (0xB4E, "X"), + (0xB55, "V"), + (0xB58, "X"), + (0xB5C, "M", "ଡ଼"), + (0xB5D, "M", "ଢ଼"), + (0xB5E, "X"), + (0xB5F, "V"), + (0xB64, "X"), + (0xB66, "V"), + (0xB78, "X"), + (0xB82, "V"), + (0xB84, "X"), + (0xB85, "V"), + (0xB8B, "X"), + (0xB8E, "V"), + (0xB91, "X"), + (0xB92, "V"), + (0xB96, "X"), + (0xB99, "V"), + (0xB9B, "X"), + (0xB9C, "V"), + (0xB9D, "X"), + (0xB9E, "V"), + (0xBA0, "X"), + (0xBA3, "V"), + (0xBA5, "X"), + (0xBA8, "V"), + (0xBAB, "X"), + (0xBAE, "V"), + (0xBBA, "X"), + (0xBBE, "V"), + (0xBC3, "X"), + (0xBC6, "V"), + (0xBC9, "X"), + (0xBCA, "V"), + (0xBCE, "X"), + (0xBD0, "V"), + (0xBD1, "X"), + (0xBD7, "V"), + (0xBD8, "X"), + (0xBE6, "V"), + (0xBFB, "X"), + (0xC00, "V"), + (0xC0D, "X"), + (0xC0E, "V"), + (0xC11, "X"), + (0xC12, "V"), + (0xC29, "X"), + (0xC2A, "V"), + ] + + +def _seg_12() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xC3A, "X"), + (0xC3C, "V"), + (0xC45, "X"), + (0xC46, "V"), + (0xC49, "X"), + (0xC4A, "V"), + (0xC4E, "X"), + (0xC55, "V"), + (0xC57, "X"), + (0xC58, "V"), + (0xC5B, "X"), + (0xC5D, "V"), + (0xC5E, "X"), + (0xC60, "V"), + (0xC64, "X"), + (0xC66, "V"), + (0xC70, "X"), + (0xC77, "V"), + (0xC8D, "X"), + (0xC8E, "V"), + (0xC91, "X"), + (0xC92, "V"), + (0xCA9, "X"), + (0xCAA, "V"), + (0xCB4, "X"), + (0xCB5, "V"), + (0xCBA, "X"), + (0xCBC, "V"), + (0xCC5, "X"), + (0xCC6, "V"), + (0xCC9, "X"), + (0xCCA, "V"), + (0xCCE, "X"), + (0xCD5, "V"), + (0xCD7, "X"), + (0xCDD, "V"), + (0xCDF, "X"), + (0xCE0, "V"), + (0xCE4, "X"), + (0xCE6, "V"), + (0xCF0, "X"), + (0xCF1, "V"), + (0xCF4, "X"), + (0xD00, "V"), + (0xD0D, "X"), + (0xD0E, "V"), + (0xD11, "X"), + (0xD12, "V"), + (0xD45, "X"), + (0xD46, "V"), + (0xD49, "X"), + (0xD4A, "V"), + (0xD50, "X"), + (0xD54, "V"), + (0xD64, "X"), + (0xD66, "V"), + (0xD80, "X"), + (0xD81, "V"), + (0xD84, "X"), + (0xD85, "V"), + (0xD97, "X"), + (0xD9A, "V"), + (0xDB2, "X"), + (0xDB3, "V"), + (0xDBC, "X"), + (0xDBD, "V"), + (0xDBE, "X"), + (0xDC0, "V"), + (0xDC7, "X"), + (0xDCA, "V"), + (0xDCB, "X"), + (0xDCF, "V"), + (0xDD5, "X"), + (0xDD6, "V"), + (0xDD7, "X"), + (0xDD8, "V"), + (0xDE0, "X"), + (0xDE6, "V"), + (0xDF0, "X"), + (0xDF2, "V"), + (0xDF5, "X"), + (0xE01, "V"), + (0xE33, "M", "ํา"), + (0xE34, "V"), + (0xE3B, "X"), + (0xE3F, "V"), + (0xE5C, "X"), + (0xE81, "V"), + (0xE83, "X"), + (0xE84, "V"), + (0xE85, "X"), + (0xE86, "V"), + (0xE8B, "X"), + (0xE8C, "V"), + (0xEA4, "X"), + (0xEA5, "V"), + (0xEA6, "X"), + (0xEA7, "V"), + (0xEB3, "M", "ໍາ"), + (0xEB4, "V"), + ] + + +def _seg_13() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xEBE, "X"), + (0xEC0, "V"), + (0xEC5, "X"), + (0xEC6, "V"), + (0xEC7, "X"), + (0xEC8, "V"), + (0xECF, "X"), + (0xED0, "V"), + (0xEDA, "X"), + (0xEDC, "M", "ຫນ"), + (0xEDD, "M", "ຫມ"), + (0xEDE, "V"), + (0xEE0, "X"), + (0xF00, "V"), + (0xF0C, "M", "་"), + (0xF0D, "V"), + (0xF43, "M", "གྷ"), + (0xF44, "V"), + (0xF48, "X"), + (0xF49, "V"), + (0xF4D, "M", "ཌྷ"), + (0xF4E, "V"), + (0xF52, "M", "དྷ"), + (0xF53, "V"), + (0xF57, "M", "བྷ"), + (0xF58, "V"), + (0xF5C, "M", "ཛྷ"), + (0xF5D, "V"), + (0xF69, "M", "ཀྵ"), + (0xF6A, "V"), + (0xF6D, "X"), + (0xF71, "V"), + (0xF73, "M", "ཱི"), + (0xF74, "V"), + (0xF75, "M", "ཱུ"), + (0xF76, "M", "ྲྀ"), + (0xF77, "M", "ྲཱྀ"), + (0xF78, "M", "ླྀ"), + (0xF79, "M", "ླཱྀ"), + (0xF7A, "V"), + (0xF81, "M", "ཱྀ"), + (0xF82, "V"), + (0xF93, "M", "ྒྷ"), + (0xF94, "V"), + (0xF98, "X"), + (0xF99, "V"), + (0xF9D, "M", "ྜྷ"), + (0xF9E, "V"), + (0xFA2, "M", "ྡྷ"), + (0xFA3, "V"), + (0xFA7, "M", "ྦྷ"), + (0xFA8, "V"), + (0xFAC, "M", "ྫྷ"), + (0xFAD, "V"), + (0xFB9, "M", "ྐྵ"), + (0xFBA, "V"), + (0xFBD, "X"), + (0xFBE, "V"), + (0xFCD, "X"), + (0xFCE, "V"), + (0xFDB, "X"), + (0x1000, "V"), + (0x10A0, "X"), + (0x10C7, "M", "ⴧ"), + (0x10C8, "X"), + (0x10CD, "M", "ⴭ"), + (0x10CE, "X"), + (0x10D0, "V"), + (0x10FC, "M", "ნ"), + (0x10FD, "V"), + (0x115F, "X"), + (0x1161, "V"), + (0x1249, "X"), + (0x124A, "V"), + (0x124E, "X"), + (0x1250, "V"), + (0x1257, "X"), + (0x1258, "V"), + (0x1259, "X"), + (0x125A, "V"), + (0x125E, "X"), + (0x1260, "V"), + (0x1289, "X"), + (0x128A, "V"), + (0x128E, "X"), + (0x1290, "V"), + (0x12B1, "X"), + (0x12B2, "V"), + (0x12B6, "X"), + (0x12B8, "V"), + (0x12BF, "X"), + (0x12C0, "V"), + (0x12C1, "X"), + (0x12C2, "V"), + (0x12C6, "X"), + (0x12C8, "V"), + (0x12D7, "X"), + (0x12D8, "V"), + (0x1311, "X"), + (0x1312, "V"), + ] + + +def _seg_14() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1316, "X"), + (0x1318, "V"), + (0x135B, "X"), + (0x135D, "V"), + (0x137D, "X"), + (0x1380, "V"), + (0x139A, "X"), + (0x13A0, "V"), + (0x13F6, "X"), + (0x13F8, "M", "Ᏸ"), + (0x13F9, "M", "Ᏹ"), + (0x13FA, "M", "Ᏺ"), + (0x13FB, "M", "Ᏻ"), + (0x13FC, "M", "Ᏼ"), + (0x13FD, "M", "Ᏽ"), + (0x13FE, "X"), + (0x1400, "V"), + (0x1680, "X"), + (0x1681, "V"), + (0x169D, "X"), + (0x16A0, "V"), + (0x16F9, "X"), + (0x1700, "V"), + (0x1716, "X"), + (0x171F, "V"), + (0x1737, "X"), + (0x1740, "V"), + (0x1754, "X"), + (0x1760, "V"), + (0x176D, "X"), + (0x176E, "V"), + (0x1771, "X"), + (0x1772, "V"), + (0x1774, "X"), + (0x1780, "V"), + (0x17B4, "X"), + (0x17B6, "V"), + (0x17DE, "X"), + (0x17E0, "V"), + (0x17EA, "X"), + (0x17F0, "V"), + (0x17FA, "X"), + (0x1800, "V"), + (0x1806, "X"), + (0x1807, "V"), + (0x180B, "I"), + (0x180E, "X"), + (0x180F, "I"), + (0x1810, "V"), + (0x181A, "X"), + (0x1820, "V"), + (0x1879, "X"), + (0x1880, "V"), + (0x18AB, "X"), + (0x18B0, "V"), + (0x18F6, "X"), + (0x1900, "V"), + (0x191F, "X"), + (0x1920, "V"), + (0x192C, "X"), + (0x1930, "V"), + (0x193C, "X"), + (0x1940, "V"), + (0x1941, "X"), + (0x1944, "V"), + (0x196E, "X"), + (0x1970, "V"), + (0x1975, "X"), + (0x1980, "V"), + (0x19AC, "X"), + (0x19B0, "V"), + (0x19CA, "X"), + (0x19D0, "V"), + (0x19DB, "X"), + (0x19DE, "V"), + (0x1A1C, "X"), + (0x1A1E, "V"), + (0x1A5F, "X"), + (0x1A60, "V"), + (0x1A7D, "X"), + (0x1A7F, "V"), + (0x1A8A, "X"), + (0x1A90, "V"), + (0x1A9A, "X"), + (0x1AA0, "V"), + (0x1AAE, "X"), + (0x1AB0, "V"), + (0x1ACF, "X"), + (0x1B00, "V"), + (0x1B4D, "X"), + (0x1B50, "V"), + (0x1B7F, "X"), + (0x1B80, "V"), + (0x1BF4, "X"), + (0x1BFC, "V"), + (0x1C38, "X"), + (0x1C3B, "V"), + (0x1C4A, "X"), + (0x1C4D, "V"), + (0x1C80, "M", "в"), + ] + + +def _seg_15() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1C81, "M", "д"), + (0x1C82, "M", "о"), + (0x1C83, "M", "с"), + (0x1C84, "M", "т"), + (0x1C86, "M", "ъ"), + (0x1C87, "M", "ѣ"), + (0x1C88, "M", "ꙋ"), + (0x1C89, "X"), + (0x1C90, "M", "ა"), + (0x1C91, "M", "ბ"), + (0x1C92, "M", "გ"), + (0x1C93, "M", "დ"), + (0x1C94, "M", "ე"), + (0x1C95, "M", "ვ"), + (0x1C96, "M", "ზ"), + (0x1C97, "M", "თ"), + (0x1C98, "M", "ი"), + (0x1C99, "M", "კ"), + (0x1C9A, "M", "ლ"), + (0x1C9B, "M", "მ"), + (0x1C9C, "M", "ნ"), + (0x1C9D, "M", "ო"), + (0x1C9E, "M", "პ"), + (0x1C9F, "M", "ჟ"), + (0x1CA0, "M", "რ"), + (0x1CA1, "M", "ს"), + (0x1CA2, "M", "ტ"), + (0x1CA3, "M", "უ"), + (0x1CA4, "M", "ფ"), + (0x1CA5, "M", "ქ"), + (0x1CA6, "M", "ღ"), + (0x1CA7, "M", "ყ"), + (0x1CA8, "M", "შ"), + (0x1CA9, "M", "ჩ"), + (0x1CAA, "M", "ც"), + (0x1CAB, "M", "ძ"), + (0x1CAC, "M", "წ"), + (0x1CAD, "M", "ჭ"), + (0x1CAE, "M", "ხ"), + (0x1CAF, "M", "ჯ"), + (0x1CB0, "M", "ჰ"), + (0x1CB1, "M", "ჱ"), + (0x1CB2, "M", "ჲ"), + (0x1CB3, "M", "ჳ"), + (0x1CB4, "M", "ჴ"), + (0x1CB5, "M", "ჵ"), + (0x1CB6, "M", "ჶ"), + (0x1CB7, "M", "ჷ"), + (0x1CB8, "M", "ჸ"), + (0x1CB9, "M", "ჹ"), + (0x1CBA, "M", "ჺ"), + (0x1CBB, "X"), + (0x1CBD, "M", "ჽ"), + (0x1CBE, "M", "ჾ"), + (0x1CBF, "M", "ჿ"), + (0x1CC0, "V"), + (0x1CC8, "X"), + (0x1CD0, "V"), + (0x1CFB, "X"), + (0x1D00, "V"), + (0x1D2C, "M", "a"), + (0x1D2D, "M", "æ"), + (0x1D2E, "M", "b"), + (0x1D2F, "V"), + (0x1D30, "M", "d"), + (0x1D31, "M", "e"), + (0x1D32, "M", "ǝ"), + (0x1D33, "M", "g"), + (0x1D34, "M", "h"), + (0x1D35, "M", "i"), + (0x1D36, "M", "j"), + (0x1D37, "M", "k"), + (0x1D38, "M", "l"), + (0x1D39, "M", "m"), + (0x1D3A, "M", "n"), + (0x1D3B, "V"), + (0x1D3C, "M", "o"), + (0x1D3D, "M", "ȣ"), + (0x1D3E, "M", "p"), + (0x1D3F, "M", "r"), + (0x1D40, "M", "t"), + (0x1D41, "M", "u"), + (0x1D42, "M", "w"), + (0x1D43, "M", "a"), + (0x1D44, "M", "ɐ"), + (0x1D45, "M", "ɑ"), + (0x1D46, "M", "ᴂ"), + (0x1D47, "M", "b"), + (0x1D48, "M", "d"), + (0x1D49, "M", "e"), + (0x1D4A, "M", "ə"), + (0x1D4B, "M", "ɛ"), + (0x1D4C, "M", "ɜ"), + (0x1D4D, "M", "g"), + (0x1D4E, "V"), + (0x1D4F, "M", "k"), + (0x1D50, "M", "m"), + (0x1D51, "M", "ŋ"), + (0x1D52, "M", "o"), + (0x1D53, "M", "ɔ"), + ] + + +def _seg_16() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D54, "M", "ᴖ"), + (0x1D55, "M", "ᴗ"), + (0x1D56, "M", "p"), + (0x1D57, "M", "t"), + (0x1D58, "M", "u"), + (0x1D59, "M", "ᴝ"), + (0x1D5A, "M", "ɯ"), + (0x1D5B, "M", "v"), + (0x1D5C, "M", "ᴥ"), + (0x1D5D, "M", "β"), + (0x1D5E, "M", "γ"), + (0x1D5F, "M", "δ"), + (0x1D60, "M", "φ"), + (0x1D61, "M", "χ"), + (0x1D62, "M", "i"), + (0x1D63, "M", "r"), + (0x1D64, "M", "u"), + (0x1D65, "M", "v"), + (0x1D66, "M", "β"), + (0x1D67, "M", "γ"), + (0x1D68, "M", "ρ"), + (0x1D69, "M", "φ"), + (0x1D6A, "M", "χ"), + (0x1D6B, "V"), + (0x1D78, "M", "н"), + (0x1D79, "V"), + (0x1D9B, "M", "ɒ"), + (0x1D9C, "M", "c"), + (0x1D9D, "M", "ɕ"), + (0x1D9E, "M", "ð"), + (0x1D9F, "M", "ɜ"), + (0x1DA0, "M", "f"), + (0x1DA1, "M", "ɟ"), + (0x1DA2, "M", "ɡ"), + (0x1DA3, "M", "ɥ"), + (0x1DA4, "M", "ɨ"), + (0x1DA5, "M", "ɩ"), + (0x1DA6, "M", "ɪ"), + (0x1DA7, "M", "ᵻ"), + (0x1DA8, "M", "ʝ"), + (0x1DA9, "M", "ɭ"), + (0x1DAA, "M", "ᶅ"), + (0x1DAB, "M", "ʟ"), + (0x1DAC, "M", "ɱ"), + (0x1DAD, "M", "ɰ"), + (0x1DAE, "M", "ɲ"), + (0x1DAF, "M", "ɳ"), + (0x1DB0, "M", "ɴ"), + (0x1DB1, "M", "ɵ"), + (0x1DB2, "M", "ɸ"), + (0x1DB3, "M", "ʂ"), + (0x1DB4, "M", "ʃ"), + (0x1DB5, "M", "ƫ"), + (0x1DB6, "M", "ʉ"), + (0x1DB7, "M", "ʊ"), + (0x1DB8, "M", "ᴜ"), + (0x1DB9, "M", "ʋ"), + (0x1DBA, "M", "ʌ"), + (0x1DBB, "M", "z"), + (0x1DBC, "M", "ʐ"), + (0x1DBD, "M", "ʑ"), + (0x1DBE, "M", "ʒ"), + (0x1DBF, "M", "θ"), + (0x1DC0, "V"), + (0x1E00, "M", "ḁ"), + (0x1E01, "V"), + (0x1E02, "M", "ḃ"), + (0x1E03, "V"), + (0x1E04, "M", "ḅ"), + (0x1E05, "V"), + (0x1E06, "M", "ḇ"), + (0x1E07, "V"), + (0x1E08, "M", "ḉ"), + (0x1E09, "V"), + (0x1E0A, "M", "ḋ"), + (0x1E0B, "V"), + (0x1E0C, "M", "ḍ"), + (0x1E0D, "V"), + (0x1E0E, "M", "ḏ"), + (0x1E0F, "V"), + (0x1E10, "M", "ḑ"), + (0x1E11, "V"), + (0x1E12, "M", "ḓ"), + (0x1E13, "V"), + (0x1E14, "M", "ḕ"), + (0x1E15, "V"), + (0x1E16, "M", "ḗ"), + (0x1E17, "V"), + (0x1E18, "M", "ḙ"), + (0x1E19, "V"), + (0x1E1A, "M", "ḛ"), + (0x1E1B, "V"), + (0x1E1C, "M", "ḝ"), + (0x1E1D, "V"), + (0x1E1E, "M", "ḟ"), + (0x1E1F, "V"), + (0x1E20, "M", "ḡ"), + (0x1E21, "V"), + (0x1E22, "M", "ḣ"), + (0x1E23, "V"), + ] + + +def _seg_17() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1E24, "M", "ḥ"), + (0x1E25, "V"), + (0x1E26, "M", "ḧ"), + (0x1E27, "V"), + (0x1E28, "M", "ḩ"), + (0x1E29, "V"), + (0x1E2A, "M", "ḫ"), + (0x1E2B, "V"), + (0x1E2C, "M", "ḭ"), + (0x1E2D, "V"), + (0x1E2E, "M", "ḯ"), + (0x1E2F, "V"), + (0x1E30, "M", "ḱ"), + (0x1E31, "V"), + (0x1E32, "M", "ḳ"), + (0x1E33, "V"), + (0x1E34, "M", "ḵ"), + (0x1E35, "V"), + (0x1E36, "M", "ḷ"), + (0x1E37, "V"), + (0x1E38, "M", "ḹ"), + (0x1E39, "V"), + (0x1E3A, "M", "ḻ"), + (0x1E3B, "V"), + (0x1E3C, "M", "ḽ"), + (0x1E3D, "V"), + (0x1E3E, "M", "ḿ"), + (0x1E3F, "V"), + (0x1E40, "M", "ṁ"), + (0x1E41, "V"), + (0x1E42, "M", "ṃ"), + (0x1E43, "V"), + (0x1E44, "M", "ṅ"), + (0x1E45, "V"), + (0x1E46, "M", "ṇ"), + (0x1E47, "V"), + (0x1E48, "M", "ṉ"), + (0x1E49, "V"), + (0x1E4A, "M", "ṋ"), + (0x1E4B, "V"), + (0x1E4C, "M", "ṍ"), + (0x1E4D, "V"), + (0x1E4E, "M", "ṏ"), + (0x1E4F, "V"), + (0x1E50, "M", "ṑ"), + (0x1E51, "V"), + (0x1E52, "M", "ṓ"), + (0x1E53, "V"), + (0x1E54, "M", "ṕ"), + (0x1E55, "V"), + (0x1E56, "M", "ṗ"), + (0x1E57, "V"), + (0x1E58, "M", "ṙ"), + (0x1E59, "V"), + (0x1E5A, "M", "ṛ"), + (0x1E5B, "V"), + (0x1E5C, "M", "ṝ"), + (0x1E5D, "V"), + (0x1E5E, "M", "ṟ"), + (0x1E5F, "V"), + (0x1E60, "M", "ṡ"), + (0x1E61, "V"), + (0x1E62, "M", "ṣ"), + (0x1E63, "V"), + (0x1E64, "M", "ṥ"), + (0x1E65, "V"), + (0x1E66, "M", "ṧ"), + (0x1E67, "V"), + (0x1E68, "M", "ṩ"), + (0x1E69, "V"), + (0x1E6A, "M", "ṫ"), + (0x1E6B, "V"), + (0x1E6C, "M", "ṭ"), + (0x1E6D, "V"), + (0x1E6E, "M", "ṯ"), + (0x1E6F, "V"), + (0x1E70, "M", "ṱ"), + (0x1E71, "V"), + (0x1E72, "M", "ṳ"), + (0x1E73, "V"), + (0x1E74, "M", "ṵ"), + (0x1E75, "V"), + (0x1E76, "M", "ṷ"), + (0x1E77, "V"), + (0x1E78, "M", "ṹ"), + (0x1E79, "V"), + (0x1E7A, "M", "ṻ"), + (0x1E7B, "V"), + (0x1E7C, "M", "ṽ"), + (0x1E7D, "V"), + (0x1E7E, "M", "ṿ"), + (0x1E7F, "V"), + (0x1E80, "M", "ẁ"), + (0x1E81, "V"), + (0x1E82, "M", "ẃ"), + (0x1E83, "V"), + (0x1E84, "M", "ẅ"), + (0x1E85, "V"), + (0x1E86, "M", "ẇ"), + (0x1E87, "V"), + ] + + +def _seg_18() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1E88, "M", "ẉ"), + (0x1E89, "V"), + (0x1E8A, "M", "ẋ"), + (0x1E8B, "V"), + (0x1E8C, "M", "ẍ"), + (0x1E8D, "V"), + (0x1E8E, "M", "ẏ"), + (0x1E8F, "V"), + (0x1E90, "M", "ẑ"), + (0x1E91, "V"), + (0x1E92, "M", "ẓ"), + (0x1E93, "V"), + (0x1E94, "M", "ẕ"), + (0x1E95, "V"), + (0x1E9A, "M", "aʾ"), + (0x1E9B, "M", "ṡ"), + (0x1E9C, "V"), + (0x1E9E, "M", "ß"), + (0x1E9F, "V"), + (0x1EA0, "M", "ạ"), + (0x1EA1, "V"), + (0x1EA2, "M", "ả"), + (0x1EA3, "V"), + (0x1EA4, "M", "ấ"), + (0x1EA5, "V"), + (0x1EA6, "M", "ầ"), + (0x1EA7, "V"), + (0x1EA8, "M", "ẩ"), + (0x1EA9, "V"), + (0x1EAA, "M", "ẫ"), + (0x1EAB, "V"), + (0x1EAC, "M", "ậ"), + (0x1EAD, "V"), + (0x1EAE, "M", "ắ"), + (0x1EAF, "V"), + (0x1EB0, "M", "ằ"), + (0x1EB1, "V"), + (0x1EB2, "M", "ẳ"), + (0x1EB3, "V"), + (0x1EB4, "M", "ẵ"), + (0x1EB5, "V"), + (0x1EB6, "M", "ặ"), + (0x1EB7, "V"), + (0x1EB8, "M", "ẹ"), + (0x1EB9, "V"), + (0x1EBA, "M", "ẻ"), + (0x1EBB, "V"), + (0x1EBC, "M", "ẽ"), + (0x1EBD, "V"), + (0x1EBE, "M", "ế"), + (0x1EBF, "V"), + (0x1EC0, "M", "ề"), + (0x1EC1, "V"), + (0x1EC2, "M", "ể"), + (0x1EC3, "V"), + (0x1EC4, "M", "ễ"), + (0x1EC5, "V"), + (0x1EC6, "M", "ệ"), + (0x1EC7, "V"), + (0x1EC8, "M", "ỉ"), + (0x1EC9, "V"), + (0x1ECA, "M", "ị"), + (0x1ECB, "V"), + (0x1ECC, "M", "ọ"), + (0x1ECD, "V"), + (0x1ECE, "M", "ỏ"), + (0x1ECF, "V"), + (0x1ED0, "M", "ố"), + (0x1ED1, "V"), + (0x1ED2, "M", "ồ"), + (0x1ED3, "V"), + (0x1ED4, "M", "ổ"), + (0x1ED5, "V"), + (0x1ED6, "M", "ỗ"), + (0x1ED7, "V"), + (0x1ED8, "M", "ộ"), + (0x1ED9, "V"), + (0x1EDA, "M", "ớ"), + (0x1EDB, "V"), + (0x1EDC, "M", "ờ"), + (0x1EDD, "V"), + (0x1EDE, "M", "ở"), + (0x1EDF, "V"), + (0x1EE0, "M", "ỡ"), + (0x1EE1, "V"), + (0x1EE2, "M", "ợ"), + (0x1EE3, "V"), + (0x1EE4, "M", "ụ"), + (0x1EE5, "V"), + (0x1EE6, "M", "ủ"), + (0x1EE7, "V"), + (0x1EE8, "M", "ứ"), + (0x1EE9, "V"), + (0x1EEA, "M", "ừ"), + (0x1EEB, "V"), + (0x1EEC, "M", "ử"), + (0x1EED, "V"), + (0x1EEE, "M", "ữ"), + (0x1EEF, "V"), + (0x1EF0, "M", "ự"), + ] + + +def _seg_19() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1EF1, "V"), + (0x1EF2, "M", "ỳ"), + (0x1EF3, "V"), + (0x1EF4, "M", "ỵ"), + (0x1EF5, "V"), + (0x1EF6, "M", "ỷ"), + (0x1EF7, "V"), + (0x1EF8, "M", "ỹ"), + (0x1EF9, "V"), + (0x1EFA, "M", "ỻ"), + (0x1EFB, "V"), + (0x1EFC, "M", "ỽ"), + (0x1EFD, "V"), + (0x1EFE, "M", "ỿ"), + (0x1EFF, "V"), + (0x1F08, "M", "ἀ"), + (0x1F09, "M", "ἁ"), + (0x1F0A, "M", "ἂ"), + (0x1F0B, "M", "ἃ"), + (0x1F0C, "M", "ἄ"), + (0x1F0D, "M", "ἅ"), + (0x1F0E, "M", "ἆ"), + (0x1F0F, "M", "ἇ"), + (0x1F10, "V"), + (0x1F16, "X"), + (0x1F18, "M", "ἐ"), + (0x1F19, "M", "ἑ"), + (0x1F1A, "M", "ἒ"), + (0x1F1B, "M", "ἓ"), + (0x1F1C, "M", "ἔ"), + (0x1F1D, "M", "ἕ"), + (0x1F1E, "X"), + (0x1F20, "V"), + (0x1F28, "M", "ἠ"), + (0x1F29, "M", "ἡ"), + (0x1F2A, "M", "ἢ"), + (0x1F2B, "M", "ἣ"), + (0x1F2C, "M", "ἤ"), + (0x1F2D, "M", "ἥ"), + (0x1F2E, "M", "ἦ"), + (0x1F2F, "M", "ἧ"), + (0x1F30, "V"), + (0x1F38, "M", "ἰ"), + (0x1F39, "M", "ἱ"), + (0x1F3A, "M", "ἲ"), + (0x1F3B, "M", "ἳ"), + (0x1F3C, "M", "ἴ"), + (0x1F3D, "M", "ἵ"), + (0x1F3E, "M", "ἶ"), + (0x1F3F, "M", "ἷ"), + (0x1F40, "V"), + (0x1F46, "X"), + (0x1F48, "M", "ὀ"), + (0x1F49, "M", "ὁ"), + (0x1F4A, "M", "ὂ"), + (0x1F4B, "M", "ὃ"), + (0x1F4C, "M", "ὄ"), + (0x1F4D, "M", "ὅ"), + (0x1F4E, "X"), + (0x1F50, "V"), + (0x1F58, "X"), + (0x1F59, "M", "ὑ"), + (0x1F5A, "X"), + (0x1F5B, "M", "ὓ"), + (0x1F5C, "X"), + (0x1F5D, "M", "ὕ"), + (0x1F5E, "X"), + (0x1F5F, "M", "ὗ"), + (0x1F60, "V"), + (0x1F68, "M", "ὠ"), + (0x1F69, "M", "ὡ"), + (0x1F6A, "M", "ὢ"), + (0x1F6B, "M", "ὣ"), + (0x1F6C, "M", "ὤ"), + (0x1F6D, "M", "ὥ"), + (0x1F6E, "M", "ὦ"), + (0x1F6F, "M", "ὧ"), + (0x1F70, "V"), + (0x1F71, "M", "ά"), + (0x1F72, "V"), + (0x1F73, "M", "έ"), + (0x1F74, "V"), + (0x1F75, "M", "ή"), + (0x1F76, "V"), + (0x1F77, "M", "ί"), + (0x1F78, "V"), + (0x1F79, "M", "ό"), + (0x1F7A, "V"), + (0x1F7B, "M", "ύ"), + (0x1F7C, "V"), + (0x1F7D, "M", "ώ"), + (0x1F7E, "X"), + (0x1F80, "M", "ἀι"), + (0x1F81, "M", "ἁι"), + (0x1F82, "M", "ἂι"), + (0x1F83, "M", "ἃι"), + (0x1F84, "M", "ἄι"), + (0x1F85, "M", "ἅι"), + (0x1F86, "M", "ἆι"), + (0x1F87, "M", "ἇι"), + ] + + +def _seg_20() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1F88, "M", "ἀι"), + (0x1F89, "M", "ἁι"), + (0x1F8A, "M", "ἂι"), + (0x1F8B, "M", "ἃι"), + (0x1F8C, "M", "ἄι"), + (0x1F8D, "M", "ἅι"), + (0x1F8E, "M", "ἆι"), + (0x1F8F, "M", "ἇι"), + (0x1F90, "M", "ἠι"), + (0x1F91, "M", "ἡι"), + (0x1F92, "M", "ἢι"), + (0x1F93, "M", "ἣι"), + (0x1F94, "M", "ἤι"), + (0x1F95, "M", "ἥι"), + (0x1F96, "M", "ἦι"), + (0x1F97, "M", "ἧι"), + (0x1F98, "M", "ἠι"), + (0x1F99, "M", "ἡι"), + (0x1F9A, "M", "ἢι"), + (0x1F9B, "M", "ἣι"), + (0x1F9C, "M", "ἤι"), + (0x1F9D, "M", "ἥι"), + (0x1F9E, "M", "ἦι"), + (0x1F9F, "M", "ἧι"), + (0x1FA0, "M", "ὠι"), + (0x1FA1, "M", "ὡι"), + (0x1FA2, "M", "ὢι"), + (0x1FA3, "M", "ὣι"), + (0x1FA4, "M", "ὤι"), + (0x1FA5, "M", "ὥι"), + (0x1FA6, "M", "ὦι"), + (0x1FA7, "M", "ὧι"), + (0x1FA8, "M", "ὠι"), + (0x1FA9, "M", "ὡι"), + (0x1FAA, "M", "ὢι"), + (0x1FAB, "M", "ὣι"), + (0x1FAC, "M", "ὤι"), + (0x1FAD, "M", "ὥι"), + (0x1FAE, "M", "ὦι"), + (0x1FAF, "M", "ὧι"), + (0x1FB0, "V"), + (0x1FB2, "M", "ὰι"), + (0x1FB3, "M", "αι"), + (0x1FB4, "M", "άι"), + (0x1FB5, "X"), + (0x1FB6, "V"), + (0x1FB7, "M", "ᾶι"), + (0x1FB8, "M", "ᾰ"), + (0x1FB9, "M", "ᾱ"), + (0x1FBA, "M", "ὰ"), + (0x1FBB, "M", "ά"), + (0x1FBC, "M", "αι"), + (0x1FBD, "3", " ̓"), + (0x1FBE, "M", "ι"), + (0x1FBF, "3", " ̓"), + (0x1FC0, "3", " ͂"), + (0x1FC1, "3", " ̈͂"), + (0x1FC2, "M", "ὴι"), + (0x1FC3, "M", "ηι"), + (0x1FC4, "M", "ήι"), + (0x1FC5, "X"), + (0x1FC6, "V"), + (0x1FC7, "M", "ῆι"), + (0x1FC8, "M", "ὲ"), + (0x1FC9, "M", "έ"), + (0x1FCA, "M", "ὴ"), + (0x1FCB, "M", "ή"), + (0x1FCC, "M", "ηι"), + (0x1FCD, "3", " ̓̀"), + (0x1FCE, "3", " ̓́"), + (0x1FCF, "3", " ̓͂"), + (0x1FD0, "V"), + (0x1FD3, "M", "ΐ"), + (0x1FD4, "X"), + (0x1FD6, "V"), + (0x1FD8, "M", "ῐ"), + (0x1FD9, "M", "ῑ"), + (0x1FDA, "M", "ὶ"), + (0x1FDB, "M", "ί"), + (0x1FDC, "X"), + (0x1FDD, "3", " ̔̀"), + (0x1FDE, "3", " ̔́"), + (0x1FDF, "3", " ̔͂"), + (0x1FE0, "V"), + (0x1FE3, "M", "ΰ"), + (0x1FE4, "V"), + (0x1FE8, "M", "ῠ"), + (0x1FE9, "M", "ῡ"), + (0x1FEA, "M", "ὺ"), + (0x1FEB, "M", "ύ"), + (0x1FEC, "M", "ῥ"), + (0x1FED, "3", " ̈̀"), + (0x1FEE, "3", " ̈́"), + (0x1FEF, "3", "`"), + (0x1FF0, "X"), + (0x1FF2, "M", "ὼι"), + (0x1FF3, "M", "ωι"), + (0x1FF4, "M", "ώι"), + (0x1FF5, "X"), + (0x1FF6, "V"), + ] + + +def _seg_21() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1FF7, "M", "ῶι"), + (0x1FF8, "M", "ὸ"), + (0x1FF9, "M", "ό"), + (0x1FFA, "M", "ὼ"), + (0x1FFB, "M", "ώ"), + (0x1FFC, "M", "ωι"), + (0x1FFD, "3", " ́"), + (0x1FFE, "3", " ̔"), + (0x1FFF, "X"), + (0x2000, "3", " "), + (0x200B, "I"), + (0x200C, "D", ""), + (0x200E, "X"), + (0x2010, "V"), + (0x2011, "M", "‐"), + (0x2012, "V"), + (0x2017, "3", " ̳"), + (0x2018, "V"), + (0x2024, "X"), + (0x2027, "V"), + (0x2028, "X"), + (0x202F, "3", " "), + (0x2030, "V"), + (0x2033, "M", "′′"), + (0x2034, "M", "′′′"), + (0x2035, "V"), + (0x2036, "M", "‵‵"), + (0x2037, "M", "‵‵‵"), + (0x2038, "V"), + (0x203C, "3", "!!"), + (0x203D, "V"), + (0x203E, "3", " ̅"), + (0x203F, "V"), + (0x2047, "3", "??"), + (0x2048, "3", "?!"), + (0x2049, "3", "!?"), + (0x204A, "V"), + (0x2057, "M", "′′′′"), + (0x2058, "V"), + (0x205F, "3", " "), + (0x2060, "I"), + (0x2061, "X"), + (0x2064, "I"), + (0x2065, "X"), + (0x2070, "M", "0"), + (0x2071, "M", "i"), + (0x2072, "X"), + (0x2074, "M", "4"), + (0x2075, "M", "5"), + (0x2076, "M", "6"), + (0x2077, "M", "7"), + (0x2078, "M", "8"), + (0x2079, "M", "9"), + (0x207A, "3", "+"), + (0x207B, "M", "−"), + (0x207C, "3", "="), + (0x207D, "3", "("), + (0x207E, "3", ")"), + (0x207F, "M", "n"), + (0x2080, "M", "0"), + (0x2081, "M", "1"), + (0x2082, "M", "2"), + (0x2083, "M", "3"), + (0x2084, "M", "4"), + (0x2085, "M", "5"), + (0x2086, "M", "6"), + (0x2087, "M", "7"), + (0x2088, "M", "8"), + (0x2089, "M", "9"), + (0x208A, "3", "+"), + (0x208B, "M", "−"), + (0x208C, "3", "="), + (0x208D, "3", "("), + (0x208E, "3", ")"), + (0x208F, "X"), + (0x2090, "M", "a"), + (0x2091, "M", "e"), + (0x2092, "M", "o"), + (0x2093, "M", "x"), + (0x2094, "M", "ə"), + (0x2095, "M", "h"), + (0x2096, "M", "k"), + (0x2097, "M", "l"), + (0x2098, "M", "m"), + (0x2099, "M", "n"), + (0x209A, "M", "p"), + (0x209B, "M", "s"), + (0x209C, "M", "t"), + (0x209D, "X"), + (0x20A0, "V"), + (0x20A8, "M", "rs"), + (0x20A9, "V"), + (0x20C1, "X"), + (0x20D0, "V"), + (0x20F1, "X"), + (0x2100, "3", "a/c"), + (0x2101, "3", "a/s"), + (0x2102, "M", "c"), + (0x2103, "M", "°c"), + (0x2104, "V"), + ] + + +def _seg_22() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x2105, "3", "c/o"), + (0x2106, "3", "c/u"), + (0x2107, "M", "ɛ"), + (0x2108, "V"), + (0x2109, "M", "°f"), + (0x210A, "M", "g"), + (0x210B, "M", "h"), + (0x210F, "M", "ħ"), + (0x2110, "M", "i"), + (0x2112, "M", "l"), + (0x2114, "V"), + (0x2115, "M", "n"), + (0x2116, "M", "no"), + (0x2117, "V"), + (0x2119, "M", "p"), + (0x211A, "M", "q"), + (0x211B, "M", "r"), + (0x211E, "V"), + (0x2120, "M", "sm"), + (0x2121, "M", "tel"), + (0x2122, "M", "tm"), + (0x2123, "V"), + (0x2124, "M", "z"), + (0x2125, "V"), + (0x2126, "M", "ω"), + (0x2127, "V"), + (0x2128, "M", "z"), + (0x2129, "V"), + (0x212A, "M", "k"), + (0x212B, "M", "å"), + (0x212C, "M", "b"), + (0x212D, "M", "c"), + (0x212E, "V"), + (0x212F, "M", "e"), + (0x2131, "M", "f"), + (0x2132, "X"), + (0x2133, "M", "m"), + (0x2134, "M", "o"), + (0x2135, "M", "א"), + (0x2136, "M", "ב"), + (0x2137, "M", "ג"), + (0x2138, "M", "ד"), + (0x2139, "M", "i"), + (0x213A, "V"), + (0x213B, "M", "fax"), + (0x213C, "M", "π"), + (0x213D, "M", "γ"), + (0x213F, "M", "π"), + (0x2140, "M", "∑"), + (0x2141, "V"), + (0x2145, "M", "d"), + (0x2147, "M", "e"), + (0x2148, "M", "i"), + (0x2149, "M", "j"), + (0x214A, "V"), + (0x2150, "M", "1⁄7"), + (0x2151, "M", "1⁄9"), + (0x2152, "M", "1⁄10"), + (0x2153, "M", "1⁄3"), + (0x2154, "M", "2⁄3"), + (0x2155, "M", "1⁄5"), + (0x2156, "M", "2⁄5"), + (0x2157, "M", "3⁄5"), + (0x2158, "M", "4⁄5"), + (0x2159, "M", "1⁄6"), + (0x215A, "M", "5⁄6"), + (0x215B, "M", "1⁄8"), + (0x215C, "M", "3⁄8"), + (0x215D, "M", "5⁄8"), + (0x215E, "M", "7⁄8"), + (0x215F, "M", "1⁄"), + (0x2160, "M", "i"), + (0x2161, "M", "ii"), + (0x2162, "M", "iii"), + (0x2163, "M", "iv"), + (0x2164, "M", "v"), + (0x2165, "M", "vi"), + (0x2166, "M", "vii"), + (0x2167, "M", "viii"), + (0x2168, "M", "ix"), + (0x2169, "M", "x"), + (0x216A, "M", "xi"), + (0x216B, "M", "xii"), + (0x216C, "M", "l"), + (0x216D, "M", "c"), + (0x216E, "M", "d"), + (0x216F, "M", "m"), + (0x2170, "M", "i"), + (0x2171, "M", "ii"), + (0x2172, "M", "iii"), + (0x2173, "M", "iv"), + (0x2174, "M", "v"), + (0x2175, "M", "vi"), + (0x2176, "M", "vii"), + (0x2177, "M", "viii"), + (0x2178, "M", "ix"), + (0x2179, "M", "x"), + (0x217A, "M", "xi"), + (0x217B, "M", "xii"), + (0x217C, "M", "l"), + ] + + +def _seg_23() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x217D, "M", "c"), + (0x217E, "M", "d"), + (0x217F, "M", "m"), + (0x2180, "V"), + (0x2183, "X"), + (0x2184, "V"), + (0x2189, "M", "0⁄3"), + (0x218A, "V"), + (0x218C, "X"), + (0x2190, "V"), + (0x222C, "M", "∫∫"), + (0x222D, "M", "∫∫∫"), + (0x222E, "V"), + (0x222F, "M", "∮∮"), + (0x2230, "M", "∮∮∮"), + (0x2231, "V"), + (0x2329, "M", "〈"), + (0x232A, "M", "〉"), + (0x232B, "V"), + (0x2427, "X"), + (0x2440, "V"), + (0x244B, "X"), + (0x2460, "M", "1"), + (0x2461, "M", "2"), + (0x2462, "M", "3"), + (0x2463, "M", "4"), + (0x2464, "M", "5"), + (0x2465, "M", "6"), + (0x2466, "M", "7"), + (0x2467, "M", "8"), + (0x2468, "M", "9"), + (0x2469, "M", "10"), + (0x246A, "M", "11"), + (0x246B, "M", "12"), + (0x246C, "M", "13"), + (0x246D, "M", "14"), + (0x246E, "M", "15"), + (0x246F, "M", "16"), + (0x2470, "M", "17"), + (0x2471, "M", "18"), + (0x2472, "M", "19"), + (0x2473, "M", "20"), + (0x2474, "3", "(1)"), + (0x2475, "3", "(2)"), + (0x2476, "3", "(3)"), + (0x2477, "3", "(4)"), + (0x2478, "3", "(5)"), + (0x2479, "3", "(6)"), + (0x247A, "3", "(7)"), + (0x247B, "3", "(8)"), + (0x247C, "3", "(9)"), + (0x247D, "3", "(10)"), + (0x247E, "3", "(11)"), + (0x247F, "3", "(12)"), + (0x2480, "3", "(13)"), + (0x2481, "3", "(14)"), + (0x2482, "3", "(15)"), + (0x2483, "3", "(16)"), + (0x2484, "3", "(17)"), + (0x2485, "3", "(18)"), + (0x2486, "3", "(19)"), + (0x2487, "3", "(20)"), + (0x2488, "X"), + (0x249C, "3", "(a)"), + (0x249D, "3", "(b)"), + (0x249E, "3", "(c)"), + (0x249F, "3", "(d)"), + (0x24A0, "3", "(e)"), + (0x24A1, "3", "(f)"), + (0x24A2, "3", "(g)"), + (0x24A3, "3", "(h)"), + (0x24A4, "3", "(i)"), + (0x24A5, "3", "(j)"), + (0x24A6, "3", "(k)"), + (0x24A7, "3", "(l)"), + (0x24A8, "3", "(m)"), + (0x24A9, "3", "(n)"), + (0x24AA, "3", "(o)"), + (0x24AB, "3", "(p)"), + (0x24AC, "3", "(q)"), + (0x24AD, "3", "(r)"), + (0x24AE, "3", "(s)"), + (0x24AF, "3", "(t)"), + (0x24B0, "3", "(u)"), + (0x24B1, "3", "(v)"), + (0x24B2, "3", "(w)"), + (0x24B3, "3", "(x)"), + (0x24B4, "3", "(y)"), + (0x24B5, "3", "(z)"), + (0x24B6, "M", "a"), + (0x24B7, "M", "b"), + (0x24B8, "M", "c"), + (0x24B9, "M", "d"), + (0x24BA, "M", "e"), + (0x24BB, "M", "f"), + (0x24BC, "M", "g"), + (0x24BD, "M", "h"), + (0x24BE, "M", "i"), + (0x24BF, "M", "j"), + (0x24C0, "M", "k"), + ] + + +def _seg_24() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x24C1, "M", "l"), + (0x24C2, "M", "m"), + (0x24C3, "M", "n"), + (0x24C4, "M", "o"), + (0x24C5, "M", "p"), + (0x24C6, "M", "q"), + (0x24C7, "M", "r"), + (0x24C8, "M", "s"), + (0x24C9, "M", "t"), + (0x24CA, "M", "u"), + (0x24CB, "M", "v"), + (0x24CC, "M", "w"), + (0x24CD, "M", "x"), + (0x24CE, "M", "y"), + (0x24CF, "M", "z"), + (0x24D0, "M", "a"), + (0x24D1, "M", "b"), + (0x24D2, "M", "c"), + (0x24D3, "M", "d"), + (0x24D4, "M", "e"), + (0x24D5, "M", "f"), + (0x24D6, "M", "g"), + (0x24D7, "M", "h"), + (0x24D8, "M", "i"), + (0x24D9, "M", "j"), + (0x24DA, "M", "k"), + (0x24DB, "M", "l"), + (0x24DC, "M", "m"), + (0x24DD, "M", "n"), + (0x24DE, "M", "o"), + (0x24DF, "M", "p"), + (0x24E0, "M", "q"), + (0x24E1, "M", "r"), + (0x24E2, "M", "s"), + (0x24E3, "M", "t"), + (0x24E4, "M", "u"), + (0x24E5, "M", "v"), + (0x24E6, "M", "w"), + (0x24E7, "M", "x"), + (0x24E8, "M", "y"), + (0x24E9, "M", "z"), + (0x24EA, "M", "0"), + (0x24EB, "V"), + (0x2A0C, "M", "∫∫∫∫"), + (0x2A0D, "V"), + (0x2A74, "3", "::="), + (0x2A75, "3", "=="), + (0x2A76, "3", "==="), + (0x2A77, "V"), + (0x2ADC, "M", "⫝̸"), + (0x2ADD, "V"), + (0x2B74, "X"), + (0x2B76, "V"), + (0x2B96, "X"), + (0x2B97, "V"), + (0x2C00, "M", "ⰰ"), + (0x2C01, "M", "ⰱ"), + (0x2C02, "M", "ⰲ"), + (0x2C03, "M", "ⰳ"), + (0x2C04, "M", "ⰴ"), + (0x2C05, "M", "ⰵ"), + (0x2C06, "M", "ⰶ"), + (0x2C07, "M", "ⰷ"), + (0x2C08, "M", "ⰸ"), + (0x2C09, "M", "ⰹ"), + (0x2C0A, "M", "ⰺ"), + (0x2C0B, "M", "ⰻ"), + (0x2C0C, "M", "ⰼ"), + (0x2C0D, "M", "ⰽ"), + (0x2C0E, "M", "ⰾ"), + (0x2C0F, "M", "ⰿ"), + (0x2C10, "M", "ⱀ"), + (0x2C11, "M", "ⱁ"), + (0x2C12, "M", "ⱂ"), + (0x2C13, "M", "ⱃ"), + (0x2C14, "M", "ⱄ"), + (0x2C15, "M", "ⱅ"), + (0x2C16, "M", "ⱆ"), + (0x2C17, "M", "ⱇ"), + (0x2C18, "M", "ⱈ"), + (0x2C19, "M", "ⱉ"), + (0x2C1A, "M", "ⱊ"), + (0x2C1B, "M", "ⱋ"), + (0x2C1C, "M", "ⱌ"), + (0x2C1D, "M", "ⱍ"), + (0x2C1E, "M", "ⱎ"), + (0x2C1F, "M", "ⱏ"), + (0x2C20, "M", "ⱐ"), + (0x2C21, "M", "ⱑ"), + (0x2C22, "M", "ⱒ"), + (0x2C23, "M", "ⱓ"), + (0x2C24, "M", "ⱔ"), + (0x2C25, "M", "ⱕ"), + (0x2C26, "M", "ⱖ"), + (0x2C27, "M", "ⱗ"), + (0x2C28, "M", "ⱘ"), + (0x2C29, "M", "ⱙ"), + (0x2C2A, "M", "ⱚ"), + (0x2C2B, "M", "ⱛ"), + (0x2C2C, "M", "ⱜ"), + ] + + +def _seg_25() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x2C2D, "M", "ⱝ"), + (0x2C2E, "M", "ⱞ"), + (0x2C2F, "M", "ⱟ"), + (0x2C30, "V"), + (0x2C60, "M", "ⱡ"), + (0x2C61, "V"), + (0x2C62, "M", "ɫ"), + (0x2C63, "M", "ᵽ"), + (0x2C64, "M", "ɽ"), + (0x2C65, "V"), + (0x2C67, "M", "ⱨ"), + (0x2C68, "V"), + (0x2C69, "M", "ⱪ"), + (0x2C6A, "V"), + (0x2C6B, "M", "ⱬ"), + (0x2C6C, "V"), + (0x2C6D, "M", "ɑ"), + (0x2C6E, "M", "ɱ"), + (0x2C6F, "M", "ɐ"), + (0x2C70, "M", "ɒ"), + (0x2C71, "V"), + (0x2C72, "M", "ⱳ"), + (0x2C73, "V"), + (0x2C75, "M", "ⱶ"), + (0x2C76, "V"), + (0x2C7C, "M", "j"), + (0x2C7D, "M", "v"), + (0x2C7E, "M", "ȿ"), + (0x2C7F, "M", "ɀ"), + (0x2C80, "M", "ⲁ"), + (0x2C81, "V"), + (0x2C82, "M", "ⲃ"), + (0x2C83, "V"), + (0x2C84, "M", "ⲅ"), + (0x2C85, "V"), + (0x2C86, "M", "ⲇ"), + (0x2C87, "V"), + (0x2C88, "M", "ⲉ"), + (0x2C89, "V"), + (0x2C8A, "M", "ⲋ"), + (0x2C8B, "V"), + (0x2C8C, "M", "ⲍ"), + (0x2C8D, "V"), + (0x2C8E, "M", "ⲏ"), + (0x2C8F, "V"), + (0x2C90, "M", "ⲑ"), + (0x2C91, "V"), + (0x2C92, "M", "ⲓ"), + (0x2C93, "V"), + (0x2C94, "M", "ⲕ"), + (0x2C95, "V"), + (0x2C96, "M", "ⲗ"), + (0x2C97, "V"), + (0x2C98, "M", "ⲙ"), + (0x2C99, "V"), + (0x2C9A, "M", "ⲛ"), + (0x2C9B, "V"), + (0x2C9C, "M", "ⲝ"), + (0x2C9D, "V"), + (0x2C9E, "M", "ⲟ"), + (0x2C9F, "V"), + (0x2CA0, "M", "ⲡ"), + (0x2CA1, "V"), + (0x2CA2, "M", "ⲣ"), + (0x2CA3, "V"), + (0x2CA4, "M", "ⲥ"), + (0x2CA5, "V"), + (0x2CA6, "M", "ⲧ"), + (0x2CA7, "V"), + (0x2CA8, "M", "ⲩ"), + (0x2CA9, "V"), + (0x2CAA, "M", "ⲫ"), + (0x2CAB, "V"), + (0x2CAC, "M", "ⲭ"), + (0x2CAD, "V"), + (0x2CAE, "M", "ⲯ"), + (0x2CAF, "V"), + (0x2CB0, "M", "ⲱ"), + (0x2CB1, "V"), + (0x2CB2, "M", "ⲳ"), + (0x2CB3, "V"), + (0x2CB4, "M", "ⲵ"), + (0x2CB5, "V"), + (0x2CB6, "M", "ⲷ"), + (0x2CB7, "V"), + (0x2CB8, "M", "ⲹ"), + (0x2CB9, "V"), + (0x2CBA, "M", "ⲻ"), + (0x2CBB, "V"), + (0x2CBC, "M", "ⲽ"), + (0x2CBD, "V"), + (0x2CBE, "M", "ⲿ"), + (0x2CBF, "V"), + (0x2CC0, "M", "ⳁ"), + (0x2CC1, "V"), + (0x2CC2, "M", "ⳃ"), + (0x2CC3, "V"), + (0x2CC4, "M", "ⳅ"), + (0x2CC5, "V"), + (0x2CC6, "M", "ⳇ"), + ] + + +def _seg_26() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x2CC7, "V"), + (0x2CC8, "M", "ⳉ"), + (0x2CC9, "V"), + (0x2CCA, "M", "ⳋ"), + (0x2CCB, "V"), + (0x2CCC, "M", "ⳍ"), + (0x2CCD, "V"), + (0x2CCE, "M", "ⳏ"), + (0x2CCF, "V"), + (0x2CD0, "M", "ⳑ"), + (0x2CD1, "V"), + (0x2CD2, "M", "ⳓ"), + (0x2CD3, "V"), + (0x2CD4, "M", "ⳕ"), + (0x2CD5, "V"), + (0x2CD6, "M", "ⳗ"), + (0x2CD7, "V"), + (0x2CD8, "M", "ⳙ"), + (0x2CD9, "V"), + (0x2CDA, "M", "ⳛ"), + (0x2CDB, "V"), + (0x2CDC, "M", "ⳝ"), + (0x2CDD, "V"), + (0x2CDE, "M", "ⳟ"), + (0x2CDF, "V"), + (0x2CE0, "M", "ⳡ"), + (0x2CE1, "V"), + (0x2CE2, "M", "ⳣ"), + (0x2CE3, "V"), + (0x2CEB, "M", "ⳬ"), + (0x2CEC, "V"), + (0x2CED, "M", "ⳮ"), + (0x2CEE, "V"), + (0x2CF2, "M", "ⳳ"), + (0x2CF3, "V"), + (0x2CF4, "X"), + (0x2CF9, "V"), + (0x2D26, "X"), + (0x2D27, "V"), + (0x2D28, "X"), + (0x2D2D, "V"), + (0x2D2E, "X"), + (0x2D30, "V"), + (0x2D68, "X"), + (0x2D6F, "M", "ⵡ"), + (0x2D70, "V"), + (0x2D71, "X"), + (0x2D7F, "V"), + (0x2D97, "X"), + (0x2DA0, "V"), + (0x2DA7, "X"), + (0x2DA8, "V"), + (0x2DAF, "X"), + (0x2DB0, "V"), + (0x2DB7, "X"), + (0x2DB8, "V"), + (0x2DBF, "X"), + (0x2DC0, "V"), + (0x2DC7, "X"), + (0x2DC8, "V"), + (0x2DCF, "X"), + (0x2DD0, "V"), + (0x2DD7, "X"), + (0x2DD8, "V"), + (0x2DDF, "X"), + (0x2DE0, "V"), + (0x2E5E, "X"), + (0x2E80, "V"), + (0x2E9A, "X"), + (0x2E9B, "V"), + (0x2E9F, "M", "母"), + (0x2EA0, "V"), + (0x2EF3, "M", "龟"), + (0x2EF4, "X"), + (0x2F00, "M", "一"), + (0x2F01, "M", "丨"), + (0x2F02, "M", "丶"), + (0x2F03, "M", "丿"), + (0x2F04, "M", "乙"), + (0x2F05, "M", "亅"), + (0x2F06, "M", "二"), + (0x2F07, "M", "亠"), + (0x2F08, "M", "人"), + (0x2F09, "M", "儿"), + (0x2F0A, "M", "入"), + (0x2F0B, "M", "八"), + (0x2F0C, "M", "冂"), + (0x2F0D, "M", "冖"), + (0x2F0E, "M", "冫"), + (0x2F0F, "M", "几"), + (0x2F10, "M", "凵"), + (0x2F11, "M", "刀"), + (0x2F12, "M", "力"), + (0x2F13, "M", "勹"), + (0x2F14, "M", "匕"), + (0x2F15, "M", "匚"), + (0x2F16, "M", "匸"), + (0x2F17, "M", "十"), + (0x2F18, "M", "卜"), + (0x2F19, "M", "卩"), + ] + + +def _seg_27() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x2F1A, "M", "厂"), + (0x2F1B, "M", "厶"), + (0x2F1C, "M", "又"), + (0x2F1D, "M", "口"), + (0x2F1E, "M", "囗"), + (0x2F1F, "M", "土"), + (0x2F20, "M", "士"), + (0x2F21, "M", "夂"), + (0x2F22, "M", "夊"), + (0x2F23, "M", "夕"), + (0x2F24, "M", "大"), + (0x2F25, "M", "女"), + (0x2F26, "M", "子"), + (0x2F27, "M", "宀"), + (0x2F28, "M", "寸"), + (0x2F29, "M", "小"), + (0x2F2A, "M", "尢"), + (0x2F2B, "M", "尸"), + (0x2F2C, "M", "屮"), + (0x2F2D, "M", "山"), + (0x2F2E, "M", "巛"), + (0x2F2F, "M", "工"), + (0x2F30, "M", "己"), + (0x2F31, "M", "巾"), + (0x2F32, "M", "干"), + (0x2F33, "M", "幺"), + (0x2F34, "M", "广"), + (0x2F35, "M", "廴"), + (0x2F36, "M", "廾"), + (0x2F37, "M", "弋"), + (0x2F38, "M", "弓"), + (0x2F39, "M", "彐"), + (0x2F3A, "M", "彡"), + (0x2F3B, "M", "彳"), + (0x2F3C, "M", "心"), + (0x2F3D, "M", "戈"), + (0x2F3E, "M", "戶"), + (0x2F3F, "M", "手"), + (0x2F40, "M", "支"), + (0x2F41, "M", "攴"), + (0x2F42, "M", "文"), + (0x2F43, "M", "斗"), + (0x2F44, "M", "斤"), + (0x2F45, "M", "方"), + (0x2F46, "M", "无"), + (0x2F47, "M", "日"), + (0x2F48, "M", "曰"), + (0x2F49, "M", "月"), + (0x2F4A, "M", "木"), + (0x2F4B, "M", "欠"), + (0x2F4C, "M", "止"), + (0x2F4D, "M", "歹"), + (0x2F4E, "M", "殳"), + (0x2F4F, "M", "毋"), + (0x2F50, "M", "比"), + (0x2F51, "M", "毛"), + (0x2F52, "M", "氏"), + (0x2F53, "M", "气"), + (0x2F54, "M", "水"), + (0x2F55, "M", "火"), + (0x2F56, "M", "爪"), + (0x2F57, "M", "父"), + (0x2F58, "M", "爻"), + (0x2F59, "M", "爿"), + (0x2F5A, "M", "片"), + (0x2F5B, "M", "牙"), + (0x2F5C, "M", "牛"), + (0x2F5D, "M", "犬"), + (0x2F5E, "M", "玄"), + (0x2F5F, "M", "玉"), + (0x2F60, "M", "瓜"), + (0x2F61, "M", "瓦"), + (0x2F62, "M", "甘"), + (0x2F63, "M", "生"), + (0x2F64, "M", "用"), + (0x2F65, "M", "田"), + (0x2F66, "M", "疋"), + (0x2F67, "M", "疒"), + (0x2F68, "M", "癶"), + (0x2F69, "M", "白"), + (0x2F6A, "M", "皮"), + (0x2F6B, "M", "皿"), + (0x2F6C, "M", "目"), + (0x2F6D, "M", "矛"), + (0x2F6E, "M", "矢"), + (0x2F6F, "M", "石"), + (0x2F70, "M", "示"), + (0x2F71, "M", "禸"), + (0x2F72, "M", "禾"), + (0x2F73, "M", "穴"), + (0x2F74, "M", "立"), + (0x2F75, "M", "竹"), + (0x2F76, "M", "米"), + (0x2F77, "M", "糸"), + (0x2F78, "M", "缶"), + (0x2F79, "M", "网"), + (0x2F7A, "M", "羊"), + (0x2F7B, "M", "羽"), + (0x2F7C, "M", "老"), + (0x2F7D, "M", "而"), + ] + + +def _seg_28() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x2F7E, "M", "耒"), + (0x2F7F, "M", "耳"), + (0x2F80, "M", "聿"), + (0x2F81, "M", "肉"), + (0x2F82, "M", "臣"), + (0x2F83, "M", "自"), + (0x2F84, "M", "至"), + (0x2F85, "M", "臼"), + (0x2F86, "M", "舌"), + (0x2F87, "M", "舛"), + (0x2F88, "M", "舟"), + (0x2F89, "M", "艮"), + (0x2F8A, "M", "色"), + (0x2F8B, "M", "艸"), + (0x2F8C, "M", "虍"), + (0x2F8D, "M", "虫"), + (0x2F8E, "M", "血"), + (0x2F8F, "M", "行"), + (0x2F90, "M", "衣"), + (0x2F91, "M", "襾"), + (0x2F92, "M", "見"), + (0x2F93, "M", "角"), + (0x2F94, "M", "言"), + (0x2F95, "M", "谷"), + (0x2F96, "M", "豆"), + (0x2F97, "M", "豕"), + (0x2F98, "M", "豸"), + (0x2F99, "M", "貝"), + (0x2F9A, "M", "赤"), + (0x2F9B, "M", "走"), + (0x2F9C, "M", "足"), + (0x2F9D, "M", "身"), + (0x2F9E, "M", "車"), + (0x2F9F, "M", "辛"), + (0x2FA0, "M", "辰"), + (0x2FA1, "M", "辵"), + (0x2FA2, "M", "邑"), + (0x2FA3, "M", "酉"), + (0x2FA4, "M", "釆"), + (0x2FA5, "M", "里"), + (0x2FA6, "M", "金"), + (0x2FA7, "M", "長"), + (0x2FA8, "M", "門"), + (0x2FA9, "M", "阜"), + (0x2FAA, "M", "隶"), + (0x2FAB, "M", "隹"), + (0x2FAC, "M", "雨"), + (0x2FAD, "M", "靑"), + (0x2FAE, "M", "非"), + (0x2FAF, "M", "面"), + (0x2FB0, "M", "革"), + (0x2FB1, "M", "韋"), + (0x2FB2, "M", "韭"), + (0x2FB3, "M", "音"), + (0x2FB4, "M", "頁"), + (0x2FB5, "M", "風"), + (0x2FB6, "M", "飛"), + (0x2FB7, "M", "食"), + (0x2FB8, "M", "首"), + (0x2FB9, "M", "香"), + (0x2FBA, "M", "馬"), + (0x2FBB, "M", "骨"), + (0x2FBC, "M", "高"), + (0x2FBD, "M", "髟"), + (0x2FBE, "M", "鬥"), + (0x2FBF, "M", "鬯"), + (0x2FC0, "M", "鬲"), + (0x2FC1, "M", "鬼"), + (0x2FC2, "M", "魚"), + (0x2FC3, "M", "鳥"), + (0x2FC4, "M", "鹵"), + (0x2FC5, "M", "鹿"), + (0x2FC6, "M", "麥"), + (0x2FC7, "M", "麻"), + (0x2FC8, "M", "黃"), + (0x2FC9, "M", "黍"), + (0x2FCA, "M", "黑"), + (0x2FCB, "M", "黹"), + (0x2FCC, "M", "黽"), + (0x2FCD, "M", "鼎"), + (0x2FCE, "M", "鼓"), + (0x2FCF, "M", "鼠"), + (0x2FD0, "M", "鼻"), + (0x2FD1, "M", "齊"), + (0x2FD2, "M", "齒"), + (0x2FD3, "M", "龍"), + (0x2FD4, "M", "龜"), + (0x2FD5, "M", "龠"), + (0x2FD6, "X"), + (0x3000, "3", " "), + (0x3001, "V"), + (0x3002, "M", "."), + (0x3003, "V"), + (0x3036, "M", "〒"), + (0x3037, "V"), + (0x3038, "M", "十"), + (0x3039, "M", "卄"), + (0x303A, "M", "卅"), + (0x303B, "V"), + (0x3040, "X"), + ] + + +def _seg_29() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x3041, "V"), + (0x3097, "X"), + (0x3099, "V"), + (0x309B, "3", " ゙"), + (0x309C, "3", " ゚"), + (0x309D, "V"), + (0x309F, "M", "より"), + (0x30A0, "V"), + (0x30FF, "M", "コト"), + (0x3100, "X"), + (0x3105, "V"), + (0x3130, "X"), + (0x3131, "M", "ᄀ"), + (0x3132, "M", "ᄁ"), + (0x3133, "M", "ᆪ"), + (0x3134, "M", "ᄂ"), + (0x3135, "M", "ᆬ"), + (0x3136, "M", "ᆭ"), + (0x3137, "M", "ᄃ"), + (0x3138, "M", "ᄄ"), + (0x3139, "M", "ᄅ"), + (0x313A, "M", "ᆰ"), + (0x313B, "M", "ᆱ"), + (0x313C, "M", "ᆲ"), + (0x313D, "M", "ᆳ"), + (0x313E, "M", "ᆴ"), + (0x313F, "M", "ᆵ"), + (0x3140, "M", "ᄚ"), + (0x3141, "M", "ᄆ"), + (0x3142, "M", "ᄇ"), + (0x3143, "M", "ᄈ"), + (0x3144, "M", "ᄡ"), + (0x3145, "M", "ᄉ"), + (0x3146, "M", "ᄊ"), + (0x3147, "M", "ᄋ"), + (0x3148, "M", "ᄌ"), + (0x3149, "M", "ᄍ"), + (0x314A, "M", "ᄎ"), + (0x314B, "M", "ᄏ"), + (0x314C, "M", "ᄐ"), + (0x314D, "M", "ᄑ"), + (0x314E, "M", "ᄒ"), + (0x314F, "M", "ᅡ"), + (0x3150, "M", "ᅢ"), + (0x3151, "M", "ᅣ"), + (0x3152, "M", "ᅤ"), + (0x3153, "M", "ᅥ"), + (0x3154, "M", "ᅦ"), + (0x3155, "M", "ᅧ"), + (0x3156, "M", "ᅨ"), + (0x3157, "M", "ᅩ"), + (0x3158, "M", "ᅪ"), + (0x3159, "M", "ᅫ"), + (0x315A, "M", "ᅬ"), + (0x315B, "M", "ᅭ"), + (0x315C, "M", "ᅮ"), + (0x315D, "M", "ᅯ"), + (0x315E, "M", "ᅰ"), + (0x315F, "M", "ᅱ"), + (0x3160, "M", "ᅲ"), + (0x3161, "M", "ᅳ"), + (0x3162, "M", "ᅴ"), + (0x3163, "M", "ᅵ"), + (0x3164, "X"), + (0x3165, "M", "ᄔ"), + (0x3166, "M", "ᄕ"), + (0x3167, "M", "ᇇ"), + (0x3168, "M", "ᇈ"), + (0x3169, "M", "ᇌ"), + (0x316A, "M", "ᇎ"), + (0x316B, "M", "ᇓ"), + (0x316C, "M", "ᇗ"), + (0x316D, "M", "ᇙ"), + (0x316E, "M", "ᄜ"), + (0x316F, "M", "ᇝ"), + (0x3170, "M", "ᇟ"), + (0x3171, "M", "ᄝ"), + (0x3172, "M", "ᄞ"), + (0x3173, "M", "ᄠ"), + (0x3174, "M", "ᄢ"), + (0x3175, "M", "ᄣ"), + (0x3176, "M", "ᄧ"), + (0x3177, "M", "ᄩ"), + (0x3178, "M", "ᄫ"), + (0x3179, "M", "ᄬ"), + (0x317A, "M", "ᄭ"), + (0x317B, "M", "ᄮ"), + (0x317C, "M", "ᄯ"), + (0x317D, "M", "ᄲ"), + (0x317E, "M", "ᄶ"), + (0x317F, "M", "ᅀ"), + (0x3180, "M", "ᅇ"), + (0x3181, "M", "ᅌ"), + (0x3182, "M", "ᇱ"), + (0x3183, "M", "ᇲ"), + (0x3184, "M", "ᅗ"), + (0x3185, "M", "ᅘ"), + (0x3186, "M", "ᅙ"), + (0x3187, "M", "ᆄ"), + (0x3188, "M", "ᆅ"), + ] + + +def _seg_30() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x3189, "M", "ᆈ"), + (0x318A, "M", "ᆑ"), + (0x318B, "M", "ᆒ"), + (0x318C, "M", "ᆔ"), + (0x318D, "M", "ᆞ"), + (0x318E, "M", "ᆡ"), + (0x318F, "X"), + (0x3190, "V"), + (0x3192, "M", "一"), + (0x3193, "M", "二"), + (0x3194, "M", "三"), + (0x3195, "M", "四"), + (0x3196, "M", "上"), + (0x3197, "M", "中"), + (0x3198, "M", "下"), + (0x3199, "M", "甲"), + (0x319A, "M", "乙"), + (0x319B, "M", "丙"), + (0x319C, "M", "丁"), + (0x319D, "M", "天"), + (0x319E, "M", "地"), + (0x319F, "M", "人"), + (0x31A0, "V"), + (0x31E4, "X"), + (0x31F0, "V"), + (0x3200, "3", "(ᄀ)"), + (0x3201, "3", "(ᄂ)"), + (0x3202, "3", "(ᄃ)"), + (0x3203, "3", "(ᄅ)"), + (0x3204, "3", "(ᄆ)"), + (0x3205, "3", "(ᄇ)"), + (0x3206, "3", "(ᄉ)"), + (0x3207, "3", "(ᄋ)"), + (0x3208, "3", "(ᄌ)"), + (0x3209, "3", "(ᄎ)"), + (0x320A, "3", "(ᄏ)"), + (0x320B, "3", "(ᄐ)"), + (0x320C, "3", "(ᄑ)"), + (0x320D, "3", "(ᄒ)"), + (0x320E, "3", "(가)"), + (0x320F, "3", "(나)"), + (0x3210, "3", "(다)"), + (0x3211, "3", "(라)"), + (0x3212, "3", "(마)"), + (0x3213, "3", "(바)"), + (0x3214, "3", "(사)"), + (0x3215, "3", "(아)"), + (0x3216, "3", "(자)"), + (0x3217, "3", "(차)"), + (0x3218, "3", "(카)"), + (0x3219, "3", "(타)"), + (0x321A, "3", "(파)"), + (0x321B, "3", "(하)"), + (0x321C, "3", "(주)"), + (0x321D, "3", "(오전)"), + (0x321E, "3", "(오후)"), + (0x321F, "X"), + (0x3220, "3", "(一)"), + (0x3221, "3", "(二)"), + (0x3222, "3", "(三)"), + (0x3223, "3", "(四)"), + (0x3224, "3", "(五)"), + (0x3225, "3", "(六)"), + (0x3226, "3", "(七)"), + (0x3227, "3", "(八)"), + (0x3228, "3", "(九)"), + (0x3229, "3", "(十)"), + (0x322A, "3", "(月)"), + (0x322B, "3", "(火)"), + (0x322C, "3", "(水)"), + (0x322D, "3", "(木)"), + (0x322E, "3", "(金)"), + (0x322F, "3", "(土)"), + (0x3230, "3", "(日)"), + (0x3231, "3", "(株)"), + (0x3232, "3", "(有)"), + (0x3233, "3", "(社)"), + (0x3234, "3", "(名)"), + (0x3235, "3", "(特)"), + (0x3236, "3", "(財)"), + (0x3237, "3", "(祝)"), + (0x3238, "3", "(労)"), + (0x3239, "3", "(代)"), + (0x323A, "3", "(呼)"), + (0x323B, "3", "(学)"), + (0x323C, "3", "(監)"), + (0x323D, "3", "(企)"), + (0x323E, "3", "(資)"), + (0x323F, "3", "(協)"), + (0x3240, "3", "(祭)"), + (0x3241, "3", "(休)"), + (0x3242, "3", "(自)"), + (0x3243, "3", "(至)"), + (0x3244, "M", "問"), + (0x3245, "M", "幼"), + (0x3246, "M", "文"), + (0x3247, "M", "箏"), + (0x3248, "V"), + (0x3250, "M", "pte"), + (0x3251, "M", "21"), + ] + + +def _seg_31() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x3252, "M", "22"), + (0x3253, "M", "23"), + (0x3254, "M", "24"), + (0x3255, "M", "25"), + (0x3256, "M", "26"), + (0x3257, "M", "27"), + (0x3258, "M", "28"), + (0x3259, "M", "29"), + (0x325A, "M", "30"), + (0x325B, "M", "31"), + (0x325C, "M", "32"), + (0x325D, "M", "33"), + (0x325E, "M", "34"), + (0x325F, "M", "35"), + (0x3260, "M", "ᄀ"), + (0x3261, "M", "ᄂ"), + (0x3262, "M", "ᄃ"), + (0x3263, "M", "ᄅ"), + (0x3264, "M", "ᄆ"), + (0x3265, "M", "ᄇ"), + (0x3266, "M", "ᄉ"), + (0x3267, "M", "ᄋ"), + (0x3268, "M", "ᄌ"), + (0x3269, "M", "ᄎ"), + (0x326A, "M", "ᄏ"), + (0x326B, "M", "ᄐ"), + (0x326C, "M", "ᄑ"), + (0x326D, "M", "ᄒ"), + (0x326E, "M", "가"), + (0x326F, "M", "나"), + (0x3270, "M", "다"), + (0x3271, "M", "라"), + (0x3272, "M", "마"), + (0x3273, "M", "바"), + (0x3274, "M", "사"), + (0x3275, "M", "아"), + (0x3276, "M", "자"), + (0x3277, "M", "차"), + (0x3278, "M", "카"), + (0x3279, "M", "타"), + (0x327A, "M", "파"), + (0x327B, "M", "하"), + (0x327C, "M", "참고"), + (0x327D, "M", "주의"), + (0x327E, "M", "우"), + (0x327F, "V"), + (0x3280, "M", "一"), + (0x3281, "M", "二"), + (0x3282, "M", "三"), + (0x3283, "M", "四"), + (0x3284, "M", "五"), + (0x3285, "M", "六"), + (0x3286, "M", "七"), + (0x3287, "M", "八"), + (0x3288, "M", "九"), + (0x3289, "M", "十"), + (0x328A, "M", "月"), + (0x328B, "M", "火"), + (0x328C, "M", "水"), + (0x328D, "M", "木"), + (0x328E, "M", "金"), + (0x328F, "M", "土"), + (0x3290, "M", "日"), + (0x3291, "M", "株"), + (0x3292, "M", "有"), + (0x3293, "M", "社"), + (0x3294, "M", "名"), + (0x3295, "M", "特"), + (0x3296, "M", "財"), + (0x3297, "M", "祝"), + (0x3298, "M", "労"), + (0x3299, "M", "秘"), + (0x329A, "M", "男"), + (0x329B, "M", "女"), + (0x329C, "M", "適"), + (0x329D, "M", "優"), + (0x329E, "M", "印"), + (0x329F, "M", "注"), + (0x32A0, "M", "項"), + (0x32A1, "M", "休"), + (0x32A2, "M", "写"), + (0x32A3, "M", "正"), + (0x32A4, "M", "上"), + (0x32A5, "M", "中"), + (0x32A6, "M", "下"), + (0x32A7, "M", "左"), + (0x32A8, "M", "右"), + (0x32A9, "M", "医"), + (0x32AA, "M", "宗"), + (0x32AB, "M", "学"), + (0x32AC, "M", "監"), + (0x32AD, "M", "企"), + (0x32AE, "M", "資"), + (0x32AF, "M", "協"), + (0x32B0, "M", "夜"), + (0x32B1, "M", "36"), + (0x32B2, "M", "37"), + (0x32B3, "M", "38"), + (0x32B4, "M", "39"), + (0x32B5, "M", "40"), + ] + + +def _seg_32() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x32B6, "M", "41"), + (0x32B7, "M", "42"), + (0x32B8, "M", "43"), + (0x32B9, "M", "44"), + (0x32BA, "M", "45"), + (0x32BB, "M", "46"), + (0x32BC, "M", "47"), + (0x32BD, "M", "48"), + (0x32BE, "M", "49"), + (0x32BF, "M", "50"), + (0x32C0, "M", "1月"), + (0x32C1, "M", "2月"), + (0x32C2, "M", "3月"), + (0x32C3, "M", "4月"), + (0x32C4, "M", "5月"), + (0x32C5, "M", "6月"), + (0x32C6, "M", "7月"), + (0x32C7, "M", "8月"), + (0x32C8, "M", "9月"), + (0x32C9, "M", "10月"), + (0x32CA, "M", "11月"), + (0x32CB, "M", "12月"), + (0x32CC, "M", "hg"), + (0x32CD, "M", "erg"), + (0x32CE, "M", "ev"), + (0x32CF, "M", "ltd"), + (0x32D0, "M", "ア"), + (0x32D1, "M", "イ"), + (0x32D2, "M", "ウ"), + (0x32D3, "M", "エ"), + (0x32D4, "M", "オ"), + (0x32D5, "M", "カ"), + (0x32D6, "M", "キ"), + (0x32D7, "M", "ク"), + (0x32D8, "M", "ケ"), + (0x32D9, "M", "コ"), + (0x32DA, "M", "サ"), + (0x32DB, "M", "シ"), + (0x32DC, "M", "ス"), + (0x32DD, "M", "セ"), + (0x32DE, "M", "ソ"), + (0x32DF, "M", "タ"), + (0x32E0, "M", "チ"), + (0x32E1, "M", "ツ"), + (0x32E2, "M", "テ"), + (0x32E3, "M", "ト"), + (0x32E4, "M", "ナ"), + (0x32E5, "M", "ニ"), + (0x32E6, "M", "ヌ"), + (0x32E7, "M", "ネ"), + (0x32E8, "M", "ノ"), + (0x32E9, "M", "ハ"), + (0x32EA, "M", "ヒ"), + (0x32EB, "M", "フ"), + (0x32EC, "M", "ヘ"), + (0x32ED, "M", "ホ"), + (0x32EE, "M", "マ"), + (0x32EF, "M", "ミ"), + (0x32F0, "M", "ム"), + (0x32F1, "M", "メ"), + (0x32F2, "M", "モ"), + (0x32F3, "M", "ヤ"), + (0x32F4, "M", "ユ"), + (0x32F5, "M", "ヨ"), + (0x32F6, "M", "ラ"), + (0x32F7, "M", "リ"), + (0x32F8, "M", "ル"), + (0x32F9, "M", "レ"), + (0x32FA, "M", "ロ"), + (0x32FB, "M", "ワ"), + (0x32FC, "M", "ヰ"), + (0x32FD, "M", "ヱ"), + (0x32FE, "M", "ヲ"), + (0x32FF, "M", "令和"), + (0x3300, "M", "アパート"), + (0x3301, "M", "アルファ"), + (0x3302, "M", "アンペア"), + (0x3303, "M", "アール"), + (0x3304, "M", "イニング"), + (0x3305, "M", "インチ"), + (0x3306, "M", "ウォン"), + (0x3307, "M", "エスクード"), + (0x3308, "M", "エーカー"), + (0x3309, "M", "オンス"), + (0x330A, "M", "オーム"), + (0x330B, "M", "カイリ"), + (0x330C, "M", "カラット"), + (0x330D, "M", "カロリー"), + (0x330E, "M", "ガロン"), + (0x330F, "M", "ガンマ"), + (0x3310, "M", "ギガ"), + (0x3311, "M", "ギニー"), + (0x3312, "M", "キュリー"), + (0x3313, "M", "ギルダー"), + (0x3314, "M", "キロ"), + (0x3315, "M", "キログラム"), + (0x3316, "M", "キロメートル"), + (0x3317, "M", "キロワット"), + (0x3318, "M", "グラム"), + (0x3319, "M", "グラムトン"), + ] + + +def _seg_33() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x331A, "M", "クルゼイロ"), + (0x331B, "M", "クローネ"), + (0x331C, "M", "ケース"), + (0x331D, "M", "コルナ"), + (0x331E, "M", "コーポ"), + (0x331F, "M", "サイクル"), + (0x3320, "M", "サンチーム"), + (0x3321, "M", "シリング"), + (0x3322, "M", "センチ"), + (0x3323, "M", "セント"), + (0x3324, "M", "ダース"), + (0x3325, "M", "デシ"), + (0x3326, "M", "ドル"), + (0x3327, "M", "トン"), + (0x3328, "M", "ナノ"), + (0x3329, "M", "ノット"), + (0x332A, "M", "ハイツ"), + (0x332B, "M", "パーセント"), + (0x332C, "M", "パーツ"), + (0x332D, "M", "バーレル"), + (0x332E, "M", "ピアストル"), + (0x332F, "M", "ピクル"), + (0x3330, "M", "ピコ"), + (0x3331, "M", "ビル"), + (0x3332, "M", "ファラッド"), + (0x3333, "M", "フィート"), + (0x3334, "M", "ブッシェル"), + (0x3335, "M", "フラン"), + (0x3336, "M", "ヘクタール"), + (0x3337, "M", "ペソ"), + (0x3338, "M", "ペニヒ"), + (0x3339, "M", "ヘルツ"), + (0x333A, "M", "ペンス"), + (0x333B, "M", "ページ"), + (0x333C, "M", "ベータ"), + (0x333D, "M", "ポイント"), + (0x333E, "M", "ボルト"), + (0x333F, "M", "ホン"), + (0x3340, "M", "ポンド"), + (0x3341, "M", "ホール"), + (0x3342, "M", "ホーン"), + (0x3343, "M", "マイクロ"), + (0x3344, "M", "マイル"), + (0x3345, "M", "マッハ"), + (0x3346, "M", "マルク"), + (0x3347, "M", "マンション"), + (0x3348, "M", "ミクロン"), + (0x3349, "M", "ミリ"), + (0x334A, "M", "ミリバール"), + (0x334B, "M", "メガ"), + (0x334C, "M", "メガトン"), + (0x334D, "M", "メートル"), + (0x334E, "M", "ヤード"), + (0x334F, "M", "ヤール"), + (0x3350, "M", "ユアン"), + (0x3351, "M", "リットル"), + (0x3352, "M", "リラ"), + (0x3353, "M", "ルピー"), + (0x3354, "M", "ルーブル"), + (0x3355, "M", "レム"), + (0x3356, "M", "レントゲン"), + (0x3357, "M", "ワット"), + (0x3358, "M", "0点"), + (0x3359, "M", "1点"), + (0x335A, "M", "2点"), + (0x335B, "M", "3点"), + (0x335C, "M", "4点"), + (0x335D, "M", "5点"), + (0x335E, "M", "6点"), + (0x335F, "M", "7点"), + (0x3360, "M", "8点"), + (0x3361, "M", "9点"), + (0x3362, "M", "10点"), + (0x3363, "M", "11点"), + (0x3364, "M", "12点"), + (0x3365, "M", "13点"), + (0x3366, "M", "14点"), + (0x3367, "M", "15点"), + (0x3368, "M", "16点"), + (0x3369, "M", "17点"), + (0x336A, "M", "18点"), + (0x336B, "M", "19点"), + (0x336C, "M", "20点"), + (0x336D, "M", "21点"), + (0x336E, "M", "22点"), + (0x336F, "M", "23点"), + (0x3370, "M", "24点"), + (0x3371, "M", "hpa"), + (0x3372, "M", "da"), + (0x3373, "M", "au"), + (0x3374, "M", "bar"), + (0x3375, "M", "ov"), + (0x3376, "M", "pc"), + (0x3377, "M", "dm"), + (0x3378, "M", "dm2"), + (0x3379, "M", "dm3"), + (0x337A, "M", "iu"), + (0x337B, "M", "平成"), + (0x337C, "M", "昭和"), + (0x337D, "M", "大正"), + ] + + +def _seg_34() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x337E, "M", "明治"), + (0x337F, "M", "株式会社"), + (0x3380, "M", "pa"), + (0x3381, "M", "na"), + (0x3382, "M", "μa"), + (0x3383, "M", "ma"), + (0x3384, "M", "ka"), + (0x3385, "M", "kb"), + (0x3386, "M", "mb"), + (0x3387, "M", "gb"), + (0x3388, "M", "cal"), + (0x3389, "M", "kcal"), + (0x338A, "M", "pf"), + (0x338B, "M", "nf"), + (0x338C, "M", "μf"), + (0x338D, "M", "μg"), + (0x338E, "M", "mg"), + (0x338F, "M", "kg"), + (0x3390, "M", "hz"), + (0x3391, "M", "khz"), + (0x3392, "M", "mhz"), + (0x3393, "M", "ghz"), + (0x3394, "M", "thz"), + (0x3395, "M", "μl"), + (0x3396, "M", "ml"), + (0x3397, "M", "dl"), + (0x3398, "M", "kl"), + (0x3399, "M", "fm"), + (0x339A, "M", "nm"), + (0x339B, "M", "μm"), + (0x339C, "M", "mm"), + (0x339D, "M", "cm"), + (0x339E, "M", "km"), + (0x339F, "M", "mm2"), + (0x33A0, "M", "cm2"), + (0x33A1, "M", "m2"), + (0x33A2, "M", "km2"), + (0x33A3, "M", "mm3"), + (0x33A4, "M", "cm3"), + (0x33A5, "M", "m3"), + (0x33A6, "M", "km3"), + (0x33A7, "M", "m∕s"), + (0x33A8, "M", "m∕s2"), + (0x33A9, "M", "pa"), + (0x33AA, "M", "kpa"), + (0x33AB, "M", "mpa"), + (0x33AC, "M", "gpa"), + (0x33AD, "M", "rad"), + (0x33AE, "M", "rad∕s"), + (0x33AF, "M", "rad∕s2"), + (0x33B0, "M", "ps"), + (0x33B1, "M", "ns"), + (0x33B2, "M", "μs"), + (0x33B3, "M", "ms"), + (0x33B4, "M", "pv"), + (0x33B5, "M", "nv"), + (0x33B6, "M", "μv"), + (0x33B7, "M", "mv"), + (0x33B8, "M", "kv"), + (0x33B9, "M", "mv"), + (0x33BA, "M", "pw"), + (0x33BB, "M", "nw"), + (0x33BC, "M", "μw"), + (0x33BD, "M", "mw"), + (0x33BE, "M", "kw"), + (0x33BF, "M", "mw"), + (0x33C0, "M", "kω"), + (0x33C1, "M", "mω"), + (0x33C2, "X"), + (0x33C3, "M", "bq"), + (0x33C4, "M", "cc"), + (0x33C5, "M", "cd"), + (0x33C6, "M", "c∕kg"), + (0x33C7, "X"), + (0x33C8, "M", "db"), + (0x33C9, "M", "gy"), + (0x33CA, "M", "ha"), + (0x33CB, "M", "hp"), + (0x33CC, "M", "in"), + (0x33CD, "M", "kk"), + (0x33CE, "M", "km"), + (0x33CF, "M", "kt"), + (0x33D0, "M", "lm"), + (0x33D1, "M", "ln"), + (0x33D2, "M", "log"), + (0x33D3, "M", "lx"), + (0x33D4, "M", "mb"), + (0x33D5, "M", "mil"), + (0x33D6, "M", "mol"), + (0x33D7, "M", "ph"), + (0x33D8, "X"), + (0x33D9, "M", "ppm"), + (0x33DA, "M", "pr"), + (0x33DB, "M", "sr"), + (0x33DC, "M", "sv"), + (0x33DD, "M", "wb"), + (0x33DE, "M", "v∕m"), + (0x33DF, "M", "a∕m"), + (0x33E0, "M", "1日"), + (0x33E1, "M", "2日"), + ] + + +def _seg_35() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x33E2, "M", "3日"), + (0x33E3, "M", "4日"), + (0x33E4, "M", "5日"), + (0x33E5, "M", "6日"), + (0x33E6, "M", "7日"), + (0x33E7, "M", "8日"), + (0x33E8, "M", "9日"), + (0x33E9, "M", "10日"), + (0x33EA, "M", "11日"), + (0x33EB, "M", "12日"), + (0x33EC, "M", "13日"), + (0x33ED, "M", "14日"), + (0x33EE, "M", "15日"), + (0x33EF, "M", "16日"), + (0x33F0, "M", "17日"), + (0x33F1, "M", "18日"), + (0x33F2, "M", "19日"), + (0x33F3, "M", "20日"), + (0x33F4, "M", "21日"), + (0x33F5, "M", "22日"), + (0x33F6, "M", "23日"), + (0x33F7, "M", "24日"), + (0x33F8, "M", "25日"), + (0x33F9, "M", "26日"), + (0x33FA, "M", "27日"), + (0x33FB, "M", "28日"), + (0x33FC, "M", "29日"), + (0x33FD, "M", "30日"), + (0x33FE, "M", "31日"), + (0x33FF, "M", "gal"), + (0x3400, "V"), + (0xA48D, "X"), + (0xA490, "V"), + (0xA4C7, "X"), + (0xA4D0, "V"), + (0xA62C, "X"), + (0xA640, "M", "ꙁ"), + (0xA641, "V"), + (0xA642, "M", "ꙃ"), + (0xA643, "V"), + (0xA644, "M", "ꙅ"), + (0xA645, "V"), + (0xA646, "M", "ꙇ"), + (0xA647, "V"), + (0xA648, "M", "ꙉ"), + (0xA649, "V"), + (0xA64A, "M", "ꙋ"), + (0xA64B, "V"), + (0xA64C, "M", "ꙍ"), + (0xA64D, "V"), + (0xA64E, "M", "ꙏ"), + (0xA64F, "V"), + (0xA650, "M", "ꙑ"), + (0xA651, "V"), + (0xA652, "M", "ꙓ"), + (0xA653, "V"), + (0xA654, "M", "ꙕ"), + (0xA655, "V"), + (0xA656, "M", "ꙗ"), + (0xA657, "V"), + (0xA658, "M", "ꙙ"), + (0xA659, "V"), + (0xA65A, "M", "ꙛ"), + (0xA65B, "V"), + (0xA65C, "M", "ꙝ"), + (0xA65D, "V"), + (0xA65E, "M", "ꙟ"), + (0xA65F, "V"), + (0xA660, "M", "ꙡ"), + (0xA661, "V"), + (0xA662, "M", "ꙣ"), + (0xA663, "V"), + (0xA664, "M", "ꙥ"), + (0xA665, "V"), + (0xA666, "M", "ꙧ"), + (0xA667, "V"), + (0xA668, "M", "ꙩ"), + (0xA669, "V"), + (0xA66A, "M", "ꙫ"), + (0xA66B, "V"), + (0xA66C, "M", "ꙭ"), + (0xA66D, "V"), + (0xA680, "M", "ꚁ"), + (0xA681, "V"), + (0xA682, "M", "ꚃ"), + (0xA683, "V"), + (0xA684, "M", "ꚅ"), + (0xA685, "V"), + (0xA686, "M", "ꚇ"), + (0xA687, "V"), + (0xA688, "M", "ꚉ"), + (0xA689, "V"), + (0xA68A, "M", "ꚋ"), + (0xA68B, "V"), + (0xA68C, "M", "ꚍ"), + (0xA68D, "V"), + (0xA68E, "M", "ꚏ"), + (0xA68F, "V"), + (0xA690, "M", "ꚑ"), + (0xA691, "V"), + ] + + +def _seg_36() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xA692, "M", "ꚓ"), + (0xA693, "V"), + (0xA694, "M", "ꚕ"), + (0xA695, "V"), + (0xA696, "M", "ꚗ"), + (0xA697, "V"), + (0xA698, "M", "ꚙ"), + (0xA699, "V"), + (0xA69A, "M", "ꚛ"), + (0xA69B, "V"), + (0xA69C, "M", "ъ"), + (0xA69D, "M", "ь"), + (0xA69E, "V"), + (0xA6F8, "X"), + (0xA700, "V"), + (0xA722, "M", "ꜣ"), + (0xA723, "V"), + (0xA724, "M", "ꜥ"), + (0xA725, "V"), + (0xA726, "M", "ꜧ"), + (0xA727, "V"), + (0xA728, "M", "ꜩ"), + (0xA729, "V"), + (0xA72A, "M", "ꜫ"), + (0xA72B, "V"), + (0xA72C, "M", "ꜭ"), + (0xA72D, "V"), + (0xA72E, "M", "ꜯ"), + (0xA72F, "V"), + (0xA732, "M", "ꜳ"), + (0xA733, "V"), + (0xA734, "M", "ꜵ"), + (0xA735, "V"), + (0xA736, "M", "ꜷ"), + (0xA737, "V"), + (0xA738, "M", "ꜹ"), + (0xA739, "V"), + (0xA73A, "M", "ꜻ"), + (0xA73B, "V"), + (0xA73C, "M", "ꜽ"), + (0xA73D, "V"), + (0xA73E, "M", "ꜿ"), + (0xA73F, "V"), + (0xA740, "M", "ꝁ"), + (0xA741, "V"), + (0xA742, "M", "ꝃ"), + (0xA743, "V"), + (0xA744, "M", "ꝅ"), + (0xA745, "V"), + (0xA746, "M", "ꝇ"), + (0xA747, "V"), + (0xA748, "M", "ꝉ"), + (0xA749, "V"), + (0xA74A, "M", "ꝋ"), + (0xA74B, "V"), + (0xA74C, "M", "ꝍ"), + (0xA74D, "V"), + (0xA74E, "M", "ꝏ"), + (0xA74F, "V"), + (0xA750, "M", "ꝑ"), + (0xA751, "V"), + (0xA752, "M", "ꝓ"), + (0xA753, "V"), + (0xA754, "M", "ꝕ"), + (0xA755, "V"), + (0xA756, "M", "ꝗ"), + (0xA757, "V"), + (0xA758, "M", "ꝙ"), + (0xA759, "V"), + (0xA75A, "M", "ꝛ"), + (0xA75B, "V"), + (0xA75C, "M", "ꝝ"), + (0xA75D, "V"), + (0xA75E, "M", "ꝟ"), + (0xA75F, "V"), + (0xA760, "M", "ꝡ"), + (0xA761, "V"), + (0xA762, "M", "ꝣ"), + (0xA763, "V"), + (0xA764, "M", "ꝥ"), + (0xA765, "V"), + (0xA766, "M", "ꝧ"), + (0xA767, "V"), + (0xA768, "M", "ꝩ"), + (0xA769, "V"), + (0xA76A, "M", "ꝫ"), + (0xA76B, "V"), + (0xA76C, "M", "ꝭ"), + (0xA76D, "V"), + (0xA76E, "M", "ꝯ"), + (0xA76F, "V"), + (0xA770, "M", "ꝯ"), + (0xA771, "V"), + (0xA779, "M", "ꝺ"), + (0xA77A, "V"), + (0xA77B, "M", "ꝼ"), + (0xA77C, "V"), + (0xA77D, "M", "ᵹ"), + (0xA77E, "M", "ꝿ"), + (0xA77F, "V"), + ] + + +def _seg_37() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xA780, "M", "ꞁ"), + (0xA781, "V"), + (0xA782, "M", "ꞃ"), + (0xA783, "V"), + (0xA784, "M", "ꞅ"), + (0xA785, "V"), + (0xA786, "M", "ꞇ"), + (0xA787, "V"), + (0xA78B, "M", "ꞌ"), + (0xA78C, "V"), + (0xA78D, "M", "ɥ"), + (0xA78E, "V"), + (0xA790, "M", "ꞑ"), + (0xA791, "V"), + (0xA792, "M", "ꞓ"), + (0xA793, "V"), + (0xA796, "M", "ꞗ"), + (0xA797, "V"), + (0xA798, "M", "ꞙ"), + (0xA799, "V"), + (0xA79A, "M", "ꞛ"), + (0xA79B, "V"), + (0xA79C, "M", "ꞝ"), + (0xA79D, "V"), + (0xA79E, "M", "ꞟ"), + (0xA79F, "V"), + (0xA7A0, "M", "ꞡ"), + (0xA7A1, "V"), + (0xA7A2, "M", "ꞣ"), + (0xA7A3, "V"), + (0xA7A4, "M", "ꞥ"), + (0xA7A5, "V"), + (0xA7A6, "M", "ꞧ"), + (0xA7A7, "V"), + (0xA7A8, "M", "ꞩ"), + (0xA7A9, "V"), + (0xA7AA, "M", "ɦ"), + (0xA7AB, "M", "ɜ"), + (0xA7AC, "M", "ɡ"), + (0xA7AD, "M", "ɬ"), + (0xA7AE, "M", "ɪ"), + (0xA7AF, "V"), + (0xA7B0, "M", "ʞ"), + (0xA7B1, "M", "ʇ"), + (0xA7B2, "M", "ʝ"), + (0xA7B3, "M", "ꭓ"), + (0xA7B4, "M", "ꞵ"), + (0xA7B5, "V"), + (0xA7B6, "M", "ꞷ"), + (0xA7B7, "V"), + (0xA7B8, "M", "ꞹ"), + (0xA7B9, "V"), + (0xA7BA, "M", "ꞻ"), + (0xA7BB, "V"), + (0xA7BC, "M", "ꞽ"), + (0xA7BD, "V"), + (0xA7BE, "M", "ꞿ"), + (0xA7BF, "V"), + (0xA7C0, "M", "ꟁ"), + (0xA7C1, "V"), + (0xA7C2, "M", "ꟃ"), + (0xA7C3, "V"), + (0xA7C4, "M", "ꞔ"), + (0xA7C5, "M", "ʂ"), + (0xA7C6, "M", "ᶎ"), + (0xA7C7, "M", "ꟈ"), + (0xA7C8, "V"), + (0xA7C9, "M", "ꟊ"), + (0xA7CA, "V"), + (0xA7CB, "X"), + (0xA7D0, "M", "ꟑ"), + (0xA7D1, "V"), + (0xA7D2, "X"), + (0xA7D3, "V"), + (0xA7D4, "X"), + (0xA7D5, "V"), + (0xA7D6, "M", "ꟗ"), + (0xA7D7, "V"), + (0xA7D8, "M", "ꟙ"), + (0xA7D9, "V"), + (0xA7DA, "X"), + (0xA7F2, "M", "c"), + (0xA7F3, "M", "f"), + (0xA7F4, "M", "q"), + (0xA7F5, "M", "ꟶ"), + (0xA7F6, "V"), + (0xA7F8, "M", "ħ"), + (0xA7F9, "M", "œ"), + (0xA7FA, "V"), + (0xA82D, "X"), + (0xA830, "V"), + (0xA83A, "X"), + (0xA840, "V"), + (0xA878, "X"), + (0xA880, "V"), + (0xA8C6, "X"), + (0xA8CE, "V"), + (0xA8DA, "X"), + (0xA8E0, "V"), + (0xA954, "X"), + ] + + +def _seg_38() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xA95F, "V"), + (0xA97D, "X"), + (0xA980, "V"), + (0xA9CE, "X"), + (0xA9CF, "V"), + (0xA9DA, "X"), + (0xA9DE, "V"), + (0xA9FF, "X"), + (0xAA00, "V"), + (0xAA37, "X"), + (0xAA40, "V"), + (0xAA4E, "X"), + (0xAA50, "V"), + (0xAA5A, "X"), + (0xAA5C, "V"), + (0xAAC3, "X"), + (0xAADB, "V"), + (0xAAF7, "X"), + (0xAB01, "V"), + (0xAB07, "X"), + (0xAB09, "V"), + (0xAB0F, "X"), + (0xAB11, "V"), + (0xAB17, "X"), + (0xAB20, "V"), + (0xAB27, "X"), + (0xAB28, "V"), + (0xAB2F, "X"), + (0xAB30, "V"), + (0xAB5C, "M", "ꜧ"), + (0xAB5D, "M", "ꬷ"), + (0xAB5E, "M", "ɫ"), + (0xAB5F, "M", "ꭒ"), + (0xAB60, "V"), + (0xAB69, "M", "ʍ"), + (0xAB6A, "V"), + (0xAB6C, "X"), + (0xAB70, "M", "Ꭰ"), + (0xAB71, "M", "Ꭱ"), + (0xAB72, "M", "Ꭲ"), + (0xAB73, "M", "Ꭳ"), + (0xAB74, "M", "Ꭴ"), + (0xAB75, "M", "Ꭵ"), + (0xAB76, "M", "Ꭶ"), + (0xAB77, "M", "Ꭷ"), + (0xAB78, "M", "Ꭸ"), + (0xAB79, "M", "Ꭹ"), + (0xAB7A, "M", "Ꭺ"), + (0xAB7B, "M", "Ꭻ"), + (0xAB7C, "M", "Ꭼ"), + (0xAB7D, "M", "Ꭽ"), + (0xAB7E, "M", "Ꭾ"), + (0xAB7F, "M", "Ꭿ"), + (0xAB80, "M", "Ꮀ"), + (0xAB81, "M", "Ꮁ"), + (0xAB82, "M", "Ꮂ"), + (0xAB83, "M", "Ꮃ"), + (0xAB84, "M", "Ꮄ"), + (0xAB85, "M", "Ꮅ"), + (0xAB86, "M", "Ꮆ"), + (0xAB87, "M", "Ꮇ"), + (0xAB88, "M", "Ꮈ"), + (0xAB89, "M", "Ꮉ"), + (0xAB8A, "M", "Ꮊ"), + (0xAB8B, "M", "Ꮋ"), + (0xAB8C, "M", "Ꮌ"), + (0xAB8D, "M", "Ꮍ"), + (0xAB8E, "M", "Ꮎ"), + (0xAB8F, "M", "Ꮏ"), + (0xAB90, "M", "Ꮐ"), + (0xAB91, "M", "Ꮑ"), + (0xAB92, "M", "Ꮒ"), + (0xAB93, "M", "Ꮓ"), + (0xAB94, "M", "Ꮔ"), + (0xAB95, "M", "Ꮕ"), + (0xAB96, "M", "Ꮖ"), + (0xAB97, "M", "Ꮗ"), + (0xAB98, "M", "Ꮘ"), + (0xAB99, "M", "Ꮙ"), + (0xAB9A, "M", "Ꮚ"), + (0xAB9B, "M", "Ꮛ"), + (0xAB9C, "M", "Ꮜ"), + (0xAB9D, "M", "Ꮝ"), + (0xAB9E, "M", "Ꮞ"), + (0xAB9F, "M", "Ꮟ"), + (0xABA0, "M", "Ꮠ"), + (0xABA1, "M", "Ꮡ"), + (0xABA2, "M", "Ꮢ"), + (0xABA3, "M", "Ꮣ"), + (0xABA4, "M", "Ꮤ"), + (0xABA5, "M", "Ꮥ"), + (0xABA6, "M", "Ꮦ"), + (0xABA7, "M", "Ꮧ"), + (0xABA8, "M", "Ꮨ"), + (0xABA9, "M", "Ꮩ"), + (0xABAA, "M", "Ꮪ"), + (0xABAB, "M", "Ꮫ"), + (0xABAC, "M", "Ꮬ"), + (0xABAD, "M", "Ꮭ"), + (0xABAE, "M", "Ꮮ"), + ] + + +def _seg_39() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xABAF, "M", "Ꮯ"), + (0xABB0, "M", "Ꮰ"), + (0xABB1, "M", "Ꮱ"), + (0xABB2, "M", "Ꮲ"), + (0xABB3, "M", "Ꮳ"), + (0xABB4, "M", "Ꮴ"), + (0xABB5, "M", "Ꮵ"), + (0xABB6, "M", "Ꮶ"), + (0xABB7, "M", "Ꮷ"), + (0xABB8, "M", "Ꮸ"), + (0xABB9, "M", "Ꮹ"), + (0xABBA, "M", "Ꮺ"), + (0xABBB, "M", "Ꮻ"), + (0xABBC, "M", "Ꮼ"), + (0xABBD, "M", "Ꮽ"), + (0xABBE, "M", "Ꮾ"), + (0xABBF, "M", "Ꮿ"), + (0xABC0, "V"), + (0xABEE, "X"), + (0xABF0, "V"), + (0xABFA, "X"), + (0xAC00, "V"), + (0xD7A4, "X"), + (0xD7B0, "V"), + (0xD7C7, "X"), + (0xD7CB, "V"), + (0xD7FC, "X"), + (0xF900, "M", "豈"), + (0xF901, "M", "更"), + (0xF902, "M", "車"), + (0xF903, "M", "賈"), + (0xF904, "M", "滑"), + (0xF905, "M", "串"), + (0xF906, "M", "句"), + (0xF907, "M", "龜"), + (0xF909, "M", "契"), + (0xF90A, "M", "金"), + (0xF90B, "M", "喇"), + (0xF90C, "M", "奈"), + (0xF90D, "M", "懶"), + (0xF90E, "M", "癩"), + (0xF90F, "M", "羅"), + (0xF910, "M", "蘿"), + (0xF911, "M", "螺"), + (0xF912, "M", "裸"), + (0xF913, "M", "邏"), + (0xF914, "M", "樂"), + (0xF915, "M", "洛"), + (0xF916, "M", "烙"), + (0xF917, "M", "珞"), + (0xF918, "M", "落"), + (0xF919, "M", "酪"), + (0xF91A, "M", "駱"), + (0xF91B, "M", "亂"), + (0xF91C, "M", "卵"), + (0xF91D, "M", "欄"), + (0xF91E, "M", "爛"), + (0xF91F, "M", "蘭"), + (0xF920, "M", "鸞"), + (0xF921, "M", "嵐"), + (0xF922, "M", "濫"), + (0xF923, "M", "藍"), + (0xF924, "M", "襤"), + (0xF925, "M", "拉"), + (0xF926, "M", "臘"), + (0xF927, "M", "蠟"), + (0xF928, "M", "廊"), + (0xF929, "M", "朗"), + (0xF92A, "M", "浪"), + (0xF92B, "M", "狼"), + (0xF92C, "M", "郎"), + (0xF92D, "M", "來"), + (0xF92E, "M", "冷"), + (0xF92F, "M", "勞"), + (0xF930, "M", "擄"), + (0xF931, "M", "櫓"), + (0xF932, "M", "爐"), + (0xF933, "M", "盧"), + (0xF934, "M", "老"), + (0xF935, "M", "蘆"), + (0xF936, "M", "虜"), + (0xF937, "M", "路"), + (0xF938, "M", "露"), + (0xF939, "M", "魯"), + (0xF93A, "M", "鷺"), + (0xF93B, "M", "碌"), + (0xF93C, "M", "祿"), + (0xF93D, "M", "綠"), + (0xF93E, "M", "菉"), + (0xF93F, "M", "錄"), + (0xF940, "M", "鹿"), + (0xF941, "M", "論"), + (0xF942, "M", "壟"), + (0xF943, "M", "弄"), + (0xF944, "M", "籠"), + (0xF945, "M", "聾"), + (0xF946, "M", "牢"), + (0xF947, "M", "磊"), + (0xF948, "M", "賂"), + (0xF949, "M", "雷"), + ] + + +def _seg_40() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xF94A, "M", "壘"), + (0xF94B, "M", "屢"), + (0xF94C, "M", "樓"), + (0xF94D, "M", "淚"), + (0xF94E, "M", "漏"), + (0xF94F, "M", "累"), + (0xF950, "M", "縷"), + (0xF951, "M", "陋"), + (0xF952, "M", "勒"), + (0xF953, "M", "肋"), + (0xF954, "M", "凜"), + (0xF955, "M", "凌"), + (0xF956, "M", "稜"), + (0xF957, "M", "綾"), + (0xF958, "M", "菱"), + (0xF959, "M", "陵"), + (0xF95A, "M", "讀"), + (0xF95B, "M", "拏"), + (0xF95C, "M", "樂"), + (0xF95D, "M", "諾"), + (0xF95E, "M", "丹"), + (0xF95F, "M", "寧"), + (0xF960, "M", "怒"), + (0xF961, "M", "率"), + (0xF962, "M", "異"), + (0xF963, "M", "北"), + (0xF964, "M", "磻"), + (0xF965, "M", "便"), + (0xF966, "M", "復"), + (0xF967, "M", "不"), + (0xF968, "M", "泌"), + (0xF969, "M", "數"), + (0xF96A, "M", "索"), + (0xF96B, "M", "參"), + (0xF96C, "M", "塞"), + (0xF96D, "M", "省"), + (0xF96E, "M", "葉"), + (0xF96F, "M", "說"), + (0xF970, "M", "殺"), + (0xF971, "M", "辰"), + (0xF972, "M", "沈"), + (0xF973, "M", "拾"), + (0xF974, "M", "若"), + (0xF975, "M", "掠"), + (0xF976, "M", "略"), + (0xF977, "M", "亮"), + (0xF978, "M", "兩"), + (0xF979, "M", "凉"), + (0xF97A, "M", "梁"), + (0xF97B, "M", "糧"), + (0xF97C, "M", "良"), + (0xF97D, "M", "諒"), + (0xF97E, "M", "量"), + (0xF97F, "M", "勵"), + (0xF980, "M", "呂"), + (0xF981, "M", "女"), + (0xF982, "M", "廬"), + (0xF983, "M", "旅"), + (0xF984, "M", "濾"), + (0xF985, "M", "礪"), + (0xF986, "M", "閭"), + (0xF987, "M", "驪"), + (0xF988, "M", "麗"), + (0xF989, "M", "黎"), + (0xF98A, "M", "力"), + (0xF98B, "M", "曆"), + (0xF98C, "M", "歷"), + (0xF98D, "M", "轢"), + (0xF98E, "M", "年"), + (0xF98F, "M", "憐"), + (0xF990, "M", "戀"), + (0xF991, "M", "撚"), + (0xF992, "M", "漣"), + (0xF993, "M", "煉"), + (0xF994, "M", "璉"), + (0xF995, "M", "秊"), + (0xF996, "M", "練"), + (0xF997, "M", "聯"), + (0xF998, "M", "輦"), + (0xF999, "M", "蓮"), + (0xF99A, "M", "連"), + (0xF99B, "M", "鍊"), + (0xF99C, "M", "列"), + (0xF99D, "M", "劣"), + (0xF99E, "M", "咽"), + (0xF99F, "M", "烈"), + (0xF9A0, "M", "裂"), + (0xF9A1, "M", "說"), + (0xF9A2, "M", "廉"), + (0xF9A3, "M", "念"), + (0xF9A4, "M", "捻"), + (0xF9A5, "M", "殮"), + (0xF9A6, "M", "簾"), + (0xF9A7, "M", "獵"), + (0xF9A8, "M", "令"), + (0xF9A9, "M", "囹"), + (0xF9AA, "M", "寧"), + (0xF9AB, "M", "嶺"), + (0xF9AC, "M", "怜"), + (0xF9AD, "M", "玲"), + ] + + +def _seg_41() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xF9AE, "M", "瑩"), + (0xF9AF, "M", "羚"), + (0xF9B0, "M", "聆"), + (0xF9B1, "M", "鈴"), + (0xF9B2, "M", "零"), + (0xF9B3, "M", "靈"), + (0xF9B4, "M", "領"), + (0xF9B5, "M", "例"), + (0xF9B6, "M", "禮"), + (0xF9B7, "M", "醴"), + (0xF9B8, "M", "隸"), + (0xF9B9, "M", "惡"), + (0xF9BA, "M", "了"), + (0xF9BB, "M", "僚"), + (0xF9BC, "M", "寮"), + (0xF9BD, "M", "尿"), + (0xF9BE, "M", "料"), + (0xF9BF, "M", "樂"), + (0xF9C0, "M", "燎"), + (0xF9C1, "M", "療"), + (0xF9C2, "M", "蓼"), + (0xF9C3, "M", "遼"), + (0xF9C4, "M", "龍"), + (0xF9C5, "M", "暈"), + (0xF9C6, "M", "阮"), + (0xF9C7, "M", "劉"), + (0xF9C8, "M", "杻"), + (0xF9C9, "M", "柳"), + (0xF9CA, "M", "流"), + (0xF9CB, "M", "溜"), + (0xF9CC, "M", "琉"), + (0xF9CD, "M", "留"), + (0xF9CE, "M", "硫"), + (0xF9CF, "M", "紐"), + (0xF9D0, "M", "類"), + (0xF9D1, "M", "六"), + (0xF9D2, "M", "戮"), + (0xF9D3, "M", "陸"), + (0xF9D4, "M", "倫"), + (0xF9D5, "M", "崙"), + (0xF9D6, "M", "淪"), + (0xF9D7, "M", "輪"), + (0xF9D8, "M", "律"), + (0xF9D9, "M", "慄"), + (0xF9DA, "M", "栗"), + (0xF9DB, "M", "率"), + (0xF9DC, "M", "隆"), + (0xF9DD, "M", "利"), + (0xF9DE, "M", "吏"), + (0xF9DF, "M", "履"), + (0xF9E0, "M", "易"), + (0xF9E1, "M", "李"), + (0xF9E2, "M", "梨"), + (0xF9E3, "M", "泥"), + (0xF9E4, "M", "理"), + (0xF9E5, "M", "痢"), + (0xF9E6, "M", "罹"), + (0xF9E7, "M", "裏"), + (0xF9E8, "M", "裡"), + (0xF9E9, "M", "里"), + (0xF9EA, "M", "離"), + (0xF9EB, "M", "匿"), + (0xF9EC, "M", "溺"), + (0xF9ED, "M", "吝"), + (0xF9EE, "M", "燐"), + (0xF9EF, "M", "璘"), + (0xF9F0, "M", "藺"), + (0xF9F1, "M", "隣"), + (0xF9F2, "M", "鱗"), + (0xF9F3, "M", "麟"), + (0xF9F4, "M", "林"), + (0xF9F5, "M", "淋"), + (0xF9F6, "M", "臨"), + (0xF9F7, "M", "立"), + (0xF9F8, "M", "笠"), + (0xF9F9, "M", "粒"), + (0xF9FA, "M", "狀"), + (0xF9FB, "M", "炙"), + (0xF9FC, "M", "識"), + (0xF9FD, "M", "什"), + (0xF9FE, "M", "茶"), + (0xF9FF, "M", "刺"), + (0xFA00, "M", "切"), + (0xFA01, "M", "度"), + (0xFA02, "M", "拓"), + (0xFA03, "M", "糖"), + (0xFA04, "M", "宅"), + (0xFA05, "M", "洞"), + (0xFA06, "M", "暴"), + (0xFA07, "M", "輻"), + (0xFA08, "M", "行"), + (0xFA09, "M", "降"), + (0xFA0A, "M", "見"), + (0xFA0B, "M", "廓"), + (0xFA0C, "M", "兀"), + (0xFA0D, "M", "嗀"), + (0xFA0E, "V"), + (0xFA10, "M", "塚"), + (0xFA11, "V"), + (0xFA12, "M", "晴"), + ] + + +def _seg_42() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFA13, "V"), + (0xFA15, "M", "凞"), + (0xFA16, "M", "猪"), + (0xFA17, "M", "益"), + (0xFA18, "M", "礼"), + (0xFA19, "M", "神"), + (0xFA1A, "M", "祥"), + (0xFA1B, "M", "福"), + (0xFA1C, "M", "靖"), + (0xFA1D, "M", "精"), + (0xFA1E, "M", "羽"), + (0xFA1F, "V"), + (0xFA20, "M", "蘒"), + (0xFA21, "V"), + (0xFA22, "M", "諸"), + (0xFA23, "V"), + (0xFA25, "M", "逸"), + (0xFA26, "M", "都"), + (0xFA27, "V"), + (0xFA2A, "M", "飯"), + (0xFA2B, "M", "飼"), + (0xFA2C, "M", "館"), + (0xFA2D, "M", "鶴"), + (0xFA2E, "M", "郞"), + (0xFA2F, "M", "隷"), + (0xFA30, "M", "侮"), + (0xFA31, "M", "僧"), + (0xFA32, "M", "免"), + (0xFA33, "M", "勉"), + (0xFA34, "M", "勤"), + (0xFA35, "M", "卑"), + (0xFA36, "M", "喝"), + (0xFA37, "M", "嘆"), + (0xFA38, "M", "器"), + (0xFA39, "M", "塀"), + (0xFA3A, "M", "墨"), + (0xFA3B, "M", "層"), + (0xFA3C, "M", "屮"), + (0xFA3D, "M", "悔"), + (0xFA3E, "M", "慨"), + (0xFA3F, "M", "憎"), + (0xFA40, "M", "懲"), + (0xFA41, "M", "敏"), + (0xFA42, "M", "既"), + (0xFA43, "M", "暑"), + (0xFA44, "M", "梅"), + (0xFA45, "M", "海"), + (0xFA46, "M", "渚"), + (0xFA47, "M", "漢"), + (0xFA48, "M", "煮"), + (0xFA49, "M", "爫"), + (0xFA4A, "M", "琢"), + (0xFA4B, "M", "碑"), + (0xFA4C, "M", "社"), + (0xFA4D, "M", "祉"), + (0xFA4E, "M", "祈"), + (0xFA4F, "M", "祐"), + (0xFA50, "M", "祖"), + (0xFA51, "M", "祝"), + (0xFA52, "M", "禍"), + (0xFA53, "M", "禎"), + (0xFA54, "M", "穀"), + (0xFA55, "M", "突"), + (0xFA56, "M", "節"), + (0xFA57, "M", "練"), + (0xFA58, "M", "縉"), + (0xFA59, "M", "繁"), + (0xFA5A, "M", "署"), + (0xFA5B, "M", "者"), + (0xFA5C, "M", "臭"), + (0xFA5D, "M", "艹"), + (0xFA5F, "M", "著"), + (0xFA60, "M", "褐"), + (0xFA61, "M", "視"), + (0xFA62, "M", "謁"), + (0xFA63, "M", "謹"), + (0xFA64, "M", "賓"), + (0xFA65, "M", "贈"), + (0xFA66, "M", "辶"), + (0xFA67, "M", "逸"), + (0xFA68, "M", "難"), + (0xFA69, "M", "響"), + (0xFA6A, "M", "頻"), + (0xFA6B, "M", "恵"), + (0xFA6C, "M", "𤋮"), + (0xFA6D, "M", "舘"), + (0xFA6E, "X"), + (0xFA70, "M", "並"), + (0xFA71, "M", "况"), + (0xFA72, "M", "全"), + (0xFA73, "M", "侀"), + (0xFA74, "M", "充"), + (0xFA75, "M", "冀"), + (0xFA76, "M", "勇"), + (0xFA77, "M", "勺"), + (0xFA78, "M", "喝"), + (0xFA79, "M", "啕"), + (0xFA7A, "M", "喙"), + (0xFA7B, "M", "嗢"), + (0xFA7C, "M", "塚"), + ] + + +def _seg_43() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFA7D, "M", "墳"), + (0xFA7E, "M", "奄"), + (0xFA7F, "M", "奔"), + (0xFA80, "M", "婢"), + (0xFA81, "M", "嬨"), + (0xFA82, "M", "廒"), + (0xFA83, "M", "廙"), + (0xFA84, "M", "彩"), + (0xFA85, "M", "徭"), + (0xFA86, "M", "惘"), + (0xFA87, "M", "慎"), + (0xFA88, "M", "愈"), + (0xFA89, "M", "憎"), + (0xFA8A, "M", "慠"), + (0xFA8B, "M", "懲"), + (0xFA8C, "M", "戴"), + (0xFA8D, "M", "揄"), + (0xFA8E, "M", "搜"), + (0xFA8F, "M", "摒"), + (0xFA90, "M", "敖"), + (0xFA91, "M", "晴"), + (0xFA92, "M", "朗"), + (0xFA93, "M", "望"), + (0xFA94, "M", "杖"), + (0xFA95, "M", "歹"), + (0xFA96, "M", "殺"), + (0xFA97, "M", "流"), + (0xFA98, "M", "滛"), + (0xFA99, "M", "滋"), + (0xFA9A, "M", "漢"), + (0xFA9B, "M", "瀞"), + (0xFA9C, "M", "煮"), + (0xFA9D, "M", "瞧"), + (0xFA9E, "M", "爵"), + (0xFA9F, "M", "犯"), + (0xFAA0, "M", "猪"), + (0xFAA1, "M", "瑱"), + (0xFAA2, "M", "甆"), + (0xFAA3, "M", "画"), + (0xFAA4, "M", "瘝"), + (0xFAA5, "M", "瘟"), + (0xFAA6, "M", "益"), + (0xFAA7, "M", "盛"), + (0xFAA8, "M", "直"), + (0xFAA9, "M", "睊"), + (0xFAAA, "M", "着"), + (0xFAAB, "M", "磌"), + (0xFAAC, "M", "窱"), + (0xFAAD, "M", "節"), + (0xFAAE, "M", "类"), + (0xFAAF, "M", "絛"), + (0xFAB0, "M", "練"), + (0xFAB1, "M", "缾"), + (0xFAB2, "M", "者"), + (0xFAB3, "M", "荒"), + (0xFAB4, "M", "華"), + (0xFAB5, "M", "蝹"), + (0xFAB6, "M", "襁"), + (0xFAB7, "M", "覆"), + (0xFAB8, "M", "視"), + (0xFAB9, "M", "調"), + (0xFABA, "M", "諸"), + (0xFABB, "M", "請"), + (0xFABC, "M", "謁"), + (0xFABD, "M", "諾"), + (0xFABE, "M", "諭"), + (0xFABF, "M", "謹"), + (0xFAC0, "M", "變"), + (0xFAC1, "M", "贈"), + (0xFAC2, "M", "輸"), + (0xFAC3, "M", "遲"), + (0xFAC4, "M", "醙"), + (0xFAC5, "M", "鉶"), + (0xFAC6, "M", "陼"), + (0xFAC7, "M", "難"), + (0xFAC8, "M", "靖"), + (0xFAC9, "M", "韛"), + (0xFACA, "M", "響"), + (0xFACB, "M", "頋"), + (0xFACC, "M", "頻"), + (0xFACD, "M", "鬒"), + (0xFACE, "M", "龜"), + (0xFACF, "M", "𢡊"), + (0xFAD0, "M", "𢡄"), + (0xFAD1, "M", "𣏕"), + (0xFAD2, "M", "㮝"), + (0xFAD3, "M", "䀘"), + (0xFAD4, "M", "䀹"), + (0xFAD5, "M", "𥉉"), + (0xFAD6, "M", "𥳐"), + (0xFAD7, "M", "𧻓"), + (0xFAD8, "M", "齃"), + (0xFAD9, "M", "龎"), + (0xFADA, "X"), + (0xFB00, "M", "ff"), + (0xFB01, "M", "fi"), + (0xFB02, "M", "fl"), + (0xFB03, "M", "ffi"), + (0xFB04, "M", "ffl"), + (0xFB05, "M", "st"), + ] + + +def _seg_44() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFB07, "X"), + (0xFB13, "M", "մն"), + (0xFB14, "M", "մե"), + (0xFB15, "M", "մի"), + (0xFB16, "M", "վն"), + (0xFB17, "M", "մխ"), + (0xFB18, "X"), + (0xFB1D, "M", "יִ"), + (0xFB1E, "V"), + (0xFB1F, "M", "ײַ"), + (0xFB20, "M", "ע"), + (0xFB21, "M", "א"), + (0xFB22, "M", "ד"), + (0xFB23, "M", "ה"), + (0xFB24, "M", "כ"), + (0xFB25, "M", "ל"), + (0xFB26, "M", "ם"), + (0xFB27, "M", "ר"), + (0xFB28, "M", "ת"), + (0xFB29, "3", "+"), + (0xFB2A, "M", "שׁ"), + (0xFB2B, "M", "שׂ"), + (0xFB2C, "M", "שּׁ"), + (0xFB2D, "M", "שּׂ"), + (0xFB2E, "M", "אַ"), + (0xFB2F, "M", "אָ"), + (0xFB30, "M", "אּ"), + (0xFB31, "M", "בּ"), + (0xFB32, "M", "גּ"), + (0xFB33, "M", "דּ"), + (0xFB34, "M", "הּ"), + (0xFB35, "M", "וּ"), + (0xFB36, "M", "זּ"), + (0xFB37, "X"), + (0xFB38, "M", "טּ"), + (0xFB39, "M", "יּ"), + (0xFB3A, "M", "ךּ"), + (0xFB3B, "M", "כּ"), + (0xFB3C, "M", "לּ"), + (0xFB3D, "X"), + (0xFB3E, "M", "מּ"), + (0xFB3F, "X"), + (0xFB40, "M", "נּ"), + (0xFB41, "M", "סּ"), + (0xFB42, "X"), + (0xFB43, "M", "ףּ"), + (0xFB44, "M", "פּ"), + (0xFB45, "X"), + (0xFB46, "M", "צּ"), + (0xFB47, "M", "קּ"), + (0xFB48, "M", "רּ"), + (0xFB49, "M", "שּ"), + (0xFB4A, "M", "תּ"), + (0xFB4B, "M", "וֹ"), + (0xFB4C, "M", "בֿ"), + (0xFB4D, "M", "כֿ"), + (0xFB4E, "M", "פֿ"), + (0xFB4F, "M", "אל"), + (0xFB50, "M", "ٱ"), + (0xFB52, "M", "ٻ"), + (0xFB56, "M", "پ"), + (0xFB5A, "M", "ڀ"), + (0xFB5E, "M", "ٺ"), + (0xFB62, "M", "ٿ"), + (0xFB66, "M", "ٹ"), + (0xFB6A, "M", "ڤ"), + (0xFB6E, "M", "ڦ"), + (0xFB72, "M", "ڄ"), + (0xFB76, "M", "ڃ"), + (0xFB7A, "M", "چ"), + (0xFB7E, "M", "ڇ"), + (0xFB82, "M", "ڍ"), + (0xFB84, "M", "ڌ"), + (0xFB86, "M", "ڎ"), + (0xFB88, "M", "ڈ"), + (0xFB8A, "M", "ژ"), + (0xFB8C, "M", "ڑ"), + (0xFB8E, "M", "ک"), + (0xFB92, "M", "گ"), + (0xFB96, "M", "ڳ"), + (0xFB9A, "M", "ڱ"), + (0xFB9E, "M", "ں"), + (0xFBA0, "M", "ڻ"), + (0xFBA4, "M", "ۀ"), + (0xFBA6, "M", "ہ"), + (0xFBAA, "M", "ھ"), + (0xFBAE, "M", "ے"), + (0xFBB0, "M", "ۓ"), + (0xFBB2, "V"), + (0xFBC3, "X"), + (0xFBD3, "M", "ڭ"), + (0xFBD7, "M", "ۇ"), + (0xFBD9, "M", "ۆ"), + (0xFBDB, "M", "ۈ"), + (0xFBDD, "M", "ۇٴ"), + (0xFBDE, "M", "ۋ"), + (0xFBE0, "M", "ۅ"), + (0xFBE2, "M", "ۉ"), + (0xFBE4, "M", "ې"), + (0xFBE8, "M", "ى"), + ] + + +def _seg_45() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFBEA, "M", "ئا"), + (0xFBEC, "M", "ئە"), + (0xFBEE, "M", "ئو"), + (0xFBF0, "M", "ئۇ"), + (0xFBF2, "M", "ئۆ"), + (0xFBF4, "M", "ئۈ"), + (0xFBF6, "M", "ئې"), + (0xFBF9, "M", "ئى"), + (0xFBFC, "M", "ی"), + (0xFC00, "M", "ئج"), + (0xFC01, "M", "ئح"), + (0xFC02, "M", "ئم"), + (0xFC03, "M", "ئى"), + (0xFC04, "M", "ئي"), + (0xFC05, "M", "بج"), + (0xFC06, "M", "بح"), + (0xFC07, "M", "بخ"), + (0xFC08, "M", "بم"), + (0xFC09, "M", "بى"), + (0xFC0A, "M", "بي"), + (0xFC0B, "M", "تج"), + (0xFC0C, "M", "تح"), + (0xFC0D, "M", "تخ"), + (0xFC0E, "M", "تم"), + (0xFC0F, "M", "تى"), + (0xFC10, "M", "تي"), + (0xFC11, "M", "ثج"), + (0xFC12, "M", "ثم"), + (0xFC13, "M", "ثى"), + (0xFC14, "M", "ثي"), + (0xFC15, "M", "جح"), + (0xFC16, "M", "جم"), + (0xFC17, "M", "حج"), + (0xFC18, "M", "حم"), + (0xFC19, "M", "خج"), + (0xFC1A, "M", "خح"), + (0xFC1B, "M", "خم"), + (0xFC1C, "M", "سج"), + (0xFC1D, "M", "سح"), + (0xFC1E, "M", "سخ"), + (0xFC1F, "M", "سم"), + (0xFC20, "M", "صح"), + (0xFC21, "M", "صم"), + (0xFC22, "M", "ضج"), + (0xFC23, "M", "ضح"), + (0xFC24, "M", "ضخ"), + (0xFC25, "M", "ضم"), + (0xFC26, "M", "طح"), + (0xFC27, "M", "طم"), + (0xFC28, "M", "ظم"), + (0xFC29, "M", "عج"), + (0xFC2A, "M", "عم"), + (0xFC2B, "M", "غج"), + (0xFC2C, "M", "غم"), + (0xFC2D, "M", "فج"), + (0xFC2E, "M", "فح"), + (0xFC2F, "M", "فخ"), + (0xFC30, "M", "فم"), + (0xFC31, "M", "فى"), + (0xFC32, "M", "في"), + (0xFC33, "M", "قح"), + (0xFC34, "M", "قم"), + (0xFC35, "M", "قى"), + (0xFC36, "M", "قي"), + (0xFC37, "M", "كا"), + (0xFC38, "M", "كج"), + (0xFC39, "M", "كح"), + (0xFC3A, "M", "كخ"), + (0xFC3B, "M", "كل"), + (0xFC3C, "M", "كم"), + (0xFC3D, "M", "كى"), + (0xFC3E, "M", "كي"), + (0xFC3F, "M", "لج"), + (0xFC40, "M", "لح"), + (0xFC41, "M", "لخ"), + (0xFC42, "M", "لم"), + (0xFC43, "M", "لى"), + (0xFC44, "M", "لي"), + (0xFC45, "M", "مج"), + (0xFC46, "M", "مح"), + (0xFC47, "M", "مخ"), + (0xFC48, "M", "مم"), + (0xFC49, "M", "مى"), + (0xFC4A, "M", "مي"), + (0xFC4B, "M", "نج"), + (0xFC4C, "M", "نح"), + (0xFC4D, "M", "نخ"), + (0xFC4E, "M", "نم"), + (0xFC4F, "M", "نى"), + (0xFC50, "M", "ني"), + (0xFC51, "M", "هج"), + (0xFC52, "M", "هم"), + (0xFC53, "M", "هى"), + (0xFC54, "M", "هي"), + (0xFC55, "M", "يج"), + (0xFC56, "M", "يح"), + (0xFC57, "M", "يخ"), + (0xFC58, "M", "يم"), + (0xFC59, "M", "يى"), + (0xFC5A, "M", "يي"), + ] + + +def _seg_46() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFC5B, "M", "ذٰ"), + (0xFC5C, "M", "رٰ"), + (0xFC5D, "M", "ىٰ"), + (0xFC5E, "3", " ٌّ"), + (0xFC5F, "3", " ٍّ"), + (0xFC60, "3", " َّ"), + (0xFC61, "3", " ُّ"), + (0xFC62, "3", " ِّ"), + (0xFC63, "3", " ّٰ"), + (0xFC64, "M", "ئر"), + (0xFC65, "M", "ئز"), + (0xFC66, "M", "ئم"), + (0xFC67, "M", "ئن"), + (0xFC68, "M", "ئى"), + (0xFC69, "M", "ئي"), + (0xFC6A, "M", "بر"), + (0xFC6B, "M", "بز"), + (0xFC6C, "M", "بم"), + (0xFC6D, "M", "بن"), + (0xFC6E, "M", "بى"), + (0xFC6F, "M", "بي"), + (0xFC70, "M", "تر"), + (0xFC71, "M", "تز"), + (0xFC72, "M", "تم"), + (0xFC73, "M", "تن"), + (0xFC74, "M", "تى"), + (0xFC75, "M", "تي"), + (0xFC76, "M", "ثر"), + (0xFC77, "M", "ثز"), + (0xFC78, "M", "ثم"), + (0xFC79, "M", "ثن"), + (0xFC7A, "M", "ثى"), + (0xFC7B, "M", "ثي"), + (0xFC7C, "M", "فى"), + (0xFC7D, "M", "في"), + (0xFC7E, "M", "قى"), + (0xFC7F, "M", "قي"), + (0xFC80, "M", "كا"), + (0xFC81, "M", "كل"), + (0xFC82, "M", "كم"), + (0xFC83, "M", "كى"), + (0xFC84, "M", "كي"), + (0xFC85, "M", "لم"), + (0xFC86, "M", "لى"), + (0xFC87, "M", "لي"), + (0xFC88, "M", "ما"), + (0xFC89, "M", "مم"), + (0xFC8A, "M", "نر"), + (0xFC8B, "M", "نز"), + (0xFC8C, "M", "نم"), + (0xFC8D, "M", "نن"), + (0xFC8E, "M", "نى"), + (0xFC8F, "M", "ني"), + (0xFC90, "M", "ىٰ"), + (0xFC91, "M", "ير"), + (0xFC92, "M", "يز"), + (0xFC93, "M", "يم"), + (0xFC94, "M", "ين"), + (0xFC95, "M", "يى"), + (0xFC96, "M", "يي"), + (0xFC97, "M", "ئج"), + (0xFC98, "M", "ئح"), + (0xFC99, "M", "ئخ"), + (0xFC9A, "M", "ئم"), + (0xFC9B, "M", "ئه"), + (0xFC9C, "M", "بج"), + (0xFC9D, "M", "بح"), + (0xFC9E, "M", "بخ"), + (0xFC9F, "M", "بم"), + (0xFCA0, "M", "به"), + (0xFCA1, "M", "تج"), + (0xFCA2, "M", "تح"), + (0xFCA3, "M", "تخ"), + (0xFCA4, "M", "تم"), + (0xFCA5, "M", "ته"), + (0xFCA6, "M", "ثم"), + (0xFCA7, "M", "جح"), + (0xFCA8, "M", "جم"), + (0xFCA9, "M", "حج"), + (0xFCAA, "M", "حم"), + (0xFCAB, "M", "خج"), + (0xFCAC, "M", "خم"), + (0xFCAD, "M", "سج"), + (0xFCAE, "M", "سح"), + (0xFCAF, "M", "سخ"), + (0xFCB0, "M", "سم"), + (0xFCB1, "M", "صح"), + (0xFCB2, "M", "صخ"), + (0xFCB3, "M", "صم"), + (0xFCB4, "M", "ضج"), + (0xFCB5, "M", "ضح"), + (0xFCB6, "M", "ضخ"), + (0xFCB7, "M", "ضم"), + (0xFCB8, "M", "طح"), + (0xFCB9, "M", "ظم"), + (0xFCBA, "M", "عج"), + (0xFCBB, "M", "عم"), + (0xFCBC, "M", "غج"), + (0xFCBD, "M", "غم"), + (0xFCBE, "M", "فج"), + ] + + +def _seg_47() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFCBF, "M", "فح"), + (0xFCC0, "M", "فخ"), + (0xFCC1, "M", "فم"), + (0xFCC2, "M", "قح"), + (0xFCC3, "M", "قم"), + (0xFCC4, "M", "كج"), + (0xFCC5, "M", "كح"), + (0xFCC6, "M", "كخ"), + (0xFCC7, "M", "كل"), + (0xFCC8, "M", "كم"), + (0xFCC9, "M", "لج"), + (0xFCCA, "M", "لح"), + (0xFCCB, "M", "لخ"), + (0xFCCC, "M", "لم"), + (0xFCCD, "M", "له"), + (0xFCCE, "M", "مج"), + (0xFCCF, "M", "مح"), + (0xFCD0, "M", "مخ"), + (0xFCD1, "M", "مم"), + (0xFCD2, "M", "نج"), + (0xFCD3, "M", "نح"), + (0xFCD4, "M", "نخ"), + (0xFCD5, "M", "نم"), + (0xFCD6, "M", "نه"), + (0xFCD7, "M", "هج"), + (0xFCD8, "M", "هم"), + (0xFCD9, "M", "هٰ"), + (0xFCDA, "M", "يج"), + (0xFCDB, "M", "يح"), + (0xFCDC, "M", "يخ"), + (0xFCDD, "M", "يم"), + (0xFCDE, "M", "يه"), + (0xFCDF, "M", "ئم"), + (0xFCE0, "M", "ئه"), + (0xFCE1, "M", "بم"), + (0xFCE2, "M", "به"), + (0xFCE3, "M", "تم"), + (0xFCE4, "M", "ته"), + (0xFCE5, "M", "ثم"), + (0xFCE6, "M", "ثه"), + (0xFCE7, "M", "سم"), + (0xFCE8, "M", "سه"), + (0xFCE9, "M", "شم"), + (0xFCEA, "M", "شه"), + (0xFCEB, "M", "كل"), + (0xFCEC, "M", "كم"), + (0xFCED, "M", "لم"), + (0xFCEE, "M", "نم"), + (0xFCEF, "M", "نه"), + (0xFCF0, "M", "يم"), + (0xFCF1, "M", "يه"), + (0xFCF2, "M", "ـَّ"), + (0xFCF3, "M", "ـُّ"), + (0xFCF4, "M", "ـِّ"), + (0xFCF5, "M", "طى"), + (0xFCF6, "M", "طي"), + (0xFCF7, "M", "عى"), + (0xFCF8, "M", "عي"), + (0xFCF9, "M", "غى"), + (0xFCFA, "M", "غي"), + (0xFCFB, "M", "سى"), + (0xFCFC, "M", "سي"), + (0xFCFD, "M", "شى"), + (0xFCFE, "M", "شي"), + (0xFCFF, "M", "حى"), + (0xFD00, "M", "حي"), + (0xFD01, "M", "جى"), + (0xFD02, "M", "جي"), + (0xFD03, "M", "خى"), + (0xFD04, "M", "خي"), + (0xFD05, "M", "صى"), + (0xFD06, "M", "صي"), + (0xFD07, "M", "ضى"), + (0xFD08, "M", "ضي"), + (0xFD09, "M", "شج"), + (0xFD0A, "M", "شح"), + (0xFD0B, "M", "شخ"), + (0xFD0C, "M", "شم"), + (0xFD0D, "M", "شر"), + (0xFD0E, "M", "سر"), + (0xFD0F, "M", "صر"), + (0xFD10, "M", "ضر"), + (0xFD11, "M", "طى"), + (0xFD12, "M", "طي"), + (0xFD13, "M", "عى"), + (0xFD14, "M", "عي"), + (0xFD15, "M", "غى"), + (0xFD16, "M", "غي"), + (0xFD17, "M", "سى"), + (0xFD18, "M", "سي"), + (0xFD19, "M", "شى"), + (0xFD1A, "M", "شي"), + (0xFD1B, "M", "حى"), + (0xFD1C, "M", "حي"), + (0xFD1D, "M", "جى"), + (0xFD1E, "M", "جي"), + (0xFD1F, "M", "خى"), + (0xFD20, "M", "خي"), + (0xFD21, "M", "صى"), + (0xFD22, "M", "صي"), + ] + + +def _seg_48() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFD23, "M", "ضى"), + (0xFD24, "M", "ضي"), + (0xFD25, "M", "شج"), + (0xFD26, "M", "شح"), + (0xFD27, "M", "شخ"), + (0xFD28, "M", "شم"), + (0xFD29, "M", "شر"), + (0xFD2A, "M", "سر"), + (0xFD2B, "M", "صر"), + (0xFD2C, "M", "ضر"), + (0xFD2D, "M", "شج"), + (0xFD2E, "M", "شح"), + (0xFD2F, "M", "شخ"), + (0xFD30, "M", "شم"), + (0xFD31, "M", "سه"), + (0xFD32, "M", "شه"), + (0xFD33, "M", "طم"), + (0xFD34, "M", "سج"), + (0xFD35, "M", "سح"), + (0xFD36, "M", "سخ"), + (0xFD37, "M", "شج"), + (0xFD38, "M", "شح"), + (0xFD39, "M", "شخ"), + (0xFD3A, "M", "طم"), + (0xFD3B, "M", "ظم"), + (0xFD3C, "M", "اً"), + (0xFD3E, "V"), + (0xFD50, "M", "تجم"), + (0xFD51, "M", "تحج"), + (0xFD53, "M", "تحم"), + (0xFD54, "M", "تخم"), + (0xFD55, "M", "تمج"), + (0xFD56, "M", "تمح"), + (0xFD57, "M", "تمخ"), + (0xFD58, "M", "جمح"), + (0xFD5A, "M", "حمي"), + (0xFD5B, "M", "حمى"), + (0xFD5C, "M", "سحج"), + (0xFD5D, "M", "سجح"), + (0xFD5E, "M", "سجى"), + (0xFD5F, "M", "سمح"), + (0xFD61, "M", "سمج"), + (0xFD62, "M", "سمم"), + (0xFD64, "M", "صحح"), + (0xFD66, "M", "صمم"), + (0xFD67, "M", "شحم"), + (0xFD69, "M", "شجي"), + (0xFD6A, "M", "شمخ"), + (0xFD6C, "M", "شمم"), + (0xFD6E, "M", "ضحى"), + (0xFD6F, "M", "ضخم"), + (0xFD71, "M", "طمح"), + (0xFD73, "M", "طمم"), + (0xFD74, "M", "طمي"), + (0xFD75, "M", "عجم"), + (0xFD76, "M", "عمم"), + (0xFD78, "M", "عمى"), + (0xFD79, "M", "غمم"), + (0xFD7A, "M", "غمي"), + (0xFD7B, "M", "غمى"), + (0xFD7C, "M", "فخم"), + (0xFD7E, "M", "قمح"), + (0xFD7F, "M", "قمم"), + (0xFD80, "M", "لحم"), + (0xFD81, "M", "لحي"), + (0xFD82, "M", "لحى"), + (0xFD83, "M", "لجج"), + (0xFD85, "M", "لخم"), + (0xFD87, "M", "لمح"), + (0xFD89, "M", "محج"), + (0xFD8A, "M", "محم"), + (0xFD8B, "M", "محي"), + (0xFD8C, "M", "مجح"), + (0xFD8D, "M", "مجم"), + (0xFD8E, "M", "مخج"), + (0xFD8F, "M", "مخم"), + (0xFD90, "X"), + (0xFD92, "M", "مجخ"), + (0xFD93, "M", "همج"), + (0xFD94, "M", "همم"), + (0xFD95, "M", "نحم"), + (0xFD96, "M", "نحى"), + (0xFD97, "M", "نجم"), + (0xFD99, "M", "نجى"), + (0xFD9A, "M", "نمي"), + (0xFD9B, "M", "نمى"), + (0xFD9C, "M", "يمم"), + (0xFD9E, "M", "بخي"), + (0xFD9F, "M", "تجي"), + (0xFDA0, "M", "تجى"), + (0xFDA1, "M", "تخي"), + (0xFDA2, "M", "تخى"), + (0xFDA3, "M", "تمي"), + (0xFDA4, "M", "تمى"), + (0xFDA5, "M", "جمي"), + (0xFDA6, "M", "جحى"), + (0xFDA7, "M", "جمى"), + (0xFDA8, "M", "سخى"), + (0xFDA9, "M", "صحي"), + (0xFDAA, "M", "شحي"), + ] + + +def _seg_49() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFDAB, "M", "ضحي"), + (0xFDAC, "M", "لجي"), + (0xFDAD, "M", "لمي"), + (0xFDAE, "M", "يحي"), + (0xFDAF, "M", "يجي"), + (0xFDB0, "M", "يمي"), + (0xFDB1, "M", "ممي"), + (0xFDB2, "M", "قمي"), + (0xFDB3, "M", "نحي"), + (0xFDB4, "M", "قمح"), + (0xFDB5, "M", "لحم"), + (0xFDB6, "M", "عمي"), + (0xFDB7, "M", "كمي"), + (0xFDB8, "M", "نجح"), + (0xFDB9, "M", "مخي"), + (0xFDBA, "M", "لجم"), + (0xFDBB, "M", "كمم"), + (0xFDBC, "M", "لجم"), + (0xFDBD, "M", "نجح"), + (0xFDBE, "M", "جحي"), + (0xFDBF, "M", "حجي"), + (0xFDC0, "M", "مجي"), + (0xFDC1, "M", "فمي"), + (0xFDC2, "M", "بحي"), + (0xFDC3, "M", "كمم"), + (0xFDC4, "M", "عجم"), + (0xFDC5, "M", "صمم"), + (0xFDC6, "M", "سخي"), + (0xFDC7, "M", "نجي"), + (0xFDC8, "X"), + (0xFDCF, "V"), + (0xFDD0, "X"), + (0xFDF0, "M", "صلے"), + (0xFDF1, "M", "قلے"), + (0xFDF2, "M", "الله"), + (0xFDF3, "M", "اكبر"), + (0xFDF4, "M", "محمد"), + (0xFDF5, "M", "صلعم"), + (0xFDF6, "M", "رسول"), + (0xFDF7, "M", "عليه"), + (0xFDF8, "M", "وسلم"), + (0xFDF9, "M", "صلى"), + (0xFDFA, "3", "صلى الله عليه وسلم"), + (0xFDFB, "3", "جل جلاله"), + (0xFDFC, "M", "ریال"), + (0xFDFD, "V"), + (0xFE00, "I"), + (0xFE10, "3", ","), + (0xFE11, "M", "、"), + (0xFE12, "X"), + (0xFE13, "3", ":"), + (0xFE14, "3", ";"), + (0xFE15, "3", "!"), + (0xFE16, "3", "?"), + (0xFE17, "M", "〖"), + (0xFE18, "M", "〗"), + (0xFE19, "X"), + (0xFE20, "V"), + (0xFE30, "X"), + (0xFE31, "M", "—"), + (0xFE32, "M", "–"), + (0xFE33, "3", "_"), + (0xFE35, "3", "("), + (0xFE36, "3", ")"), + (0xFE37, "3", "{"), + (0xFE38, "3", "}"), + (0xFE39, "M", "〔"), + (0xFE3A, "M", "〕"), + (0xFE3B, "M", "【"), + (0xFE3C, "M", "】"), + (0xFE3D, "M", "《"), + (0xFE3E, "M", "》"), + (0xFE3F, "M", "〈"), + (0xFE40, "M", "〉"), + (0xFE41, "M", "「"), + (0xFE42, "M", "」"), + (0xFE43, "M", "『"), + (0xFE44, "M", "』"), + (0xFE45, "V"), + (0xFE47, "3", "["), + (0xFE48, "3", "]"), + (0xFE49, "3", " ̅"), + (0xFE4D, "3", "_"), + (0xFE50, "3", ","), + (0xFE51, "M", "、"), + (0xFE52, "X"), + (0xFE54, "3", ";"), + (0xFE55, "3", ":"), + (0xFE56, "3", "?"), + (0xFE57, "3", "!"), + (0xFE58, "M", "—"), + (0xFE59, "3", "("), + (0xFE5A, "3", ")"), + (0xFE5B, "3", "{"), + (0xFE5C, "3", "}"), + (0xFE5D, "M", "〔"), + (0xFE5E, "M", "〕"), + (0xFE5F, "3", "#"), + (0xFE60, "3", "&"), + (0xFE61, "3", "*"), + ] + + +def _seg_50() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFE62, "3", "+"), + (0xFE63, "M", "-"), + (0xFE64, "3", "<"), + (0xFE65, "3", ">"), + (0xFE66, "3", "="), + (0xFE67, "X"), + (0xFE68, "3", "\\"), + (0xFE69, "3", "$"), + (0xFE6A, "3", "%"), + (0xFE6B, "3", "@"), + (0xFE6C, "X"), + (0xFE70, "3", " ً"), + (0xFE71, "M", "ـً"), + (0xFE72, "3", " ٌ"), + (0xFE73, "V"), + (0xFE74, "3", " ٍ"), + (0xFE75, "X"), + (0xFE76, "3", " َ"), + (0xFE77, "M", "ـَ"), + (0xFE78, "3", " ُ"), + (0xFE79, "M", "ـُ"), + (0xFE7A, "3", " ِ"), + (0xFE7B, "M", "ـِ"), + (0xFE7C, "3", " ّ"), + (0xFE7D, "M", "ـّ"), + (0xFE7E, "3", " ْ"), + (0xFE7F, "M", "ـْ"), + (0xFE80, "M", "ء"), + (0xFE81, "M", "آ"), + (0xFE83, "M", "أ"), + (0xFE85, "M", "ؤ"), + (0xFE87, "M", "إ"), + (0xFE89, "M", "ئ"), + (0xFE8D, "M", "ا"), + (0xFE8F, "M", "ب"), + (0xFE93, "M", "ة"), + (0xFE95, "M", "ت"), + (0xFE99, "M", "ث"), + (0xFE9D, "M", "ج"), + (0xFEA1, "M", "ح"), + (0xFEA5, "M", "خ"), + (0xFEA9, "M", "د"), + (0xFEAB, "M", "ذ"), + (0xFEAD, "M", "ر"), + (0xFEAF, "M", "ز"), + (0xFEB1, "M", "س"), + (0xFEB5, "M", "ش"), + (0xFEB9, "M", "ص"), + (0xFEBD, "M", "ض"), + (0xFEC1, "M", "ط"), + (0xFEC5, "M", "ظ"), + (0xFEC9, "M", "ع"), + (0xFECD, "M", "غ"), + (0xFED1, "M", "ف"), + (0xFED5, "M", "ق"), + (0xFED9, "M", "ك"), + (0xFEDD, "M", "ل"), + (0xFEE1, "M", "م"), + (0xFEE5, "M", "ن"), + (0xFEE9, "M", "ه"), + (0xFEED, "M", "و"), + (0xFEEF, "M", "ى"), + (0xFEF1, "M", "ي"), + (0xFEF5, "M", "لآ"), + (0xFEF7, "M", "لأ"), + (0xFEF9, "M", "لإ"), + (0xFEFB, "M", "لا"), + (0xFEFD, "X"), + (0xFEFF, "I"), + (0xFF00, "X"), + (0xFF01, "3", "!"), + (0xFF02, "3", '"'), + (0xFF03, "3", "#"), + (0xFF04, "3", "$"), + (0xFF05, "3", "%"), + (0xFF06, "3", "&"), + (0xFF07, "3", "'"), + (0xFF08, "3", "("), + (0xFF09, "3", ")"), + (0xFF0A, "3", "*"), + (0xFF0B, "3", "+"), + (0xFF0C, "3", ","), + (0xFF0D, "M", "-"), + (0xFF0E, "M", "."), + (0xFF0F, "3", "/"), + (0xFF10, "M", "0"), + (0xFF11, "M", "1"), + (0xFF12, "M", "2"), + (0xFF13, "M", "3"), + (0xFF14, "M", "4"), + (0xFF15, "M", "5"), + (0xFF16, "M", "6"), + (0xFF17, "M", "7"), + (0xFF18, "M", "8"), + (0xFF19, "M", "9"), + (0xFF1A, "3", ":"), + (0xFF1B, "3", ";"), + (0xFF1C, "3", "<"), + (0xFF1D, "3", "="), + (0xFF1E, "3", ">"), + ] + + +def _seg_51() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFF1F, "3", "?"), + (0xFF20, "3", "@"), + (0xFF21, "M", "a"), + (0xFF22, "M", "b"), + (0xFF23, "M", "c"), + (0xFF24, "M", "d"), + (0xFF25, "M", "e"), + (0xFF26, "M", "f"), + (0xFF27, "M", "g"), + (0xFF28, "M", "h"), + (0xFF29, "M", "i"), + (0xFF2A, "M", "j"), + (0xFF2B, "M", "k"), + (0xFF2C, "M", "l"), + (0xFF2D, "M", "m"), + (0xFF2E, "M", "n"), + (0xFF2F, "M", "o"), + (0xFF30, "M", "p"), + (0xFF31, "M", "q"), + (0xFF32, "M", "r"), + (0xFF33, "M", "s"), + (0xFF34, "M", "t"), + (0xFF35, "M", "u"), + (0xFF36, "M", "v"), + (0xFF37, "M", "w"), + (0xFF38, "M", "x"), + (0xFF39, "M", "y"), + (0xFF3A, "M", "z"), + (0xFF3B, "3", "["), + (0xFF3C, "3", "\\"), + (0xFF3D, "3", "]"), + (0xFF3E, "3", "^"), + (0xFF3F, "3", "_"), + (0xFF40, "3", "`"), + (0xFF41, "M", "a"), + (0xFF42, "M", "b"), + (0xFF43, "M", "c"), + (0xFF44, "M", "d"), + (0xFF45, "M", "e"), + (0xFF46, "M", "f"), + (0xFF47, "M", "g"), + (0xFF48, "M", "h"), + (0xFF49, "M", "i"), + (0xFF4A, "M", "j"), + (0xFF4B, "M", "k"), + (0xFF4C, "M", "l"), + (0xFF4D, "M", "m"), + (0xFF4E, "M", "n"), + (0xFF4F, "M", "o"), + (0xFF50, "M", "p"), + (0xFF51, "M", "q"), + (0xFF52, "M", "r"), + (0xFF53, "M", "s"), + (0xFF54, "M", "t"), + (0xFF55, "M", "u"), + (0xFF56, "M", "v"), + (0xFF57, "M", "w"), + (0xFF58, "M", "x"), + (0xFF59, "M", "y"), + (0xFF5A, "M", "z"), + (0xFF5B, "3", "{"), + (0xFF5C, "3", "|"), + (0xFF5D, "3", "}"), + (0xFF5E, "3", "~"), + (0xFF5F, "M", "⦅"), + (0xFF60, "M", "⦆"), + (0xFF61, "M", "."), + (0xFF62, "M", "「"), + (0xFF63, "M", "」"), + (0xFF64, "M", "、"), + (0xFF65, "M", "・"), + (0xFF66, "M", "ヲ"), + (0xFF67, "M", "ァ"), + (0xFF68, "M", "ィ"), + (0xFF69, "M", "ゥ"), + (0xFF6A, "M", "ェ"), + (0xFF6B, "M", "ォ"), + (0xFF6C, "M", "ャ"), + (0xFF6D, "M", "ュ"), + (0xFF6E, "M", "ョ"), + (0xFF6F, "M", "ッ"), + (0xFF70, "M", "ー"), + (0xFF71, "M", "ア"), + (0xFF72, "M", "イ"), + (0xFF73, "M", "ウ"), + (0xFF74, "M", "エ"), + (0xFF75, "M", "オ"), + (0xFF76, "M", "カ"), + (0xFF77, "M", "キ"), + (0xFF78, "M", "ク"), + (0xFF79, "M", "ケ"), + (0xFF7A, "M", "コ"), + (0xFF7B, "M", "サ"), + (0xFF7C, "M", "シ"), + (0xFF7D, "M", "ス"), + (0xFF7E, "M", "セ"), + (0xFF7F, "M", "ソ"), + (0xFF80, "M", "タ"), + (0xFF81, "M", "チ"), + (0xFF82, "M", "ツ"), + ] + + +def _seg_52() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFF83, "M", "テ"), + (0xFF84, "M", "ト"), + (0xFF85, "M", "ナ"), + (0xFF86, "M", "ニ"), + (0xFF87, "M", "ヌ"), + (0xFF88, "M", "ネ"), + (0xFF89, "M", "ノ"), + (0xFF8A, "M", "ハ"), + (0xFF8B, "M", "ヒ"), + (0xFF8C, "M", "フ"), + (0xFF8D, "M", "ヘ"), + (0xFF8E, "M", "ホ"), + (0xFF8F, "M", "マ"), + (0xFF90, "M", "ミ"), + (0xFF91, "M", "ム"), + (0xFF92, "M", "メ"), + (0xFF93, "M", "モ"), + (0xFF94, "M", "ヤ"), + (0xFF95, "M", "ユ"), + (0xFF96, "M", "ヨ"), + (0xFF97, "M", "ラ"), + (0xFF98, "M", "リ"), + (0xFF99, "M", "ル"), + (0xFF9A, "M", "レ"), + (0xFF9B, "M", "ロ"), + (0xFF9C, "M", "ワ"), + (0xFF9D, "M", "ン"), + (0xFF9E, "M", "゙"), + (0xFF9F, "M", "゚"), + (0xFFA0, "X"), + (0xFFA1, "M", "ᄀ"), + (0xFFA2, "M", "ᄁ"), + (0xFFA3, "M", "ᆪ"), + (0xFFA4, "M", "ᄂ"), + (0xFFA5, "M", "ᆬ"), + (0xFFA6, "M", "ᆭ"), + (0xFFA7, "M", "ᄃ"), + (0xFFA8, "M", "ᄄ"), + (0xFFA9, "M", "ᄅ"), + (0xFFAA, "M", "ᆰ"), + (0xFFAB, "M", "ᆱ"), + (0xFFAC, "M", "ᆲ"), + (0xFFAD, "M", "ᆳ"), + (0xFFAE, "M", "ᆴ"), + (0xFFAF, "M", "ᆵ"), + (0xFFB0, "M", "ᄚ"), + (0xFFB1, "M", "ᄆ"), + (0xFFB2, "M", "ᄇ"), + (0xFFB3, "M", "ᄈ"), + (0xFFB4, "M", "ᄡ"), + (0xFFB5, "M", "ᄉ"), + (0xFFB6, "M", "ᄊ"), + (0xFFB7, "M", "ᄋ"), + (0xFFB8, "M", "ᄌ"), + (0xFFB9, "M", "ᄍ"), + (0xFFBA, "M", "ᄎ"), + (0xFFBB, "M", "ᄏ"), + (0xFFBC, "M", "ᄐ"), + (0xFFBD, "M", "ᄑ"), + (0xFFBE, "M", "ᄒ"), + (0xFFBF, "X"), + (0xFFC2, "M", "ᅡ"), + (0xFFC3, "M", "ᅢ"), + (0xFFC4, "M", "ᅣ"), + (0xFFC5, "M", "ᅤ"), + (0xFFC6, "M", "ᅥ"), + (0xFFC7, "M", "ᅦ"), + (0xFFC8, "X"), + (0xFFCA, "M", "ᅧ"), + (0xFFCB, "M", "ᅨ"), + (0xFFCC, "M", "ᅩ"), + (0xFFCD, "M", "ᅪ"), + (0xFFCE, "M", "ᅫ"), + (0xFFCF, "M", "ᅬ"), + (0xFFD0, "X"), + (0xFFD2, "M", "ᅭ"), + (0xFFD3, "M", "ᅮ"), + (0xFFD4, "M", "ᅯ"), + (0xFFD5, "M", "ᅰ"), + (0xFFD6, "M", "ᅱ"), + (0xFFD7, "M", "ᅲ"), + (0xFFD8, "X"), + (0xFFDA, "M", "ᅳ"), + (0xFFDB, "M", "ᅴ"), + (0xFFDC, "M", "ᅵ"), + (0xFFDD, "X"), + (0xFFE0, "M", "¢"), + (0xFFE1, "M", "£"), + (0xFFE2, "M", "¬"), + (0xFFE3, "3", " ̄"), + (0xFFE4, "M", "¦"), + (0xFFE5, "M", "¥"), + (0xFFE6, "M", "₩"), + (0xFFE7, "X"), + (0xFFE8, "M", "│"), + (0xFFE9, "M", "←"), + (0xFFEA, "M", "↑"), + (0xFFEB, "M", "→"), + (0xFFEC, "M", "↓"), + (0xFFED, "M", "■"), + ] + + +def _seg_53() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFFEE, "M", "○"), + (0xFFEF, "X"), + (0x10000, "V"), + (0x1000C, "X"), + (0x1000D, "V"), + (0x10027, "X"), + (0x10028, "V"), + (0x1003B, "X"), + (0x1003C, "V"), + (0x1003E, "X"), + (0x1003F, "V"), + (0x1004E, "X"), + (0x10050, "V"), + (0x1005E, "X"), + (0x10080, "V"), + (0x100FB, "X"), + (0x10100, "V"), + (0x10103, "X"), + (0x10107, "V"), + (0x10134, "X"), + (0x10137, "V"), + (0x1018F, "X"), + (0x10190, "V"), + (0x1019D, "X"), + (0x101A0, "V"), + (0x101A1, "X"), + (0x101D0, "V"), + (0x101FE, "X"), + (0x10280, "V"), + (0x1029D, "X"), + (0x102A0, "V"), + (0x102D1, "X"), + (0x102E0, "V"), + (0x102FC, "X"), + (0x10300, "V"), + (0x10324, "X"), + (0x1032D, "V"), + (0x1034B, "X"), + (0x10350, "V"), + (0x1037B, "X"), + (0x10380, "V"), + (0x1039E, "X"), + (0x1039F, "V"), + (0x103C4, "X"), + (0x103C8, "V"), + (0x103D6, "X"), + (0x10400, "M", "𐐨"), + (0x10401, "M", "𐐩"), + (0x10402, "M", "𐐪"), + (0x10403, "M", "𐐫"), + (0x10404, "M", "𐐬"), + (0x10405, "M", "𐐭"), + (0x10406, "M", "𐐮"), + (0x10407, "M", "𐐯"), + (0x10408, "M", "𐐰"), + (0x10409, "M", "𐐱"), + (0x1040A, "M", "𐐲"), + (0x1040B, "M", "𐐳"), + (0x1040C, "M", "𐐴"), + (0x1040D, "M", "𐐵"), + (0x1040E, "M", "𐐶"), + (0x1040F, "M", "𐐷"), + (0x10410, "M", "𐐸"), + (0x10411, "M", "𐐹"), + (0x10412, "M", "𐐺"), + (0x10413, "M", "𐐻"), + (0x10414, "M", "𐐼"), + (0x10415, "M", "𐐽"), + (0x10416, "M", "𐐾"), + (0x10417, "M", "𐐿"), + (0x10418, "M", "𐑀"), + (0x10419, "M", "𐑁"), + (0x1041A, "M", "𐑂"), + (0x1041B, "M", "𐑃"), + (0x1041C, "M", "𐑄"), + (0x1041D, "M", "𐑅"), + (0x1041E, "M", "𐑆"), + (0x1041F, "M", "𐑇"), + (0x10420, "M", "𐑈"), + (0x10421, "M", "𐑉"), + (0x10422, "M", "𐑊"), + (0x10423, "M", "𐑋"), + (0x10424, "M", "𐑌"), + (0x10425, "M", "𐑍"), + (0x10426, "M", "𐑎"), + (0x10427, "M", "𐑏"), + (0x10428, "V"), + (0x1049E, "X"), + (0x104A0, "V"), + (0x104AA, "X"), + (0x104B0, "M", "𐓘"), + (0x104B1, "M", "𐓙"), + (0x104B2, "M", "𐓚"), + (0x104B3, "M", "𐓛"), + (0x104B4, "M", "𐓜"), + (0x104B5, "M", "𐓝"), + (0x104B6, "M", "𐓞"), + (0x104B7, "M", "𐓟"), + (0x104B8, "M", "𐓠"), + (0x104B9, "M", "𐓡"), + ] + + +def _seg_54() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x104BA, "M", "𐓢"), + (0x104BB, "M", "𐓣"), + (0x104BC, "M", "𐓤"), + (0x104BD, "M", "𐓥"), + (0x104BE, "M", "𐓦"), + (0x104BF, "M", "𐓧"), + (0x104C0, "M", "𐓨"), + (0x104C1, "M", "𐓩"), + (0x104C2, "M", "𐓪"), + (0x104C3, "M", "𐓫"), + (0x104C4, "M", "𐓬"), + (0x104C5, "M", "𐓭"), + (0x104C6, "M", "𐓮"), + (0x104C7, "M", "𐓯"), + (0x104C8, "M", "𐓰"), + (0x104C9, "M", "𐓱"), + (0x104CA, "M", "𐓲"), + (0x104CB, "M", "𐓳"), + (0x104CC, "M", "𐓴"), + (0x104CD, "M", "𐓵"), + (0x104CE, "M", "𐓶"), + (0x104CF, "M", "𐓷"), + (0x104D0, "M", "𐓸"), + (0x104D1, "M", "𐓹"), + (0x104D2, "M", "𐓺"), + (0x104D3, "M", "𐓻"), + (0x104D4, "X"), + (0x104D8, "V"), + (0x104FC, "X"), + (0x10500, "V"), + (0x10528, "X"), + (0x10530, "V"), + (0x10564, "X"), + (0x1056F, "V"), + (0x10570, "M", "𐖗"), + (0x10571, "M", "𐖘"), + (0x10572, "M", "𐖙"), + (0x10573, "M", "𐖚"), + (0x10574, "M", "𐖛"), + (0x10575, "M", "𐖜"), + (0x10576, "M", "𐖝"), + (0x10577, "M", "𐖞"), + (0x10578, "M", "𐖟"), + (0x10579, "M", "𐖠"), + (0x1057A, "M", "𐖡"), + (0x1057B, "X"), + (0x1057C, "M", "𐖣"), + (0x1057D, "M", "𐖤"), + (0x1057E, "M", "𐖥"), + (0x1057F, "M", "𐖦"), + (0x10580, "M", "𐖧"), + (0x10581, "M", "𐖨"), + (0x10582, "M", "𐖩"), + (0x10583, "M", "𐖪"), + (0x10584, "M", "𐖫"), + (0x10585, "M", "𐖬"), + (0x10586, "M", "𐖭"), + (0x10587, "M", "𐖮"), + (0x10588, "M", "𐖯"), + (0x10589, "M", "𐖰"), + (0x1058A, "M", "𐖱"), + (0x1058B, "X"), + (0x1058C, "M", "𐖳"), + (0x1058D, "M", "𐖴"), + (0x1058E, "M", "𐖵"), + (0x1058F, "M", "𐖶"), + (0x10590, "M", "𐖷"), + (0x10591, "M", "𐖸"), + (0x10592, "M", "𐖹"), + (0x10593, "X"), + (0x10594, "M", "𐖻"), + (0x10595, "M", "𐖼"), + (0x10596, "X"), + (0x10597, "V"), + (0x105A2, "X"), + (0x105A3, "V"), + (0x105B2, "X"), + (0x105B3, "V"), + (0x105BA, "X"), + (0x105BB, "V"), + (0x105BD, "X"), + (0x10600, "V"), + (0x10737, "X"), + (0x10740, "V"), + (0x10756, "X"), + (0x10760, "V"), + (0x10768, "X"), + (0x10780, "V"), + (0x10781, "M", "ː"), + (0x10782, "M", "ˑ"), + (0x10783, "M", "æ"), + (0x10784, "M", "ʙ"), + (0x10785, "M", "ɓ"), + (0x10786, "X"), + (0x10787, "M", "ʣ"), + (0x10788, "M", "ꭦ"), + (0x10789, "M", "ʥ"), + (0x1078A, "M", "ʤ"), + (0x1078B, "M", "ɖ"), + (0x1078C, "M", "ɗ"), + ] + + +def _seg_55() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1078D, "M", "ᶑ"), + (0x1078E, "M", "ɘ"), + (0x1078F, "M", "ɞ"), + (0x10790, "M", "ʩ"), + (0x10791, "M", "ɤ"), + (0x10792, "M", "ɢ"), + (0x10793, "M", "ɠ"), + (0x10794, "M", "ʛ"), + (0x10795, "M", "ħ"), + (0x10796, "M", "ʜ"), + (0x10797, "M", "ɧ"), + (0x10798, "M", "ʄ"), + (0x10799, "M", "ʪ"), + (0x1079A, "M", "ʫ"), + (0x1079B, "M", "ɬ"), + (0x1079C, "M", "𝼄"), + (0x1079D, "M", "ꞎ"), + (0x1079E, "M", "ɮ"), + (0x1079F, "M", "𝼅"), + (0x107A0, "M", "ʎ"), + (0x107A1, "M", "𝼆"), + (0x107A2, "M", "ø"), + (0x107A3, "M", "ɶ"), + (0x107A4, "M", "ɷ"), + (0x107A5, "M", "q"), + (0x107A6, "M", "ɺ"), + (0x107A7, "M", "𝼈"), + (0x107A8, "M", "ɽ"), + (0x107A9, "M", "ɾ"), + (0x107AA, "M", "ʀ"), + (0x107AB, "M", "ʨ"), + (0x107AC, "M", "ʦ"), + (0x107AD, "M", "ꭧ"), + (0x107AE, "M", "ʧ"), + (0x107AF, "M", "ʈ"), + (0x107B0, "M", "ⱱ"), + (0x107B1, "X"), + (0x107B2, "M", "ʏ"), + (0x107B3, "M", "ʡ"), + (0x107B4, "M", "ʢ"), + (0x107B5, "M", "ʘ"), + (0x107B6, "M", "ǀ"), + (0x107B7, "M", "ǁ"), + (0x107B8, "M", "ǂ"), + (0x107B9, "M", "𝼊"), + (0x107BA, "M", "𝼞"), + (0x107BB, "X"), + (0x10800, "V"), + (0x10806, "X"), + (0x10808, "V"), + (0x10809, "X"), + (0x1080A, "V"), + (0x10836, "X"), + (0x10837, "V"), + (0x10839, "X"), + (0x1083C, "V"), + (0x1083D, "X"), + (0x1083F, "V"), + (0x10856, "X"), + (0x10857, "V"), + (0x1089F, "X"), + (0x108A7, "V"), + (0x108B0, "X"), + (0x108E0, "V"), + (0x108F3, "X"), + (0x108F4, "V"), + (0x108F6, "X"), + (0x108FB, "V"), + (0x1091C, "X"), + (0x1091F, "V"), + (0x1093A, "X"), + (0x1093F, "V"), + (0x10940, "X"), + (0x10980, "V"), + (0x109B8, "X"), + (0x109BC, "V"), + (0x109D0, "X"), + (0x109D2, "V"), + (0x10A04, "X"), + (0x10A05, "V"), + (0x10A07, "X"), + (0x10A0C, "V"), + (0x10A14, "X"), + (0x10A15, "V"), + (0x10A18, "X"), + (0x10A19, "V"), + (0x10A36, "X"), + (0x10A38, "V"), + (0x10A3B, "X"), + (0x10A3F, "V"), + (0x10A49, "X"), + (0x10A50, "V"), + (0x10A59, "X"), + (0x10A60, "V"), + (0x10AA0, "X"), + (0x10AC0, "V"), + (0x10AE7, "X"), + (0x10AEB, "V"), + (0x10AF7, "X"), + (0x10B00, "V"), + ] + + +def _seg_56() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x10B36, "X"), + (0x10B39, "V"), + (0x10B56, "X"), + (0x10B58, "V"), + (0x10B73, "X"), + (0x10B78, "V"), + (0x10B92, "X"), + (0x10B99, "V"), + (0x10B9D, "X"), + (0x10BA9, "V"), + (0x10BB0, "X"), + (0x10C00, "V"), + (0x10C49, "X"), + (0x10C80, "M", "𐳀"), + (0x10C81, "M", "𐳁"), + (0x10C82, "M", "𐳂"), + (0x10C83, "M", "𐳃"), + (0x10C84, "M", "𐳄"), + (0x10C85, "M", "𐳅"), + (0x10C86, "M", "𐳆"), + (0x10C87, "M", "𐳇"), + (0x10C88, "M", "𐳈"), + (0x10C89, "M", "𐳉"), + (0x10C8A, "M", "𐳊"), + (0x10C8B, "M", "𐳋"), + (0x10C8C, "M", "𐳌"), + (0x10C8D, "M", "𐳍"), + (0x10C8E, "M", "𐳎"), + (0x10C8F, "M", "𐳏"), + (0x10C90, "M", "𐳐"), + (0x10C91, "M", "𐳑"), + (0x10C92, "M", "𐳒"), + (0x10C93, "M", "𐳓"), + (0x10C94, "M", "𐳔"), + (0x10C95, "M", "𐳕"), + (0x10C96, "M", "𐳖"), + (0x10C97, "M", "𐳗"), + (0x10C98, "M", "𐳘"), + (0x10C99, "M", "𐳙"), + (0x10C9A, "M", "𐳚"), + (0x10C9B, "M", "𐳛"), + (0x10C9C, "M", "𐳜"), + (0x10C9D, "M", "𐳝"), + (0x10C9E, "M", "𐳞"), + (0x10C9F, "M", "𐳟"), + (0x10CA0, "M", "𐳠"), + (0x10CA1, "M", "𐳡"), + (0x10CA2, "M", "𐳢"), + (0x10CA3, "M", "𐳣"), + (0x10CA4, "M", "𐳤"), + (0x10CA5, "M", "𐳥"), + (0x10CA6, "M", "𐳦"), + (0x10CA7, "M", "𐳧"), + (0x10CA8, "M", "𐳨"), + (0x10CA9, "M", "𐳩"), + (0x10CAA, "M", "𐳪"), + (0x10CAB, "M", "𐳫"), + (0x10CAC, "M", "𐳬"), + (0x10CAD, "M", "𐳭"), + (0x10CAE, "M", "𐳮"), + (0x10CAF, "M", "𐳯"), + (0x10CB0, "M", "𐳰"), + (0x10CB1, "M", "𐳱"), + (0x10CB2, "M", "𐳲"), + (0x10CB3, "X"), + (0x10CC0, "V"), + (0x10CF3, "X"), + (0x10CFA, "V"), + (0x10D28, "X"), + (0x10D30, "V"), + (0x10D3A, "X"), + (0x10E60, "V"), + (0x10E7F, "X"), + (0x10E80, "V"), + (0x10EAA, "X"), + (0x10EAB, "V"), + (0x10EAE, "X"), + (0x10EB0, "V"), + (0x10EB2, "X"), + (0x10EFD, "V"), + (0x10F28, "X"), + (0x10F30, "V"), + (0x10F5A, "X"), + (0x10F70, "V"), + (0x10F8A, "X"), + (0x10FB0, "V"), + (0x10FCC, "X"), + (0x10FE0, "V"), + (0x10FF7, "X"), + (0x11000, "V"), + (0x1104E, "X"), + (0x11052, "V"), + (0x11076, "X"), + (0x1107F, "V"), + (0x110BD, "X"), + (0x110BE, "V"), + (0x110C3, "X"), + (0x110D0, "V"), + (0x110E9, "X"), + (0x110F0, "V"), + ] + + +def _seg_57() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x110FA, "X"), + (0x11100, "V"), + (0x11135, "X"), + (0x11136, "V"), + (0x11148, "X"), + (0x11150, "V"), + (0x11177, "X"), + (0x11180, "V"), + (0x111E0, "X"), + (0x111E1, "V"), + (0x111F5, "X"), + (0x11200, "V"), + (0x11212, "X"), + (0x11213, "V"), + (0x11242, "X"), + (0x11280, "V"), + (0x11287, "X"), + (0x11288, "V"), + (0x11289, "X"), + (0x1128A, "V"), + (0x1128E, "X"), + (0x1128F, "V"), + (0x1129E, "X"), + (0x1129F, "V"), + (0x112AA, "X"), + (0x112B0, "V"), + (0x112EB, "X"), + (0x112F0, "V"), + (0x112FA, "X"), + (0x11300, "V"), + (0x11304, "X"), + (0x11305, "V"), + (0x1130D, "X"), + (0x1130F, "V"), + (0x11311, "X"), + (0x11313, "V"), + (0x11329, "X"), + (0x1132A, "V"), + (0x11331, "X"), + (0x11332, "V"), + (0x11334, "X"), + (0x11335, "V"), + (0x1133A, "X"), + (0x1133B, "V"), + (0x11345, "X"), + (0x11347, "V"), + (0x11349, "X"), + (0x1134B, "V"), + (0x1134E, "X"), + (0x11350, "V"), + (0x11351, "X"), + (0x11357, "V"), + (0x11358, "X"), + (0x1135D, "V"), + (0x11364, "X"), + (0x11366, "V"), + (0x1136D, "X"), + (0x11370, "V"), + (0x11375, "X"), + (0x11400, "V"), + (0x1145C, "X"), + (0x1145D, "V"), + (0x11462, "X"), + (0x11480, "V"), + (0x114C8, "X"), + (0x114D0, "V"), + (0x114DA, "X"), + (0x11580, "V"), + (0x115B6, "X"), + (0x115B8, "V"), + (0x115DE, "X"), + (0x11600, "V"), + (0x11645, "X"), + (0x11650, "V"), + (0x1165A, "X"), + (0x11660, "V"), + (0x1166D, "X"), + (0x11680, "V"), + (0x116BA, "X"), + (0x116C0, "V"), + (0x116CA, "X"), + (0x11700, "V"), + (0x1171B, "X"), + (0x1171D, "V"), + (0x1172C, "X"), + (0x11730, "V"), + (0x11747, "X"), + (0x11800, "V"), + (0x1183C, "X"), + (0x118A0, "M", "𑣀"), + (0x118A1, "M", "𑣁"), + (0x118A2, "M", "𑣂"), + (0x118A3, "M", "𑣃"), + (0x118A4, "M", "𑣄"), + (0x118A5, "M", "𑣅"), + (0x118A6, "M", "𑣆"), + (0x118A7, "M", "𑣇"), + (0x118A8, "M", "𑣈"), + (0x118A9, "M", "𑣉"), + (0x118AA, "M", "𑣊"), + ] + + +def _seg_58() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x118AB, "M", "𑣋"), + (0x118AC, "M", "𑣌"), + (0x118AD, "M", "𑣍"), + (0x118AE, "M", "𑣎"), + (0x118AF, "M", "𑣏"), + (0x118B0, "M", "𑣐"), + (0x118B1, "M", "𑣑"), + (0x118B2, "M", "𑣒"), + (0x118B3, "M", "𑣓"), + (0x118B4, "M", "𑣔"), + (0x118B5, "M", "𑣕"), + (0x118B6, "M", "𑣖"), + (0x118B7, "M", "𑣗"), + (0x118B8, "M", "𑣘"), + (0x118B9, "M", "𑣙"), + (0x118BA, "M", "𑣚"), + (0x118BB, "M", "𑣛"), + (0x118BC, "M", "𑣜"), + (0x118BD, "M", "𑣝"), + (0x118BE, "M", "𑣞"), + (0x118BF, "M", "𑣟"), + (0x118C0, "V"), + (0x118F3, "X"), + (0x118FF, "V"), + (0x11907, "X"), + (0x11909, "V"), + (0x1190A, "X"), + (0x1190C, "V"), + (0x11914, "X"), + (0x11915, "V"), + (0x11917, "X"), + (0x11918, "V"), + (0x11936, "X"), + (0x11937, "V"), + (0x11939, "X"), + (0x1193B, "V"), + (0x11947, "X"), + (0x11950, "V"), + (0x1195A, "X"), + (0x119A0, "V"), + (0x119A8, "X"), + (0x119AA, "V"), + (0x119D8, "X"), + (0x119DA, "V"), + (0x119E5, "X"), + (0x11A00, "V"), + (0x11A48, "X"), + (0x11A50, "V"), + (0x11AA3, "X"), + (0x11AB0, "V"), + (0x11AF9, "X"), + (0x11B00, "V"), + (0x11B0A, "X"), + (0x11C00, "V"), + (0x11C09, "X"), + (0x11C0A, "V"), + (0x11C37, "X"), + (0x11C38, "V"), + (0x11C46, "X"), + (0x11C50, "V"), + (0x11C6D, "X"), + (0x11C70, "V"), + (0x11C90, "X"), + (0x11C92, "V"), + (0x11CA8, "X"), + (0x11CA9, "V"), + (0x11CB7, "X"), + (0x11D00, "V"), + (0x11D07, "X"), + (0x11D08, "V"), + (0x11D0A, "X"), + (0x11D0B, "V"), + (0x11D37, "X"), + (0x11D3A, "V"), + (0x11D3B, "X"), + (0x11D3C, "V"), + (0x11D3E, "X"), + (0x11D3F, "V"), + (0x11D48, "X"), + (0x11D50, "V"), + (0x11D5A, "X"), + (0x11D60, "V"), + (0x11D66, "X"), + (0x11D67, "V"), + (0x11D69, "X"), + (0x11D6A, "V"), + (0x11D8F, "X"), + (0x11D90, "V"), + (0x11D92, "X"), + (0x11D93, "V"), + (0x11D99, "X"), + (0x11DA0, "V"), + (0x11DAA, "X"), + (0x11EE0, "V"), + (0x11EF9, "X"), + (0x11F00, "V"), + (0x11F11, "X"), + (0x11F12, "V"), + (0x11F3B, "X"), + (0x11F3E, "V"), + ] + + +def _seg_59() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x11F5A, "X"), + (0x11FB0, "V"), + (0x11FB1, "X"), + (0x11FC0, "V"), + (0x11FF2, "X"), + (0x11FFF, "V"), + (0x1239A, "X"), + (0x12400, "V"), + (0x1246F, "X"), + (0x12470, "V"), + (0x12475, "X"), + (0x12480, "V"), + (0x12544, "X"), + (0x12F90, "V"), + (0x12FF3, "X"), + (0x13000, "V"), + (0x13430, "X"), + (0x13440, "V"), + (0x13456, "X"), + (0x14400, "V"), + (0x14647, "X"), + (0x16800, "V"), + (0x16A39, "X"), + (0x16A40, "V"), + (0x16A5F, "X"), + (0x16A60, "V"), + (0x16A6A, "X"), + (0x16A6E, "V"), + (0x16ABF, "X"), + (0x16AC0, "V"), + (0x16ACA, "X"), + (0x16AD0, "V"), + (0x16AEE, "X"), + (0x16AF0, "V"), + (0x16AF6, "X"), + (0x16B00, "V"), + (0x16B46, "X"), + (0x16B50, "V"), + (0x16B5A, "X"), + (0x16B5B, "V"), + (0x16B62, "X"), + (0x16B63, "V"), + (0x16B78, "X"), + (0x16B7D, "V"), + (0x16B90, "X"), + (0x16E40, "M", "𖹠"), + (0x16E41, "M", "𖹡"), + (0x16E42, "M", "𖹢"), + (0x16E43, "M", "𖹣"), + (0x16E44, "M", "𖹤"), + (0x16E45, "M", "𖹥"), + (0x16E46, "M", "𖹦"), + (0x16E47, "M", "𖹧"), + (0x16E48, "M", "𖹨"), + (0x16E49, "M", "𖹩"), + (0x16E4A, "M", "𖹪"), + (0x16E4B, "M", "𖹫"), + (0x16E4C, "M", "𖹬"), + (0x16E4D, "M", "𖹭"), + (0x16E4E, "M", "𖹮"), + (0x16E4F, "M", "𖹯"), + (0x16E50, "M", "𖹰"), + (0x16E51, "M", "𖹱"), + (0x16E52, "M", "𖹲"), + (0x16E53, "M", "𖹳"), + (0x16E54, "M", "𖹴"), + (0x16E55, "M", "𖹵"), + (0x16E56, "M", "𖹶"), + (0x16E57, "M", "𖹷"), + (0x16E58, "M", "𖹸"), + (0x16E59, "M", "𖹹"), + (0x16E5A, "M", "𖹺"), + (0x16E5B, "M", "𖹻"), + (0x16E5C, "M", "𖹼"), + (0x16E5D, "M", "𖹽"), + (0x16E5E, "M", "𖹾"), + (0x16E5F, "M", "𖹿"), + (0x16E60, "V"), + (0x16E9B, "X"), + (0x16F00, "V"), + (0x16F4B, "X"), + (0x16F4F, "V"), + (0x16F88, "X"), + (0x16F8F, "V"), + (0x16FA0, "X"), + (0x16FE0, "V"), + (0x16FE5, "X"), + (0x16FF0, "V"), + (0x16FF2, "X"), + (0x17000, "V"), + (0x187F8, "X"), + (0x18800, "V"), + (0x18CD6, "X"), + (0x18D00, "V"), + (0x18D09, "X"), + (0x1AFF0, "V"), + (0x1AFF4, "X"), + (0x1AFF5, "V"), + (0x1AFFC, "X"), + (0x1AFFD, "V"), + ] + + +def _seg_60() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1AFFF, "X"), + (0x1B000, "V"), + (0x1B123, "X"), + (0x1B132, "V"), + (0x1B133, "X"), + (0x1B150, "V"), + (0x1B153, "X"), + (0x1B155, "V"), + (0x1B156, "X"), + (0x1B164, "V"), + (0x1B168, "X"), + (0x1B170, "V"), + (0x1B2FC, "X"), + (0x1BC00, "V"), + (0x1BC6B, "X"), + (0x1BC70, "V"), + (0x1BC7D, "X"), + (0x1BC80, "V"), + (0x1BC89, "X"), + (0x1BC90, "V"), + (0x1BC9A, "X"), + (0x1BC9C, "V"), + (0x1BCA0, "I"), + (0x1BCA4, "X"), + (0x1CF00, "V"), + (0x1CF2E, "X"), + (0x1CF30, "V"), + (0x1CF47, "X"), + (0x1CF50, "V"), + (0x1CFC4, "X"), + (0x1D000, "V"), + (0x1D0F6, "X"), + (0x1D100, "V"), + (0x1D127, "X"), + (0x1D129, "V"), + (0x1D15E, "M", "𝅗𝅥"), + (0x1D15F, "M", "𝅘𝅥"), + (0x1D160, "M", "𝅘𝅥𝅮"), + (0x1D161, "M", "𝅘𝅥𝅯"), + (0x1D162, "M", "𝅘𝅥𝅰"), + (0x1D163, "M", "𝅘𝅥𝅱"), + (0x1D164, "M", "𝅘𝅥𝅲"), + (0x1D165, "V"), + (0x1D173, "X"), + (0x1D17B, "V"), + (0x1D1BB, "M", "𝆹𝅥"), + (0x1D1BC, "M", "𝆺𝅥"), + (0x1D1BD, "M", "𝆹𝅥𝅮"), + (0x1D1BE, "M", "𝆺𝅥𝅮"), + (0x1D1BF, "M", "𝆹𝅥𝅯"), + (0x1D1C0, "M", "𝆺𝅥𝅯"), + (0x1D1C1, "V"), + (0x1D1EB, "X"), + (0x1D200, "V"), + (0x1D246, "X"), + (0x1D2C0, "V"), + (0x1D2D4, "X"), + (0x1D2E0, "V"), + (0x1D2F4, "X"), + (0x1D300, "V"), + (0x1D357, "X"), + (0x1D360, "V"), + (0x1D379, "X"), + (0x1D400, "M", "a"), + (0x1D401, "M", "b"), + (0x1D402, "M", "c"), + (0x1D403, "M", "d"), + (0x1D404, "M", "e"), + (0x1D405, "M", "f"), + (0x1D406, "M", "g"), + (0x1D407, "M", "h"), + (0x1D408, "M", "i"), + (0x1D409, "M", "j"), + (0x1D40A, "M", "k"), + (0x1D40B, "M", "l"), + (0x1D40C, "M", "m"), + (0x1D40D, "M", "n"), + (0x1D40E, "M", "o"), + (0x1D40F, "M", "p"), + (0x1D410, "M", "q"), + (0x1D411, "M", "r"), + (0x1D412, "M", "s"), + (0x1D413, "M", "t"), + (0x1D414, "M", "u"), + (0x1D415, "M", "v"), + (0x1D416, "M", "w"), + (0x1D417, "M", "x"), + (0x1D418, "M", "y"), + (0x1D419, "M", "z"), + (0x1D41A, "M", "a"), + (0x1D41B, "M", "b"), + (0x1D41C, "M", "c"), + (0x1D41D, "M", "d"), + (0x1D41E, "M", "e"), + (0x1D41F, "M", "f"), + (0x1D420, "M", "g"), + (0x1D421, "M", "h"), + (0x1D422, "M", "i"), + (0x1D423, "M", "j"), + (0x1D424, "M", "k"), + ] + + +def _seg_61() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D425, "M", "l"), + (0x1D426, "M", "m"), + (0x1D427, "M", "n"), + (0x1D428, "M", "o"), + (0x1D429, "M", "p"), + (0x1D42A, "M", "q"), + (0x1D42B, "M", "r"), + (0x1D42C, "M", "s"), + (0x1D42D, "M", "t"), + (0x1D42E, "M", "u"), + (0x1D42F, "M", "v"), + (0x1D430, "M", "w"), + (0x1D431, "M", "x"), + (0x1D432, "M", "y"), + (0x1D433, "M", "z"), + (0x1D434, "M", "a"), + (0x1D435, "M", "b"), + (0x1D436, "M", "c"), + (0x1D437, "M", "d"), + (0x1D438, "M", "e"), + (0x1D439, "M", "f"), + (0x1D43A, "M", "g"), + (0x1D43B, "M", "h"), + (0x1D43C, "M", "i"), + (0x1D43D, "M", "j"), + (0x1D43E, "M", "k"), + (0x1D43F, "M", "l"), + (0x1D440, "M", "m"), + (0x1D441, "M", "n"), + (0x1D442, "M", "o"), + (0x1D443, "M", "p"), + (0x1D444, "M", "q"), + (0x1D445, "M", "r"), + (0x1D446, "M", "s"), + (0x1D447, "M", "t"), + (0x1D448, "M", "u"), + (0x1D449, "M", "v"), + (0x1D44A, "M", "w"), + (0x1D44B, "M", "x"), + (0x1D44C, "M", "y"), + (0x1D44D, "M", "z"), + (0x1D44E, "M", "a"), + (0x1D44F, "M", "b"), + (0x1D450, "M", "c"), + (0x1D451, "M", "d"), + (0x1D452, "M", "e"), + (0x1D453, "M", "f"), + (0x1D454, "M", "g"), + (0x1D455, "X"), + (0x1D456, "M", "i"), + (0x1D457, "M", "j"), + (0x1D458, "M", "k"), + (0x1D459, "M", "l"), + (0x1D45A, "M", "m"), + (0x1D45B, "M", "n"), + (0x1D45C, "M", "o"), + (0x1D45D, "M", "p"), + (0x1D45E, "M", "q"), + (0x1D45F, "M", "r"), + (0x1D460, "M", "s"), + (0x1D461, "M", "t"), + (0x1D462, "M", "u"), + (0x1D463, "M", "v"), + (0x1D464, "M", "w"), + (0x1D465, "M", "x"), + (0x1D466, "M", "y"), + (0x1D467, "M", "z"), + (0x1D468, "M", "a"), + (0x1D469, "M", "b"), + (0x1D46A, "M", "c"), + (0x1D46B, "M", "d"), + (0x1D46C, "M", "e"), + (0x1D46D, "M", "f"), + (0x1D46E, "M", "g"), + (0x1D46F, "M", "h"), + (0x1D470, "M", "i"), + (0x1D471, "M", "j"), + (0x1D472, "M", "k"), + (0x1D473, "M", "l"), + (0x1D474, "M", "m"), + (0x1D475, "M", "n"), + (0x1D476, "M", "o"), + (0x1D477, "M", "p"), + (0x1D478, "M", "q"), + (0x1D479, "M", "r"), + (0x1D47A, "M", "s"), + (0x1D47B, "M", "t"), + (0x1D47C, "M", "u"), + (0x1D47D, "M", "v"), + (0x1D47E, "M", "w"), + (0x1D47F, "M", "x"), + (0x1D480, "M", "y"), + (0x1D481, "M", "z"), + (0x1D482, "M", "a"), + (0x1D483, "M", "b"), + (0x1D484, "M", "c"), + (0x1D485, "M", "d"), + (0x1D486, "M", "e"), + (0x1D487, "M", "f"), + (0x1D488, "M", "g"), + ] + + +def _seg_62() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D489, "M", "h"), + (0x1D48A, "M", "i"), + (0x1D48B, "M", "j"), + (0x1D48C, "M", "k"), + (0x1D48D, "M", "l"), + (0x1D48E, "M", "m"), + (0x1D48F, "M", "n"), + (0x1D490, "M", "o"), + (0x1D491, "M", "p"), + (0x1D492, "M", "q"), + (0x1D493, "M", "r"), + (0x1D494, "M", "s"), + (0x1D495, "M", "t"), + (0x1D496, "M", "u"), + (0x1D497, "M", "v"), + (0x1D498, "M", "w"), + (0x1D499, "M", "x"), + (0x1D49A, "M", "y"), + (0x1D49B, "M", "z"), + (0x1D49C, "M", "a"), + (0x1D49D, "X"), + (0x1D49E, "M", "c"), + (0x1D49F, "M", "d"), + (0x1D4A0, "X"), + (0x1D4A2, "M", "g"), + (0x1D4A3, "X"), + (0x1D4A5, "M", "j"), + (0x1D4A6, "M", "k"), + (0x1D4A7, "X"), + (0x1D4A9, "M", "n"), + (0x1D4AA, "M", "o"), + (0x1D4AB, "M", "p"), + (0x1D4AC, "M", "q"), + (0x1D4AD, "X"), + (0x1D4AE, "M", "s"), + (0x1D4AF, "M", "t"), + (0x1D4B0, "M", "u"), + (0x1D4B1, "M", "v"), + (0x1D4B2, "M", "w"), + (0x1D4B3, "M", "x"), + (0x1D4B4, "M", "y"), + (0x1D4B5, "M", "z"), + (0x1D4B6, "M", "a"), + (0x1D4B7, "M", "b"), + (0x1D4B8, "M", "c"), + (0x1D4B9, "M", "d"), + (0x1D4BA, "X"), + (0x1D4BB, "M", "f"), + (0x1D4BC, "X"), + (0x1D4BD, "M", "h"), + (0x1D4BE, "M", "i"), + (0x1D4BF, "M", "j"), + (0x1D4C0, "M", "k"), + (0x1D4C1, "M", "l"), + (0x1D4C2, "M", "m"), + (0x1D4C3, "M", "n"), + (0x1D4C4, "X"), + (0x1D4C5, "M", "p"), + (0x1D4C6, "M", "q"), + (0x1D4C7, "M", "r"), + (0x1D4C8, "M", "s"), + (0x1D4C9, "M", "t"), + (0x1D4CA, "M", "u"), + (0x1D4CB, "M", "v"), + (0x1D4CC, "M", "w"), + (0x1D4CD, "M", "x"), + (0x1D4CE, "M", "y"), + (0x1D4CF, "M", "z"), + (0x1D4D0, "M", "a"), + (0x1D4D1, "M", "b"), + (0x1D4D2, "M", "c"), + (0x1D4D3, "M", "d"), + (0x1D4D4, "M", "e"), + (0x1D4D5, "M", "f"), + (0x1D4D6, "M", "g"), + (0x1D4D7, "M", "h"), + (0x1D4D8, "M", "i"), + (0x1D4D9, "M", "j"), + (0x1D4DA, "M", "k"), + (0x1D4DB, "M", "l"), + (0x1D4DC, "M", "m"), + (0x1D4DD, "M", "n"), + (0x1D4DE, "M", "o"), + (0x1D4DF, "M", "p"), + (0x1D4E0, "M", "q"), + (0x1D4E1, "M", "r"), + (0x1D4E2, "M", "s"), + (0x1D4E3, "M", "t"), + (0x1D4E4, "M", "u"), + (0x1D4E5, "M", "v"), + (0x1D4E6, "M", "w"), + (0x1D4E7, "M", "x"), + (0x1D4E8, "M", "y"), + (0x1D4E9, "M", "z"), + (0x1D4EA, "M", "a"), + (0x1D4EB, "M", "b"), + (0x1D4EC, "M", "c"), + (0x1D4ED, "M", "d"), + (0x1D4EE, "M", "e"), + (0x1D4EF, "M", "f"), + ] + + +def _seg_63() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D4F0, "M", "g"), + (0x1D4F1, "M", "h"), + (0x1D4F2, "M", "i"), + (0x1D4F3, "M", "j"), + (0x1D4F4, "M", "k"), + (0x1D4F5, "M", "l"), + (0x1D4F6, "M", "m"), + (0x1D4F7, "M", "n"), + (0x1D4F8, "M", "o"), + (0x1D4F9, "M", "p"), + (0x1D4FA, "M", "q"), + (0x1D4FB, "M", "r"), + (0x1D4FC, "M", "s"), + (0x1D4FD, "M", "t"), + (0x1D4FE, "M", "u"), + (0x1D4FF, "M", "v"), + (0x1D500, "M", "w"), + (0x1D501, "M", "x"), + (0x1D502, "M", "y"), + (0x1D503, "M", "z"), + (0x1D504, "M", "a"), + (0x1D505, "M", "b"), + (0x1D506, "X"), + (0x1D507, "M", "d"), + (0x1D508, "M", "e"), + (0x1D509, "M", "f"), + (0x1D50A, "M", "g"), + (0x1D50B, "X"), + (0x1D50D, "M", "j"), + (0x1D50E, "M", "k"), + (0x1D50F, "M", "l"), + (0x1D510, "M", "m"), + (0x1D511, "M", "n"), + (0x1D512, "M", "o"), + (0x1D513, "M", "p"), + (0x1D514, "M", "q"), + (0x1D515, "X"), + (0x1D516, "M", "s"), + (0x1D517, "M", "t"), + (0x1D518, "M", "u"), + (0x1D519, "M", "v"), + (0x1D51A, "M", "w"), + (0x1D51B, "M", "x"), + (0x1D51C, "M", "y"), + (0x1D51D, "X"), + (0x1D51E, "M", "a"), + (0x1D51F, "M", "b"), + (0x1D520, "M", "c"), + (0x1D521, "M", "d"), + (0x1D522, "M", "e"), + (0x1D523, "M", "f"), + (0x1D524, "M", "g"), + (0x1D525, "M", "h"), + (0x1D526, "M", "i"), + (0x1D527, "M", "j"), + (0x1D528, "M", "k"), + (0x1D529, "M", "l"), + (0x1D52A, "M", "m"), + (0x1D52B, "M", "n"), + (0x1D52C, "M", "o"), + (0x1D52D, "M", "p"), + (0x1D52E, "M", "q"), + (0x1D52F, "M", "r"), + (0x1D530, "M", "s"), + (0x1D531, "M", "t"), + (0x1D532, "M", "u"), + (0x1D533, "M", "v"), + (0x1D534, "M", "w"), + (0x1D535, "M", "x"), + (0x1D536, "M", "y"), + (0x1D537, "M", "z"), + (0x1D538, "M", "a"), + (0x1D539, "M", "b"), + (0x1D53A, "X"), + (0x1D53B, "M", "d"), + (0x1D53C, "M", "e"), + (0x1D53D, "M", "f"), + (0x1D53E, "M", "g"), + (0x1D53F, "X"), + (0x1D540, "M", "i"), + (0x1D541, "M", "j"), + (0x1D542, "M", "k"), + (0x1D543, "M", "l"), + (0x1D544, "M", "m"), + (0x1D545, "X"), + (0x1D546, "M", "o"), + (0x1D547, "X"), + (0x1D54A, "M", "s"), + (0x1D54B, "M", "t"), + (0x1D54C, "M", "u"), + (0x1D54D, "M", "v"), + (0x1D54E, "M", "w"), + (0x1D54F, "M", "x"), + (0x1D550, "M", "y"), + (0x1D551, "X"), + (0x1D552, "M", "a"), + (0x1D553, "M", "b"), + (0x1D554, "M", "c"), + (0x1D555, "M", "d"), + (0x1D556, "M", "e"), + ] + + +def _seg_64() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D557, "M", "f"), + (0x1D558, "M", "g"), + (0x1D559, "M", "h"), + (0x1D55A, "M", "i"), + (0x1D55B, "M", "j"), + (0x1D55C, "M", "k"), + (0x1D55D, "M", "l"), + (0x1D55E, "M", "m"), + (0x1D55F, "M", "n"), + (0x1D560, "M", "o"), + (0x1D561, "M", "p"), + (0x1D562, "M", "q"), + (0x1D563, "M", "r"), + (0x1D564, "M", "s"), + (0x1D565, "M", "t"), + (0x1D566, "M", "u"), + (0x1D567, "M", "v"), + (0x1D568, "M", "w"), + (0x1D569, "M", "x"), + (0x1D56A, "M", "y"), + (0x1D56B, "M", "z"), + (0x1D56C, "M", "a"), + (0x1D56D, "M", "b"), + (0x1D56E, "M", "c"), + (0x1D56F, "M", "d"), + (0x1D570, "M", "e"), + (0x1D571, "M", "f"), + (0x1D572, "M", "g"), + (0x1D573, "M", "h"), + (0x1D574, "M", "i"), + (0x1D575, "M", "j"), + (0x1D576, "M", "k"), + (0x1D577, "M", "l"), + (0x1D578, "M", "m"), + (0x1D579, "M", "n"), + (0x1D57A, "M", "o"), + (0x1D57B, "M", "p"), + (0x1D57C, "M", "q"), + (0x1D57D, "M", "r"), + (0x1D57E, "M", "s"), + (0x1D57F, "M", "t"), + (0x1D580, "M", "u"), + (0x1D581, "M", "v"), + (0x1D582, "M", "w"), + (0x1D583, "M", "x"), + (0x1D584, "M", "y"), + (0x1D585, "M", "z"), + (0x1D586, "M", "a"), + (0x1D587, "M", "b"), + (0x1D588, "M", "c"), + (0x1D589, "M", "d"), + (0x1D58A, "M", "e"), + (0x1D58B, "M", "f"), + (0x1D58C, "M", "g"), + (0x1D58D, "M", "h"), + (0x1D58E, "M", "i"), + (0x1D58F, "M", "j"), + (0x1D590, "M", "k"), + (0x1D591, "M", "l"), + (0x1D592, "M", "m"), + (0x1D593, "M", "n"), + (0x1D594, "M", "o"), + (0x1D595, "M", "p"), + (0x1D596, "M", "q"), + (0x1D597, "M", "r"), + (0x1D598, "M", "s"), + (0x1D599, "M", "t"), + (0x1D59A, "M", "u"), + (0x1D59B, "M", "v"), + (0x1D59C, "M", "w"), + (0x1D59D, "M", "x"), + (0x1D59E, "M", "y"), + (0x1D59F, "M", "z"), + (0x1D5A0, "M", "a"), + (0x1D5A1, "M", "b"), + (0x1D5A2, "M", "c"), + (0x1D5A3, "M", "d"), + (0x1D5A4, "M", "e"), + (0x1D5A5, "M", "f"), + (0x1D5A6, "M", "g"), + (0x1D5A7, "M", "h"), + (0x1D5A8, "M", "i"), + (0x1D5A9, "M", "j"), + (0x1D5AA, "M", "k"), + (0x1D5AB, "M", "l"), + (0x1D5AC, "M", "m"), + (0x1D5AD, "M", "n"), + (0x1D5AE, "M", "o"), + (0x1D5AF, "M", "p"), + (0x1D5B0, "M", "q"), + (0x1D5B1, "M", "r"), + (0x1D5B2, "M", "s"), + (0x1D5B3, "M", "t"), + (0x1D5B4, "M", "u"), + (0x1D5B5, "M", "v"), + (0x1D5B6, "M", "w"), + (0x1D5B7, "M", "x"), + (0x1D5B8, "M", "y"), + (0x1D5B9, "M", "z"), + (0x1D5BA, "M", "a"), + ] + + +def _seg_65() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D5BB, "M", "b"), + (0x1D5BC, "M", "c"), + (0x1D5BD, "M", "d"), + (0x1D5BE, "M", "e"), + (0x1D5BF, "M", "f"), + (0x1D5C0, "M", "g"), + (0x1D5C1, "M", "h"), + (0x1D5C2, "M", "i"), + (0x1D5C3, "M", "j"), + (0x1D5C4, "M", "k"), + (0x1D5C5, "M", "l"), + (0x1D5C6, "M", "m"), + (0x1D5C7, "M", "n"), + (0x1D5C8, "M", "o"), + (0x1D5C9, "M", "p"), + (0x1D5CA, "M", "q"), + (0x1D5CB, "M", "r"), + (0x1D5CC, "M", "s"), + (0x1D5CD, "M", "t"), + (0x1D5CE, "M", "u"), + (0x1D5CF, "M", "v"), + (0x1D5D0, "M", "w"), + (0x1D5D1, "M", "x"), + (0x1D5D2, "M", "y"), + (0x1D5D3, "M", "z"), + (0x1D5D4, "M", "a"), + (0x1D5D5, "M", "b"), + (0x1D5D6, "M", "c"), + (0x1D5D7, "M", "d"), + (0x1D5D8, "M", "e"), + (0x1D5D9, "M", "f"), + (0x1D5DA, "M", "g"), + (0x1D5DB, "M", "h"), + (0x1D5DC, "M", "i"), + (0x1D5DD, "M", "j"), + (0x1D5DE, "M", "k"), + (0x1D5DF, "M", "l"), + (0x1D5E0, "M", "m"), + (0x1D5E1, "M", "n"), + (0x1D5E2, "M", "o"), + (0x1D5E3, "M", "p"), + (0x1D5E4, "M", "q"), + (0x1D5E5, "M", "r"), + (0x1D5E6, "M", "s"), + (0x1D5E7, "M", "t"), + (0x1D5E8, "M", "u"), + (0x1D5E9, "M", "v"), + (0x1D5EA, "M", "w"), + (0x1D5EB, "M", "x"), + (0x1D5EC, "M", "y"), + (0x1D5ED, "M", "z"), + (0x1D5EE, "M", "a"), + (0x1D5EF, "M", "b"), + (0x1D5F0, "M", "c"), + (0x1D5F1, "M", "d"), + (0x1D5F2, "M", "e"), + (0x1D5F3, "M", "f"), + (0x1D5F4, "M", "g"), + (0x1D5F5, "M", "h"), + (0x1D5F6, "M", "i"), + (0x1D5F7, "M", "j"), + (0x1D5F8, "M", "k"), + (0x1D5F9, "M", "l"), + (0x1D5FA, "M", "m"), + (0x1D5FB, "M", "n"), + (0x1D5FC, "M", "o"), + (0x1D5FD, "M", "p"), + (0x1D5FE, "M", "q"), + (0x1D5FF, "M", "r"), + (0x1D600, "M", "s"), + (0x1D601, "M", "t"), + (0x1D602, "M", "u"), + (0x1D603, "M", "v"), + (0x1D604, "M", "w"), + (0x1D605, "M", "x"), + (0x1D606, "M", "y"), + (0x1D607, "M", "z"), + (0x1D608, "M", "a"), + (0x1D609, "M", "b"), + (0x1D60A, "M", "c"), + (0x1D60B, "M", "d"), + (0x1D60C, "M", "e"), + (0x1D60D, "M", "f"), + (0x1D60E, "M", "g"), + (0x1D60F, "M", "h"), + (0x1D610, "M", "i"), + (0x1D611, "M", "j"), + (0x1D612, "M", "k"), + (0x1D613, "M", "l"), + (0x1D614, "M", "m"), + (0x1D615, "M", "n"), + (0x1D616, "M", "o"), + (0x1D617, "M", "p"), + (0x1D618, "M", "q"), + (0x1D619, "M", "r"), + (0x1D61A, "M", "s"), + (0x1D61B, "M", "t"), + (0x1D61C, "M", "u"), + (0x1D61D, "M", "v"), + (0x1D61E, "M", "w"), + ] + + +def _seg_66() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D61F, "M", "x"), + (0x1D620, "M", "y"), + (0x1D621, "M", "z"), + (0x1D622, "M", "a"), + (0x1D623, "M", "b"), + (0x1D624, "M", "c"), + (0x1D625, "M", "d"), + (0x1D626, "M", "e"), + (0x1D627, "M", "f"), + (0x1D628, "M", "g"), + (0x1D629, "M", "h"), + (0x1D62A, "M", "i"), + (0x1D62B, "M", "j"), + (0x1D62C, "M", "k"), + (0x1D62D, "M", "l"), + (0x1D62E, "M", "m"), + (0x1D62F, "M", "n"), + (0x1D630, "M", "o"), + (0x1D631, "M", "p"), + (0x1D632, "M", "q"), + (0x1D633, "M", "r"), + (0x1D634, "M", "s"), + (0x1D635, "M", "t"), + (0x1D636, "M", "u"), + (0x1D637, "M", "v"), + (0x1D638, "M", "w"), + (0x1D639, "M", "x"), + (0x1D63A, "M", "y"), + (0x1D63B, "M", "z"), + (0x1D63C, "M", "a"), + (0x1D63D, "M", "b"), + (0x1D63E, "M", "c"), + (0x1D63F, "M", "d"), + (0x1D640, "M", "e"), + (0x1D641, "M", "f"), + (0x1D642, "M", "g"), + (0x1D643, "M", "h"), + (0x1D644, "M", "i"), + (0x1D645, "M", "j"), + (0x1D646, "M", "k"), + (0x1D647, "M", "l"), + (0x1D648, "M", "m"), + (0x1D649, "M", "n"), + (0x1D64A, "M", "o"), + (0x1D64B, "M", "p"), + (0x1D64C, "M", "q"), + (0x1D64D, "M", "r"), + (0x1D64E, "M", "s"), + (0x1D64F, "M", "t"), + (0x1D650, "M", "u"), + (0x1D651, "M", "v"), + (0x1D652, "M", "w"), + (0x1D653, "M", "x"), + (0x1D654, "M", "y"), + (0x1D655, "M", "z"), + (0x1D656, "M", "a"), + (0x1D657, "M", "b"), + (0x1D658, "M", "c"), + (0x1D659, "M", "d"), + (0x1D65A, "M", "e"), + (0x1D65B, "M", "f"), + (0x1D65C, "M", "g"), + (0x1D65D, "M", "h"), + (0x1D65E, "M", "i"), + (0x1D65F, "M", "j"), + (0x1D660, "M", "k"), + (0x1D661, "M", "l"), + (0x1D662, "M", "m"), + (0x1D663, "M", "n"), + (0x1D664, "M", "o"), + (0x1D665, "M", "p"), + (0x1D666, "M", "q"), + (0x1D667, "M", "r"), + (0x1D668, "M", "s"), + (0x1D669, "M", "t"), + (0x1D66A, "M", "u"), + (0x1D66B, "M", "v"), + (0x1D66C, "M", "w"), + (0x1D66D, "M", "x"), + (0x1D66E, "M", "y"), + (0x1D66F, "M", "z"), + (0x1D670, "M", "a"), + (0x1D671, "M", "b"), + (0x1D672, "M", "c"), + (0x1D673, "M", "d"), + (0x1D674, "M", "e"), + (0x1D675, "M", "f"), + (0x1D676, "M", "g"), + (0x1D677, "M", "h"), + (0x1D678, "M", "i"), + (0x1D679, "M", "j"), + (0x1D67A, "M", "k"), + (0x1D67B, "M", "l"), + (0x1D67C, "M", "m"), + (0x1D67D, "M", "n"), + (0x1D67E, "M", "o"), + (0x1D67F, "M", "p"), + (0x1D680, "M", "q"), + (0x1D681, "M", "r"), + (0x1D682, "M", "s"), + ] + + +def _seg_67() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D683, "M", "t"), + (0x1D684, "M", "u"), + (0x1D685, "M", "v"), + (0x1D686, "M", "w"), + (0x1D687, "M", "x"), + (0x1D688, "M", "y"), + (0x1D689, "M", "z"), + (0x1D68A, "M", "a"), + (0x1D68B, "M", "b"), + (0x1D68C, "M", "c"), + (0x1D68D, "M", "d"), + (0x1D68E, "M", "e"), + (0x1D68F, "M", "f"), + (0x1D690, "M", "g"), + (0x1D691, "M", "h"), + (0x1D692, "M", "i"), + (0x1D693, "M", "j"), + (0x1D694, "M", "k"), + (0x1D695, "M", "l"), + (0x1D696, "M", "m"), + (0x1D697, "M", "n"), + (0x1D698, "M", "o"), + (0x1D699, "M", "p"), + (0x1D69A, "M", "q"), + (0x1D69B, "M", "r"), + (0x1D69C, "M", "s"), + (0x1D69D, "M", "t"), + (0x1D69E, "M", "u"), + (0x1D69F, "M", "v"), + (0x1D6A0, "M", "w"), + (0x1D6A1, "M", "x"), + (0x1D6A2, "M", "y"), + (0x1D6A3, "M", "z"), + (0x1D6A4, "M", "ı"), + (0x1D6A5, "M", "ȷ"), + (0x1D6A6, "X"), + (0x1D6A8, "M", "α"), + (0x1D6A9, "M", "β"), + (0x1D6AA, "M", "γ"), + (0x1D6AB, "M", "δ"), + (0x1D6AC, "M", "ε"), + (0x1D6AD, "M", "ζ"), + (0x1D6AE, "M", "η"), + (0x1D6AF, "M", "θ"), + (0x1D6B0, "M", "ι"), + (0x1D6B1, "M", "κ"), + (0x1D6B2, "M", "λ"), + (0x1D6B3, "M", "μ"), + (0x1D6B4, "M", "ν"), + (0x1D6B5, "M", "ξ"), + (0x1D6B6, "M", "ο"), + (0x1D6B7, "M", "π"), + (0x1D6B8, "M", "ρ"), + (0x1D6B9, "M", "θ"), + (0x1D6BA, "M", "σ"), + (0x1D6BB, "M", "τ"), + (0x1D6BC, "M", "υ"), + (0x1D6BD, "M", "φ"), + (0x1D6BE, "M", "χ"), + (0x1D6BF, "M", "ψ"), + (0x1D6C0, "M", "ω"), + (0x1D6C1, "M", "∇"), + (0x1D6C2, "M", "α"), + (0x1D6C3, "M", "β"), + (0x1D6C4, "M", "γ"), + (0x1D6C5, "M", "δ"), + (0x1D6C6, "M", "ε"), + (0x1D6C7, "M", "ζ"), + (0x1D6C8, "M", "η"), + (0x1D6C9, "M", "θ"), + (0x1D6CA, "M", "ι"), + (0x1D6CB, "M", "κ"), + (0x1D6CC, "M", "λ"), + (0x1D6CD, "M", "μ"), + (0x1D6CE, "M", "ν"), + (0x1D6CF, "M", "ξ"), + (0x1D6D0, "M", "ο"), + (0x1D6D1, "M", "π"), + (0x1D6D2, "M", "ρ"), + (0x1D6D3, "M", "σ"), + (0x1D6D5, "M", "τ"), + (0x1D6D6, "M", "υ"), + (0x1D6D7, "M", "φ"), + (0x1D6D8, "M", "χ"), + (0x1D6D9, "M", "ψ"), + (0x1D6DA, "M", "ω"), + (0x1D6DB, "M", "∂"), + (0x1D6DC, "M", "ε"), + (0x1D6DD, "M", "θ"), + (0x1D6DE, "M", "κ"), + (0x1D6DF, "M", "φ"), + (0x1D6E0, "M", "ρ"), + (0x1D6E1, "M", "π"), + (0x1D6E2, "M", "α"), + (0x1D6E3, "M", "β"), + (0x1D6E4, "M", "γ"), + (0x1D6E5, "M", "δ"), + (0x1D6E6, "M", "ε"), + (0x1D6E7, "M", "ζ"), + (0x1D6E8, "M", "η"), + ] + + +def _seg_68() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D6E9, "M", "θ"), + (0x1D6EA, "M", "ι"), + (0x1D6EB, "M", "κ"), + (0x1D6EC, "M", "λ"), + (0x1D6ED, "M", "μ"), + (0x1D6EE, "M", "ν"), + (0x1D6EF, "M", "ξ"), + (0x1D6F0, "M", "ο"), + (0x1D6F1, "M", "π"), + (0x1D6F2, "M", "ρ"), + (0x1D6F3, "M", "θ"), + (0x1D6F4, "M", "σ"), + (0x1D6F5, "M", "τ"), + (0x1D6F6, "M", "υ"), + (0x1D6F7, "M", "φ"), + (0x1D6F8, "M", "χ"), + (0x1D6F9, "M", "ψ"), + (0x1D6FA, "M", "ω"), + (0x1D6FB, "M", "∇"), + (0x1D6FC, "M", "α"), + (0x1D6FD, "M", "β"), + (0x1D6FE, "M", "γ"), + (0x1D6FF, "M", "δ"), + (0x1D700, "M", "ε"), + (0x1D701, "M", "ζ"), + (0x1D702, "M", "η"), + (0x1D703, "M", "θ"), + (0x1D704, "M", "ι"), + (0x1D705, "M", "κ"), + (0x1D706, "M", "λ"), + (0x1D707, "M", "μ"), + (0x1D708, "M", "ν"), + (0x1D709, "M", "ξ"), + (0x1D70A, "M", "ο"), + (0x1D70B, "M", "π"), + (0x1D70C, "M", "ρ"), + (0x1D70D, "M", "σ"), + (0x1D70F, "M", "τ"), + (0x1D710, "M", "υ"), + (0x1D711, "M", "φ"), + (0x1D712, "M", "χ"), + (0x1D713, "M", "ψ"), + (0x1D714, "M", "ω"), + (0x1D715, "M", "∂"), + (0x1D716, "M", "ε"), + (0x1D717, "M", "θ"), + (0x1D718, "M", "κ"), + (0x1D719, "M", "φ"), + (0x1D71A, "M", "ρ"), + (0x1D71B, "M", "π"), + (0x1D71C, "M", "α"), + (0x1D71D, "M", "β"), + (0x1D71E, "M", "γ"), + (0x1D71F, "M", "δ"), + (0x1D720, "M", "ε"), + (0x1D721, "M", "ζ"), + (0x1D722, "M", "η"), + (0x1D723, "M", "θ"), + (0x1D724, "M", "ι"), + (0x1D725, "M", "κ"), + (0x1D726, "M", "λ"), + (0x1D727, "M", "μ"), + (0x1D728, "M", "ν"), + (0x1D729, "M", "ξ"), + (0x1D72A, "M", "ο"), + (0x1D72B, "M", "π"), + (0x1D72C, "M", "ρ"), + (0x1D72D, "M", "θ"), + (0x1D72E, "M", "σ"), + (0x1D72F, "M", "τ"), + (0x1D730, "M", "υ"), + (0x1D731, "M", "φ"), + (0x1D732, "M", "χ"), + (0x1D733, "M", "ψ"), + (0x1D734, "M", "ω"), + (0x1D735, "M", "∇"), + (0x1D736, "M", "α"), + (0x1D737, "M", "β"), + (0x1D738, "M", "γ"), + (0x1D739, "M", "δ"), + (0x1D73A, "M", "ε"), + (0x1D73B, "M", "ζ"), + (0x1D73C, "M", "η"), + (0x1D73D, "M", "θ"), + (0x1D73E, "M", "ι"), + (0x1D73F, "M", "κ"), + (0x1D740, "M", "λ"), + (0x1D741, "M", "μ"), + (0x1D742, "M", "ν"), + (0x1D743, "M", "ξ"), + (0x1D744, "M", "ο"), + (0x1D745, "M", "π"), + (0x1D746, "M", "ρ"), + (0x1D747, "M", "σ"), + (0x1D749, "M", "τ"), + (0x1D74A, "M", "υ"), + (0x1D74B, "M", "φ"), + (0x1D74C, "M", "χ"), + (0x1D74D, "M", "ψ"), + (0x1D74E, "M", "ω"), + ] + + +def _seg_69() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D74F, "M", "∂"), + (0x1D750, "M", "ε"), + (0x1D751, "M", "θ"), + (0x1D752, "M", "κ"), + (0x1D753, "M", "φ"), + (0x1D754, "M", "ρ"), + (0x1D755, "M", "π"), + (0x1D756, "M", "α"), + (0x1D757, "M", "β"), + (0x1D758, "M", "γ"), + (0x1D759, "M", "δ"), + (0x1D75A, "M", "ε"), + (0x1D75B, "M", "ζ"), + (0x1D75C, "M", "η"), + (0x1D75D, "M", "θ"), + (0x1D75E, "M", "ι"), + (0x1D75F, "M", "κ"), + (0x1D760, "M", "λ"), + (0x1D761, "M", "μ"), + (0x1D762, "M", "ν"), + (0x1D763, "M", "ξ"), + (0x1D764, "M", "ο"), + (0x1D765, "M", "π"), + (0x1D766, "M", "ρ"), + (0x1D767, "M", "θ"), + (0x1D768, "M", "σ"), + (0x1D769, "M", "τ"), + (0x1D76A, "M", "υ"), + (0x1D76B, "M", "φ"), + (0x1D76C, "M", "χ"), + (0x1D76D, "M", "ψ"), + (0x1D76E, "M", "ω"), + (0x1D76F, "M", "∇"), + (0x1D770, "M", "α"), + (0x1D771, "M", "β"), + (0x1D772, "M", "γ"), + (0x1D773, "M", "δ"), + (0x1D774, "M", "ε"), + (0x1D775, "M", "ζ"), + (0x1D776, "M", "η"), + (0x1D777, "M", "θ"), + (0x1D778, "M", "ι"), + (0x1D779, "M", "κ"), + (0x1D77A, "M", "λ"), + (0x1D77B, "M", "μ"), + (0x1D77C, "M", "ν"), + (0x1D77D, "M", "ξ"), + (0x1D77E, "M", "ο"), + (0x1D77F, "M", "π"), + (0x1D780, "M", "ρ"), + (0x1D781, "M", "σ"), + (0x1D783, "M", "τ"), + (0x1D784, "M", "υ"), + (0x1D785, "M", "φ"), + (0x1D786, "M", "χ"), + (0x1D787, "M", "ψ"), + (0x1D788, "M", "ω"), + (0x1D789, "M", "∂"), + (0x1D78A, "M", "ε"), + (0x1D78B, "M", "θ"), + (0x1D78C, "M", "κ"), + (0x1D78D, "M", "φ"), + (0x1D78E, "M", "ρ"), + (0x1D78F, "M", "π"), + (0x1D790, "M", "α"), + (0x1D791, "M", "β"), + (0x1D792, "M", "γ"), + (0x1D793, "M", "δ"), + (0x1D794, "M", "ε"), + (0x1D795, "M", "ζ"), + (0x1D796, "M", "η"), + (0x1D797, "M", "θ"), + (0x1D798, "M", "ι"), + (0x1D799, "M", "κ"), + (0x1D79A, "M", "λ"), + (0x1D79B, "M", "μ"), + (0x1D79C, "M", "ν"), + (0x1D79D, "M", "ξ"), + (0x1D79E, "M", "ο"), + (0x1D79F, "M", "π"), + (0x1D7A0, "M", "ρ"), + (0x1D7A1, "M", "θ"), + (0x1D7A2, "M", "σ"), + (0x1D7A3, "M", "τ"), + (0x1D7A4, "M", "υ"), + (0x1D7A5, "M", "φ"), + (0x1D7A6, "M", "χ"), + (0x1D7A7, "M", "ψ"), + (0x1D7A8, "M", "ω"), + (0x1D7A9, "M", "∇"), + (0x1D7AA, "M", "α"), + (0x1D7AB, "M", "β"), + (0x1D7AC, "M", "γ"), + (0x1D7AD, "M", "δ"), + (0x1D7AE, "M", "ε"), + (0x1D7AF, "M", "ζ"), + (0x1D7B0, "M", "η"), + (0x1D7B1, "M", "θ"), + (0x1D7B2, "M", "ι"), + (0x1D7B3, "M", "κ"), + ] + + +def _seg_70() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D7B4, "M", "λ"), + (0x1D7B5, "M", "μ"), + (0x1D7B6, "M", "ν"), + (0x1D7B7, "M", "ξ"), + (0x1D7B8, "M", "ο"), + (0x1D7B9, "M", "π"), + (0x1D7BA, "M", "ρ"), + (0x1D7BB, "M", "σ"), + (0x1D7BD, "M", "τ"), + (0x1D7BE, "M", "υ"), + (0x1D7BF, "M", "φ"), + (0x1D7C0, "M", "χ"), + (0x1D7C1, "M", "ψ"), + (0x1D7C2, "M", "ω"), + (0x1D7C3, "M", "∂"), + (0x1D7C4, "M", "ε"), + (0x1D7C5, "M", "θ"), + (0x1D7C6, "M", "κ"), + (0x1D7C7, "M", "φ"), + (0x1D7C8, "M", "ρ"), + (0x1D7C9, "M", "π"), + (0x1D7CA, "M", "ϝ"), + (0x1D7CC, "X"), + (0x1D7CE, "M", "0"), + (0x1D7CF, "M", "1"), + (0x1D7D0, "M", "2"), + (0x1D7D1, "M", "3"), + (0x1D7D2, "M", "4"), + (0x1D7D3, "M", "5"), + (0x1D7D4, "M", "6"), + (0x1D7D5, "M", "7"), + (0x1D7D6, "M", "8"), + (0x1D7D7, "M", "9"), + (0x1D7D8, "M", "0"), + (0x1D7D9, "M", "1"), + (0x1D7DA, "M", "2"), + (0x1D7DB, "M", "3"), + (0x1D7DC, "M", "4"), + (0x1D7DD, "M", "5"), + (0x1D7DE, "M", "6"), + (0x1D7DF, "M", "7"), + (0x1D7E0, "M", "8"), + (0x1D7E1, "M", "9"), + (0x1D7E2, "M", "0"), + (0x1D7E3, "M", "1"), + (0x1D7E4, "M", "2"), + (0x1D7E5, "M", "3"), + (0x1D7E6, "M", "4"), + (0x1D7E7, "M", "5"), + (0x1D7E8, "M", "6"), + (0x1D7E9, "M", "7"), + (0x1D7EA, "M", "8"), + (0x1D7EB, "M", "9"), + (0x1D7EC, "M", "0"), + (0x1D7ED, "M", "1"), + (0x1D7EE, "M", "2"), + (0x1D7EF, "M", "3"), + (0x1D7F0, "M", "4"), + (0x1D7F1, "M", "5"), + (0x1D7F2, "M", "6"), + (0x1D7F3, "M", "7"), + (0x1D7F4, "M", "8"), + (0x1D7F5, "M", "9"), + (0x1D7F6, "M", "0"), + (0x1D7F7, "M", "1"), + (0x1D7F8, "M", "2"), + (0x1D7F9, "M", "3"), + (0x1D7FA, "M", "4"), + (0x1D7FB, "M", "5"), + (0x1D7FC, "M", "6"), + (0x1D7FD, "M", "7"), + (0x1D7FE, "M", "8"), + (0x1D7FF, "M", "9"), + (0x1D800, "V"), + (0x1DA8C, "X"), + (0x1DA9B, "V"), + (0x1DAA0, "X"), + (0x1DAA1, "V"), + (0x1DAB0, "X"), + (0x1DF00, "V"), + (0x1DF1F, "X"), + (0x1DF25, "V"), + (0x1DF2B, "X"), + (0x1E000, "V"), + (0x1E007, "X"), + (0x1E008, "V"), + (0x1E019, "X"), + (0x1E01B, "V"), + (0x1E022, "X"), + (0x1E023, "V"), + (0x1E025, "X"), + (0x1E026, "V"), + (0x1E02B, "X"), + (0x1E030, "M", "а"), + (0x1E031, "M", "б"), + (0x1E032, "M", "в"), + (0x1E033, "M", "г"), + (0x1E034, "M", "д"), + (0x1E035, "M", "е"), + (0x1E036, "M", "ж"), + ] + + +def _seg_71() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1E037, "M", "з"), + (0x1E038, "M", "и"), + (0x1E039, "M", "к"), + (0x1E03A, "M", "л"), + (0x1E03B, "M", "м"), + (0x1E03C, "M", "о"), + (0x1E03D, "M", "п"), + (0x1E03E, "M", "р"), + (0x1E03F, "M", "с"), + (0x1E040, "M", "т"), + (0x1E041, "M", "у"), + (0x1E042, "M", "ф"), + (0x1E043, "M", "х"), + (0x1E044, "M", "ц"), + (0x1E045, "M", "ч"), + (0x1E046, "M", "ш"), + (0x1E047, "M", "ы"), + (0x1E048, "M", "э"), + (0x1E049, "M", "ю"), + (0x1E04A, "M", "ꚉ"), + (0x1E04B, "M", "ә"), + (0x1E04C, "M", "і"), + (0x1E04D, "M", "ј"), + (0x1E04E, "M", "ө"), + (0x1E04F, "M", "ү"), + (0x1E050, "M", "ӏ"), + (0x1E051, "M", "а"), + (0x1E052, "M", "б"), + (0x1E053, "M", "в"), + (0x1E054, "M", "г"), + (0x1E055, "M", "д"), + (0x1E056, "M", "е"), + (0x1E057, "M", "ж"), + (0x1E058, "M", "з"), + (0x1E059, "M", "и"), + (0x1E05A, "M", "к"), + (0x1E05B, "M", "л"), + (0x1E05C, "M", "о"), + (0x1E05D, "M", "п"), + (0x1E05E, "M", "с"), + (0x1E05F, "M", "у"), + (0x1E060, "M", "ф"), + (0x1E061, "M", "х"), + (0x1E062, "M", "ц"), + (0x1E063, "M", "ч"), + (0x1E064, "M", "ш"), + (0x1E065, "M", "ъ"), + (0x1E066, "M", "ы"), + (0x1E067, "M", "ґ"), + (0x1E068, "M", "і"), + (0x1E069, "M", "ѕ"), + (0x1E06A, "M", "џ"), + (0x1E06B, "M", "ҫ"), + (0x1E06C, "M", "ꙑ"), + (0x1E06D, "M", "ұ"), + (0x1E06E, "X"), + (0x1E08F, "V"), + (0x1E090, "X"), + (0x1E100, "V"), + (0x1E12D, "X"), + (0x1E130, "V"), + (0x1E13E, "X"), + (0x1E140, "V"), + (0x1E14A, "X"), + (0x1E14E, "V"), + (0x1E150, "X"), + (0x1E290, "V"), + (0x1E2AF, "X"), + (0x1E2C0, "V"), + (0x1E2FA, "X"), + (0x1E2FF, "V"), + (0x1E300, "X"), + (0x1E4D0, "V"), + (0x1E4FA, "X"), + (0x1E7E0, "V"), + (0x1E7E7, "X"), + (0x1E7E8, "V"), + (0x1E7EC, "X"), + (0x1E7ED, "V"), + (0x1E7EF, "X"), + (0x1E7F0, "V"), + (0x1E7FF, "X"), + (0x1E800, "V"), + (0x1E8C5, "X"), + (0x1E8C7, "V"), + (0x1E8D7, "X"), + (0x1E900, "M", "𞤢"), + (0x1E901, "M", "𞤣"), + (0x1E902, "M", "𞤤"), + (0x1E903, "M", "𞤥"), + (0x1E904, "M", "𞤦"), + (0x1E905, "M", "𞤧"), + (0x1E906, "M", "𞤨"), + (0x1E907, "M", "𞤩"), + (0x1E908, "M", "𞤪"), + (0x1E909, "M", "𞤫"), + (0x1E90A, "M", "𞤬"), + (0x1E90B, "M", "𞤭"), + (0x1E90C, "M", "𞤮"), + (0x1E90D, "M", "𞤯"), + ] + + +def _seg_72() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1E90E, "M", "𞤰"), + (0x1E90F, "M", "𞤱"), + (0x1E910, "M", "𞤲"), + (0x1E911, "M", "𞤳"), + (0x1E912, "M", "𞤴"), + (0x1E913, "M", "𞤵"), + (0x1E914, "M", "𞤶"), + (0x1E915, "M", "𞤷"), + (0x1E916, "M", "𞤸"), + (0x1E917, "M", "𞤹"), + (0x1E918, "M", "𞤺"), + (0x1E919, "M", "𞤻"), + (0x1E91A, "M", "𞤼"), + (0x1E91B, "M", "𞤽"), + (0x1E91C, "M", "𞤾"), + (0x1E91D, "M", "𞤿"), + (0x1E91E, "M", "𞥀"), + (0x1E91F, "M", "𞥁"), + (0x1E920, "M", "𞥂"), + (0x1E921, "M", "𞥃"), + (0x1E922, "V"), + (0x1E94C, "X"), + (0x1E950, "V"), + (0x1E95A, "X"), + (0x1E95E, "V"), + (0x1E960, "X"), + (0x1EC71, "V"), + (0x1ECB5, "X"), + (0x1ED01, "V"), + (0x1ED3E, "X"), + (0x1EE00, "M", "ا"), + (0x1EE01, "M", "ب"), + (0x1EE02, "M", "ج"), + (0x1EE03, "M", "د"), + (0x1EE04, "X"), + (0x1EE05, "M", "و"), + (0x1EE06, "M", "ز"), + (0x1EE07, "M", "ح"), + (0x1EE08, "M", "ط"), + (0x1EE09, "M", "ي"), + (0x1EE0A, "M", "ك"), + (0x1EE0B, "M", "ل"), + (0x1EE0C, "M", "م"), + (0x1EE0D, "M", "ن"), + (0x1EE0E, "M", "س"), + (0x1EE0F, "M", "ع"), + (0x1EE10, "M", "ف"), + (0x1EE11, "M", "ص"), + (0x1EE12, "M", "ق"), + (0x1EE13, "M", "ر"), + (0x1EE14, "M", "ش"), + (0x1EE15, "M", "ت"), + (0x1EE16, "M", "ث"), + (0x1EE17, "M", "خ"), + (0x1EE18, "M", "ذ"), + (0x1EE19, "M", "ض"), + (0x1EE1A, "M", "ظ"), + (0x1EE1B, "M", "غ"), + (0x1EE1C, "M", "ٮ"), + (0x1EE1D, "M", "ں"), + (0x1EE1E, "M", "ڡ"), + (0x1EE1F, "M", "ٯ"), + (0x1EE20, "X"), + (0x1EE21, "M", "ب"), + (0x1EE22, "M", "ج"), + (0x1EE23, "X"), + (0x1EE24, "M", "ه"), + (0x1EE25, "X"), + (0x1EE27, "M", "ح"), + (0x1EE28, "X"), + (0x1EE29, "M", "ي"), + (0x1EE2A, "M", "ك"), + (0x1EE2B, "M", "ل"), + (0x1EE2C, "M", "م"), + (0x1EE2D, "M", "ن"), + (0x1EE2E, "M", "س"), + (0x1EE2F, "M", "ع"), + (0x1EE30, "M", "ف"), + (0x1EE31, "M", "ص"), + (0x1EE32, "M", "ق"), + (0x1EE33, "X"), + (0x1EE34, "M", "ش"), + (0x1EE35, "M", "ت"), + (0x1EE36, "M", "ث"), + (0x1EE37, "M", "خ"), + (0x1EE38, "X"), + (0x1EE39, "M", "ض"), + (0x1EE3A, "X"), + (0x1EE3B, "M", "غ"), + (0x1EE3C, "X"), + (0x1EE42, "M", "ج"), + (0x1EE43, "X"), + (0x1EE47, "M", "ح"), + (0x1EE48, "X"), + (0x1EE49, "M", "ي"), + (0x1EE4A, "X"), + (0x1EE4B, "M", "ل"), + (0x1EE4C, "X"), + (0x1EE4D, "M", "ن"), + (0x1EE4E, "M", "س"), + ] + + +def _seg_73() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1EE4F, "M", "ع"), + (0x1EE50, "X"), + (0x1EE51, "M", "ص"), + (0x1EE52, "M", "ق"), + (0x1EE53, "X"), + (0x1EE54, "M", "ش"), + (0x1EE55, "X"), + (0x1EE57, "M", "خ"), + (0x1EE58, "X"), + (0x1EE59, "M", "ض"), + (0x1EE5A, "X"), + (0x1EE5B, "M", "غ"), + (0x1EE5C, "X"), + (0x1EE5D, "M", "ں"), + (0x1EE5E, "X"), + (0x1EE5F, "M", "ٯ"), + (0x1EE60, "X"), + (0x1EE61, "M", "ب"), + (0x1EE62, "M", "ج"), + (0x1EE63, "X"), + (0x1EE64, "M", "ه"), + (0x1EE65, "X"), + (0x1EE67, "M", "ح"), + (0x1EE68, "M", "ط"), + (0x1EE69, "M", "ي"), + (0x1EE6A, "M", "ك"), + (0x1EE6B, "X"), + (0x1EE6C, "M", "م"), + (0x1EE6D, "M", "ن"), + (0x1EE6E, "M", "س"), + (0x1EE6F, "M", "ع"), + (0x1EE70, "M", "ف"), + (0x1EE71, "M", "ص"), + (0x1EE72, "M", "ق"), + (0x1EE73, "X"), + (0x1EE74, "M", "ش"), + (0x1EE75, "M", "ت"), + (0x1EE76, "M", "ث"), + (0x1EE77, "M", "خ"), + (0x1EE78, "X"), + (0x1EE79, "M", "ض"), + (0x1EE7A, "M", "ظ"), + (0x1EE7B, "M", "غ"), + (0x1EE7C, "M", "ٮ"), + (0x1EE7D, "X"), + (0x1EE7E, "M", "ڡ"), + (0x1EE7F, "X"), + (0x1EE80, "M", "ا"), + (0x1EE81, "M", "ب"), + (0x1EE82, "M", "ج"), + (0x1EE83, "M", "د"), + (0x1EE84, "M", "ه"), + (0x1EE85, "M", "و"), + (0x1EE86, "M", "ز"), + (0x1EE87, "M", "ح"), + (0x1EE88, "M", "ط"), + (0x1EE89, "M", "ي"), + (0x1EE8A, "X"), + (0x1EE8B, "M", "ل"), + (0x1EE8C, "M", "م"), + (0x1EE8D, "M", "ن"), + (0x1EE8E, "M", "س"), + (0x1EE8F, "M", "ع"), + (0x1EE90, "M", "ف"), + (0x1EE91, "M", "ص"), + (0x1EE92, "M", "ق"), + (0x1EE93, "M", "ر"), + (0x1EE94, "M", "ش"), + (0x1EE95, "M", "ت"), + (0x1EE96, "M", "ث"), + (0x1EE97, "M", "خ"), + (0x1EE98, "M", "ذ"), + (0x1EE99, "M", "ض"), + (0x1EE9A, "M", "ظ"), + (0x1EE9B, "M", "غ"), + (0x1EE9C, "X"), + (0x1EEA1, "M", "ب"), + (0x1EEA2, "M", "ج"), + (0x1EEA3, "M", "د"), + (0x1EEA4, "X"), + (0x1EEA5, "M", "و"), + (0x1EEA6, "M", "ز"), + (0x1EEA7, "M", "ح"), + (0x1EEA8, "M", "ط"), + (0x1EEA9, "M", "ي"), + (0x1EEAA, "X"), + (0x1EEAB, "M", "ل"), + (0x1EEAC, "M", "م"), + (0x1EEAD, "M", "ن"), + (0x1EEAE, "M", "س"), + (0x1EEAF, "M", "ع"), + (0x1EEB0, "M", "ف"), + (0x1EEB1, "M", "ص"), + (0x1EEB2, "M", "ق"), + (0x1EEB3, "M", "ر"), + (0x1EEB4, "M", "ش"), + (0x1EEB5, "M", "ت"), + (0x1EEB6, "M", "ث"), + (0x1EEB7, "M", "خ"), + (0x1EEB8, "M", "ذ"), + ] + + +def _seg_74() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1EEB9, "M", "ض"), + (0x1EEBA, "M", "ظ"), + (0x1EEBB, "M", "غ"), + (0x1EEBC, "X"), + (0x1EEF0, "V"), + (0x1EEF2, "X"), + (0x1F000, "V"), + (0x1F02C, "X"), + (0x1F030, "V"), + (0x1F094, "X"), + (0x1F0A0, "V"), + (0x1F0AF, "X"), + (0x1F0B1, "V"), + (0x1F0C0, "X"), + (0x1F0C1, "V"), + (0x1F0D0, "X"), + (0x1F0D1, "V"), + (0x1F0F6, "X"), + (0x1F101, "3", "0,"), + (0x1F102, "3", "1,"), + (0x1F103, "3", "2,"), + (0x1F104, "3", "3,"), + (0x1F105, "3", "4,"), + (0x1F106, "3", "5,"), + (0x1F107, "3", "6,"), + (0x1F108, "3", "7,"), + (0x1F109, "3", "8,"), + (0x1F10A, "3", "9,"), + (0x1F10B, "V"), + (0x1F110, "3", "(a)"), + (0x1F111, "3", "(b)"), + (0x1F112, "3", "(c)"), + (0x1F113, "3", "(d)"), + (0x1F114, "3", "(e)"), + (0x1F115, "3", "(f)"), + (0x1F116, "3", "(g)"), + (0x1F117, "3", "(h)"), + (0x1F118, "3", "(i)"), + (0x1F119, "3", "(j)"), + (0x1F11A, "3", "(k)"), + (0x1F11B, "3", "(l)"), + (0x1F11C, "3", "(m)"), + (0x1F11D, "3", "(n)"), + (0x1F11E, "3", "(o)"), + (0x1F11F, "3", "(p)"), + (0x1F120, "3", "(q)"), + (0x1F121, "3", "(r)"), + (0x1F122, "3", "(s)"), + (0x1F123, "3", "(t)"), + (0x1F124, "3", "(u)"), + (0x1F125, "3", "(v)"), + (0x1F126, "3", "(w)"), + (0x1F127, "3", "(x)"), + (0x1F128, "3", "(y)"), + (0x1F129, "3", "(z)"), + (0x1F12A, "M", "〔s〕"), + (0x1F12B, "M", "c"), + (0x1F12C, "M", "r"), + (0x1F12D, "M", "cd"), + (0x1F12E, "M", "wz"), + (0x1F12F, "V"), + (0x1F130, "M", "a"), + (0x1F131, "M", "b"), + (0x1F132, "M", "c"), + (0x1F133, "M", "d"), + (0x1F134, "M", "e"), + (0x1F135, "M", "f"), + (0x1F136, "M", "g"), + (0x1F137, "M", "h"), + (0x1F138, "M", "i"), + (0x1F139, "M", "j"), + (0x1F13A, "M", "k"), + (0x1F13B, "M", "l"), + (0x1F13C, "M", "m"), + (0x1F13D, "M", "n"), + (0x1F13E, "M", "o"), + (0x1F13F, "M", "p"), + (0x1F140, "M", "q"), + (0x1F141, "M", "r"), + (0x1F142, "M", "s"), + (0x1F143, "M", "t"), + (0x1F144, "M", "u"), + (0x1F145, "M", "v"), + (0x1F146, "M", "w"), + (0x1F147, "M", "x"), + (0x1F148, "M", "y"), + (0x1F149, "M", "z"), + (0x1F14A, "M", "hv"), + (0x1F14B, "M", "mv"), + (0x1F14C, "M", "sd"), + (0x1F14D, "M", "ss"), + (0x1F14E, "M", "ppv"), + (0x1F14F, "M", "wc"), + (0x1F150, "V"), + (0x1F16A, "M", "mc"), + (0x1F16B, "M", "md"), + (0x1F16C, "M", "mr"), + (0x1F16D, "V"), + (0x1F190, "M", "dj"), + (0x1F191, "V"), + ] + + +def _seg_75() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1F1AE, "X"), + (0x1F1E6, "V"), + (0x1F200, "M", "ほか"), + (0x1F201, "M", "ココ"), + (0x1F202, "M", "サ"), + (0x1F203, "X"), + (0x1F210, "M", "手"), + (0x1F211, "M", "字"), + (0x1F212, "M", "双"), + (0x1F213, "M", "デ"), + (0x1F214, "M", "二"), + (0x1F215, "M", "多"), + (0x1F216, "M", "解"), + (0x1F217, "M", "天"), + (0x1F218, "M", "交"), + (0x1F219, "M", "映"), + (0x1F21A, "M", "無"), + (0x1F21B, "M", "料"), + (0x1F21C, "M", "前"), + (0x1F21D, "M", "後"), + (0x1F21E, "M", "再"), + (0x1F21F, "M", "新"), + (0x1F220, "M", "初"), + (0x1F221, "M", "終"), + (0x1F222, "M", "生"), + (0x1F223, "M", "販"), + (0x1F224, "M", "声"), + (0x1F225, "M", "吹"), + (0x1F226, "M", "演"), + (0x1F227, "M", "投"), + (0x1F228, "M", "捕"), + (0x1F229, "M", "一"), + (0x1F22A, "M", "三"), + (0x1F22B, "M", "遊"), + (0x1F22C, "M", "左"), + (0x1F22D, "M", "中"), + (0x1F22E, "M", "右"), + (0x1F22F, "M", "指"), + (0x1F230, "M", "走"), + (0x1F231, "M", "打"), + (0x1F232, "M", "禁"), + (0x1F233, "M", "空"), + (0x1F234, "M", "合"), + (0x1F235, "M", "満"), + (0x1F236, "M", "有"), + (0x1F237, "M", "月"), + (0x1F238, "M", "申"), + (0x1F239, "M", "割"), + (0x1F23A, "M", "営"), + (0x1F23B, "M", "配"), + (0x1F23C, "X"), + (0x1F240, "M", "〔本〕"), + (0x1F241, "M", "〔三〕"), + (0x1F242, "M", "〔二〕"), + (0x1F243, "M", "〔安〕"), + (0x1F244, "M", "〔点〕"), + (0x1F245, "M", "〔打〕"), + (0x1F246, "M", "〔盗〕"), + (0x1F247, "M", "〔勝〕"), + (0x1F248, "M", "〔敗〕"), + (0x1F249, "X"), + (0x1F250, "M", "得"), + (0x1F251, "M", "可"), + (0x1F252, "X"), + (0x1F260, "V"), + (0x1F266, "X"), + (0x1F300, "V"), + (0x1F6D8, "X"), + (0x1F6DC, "V"), + (0x1F6ED, "X"), + (0x1F6F0, "V"), + (0x1F6FD, "X"), + (0x1F700, "V"), + (0x1F777, "X"), + (0x1F77B, "V"), + (0x1F7DA, "X"), + (0x1F7E0, "V"), + (0x1F7EC, "X"), + (0x1F7F0, "V"), + (0x1F7F1, "X"), + (0x1F800, "V"), + (0x1F80C, "X"), + (0x1F810, "V"), + (0x1F848, "X"), + (0x1F850, "V"), + (0x1F85A, "X"), + (0x1F860, "V"), + (0x1F888, "X"), + (0x1F890, "V"), + (0x1F8AE, "X"), + (0x1F8B0, "V"), + (0x1F8B2, "X"), + (0x1F900, "V"), + (0x1FA54, "X"), + (0x1FA60, "V"), + (0x1FA6E, "X"), + (0x1FA70, "V"), + (0x1FA7D, "X"), + (0x1FA80, "V"), + (0x1FA89, "X"), + ] + + +def _seg_76() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1FA90, "V"), + (0x1FABE, "X"), + (0x1FABF, "V"), + (0x1FAC6, "X"), + (0x1FACE, "V"), + (0x1FADC, "X"), + (0x1FAE0, "V"), + (0x1FAE9, "X"), + (0x1FAF0, "V"), + (0x1FAF9, "X"), + (0x1FB00, "V"), + (0x1FB93, "X"), + (0x1FB94, "V"), + (0x1FBCB, "X"), + (0x1FBF0, "M", "0"), + (0x1FBF1, "M", "1"), + (0x1FBF2, "M", "2"), + (0x1FBF3, "M", "3"), + (0x1FBF4, "M", "4"), + (0x1FBF5, "M", "5"), + (0x1FBF6, "M", "6"), + (0x1FBF7, "M", "7"), + (0x1FBF8, "M", "8"), + (0x1FBF9, "M", "9"), + (0x1FBFA, "X"), + (0x20000, "V"), + (0x2A6E0, "X"), + (0x2A700, "V"), + (0x2B73A, "X"), + (0x2B740, "V"), + (0x2B81E, "X"), + (0x2B820, "V"), + (0x2CEA2, "X"), + (0x2CEB0, "V"), + (0x2EBE1, "X"), + (0x2EBF0, "V"), + (0x2EE5E, "X"), + (0x2F800, "M", "丽"), + (0x2F801, "M", "丸"), + (0x2F802, "M", "乁"), + (0x2F803, "M", "𠄢"), + (0x2F804, "M", "你"), + (0x2F805, "M", "侮"), + (0x2F806, "M", "侻"), + (0x2F807, "M", "倂"), + (0x2F808, "M", "偺"), + (0x2F809, "M", "備"), + (0x2F80A, "M", "僧"), + (0x2F80B, "M", "像"), + (0x2F80C, "M", "㒞"), + (0x2F80D, "M", "𠘺"), + (0x2F80E, "M", "免"), + (0x2F80F, "M", "兔"), + (0x2F810, "M", "兤"), + (0x2F811, "M", "具"), + (0x2F812, "M", "𠔜"), + (0x2F813, "M", "㒹"), + (0x2F814, "M", "內"), + (0x2F815, "M", "再"), + (0x2F816, "M", "𠕋"), + (0x2F817, "M", "冗"), + (0x2F818, "M", "冤"), + (0x2F819, "M", "仌"), + (0x2F81A, "M", "冬"), + (0x2F81B, "M", "况"), + (0x2F81C, "M", "𩇟"), + (0x2F81D, "M", "凵"), + (0x2F81E, "M", "刃"), + (0x2F81F, "M", "㓟"), + (0x2F820, "M", "刻"), + (0x2F821, "M", "剆"), + (0x2F822, "M", "割"), + (0x2F823, "M", "剷"), + (0x2F824, "M", "㔕"), + (0x2F825, "M", "勇"), + (0x2F826, "M", "勉"), + (0x2F827, "M", "勤"), + (0x2F828, "M", "勺"), + (0x2F829, "M", "包"), + (0x2F82A, "M", "匆"), + (0x2F82B, "M", "北"), + (0x2F82C, "M", "卉"), + (0x2F82D, "M", "卑"), + (0x2F82E, "M", "博"), + (0x2F82F, "M", "即"), + (0x2F830, "M", "卽"), + (0x2F831, "M", "卿"), + (0x2F834, "M", "𠨬"), + (0x2F835, "M", "灰"), + (0x2F836, "M", "及"), + (0x2F837, "M", "叟"), + (0x2F838, "M", "𠭣"), + (0x2F839, "M", "叫"), + (0x2F83A, "M", "叱"), + (0x2F83B, "M", "吆"), + (0x2F83C, "M", "咞"), + (0x2F83D, "M", "吸"), + (0x2F83E, "M", "呈"), + (0x2F83F, "M", "周"), + (0x2F840, "M", "咢"), + ] + + +def _seg_77() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x2F841, "M", "哶"), + (0x2F842, "M", "唐"), + (0x2F843, "M", "啓"), + (0x2F844, "M", "啣"), + (0x2F845, "M", "善"), + (0x2F847, "M", "喙"), + (0x2F848, "M", "喫"), + (0x2F849, "M", "喳"), + (0x2F84A, "M", "嗂"), + (0x2F84B, "M", "圖"), + (0x2F84C, "M", "嘆"), + (0x2F84D, "M", "圗"), + (0x2F84E, "M", "噑"), + (0x2F84F, "M", "噴"), + (0x2F850, "M", "切"), + (0x2F851, "M", "壮"), + (0x2F852, "M", "城"), + (0x2F853, "M", "埴"), + (0x2F854, "M", "堍"), + (0x2F855, "M", "型"), + (0x2F856, "M", "堲"), + (0x2F857, "M", "報"), + (0x2F858, "M", "墬"), + (0x2F859, "M", "𡓤"), + (0x2F85A, "M", "売"), + (0x2F85B, "M", "壷"), + (0x2F85C, "M", "夆"), + (0x2F85D, "M", "多"), + (0x2F85E, "M", "夢"), + (0x2F85F, "M", "奢"), + (0x2F860, "M", "𡚨"), + (0x2F861, "M", "𡛪"), + (0x2F862, "M", "姬"), + (0x2F863, "M", "娛"), + (0x2F864, "M", "娧"), + (0x2F865, "M", "姘"), + (0x2F866, "M", "婦"), + (0x2F867, "M", "㛮"), + (0x2F868, "X"), + (0x2F869, "M", "嬈"), + (0x2F86A, "M", "嬾"), + (0x2F86C, "M", "𡧈"), + (0x2F86D, "M", "寃"), + (0x2F86E, "M", "寘"), + (0x2F86F, "M", "寧"), + (0x2F870, "M", "寳"), + (0x2F871, "M", "𡬘"), + (0x2F872, "M", "寿"), + (0x2F873, "M", "将"), + (0x2F874, "X"), + (0x2F875, "M", "尢"), + (0x2F876, "M", "㞁"), + (0x2F877, "M", "屠"), + (0x2F878, "M", "屮"), + (0x2F879, "M", "峀"), + (0x2F87A, "M", "岍"), + (0x2F87B, "M", "𡷤"), + (0x2F87C, "M", "嵃"), + (0x2F87D, "M", "𡷦"), + (0x2F87E, "M", "嵮"), + (0x2F87F, "M", "嵫"), + (0x2F880, "M", "嵼"), + (0x2F881, "M", "巡"), + (0x2F882, "M", "巢"), + (0x2F883, "M", "㠯"), + (0x2F884, "M", "巽"), + (0x2F885, "M", "帨"), + (0x2F886, "M", "帽"), + (0x2F887, "M", "幩"), + (0x2F888, "M", "㡢"), + (0x2F889, "M", "𢆃"), + (0x2F88A, "M", "㡼"), + (0x2F88B, "M", "庰"), + (0x2F88C, "M", "庳"), + (0x2F88D, "M", "庶"), + (0x2F88E, "M", "廊"), + (0x2F88F, "M", "𪎒"), + (0x2F890, "M", "廾"), + (0x2F891, "M", "𢌱"), + (0x2F893, "M", "舁"), + (0x2F894, "M", "弢"), + (0x2F896, "M", "㣇"), + (0x2F897, "M", "𣊸"), + (0x2F898, "M", "𦇚"), + (0x2F899, "M", "形"), + (0x2F89A, "M", "彫"), + (0x2F89B, "M", "㣣"), + (0x2F89C, "M", "徚"), + (0x2F89D, "M", "忍"), + (0x2F89E, "M", "志"), + (0x2F89F, "M", "忹"), + (0x2F8A0, "M", "悁"), + (0x2F8A1, "M", "㤺"), + (0x2F8A2, "M", "㤜"), + (0x2F8A3, "M", "悔"), + (0x2F8A4, "M", "𢛔"), + (0x2F8A5, "M", "惇"), + (0x2F8A6, "M", "慈"), + (0x2F8A7, "M", "慌"), + (0x2F8A8, "M", "慎"), + ] + + +def _seg_78() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x2F8A9, "M", "慌"), + (0x2F8AA, "M", "慺"), + (0x2F8AB, "M", "憎"), + (0x2F8AC, "M", "憲"), + (0x2F8AD, "M", "憤"), + (0x2F8AE, "M", "憯"), + (0x2F8AF, "M", "懞"), + (0x2F8B0, "M", "懲"), + (0x2F8B1, "M", "懶"), + (0x2F8B2, "M", "成"), + (0x2F8B3, "M", "戛"), + (0x2F8B4, "M", "扝"), + (0x2F8B5, "M", "抱"), + (0x2F8B6, "M", "拔"), + (0x2F8B7, "M", "捐"), + (0x2F8B8, "M", "𢬌"), + (0x2F8B9, "M", "挽"), + (0x2F8BA, "M", "拼"), + (0x2F8BB, "M", "捨"), + (0x2F8BC, "M", "掃"), + (0x2F8BD, "M", "揤"), + (0x2F8BE, "M", "𢯱"), + (0x2F8BF, "M", "搢"), + (0x2F8C0, "M", "揅"), + (0x2F8C1, "M", "掩"), + (0x2F8C2, "M", "㨮"), + (0x2F8C3, "M", "摩"), + (0x2F8C4, "M", "摾"), + (0x2F8C5, "M", "撝"), + (0x2F8C6, "M", "摷"), + (0x2F8C7, "M", "㩬"), + (0x2F8C8, "M", "敏"), + (0x2F8C9, "M", "敬"), + (0x2F8CA, "M", "𣀊"), + (0x2F8CB, "M", "旣"), + (0x2F8CC, "M", "書"), + (0x2F8CD, "M", "晉"), + (0x2F8CE, "M", "㬙"), + (0x2F8CF, "M", "暑"), + (0x2F8D0, "M", "㬈"), + (0x2F8D1, "M", "㫤"), + (0x2F8D2, "M", "冒"), + (0x2F8D3, "M", "冕"), + (0x2F8D4, "M", "最"), + (0x2F8D5, "M", "暜"), + (0x2F8D6, "M", "肭"), + (0x2F8D7, "M", "䏙"), + (0x2F8D8, "M", "朗"), + (0x2F8D9, "M", "望"), + (0x2F8DA, "M", "朡"), + (0x2F8DB, "M", "杞"), + (0x2F8DC, "M", "杓"), + (0x2F8DD, "M", "𣏃"), + (0x2F8DE, "M", "㭉"), + (0x2F8DF, "M", "柺"), + (0x2F8E0, "M", "枅"), + (0x2F8E1, "M", "桒"), + (0x2F8E2, "M", "梅"), + (0x2F8E3, "M", "𣑭"), + (0x2F8E4, "M", "梎"), + (0x2F8E5, "M", "栟"), + (0x2F8E6, "M", "椔"), + (0x2F8E7, "M", "㮝"), + (0x2F8E8, "M", "楂"), + (0x2F8E9, "M", "榣"), + (0x2F8EA, "M", "槪"), + (0x2F8EB, "M", "檨"), + (0x2F8EC, "M", "𣚣"), + (0x2F8ED, "M", "櫛"), + (0x2F8EE, "M", "㰘"), + (0x2F8EF, "M", "次"), + (0x2F8F0, "M", "𣢧"), + (0x2F8F1, "M", "歔"), + (0x2F8F2, "M", "㱎"), + (0x2F8F3, "M", "歲"), + (0x2F8F4, "M", "殟"), + (0x2F8F5, "M", "殺"), + (0x2F8F6, "M", "殻"), + (0x2F8F7, "M", "𣪍"), + (0x2F8F8, "M", "𡴋"), + (0x2F8F9, "M", "𣫺"), + (0x2F8FA, "M", "汎"), + (0x2F8FB, "M", "𣲼"), + (0x2F8FC, "M", "沿"), + (0x2F8FD, "M", "泍"), + (0x2F8FE, "M", "汧"), + (0x2F8FF, "M", "洖"), + (0x2F900, "M", "派"), + (0x2F901, "M", "海"), + (0x2F902, "M", "流"), + (0x2F903, "M", "浩"), + (0x2F904, "M", "浸"), + (0x2F905, "M", "涅"), + (0x2F906, "M", "𣴞"), + (0x2F907, "M", "洴"), + (0x2F908, "M", "港"), + (0x2F909, "M", "湮"), + (0x2F90A, "M", "㴳"), + (0x2F90B, "M", "滋"), + (0x2F90C, "M", "滇"), + ] + + +def _seg_79() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x2F90D, "M", "𣻑"), + (0x2F90E, "M", "淹"), + (0x2F90F, "M", "潮"), + (0x2F910, "M", "𣽞"), + (0x2F911, "M", "𣾎"), + (0x2F912, "M", "濆"), + (0x2F913, "M", "瀹"), + (0x2F914, "M", "瀞"), + (0x2F915, "M", "瀛"), + (0x2F916, "M", "㶖"), + (0x2F917, "M", "灊"), + (0x2F918, "M", "災"), + (0x2F919, "M", "灷"), + (0x2F91A, "M", "炭"), + (0x2F91B, "M", "𠔥"), + (0x2F91C, "M", "煅"), + (0x2F91D, "M", "𤉣"), + (0x2F91E, "M", "熜"), + (0x2F91F, "X"), + (0x2F920, "M", "爨"), + (0x2F921, "M", "爵"), + (0x2F922, "M", "牐"), + (0x2F923, "M", "𤘈"), + (0x2F924, "M", "犀"), + (0x2F925, "M", "犕"), + (0x2F926, "M", "𤜵"), + (0x2F927, "M", "𤠔"), + (0x2F928, "M", "獺"), + (0x2F929, "M", "王"), + (0x2F92A, "M", "㺬"), + (0x2F92B, "M", "玥"), + (0x2F92C, "M", "㺸"), + (0x2F92E, "M", "瑇"), + (0x2F92F, "M", "瑜"), + (0x2F930, "M", "瑱"), + (0x2F931, "M", "璅"), + (0x2F932, "M", "瓊"), + (0x2F933, "M", "㼛"), + (0x2F934, "M", "甤"), + (0x2F935, "M", "𤰶"), + (0x2F936, "M", "甾"), + (0x2F937, "M", "𤲒"), + (0x2F938, "M", "異"), + (0x2F939, "M", "𢆟"), + (0x2F93A, "M", "瘐"), + (0x2F93B, "M", "𤾡"), + (0x2F93C, "M", "𤾸"), + (0x2F93D, "M", "𥁄"), + (0x2F93E, "M", "㿼"), + (0x2F93F, "M", "䀈"), + (0x2F940, "M", "直"), + (0x2F941, "M", "𥃳"), + (0x2F942, "M", "𥃲"), + (0x2F943, "M", "𥄙"), + (0x2F944, "M", "𥄳"), + (0x2F945, "M", "眞"), + (0x2F946, "M", "真"), + (0x2F948, "M", "睊"), + (0x2F949, "M", "䀹"), + (0x2F94A, "M", "瞋"), + (0x2F94B, "M", "䁆"), + (0x2F94C, "M", "䂖"), + (0x2F94D, "M", "𥐝"), + (0x2F94E, "M", "硎"), + (0x2F94F, "M", "碌"), + (0x2F950, "M", "磌"), + (0x2F951, "M", "䃣"), + (0x2F952, "M", "𥘦"), + (0x2F953, "M", "祖"), + (0x2F954, "M", "𥚚"), + (0x2F955, "M", "𥛅"), + (0x2F956, "M", "福"), + (0x2F957, "M", "秫"), + (0x2F958, "M", "䄯"), + (0x2F959, "M", "穀"), + (0x2F95A, "M", "穊"), + (0x2F95B, "M", "穏"), + (0x2F95C, "M", "𥥼"), + (0x2F95D, "M", "𥪧"), + (0x2F95F, "X"), + (0x2F960, "M", "䈂"), + (0x2F961, "M", "𥮫"), + (0x2F962, "M", "篆"), + (0x2F963, "M", "築"), + (0x2F964, "M", "䈧"), + (0x2F965, "M", "𥲀"), + (0x2F966, "M", "糒"), + (0x2F967, "M", "䊠"), + (0x2F968, "M", "糨"), + (0x2F969, "M", "糣"), + (0x2F96A, "M", "紀"), + (0x2F96B, "M", "𥾆"), + (0x2F96C, "M", "絣"), + (0x2F96D, "M", "䌁"), + (0x2F96E, "M", "緇"), + (0x2F96F, "M", "縂"), + (0x2F970, "M", "繅"), + (0x2F971, "M", "䌴"), + (0x2F972, "M", "𦈨"), + (0x2F973, "M", "𦉇"), + ] + + +def _seg_80() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x2F974, "M", "䍙"), + (0x2F975, "M", "𦋙"), + (0x2F976, "M", "罺"), + (0x2F977, "M", "𦌾"), + (0x2F978, "M", "羕"), + (0x2F979, "M", "翺"), + (0x2F97A, "M", "者"), + (0x2F97B, "M", "𦓚"), + (0x2F97C, "M", "𦔣"), + (0x2F97D, "M", "聠"), + (0x2F97E, "M", "𦖨"), + (0x2F97F, "M", "聰"), + (0x2F980, "M", "𣍟"), + (0x2F981, "M", "䏕"), + (0x2F982, "M", "育"), + (0x2F983, "M", "脃"), + (0x2F984, "M", "䐋"), + (0x2F985, "M", "脾"), + (0x2F986, "M", "媵"), + (0x2F987, "M", "𦞧"), + (0x2F988, "M", "𦞵"), + (0x2F989, "M", "𣎓"), + (0x2F98A, "M", "𣎜"), + (0x2F98B, "M", "舁"), + (0x2F98C, "M", "舄"), + (0x2F98D, "M", "辞"), + (0x2F98E, "M", "䑫"), + (0x2F98F, "M", "芑"), + (0x2F990, "M", "芋"), + (0x2F991, "M", "芝"), + (0x2F992, "M", "劳"), + (0x2F993, "M", "花"), + (0x2F994, "M", "芳"), + (0x2F995, "M", "芽"), + (0x2F996, "M", "苦"), + (0x2F997, "M", "𦬼"), + (0x2F998, "M", "若"), + (0x2F999, "M", "茝"), + (0x2F99A, "M", "荣"), + (0x2F99B, "M", "莭"), + (0x2F99C, "M", "茣"), + (0x2F99D, "M", "莽"), + (0x2F99E, "M", "菧"), + (0x2F99F, "M", "著"), + (0x2F9A0, "M", "荓"), + (0x2F9A1, "M", "菊"), + (0x2F9A2, "M", "菌"), + (0x2F9A3, "M", "菜"), + (0x2F9A4, "M", "𦰶"), + (0x2F9A5, "M", "𦵫"), + (0x2F9A6, "M", "𦳕"), + (0x2F9A7, "M", "䔫"), + (0x2F9A8, "M", "蓱"), + (0x2F9A9, "M", "蓳"), + (0x2F9AA, "M", "蔖"), + (0x2F9AB, "M", "𧏊"), + (0x2F9AC, "M", "蕤"), + (0x2F9AD, "M", "𦼬"), + (0x2F9AE, "M", "䕝"), + (0x2F9AF, "M", "䕡"), + (0x2F9B0, "M", "𦾱"), + (0x2F9B1, "M", "𧃒"), + (0x2F9B2, "M", "䕫"), + (0x2F9B3, "M", "虐"), + (0x2F9B4, "M", "虜"), + (0x2F9B5, "M", "虧"), + (0x2F9B6, "M", "虩"), + (0x2F9B7, "M", "蚩"), + (0x2F9B8, "M", "蚈"), + (0x2F9B9, "M", "蜎"), + (0x2F9BA, "M", "蛢"), + (0x2F9BB, "M", "蝹"), + (0x2F9BC, "M", "蜨"), + (0x2F9BD, "M", "蝫"), + (0x2F9BE, "M", "螆"), + (0x2F9BF, "X"), + (0x2F9C0, "M", "蟡"), + (0x2F9C1, "M", "蠁"), + (0x2F9C2, "M", "䗹"), + (0x2F9C3, "M", "衠"), + (0x2F9C4, "M", "衣"), + (0x2F9C5, "M", "𧙧"), + (0x2F9C6, "M", "裗"), + (0x2F9C7, "M", "裞"), + (0x2F9C8, "M", "䘵"), + (0x2F9C9, "M", "裺"), + (0x2F9CA, "M", "㒻"), + (0x2F9CB, "M", "𧢮"), + (0x2F9CC, "M", "𧥦"), + (0x2F9CD, "M", "䚾"), + (0x2F9CE, "M", "䛇"), + (0x2F9CF, "M", "誠"), + (0x2F9D0, "M", "諭"), + (0x2F9D1, "M", "變"), + (0x2F9D2, "M", "豕"), + (0x2F9D3, "M", "𧲨"), + (0x2F9D4, "M", "貫"), + (0x2F9D5, "M", "賁"), + (0x2F9D6, "M", "贛"), + (0x2F9D7, "M", "起"), + ] + + +def _seg_81() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x2F9D8, "M", "𧼯"), + (0x2F9D9, "M", "𠠄"), + (0x2F9DA, "M", "跋"), + (0x2F9DB, "M", "趼"), + (0x2F9DC, "M", "跰"), + (0x2F9DD, "M", "𠣞"), + (0x2F9DE, "M", "軔"), + (0x2F9DF, "M", "輸"), + (0x2F9E0, "M", "𨗒"), + (0x2F9E1, "M", "𨗭"), + (0x2F9E2, "M", "邔"), + (0x2F9E3, "M", "郱"), + (0x2F9E4, "M", "鄑"), + (0x2F9E5, "M", "𨜮"), + (0x2F9E6, "M", "鄛"), + (0x2F9E7, "M", "鈸"), + (0x2F9E8, "M", "鋗"), + (0x2F9E9, "M", "鋘"), + (0x2F9EA, "M", "鉼"), + (0x2F9EB, "M", "鏹"), + (0x2F9EC, "M", "鐕"), + (0x2F9ED, "M", "𨯺"), + (0x2F9EE, "M", "開"), + (0x2F9EF, "M", "䦕"), + (0x2F9F0, "M", "閷"), + (0x2F9F1, "M", "𨵷"), + (0x2F9F2, "M", "䧦"), + (0x2F9F3, "M", "雃"), + (0x2F9F4, "M", "嶲"), + (0x2F9F5, "M", "霣"), + (0x2F9F6, "M", "𩅅"), + (0x2F9F7, "M", "𩈚"), + (0x2F9F8, "M", "䩮"), + (0x2F9F9, "M", "䩶"), + (0x2F9FA, "M", "韠"), + (0x2F9FB, "M", "𩐊"), + (0x2F9FC, "M", "䪲"), + (0x2F9FD, "M", "𩒖"), + (0x2F9FE, "M", "頋"), + (0x2FA00, "M", "頩"), + (0x2FA01, "M", "𩖶"), + (0x2FA02, "M", "飢"), + (0x2FA03, "M", "䬳"), + (0x2FA04, "M", "餩"), + (0x2FA05, "M", "馧"), + (0x2FA06, "M", "駂"), + (0x2FA07, "M", "駾"), + (0x2FA08, "M", "䯎"), + (0x2FA09, "M", "𩬰"), + (0x2FA0A, "M", "鬒"), + (0x2FA0B, "M", "鱀"), + (0x2FA0C, "M", "鳽"), + (0x2FA0D, "M", "䳎"), + (0x2FA0E, "M", "䳭"), + (0x2FA0F, "M", "鵧"), + (0x2FA10, "M", "𪃎"), + (0x2FA11, "M", "䳸"), + (0x2FA12, "M", "𪄅"), + (0x2FA13, "M", "𪈎"), + (0x2FA14, "M", "𪊑"), + (0x2FA15, "M", "麻"), + (0x2FA16, "M", "䵖"), + (0x2FA17, "M", "黹"), + (0x2FA18, "M", "黾"), + (0x2FA19, "M", "鼅"), + (0x2FA1A, "M", "鼏"), + (0x2FA1B, "M", "鼖"), + (0x2FA1C, "M", "鼻"), + (0x2FA1D, "M", "𪘀"), + (0x2FA1E, "X"), + (0x30000, "V"), + (0x3134B, "X"), + (0x31350, "V"), + (0x323B0, "X"), + (0xE0100, "I"), + (0xE01F0, "X"), + ] + + +uts46data = tuple( + _seg_0() + + _seg_1() + + _seg_2() + + _seg_3() + + _seg_4() + + _seg_5() + + _seg_6() + + _seg_7() + + _seg_8() + + _seg_9() + + _seg_10() + + _seg_11() + + _seg_12() + + _seg_13() + + _seg_14() + + _seg_15() + + _seg_16() + + _seg_17() + + _seg_18() + + _seg_19() + + _seg_20() + + _seg_21() + + _seg_22() + + _seg_23() + + _seg_24() + + _seg_25() + + _seg_26() + + _seg_27() + + _seg_28() + + _seg_29() + + _seg_30() + + _seg_31() + + _seg_32() + + _seg_33() + + _seg_34() + + _seg_35() + + _seg_36() + + _seg_37() + + _seg_38() + + _seg_39() + + _seg_40() + + _seg_41() + + _seg_42() + + _seg_43() + + _seg_44() + + _seg_45() + + _seg_46() + + _seg_47() + + _seg_48() + + _seg_49() + + _seg_50() + + _seg_51() + + _seg_52() + + _seg_53() + + _seg_54() + + _seg_55() + + _seg_56() + + _seg_57() + + _seg_58() + + _seg_59() + + _seg_60() + + _seg_61() + + _seg_62() + + _seg_63() + + _seg_64() + + _seg_65() + + _seg_66() + + _seg_67() + + _seg_68() + + _seg_69() + + _seg_70() + + _seg_71() + + _seg_72() + + _seg_73() + + _seg_74() + + _seg_75() + + _seg_76() + + _seg_77() + + _seg_78() + + _seg_79() + + _seg_80() + + _seg_81() +) # type: Tuple[Union[Tuple[int, str], Tuple[int, str, str]], ...] diff --git a/.venv/lib/python3.11/site-packages/pip-24.0.dist-info/AUTHORS.txt b/.venv/lib/python3.11/site-packages/pip-24.0.dist-info/AUTHORS.txt new file mode 100644 index 0000000..0e63548 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip-24.0.dist-info/AUTHORS.txt @@ -0,0 +1,760 @@ +@Switch01 +A_Rog +Aakanksha Agrawal +Abhinav Sagar +ABHYUDAY PRATAP SINGH +abs51295 +AceGentile +Adam Chainz +Adam Tse +Adam Wentz +admin +Adrien Morison +ahayrapetyan +Ahilya +AinsworthK +Akash Srivastava +Alan Yee +Albert Tugushev +Albert-Guan +albertg +Alberto Sottile +Aleks Bunin +Ales Erjavec +Alethea Flowers +Alex Gaynor +Alex Grönholm +Alex Hedges +Alex Loosley +Alex Morega +Alex Stachowiak +Alexander Shtyrov +Alexandre Conrad +Alexey Popravka +Aleš Erjavec +Alli +Ami Fischman +Ananya Maiti +Anatoly Techtonik +Anders Kaseorg +Andre Aguiar +Andreas Lutro +Andrei Geacar +Andrew Gaul +Andrew Shymanel +Andrey Bienkowski +Andrey Bulgakov +Andrés Delfino +Andy Freeland +Andy Kluger +Ani Hayrapetyan +Aniruddha Basak +Anish Tambe +Anrs Hu +Anthony Sottile +Antoine Musso +Anton Ovchinnikov +Anton Patrushev +Antonio Alvarado Hernandez +Antony Lee +Antti Kaihola +Anubhav Patel +Anudit Nagar +Anuj Godase +AQNOUCH Mohammed +AraHaan +Arindam Choudhury +Armin Ronacher +Artem +Arun Babu Neelicattu +Ashley Manton +Ashwin Ramaswami +atse +Atsushi Odagiri +Avinash Karhana +Avner Cohen +Awit (Ah-Wit) Ghirmai +Baptiste Mispelon +Barney Gale +barneygale +Bartek Ogryczak +Bastian Venthur +Ben Bodenmiller +Ben Darnell +Ben Hoyt +Ben Mares +Ben Rosser +Bence Nagy +Benjamin Peterson +Benjamin VanEvery +Benoit Pierre +Berker Peksag +Bernard +Bernard Tyers +Bernardo B. Marques +Bernhard M. Wiedemann +Bertil Hatt +Bhavam Vidyarthi +Blazej Michalik +Bogdan Opanchuk +BorisZZZ +Brad Erickson +Bradley Ayers +Brandon L. Reiss +Brandt Bucher +Brett Randall +Brett Rosen +Brian Cristante +Brian Rosner +briantracy +BrownTruck +Bruno Oliveira +Bruno Renié +Bruno S +Bstrdsmkr +Buck Golemon +burrows +Bussonnier Matthias +bwoodsend +c22 +Caleb Martinez +Calvin Smith +Carl Meyer +Carlos Liam +Carol Willing +Carter Thayer +Cass +Chandrasekhar Atina +Chih-Hsuan Yen +Chris Brinker +Chris Hunt +Chris Jerdonek +Chris Kuehl +Chris McDonough +Chris Pawley +Chris Pryer +Chris Wolfe +Christian Clauss +Christian Heimes +Christian Oudard +Christoph Reiter +Christopher Hunt +Christopher Snyder +cjc7373 +Clark Boylan +Claudio Jolowicz +Clay McClure +Cody +Cody Soyland +Colin Watson +Collin Anderson +Connor Osborn +Cooper Lees +Cooper Ry Lees +Cory Benfield +Cory Wright +Craig Kerstiens +Cristian Sorinel +Cristina +Cristina Muñoz +Curtis Doty +cytolentino +Daan De Meyer +Dale +Damian +Damian Quiroga +Damian Shaw +Dan Black +Dan Savilonis +Dan Sully +Dane Hillard +daniel +Daniel Collins +Daniel Hahler +Daniel Holth +Daniel Jost +Daniel Katz +Daniel Shaulov +Daniele Esposti +Daniele Nicolodi +Daniele Procida +Daniil Konovalenko +Danny Hermes +Danny McClanahan +Darren Kavanagh +Dav Clark +Dave Abrahams +Dave Jones +David Aguilar +David Black +David Bordeynik +David Caro +David D Lowe +David Evans +David Hewitt +David Linke +David Poggi +David Pursehouse +David Runge +David Tucker +David Wales +Davidovich +ddelange +Deepak Sharma +Deepyaman Datta +Denise Yu +dependabot[bot] +derwolfe +Desetude +Devesh Kumar Singh +Diego Caraballo +Diego Ramirez +DiegoCaraballo +Dimitri Merejkowsky +Dimitri Papadopoulos +Dirk Stolle +Dmitry Gladkov +Dmitry Volodin +Domen Kožar +Dominic Davis-Foster +Donald Stufft +Dongweiming +doron zarhi +Dos Moonen +Douglas Thor +DrFeathers +Dustin Ingram +Dwayne Bailey +Ed Morley +Edgar Ramírez +Edgar Ramírez Mondragón +Ee Durbin +Efflam Lemaillet +efflamlemaillet +Eitan Adler +ekristina +elainechan +Eli Schwartz +Elisha Hollander +Ellen Marie Dash +Emil Burzo +Emil Styrke +Emmanuel Arias +Endoh Takanao +enoch +Erdinc Mutlu +Eric Cousineau +Eric Gillingham +Eric Hanchrow +Eric Hopper +Erik M. Bray +Erik Rose +Erwin Janssen +Eugene Vereshchagin +everdimension +Federico +Felipe Peter +Felix Yan +fiber-space +Filip Kokosiński +Filipe Laíns +Finn Womack +finnagin +Flavio Amurrio +Florian Briand +Florian Rathgeber +Francesco +Francesco Montesano +Frost Ming +Gabriel Curio +Gabriel de Perthuis +Garry Polley +gavin +gdanielson +Geoffrey Sneddon +George Song +Georgi Valkov +Georgy Pchelkin +ghost +Giftlin Rajaiah +gizmoguy1 +gkdoc +Godefroid Chapelle +Gopinath M +GOTO Hayato +gousaiyang +gpiks +Greg Roodt +Greg Ward +Guilherme Espada +Guillaume Seguin +gutsytechster +Guy Rozendorn +Guy Tuval +gzpan123 +Hanjun Kim +Hari Charan +Harsh Vardhan +harupy +Harutaka Kawamura +hauntsaninja +Henrich Hartzer +Henry Schreiner +Herbert Pfennig +Holly Stotelmyer +Honnix +Hsiaoming Yang +Hugo Lopes Tavares +Hugo van Kemenade +Hugues Bruant +Hynek Schlawack +Ian Bicking +Ian Cordasco +Ian Lee +Ian Stapleton Cordasco +Ian Wienand +Igor Kuzmitshov +Igor Sobreira +Ilan Schnell +Illia Volochii +Ilya Baryshev +Inada Naoki +Ionel Cristian Mărieș +Ionel Maries Cristian +Itamar Turner-Trauring +Ivan Pozdeev +J. Nick Koston +Jacob Kim +Jacob Walls +Jaime Sanz +jakirkham +Jakub Kuczys +Jakub Stasiak +Jakub Vysoky +Jakub Wilk +James Cleveland +James Curtin +James Firth +James Gerity +James Polley +Jan Pokorný +Jannis Leidel +Jarek Potiuk +jarondl +Jason Curtis +Jason R. Coombs +JasonMo +JasonMo1 +Jay Graves +Jean Abou Samra +Jean-Christophe Fillion-Robin +Jeff Barber +Jeff Dairiki +Jeff Widman +Jelmer Vernooij +jenix21 +Jeremy Stanley +Jeremy Zafran +Jesse Rittner +Jiashuo Li +Jim Fisher +Jim Garrison +Jiun Bae +Jivan Amara +Joe Bylund +Joe Michelini +John Paton +John T. Wodder II +John-Scott Atlakson +johnthagen +Jon Banafato +Jon Dufresne +Jon Parise +Jonas Nockert +Jonathan Herbert +Joonatan Partanen +Joost Molenaar +Jorge Niedbalski +Joseph Bylund +Joseph Long +Josh Bronson +Josh Hansen +Josh Schneier +Joshua +Juan Luis Cano Rodríguez +Juanjo Bazán +Judah Rand +Julian Berman +Julian Gethmann +Julien Demoor +Jussi Kukkonen +jwg4 +Jyrki Pulliainen +Kai Chen +Kai Mueller +Kamal Bin Mustafa +kasium +kaustav haldar +keanemind +Keith Maxwell +Kelsey Hightower +Kenneth Belitzky +Kenneth Reitz +Kevin Burke +Kevin Carter +Kevin Frommelt +Kevin R Patterson +Kexuan Sun +Kit Randel +Klaas van Schelven +KOLANICH +kpinc +Krishna Oza +Kumar McMillan +Kurt McKee +Kyle Persohn +lakshmanaram +Laszlo Kiss-Kollar +Laurent Bristiel +Laurent LAPORTE +Laurie O +Laurie Opperman +layday +Leon Sasson +Lev Givon +Lincoln de Sousa +Lipis +lorddavidiii +Loren Carvalho +Lucas Cimon +Ludovic Gasc +Lukas Geiger +Lukas Juhrich +Luke Macken +Luo Jiebin +luojiebin +luz.paz +László Kiss Kollár +M00nL1ght +Marc Abramowitz +Marc Tamlyn +Marcus Smith +Mariatta +Mark Kohler +Mark Williams +Markus Hametner +Martey Dodoo +Martin Fischer +Martin Häcker +Martin Pavlasek +Masaki +Masklinn +Matej Stuchlik +Mathew Jennings +Mathieu Bridon +Mathieu Kniewallner +Matt Bacchi +Matt Good +Matt Maker +Matt Robenolt +matthew +Matthew Einhorn +Matthew Feickert +Matthew Gilliard +Matthew Iversen +Matthew Treinish +Matthew Trumbell +Matthew Willson +Matthias Bussonnier +mattip +Maurits van Rees +Max W Chase +Maxim Kurnikov +Maxime Rouyrre +mayeut +mbaluna +mdebi +memoselyk +meowmeowcat +Michael +Michael Aquilina +Michael E. Karpeles +Michael Klich +Michael Mintz +Michael Williamson +michaelpacer +Michał Górny +Mickaël Schoentgen +Miguel Araujo Perez +Mihir Singh +Mike +Mike Hendricks +Min RK +MinRK +Miro Hrončok +Monica Baluna +montefra +Monty Taylor +Muha Ajjan‮ +Nadav Wexler +Nahuel Ambrosini +Nate Coraor +Nate Prewitt +Nathan Houghton +Nathaniel J. Smith +Nehal J Wani +Neil Botelho +Nguyễn Gia Phong +Nicholas Serra +Nick Coghlan +Nick Stenning +Nick Timkovich +Nicolas Bock +Nicole Harris +Nikhil Benesch +Nikhil Ladha +Nikita Chepanov +Nikolay Korolev +Nipunn Koorapati +Nitesh Sharma +Niyas Sait +Noah +Noah Gorny +Nowell Strite +NtaleGrey +nvdv +OBITORASU +Ofek Lev +ofrinevo +Oliver Freund +Oliver Jeeves +Oliver Mannion +Oliver Tonnhofer +Olivier Girardot +Olivier Grisel +Ollie Rutherfurd +OMOTO Kenji +Omry Yadan +onlinejudge95 +Oren Held +Oscar Benjamin +Oz N Tiram +Pachwenko +Patrick Dubroy +Patrick Jenkins +Patrick Lawson +patricktokeeffe +Patrik Kopkan +Paul Ganssle +Paul Kehrer +Paul Moore +Paul Nasrat +Paul Oswald +Paul van der Linden +Paulus Schoutsen +Pavel Safronov +Pavithra Eswaramoorthy +Pawel Jasinski +Paweł Szramowski +Pekka Klärck +Peter Gessler +Peter Lisák +Peter Waller +petr-tik +Phaneendra Chiruvella +Phil Elson +Phil Freo +Phil Pennock +Phil Whelan +Philip Jägenstedt +Philip Molloy +Philippe Ombredanne +Pi Delport +Pierre-Yves Rofes +Pieter Degroote +pip +Prabakaran Kumaresshan +Prabhjyotsing Surjit Singh Sodhi +Prabhu Marappan +Pradyun Gedam +Prashant Sharma +Pratik Mallya +pre-commit-ci[bot] +Preet Thakkar +Preston Holmes +Przemek Wrzos +Pulkit Goyal +q0w +Qiangning Hong +Qiming Xu +Quentin Lee +Quentin Pradet +R. David Murray +Rafael Caricio +Ralf Schmitt +Razzi Abuissa +rdb +Reece Dunham +Remi Rampin +Rene Dudfield +Riccardo Magliocchetti +Riccardo Schirone +Richard Jones +Richard Si +Ricky Ng-Adam +Rishi +RobberPhex +Robert Collins +Robert McGibbon +Robert Pollak +Robert T. McGibbon +robin elisha robinson +Roey Berman +Rohan Jain +Roman Bogorodskiy +Roman Donchenko +Romuald Brunet +ronaudinho +Ronny Pfannschmidt +Rory McCann +Ross Brattain +Roy Wellington Ⅳ +Ruairidh MacLeod +Russell Keith-Magee +Ryan Shepherd +Ryan Wooden +ryneeverett +Sachi King +Salvatore Rinchiera +sandeepkiran-js +Sander Van Balen +Savio Jomton +schlamar +Scott Kitterman +Sean +seanj +Sebastian Jordan +Sebastian Schaetz +Segev Finer +SeongSoo Cho +Sergey Vasilyev +Seth Michael Larson +Seth Woodworth +Shahar Epstein +Shantanu +shireenrao +Shivansh-007 +Shlomi Fish +Shovan Maity +Simeon Visser +Simon Cross +Simon Pichugin +sinoroc +sinscary +snook92 +socketubs +Sorin Sbarnea +Srinivas Nyayapati +Stavros Korokithakis +Stefan Scherfke +Stefano Rivera +Stephan Erb +Stephen Rosen +stepshal +Steve (Gadget) Barnes +Steve Barnes +Steve Dower +Steve Kowalik +Steven Myint +Steven Silvester +stonebig +studioj +Stéphane Bidoul +Stéphane Bidoul (ACSONE) +Stéphane Klein +Sumana Harihareswara +Surbhi Sharma +Sviatoslav Sydorenko +Swat009 +Sylvain +Takayuki SHIMIZUKAWA +Taneli Hukkinen +tbeswick +Thiago +Thijs Triemstra +Thomas Fenzl +Thomas Grainger +Thomas Guettler +Thomas Johansson +Thomas Kluyver +Thomas Smith +Thomas VINCENT +Tim D. Smith +Tim Gates +Tim Harder +Tim Heap +tim smith +tinruufu +Tobias Hermann +Tom Forbes +Tom Freudenheim +Tom V +Tomas Hrnciar +Tomas Orsava +Tomer Chachamu +Tommi Enenkel | AnB +Tomáš Hrnčiar +Tony Beswick +Tony Narlock +Tony Zhaocheng Tan +TonyBeswick +toonarmycaptain +Toshio Kuratomi +toxinu +Travis Swicegood +Tushar Sadhwani +Tzu-ping Chung +Valentin Haenel +Victor Stinner +victorvpaulo +Vikram - Google +Viktor Szépe +Ville Skyttä +Vinay Sajip +Vincent Philippon +Vinicyus Macedo +Vipul Kumar +Vitaly Babiy +Vladimir Fokow +Vladimir Rutsky +W. Trevor King +Wil Tan +Wilfred Hughes +William Edwards +William ML Leslie +William T Olson +William Woodruff +Wilson Mo +wim glenn +Winson Luk +Wolfgang Maier +Wu Zhenyu +XAMES3 +Xavier Fernandez +xoviat +xtreak +YAMAMOTO Takashi +Yen Chi Hsuan +Yeray Diaz Diaz +Yoval P +Yu Jian +Yuan Jing Vincent Yan +Yusuke Hayashi +Zearin +Zhiping Deng +ziebam +Zvezdan Petkovic +Łukasz Langa +Роман Донченко +Семён Марьясин +‮rekcäH nitraM‮ diff --git a/.venv/lib/python3.11/site-packages/pip-24.0.dist-info/INSTALLER b/.venv/lib/python3.11/site-packages/pip-24.0.dist-info/INSTALLER new file mode 100644 index 0000000..a1b589e --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip-24.0.dist-info/INSTALLER @@ -0,0 +1 @@ +pip diff --git a/.venv/lib/python3.11/site-packages/pip-24.0.dist-info/LICENSE.txt b/.venv/lib/python3.11/site-packages/pip-24.0.dist-info/LICENSE.txt new file mode 100644 index 0000000..8e7b65e --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip-24.0.dist-info/LICENSE.txt @@ -0,0 +1,20 @@ +Copyright (c) 2008-present The pip developers (see AUTHORS.txt file) + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/.venv/lib/python3.11/site-packages/pip-24.0.dist-info/METADATA b/.venv/lib/python3.11/site-packages/pip-24.0.dist-info/METADATA new file mode 100644 index 0000000..e5b45bd --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip-24.0.dist-info/METADATA @@ -0,0 +1,88 @@ +Metadata-Version: 2.1 +Name: pip +Version: 24.0 +Summary: The PyPA recommended tool for installing Python packages. +Author-email: The pip developers +License: MIT +Project-URL: Homepage, https://pip.pypa.io/ +Project-URL: Documentation, https://pip.pypa.io +Project-URL: Source, https://github.com/pypa/pip +Project-URL: Changelog, https://pip.pypa.io/en/stable/news/ +Classifier: Development Status :: 5 - Production/Stable +Classifier: Intended Audience :: Developers +Classifier: License :: OSI Approved :: MIT License +Classifier: Topic :: Software Development :: Build Tools +Classifier: Programming Language :: Python +Classifier: Programming Language :: Python :: 3 +Classifier: Programming Language :: Python :: 3 :: Only +Classifier: Programming Language :: Python :: 3.7 +Classifier: Programming Language :: Python :: 3.8 +Classifier: Programming Language :: Python :: 3.9 +Classifier: Programming Language :: Python :: 3.10 +Classifier: Programming Language :: Python :: 3.11 +Classifier: Programming Language :: Python :: 3.12 +Classifier: Programming Language :: Python :: Implementation :: CPython +Classifier: Programming Language :: Python :: Implementation :: PyPy +Requires-Python: >=3.7 +Description-Content-Type: text/x-rst +License-File: LICENSE.txt +License-File: AUTHORS.txt + +pip - The Python Package Installer +================================== + +.. image:: https://img.shields.io/pypi/v/pip.svg + :target: https://pypi.org/project/pip/ + :alt: PyPI + +.. image:: https://img.shields.io/pypi/pyversions/pip + :target: https://pypi.org/project/pip + :alt: PyPI - Python Version + +.. image:: https://readthedocs.org/projects/pip/badge/?version=latest + :target: https://pip.pypa.io/en/latest + :alt: Documentation + +pip is the `package installer`_ for Python. You can use pip to install packages from the `Python Package Index`_ and other indexes. + +Please take a look at our documentation for how to install and use pip: + +* `Installation`_ +* `Usage`_ + +We release updates regularly, with a new version every 3 months. Find more details in our documentation: + +* `Release notes`_ +* `Release process`_ + +If you find bugs, need help, or want to talk to the developers, please use our mailing lists or chat rooms: + +* `Issue tracking`_ +* `Discourse channel`_ +* `User IRC`_ + +If you want to get involved head over to GitHub to get the source code, look at our development documentation and feel free to jump on the developer mailing lists and chat rooms: + +* `GitHub page`_ +* `Development documentation`_ +* `Development IRC`_ + +Code of Conduct +--------------- + +Everyone interacting in the pip project's codebases, issue trackers, chat +rooms, and mailing lists is expected to follow the `PSF Code of Conduct`_. + +.. _package installer: https://packaging.python.org/guides/tool-recommendations/ +.. _Python Package Index: https://pypi.org +.. _Installation: https://pip.pypa.io/en/stable/installation/ +.. _Usage: https://pip.pypa.io/en/stable/ +.. _Release notes: https://pip.pypa.io/en/stable/news.html +.. _Release process: https://pip.pypa.io/en/latest/development/release-process/ +.. _GitHub page: https://github.com/pypa/pip +.. _Development documentation: https://pip.pypa.io/en/latest/development +.. _Issue tracking: https://github.com/pypa/pip/issues +.. _Discourse channel: https://discuss.python.org/c/packaging +.. _User IRC: https://kiwiirc.com/nextclient/#ircs://irc.libera.chat:+6697/pypa +.. _Development IRC: https://kiwiirc.com/nextclient/#ircs://irc.libera.chat:+6697/pypa-dev +.. _PSF Code of Conduct: https://github.com/pypa/.github/blob/main/CODE_OF_CONDUCT.md diff --git a/.venv/lib/python3.11/site-packages/pip-24.0.dist-info/RECORD b/.venv/lib/python3.11/site-packages/pip-24.0.dist-info/RECORD new file mode 100644 index 0000000..284a413 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip-24.0.dist-info/RECORD @@ -0,0 +1,1024 @@ +../../../bin/pip,sha256=WDOZXpkEf5R5gk8-_bBlhJlo9TmIfPJgLTmSmKKBSm0,289 +../../../bin/pip3,sha256=WDOZXpkEf5R5gk8-_bBlhJlo9TmIfPJgLTmSmKKBSm0,289 +../../../bin/pip3.11,sha256=WDOZXpkEf5R5gk8-_bBlhJlo9TmIfPJgLTmSmKKBSm0,289 +pip-24.0.dist-info/AUTHORS.txt,sha256=SwXm4nkwRkmtnO1ZY-dLy7EPeoQNXMNLby5CN3GlNhY,10388 +pip-24.0.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +pip-24.0.dist-info/LICENSE.txt,sha256=Y0MApmnUmurmWxLGxIySTFGkzfPR_whtw0VtyLyqIQQ,1093 +pip-24.0.dist-info/METADATA,sha256=kNEfJ3_Vho2mee4lfJdlbd5RHIqsfQJSMUB-bOkIOeI,3581 +pip-24.0.dist-info/RECORD,, +pip-24.0.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip-24.0.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92 +pip-24.0.dist-info/entry_points.txt,sha256=ynZN1_707_L23Oa8_O5LOxEoccj1nDa4xHT5galfN7o,125 +pip-24.0.dist-info/top_level.txt,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +pip/__init__.py,sha256=oAk1nFpLmUVS5Ln7NxvNoGUn5Vkn6FGQjPaNDf8Q8pk,355 +pip/__main__.py,sha256=WzbhHXTbSE6gBY19mNN9m4s5o_365LOvTYSgqgbdBhE,854 +pip/__pip-runner__.py,sha256=EnrfKmKMzWAdqg_JicLCOP9Y95Ux7zHh4ObvqLtQcjo,1444 +pip/__pycache__/__init__.cpython-311.pyc,, +pip/__pycache__/__main__.cpython-311.pyc,, +pip/__pycache__/__pip-runner__.cpython-311.pyc,, +pip/_internal/__init__.py,sha256=iqZ5-YQsQV08tkUc7L806Reop6tguLFWf70ySF6be0Y,515 +pip/_internal/__pycache__/__init__.cpython-311.pyc,, +pip/_internal/__pycache__/build_env.cpython-311.pyc,, +pip/_internal/__pycache__/cache.cpython-311.pyc,, +pip/_internal/__pycache__/configuration.cpython-311.pyc,, +pip/_internal/__pycache__/exceptions.cpython-311.pyc,, +pip/_internal/__pycache__/main.cpython-311.pyc,, +pip/_internal/__pycache__/pyproject.cpython-311.pyc,, +pip/_internal/__pycache__/self_outdated_check.cpython-311.pyc,, +pip/_internal/__pycache__/wheel_builder.cpython-311.pyc,, +pip/_internal/build_env.py,sha256=1ESpqw0iupS_K7phZK5zshVE5Czy9BtGLFU4W6Enva8,10243 +pip/_internal/cache.py,sha256=uiYD-9F0Bv1C8ZyWE85lpzDmQf7hcUkgL99GmI8I41Q,10370 +pip/_internal/cli/__init__.py,sha256=FkHBgpxxb-_gd6r1FjnNhfMOzAUYyXoXKJ6abijfcFU,132 +pip/_internal/cli/__pycache__/__init__.cpython-311.pyc,, +pip/_internal/cli/__pycache__/autocompletion.cpython-311.pyc,, +pip/_internal/cli/__pycache__/base_command.cpython-311.pyc,, +pip/_internal/cli/__pycache__/cmdoptions.cpython-311.pyc,, +pip/_internal/cli/__pycache__/command_context.cpython-311.pyc,, +pip/_internal/cli/__pycache__/main.cpython-311.pyc,, +pip/_internal/cli/__pycache__/main_parser.cpython-311.pyc,, +pip/_internal/cli/__pycache__/parser.cpython-311.pyc,, +pip/_internal/cli/__pycache__/progress_bars.cpython-311.pyc,, +pip/_internal/cli/__pycache__/req_command.cpython-311.pyc,, +pip/_internal/cli/__pycache__/spinners.cpython-311.pyc,, +pip/_internal/cli/__pycache__/status_codes.cpython-311.pyc,, +pip/_internal/cli/autocompletion.py,sha256=_br_5NgSxSuvPjMF0MLHzS5s6BpSkQAQHKrLK89VauM,6690 +pip/_internal/cli/base_command.py,sha256=iuVWGa2oTq7gBReo0er3Z0tXJ2oqBIC6QjDHcnDhKXY,8733 +pip/_internal/cli/cmdoptions.py,sha256=1EIm8yMixQMELO4QzogdIoWkvIlQqlAW0YnPeOmnvEA,30064 +pip/_internal/cli/command_context.py,sha256=RHgIPwtObh5KhMrd3YZTkl8zbVG-6Okml7YbFX4Ehg0,774 +pip/_internal/cli/main.py,sha256=Uzxt_YD1hIvB1AW5mxt6IVcht5G712AtMqdo51UMhmQ,2816 +pip/_internal/cli/main_parser.py,sha256=laDpsuBDl6kyfywp9eMMA9s84jfH2TJJn-vmL0GG90w,4338 +pip/_internal/cli/parser.py,sha256=KW6C3-7-4ErTNB0TfLTKwOdHcd-qefCeGnrOoE2r0RQ,10781 +pip/_internal/cli/progress_bars.py,sha256=So4mPoSjXkXiSHiTzzquH3VVyVD_njXlHJSExYPXAow,1968 +pip/_internal/cli/req_command.py,sha256=c7_XHABnXmD3_qlK9-r37KqdKBAcgmVKvQ2WcTrNLfc,18369 +pip/_internal/cli/spinners.py,sha256=hIJ83GerdFgFCdobIA23Jggetegl_uC4Sp586nzFbPE,5118 +pip/_internal/cli/status_codes.py,sha256=sEFHUaUJbqv8iArL3HAtcztWZmGOFX01hTesSytDEh0,116 +pip/_internal/commands/__init__.py,sha256=5oRO9O3dM2vGuh0bFw4HOVletryrz5HHMmmPWwJrH9U,3882 +pip/_internal/commands/__pycache__/__init__.cpython-311.pyc,, +pip/_internal/commands/__pycache__/cache.cpython-311.pyc,, +pip/_internal/commands/__pycache__/check.cpython-311.pyc,, +pip/_internal/commands/__pycache__/completion.cpython-311.pyc,, +pip/_internal/commands/__pycache__/configuration.cpython-311.pyc,, +pip/_internal/commands/__pycache__/debug.cpython-311.pyc,, +pip/_internal/commands/__pycache__/download.cpython-311.pyc,, +pip/_internal/commands/__pycache__/freeze.cpython-311.pyc,, +pip/_internal/commands/__pycache__/hash.cpython-311.pyc,, +pip/_internal/commands/__pycache__/help.cpython-311.pyc,, +pip/_internal/commands/__pycache__/index.cpython-311.pyc,, +pip/_internal/commands/__pycache__/inspect.cpython-311.pyc,, +pip/_internal/commands/__pycache__/install.cpython-311.pyc,, +pip/_internal/commands/__pycache__/list.cpython-311.pyc,, +pip/_internal/commands/__pycache__/search.cpython-311.pyc,, +pip/_internal/commands/__pycache__/show.cpython-311.pyc,, +pip/_internal/commands/__pycache__/uninstall.cpython-311.pyc,, +pip/_internal/commands/__pycache__/wheel.cpython-311.pyc,, +pip/_internal/commands/cache.py,sha256=xg76_ZFEBC6zoQ3gXLRfMZJft4z2a0RwH4GEFZC6nnU,7944 +pip/_internal/commands/check.py,sha256=Rb13Q28yoLh0j1gpx5SU0jlResNct21eQCRsnaO9xKA,1782 +pip/_internal/commands/completion.py,sha256=HT4lD0bgsflHq2IDgYfiEdp7IGGtE7s6MgI3xn0VQEw,4287 +pip/_internal/commands/configuration.py,sha256=n98enwp6y0b5G6fiRQjaZo43FlJKYve_daMhN-4BRNc,9766 +pip/_internal/commands/debug.py,sha256=63972uUCeMIGOdMMVeIUGrOjTOqTVWplFC82a-hcKyA,6777 +pip/_internal/commands/download.py,sha256=e4hw088zGo26WmJaMIRvCniLlLmoOjqolGyfHjsCkCQ,5335 +pip/_internal/commands/freeze.py,sha256=2qjQrH9KWi5Roav0CuR7vc7hWm4uOi_0l6tp3ESKDHM,3172 +pip/_internal/commands/hash.py,sha256=EVVOuvGtoPEdFi8SNnmdqlCQrhCxV-kJsdwtdcCnXGQ,1703 +pip/_internal/commands/help.py,sha256=gcc6QDkcgHMOuAn5UxaZwAStsRBrnGSn_yxjS57JIoM,1132 +pip/_internal/commands/index.py,sha256=CNXQer_PeZKSJooURcCFCBEKGfwyNoUWYP_MWczAcOM,4775 +pip/_internal/commands/inspect.py,sha256=2wSPt9yfr3r6g-s2S5L6PvRtaHNVyb4TuodMStJ39cw,3188 +pip/_internal/commands/install.py,sha256=VxDd-BD3a27ApeE2OK34rfBXS6Zo2wtemK9-HCwPqxM,28782 +pip/_internal/commands/list.py,sha256=7wRUUmdyyOknl-WZYbO_LtFQxHlWod3pjOY9yYH435o,12450 +pip/_internal/commands/search.py,sha256=sbBZiARRc050QquOKcCvOr2K3XLsoYebLKZGRi__iUI,5697 +pip/_internal/commands/show.py,sha256=t5jia4zcYJRJZy4U_Von7zMl03hJmmcofj6oDNTnj7Y,6419 +pip/_internal/commands/uninstall.py,sha256=OIqO9tqadY8kM4HwhFf1Q62fUIp7v8KDrTRo8yWMz7Y,3886 +pip/_internal/commands/wheel.py,sha256=CSnX8Pmf1oPCnd7j7bn1_f58G9KHNiAblvVJ5zykN-A,6476 +pip/_internal/configuration.py,sha256=XkAiBS0hpzsM-LF0Qu5hvPWO_Bs67-oQKRYFBuMbESs,14006 +pip/_internal/distributions/__init__.py,sha256=Hq6kt6gXBgjNit5hTTWLAzeCNOKoB-N0pGYSqehrli8,858 +pip/_internal/distributions/__pycache__/__init__.cpython-311.pyc,, +pip/_internal/distributions/__pycache__/base.cpython-311.pyc,, +pip/_internal/distributions/__pycache__/installed.cpython-311.pyc,, +pip/_internal/distributions/__pycache__/sdist.cpython-311.pyc,, +pip/_internal/distributions/__pycache__/wheel.cpython-311.pyc,, +pip/_internal/distributions/base.py,sha256=oRSEvnv2ZjBnargamnv2fcJa1n6gUDKaW0g6CWSEpWs,1743 +pip/_internal/distributions/installed.py,sha256=QinHFbWAQ8oE0pbD8MFZWkwlnfU1QYTccA1vnhrlYOU,842 +pip/_internal/distributions/sdist.py,sha256=4K3V0VNMllHbBzCJibjwd_tylUKpmIdu2AQyhplvCQo,6709 +pip/_internal/distributions/wheel.py,sha256=-ma3sOtUQj0AxXCEb6_Fhmjl3nh4k3A0HC2taAb2N-4,1277 +pip/_internal/exceptions.py,sha256=TmF1iNFEneSWaemwlg6a5bpPuq2cMHK7d1-SvjsQHb0,23634 +pip/_internal/index/__init__.py,sha256=vpt-JeTZefh8a-FC22ZeBSXFVbuBcXSGiILhQZJaNpQ,30 +pip/_internal/index/__pycache__/__init__.cpython-311.pyc,, +pip/_internal/index/__pycache__/collector.cpython-311.pyc,, +pip/_internal/index/__pycache__/package_finder.cpython-311.pyc,, +pip/_internal/index/__pycache__/sources.cpython-311.pyc,, +pip/_internal/index/collector.py,sha256=sH0tL_cOoCk6pLLfCSGVjFM4rPEJtllF-VobvAvLSH4,16590 +pip/_internal/index/package_finder.py,sha256=S_nC8gzVIMY6ikWfKoSOzRtoesUqnfNhAPl_BwSOusA,37843 +pip/_internal/index/sources.py,sha256=dJegiR9f86kslaAHcv9-R5L_XBf5Rzm_FkyPteDuPxI,8688 +pip/_internal/locations/__init__.py,sha256=Dh8LJWG8LRlDK4JIj9sfRF96TREzE--N_AIlx7Tqoe4,15365 +pip/_internal/locations/__pycache__/__init__.cpython-311.pyc,, +pip/_internal/locations/__pycache__/_distutils.cpython-311.pyc,, +pip/_internal/locations/__pycache__/_sysconfig.cpython-311.pyc,, +pip/_internal/locations/__pycache__/base.cpython-311.pyc,, +pip/_internal/locations/_distutils.py,sha256=H9ZHK_35rdDV1Qsmi4QeaBULjFT4Mbu6QuoVGkJ6QHI,6009 +pip/_internal/locations/_sysconfig.py,sha256=jyNVtUfMIf0mtyY-Xp1m9yQ8iwECozSVVFmjkN9a2yw,7680 +pip/_internal/locations/base.py,sha256=RQiPi1d4FVM2Bxk04dQhXZ2PqkeljEL2fZZ9SYqIQ78,2556 +pip/_internal/main.py,sha256=r-UnUe8HLo5XFJz8inTcOOTiu_sxNhgHb6VwlGUllOI,340 +pip/_internal/metadata/__init__.py,sha256=9pU3W3s-6HtjFuYhWcLTYVmSaziklPv7k2x8p7X1GmA,4339 +pip/_internal/metadata/__pycache__/__init__.cpython-311.pyc,, +pip/_internal/metadata/__pycache__/_json.cpython-311.pyc,, +pip/_internal/metadata/__pycache__/base.cpython-311.pyc,, +pip/_internal/metadata/__pycache__/pkg_resources.cpython-311.pyc,, +pip/_internal/metadata/_json.py,sha256=Rz5M5ciSNvITwaTQR6NfN8TgKgM5WfTws4D6CFknovE,2627 +pip/_internal/metadata/base.py,sha256=l3Wgku4xlgr8s4p6fS-3qQ4QKOpPbWLRwi5d9omEFG4,25907 +pip/_internal/metadata/importlib/__init__.py,sha256=jUUidoxnHcfITHHaAWG1G2i5fdBYklv_uJcjo2x7VYE,135 +pip/_internal/metadata/importlib/__pycache__/__init__.cpython-311.pyc,, +pip/_internal/metadata/importlib/__pycache__/_compat.cpython-311.pyc,, +pip/_internal/metadata/importlib/__pycache__/_dists.cpython-311.pyc,, +pip/_internal/metadata/importlib/__pycache__/_envs.cpython-311.pyc,, +pip/_internal/metadata/importlib/_compat.py,sha256=GAe_prIfCE4iUylrnr_2dJRlkkBVRUbOidEoID7LPoE,1882 +pip/_internal/metadata/importlib/_dists.py,sha256=UPl1wUujFqiwiltRJ1tMF42WRINO1sSpNNlYQ2mX0mk,8297 +pip/_internal/metadata/importlib/_envs.py,sha256=XTaFIYERP2JF0QUZuPx2ETiugXbPEcZ8q8ZKeht6Lpc,7456 +pip/_internal/metadata/pkg_resources.py,sha256=opjw4IBSqHvie6sXJ_cbT42meygoPEUfNURJuWZY7sk,10035 +pip/_internal/models/__init__.py,sha256=3DHUd_qxpPozfzouoqa9g9ts1Czr5qaHfFxbnxriepM,63 +pip/_internal/models/__pycache__/__init__.cpython-311.pyc,, +pip/_internal/models/__pycache__/candidate.cpython-311.pyc,, +pip/_internal/models/__pycache__/direct_url.cpython-311.pyc,, +pip/_internal/models/__pycache__/format_control.cpython-311.pyc,, +pip/_internal/models/__pycache__/index.cpython-311.pyc,, +pip/_internal/models/__pycache__/installation_report.cpython-311.pyc,, +pip/_internal/models/__pycache__/link.cpython-311.pyc,, +pip/_internal/models/__pycache__/scheme.cpython-311.pyc,, +pip/_internal/models/__pycache__/search_scope.cpython-311.pyc,, +pip/_internal/models/__pycache__/selection_prefs.cpython-311.pyc,, +pip/_internal/models/__pycache__/target_python.cpython-311.pyc,, +pip/_internal/models/__pycache__/wheel.cpython-311.pyc,, +pip/_internal/models/candidate.py,sha256=hEPu8VdGE5qVASv6vLz-R-Rgh5-7LMbai1jgthMCd8M,931 +pip/_internal/models/direct_url.py,sha256=FwouYBKcqckh7B-k2H3HVgRhhFTukFwqiS3kfvtFLSk,6889 +pip/_internal/models/format_control.py,sha256=wtsQqSK9HaUiNxQEuB-C62eVimw6G4_VQFxV9-_KDBE,2486 +pip/_internal/models/index.py,sha256=tYnL8oxGi4aSNWur0mG8DAP7rC6yuha_MwJO8xw0crI,1030 +pip/_internal/models/installation_report.py,sha256=zRVZoaz-2vsrezj_H3hLOhMZCK9c7TbzWgC-jOalD00,2818 +pip/_internal/models/link.py,sha256=XirOAGv1jgMu7vu87kuPbohGj7VHpwVrd2q3KUgVQNg,20777 +pip/_internal/models/scheme.py,sha256=3EFQp_ICu_shH1-TBqhl0QAusKCPDFOlgHFeN4XowWs,738 +pip/_internal/models/search_scope.py,sha256=ASVyyZxiJILw7bTIVVpJx8J293M3Hk5F33ilGn0e80c,4643 +pip/_internal/models/selection_prefs.py,sha256=KZdi66gsR-_RUXUr9uejssk3rmTHrQVJWeNA2sV-VSY,1907 +pip/_internal/models/target_python.py,sha256=34EkorrMuRvRp-bjqHKJ-bOO71m9xdjN2b8WWFEC2HU,4272 +pip/_internal/models/wheel.py,sha256=YqazoIZyma_Q1ejFa1C7NHKQRRWlvWkdK96VRKmDBeI,3600 +pip/_internal/network/__init__.py,sha256=jf6Tt5nV_7zkARBrKojIXItgejvoegVJVKUbhAa5Ioc,50 +pip/_internal/network/__pycache__/__init__.cpython-311.pyc,, +pip/_internal/network/__pycache__/auth.cpython-311.pyc,, +pip/_internal/network/__pycache__/cache.cpython-311.pyc,, +pip/_internal/network/__pycache__/download.cpython-311.pyc,, +pip/_internal/network/__pycache__/lazy_wheel.cpython-311.pyc,, +pip/_internal/network/__pycache__/session.cpython-311.pyc,, +pip/_internal/network/__pycache__/utils.cpython-311.pyc,, +pip/_internal/network/__pycache__/xmlrpc.cpython-311.pyc,, +pip/_internal/network/auth.py,sha256=TC-OcW2KU4W6R1hU4qPgQXvVH54adACpZz6sWq-R9NA,20541 +pip/_internal/network/cache.py,sha256=48A971qCzKNFvkb57uGEk7-0xaqPS0HWj2711QNTxkU,3935 +pip/_internal/network/download.py,sha256=i0Tn55CD5D7XYEFY3TxiYaCf0OaaTQ6SScNgCsSeV14,6086 +pip/_internal/network/lazy_wheel.py,sha256=2PXVduYZPCPZkkQFe1J1GbfHJWeCU--FXonGyIfw9eU,7638 +pip/_internal/network/session.py,sha256=9tqEDD8JiVaFdplOEXJxNo9cjRfBZ6RIa0yQQ_qBNiM,18698 +pip/_internal/network/utils.py,sha256=6A5SrUJEEUHxbGtbscwU2NpCyz-3ztiDlGWHpRRhsJ8,4073 +pip/_internal/network/xmlrpc.py,sha256=sAxzOacJ-N1NXGPvap9jC3zuYWSnnv3GXtgR2-E2APA,1838 +pip/_internal/operations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/operations/__pycache__/__init__.cpython-311.pyc,, +pip/_internal/operations/__pycache__/check.cpython-311.pyc,, +pip/_internal/operations/__pycache__/freeze.cpython-311.pyc,, +pip/_internal/operations/__pycache__/prepare.cpython-311.pyc,, +pip/_internal/operations/build/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/operations/build/__pycache__/__init__.cpython-311.pyc,, +pip/_internal/operations/build/__pycache__/build_tracker.cpython-311.pyc,, +pip/_internal/operations/build/__pycache__/metadata.cpython-311.pyc,, +pip/_internal/operations/build/__pycache__/metadata_editable.cpython-311.pyc,, +pip/_internal/operations/build/__pycache__/metadata_legacy.cpython-311.pyc,, +pip/_internal/operations/build/__pycache__/wheel.cpython-311.pyc,, +pip/_internal/operations/build/__pycache__/wheel_editable.cpython-311.pyc,, +pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-311.pyc,, +pip/_internal/operations/build/build_tracker.py,sha256=z-H5DOknZdBa3dh2Vq6VBMY5qLYIKmlj2p6CGZK5Lc8,4832 +pip/_internal/operations/build/metadata.py,sha256=9S0CUD8U3QqZeXp-Zyt8HxwU90lE4QrnYDgrqZDzBnc,1422 +pip/_internal/operations/build/metadata_editable.py,sha256=VLL7LvntKE8qxdhUdEJhcotFzUsOSI8NNS043xULKew,1474 +pip/_internal/operations/build/metadata_legacy.py,sha256=o-eU21As175hDC7dluM1fJJ_FqokTIShyWpjKaIpHZw,2198 +pip/_internal/operations/build/wheel.py,sha256=sT12FBLAxDC6wyrDorh8kvcZ1jG5qInCRWzzP-UkJiQ,1075 +pip/_internal/operations/build/wheel_editable.py,sha256=yOtoH6zpAkoKYEUtr8FhzrYnkNHQaQBjWQ2HYae1MQg,1417 +pip/_internal/operations/build/wheel_legacy.py,sha256=C9j6rukgQI1n_JeQLoZGuDdfUwzCXShyIdPTp6edbMQ,3064 +pip/_internal/operations/check.py,sha256=fsqA88iGaqftCr2tlP3sSU202CSkoODRtW0O-JU9M4Y,6806 +pip/_internal/operations/freeze.py,sha256=uqoeTAf6HOYVMR2UgAT8N85UZoGEVEoQdan_Ao6SOfk,9816 +pip/_internal/operations/install/__init__.py,sha256=mX7hyD2GNBO2mFGokDQ30r_GXv7Y_PLdtxcUv144e-s,51 +pip/_internal/operations/install/__pycache__/__init__.cpython-311.pyc,, +pip/_internal/operations/install/__pycache__/editable_legacy.cpython-311.pyc,, +pip/_internal/operations/install/__pycache__/wheel.cpython-311.pyc,, +pip/_internal/operations/install/editable_legacy.py,sha256=YeR0KadWXw_ZheC1NtAG1qVIEkOgRGHc23x-YtGW7NU,1282 +pip/_internal/operations/install/wheel.py,sha256=9hGb1c4bRnPIb2FG7CtUSPfPxqprmHQBtwIAlWPNTtE,27311 +pip/_internal/operations/prepare.py,sha256=57Oq87HfunX3Rbqp47FdaJr9cHbAKUm_3gv7WhBAqbE,28128 +pip/_internal/pyproject.py,sha256=4Xszp11xgr126yzG6BbJA0oaQ9WXuhb0jyUb-y_6lPQ,7152 +pip/_internal/req/__init__.py,sha256=TELFgZOof3lhMmaICVWL9U7PlhXo9OufokbMAJ6J2GI,2738 +pip/_internal/req/__pycache__/__init__.cpython-311.pyc,, +pip/_internal/req/__pycache__/constructors.cpython-311.pyc,, +pip/_internal/req/__pycache__/req_file.cpython-311.pyc,, +pip/_internal/req/__pycache__/req_install.cpython-311.pyc,, +pip/_internal/req/__pycache__/req_set.cpython-311.pyc,, +pip/_internal/req/__pycache__/req_uninstall.cpython-311.pyc,, +pip/_internal/req/constructors.py,sha256=8hlY56imEthLORRwmloyKz3YOyXymIaKsNB6P9ewvNI,19018 +pip/_internal/req/req_file.py,sha256=M8ttOZL-PwAj7scPElhW3ZD2hiD9mm_6FJAGIbwAzEI,17790 +pip/_internal/req/req_install.py,sha256=wtOPxkyRSM8comTks8oL1Gp2oyGqbH7JwIDRci2QiPk,35460 +pip/_internal/req/req_set.py,sha256=iMYDUToSgkxFyrP_OrTtPSgw4dwjRyGRDpGooTqeA4Y,4704 +pip/_internal/req/req_uninstall.py,sha256=nmvTQaRCC0iu-5Tw0djlXJhSj6WmqHRvT3qkkEdC35E,24551 +pip/_internal/resolution/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/resolution/__pycache__/__init__.cpython-311.pyc,, +pip/_internal/resolution/__pycache__/base.cpython-311.pyc,, +pip/_internal/resolution/base.py,sha256=qlmh325SBVfvG6Me9gc5Nsh5sdwHBwzHBq6aEXtKsLA,583 +pip/_internal/resolution/legacy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/resolution/legacy/__pycache__/__init__.cpython-311.pyc,, +pip/_internal/resolution/legacy/__pycache__/resolver.cpython-311.pyc,, +pip/_internal/resolution/legacy/resolver.py,sha256=Xk24jQ62GvLr4Mc7IjN_qiO88qp0BImzVmPIFz9QLOE,24025 +pip/_internal/resolution/resolvelib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-311.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/base.cpython-311.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-311.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-311.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-311.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-311.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-311.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-311.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-311.pyc,, +pip/_internal/resolution/resolvelib/base.py,sha256=jg5COmHLhmBIKOR-4spdJD3jyULYa1BdsqiBu2YJnJ4,5173 +pip/_internal/resolution/resolvelib/candidates.py,sha256=19Ki91Po-MSxBknGIfOGkaWkFdOznN0W_nKv7jL28L0,21052 +pip/_internal/resolution/resolvelib/factory.py,sha256=vqqk-hjchdhShwWVdeW2_A-5ZblLhE_nC_v3Mhz4Svc,32292 +pip/_internal/resolution/resolvelib/found_candidates.py,sha256=hvL3Hoa9VaYo-qEOZkBi2Iqw251UDxPz-uMHVaWmLpE,5705 +pip/_internal/resolution/resolvelib/provider.py,sha256=4t23ivjruqM6hKBX1KpGiTt-M4HGhRcZnGLV0c01K7U,9824 +pip/_internal/resolution/resolvelib/reporter.py,sha256=YFm9hQvz4DFCbjZeFTQ56hTz3Ac-mDBnHkeNRVvMHLY,3100 +pip/_internal/resolution/resolvelib/requirements.py,sha256=-kJONP0WjDfdTvBAs2vUXPgAnOyNIBEAXY4b72ogtPE,5696 +pip/_internal/resolution/resolvelib/resolver.py,sha256=nLJOsVMEVi2gQUVJoUFKMZAeu2f7GRMjGMvNSWyz0Bc,12592 +pip/_internal/self_outdated_check.py,sha256=saxQLB8UzIFtMScquytG10TOTsYVFJQ_mkW1NY-46wE,8378 +pip/_internal/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/utils/__pycache__/__init__.cpython-311.pyc,, +pip/_internal/utils/__pycache__/_jaraco_text.cpython-311.pyc,, +pip/_internal/utils/__pycache__/_log.cpython-311.pyc,, +pip/_internal/utils/__pycache__/appdirs.cpython-311.pyc,, +pip/_internal/utils/__pycache__/compat.cpython-311.pyc,, +pip/_internal/utils/__pycache__/compatibility_tags.cpython-311.pyc,, +pip/_internal/utils/__pycache__/datetime.cpython-311.pyc,, +pip/_internal/utils/__pycache__/deprecation.cpython-311.pyc,, +pip/_internal/utils/__pycache__/direct_url_helpers.cpython-311.pyc,, +pip/_internal/utils/__pycache__/egg_link.cpython-311.pyc,, +pip/_internal/utils/__pycache__/encoding.cpython-311.pyc,, +pip/_internal/utils/__pycache__/entrypoints.cpython-311.pyc,, +pip/_internal/utils/__pycache__/filesystem.cpython-311.pyc,, +pip/_internal/utils/__pycache__/filetypes.cpython-311.pyc,, +pip/_internal/utils/__pycache__/glibc.cpython-311.pyc,, +pip/_internal/utils/__pycache__/hashes.cpython-311.pyc,, +pip/_internal/utils/__pycache__/logging.cpython-311.pyc,, +pip/_internal/utils/__pycache__/misc.cpython-311.pyc,, +pip/_internal/utils/__pycache__/models.cpython-311.pyc,, +pip/_internal/utils/__pycache__/packaging.cpython-311.pyc,, +pip/_internal/utils/__pycache__/setuptools_build.cpython-311.pyc,, +pip/_internal/utils/__pycache__/subprocess.cpython-311.pyc,, +pip/_internal/utils/__pycache__/temp_dir.cpython-311.pyc,, +pip/_internal/utils/__pycache__/unpacking.cpython-311.pyc,, +pip/_internal/utils/__pycache__/urls.cpython-311.pyc,, +pip/_internal/utils/__pycache__/virtualenv.cpython-311.pyc,, +pip/_internal/utils/__pycache__/wheel.cpython-311.pyc,, +pip/_internal/utils/_jaraco_text.py,sha256=yvDGelTVugRayPaOF2k4ab0Ky4d3uOkAfuOQjASjImY,3351 +pip/_internal/utils/_log.py,sha256=-jHLOE_THaZz5BFcCnoSL9EYAtJ0nXem49s9of4jvKw,1015 +pip/_internal/utils/appdirs.py,sha256=swgcTKOm3daLeXTW6v5BUS2Ti2RvEnGRQYH_yDXklAo,1665 +pip/_internal/utils/compat.py,sha256=ACyBfLgj3_XG-iA5omEDrXqDM0cQKzi8h8HRBInzG6Q,1884 +pip/_internal/utils/compatibility_tags.py,sha256=ydin8QG8BHqYRsPY4OL6cmb44CbqXl1T0xxS97VhHkk,5377 +pip/_internal/utils/datetime.py,sha256=m21Y3wAtQc-ji6Veb6k_M5g6A0ZyFI4egchTdnwh-pQ,242 +pip/_internal/utils/deprecation.py,sha256=NKo8VqLioJ4nnXXGmW4KdasxF90EFHkZaHeX1fT08C8,3627 +pip/_internal/utils/direct_url_helpers.py,sha256=6F1tc2rcKaCZmgfVwsE6ObIe_Pux23mUVYA-2D9wCFc,3206 +pip/_internal/utils/egg_link.py,sha256=0FePZoUYKv4RGQ2t6x7w5Z427wbA_Uo3WZnAkrgsuqo,2463 +pip/_internal/utils/encoding.py,sha256=qqsXDtiwMIjXMEiIVSaOjwH5YmirCaK-dIzb6-XJsL0,1169 +pip/_internal/utils/entrypoints.py,sha256=YlhLTRl2oHBAuqhc-zmL7USS67TPWVHImjeAQHreZTQ,3064 +pip/_internal/utils/filesystem.py,sha256=RhMIXUaNVMGjc3rhsDahWQ4MavvEQDdqXqgq-F6fpw8,5122 +pip/_internal/utils/filetypes.py,sha256=i8XAQ0eFCog26Fw9yV0Yb1ygAqKYB1w9Cz9n0fj8gZU,716 +pip/_internal/utils/glibc.py,sha256=Mesxxgg3BLxheLZx-dSf30b6gKpOgdVXw6W--uHSszQ,3113 +pip/_internal/utils/hashes.py,sha256=MjOigC75z6qoRMkgHiHqot7eqxfwDZSrEflJMPm-bHE,5118 +pip/_internal/utils/logging.py,sha256=fdtuZJ-AKkqwDTANDvGcBEpssL8el7T1jnwk1CnZl3Y,11603 +pip/_internal/utils/misc.py,sha256=fNXwaeeikvnUt4CPMFIL4-IQbZDxxjj4jDpzCi4ZsOw,23623 +pip/_internal/utils/models.py,sha256=5GoYU586SrxURMvDn_jBMJInitviJg4O5-iOU-6I0WY,1193 +pip/_internal/utils/packaging.py,sha256=5Wm6_x7lKrlqVjPI5MBN_RurcRHwVYoQ7Ksrs84de7s,2108 +pip/_internal/utils/setuptools_build.py,sha256=ouXpud-jeS8xPyTPsXJ-m34NPvK5os45otAzdSV_IJE,4435 +pip/_internal/utils/subprocess.py,sha256=zzdimb75jVLE1GU4WlTZ055gczhD7n1y1xTcNc7vNZQ,9207 +pip/_internal/utils/temp_dir.py,sha256=DUAw22uFruQdK43i2L2K53C-CDjRCPeAsBKJpu-rHQ4,9312 +pip/_internal/utils/unpacking.py,sha256=SBb2iV1crb89MDRTEKY86R4A_UOWApTQn9VQVcMDOlE,8821 +pip/_internal/utils/urls.py,sha256=AhaesUGl-9it6uvG6fsFPOr9ynFpGaTMk4t5XTX7Z_Q,1759 +pip/_internal/utils/virtualenv.py,sha256=S6f7csYorRpiD6cvn3jISZYc3I8PJC43H5iMFpRAEDU,3456 +pip/_internal/utils/wheel.py,sha256=i4BwUNHattzN0ixy3HBAF04tZPRh2CcxaT6t86viwkE,4499 +pip/_internal/vcs/__init__.py,sha256=UAqvzpbi0VbZo3Ub6skEeZAw-ooIZR-zX_WpCbxyCoU,596 +pip/_internal/vcs/__pycache__/__init__.cpython-311.pyc,, +pip/_internal/vcs/__pycache__/bazaar.cpython-311.pyc,, +pip/_internal/vcs/__pycache__/git.cpython-311.pyc,, +pip/_internal/vcs/__pycache__/mercurial.cpython-311.pyc,, +pip/_internal/vcs/__pycache__/subversion.cpython-311.pyc,, +pip/_internal/vcs/__pycache__/versioncontrol.cpython-311.pyc,, +pip/_internal/vcs/bazaar.py,sha256=j0oin0fpGRHcCFCxEcpPCQoFEvA-DMLULKdGP8Nv76o,3519 +pip/_internal/vcs/git.py,sha256=CeKBGJnl6uskvvjkAUXrJVxbHJrpS_B_pyfFdjL3CRc,18121 +pip/_internal/vcs/mercurial.py,sha256=oULOhzJ2Uie-06d1omkL-_Gc6meGaUkyogvqG9ZCyPs,5249 +pip/_internal/vcs/subversion.py,sha256=vhZs8L-TNggXqM1bbhl-FpbxE3TrIB6Tgnx8fh3S2HE,11729 +pip/_internal/vcs/versioncontrol.py,sha256=3eIjtOMYvOY5qP6BMYIYDZ375CSuec6kSEB0bOo1cSs,22787 +pip/_internal/wheel_builder.py,sha256=qTTzQV8F6b1jNsFCda1TRQC8J7gK-m7iuRNgKo7Dj68,11801 +pip/_vendor/__init__.py,sha256=U51NPwXdA-wXOiANIQncYjcMp6txgeOL5nHxksJeyas,4993 +pip/_vendor/__pycache__/__init__.cpython-311.pyc,, +pip/_vendor/__pycache__/six.cpython-311.pyc,, +pip/_vendor/__pycache__/typing_extensions.cpython-311.pyc,, +pip/_vendor/cachecontrol/__init__.py,sha256=ctHagMhQXuvQDdm4TirZrwDOT5H8oBNAJqzdKI6sovk,676 +pip/_vendor/cachecontrol/__pycache__/__init__.cpython-311.pyc,, +pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-311.pyc,, +pip/_vendor/cachecontrol/__pycache__/adapter.cpython-311.pyc,, +pip/_vendor/cachecontrol/__pycache__/cache.cpython-311.pyc,, +pip/_vendor/cachecontrol/__pycache__/controller.cpython-311.pyc,, +pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-311.pyc,, +pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-311.pyc,, +pip/_vendor/cachecontrol/__pycache__/serialize.cpython-311.pyc,, +pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-311.pyc,, +pip/_vendor/cachecontrol/_cmd.py,sha256=iist2EpzJvDVIhMAxXq8iFnTBsiZAd6iplxfmNboNyk,1737 +pip/_vendor/cachecontrol/adapter.py,sha256=_CcWvUP9048qAZjsNqViaHbdcLs9mmFNixVfpO7oebE,6392 +pip/_vendor/cachecontrol/cache.py,sha256=OTQj72tUf8C1uEgczdl3Gc8vkldSzsTITKtDGKMx4z8,1952 +pip/_vendor/cachecontrol/caches/__init__.py,sha256=dtrrroK5BnADR1GWjCZ19aZ0tFsMfvFBtLQQU1sp_ag,303 +pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-311.pyc,, +pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-311.pyc,, +pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-311.pyc,, +pip/_vendor/cachecontrol/caches/file_cache.py,sha256=3z8AWKD-vfKeiJqIzLmJyIYtR2yd6Tsh3u1TyLRQoIQ,5352 +pip/_vendor/cachecontrol/caches/redis_cache.py,sha256=9rmqwtYu_ljVkW6_oLqbC7EaX_a8YT_yLuna-eS0dgo,1386 +pip/_vendor/cachecontrol/controller.py,sha256=keCFA3ZaNVaWTwHd6F1zqWhb4vyvNx_UvZuo5iIYMfo,18384 +pip/_vendor/cachecontrol/filewrapper.py,sha256=STttGmIPBvZzt2b51dUOwoWX5crcMCpKZOisM3f5BNc,4292 +pip/_vendor/cachecontrol/heuristics.py,sha256=fdFbk9W8IeLrjteIz_fK4mj2HD_Y7COXF2Uc8TgjT1c,4828 +pip/_vendor/cachecontrol/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/cachecontrol/serialize.py,sha256=0dHeMaDwysVAAnGVlhMOP4tDliohgNK0Jxk_zsOiWxw,7173 +pip/_vendor/cachecontrol/wrapper.py,sha256=hsGc7g8QGQTT-4f8tgz3AM5qwScg6FO0BSdLSRdEvpU,1417 +pip/_vendor/certifi/__init__.py,sha256=L_j-d0kYuA_MzA2_2hraF1ovf6KT6DTquRdV3paQwOk,94 +pip/_vendor/certifi/__main__.py,sha256=1k3Cr95vCxxGRGDljrW3wMdpZdL3Nhf0u1n-k2qdsCY,255 +pip/_vendor/certifi/__pycache__/__init__.cpython-311.pyc,, +pip/_vendor/certifi/__pycache__/__main__.cpython-311.pyc,, +pip/_vendor/certifi/__pycache__/core.cpython-311.pyc,, +pip/_vendor/certifi/cacert.pem,sha256=eU0Dn_3yd8BH4m8sfVj4Glhl2KDrcCSg-sEWT-pNJ88,281617 +pip/_vendor/certifi/core.py,sha256=ZwiOsv-sD_ouU1ft8wy_xZ3LQ7UbcVzyqj2XNyrsZis,4279 +pip/_vendor/certifi/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/chardet/__init__.py,sha256=57R-HSxj0PWmILMN0GFmUNqEMfrEVSamXyjD-W6_fbs,4797 +pip/_vendor/chardet/__pycache__/__init__.cpython-311.pyc,, +pip/_vendor/chardet/__pycache__/big5freq.cpython-311.pyc,, +pip/_vendor/chardet/__pycache__/big5prober.cpython-311.pyc,, +pip/_vendor/chardet/__pycache__/chardistribution.cpython-311.pyc,, +pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-311.pyc,, +pip/_vendor/chardet/__pycache__/charsetprober.cpython-311.pyc,, +pip/_vendor/chardet/__pycache__/codingstatemachine.cpython-311.pyc,, +pip/_vendor/chardet/__pycache__/codingstatemachinedict.cpython-311.pyc,, +pip/_vendor/chardet/__pycache__/cp949prober.cpython-311.pyc,, +pip/_vendor/chardet/__pycache__/enums.cpython-311.pyc,, +pip/_vendor/chardet/__pycache__/escprober.cpython-311.pyc,, +pip/_vendor/chardet/__pycache__/escsm.cpython-311.pyc,, +pip/_vendor/chardet/__pycache__/eucjpprober.cpython-311.pyc,, +pip/_vendor/chardet/__pycache__/euckrfreq.cpython-311.pyc,, +pip/_vendor/chardet/__pycache__/euckrprober.cpython-311.pyc,, +pip/_vendor/chardet/__pycache__/euctwfreq.cpython-311.pyc,, +pip/_vendor/chardet/__pycache__/euctwprober.cpython-311.pyc,, +pip/_vendor/chardet/__pycache__/gb2312freq.cpython-311.pyc,, +pip/_vendor/chardet/__pycache__/gb2312prober.cpython-311.pyc,, +pip/_vendor/chardet/__pycache__/hebrewprober.cpython-311.pyc,, +pip/_vendor/chardet/__pycache__/jisfreq.cpython-311.pyc,, +pip/_vendor/chardet/__pycache__/johabfreq.cpython-311.pyc,, +pip/_vendor/chardet/__pycache__/johabprober.cpython-311.pyc,, +pip/_vendor/chardet/__pycache__/jpcntx.cpython-311.pyc,, +pip/_vendor/chardet/__pycache__/langbulgarianmodel.cpython-311.pyc,, +pip/_vendor/chardet/__pycache__/langgreekmodel.cpython-311.pyc,, +pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-311.pyc,, +pip/_vendor/chardet/__pycache__/langhungarianmodel.cpython-311.pyc,, +pip/_vendor/chardet/__pycache__/langrussianmodel.cpython-311.pyc,, +pip/_vendor/chardet/__pycache__/langthaimodel.cpython-311.pyc,, +pip/_vendor/chardet/__pycache__/langturkishmodel.cpython-311.pyc,, +pip/_vendor/chardet/__pycache__/latin1prober.cpython-311.pyc,, +pip/_vendor/chardet/__pycache__/macromanprober.cpython-311.pyc,, +pip/_vendor/chardet/__pycache__/mbcharsetprober.cpython-311.pyc,, +pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-311.pyc,, +pip/_vendor/chardet/__pycache__/mbcssm.cpython-311.pyc,, +pip/_vendor/chardet/__pycache__/resultdict.cpython-311.pyc,, +pip/_vendor/chardet/__pycache__/sbcharsetprober.cpython-311.pyc,, +pip/_vendor/chardet/__pycache__/sbcsgroupprober.cpython-311.pyc,, +pip/_vendor/chardet/__pycache__/sjisprober.cpython-311.pyc,, +pip/_vendor/chardet/__pycache__/universaldetector.cpython-311.pyc,, +pip/_vendor/chardet/__pycache__/utf1632prober.cpython-311.pyc,, +pip/_vendor/chardet/__pycache__/utf8prober.cpython-311.pyc,, +pip/_vendor/chardet/__pycache__/version.cpython-311.pyc,, +pip/_vendor/chardet/big5freq.py,sha256=ltcfP-3PjlNHCoo5e4a7C4z-2DhBTXRfY6jbMbB7P30,31274 +pip/_vendor/chardet/big5prober.py,sha256=lPMfwCX6v2AaPgvFh_cSWZcgLDbWiFCHLZ_p9RQ9uxE,1763 +pip/_vendor/chardet/chardistribution.py,sha256=13B8XUG4oXDuLdXvfbIWwLFeR-ZU21AqTS1zcdON8bU,10032 +pip/_vendor/chardet/charsetgroupprober.py,sha256=UKK3SaIZB2PCdKSIS0gnvMtLR9JJX62M-fZJu3OlWyg,3915 +pip/_vendor/chardet/charsetprober.py,sha256=L3t8_wIOov8em-vZWOcbkdsrwe43N6_gqNh5pH7WPd4,5420 +pip/_vendor/chardet/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/chardet/cli/__pycache__/__init__.cpython-311.pyc,, +pip/_vendor/chardet/cli/__pycache__/chardetect.cpython-311.pyc,, +pip/_vendor/chardet/cli/chardetect.py,sha256=zibMVg5RpKb-ME9_7EYG4ZM2Sf07NHcQzZ12U-rYJho,3242 +pip/_vendor/chardet/codingstatemachine.py,sha256=K7k69sw3jY5DmTXoSJQVsUtFIQKYPQVOSJJhBuGv_yE,3732 +pip/_vendor/chardet/codingstatemachinedict.py,sha256=0GY3Hi2qIZvDrOOJ3AtqppM1RsYxr_66ER4EHjuMiMc,542 +pip/_vendor/chardet/cp949prober.py,sha256=0jKRV7fECuWI16rNnks0ZECKA1iZYCIEaP8A1ZvjUSI,1860 +pip/_vendor/chardet/enums.py,sha256=TzECiZoCKNMqgwU76cPCeKWFBqaWvAdLMev5_bCkhY8,1683 +pip/_vendor/chardet/escprober.py,sha256=Kho48X65xE0scFylIdeJjM2bcbvRvv0h0WUbMWrJD3A,4006 +pip/_vendor/chardet/escsm.py,sha256=AqyXpA2FQFD7k-buBty_7itGEYkhmVa8X09NLRul3QM,12176 +pip/_vendor/chardet/eucjpprober.py,sha256=5KYaM9fsxkRYzw1b5k0fL-j_-ezIw-ij9r97a9MHxLY,3934 +pip/_vendor/chardet/euckrfreq.py,sha256=3mHuRvXfsq_QcQysDQFb8qSudvTiol71C6Ic2w57tKM,13566 +pip/_vendor/chardet/euckrprober.py,sha256=hiFT6wM174GIwRvqDsIcuOc-dDsq2uPKMKbyV8-1Xnc,1753 +pip/_vendor/chardet/euctwfreq.py,sha256=2alILE1Lh5eqiFJZjzRkMQXolNJRHY5oBQd-vmZYFFM,36913 +pip/_vendor/chardet/euctwprober.py,sha256=NxbpNdBtU0VFI0bKfGfDkpP7S2_8_6FlO87dVH0ogws,1753 +pip/_vendor/chardet/gb2312freq.py,sha256=49OrdXzD-HXqwavkqjo8Z7gvs58hONNzDhAyMENNkvY,20735 +pip/_vendor/chardet/gb2312prober.py,sha256=KPEBueaSLSvBpFeINMu0D6TgHcR90e5PaQawifzF4o0,1759 +pip/_vendor/chardet/hebrewprober.py,sha256=96T_Lj_OmW-fK7JrSHojYjyG3fsGgbzkoTNleZ3kfYE,14537 +pip/_vendor/chardet/jisfreq.py,sha256=mm8tfrwqhpOd3wzZKS4NJqkYBQVcDfTM2JiQ5aW932E,25796 +pip/_vendor/chardet/johabfreq.py,sha256=dBpOYG34GRX6SL8k_LbS9rxZPMjLjoMlgZ03Pz5Hmqc,42498 +pip/_vendor/chardet/johabprober.py,sha256=O1Qw9nVzRnun7vZp4UZM7wvJSv9W941mEU9uDMnY3DU,1752 +pip/_vendor/chardet/jpcntx.py,sha256=uhHrYWkLxE_rF5OkHKInm0HUsrjgKHHVQvtt3UcvotA,27055 +pip/_vendor/chardet/langbulgarianmodel.py,sha256=vmbvYFP8SZkSxoBvLkFqKiH1sjma5ihk3PTpdy71Rr4,104562 +pip/_vendor/chardet/langgreekmodel.py,sha256=JfB7bupjjJH2w3X_mYnQr9cJA_7EuITC2cRW13fUjeI,98484 +pip/_vendor/chardet/langhebrewmodel.py,sha256=3HXHaLQPNAGcXnJjkIJfozNZLTvTJmf4W5Awi6zRRKc,98196 +pip/_vendor/chardet/langhungarianmodel.py,sha256=WxbeQIxkv8YtApiNqxQcvj-tMycsoI4Xy-fwkDHpP_Y,101363 +pip/_vendor/chardet/langrussianmodel.py,sha256=s395bTZ87ESTrZCOdgXbEjZ9P1iGPwCl_8xSsac_DLY,128035 +pip/_vendor/chardet/langthaimodel.py,sha256=7bJlQitRpTnVGABmbSznHnJwOHDy3InkTvtFUx13WQI,102774 +pip/_vendor/chardet/langturkishmodel.py,sha256=XY0eGdTIy4eQ9Xg1LVPZacb-UBhHBR-cq0IpPVHowKc,95372 +pip/_vendor/chardet/latin1prober.py,sha256=p15EEmFbmQUwbKLC7lOJVGHEZwcG45ubEZYTGu01J5g,5380 +pip/_vendor/chardet/macromanprober.py,sha256=9anfzmY6TBfUPDyBDOdY07kqmTHpZ1tK0jL-p1JWcOY,6077 +pip/_vendor/chardet/mbcharsetprober.py,sha256=Wr04WNI4F3X_VxEverNG-H25g7u-MDDKlNt-JGj-_uU,3715 +pip/_vendor/chardet/mbcsgroupprober.py,sha256=iRpaNBjV0DNwYPu_z6TiHgRpwYahiM7ztI_4kZ4Uz9A,2131 +pip/_vendor/chardet/mbcssm.py,sha256=hUtPvDYgWDaA2dWdgLsshbwRfm3Q5YRlRogdmeRUNQw,30391 +pip/_vendor/chardet/metadata/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/chardet/metadata/__pycache__/__init__.cpython-311.pyc,, +pip/_vendor/chardet/metadata/__pycache__/languages.cpython-311.pyc,, +pip/_vendor/chardet/metadata/languages.py,sha256=FhvBIdZFxRQ-dTwkb_0madRKgVBCaUMQz9I5xqjE5iQ,13560 +pip/_vendor/chardet/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/chardet/resultdict.py,sha256=ez4FRvN5KaSosJeJ2WzUyKdDdg35HDy_SSLPXKCdt5M,402 +pip/_vendor/chardet/sbcharsetprober.py,sha256=-nd3F90i7GpXLjehLVHqVBE0KlWzGvQUPETLBNn4o6U,6400 +pip/_vendor/chardet/sbcsgroupprober.py,sha256=gcgI0fOfgw_3YTClpbra_MNxwyEyJ3eUXraoLHYb59E,4137 +pip/_vendor/chardet/sjisprober.py,sha256=aqQufMzRw46ZpFlzmYaYeT2-nzmKb-hmcrApppJ862k,4007 +pip/_vendor/chardet/universaldetector.py,sha256=xYBrg4x0dd9WnT8qclfADVD9ondrUNkqPmvte1pa520,14848 +pip/_vendor/chardet/utf1632prober.py,sha256=pw1epGdMj1hDGiCu1AHqqzOEfjX8MVdiW7O1BlT8-eQ,8505 +pip/_vendor/chardet/utf8prober.py,sha256=8m08Ub5490H4jQ6LYXvFysGtgKoKsHUd2zH_i8_TnVw,2812 +pip/_vendor/chardet/version.py,sha256=lGtJcxGM44Qz4Cbk4rbbmrKxnNr1-97U25TameLehZw,244 +pip/_vendor/colorama/__init__.py,sha256=wePQA4U20tKgYARySLEC047ucNX-g8pRLpYBuiHlLb8,266 +pip/_vendor/colorama/__pycache__/__init__.cpython-311.pyc,, +pip/_vendor/colorama/__pycache__/ansi.cpython-311.pyc,, +pip/_vendor/colorama/__pycache__/ansitowin32.cpython-311.pyc,, +pip/_vendor/colorama/__pycache__/initialise.cpython-311.pyc,, +pip/_vendor/colorama/__pycache__/win32.cpython-311.pyc,, +pip/_vendor/colorama/__pycache__/winterm.cpython-311.pyc,, +pip/_vendor/colorama/ansi.py,sha256=Top4EeEuaQdBWdteKMEcGOTeKeF19Q-Wo_6_Cj5kOzQ,2522 +pip/_vendor/colorama/ansitowin32.py,sha256=vPNYa3OZbxjbuFyaVo0Tmhmy1FZ1lKMWCnT7odXpItk,11128 +pip/_vendor/colorama/initialise.py,sha256=-hIny86ClXo39ixh5iSCfUIa2f_h_bgKRDW7gqs-KLU,3325 +pip/_vendor/colorama/tests/__init__.py,sha256=MkgPAEzGQd-Rq0w0PZXSX2LadRWhUECcisJY8lSrm4Q,75 +pip/_vendor/colorama/tests/__pycache__/__init__.cpython-311.pyc,, +pip/_vendor/colorama/tests/__pycache__/ansi_test.cpython-311.pyc,, +pip/_vendor/colorama/tests/__pycache__/ansitowin32_test.cpython-311.pyc,, +pip/_vendor/colorama/tests/__pycache__/initialise_test.cpython-311.pyc,, +pip/_vendor/colorama/tests/__pycache__/isatty_test.cpython-311.pyc,, +pip/_vendor/colorama/tests/__pycache__/utils.cpython-311.pyc,, +pip/_vendor/colorama/tests/__pycache__/winterm_test.cpython-311.pyc,, +pip/_vendor/colorama/tests/ansi_test.py,sha256=FeViDrUINIZcr505PAxvU4AjXz1asEiALs9GXMhwRaE,2839 +pip/_vendor/colorama/tests/ansitowin32_test.py,sha256=RN7AIhMJ5EqDsYaCjVo-o4u8JzDD4ukJbmevWKS70rY,10678 +pip/_vendor/colorama/tests/initialise_test.py,sha256=BbPy-XfyHwJ6zKozuQOvNvQZzsx9vdb_0bYXn7hsBTc,6741 +pip/_vendor/colorama/tests/isatty_test.py,sha256=Pg26LRpv0yQDB5Ac-sxgVXG7hsA1NYvapFgApZfYzZg,1866 +pip/_vendor/colorama/tests/utils.py,sha256=1IIRylG39z5-dzq09R_ngufxyPZxgldNbrxKxUGwGKE,1079 +pip/_vendor/colorama/tests/winterm_test.py,sha256=qoWFPEjym5gm2RuMwpf3pOis3a5r_PJZFCzK254JL8A,3709 +pip/_vendor/colorama/win32.py,sha256=YQOKwMTwtGBbsY4dL5HYTvwTeP9wIQra5MvPNddpxZs,6181 +pip/_vendor/colorama/winterm.py,sha256=XCQFDHjPi6AHYNdZwy0tA02H-Jh48Jp-HvCjeLeLp3U,7134 +pip/_vendor/distlib/__init__.py,sha256=hJKF7FHoqbmGckncDuEINWo_OYkDNiHODtYXSMcvjcc,625 +pip/_vendor/distlib/__pycache__/__init__.cpython-311.pyc,, +pip/_vendor/distlib/__pycache__/compat.cpython-311.pyc,, +pip/_vendor/distlib/__pycache__/database.cpython-311.pyc,, +pip/_vendor/distlib/__pycache__/index.cpython-311.pyc,, +pip/_vendor/distlib/__pycache__/locators.cpython-311.pyc,, +pip/_vendor/distlib/__pycache__/manifest.cpython-311.pyc,, +pip/_vendor/distlib/__pycache__/markers.cpython-311.pyc,, +pip/_vendor/distlib/__pycache__/metadata.cpython-311.pyc,, +pip/_vendor/distlib/__pycache__/resources.cpython-311.pyc,, +pip/_vendor/distlib/__pycache__/scripts.cpython-311.pyc,, +pip/_vendor/distlib/__pycache__/util.cpython-311.pyc,, +pip/_vendor/distlib/__pycache__/version.cpython-311.pyc,, +pip/_vendor/distlib/__pycache__/wheel.cpython-311.pyc,, +pip/_vendor/distlib/compat.py,sha256=Un-uIBvy02w-D267OG4VEhuddqWgKj9nNkxVltAb75w,41487 +pip/_vendor/distlib/database.py,sha256=0V9Qvs0Vrxa2F_-hLWitIyVyRifJ0pCxyOI-kEOBwsA,51965 +pip/_vendor/distlib/index.py,sha256=lTbw268rRhj8dw1sib3VZ_0EhSGgoJO3FKJzSFMOaeA,20797 +pip/_vendor/distlib/locators.py,sha256=o1r_M86_bRLafSpetmyfX8KRtFu-_Q58abvQrnOSnbA,51767 +pip/_vendor/distlib/manifest.py,sha256=3qfmAmVwxRqU1o23AlfXrQGZzh6g_GGzTAP_Hb9C5zQ,14168 +pip/_vendor/distlib/markers.py,sha256=n3DfOh1yvZ_8EW7atMyoYeZFXjYla0Nz0itQlojCd0A,5268 +pip/_vendor/distlib/metadata.py,sha256=pB9WZ9mBfmQxc9OVIldLS5CjOoQRvKAvUwwQyKwKQtQ,39693 +pip/_vendor/distlib/resources.py,sha256=LwbPksc0A1JMbi6XnuPdMBUn83X7BPuFNWqPGEKI698,10820 +pip/_vendor/distlib/scripts.py,sha256=nQFXN6G7nOWNDUyxirUep-3WOlJhB7McvCs9zOnkGTI,18315 +pip/_vendor/distlib/t32.exe,sha256=a0GV5kCoWsMutvliiCKmIgV98eRZ33wXoS-XrqvJQVs,97792 +pip/_vendor/distlib/t64-arm.exe,sha256=68TAa32V504xVBnufojh0PcenpR3U4wAqTqf-MZqbPw,182784 +pip/_vendor/distlib/t64.exe,sha256=gaYY8hy4fbkHYTTnA4i26ct8IQZzkBG2pRdy0iyuBrc,108032 +pip/_vendor/distlib/util.py,sha256=XSznxEi_i3T20UJuaVc0qXHz5ksGUCW1khYlBprN_QE,67530 +pip/_vendor/distlib/version.py,sha256=9pXkduchve_aN7JG6iL9VTYV_kqNSGoc2Dwl8JuySnQ,23747 +pip/_vendor/distlib/w32.exe,sha256=R4csx3-OGM9kL4aPIzQKRo5TfmRSHZo6QWyLhDhNBks,91648 +pip/_vendor/distlib/w64-arm.exe,sha256=xdyYhKj0WDcVUOCb05blQYvzdYIKMbmJn2SZvzkcey4,168448 +pip/_vendor/distlib/w64.exe,sha256=ejGf-rojoBfXseGLpya6bFTFPWRG21X5KvU8J5iU-K0,101888 +pip/_vendor/distlib/wheel.py,sha256=FVQCve8u-L0QYk5-YTZc7s4WmNQdvjRWTK08KXzZVX4,43958 +pip/_vendor/distro/__init__.py,sha256=2fHjF-SfgPvjyNZ1iHh_wjqWdR_Yo5ODHwZC0jLBPhc,981 +pip/_vendor/distro/__main__.py,sha256=bu9d3TifoKciZFcqRBuygV3GSuThnVD_m2IK4cz96Vs,64 +pip/_vendor/distro/__pycache__/__init__.cpython-311.pyc,, +pip/_vendor/distro/__pycache__/__main__.cpython-311.pyc,, +pip/_vendor/distro/__pycache__/distro.cpython-311.pyc,, +pip/_vendor/distro/distro.py,sha256=UZO1LjIhtFCMdlbiz39gj3raV-Amf3SBwzGzfApiMHw,49330 +pip/_vendor/distro/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/idna/__init__.py,sha256=KJQN1eQBr8iIK5SKrJ47lXvxG0BJ7Lm38W4zT0v_8lk,849 +pip/_vendor/idna/__pycache__/__init__.cpython-311.pyc,, +pip/_vendor/idna/__pycache__/codec.cpython-311.pyc,, +pip/_vendor/idna/__pycache__/compat.cpython-311.pyc,, +pip/_vendor/idna/__pycache__/core.cpython-311.pyc,, +pip/_vendor/idna/__pycache__/idnadata.cpython-311.pyc,, +pip/_vendor/idna/__pycache__/intranges.cpython-311.pyc,, +pip/_vendor/idna/__pycache__/package_data.cpython-311.pyc,, +pip/_vendor/idna/__pycache__/uts46data.cpython-311.pyc,, +pip/_vendor/idna/codec.py,sha256=6ly5odKfqrytKT9_7UrlGklHnf1DSK2r9C6cSM4sa28,3374 +pip/_vendor/idna/compat.py,sha256=0_sOEUMT4CVw9doD3vyRhX80X19PwqFoUBs7gWsFME4,321 +pip/_vendor/idna/core.py,sha256=1JxchwKzkxBSn7R_oCE12oBu3eVux0VzdxolmIad24M,12950 +pip/_vendor/idna/idnadata.py,sha256=xUjqKqiJV8Ho_XzBpAtv5JFoVPSupK-SUXvtjygUHqw,44375 +pip/_vendor/idna/intranges.py,sha256=YBr4fRYuWH7kTKS2tXlFjM24ZF1Pdvcir-aywniInqg,1881 +pip/_vendor/idna/package_data.py,sha256=C_jHJzmX8PI4xq0jpzmcTMxpb5lDsq4o5VyxQzlVrZE,21 +pip/_vendor/idna/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/idna/uts46data.py,sha256=zvjZU24s58_uAS850Mcd0NnD0X7_gCMAMjzWNIeUJdc,206539 +pip/_vendor/msgpack/__init__.py,sha256=hyGhlnmcJkxryJBKC3X5FnEph375kQoL_mG8LZUuXgY,1132 +pip/_vendor/msgpack/__pycache__/__init__.cpython-311.pyc,, +pip/_vendor/msgpack/__pycache__/exceptions.cpython-311.pyc,, +pip/_vendor/msgpack/__pycache__/ext.cpython-311.pyc,, +pip/_vendor/msgpack/__pycache__/fallback.cpython-311.pyc,, +pip/_vendor/msgpack/exceptions.py,sha256=dCTWei8dpkrMsQDcjQk74ATl9HsIBH0ybt8zOPNqMYc,1081 +pip/_vendor/msgpack/ext.py,sha256=C5MK8JhVYGYFWPvxsORsqZAnvOXefYQ57m1Ym0luW5M,6079 +pip/_vendor/msgpack/fallback.py,sha256=tvNBHyxxFbuVlC8GZShETClJxjLiDMOja4XwwyvNm2g,34544 +pip/_vendor/packaging/__about__.py,sha256=ugASIO2w1oUyH8_COqQ2X_s0rDhjbhQC3yJocD03h2c,661 +pip/_vendor/packaging/__init__.py,sha256=b9Kk5MF7KxhhLgcDmiUWukN-LatWFxPdNug0joPhHSk,497 +pip/_vendor/packaging/__pycache__/__about__.cpython-311.pyc,, +pip/_vendor/packaging/__pycache__/__init__.cpython-311.pyc,, +pip/_vendor/packaging/__pycache__/_manylinux.cpython-311.pyc,, +pip/_vendor/packaging/__pycache__/_musllinux.cpython-311.pyc,, +pip/_vendor/packaging/__pycache__/_structures.cpython-311.pyc,, +pip/_vendor/packaging/__pycache__/markers.cpython-311.pyc,, +pip/_vendor/packaging/__pycache__/requirements.cpython-311.pyc,, +pip/_vendor/packaging/__pycache__/specifiers.cpython-311.pyc,, +pip/_vendor/packaging/__pycache__/tags.cpython-311.pyc,, +pip/_vendor/packaging/__pycache__/utils.cpython-311.pyc,, +pip/_vendor/packaging/__pycache__/version.cpython-311.pyc,, +pip/_vendor/packaging/_manylinux.py,sha256=XcbiXB-qcjv3bcohp6N98TMpOP4_j3m-iOA8ptK2GWY,11488 +pip/_vendor/packaging/_musllinux.py,sha256=_KGgY_qc7vhMGpoqss25n2hiLCNKRtvz9mCrS7gkqyc,4378 +pip/_vendor/packaging/_structures.py,sha256=q3eVNmbWJGG_S0Dit_S3Ao8qQqz_5PYTXFAKBZe5yr4,1431 +pip/_vendor/packaging/markers.py,sha256=AJBOcY8Oq0kYc570KuuPTkvuqjAlhufaE2c9sCUbm64,8487 +pip/_vendor/packaging/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/packaging/requirements.py,sha256=NtDlPBtojpn1IUC85iMjPNsUmufjpSlwnNA-Xb4m5NA,4676 +pip/_vendor/packaging/specifiers.py,sha256=LRQ0kFsHrl5qfcFNEEJrIFYsnIHQUJXY9fIsakTrrqE,30110 +pip/_vendor/packaging/tags.py,sha256=lmsnGNiJ8C4D_Pf9PbM0qgbZvD9kmB9lpZBQUZa3R_Y,15699 +pip/_vendor/packaging/utils.py,sha256=dJjeat3BS-TYn1RrUFVwufUMasbtzLfYRoy_HXENeFQ,4200 +pip/_vendor/packaging/version.py,sha256=_fLRNrFrxYcHVfyo8vk9j8s6JM8N_xsSxVFr6RJyco8,14665 +pip/_vendor/pkg_resources/__init__.py,sha256=hTAeJCNYb7dJseIDVsYK3mPQep_gphj4tQh-bspX8bg,109364 +pip/_vendor/pkg_resources/__pycache__/__init__.cpython-311.pyc,, +pip/_vendor/platformdirs/__init__.py,sha256=SkhEYVyC_HUHC6KX7n4M_6coyRMtEB38QMyOYIAX6Yk,20155 +pip/_vendor/platformdirs/__main__.py,sha256=fVvSiTzr2-RM6IsjWjj4fkaOtDOgDhUWv6sA99do4CQ,1476 +pip/_vendor/platformdirs/__pycache__/__init__.cpython-311.pyc,, +pip/_vendor/platformdirs/__pycache__/__main__.cpython-311.pyc,, +pip/_vendor/platformdirs/__pycache__/android.cpython-311.pyc,, +pip/_vendor/platformdirs/__pycache__/api.cpython-311.pyc,, +pip/_vendor/platformdirs/__pycache__/macos.cpython-311.pyc,, +pip/_vendor/platformdirs/__pycache__/unix.cpython-311.pyc,, +pip/_vendor/platformdirs/__pycache__/version.cpython-311.pyc,, +pip/_vendor/platformdirs/__pycache__/windows.cpython-311.pyc,, +pip/_vendor/platformdirs/android.py,sha256=y_EEMKwYl2-bzYBDovksSn8m76on0Lda8eyJksVQE9U,7211 +pip/_vendor/platformdirs/api.py,sha256=jWtX06jAJytYrkJDOqEls97mCkyHRSZkoqUlbMK5Qew,7132 +pip/_vendor/platformdirs/macos.py,sha256=LueVOoVgGWDBwQb8OFwXkVKfVn33CM1Lkwf1-A86tRQ,3678 +pip/_vendor/platformdirs/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/platformdirs/unix.py,sha256=22JhR8ZY0aLxSVCFnKrc6f1iz6Gv42K24Daj7aTjfSg,8809 +pip/_vendor/platformdirs/version.py,sha256=mavZTQIJIXfdewEaSTn7EWrNfPZWeRofb-74xqW5f2M,160 +pip/_vendor/platformdirs/windows.py,sha256=4TtbPGoWG2PRgI11uquDa7eRk8TcxvnUNuuMGZItnXc,9573 +pip/_vendor/pygments/__init__.py,sha256=6AuDljQtvf89DTNUyWM7k3oUlP_lq70NU-INKKteOBY,2983 +pip/_vendor/pygments/__main__.py,sha256=es8EKMvXj5yToIfQ-pf3Dv5TnIeeM6sME0LW-n4ecHo,353 +pip/_vendor/pygments/__pycache__/__init__.cpython-311.pyc,, +pip/_vendor/pygments/__pycache__/__main__.cpython-311.pyc,, +pip/_vendor/pygments/__pycache__/cmdline.cpython-311.pyc,, +pip/_vendor/pygments/__pycache__/console.cpython-311.pyc,, +pip/_vendor/pygments/__pycache__/filter.cpython-311.pyc,, +pip/_vendor/pygments/__pycache__/formatter.cpython-311.pyc,, +pip/_vendor/pygments/__pycache__/lexer.cpython-311.pyc,, +pip/_vendor/pygments/__pycache__/modeline.cpython-311.pyc,, +pip/_vendor/pygments/__pycache__/plugin.cpython-311.pyc,, +pip/_vendor/pygments/__pycache__/regexopt.cpython-311.pyc,, +pip/_vendor/pygments/__pycache__/scanner.cpython-311.pyc,, +pip/_vendor/pygments/__pycache__/sphinxext.cpython-311.pyc,, +pip/_vendor/pygments/__pycache__/style.cpython-311.pyc,, +pip/_vendor/pygments/__pycache__/token.cpython-311.pyc,, +pip/_vendor/pygments/__pycache__/unistring.cpython-311.pyc,, +pip/_vendor/pygments/__pycache__/util.cpython-311.pyc,, +pip/_vendor/pygments/cmdline.py,sha256=byxYJp9gnjVeyhRlZ3UTMgo_LhkXh1afvN8wJBtAcc8,23685 +pip/_vendor/pygments/console.py,sha256=2wZ5W-U6TudJD1_NLUwjclMpbomFM91lNv11_60sfGY,1697 +pip/_vendor/pygments/filter.py,sha256=j5aLM9a9wSx6eH1oy473oSkJ02hGWNptBlVo4s1g_30,1938 +pip/_vendor/pygments/filters/__init__.py,sha256=h_koYkUFo-FFUxjs564JHUAz7O3yJpVwI6fKN3MYzG0,40386 +pip/_vendor/pygments/filters/__pycache__/__init__.cpython-311.pyc,, +pip/_vendor/pygments/formatter.py,sha256=J9OL9hXLJKZk7moUgKwpjW9HNf4WlJFg_o_-Z_S_tTY,4178 +pip/_vendor/pygments/formatters/__init__.py,sha256=_xgAcdFKr0QNYwh_i98AU9hvfP3X2wAkhElFcRRF3Uo,5424 +pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-311.pyc,, +pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-311.pyc,, +pip/_vendor/pygments/formatters/__pycache__/bbcode.cpython-311.pyc,, +pip/_vendor/pygments/formatters/__pycache__/groff.cpython-311.pyc,, +pip/_vendor/pygments/formatters/__pycache__/html.cpython-311.pyc,, +pip/_vendor/pygments/formatters/__pycache__/img.cpython-311.pyc,, +pip/_vendor/pygments/formatters/__pycache__/irc.cpython-311.pyc,, +pip/_vendor/pygments/formatters/__pycache__/latex.cpython-311.pyc,, +pip/_vendor/pygments/formatters/__pycache__/other.cpython-311.pyc,, +pip/_vendor/pygments/formatters/__pycache__/pangomarkup.cpython-311.pyc,, +pip/_vendor/pygments/formatters/__pycache__/rtf.cpython-311.pyc,, +pip/_vendor/pygments/formatters/__pycache__/svg.cpython-311.pyc,, +pip/_vendor/pygments/formatters/__pycache__/terminal.cpython-311.pyc,, +pip/_vendor/pygments/formatters/__pycache__/terminal256.cpython-311.pyc,, +pip/_vendor/pygments/formatters/_mapping.py,sha256=1Cw37FuQlNacnxRKmtlPX4nyLoX9_ttko5ZwscNUZZ4,4176 +pip/_vendor/pygments/formatters/bbcode.py,sha256=r1b7wzWTJouADDLh-Z11iRi4iQxD0JKJ1qHl6mOYxsA,3314 +pip/_vendor/pygments/formatters/groff.py,sha256=xy8Zf3tXOo6MWrXh7yPGWx3lVEkg_DhY4CxmsDb0IVo,5094 +pip/_vendor/pygments/formatters/html.py,sha256=PIzAyilNqaTzSSP2slDG2VDLE3qNioWy2rgtSSoviuI,35610 +pip/_vendor/pygments/formatters/img.py,sha256=XKXmg2_XONrR4mtq2jfEU8XCsoln3VSGTw-UYiEokys,21938 +pip/_vendor/pygments/formatters/irc.py,sha256=Ep-m8jd3voFO6Fv57cUGFmz6JVA67IEgyiBOwv0N4a0,4981 +pip/_vendor/pygments/formatters/latex.py,sha256=FGzJ-YqSTE8z_voWPdzvLY5Tq8jE_ygjGjM6dXZJ8-k,19351 +pip/_vendor/pygments/formatters/other.py,sha256=gPxkk5BdAzWTCgbEHg1lpLi-1F6ZPh5A_aotgLXHnzg,5073 +pip/_vendor/pygments/formatters/pangomarkup.py,sha256=6LKnQc8yh49f802bF0sPvbzck4QivMYqqoXAPaYP8uU,2212 +pip/_vendor/pygments/formatters/rtf.py,sha256=aA0v_psW6KZI3N18TKDifxeL6mcF8EDXcPXDWI4vhVQ,5014 +pip/_vendor/pygments/formatters/svg.py,sha256=dQONWypbzfvzGCDtdp3M_NJawScJvM2DiHbx1k-ww7g,7335 +pip/_vendor/pygments/formatters/terminal.py,sha256=FG-rpjRpFmNpiGB4NzIucvxq6sQIXB3HOTo2meTKtrU,4674 +pip/_vendor/pygments/formatters/terminal256.py,sha256=13SJ3D5pFdqZ9zROE6HbWnBDwHvOGE8GlsmqGhprRp4,11753 +pip/_vendor/pygments/lexer.py,sha256=2BpqLlT2ExvOOi7vnjK5nB4Fp-m52ldiPaXMox5uwug,34618 +pip/_vendor/pygments/lexers/__init__.py,sha256=j5KEi5O_VQ5GS59H49l-10gzUOkWKxlwGeVMlGO2MMk,12130 +pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-311.pyc,, +pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-311.pyc,, +pip/_vendor/pygments/lexers/__pycache__/python.cpython-311.pyc,, +pip/_vendor/pygments/lexers/_mapping.py,sha256=Hts4r_ZQ8icftGM7gkBPeED5lyVSv4affFgXYE6Ap04,72281 +pip/_vendor/pygments/lexers/python.py,sha256=c7jnmKFU9DLxTJW0UbwXt6Z9FJqbBlVsWA1Qr9xSA_w,53424 +pip/_vendor/pygments/modeline.py,sha256=eF2vO4LpOGoPvIKKkbPfnyut8hT4UiebZPpb-BYGQdI,986 +pip/_vendor/pygments/plugin.py,sha256=j1Fh310RbV2DQ9nvkmkqvlj38gdyuYKllLnGxbc8sJM,2591 +pip/_vendor/pygments/regexopt.py,sha256=jg1ALogcYGU96TQS9isBl6dCrvw5y5--BP_K-uFk_8s,3072 +pip/_vendor/pygments/scanner.py,sha256=b_nu5_f3HCgSdp5S_aNRBQ1MSCm4ZjDwec2OmTRickw,3092 +pip/_vendor/pygments/sphinxext.py,sha256=wBFYm180qea9JKt__UzhRlNRNhczPDFDaqGD21sbuso,6882 +pip/_vendor/pygments/style.py,sha256=C4qyoJrUTkq-OV3iO-8Vz3UtWYpJwSTdh5_vlGCGdNQ,6257 +pip/_vendor/pygments/styles/__init__.py,sha256=he7HjQx7sC0d2kfTVLjUs0J15mtToJM6M1brwIm9--Q,3700 +pip/_vendor/pygments/styles/__pycache__/__init__.cpython-311.pyc,, +pip/_vendor/pygments/token.py,sha256=seNsmcch9OEHXYirh8Ool7w8xDhfNTbLj5rHAC-gc_o,6184 +pip/_vendor/pygments/unistring.py,sha256=FaUfG14NBJEKLQoY9qj6JYeXrpYcLmKulghdxOGFaOc,63223 +pip/_vendor/pygments/util.py,sha256=AEVY0qonyyEMgv4Do2dINrrqUAwUk2XYSqHM650uzek,10230 +pip/_vendor/pyparsing/__init__.py,sha256=9m1JbE2JTLdBG0Mb6B0lEaZj181Wx5cuPXZpsbHEYgE,9116 +pip/_vendor/pyparsing/__pycache__/__init__.cpython-311.pyc,, +pip/_vendor/pyparsing/__pycache__/actions.cpython-311.pyc,, +pip/_vendor/pyparsing/__pycache__/common.cpython-311.pyc,, +pip/_vendor/pyparsing/__pycache__/core.cpython-311.pyc,, +pip/_vendor/pyparsing/__pycache__/exceptions.cpython-311.pyc,, +pip/_vendor/pyparsing/__pycache__/helpers.cpython-311.pyc,, +pip/_vendor/pyparsing/__pycache__/results.cpython-311.pyc,, +pip/_vendor/pyparsing/__pycache__/testing.cpython-311.pyc,, +pip/_vendor/pyparsing/__pycache__/unicode.cpython-311.pyc,, +pip/_vendor/pyparsing/__pycache__/util.cpython-311.pyc,, +pip/_vendor/pyparsing/actions.py,sha256=05uaIPOznJPQ7VgRdmGCmG4sDnUPtwgv5qOYIqbL2UY,6567 +pip/_vendor/pyparsing/common.py,sha256=p-3c83E5-DjlkF35G0O9-kjQRpoejP-2_z0hxZ-eol4,13387 +pip/_vendor/pyparsing/core.py,sha256=yvuRlLpXSF8mgk-QhiW3OVLqD9T0rsj9tbibhRH4Yaw,224445 +pip/_vendor/pyparsing/diagram/__init__.py,sha256=nxmDOoYF9NXuLaGYy01tKFjkNReWJlrGFuJNWEiTo84,24215 +pip/_vendor/pyparsing/diagram/__pycache__/__init__.cpython-311.pyc,, +pip/_vendor/pyparsing/exceptions.py,sha256=6Jc6W1eDZBzyFu1J0YrcdNFVBC-RINujZmveSnB8Rxw,9523 +pip/_vendor/pyparsing/helpers.py,sha256=BZJHCA8SS0pYio30KGQTc9w2qMOaK4YpZ7hcvHbnTgk,38646 +pip/_vendor/pyparsing/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/pyparsing/results.py,sha256=9dyqQ-w3MjfmxWbFt8KEPU6IfXeyRdoWp2Og802rUQY,26692 +pip/_vendor/pyparsing/testing.py,sha256=eJncg0p83zm1FTPvM9auNT6oavIvXaibmRFDf1qmwkY,13488 +pip/_vendor/pyparsing/unicode.py,sha256=fAPdsJiARFbkPAih6NkYry0dpj4jPqelGVMlE4wWFW8,10646 +pip/_vendor/pyparsing/util.py,sha256=vTMzTdwSDyV8d_dSgquUTdWgBFoA_W30nfxEJDsshRQ,8670 +pip/_vendor/pyproject_hooks/__init__.py,sha256=kCehmy0UaBa9oVMD7ZIZrnswfnP3LXZ5lvnNJAL5JBM,491 +pip/_vendor/pyproject_hooks/__pycache__/__init__.cpython-311.pyc,, +pip/_vendor/pyproject_hooks/__pycache__/_compat.cpython-311.pyc,, +pip/_vendor/pyproject_hooks/__pycache__/_impl.cpython-311.pyc,, +pip/_vendor/pyproject_hooks/_compat.py,sha256=by6evrYnqkisiM-MQcvOKs5bgDMzlOSgZqRHNqf04zE,138 +pip/_vendor/pyproject_hooks/_impl.py,sha256=61GJxzQip0IInhuO69ZI5GbNQ82XEDUB_1Gg5_KtUoc,11920 +pip/_vendor/pyproject_hooks/_in_process/__init__.py,sha256=9gQATptbFkelkIy0OfWFEACzqxXJMQDWCH9rBOAZVwQ,546 +pip/_vendor/pyproject_hooks/_in_process/__pycache__/__init__.cpython-311.pyc,, +pip/_vendor/pyproject_hooks/_in_process/__pycache__/_in_process.cpython-311.pyc,, +pip/_vendor/pyproject_hooks/_in_process/_in_process.py,sha256=m2b34c917IW5o-Q_6TYIHlsK9lSUlNiyrITTUH_zwew,10927 +pip/_vendor/requests/__init__.py,sha256=owujob4dk45Siy4EYtbCKR6wcFph7E04a_v_OuAacBA,5169 +pip/_vendor/requests/__pycache__/__init__.cpython-311.pyc,, +pip/_vendor/requests/__pycache__/__version__.cpython-311.pyc,, +pip/_vendor/requests/__pycache__/_internal_utils.cpython-311.pyc,, +pip/_vendor/requests/__pycache__/adapters.cpython-311.pyc,, +pip/_vendor/requests/__pycache__/api.cpython-311.pyc,, +pip/_vendor/requests/__pycache__/auth.cpython-311.pyc,, +pip/_vendor/requests/__pycache__/certs.cpython-311.pyc,, +pip/_vendor/requests/__pycache__/compat.cpython-311.pyc,, +pip/_vendor/requests/__pycache__/cookies.cpython-311.pyc,, +pip/_vendor/requests/__pycache__/exceptions.cpython-311.pyc,, +pip/_vendor/requests/__pycache__/help.cpython-311.pyc,, +pip/_vendor/requests/__pycache__/hooks.cpython-311.pyc,, +pip/_vendor/requests/__pycache__/models.cpython-311.pyc,, +pip/_vendor/requests/__pycache__/packages.cpython-311.pyc,, +pip/_vendor/requests/__pycache__/sessions.cpython-311.pyc,, +pip/_vendor/requests/__pycache__/status_codes.cpython-311.pyc,, +pip/_vendor/requests/__pycache__/structures.cpython-311.pyc,, +pip/_vendor/requests/__pycache__/utils.cpython-311.pyc,, +pip/_vendor/requests/__version__.py,sha256=ssI3Ezt7PaxgkOW45GhtwPUclo_SO_ygtIm4A74IOfw,435 +pip/_vendor/requests/_internal_utils.py,sha256=nMQymr4hs32TqVo5AbCrmcJEhvPUh7xXlluyqwslLiQ,1495 +pip/_vendor/requests/adapters.py,sha256=idj6cZcId3L5xNNeJ7ieOLtw3awJk5A64xUfetHwq3M,19697 +pip/_vendor/requests/api.py,sha256=q61xcXq4tmiImrvcSVLTbFyCiD2F-L_-hWKGbz4y8vg,6449 +pip/_vendor/requests/auth.py,sha256=h-HLlVx9j8rKV5hfSAycP2ApOSglTz77R0tz7qCbbEE,10187 +pip/_vendor/requests/certs.py,sha256=PVPooB0jP5hkZEULSCwC074532UFbR2Ptgu0I5zwmCs,575 +pip/_vendor/requests/compat.py,sha256=IhK9quyX0RRuWTNcg6d2JGSAOUbM6mym2p_2XjLTwf4,1286 +pip/_vendor/requests/cookies.py,sha256=kD3kNEcCj-mxbtf5fJsSaT86eGoEYpD3X0CSgpzl7BM,18560 +pip/_vendor/requests/exceptions.py,sha256=FA-_kVwBZ2jhXauRctN_ewHVK25b-fj0Azyz1THQ0Kk,3823 +pip/_vendor/requests/help.py,sha256=FnAAklv8MGm_qb2UilDQgS6l0cUttiCFKUjx0zn2XNA,3879 +pip/_vendor/requests/hooks.py,sha256=CiuysiHA39V5UfcCBXFIx83IrDpuwfN9RcTUgv28ftQ,733 +pip/_vendor/requests/models.py,sha256=dDZ-iThotky-Noq9yy97cUEJhr3wnY6mv-xR_ePg_lk,35288 +pip/_vendor/requests/packages.py,sha256=njJmVifY4aSctuW3PP5EFRCxjEwMRDO6J_feG2dKWsI,695 +pip/_vendor/requests/sessions.py,sha256=-LvTzrPtetSTrR3buxu4XhdgMrJFLB1q5D7P--L2Xhw,30373 +pip/_vendor/requests/status_codes.py,sha256=FvHmT5uH-_uimtRz5hH9VCbt7VV-Nei2J9upbej6j8g,4235 +pip/_vendor/requests/structures.py,sha256=-IbmhVz06S-5aPSZuUthZ6-6D9XOjRuTXHOabY041XM,2912 +pip/_vendor/requests/utils.py,sha256=kOPn0qYD6xRTzaxbqTdYiSInBZHl6379AJsyIgzYGLY,33460 +pip/_vendor/resolvelib/__init__.py,sha256=h509TdEcpb5-44JonaU3ex2TM15GVBLjM9CNCPwnTTs,537 +pip/_vendor/resolvelib/__pycache__/__init__.cpython-311.pyc,, +pip/_vendor/resolvelib/__pycache__/providers.cpython-311.pyc,, +pip/_vendor/resolvelib/__pycache__/reporters.cpython-311.pyc,, +pip/_vendor/resolvelib/__pycache__/resolvers.cpython-311.pyc,, +pip/_vendor/resolvelib/__pycache__/structs.cpython-311.pyc,, +pip/_vendor/resolvelib/compat/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/resolvelib/compat/__pycache__/__init__.cpython-311.pyc,, +pip/_vendor/resolvelib/compat/__pycache__/collections_abc.cpython-311.pyc,, +pip/_vendor/resolvelib/compat/collections_abc.py,sha256=uy8xUZ-NDEw916tugUXm8HgwCGiMO0f-RcdnpkfXfOs,156 +pip/_vendor/resolvelib/providers.py,sha256=fuuvVrCetu5gsxPB43ERyjfO8aReS3rFQHpDgiItbs4,5871 +pip/_vendor/resolvelib/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/resolvelib/reporters.py,sha256=TSbRmWzTc26w0ggsV1bxVpeWDB8QNIre6twYl7GIZBE,1601 +pip/_vendor/resolvelib/resolvers.py,sha256=G8rsLZSq64g5VmIq-lB7UcIJ1gjAxIQJmTF4REZleQ0,20511 +pip/_vendor/resolvelib/structs.py,sha256=0_1_XO8z_CLhegP3Vpf9VJ3zJcfLm0NOHRM-i0Ykz3o,4963 +pip/_vendor/rich/__init__.py,sha256=dRxjIL-SbFVY0q3IjSMrfgBTHrm1LZDgLOygVBwiYZc,6090 +pip/_vendor/rich/__main__.py,sha256=TT8sb9PTnsnKhhrGuHkLN0jdN0dtKhtPkEr9CidDbPM,8478 +pip/_vendor/rich/__pycache__/__init__.cpython-311.pyc,, +pip/_vendor/rich/__pycache__/__main__.cpython-311.pyc,, +pip/_vendor/rich/__pycache__/_cell_widths.cpython-311.pyc,, +pip/_vendor/rich/__pycache__/_emoji_codes.cpython-311.pyc,, +pip/_vendor/rich/__pycache__/_emoji_replace.cpython-311.pyc,, +pip/_vendor/rich/__pycache__/_export_format.cpython-311.pyc,, +pip/_vendor/rich/__pycache__/_extension.cpython-311.pyc,, +pip/_vendor/rich/__pycache__/_fileno.cpython-311.pyc,, +pip/_vendor/rich/__pycache__/_inspect.cpython-311.pyc,, +pip/_vendor/rich/__pycache__/_log_render.cpython-311.pyc,, +pip/_vendor/rich/__pycache__/_loop.cpython-311.pyc,, +pip/_vendor/rich/__pycache__/_null_file.cpython-311.pyc,, +pip/_vendor/rich/__pycache__/_palettes.cpython-311.pyc,, +pip/_vendor/rich/__pycache__/_pick.cpython-311.pyc,, +pip/_vendor/rich/__pycache__/_ratio.cpython-311.pyc,, +pip/_vendor/rich/__pycache__/_spinners.cpython-311.pyc,, +pip/_vendor/rich/__pycache__/_stack.cpython-311.pyc,, +pip/_vendor/rich/__pycache__/_timer.cpython-311.pyc,, +pip/_vendor/rich/__pycache__/_win32_console.cpython-311.pyc,, +pip/_vendor/rich/__pycache__/_windows.cpython-311.pyc,, +pip/_vendor/rich/__pycache__/_windows_renderer.cpython-311.pyc,, +pip/_vendor/rich/__pycache__/_wrap.cpython-311.pyc,, +pip/_vendor/rich/__pycache__/abc.cpython-311.pyc,, +pip/_vendor/rich/__pycache__/align.cpython-311.pyc,, +pip/_vendor/rich/__pycache__/ansi.cpython-311.pyc,, +pip/_vendor/rich/__pycache__/bar.cpython-311.pyc,, +pip/_vendor/rich/__pycache__/box.cpython-311.pyc,, +pip/_vendor/rich/__pycache__/cells.cpython-311.pyc,, +pip/_vendor/rich/__pycache__/color.cpython-311.pyc,, +pip/_vendor/rich/__pycache__/color_triplet.cpython-311.pyc,, +pip/_vendor/rich/__pycache__/columns.cpython-311.pyc,, +pip/_vendor/rich/__pycache__/console.cpython-311.pyc,, +pip/_vendor/rich/__pycache__/constrain.cpython-311.pyc,, +pip/_vendor/rich/__pycache__/containers.cpython-311.pyc,, +pip/_vendor/rich/__pycache__/control.cpython-311.pyc,, +pip/_vendor/rich/__pycache__/default_styles.cpython-311.pyc,, +pip/_vendor/rich/__pycache__/diagnose.cpython-311.pyc,, +pip/_vendor/rich/__pycache__/emoji.cpython-311.pyc,, +pip/_vendor/rich/__pycache__/errors.cpython-311.pyc,, +pip/_vendor/rich/__pycache__/file_proxy.cpython-311.pyc,, +pip/_vendor/rich/__pycache__/filesize.cpython-311.pyc,, +pip/_vendor/rich/__pycache__/highlighter.cpython-311.pyc,, +pip/_vendor/rich/__pycache__/json.cpython-311.pyc,, +pip/_vendor/rich/__pycache__/jupyter.cpython-311.pyc,, +pip/_vendor/rich/__pycache__/layout.cpython-311.pyc,, +pip/_vendor/rich/__pycache__/live.cpython-311.pyc,, +pip/_vendor/rich/__pycache__/live_render.cpython-311.pyc,, +pip/_vendor/rich/__pycache__/logging.cpython-311.pyc,, +pip/_vendor/rich/__pycache__/markup.cpython-311.pyc,, +pip/_vendor/rich/__pycache__/measure.cpython-311.pyc,, +pip/_vendor/rich/__pycache__/padding.cpython-311.pyc,, +pip/_vendor/rich/__pycache__/pager.cpython-311.pyc,, +pip/_vendor/rich/__pycache__/palette.cpython-311.pyc,, +pip/_vendor/rich/__pycache__/panel.cpython-311.pyc,, +pip/_vendor/rich/__pycache__/pretty.cpython-311.pyc,, +pip/_vendor/rich/__pycache__/progress.cpython-311.pyc,, +pip/_vendor/rich/__pycache__/progress_bar.cpython-311.pyc,, +pip/_vendor/rich/__pycache__/prompt.cpython-311.pyc,, +pip/_vendor/rich/__pycache__/protocol.cpython-311.pyc,, +pip/_vendor/rich/__pycache__/region.cpython-311.pyc,, +pip/_vendor/rich/__pycache__/repr.cpython-311.pyc,, +pip/_vendor/rich/__pycache__/rule.cpython-311.pyc,, +pip/_vendor/rich/__pycache__/scope.cpython-311.pyc,, +pip/_vendor/rich/__pycache__/screen.cpython-311.pyc,, +pip/_vendor/rich/__pycache__/segment.cpython-311.pyc,, +pip/_vendor/rich/__pycache__/spinner.cpython-311.pyc,, +pip/_vendor/rich/__pycache__/status.cpython-311.pyc,, +pip/_vendor/rich/__pycache__/style.cpython-311.pyc,, +pip/_vendor/rich/__pycache__/styled.cpython-311.pyc,, +pip/_vendor/rich/__pycache__/syntax.cpython-311.pyc,, +pip/_vendor/rich/__pycache__/table.cpython-311.pyc,, +pip/_vendor/rich/__pycache__/terminal_theme.cpython-311.pyc,, +pip/_vendor/rich/__pycache__/text.cpython-311.pyc,, +pip/_vendor/rich/__pycache__/theme.cpython-311.pyc,, +pip/_vendor/rich/__pycache__/themes.cpython-311.pyc,, +pip/_vendor/rich/__pycache__/traceback.cpython-311.pyc,, +pip/_vendor/rich/__pycache__/tree.cpython-311.pyc,, +pip/_vendor/rich/_cell_widths.py,sha256=2n4EiJi3X9sqIq0O16kUZ_zy6UYMd3xFfChlKfnW1Hc,10096 +pip/_vendor/rich/_emoji_codes.py,sha256=hu1VL9nbVdppJrVoijVshRlcRRe_v3dju3Mmd2sKZdY,140235 +pip/_vendor/rich/_emoji_replace.py,sha256=n-kcetsEUx2ZUmhQrfeMNc-teeGhpuSQ5F8VPBsyvDo,1064 +pip/_vendor/rich/_export_format.py,sha256=qxgV3nKnXQu1hfbnRVswPYy-AwIg1X0LSC47cK5s8jk,2100 +pip/_vendor/rich/_extension.py,sha256=Xt47QacCKwYruzjDi-gOBq724JReDj9Cm9xUi5fr-34,265 +pip/_vendor/rich/_fileno.py,sha256=HWZxP5C2ajMbHryvAQZseflVfQoGzsKOHzKGsLD8ynQ,799 +pip/_vendor/rich/_inspect.py,sha256=oZJGw31e64dwXSCmrDnvZbwVb1ZKhWfU8wI3VWohjJk,9695 +pip/_vendor/rich/_log_render.py,sha256=1ByI0PA1ZpxZY3CGJOK54hjlq4X-Bz_boIjIqCd8Kns,3225 +pip/_vendor/rich/_loop.py,sha256=hV_6CLdoPm0va22Wpw4zKqM0RYsz3TZxXj0PoS-9eDQ,1236 +pip/_vendor/rich/_null_file.py,sha256=tGSXk_v-IZmbj1GAzHit8A3kYIQMiCpVsCFfsC-_KJ4,1387 +pip/_vendor/rich/_palettes.py,sha256=cdev1JQKZ0JvlguV9ipHgznTdnvlIzUFDBb0It2PzjI,7063 +pip/_vendor/rich/_pick.py,sha256=evDt8QN4lF5CiwrUIXlOJCntitBCOsI3ZLPEIAVRLJU,423 +pip/_vendor/rich/_ratio.py,sha256=2lLSliL025Y-YMfdfGbutkQDevhcyDqc-DtUYW9mU70,5472 +pip/_vendor/rich/_spinners.py,sha256=U2r1_g_1zSjsjiUdAESc2iAMc3i4ri_S8PYP6kQ5z1I,19919 +pip/_vendor/rich/_stack.py,sha256=-C8OK7rxn3sIUdVwxZBBpeHhIzX0eI-VM3MemYfaXm0,351 +pip/_vendor/rich/_timer.py,sha256=zelxbT6oPFZnNrwWPpc1ktUeAT-Vc4fuFcRZLQGLtMI,417 +pip/_vendor/rich/_win32_console.py,sha256=P0vxI2fcndym1UU1S37XAzQzQnkyY7YqAKmxm24_gug,22820 +pip/_vendor/rich/_windows.py,sha256=dvNl9TmfPzNVxiKk5WDFihErZ5796g2UC9-KGGyfXmk,1926 +pip/_vendor/rich/_windows_renderer.py,sha256=t74ZL3xuDCP3nmTp9pH1L5LiI2cakJuQRQleHCJerlk,2783 +pip/_vendor/rich/_wrap.py,sha256=xfV_9t0Sg6rzimmrDru8fCVmUlalYAcHLDfrJZnbbwQ,1840 +pip/_vendor/rich/abc.py,sha256=ON-E-ZqSSheZ88VrKX2M3PXpFbGEUUZPMa_Af0l-4f0,890 +pip/_vendor/rich/align.py,sha256=Ji-Yokfkhnfe_xMmr4ISjZB07TJXggBCOYoYa-HDAr8,10368 +pip/_vendor/rich/ansi.py,sha256=iD6532QYqnBm6hADulKjrV8l8kFJ-9fEVooHJHH3hMg,6906 +pip/_vendor/rich/bar.py,sha256=a7UD303BccRCrEhGjfMElpv5RFYIinaAhAuqYqhUvmw,3264 +pip/_vendor/rich/box.py,sha256=FJ6nI3jD7h2XNFU138bJUt2HYmWOlRbltoCEuIAZhew,9842 +pip/_vendor/rich/cells.py,sha256=627ztJs9zOL-38HJ7kXBerR-gT8KBfYC8UzEwMJDYYo,4509 +pip/_vendor/rich/color.py,sha256=9Gh958U3f75WVdLTeC0U9nkGTn2n0wnojKpJ6jQEkIE,18224 +pip/_vendor/rich/color_triplet.py,sha256=3lhQkdJbvWPoLDO-AnYImAWmJvV5dlgYNCVZ97ORaN4,1054 +pip/_vendor/rich/columns.py,sha256=HUX0KcMm9dsKNi11fTbiM_h2iDtl8ySCaVcxlalEzq8,7131 +pip/_vendor/rich/console.py,sha256=pDvkbLkvtZIMIwQx_jkZ-seyNl4zGBLviXoWXte9fwg,99218 +pip/_vendor/rich/constrain.py,sha256=1VIPuC8AgtKWrcncQrjBdYqA3JVWysu6jZo1rrh7c7Q,1288 +pip/_vendor/rich/containers.py,sha256=aKgm5UDHn5Nmui6IJaKdsZhbHClh_X7D-_Wg8Ehrr7s,5497 +pip/_vendor/rich/control.py,sha256=DSkHTUQLorfSERAKE_oTAEUFefZnZp4bQb4q8rHbKws,6630 +pip/_vendor/rich/default_styles.py,sha256=-Fe318kMVI_IwciK5POpThcO0-9DYJ67TZAN6DlmlmM,8082 +pip/_vendor/rich/diagnose.py,sha256=an6uouwhKPAlvQhYpNNpGq9EJysfMIOvvCbO3oSoR24,972 +pip/_vendor/rich/emoji.py,sha256=omTF9asaAnsM4yLY94eR_9dgRRSm1lHUszX20D1yYCQ,2501 +pip/_vendor/rich/errors.py,sha256=5pP3Kc5d4QJ_c0KFsxrfyhjiPVe7J1zOqSFbFAzcV-Y,642 +pip/_vendor/rich/file_proxy.py,sha256=Tl9THMDZ-Pk5Wm8sI1gGg_U5DhusmxD-FZ0fUbcU0W0,1683 +pip/_vendor/rich/filesize.py,sha256=9fTLAPCAwHmBXdRv7KZU194jSgNrRb6Wx7RIoBgqeKY,2508 +pip/_vendor/rich/highlighter.py,sha256=p3C1g4QYzezFKdR7NF9EhPbzQDvdPUhGRgSyGGEmPko,9584 +pip/_vendor/rich/json.py,sha256=EYp9ucj-nDjYDkHCV6Mk1ve8nUOpuFLaW76X50Mis2M,5032 +pip/_vendor/rich/jupyter.py,sha256=QyoKoE_8IdCbrtiSHp9TsTSNyTHY0FO5whE7jOTd9UE,3252 +pip/_vendor/rich/layout.py,sha256=RFYL6HdCFsHf9WRpcvi3w-fpj-8O5dMZ8W96VdKNdbI,14007 +pip/_vendor/rich/live.py,sha256=vZzYvu7fqwlv3Gthl2xiw1Dc_O80VlGcCV0DOHwCyDM,14273 +pip/_vendor/rich/live_render.py,sha256=zElm3PrfSIvjOce28zETHMIUf9pFYSUA5o0AflgUP64,3667 +pip/_vendor/rich/logging.py,sha256=uB-cB-3Q4bmXDLLpbOWkmFviw-Fde39zyMV6tKJ2WHQ,11903 +pip/_vendor/rich/markup.py,sha256=xzF4uAafiEeEYDJYt_vUnJOGoTU8RrH-PH7WcWYXjCg,8198 +pip/_vendor/rich/measure.py,sha256=HmrIJX8sWRTHbgh8MxEay_83VkqNW_70s8aKP5ZcYI8,5305 +pip/_vendor/rich/padding.py,sha256=kTFGsdGe0os7tXLnHKpwTI90CXEvrceeZGCshmJy5zw,4970 +pip/_vendor/rich/pager.py,sha256=SO_ETBFKbg3n_AgOzXm41Sv36YxXAyI3_R-KOY2_uSc,828 +pip/_vendor/rich/palette.py,sha256=lInvR1ODDT2f3UZMfL1grq7dY_pDdKHw4bdUgOGaM4Y,3396 +pip/_vendor/rich/panel.py,sha256=wGMe40J8KCGgQoM0LyjRErmGIkv2bsYA71RCXThD0xE,10574 +pip/_vendor/rich/pretty.py,sha256=eLEYN9xVaMNuA6EJVYm4li7HdOHxCqmVKvnOqJpyFt0,35852 +pip/_vendor/rich/progress.py,sha256=n4KF9vky8_5iYeXcyZPEvzyLplWlDvFLkM5JI0Bs08A,59706 +pip/_vendor/rich/progress_bar.py,sha256=cEoBfkc3lLwqba4XKsUpy4vSQKDh2QQ5J2J94-ACFoo,8165 +pip/_vendor/rich/prompt.py,sha256=x0mW-pIPodJM4ry6grgmmLrl8VZp99kqcmdnBe70YYA,11303 +pip/_vendor/rich/protocol.py,sha256=5hHHDDNHckdk8iWH5zEbi-zuIVSF5hbU2jIo47R7lTE,1391 +pip/_vendor/rich/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/rich/region.py,sha256=rNT9xZrVZTYIXZC0NYn41CJQwYNbR-KecPOxTgQvB8Y,166 +pip/_vendor/rich/repr.py,sha256=9Z8otOmM-tyxnyTodvXlectP60lwahjGiDTrbrxPSTg,4431 +pip/_vendor/rich/rule.py,sha256=0fNaS_aERa3UMRc3T5WMpN_sumtDxfaor2y3of1ftBk,4602 +pip/_vendor/rich/scope.py,sha256=TMUU8qo17thyqQCPqjDLYpg_UU1k5qVd-WwiJvnJVas,2843 +pip/_vendor/rich/screen.py,sha256=YoeReESUhx74grqb0mSSb9lghhysWmFHYhsbMVQjXO8,1591 +pip/_vendor/rich/segment.py,sha256=XLnJEFvcV3bjaVzMNUJiem3n8lvvI9TJ5PTu-IG2uTg,24247 +pip/_vendor/rich/spinner.py,sha256=15koCmF0DQeD8-k28Lpt6X_zJQUlzEhgo_6A6uy47lc,4339 +pip/_vendor/rich/status.py,sha256=gJsIXIZeSo3urOyxRUjs6VrhX5CZrA0NxIQ-dxhCnwo,4425 +pip/_vendor/rich/style.py,sha256=3hiocH_4N8vwRm3-8yFWzM7tSwjjEven69XqWasSQwM,27073 +pip/_vendor/rich/styled.py,sha256=eZNnzGrI4ki_54pgY3Oj0T-x3lxdXTYh4_ryDB24wBU,1258 +pip/_vendor/rich/syntax.py,sha256=jgDiVCK6cpR0NmBOpZmIu-Ud4eaW7fHvjJZkDbjpcSA,35173 +pip/_vendor/rich/table.py,sha256=-WzesL-VJKsaiDU3uyczpJMHy6VCaSewBYJwx8RudI8,39684 +pip/_vendor/rich/terminal_theme.py,sha256=1j5-ufJfnvlAo5Qsi_ACZiXDmwMXzqgmFByObT9-yJY,3370 +pip/_vendor/rich/text.py,sha256=_8JBlSau0c2z8ENOZMi1hJ7M1ZGY408E4-hXjHyyg1A,45525 +pip/_vendor/rich/theme.py,sha256=belFJogzA0W0HysQabKaHOc3RWH2ko3fQAJhoN-AFdo,3777 +pip/_vendor/rich/themes.py,sha256=0xgTLozfabebYtcJtDdC5QkX5IVUEaviqDUJJh4YVFk,102 +pip/_vendor/rich/traceback.py,sha256=yCLVrCtyoFNENd9mkm2xeG3KmqkTwH9xpFOO7p2Bq0A,29604 +pip/_vendor/rich/tree.py,sha256=BMbUYNjS9uodNPfvtY_odmU09GA5QzcMbQ5cJZhllQI,9169 +pip/_vendor/six.py,sha256=TOOfQi7nFGfMrIvtdr6wX4wyHH8M7aknmuLfo2cBBrM,34549 +pip/_vendor/tenacity/__init__.py,sha256=3kvAL6KClq8GFo2KFhmOzskRKSDQI-ubrlfZ8AQEEI0,20493 +pip/_vendor/tenacity/__pycache__/__init__.cpython-311.pyc,, +pip/_vendor/tenacity/__pycache__/_asyncio.cpython-311.pyc,, +pip/_vendor/tenacity/__pycache__/_utils.cpython-311.pyc,, +pip/_vendor/tenacity/__pycache__/after.cpython-311.pyc,, +pip/_vendor/tenacity/__pycache__/before.cpython-311.pyc,, +pip/_vendor/tenacity/__pycache__/before_sleep.cpython-311.pyc,, +pip/_vendor/tenacity/__pycache__/nap.cpython-311.pyc,, +pip/_vendor/tenacity/__pycache__/retry.cpython-311.pyc,, +pip/_vendor/tenacity/__pycache__/stop.cpython-311.pyc,, +pip/_vendor/tenacity/__pycache__/tornadoweb.cpython-311.pyc,, +pip/_vendor/tenacity/__pycache__/wait.cpython-311.pyc,, +pip/_vendor/tenacity/_asyncio.py,sha256=Qi6wgQsGa9MQibYRy3OXqcDQswIZZ00dLOoSUGN-6o8,3551 +pip/_vendor/tenacity/_utils.py,sha256=ubs6a7sxj3JDNRKWCyCU2j5r1CB7rgyONgZzYZq6D_4,2179 +pip/_vendor/tenacity/after.py,sha256=S5NCISScPeIrKwIeXRwdJl3kV9Q4nqZfnNPDx6Hf__g,1682 +pip/_vendor/tenacity/before.py,sha256=dIZE9gmBTffisfwNkK0F1xFwGPV41u5GK70UY4Pi5Kc,1562 +pip/_vendor/tenacity/before_sleep.py,sha256=YmpgN9Y7HGlH97U24vvq_YWb5deaK4_DbiD8ZuFmy-E,2372 +pip/_vendor/tenacity/nap.py,sha256=fRWvnz1aIzbIq9Ap3gAkAZgDH6oo5zxMrU6ZOVByq0I,1383 +pip/_vendor/tenacity/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/tenacity/retry.py,sha256=jrzD_mxA5mSTUEdiYB7SHpxltjhPSYZSnSRATb-ggRc,8746 +pip/_vendor/tenacity/stop.py,sha256=YMJs7ZgZfND65PRLqlGB_agpfGXlemx_5Hm4PKnBqpQ,3086 +pip/_vendor/tenacity/tornadoweb.py,sha256=po29_F1Mt8qZpsFjX7EVwAT0ydC_NbVia9gVi7R_wXA,2142 +pip/_vendor/tenacity/wait.py,sha256=3FcBJoCDgym12_dN6xfK8C1gROY0Hn4NSI2u8xv50uE,8024 +pip/_vendor/tomli/__init__.py,sha256=JhUwV66DB1g4Hvt1UQCVMdfCu-IgAV8FXmvDU9onxd4,396 +pip/_vendor/tomli/__pycache__/__init__.cpython-311.pyc,, +pip/_vendor/tomli/__pycache__/_parser.cpython-311.pyc,, +pip/_vendor/tomli/__pycache__/_re.cpython-311.pyc,, +pip/_vendor/tomli/__pycache__/_types.cpython-311.pyc,, +pip/_vendor/tomli/_parser.py,sha256=g9-ENaALS-B8dokYpCuzUFalWlog7T-SIYMjLZSWrtM,22633 +pip/_vendor/tomli/_re.py,sha256=dbjg5ChZT23Ka9z9DHOXfdtSpPwUfdgMXnj8NOoly-w,2943 +pip/_vendor/tomli/_types.py,sha256=-GTG2VUqkpxwMqzmVO4F7ybKddIbAnuAHXfmWQcTi3Q,254 +pip/_vendor/tomli/py.typed,sha256=8PjyZ1aVoQpRVvt71muvuq5qE-jTFZkK-GLHkhdebmc,26 +pip/_vendor/truststore/__init__.py,sha256=qzTLSH8PvAkY1fr6QQ2vV-KwE_M83wdXugtpJaP_AbM,403 +pip/_vendor/truststore/__pycache__/__init__.cpython-311.pyc,, +pip/_vendor/truststore/__pycache__/_api.cpython-311.pyc,, +pip/_vendor/truststore/__pycache__/_macos.cpython-311.pyc,, +pip/_vendor/truststore/__pycache__/_openssl.cpython-311.pyc,, +pip/_vendor/truststore/__pycache__/_ssl_constants.cpython-311.pyc,, +pip/_vendor/truststore/__pycache__/_windows.cpython-311.pyc,, +pip/_vendor/truststore/_api.py,sha256=xjuEu_rlH4hcdJTROImEyOEqdw-F8t5vO2H2BToY0Ro,9893 +pip/_vendor/truststore/_macos.py,sha256=BjvAKoAjXhdIPuxpY124HJIFswDb0pq8DjynzJOVwqc,17694 +pip/_vendor/truststore/_openssl.py,sha256=LLUZ7ZGaio-i5dpKKjKCSeSufmn6T8pi9lDcFnvSyq0,2324 +pip/_vendor/truststore/_ssl_constants.py,sha256=NUD4fVKdSD02ri7-db0tnO0VqLP9aHuzmStcW7tAl08,1130 +pip/_vendor/truststore/_windows.py,sha256=1x_EhROeJ9QK1sMAjfnZC7awYI8UnBJYL-TjACUYI4A,17468 +pip/_vendor/truststore/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/typing_extensions.py,sha256=EWpcpyQnVmc48E9fSyPGs-vXgHcAk9tQABQIxmMsCGk,111130 +pip/_vendor/urllib3/__init__.py,sha256=iXLcYiJySn0GNbWOOZDDApgBL1JgP44EZ8i1760S8Mc,3333 +pip/_vendor/urllib3/__pycache__/__init__.cpython-311.pyc,, +pip/_vendor/urllib3/__pycache__/_collections.cpython-311.pyc,, +pip/_vendor/urllib3/__pycache__/_version.cpython-311.pyc,, +pip/_vendor/urllib3/__pycache__/connection.cpython-311.pyc,, +pip/_vendor/urllib3/__pycache__/connectionpool.cpython-311.pyc,, +pip/_vendor/urllib3/__pycache__/exceptions.cpython-311.pyc,, +pip/_vendor/urllib3/__pycache__/fields.cpython-311.pyc,, +pip/_vendor/urllib3/__pycache__/filepost.cpython-311.pyc,, +pip/_vendor/urllib3/__pycache__/poolmanager.cpython-311.pyc,, +pip/_vendor/urllib3/__pycache__/request.cpython-311.pyc,, +pip/_vendor/urllib3/__pycache__/response.cpython-311.pyc,, +pip/_vendor/urllib3/_collections.py,sha256=Rp1mVyBgc_UlAcp6M3at1skJBXR5J43NawRTvW2g_XY,10811 +pip/_vendor/urllib3/_version.py,sha256=azoM7M7BUADl2kBhMVR6PPf2GhBDI90me1fcnzTwdcw,64 +pip/_vendor/urllib3/connection.py,sha256=92k9td_y4PEiTIjNufCUa1NzMB3J3w0LEdyokYgXnW8,20300 +pip/_vendor/urllib3/connectionpool.py,sha256=ItVDasDnPRPP9R8bNxY7tPBlC724nJ9nlxVgXG_SLbI,39990 +pip/_vendor/urllib3/contrib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-311.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-311.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-311.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-311.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-311.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-311.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-311.pyc,, +pip/_vendor/urllib3/contrib/_appengine_environ.py,sha256=bDbyOEhW2CKLJcQqAKAyrEHN-aklsyHFKq6vF8ZFsmk,957 +pip/_vendor/urllib3/contrib/_securetransport/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-311.pyc,, +pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-311.pyc,, +pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-311.pyc,, +pip/_vendor/urllib3/contrib/_securetransport/bindings.py,sha256=4Xk64qIkPBt09A5q-RIFUuDhNc9mXilVapm7WnYnzRw,17632 +pip/_vendor/urllib3/contrib/_securetransport/low_level.py,sha256=B2JBB2_NRP02xK6DCa1Pa9IuxrPwxzDzZbixQkb7U9M,13922 +pip/_vendor/urllib3/contrib/appengine.py,sha256=VR68eAVE137lxTgjBDwCna5UiBZTOKa01Aj_-5BaCz4,11036 +pip/_vendor/urllib3/contrib/ntlmpool.py,sha256=NlfkW7WMdW8ziqudopjHoW299og1BTWi0IeIibquFwk,4528 +pip/_vendor/urllib3/contrib/pyopenssl.py,sha256=hDJh4MhyY_p-oKlFcYcQaVQRDv6GMmBGuW9yjxyeejM,17081 +pip/_vendor/urllib3/contrib/securetransport.py,sha256=yhZdmVjY6PI6EeFbp7qYOp6-vp1Rkv2NMuOGaEj7pmc,34448 +pip/_vendor/urllib3/contrib/socks.py,sha256=aRi9eWXo9ZEb95XUxef4Z21CFlnnjbEiAo9HOseoMt4,7097 +pip/_vendor/urllib3/exceptions.py,sha256=0Mnno3KHTNfXRfY7638NufOPkUb6mXOm-Lqj-4x2w8A,8217 +pip/_vendor/urllib3/fields.py,sha256=kvLDCg_JmH1lLjUUEY_FLS8UhY7hBvDPuVETbY8mdrM,8579 +pip/_vendor/urllib3/filepost.py,sha256=5b_qqgRHVlL7uLtdAYBzBh-GHmU5AfJVt_2N0XS3PeY,2440 +pip/_vendor/urllib3/packages/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-311.pyc,, +pip/_vendor/urllib3/packages/__pycache__/six.cpython-311.pyc,, +pip/_vendor/urllib3/packages/backports/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-311.pyc,, +pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-311.pyc,, +pip/_vendor/urllib3/packages/backports/__pycache__/weakref_finalize.cpython-311.pyc,, +pip/_vendor/urllib3/packages/backports/makefile.py,sha256=nbzt3i0agPVP07jqqgjhaYjMmuAi_W5E0EywZivVO8E,1417 +pip/_vendor/urllib3/packages/backports/weakref_finalize.py,sha256=tRCal5OAhNSRyb0DhHp-38AtIlCsRP8BxF3NX-6rqIA,5343 +pip/_vendor/urllib3/packages/six.py,sha256=b9LM0wBXv7E7SrbCjAm4wwN-hrH-iNxv18LgWNMMKPo,34665 +pip/_vendor/urllib3/poolmanager.py,sha256=0i8cJgrqupza67IBPZ_u9jXvnSxr5UBlVEiUqdkPtYI,19752 +pip/_vendor/urllib3/request.py,sha256=YTWFNr7QIwh7E1W9dde9LM77v2VWTJ5V78XuTTw7D1A,6691 +pip/_vendor/urllib3/response.py,sha256=fmDJAFkG71uFTn-sVSTh2Iw0WmcXQYqkbRjihvwBjU8,30641 +pip/_vendor/urllib3/util/__init__.py,sha256=JEmSmmqqLyaw8P51gUImZh8Gwg9i1zSe-DoqAitn2nc,1155 +pip/_vendor/urllib3/util/__pycache__/__init__.cpython-311.pyc,, +pip/_vendor/urllib3/util/__pycache__/connection.cpython-311.pyc,, +pip/_vendor/urllib3/util/__pycache__/proxy.cpython-311.pyc,, +pip/_vendor/urllib3/util/__pycache__/queue.cpython-311.pyc,, +pip/_vendor/urllib3/util/__pycache__/request.cpython-311.pyc,, +pip/_vendor/urllib3/util/__pycache__/response.cpython-311.pyc,, +pip/_vendor/urllib3/util/__pycache__/retry.cpython-311.pyc,, +pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-311.pyc,, +pip/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-311.pyc,, +pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-311.pyc,, +pip/_vendor/urllib3/util/__pycache__/timeout.cpython-311.pyc,, +pip/_vendor/urllib3/util/__pycache__/url.cpython-311.pyc,, +pip/_vendor/urllib3/util/__pycache__/wait.cpython-311.pyc,, +pip/_vendor/urllib3/util/connection.py,sha256=5Lx2B1PW29KxBn2T0xkN1CBgRBa3gGVJBKoQoRogEVk,4901 +pip/_vendor/urllib3/util/proxy.py,sha256=zUvPPCJrp6dOF0N4GAVbOcl6o-4uXKSrGiTkkr5vUS4,1605 +pip/_vendor/urllib3/util/queue.py,sha256=nRgX8_eX-_VkvxoX096QWoz8Ps0QHUAExILCY_7PncM,498 +pip/_vendor/urllib3/util/request.py,sha256=C0OUt2tcU6LRiQJ7YYNP9GvPrSvl7ziIBekQ-5nlBZk,3997 +pip/_vendor/urllib3/util/response.py,sha256=GJpg3Egi9qaJXRwBh5wv-MNuRWan5BIu40oReoxWP28,3510 +pip/_vendor/urllib3/util/retry.py,sha256=Z6WEf518eTOXP5jr5QSQ9gqJI0DVYt3Xs3EKnYaTmus,22013 +pip/_vendor/urllib3/util/ssl_.py,sha256=X4-AqW91aYPhPx6-xbf66yHFQKbqqfC_5Zt4WkLX1Hc,17177 +pip/_vendor/urllib3/util/ssl_match_hostname.py,sha256=Ir4cZVEjmAk8gUAIHWSi7wtOO83UCYABY2xFD1Ql_WA,5758 +pip/_vendor/urllib3/util/ssltransport.py,sha256=NA-u5rMTrDFDFC8QzRKUEKMG0561hOD4qBTr3Z4pv6E,6895 +pip/_vendor/urllib3/util/timeout.py,sha256=cwq4dMk87mJHSBktK1miYJ-85G-3T3RmT20v7SFCpno,10168 +pip/_vendor/urllib3/util/url.py,sha256=lCAE7M5myA8EDdW0sJuyyZhVB9K_j38ljWhHAnFaWoE,14296 +pip/_vendor/urllib3/util/wait.py,sha256=fOX0_faozG2P7iVojQoE1mbydweNyTcm-hXEfFrTtLI,5403 +pip/_vendor/vendor.txt,sha256=4NKk7fQhVsZw0U-0zmm9Q2LgGyaPXacFbnJAaS0Q6EY,493 +pip/_vendor/webencodings/__init__.py,sha256=qOBJIuPy_4ByYH6W_bNgJF-qYQ2DoU-dKsDu5yRWCXg,10579 +pip/_vendor/webencodings/__pycache__/__init__.cpython-311.pyc,, +pip/_vendor/webencodings/__pycache__/labels.cpython-311.pyc,, +pip/_vendor/webencodings/__pycache__/mklabels.cpython-311.pyc,, +pip/_vendor/webencodings/__pycache__/tests.cpython-311.pyc,, +pip/_vendor/webencodings/__pycache__/x_user_defined.cpython-311.pyc,, +pip/_vendor/webencodings/labels.py,sha256=4AO_KxTddqGtrL9ns7kAPjb0CcN6xsCIxbK37HY9r3E,8979 +pip/_vendor/webencodings/mklabels.py,sha256=GYIeywnpaLnP0GSic8LFWgd0UVvO_l1Nc6YoF-87R_4,1305 +pip/_vendor/webencodings/tests.py,sha256=OtGLyjhNY1fvkW1GvLJ_FV9ZoqC9Anyjr7q3kxTbzNs,6563 +pip/_vendor/webencodings/x_user_defined.py,sha256=yOqWSdmpytGfUgh_Z6JYgDNhoc-BAHyyeeT15Fr42tM,4307 +pip/py.typed,sha256=EBVvvPRTn_eIpz5e5QztSCdrMX7Qwd7VP93RSoIlZ2I,286 diff --git a/.venv/lib/python3.11/site-packages/pip-24.0.dist-info/REQUESTED b/.venv/lib/python3.11/site-packages/pip-24.0.dist-info/REQUESTED new file mode 100644 index 0000000..e69de29 diff --git a/.venv/lib/python3.11/site-packages/pip-24.0.dist-info/WHEEL b/.venv/lib/python3.11/site-packages/pip-24.0.dist-info/WHEEL new file mode 100644 index 0000000..98c0d20 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip-24.0.dist-info/WHEEL @@ -0,0 +1,5 @@ +Wheel-Version: 1.0 +Generator: bdist_wheel (0.42.0) +Root-Is-Purelib: true +Tag: py3-none-any + diff --git a/.venv/lib/python3.11/site-packages/pip-24.0.dist-info/entry_points.txt b/.venv/lib/python3.11/site-packages/pip-24.0.dist-info/entry_points.txt new file mode 100644 index 0000000..5367846 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip-24.0.dist-info/entry_points.txt @@ -0,0 +1,4 @@ +[console_scripts] +pip = pip._internal.cli.main:main +pip3 = pip._internal.cli.main:main +pip3.10 = pip._internal.cli.main:main diff --git a/.venv/lib/python3.11/site-packages/pip-24.0.dist-info/top_level.txt b/.venv/lib/python3.11/site-packages/pip-24.0.dist-info/top_level.txt new file mode 100644 index 0000000..a1b589e --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip-24.0.dist-info/top_level.txt @@ -0,0 +1 @@ +pip diff --git a/.venv/lib/python3.11/site-packages/pip/__init__.py b/.venv/lib/python3.11/site-packages/pip/__init__.py new file mode 100644 index 0000000..be0e3ed --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/__init__.py @@ -0,0 +1,13 @@ +from typing import List, Optional + +__version__ = "24.0" + + +def main(args: Optional[List[str]] = None) -> int: + """This is an internal API only meant for use by pip's own console scripts. + + For additional details, see https://github.com/pypa/pip/issues/7498. + """ + from pip._internal.utils.entrypoints import _wrapper + + return _wrapper(args) diff --git a/.venv/lib/python3.11/site-packages/pip/__main__.py b/.venv/lib/python3.11/site-packages/pip/__main__.py new file mode 100644 index 0000000..5991326 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/__main__.py @@ -0,0 +1,24 @@ +import os +import sys + +# Remove '' and current working directory from the first entry +# of sys.path, if present to avoid using current directory +# in pip commands check, freeze, install, list and show, +# when invoked as python -m pip +if sys.path[0] in ("", os.getcwd()): + sys.path.pop(0) + +# If we are running from a wheel, add the wheel to sys.path +# This allows the usage python pip-*.whl/pip install pip-*.whl +if __package__ == "": + # __file__ is pip-*.whl/pip/__main__.py + # first dirname call strips of '/__main__.py', second strips off '/pip' + # Resulting path is the name of the wheel itself + # Add that to sys.path so we can import pip + path = os.path.dirname(os.path.dirname(__file__)) + sys.path.insert(0, path) + +if __name__ == "__main__": + from pip._internal.cli.main import main as _main + + sys.exit(_main()) diff --git a/.venv/lib/python3.11/site-packages/pip/__pip-runner__.py b/.venv/lib/python3.11/site-packages/pip/__pip-runner__.py new file mode 100644 index 0000000..49a148a --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/__pip-runner__.py @@ -0,0 +1,50 @@ +"""Execute exactly this copy of pip, within a different environment. + +This file is named as it is, to ensure that this module can't be imported via +an import statement. +""" + +# /!\ This version compatibility check section must be Python 2 compatible. /!\ + +import sys + +# Copied from setup.py +PYTHON_REQUIRES = (3, 7) + + +def version_str(version): # type: ignore + return ".".join(str(v) for v in version) + + +if sys.version_info[:2] < PYTHON_REQUIRES: + raise SystemExit( + "This version of pip does not support python {} (requires >={}).".format( + version_str(sys.version_info[:2]), version_str(PYTHON_REQUIRES) + ) + ) + +# From here on, we can use Python 3 features, but the syntax must remain +# Python 2 compatible. + +import runpy # noqa: E402 +from importlib.machinery import PathFinder # noqa: E402 +from os.path import dirname # noqa: E402 + +PIP_SOURCES_ROOT = dirname(dirname(__file__)) + + +class PipImportRedirectingFinder: + @classmethod + def find_spec(self, fullname, path=None, target=None): # type: ignore + if fullname != "pip": + return None + + spec = PathFinder.find_spec(fullname, [PIP_SOURCES_ROOT], target) + assert spec, (PIP_SOURCES_ROOT, fullname) + return spec + + +sys.meta_path.insert(0, PipImportRedirectingFinder()) + +assert __name__ == "__main__", "Cannot run __pip-runner__.py as a non-main module" +runpy.run_module("pip", run_name="__main__", alter_sys=True) diff --git a/.venv/lib/python3.11/site-packages/pip/__pycache__/__init__.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..42cff1b2d171e9604362f30d812b1aa76ae451b9 GIT binary patch literal 814 zcmZ`%&ubJh6i#Mlx9hG|P%rgj6hRhr($<2l$bwKrL299jun0psNq3_&nUG|+PN~p? zhYB9NwTGVlf&WYo9%N1hPu>=K>&cg`tseC8^71nI-h1Dhmrs+EO$4%sI{g$Q^ur%c zr1sl6Tm)waal~+m`l;DUMJxxB#`1!xm* zqK|<7dKv+>!i}A$eQ60OQ$#8!3{)cbmmiTrWhKc4Q;w_^h77DAt0mD=->{@uS0pWz zEiyrDYNU2HZZ-+X1AsElMEd^}EM0_dTQt46YJnAXC;54i%!I5}Y%4;-Y9g>t6U1$?!p;bQ{hXEOG!PeRDi zkUq1*SgM#~nUu_xd9fyi6hlUr%e2o-zHEw@B6XHNd_GGv!Hi0D>G}n1$2T+{3N@se zTm{zt;&wbUL#=e;mS*WI)&u&!lLQD#mn5++t0-qunHG?!!?J!XTWHiowT1m?{%<{K zUEH4ku=uX?zOx@q9Rdz|UusWObysSsdd82{L}02`k_@32coIoch1QuWgx<$Rz94hf z(t~rCwpye51im~%V76cHM!PF}XTF`k OHa>q&$J>9+xcV>J`P>lz literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/__pycache__/__main__.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/__pycache__/__main__.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a43ee18b59b0bbfc433738576526e649a234fe04 GIT binary patch literal 933 zcma)4&1(}u6o0cj`Di{WN?J&pgXk#-v$UqPpfnUca zoRj$p%lm9%Sc%l5 z-ia4sCyN@@G9pz?!g7^NMWGoFNB3TW8yKOxm>f{^4_tYyuA4%UwJ-!#G9`sl$+YT? zT}mivO2Up+sY-f%M{m?f#WaL`X;n~&q^qK4nbihUh{I$P~0 z_Nr~!`ib@R@Z`|B_t4?JHDJ;F$L*tS`|gKAyU;2O!+`JD4=(tG!zYFjh|M3bf60B$ zeP2CY|C#%d`@PXy&i0qHz35s$y4HF=ZcsQX*ju*Q!>K+_IXHF6M?3E?_@u)p2RQ4@ ju1g$iJ!|JX#ZK{4>A2Lx3w^xc_-hyfyu|AC1iRIL*r42K literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/__pycache__/__pip-runner__.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/__pycache__/__pip-runner__.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b19509a04f2c52e897057592169b3e143891b46f GIT binary patch literal 2552 zcmaJ?%}*Og6rb5$f3ArMCV_mk*(zxoNB$@YQKO2IC@Bd92^=7;>Z)38ykl6fcb(le z#b6{Wq7teq)sLk}D(N|hXX?6H4>jW&w4r$|+$ax)?)PJOeBsa@30%)a?}Z{EE3 z<~MJD?&=C6C_kd%xt}};{Xr+K5;z>}zrYARLo!Mu8Oux#r?JeY8JSx{X_nx5uC+mC zWY1U3nbs5$X2BWj!we!G*}LgIVzmu`_rF@U;PmJ4xy6xYI@h)skbuuEoxG>mvDugQ zLGR1?^MP~#Q$PH^v`h0%8zuoxa)K8nyQ_ zh7(R~!P4`iA{(TQpbL|s&LP0hnN z5e&}IEm$d1jU4DOfWT&Hi|j{&64S=&uelKq%)HGo+&(rZTW(xo3L$B zk%E$XI2R04GKqV}E;V~1%Is1Pc6~rHM>h=USwtsmC?tjGh&_h z2T@@s4sha_{_CJ`e-Owx!f-|zeGys3W}6jd+^Ojk^bBM4O|OhVC!UC6n>9>5%GgZe zeH$+t^a=&xpqzYU5Zy?sk}2gBMKViyEvpcPEK12#DKjVO`IN5BlZEHRRBmq}3s8rO@eN_0_76iNqy zp;@AmrGh@Z{PrT4p@34bGBK3XGE&YMP8{(mUX3e2{(@RTwMY!w#*-iJZs70keSgoL zx6^%)1;=e}UQ<-)eTVuD8Z$xXf!ciAnL0gzz7OLfkP2$>C%(P;^-Wjh=6&evk(dRP zk6C=I#>Mn5klUqUT)yRC@KD(yas^oLA=)fQTXk|5; z0P}(=$(*~Vs4~&1v9h95C}%+XQK1l{W&bjeXNVw3a45|XR%QWOxD!@sPR4NYoP9Q> z6viBcPZ7`x7pbVT?m-h7iriL#yy~LZgaIH7GSY%`q|Q(bwPS7m2zO;{w&|F~Ww!IB zuX1J1IQamzOO7nt#xoMaez0`E+A z?EVEgDqKfSfn_=+m#CfB96KvuE3FMrca!mYdYh<4_E_XSx%T`?0+Dr#1+VQ6vp}zI;4c6+vvfZ=&&UTO0AFGGr zRw%x`vc2-#t$K3YN{;WbOd$9M0oh|Y-ungt0V_P-W)H$$l@P5BbhXym8t7cDv%QX- zt$wfpb@OKZT+BKL*)48G;x*LW^!hP?=Q!D;Yj6HxoJN>i>w1NHcTjKjVXglfw0i%b z)jwEAH!O6chHkv}g{vR#_};3y?ZQ;u_m<_18>qYDu~2vQ)aKb=%^Di2qah0o!N6_K GE&L5NIDaPq literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/__init__.py b/.venv/lib/python3.11/site-packages/pip/_internal/__init__.py new file mode 100644 index 0000000..96c6b88 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_internal/__init__.py @@ -0,0 +1,18 @@ +from typing import List, Optional + +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/.venv/lib/python3.11/site-packages/pip/_internal/__pycache__/__init__.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_internal/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4badac97e44483ce5e2ec6f4d96b1228a13ab248 GIT binary patch literal 930 zcmZ`%&ubJh6i#Mlx6@ysZZGv>#9kJ3LRGL8*^`I|sRb2bFGD($-AOw?LXuq>snCN5 z1rNR1L-AOVUi?#5=t1UG@Z@cwx1M~N+Et;3H!t7Ie0llu@;=Yc&mb84sFS!3LO*P9 zJ{rHl$tHl0C`K_(QHHxXbGi<;v6H%)*Yz-R5cf9E`RD-nhv!)kFsEXVI~?=o;$-y? ziW_{Y=f%ypjjkWN&rsX{X<2Qj@}3B7D*vf8qR3g=#+4VQMSrdGnCk1Qskj-aJi?Qt z2)Tgmcd`TyG-J>Rn%`inaT{-=17IIccED-w>rc-Up$V8&Tyr(#G3gbG6lqMNBG*OA ziH?+zMiY}TLo!wpZA6-q4NesAamDjUGi(_%7oy6QQk?Na7b50Ut zq`psSUzlXD5ky5sWhohzLQ!D2KA`Sk2W3L(}wON9AgxDi;b=pZ^7^d7EMu+^PQ{E8;=QJ8A(!+aP)y z+}On!e@E9x7uhjd8vScyAK@!I-VwU|4YiI?YlK?krjM_V5x8A{Z(%RmUp%^WqmIA2 K_4Hp?tNR782Kki$ literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/__pycache__/build_env.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_internal/__pycache__/build_env.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b7d9956c5e9c51d5f8db91f66bfbff2cc06ac917 GIT binary patch literal 16119 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/__pycache__/exceptions.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_internal/__pycache__/exceptions.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8b915e207fbfda92456e6a3a11a4af97aead8ac6 GIT binary patch literal 37489 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/__pycache__/main.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_internal/__pycache__/main.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..928033b1eaec50502c61cced51c1dbf7f60429ed GIT binary patch literal 799 zcmZ`%y=xRf6rb7MJI{O|Vig-lu{qEkqJkHZ!$QPDVjz(~nlRaUcRRWt!_3_2$_W-0 z5iIOX5iI?{e

6Y$aIP9bA{nHyaZz^fB}1_jcZU^Ly{@$Hm1tg0fHg=>{d_hc}L; z^&8CYAb3Y4ku)PY-J*H06;LAEGK2sqgiFT}jfr z%DTGqP&-u?B3rE^VTQJD8*n32B*@}KLPUPgE~7#QR0f{G3ra~qCUinRp!b)P2z(`c z{(d7>mf_L{ESND!HYg1%Gs%*&uw@3!CPryznM;LZxu}?RD$CdoFarZHP$a4t&M_3_ z;<*Og!xTbFb;OxTa6)DF3bOz#bxzw`oDY>tM>}y+=3G}=aIG{~){emPn>SW^ag)dd zSW1`Ho$aSaXblECasfT#ZB;lh*pPUHY-|jLGnFp!t2G@T6Bs{`23wzmvBL>}ge6*D z2q!Y7gsbv$pg_S`@U<#Qg~``U`4|#s`TfmnJOg2hZC$yv#N+6O$73kQJX1T!+Fx9c zmzTL!4z6mEJP|{r?<+as$8({ISXXuAftg1t5pL^e^pZ>$NNeRF>ixaG&!5}vy}kRo z|E7NsEzQsmJFwbq*KJp6Y_;(-Ha4pC s-9$AFDW%`Y#e;vXX}d$uPYJ5sXM54!`u^#!XD&7Nr=&UltD1*@0eQ67)Bpeg literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/__pycache__/pyproject.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_internal/__pycache__/pyproject.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5dee6c2517e0ef0981a33525982eca2f1acb94ac GIT binary patch literal 5657 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0c1be48c92837a35e54c6e48e386c1a2100efea3 GIT binary patch literal 11814 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 Union[Tuple[str], Tuple[str, str]]: + return (a, b) if a != b else (a,) + + +class _Prefix: + def __init__(self, path: str) -> None: + self.path = path + self.setup = False + scheme = get_scheme("", prefix=path) + self.bin_dir = scheme.scripts + self.lib_dirs = _dedup(scheme.purelib, scheme.platlib) + + +def get_runnable_pip() -> str: + """Get a file to pass to a Python executable, to run the currently-running pip. + + This is used to run a pip subprocess, for installing requirements into the build + environment. + """ + source = pathlib.Path(pip_location).resolve().parent + + if not source.is_dir(): + # This would happen if someone is using pip from inside a zip file. In that + # case, we can use that directly. + return str(source) + + return os.fsdecode(source / "__pip-runner__.py") + + +def _get_system_sitepackages() -> Set[str]: + """Get system site packages + + Usually from site.getsitepackages, + but fallback on `get_purelib()/get_platlib()` if unavailable + (e.g. in a virtualenv created by virtualenv<20) + + Returns normalized set of strings. + """ + if hasattr(site, "getsitepackages"): + system_sites = site.getsitepackages() + else: + # virtualenv < 20 overwrites site.py without getsitepackages + # fallback on get_purelib/get_platlib. + # this is known to miss things, but shouldn't in the cases + # where getsitepackages() has been removed (inside a virtualenv) + system_sites = [get_purelib(), get_platlib()] + return {os.path.normcase(path) for path in system_sites} + + +class BuildEnvironment: + """Creates and manages an isolated environment to install build deps""" + + def __init__(self) -> None: + temp_dir = TempDirectory(kind=tempdir_kinds.BUILD_ENV, globally_managed=True) + + self._prefixes = OrderedDict( + (name, _Prefix(os.path.join(temp_dir.path, name))) + for name in ("normal", "overlay") + ) + + self._bin_dirs: List[str] = [] + self._lib_dirs: List[str] = [] + for prefix in reversed(list(self._prefixes.values())): + self._bin_dirs.append(prefix.bin_dir) + self._lib_dirs.extend(prefix.lib_dirs) + + # Customize site to: + # - ensure .pth files are honored + # - prevent access to system site packages + system_sites = _get_system_sitepackages() + + self._site_dir = os.path.join(temp_dir.path, "site") + if not os.path.exists(self._site_dir): + os.mkdir(self._site_dir) + with open( + os.path.join(self._site_dir, "sitecustomize.py"), "w", encoding="utf-8" + ) as fp: + fp.write( + textwrap.dedent( + """ + import os, site, sys + + # First, drop system-sites related paths. + original_sys_path = sys.path[:] + known_paths = set() + for path in {system_sites!r}: + site.addsitedir(path, known_paths=known_paths) + system_paths = set( + os.path.normcase(path) + for path in sys.path[len(original_sys_path):] + ) + original_sys_path = [ + path for path in original_sys_path + if os.path.normcase(path) not in system_paths + ] + sys.path = original_sys_path + + # Second, add lib directories. + # ensuring .pth file are processed. + for path in {lib_dirs!r}: + assert not path in sys.path + site.addsitedir(path) + """ + ).format(system_sites=system_sites, lib_dirs=self._lib_dirs) + ) + + def __enter__(self) -> None: + self._save_env = { + name: os.environ.get(name, None) + for name in ("PATH", "PYTHONNOUSERSITE", "PYTHONPATH") + } + + path = self._bin_dirs[:] + old_path = self._save_env["PATH"] + if old_path: + path.extend(old_path.split(os.pathsep)) + + pythonpath = [self._site_dir] + + os.environ.update( + { + "PATH": os.pathsep.join(path), + "PYTHONNOUSERSITE": "1", + "PYTHONPATH": os.pathsep.join(pythonpath), + } + ) + + def __exit__( + self, + exc_type: Optional[Type[BaseException]], + exc_val: Optional[BaseException], + exc_tb: Optional[TracebackType], + ) -> None: + for varname, old_value in self._save_env.items(): + if old_value is None: + os.environ.pop(varname, None) + else: + os.environ[varname] = old_value + + def check_requirements( + self, reqs: Iterable[str] + ) -> Tuple[Set[Tuple[str, str]], Set[str]]: + """Return 2 sets: + - conflicting requirements: set of (installed, wanted) reqs tuples + - missing requirements: set of reqs + """ + missing = set() + conflicting = set() + if reqs: + env = ( + get_environment(self._lib_dirs) + if hasattr(self, "_lib_dirs") + else get_default_environment() + ) + for req_str in reqs: + req = Requirement(req_str) + # We're explicitly evaluating with an empty extra value, since build + # environments are not provided any mechanism to select specific extras. + if req.marker is not None and not req.marker.evaluate({"extra": ""}): + continue + dist = env.get_distribution(req.name) + if not dist: + missing.add(req_str) + continue + if isinstance(dist.version, Version): + installed_req_str = f"{req.name}=={dist.version}" + else: + installed_req_str = f"{req.name}==={dist.version}" + if not req.specifier.contains(dist.version, prereleases=True): + conflicting.add((installed_req_str, req_str)) + # FIXME: Consider direct URL? + return conflicting, missing + + def install_requirements( + self, + finder: "PackageFinder", + requirements: Iterable[str], + prefix_as_string: str, + *, + kind: str, + ) -> None: + prefix = self._prefixes[prefix_as_string] + assert not prefix.setup + prefix.setup = True + if not requirements: + return + self._install_requirements( + get_runnable_pip(), + finder, + requirements, + prefix, + kind=kind, + ) + + @staticmethod + def _install_requirements( + pip_runnable: str, + finder: "PackageFinder", + requirements: Iterable[str], + prefix: _Prefix, + *, + kind: str, + ) -> None: + args: List[str] = [ + sys.executable, + pip_runnable, + "install", + "--ignore-installed", + "--no-user", + "--prefix", + prefix.path, + "--no-warn-script-location", + ] + if logger.getEffectiveLevel() <= logging.DEBUG: + args.append("-v") + for format_control in ("no_binary", "only_binary"): + formats = getattr(finder.format_control, format_control) + args.extend( + ( + "--" + format_control.replace("_", "-"), + ",".join(sorted(formats or {":none:"})), + ) + ) + + index_urls = finder.index_urls + if index_urls: + args.extend(["-i", index_urls[0]]) + for extra_index in index_urls[1:]: + args.extend(["--extra-index-url", extra_index]) + else: + args.append("--no-index") + for link in finder.find_links: + args.extend(["--find-links", link]) + + for host in finder.trusted_hosts: + args.extend(["--trusted-host", host]) + if finder.allow_all_prereleases: + args.append("--pre") + if finder.prefer_binary: + args.append("--prefer-binary") + args.append("--") + args.extend(requirements) + extra_environ = {"_PIP_STANDALONE_CERT": where()} + with open_spinner(f"Installing {kind}") as spinner: + call_subprocess( + args, + command_desc=f"pip subprocess to install {kind}", + spinner=spinner, + extra_environ=extra_environ, + ) + + +class NoOpBuildEnvironment(BuildEnvironment): + """A no-op drop-in replacement for BuildEnvironment""" + + def __init__(self) -> None: + pass + + def __enter__(self) -> None: + pass + + def __exit__( + self, + exc_type: Optional[Type[BaseException]], + exc_val: Optional[BaseException], + exc_tb: Optional[TracebackType], + ) -> None: + pass + + def cleanup(self) -> None: + pass + + def install_requirements( + self, + finder: "PackageFinder", + requirements: Iterable[str], + prefix_as_string: str, + *, + kind: str, + ) -> None: + raise NotImplementedError() diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/cache.py b/.venv/lib/python3.11/site-packages/pip/_internal/cache.py new file mode 100644 index 0000000..f45ac23 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_internal/cache.py @@ -0,0 +1,290 @@ +"""Cache Management +""" + +import hashlib +import json +import logging +import os +from pathlib import Path +from typing import Any, Dict, List, Optional + +from pip._vendor.packaging.tags import Tag, interpreter_name, interpreter_version +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.exceptions import InvalidWheelFilename +from pip._internal.models.direct_url import DirectUrl +from pip._internal.models.link import Link +from pip._internal.models.wheel import Wheel +from pip._internal.utils.temp_dir import TempDirectory, tempdir_kinds +from pip._internal.utils.urls import path_to_url + +logger = logging.getLogger(__name__) + +ORIGIN_JSON_NAME = "origin.json" + + +def _hash_dict(d: Dict[str, str]) -> str: + """Return a stable sha224 of a dictionary.""" + s = json.dumps(d, sort_keys=True, separators=(",", ":"), ensure_ascii=True) + return hashlib.sha224(s.encode("ascii")).hexdigest() + + +class Cache: + """An abstract class - provides cache directories for data from links + + :param cache_dir: The root of the cache. + """ + + def __init__(self, cache_dir: str) -> None: + super().__init__() + assert not cache_dir or os.path.isabs(cache_dir) + self.cache_dir = cache_dir or None + + def _get_cache_path_parts(self, link: Link) -> List[str]: + """Get parts of part that must be os.path.joined with cache_dir""" + + # We want to generate an url to use as our cache key, we don't want to + # just re-use the URL because it might have other items in the fragment + # and we don't care about those. + key_parts = {"url": link.url_without_fragment} + if link.hash_name is not None and link.hash is not None: + key_parts[link.hash_name] = link.hash + if link.subdirectory_fragment: + key_parts["subdirectory"] = link.subdirectory_fragment + + # Include interpreter name, major and minor version in cache key + # to cope with ill-behaved sdists that build a different wheel + # depending on the python version their setup.py is being run on, + # and don't encode the difference in compatibility tags. + # https://github.com/pypa/pip/issues/7296 + key_parts["interpreter_name"] = interpreter_name() + key_parts["interpreter_version"] = interpreter_version() + + # Encode our key url with sha224, we'll use this because it has similar + # security properties to sha256, but with a shorter total output (and + # thus less secure). However the differences don't make a lot of + # difference for our use case here. + hashed = _hash_dict(key_parts) + + # We want to nest the directories some to prevent having a ton of top + # level directories where we might run out of sub directories on some + # FS. + parts = [hashed[:2], hashed[2:4], hashed[4:6], hashed[6:]] + + return parts + + def _get_candidates(self, link: Link, canonical_package_name: str) -> List[Any]: + can_not_cache = not self.cache_dir or not canonical_package_name or not link + if can_not_cache: + return [] + + path = self.get_path_for_link(link) + if os.path.isdir(path): + return [(candidate, path) for candidate in os.listdir(path)] + return [] + + def get_path_for_link(self, link: Link) -> str: + """Return a directory to store cached items in for link.""" + raise NotImplementedError() + + def get( + self, + link: Link, + package_name: Optional[str], + supported_tags: List[Tag], + ) -> Link: + """Returns a link to a cached item if it exists, otherwise returns the + passed link. + """ + raise NotImplementedError() + + +class SimpleWheelCache(Cache): + """A cache of wheels for future installs.""" + + def __init__(self, cache_dir: str) -> None: + super().__init__(cache_dir) + + def get_path_for_link(self, link: Link) -> str: + """Return a directory to store cached wheels for link + + Because there are M wheels for any one sdist, we provide a directory + to cache them in, and then consult that directory when looking up + cache hits. + + We only insert things into the cache if they have plausible version + numbers, so that we don't contaminate the cache with things that were + not unique. E.g. ./package might have dozens of installs done for it + and build a version of 0.0...and if we built and cached a wheel, we'd + end up using the same wheel even if the source has been edited. + + :param link: The link of the sdist for which this will cache wheels. + """ + parts = self._get_cache_path_parts(link) + assert self.cache_dir + # Store wheels within the root cache_dir + return os.path.join(self.cache_dir, "wheels", *parts) + + def get( + self, + link: Link, + package_name: Optional[str], + supported_tags: List[Tag], + ) -> Link: + candidates = [] + + if not package_name: + return link + + canonical_package_name = canonicalize_name(package_name) + for wheel_name, wheel_dir in self._get_candidates(link, canonical_package_name): + try: + wheel = Wheel(wheel_name) + except InvalidWheelFilename: + continue + if canonicalize_name(wheel.name) != canonical_package_name: + logger.debug( + "Ignoring cached wheel %s for %s as it " + "does not match the expected distribution name %s.", + wheel_name, + link, + package_name, + ) + continue + if not wheel.supported(supported_tags): + # Built for a different python/arch/etc + continue + candidates.append( + ( + wheel.support_index_min(supported_tags), + wheel_name, + wheel_dir, + ) + ) + + if not candidates: + return link + + _, wheel_name, wheel_dir = min(candidates) + return Link(path_to_url(os.path.join(wheel_dir, wheel_name))) + + +class EphemWheelCache(SimpleWheelCache): + """A SimpleWheelCache that creates it's own temporary cache directory""" + + def __init__(self) -> None: + self._temp_dir = TempDirectory( + kind=tempdir_kinds.EPHEM_WHEEL_CACHE, + globally_managed=True, + ) + + super().__init__(self._temp_dir.path) + + +class CacheEntry: + def __init__( + self, + link: Link, + persistent: bool, + ): + self.link = link + self.persistent = persistent + self.origin: Optional[DirectUrl] = None + origin_direct_url_path = Path(self.link.file_path).parent / ORIGIN_JSON_NAME + if origin_direct_url_path.exists(): + try: + self.origin = DirectUrl.from_json( + origin_direct_url_path.read_text(encoding="utf-8") + ) + except Exception as e: + logger.warning( + "Ignoring invalid cache entry origin file %s for %s (%s)", + origin_direct_url_path, + link.filename, + e, + ) + + +class WheelCache(Cache): + """Wraps EphemWheelCache and SimpleWheelCache into a single Cache + + This Cache allows for gracefully degradation, using the ephem wheel cache + when a certain link is not found in the simple wheel cache first. + """ + + def __init__(self, cache_dir: str) -> None: + super().__init__(cache_dir) + self._wheel_cache = SimpleWheelCache(cache_dir) + self._ephem_cache = EphemWheelCache() + + def get_path_for_link(self, link: Link) -> str: + return self._wheel_cache.get_path_for_link(link) + + def get_ephem_path_for_link(self, link: Link) -> str: + return self._ephem_cache.get_path_for_link(link) + + def get( + self, + link: Link, + package_name: Optional[str], + supported_tags: List[Tag], + ) -> Link: + cache_entry = self.get_cache_entry(link, package_name, supported_tags) + if cache_entry is None: + return link + return cache_entry.link + + def get_cache_entry( + self, + link: Link, + package_name: Optional[str], + supported_tags: List[Tag], + ) -> Optional[CacheEntry]: + """Returns a CacheEntry with a link to a cached item if it exists or + None. The cache entry indicates if the item was found in the persistent + or ephemeral cache. + """ + retval = self._wheel_cache.get( + link=link, + package_name=package_name, + supported_tags=supported_tags, + ) + if retval is not link: + return CacheEntry(retval, persistent=True) + + retval = self._ephem_cache.get( + link=link, + package_name=package_name, + supported_tags=supported_tags, + ) + if retval is not link: + return CacheEntry(retval, persistent=False) + + return None + + @staticmethod + def record_download_origin(cache_dir: str, download_info: DirectUrl) -> None: + origin_path = Path(cache_dir) / ORIGIN_JSON_NAME + if origin_path.exists(): + try: + origin = DirectUrl.from_json(origin_path.read_text(encoding="utf-8")) + except Exception as e: + logger.warning( + "Could not read origin file %s in cache entry (%s). " + "Will attempt to overwrite it.", + origin_path, + e, + ) + else: + # TODO: use DirectUrl.equivalent when + # https://github.com/pypa/pip/pull/10564 is merged. + if origin.url != download_info.url: + logger.warning( + "Origin URL %s in cache entry %s does not match download URL " + "%s. This is likely a pip bug or a cache corruption issue. " + "Will overwrite it with the new value.", + origin.url, + cache_dir, + download_info.url, + ) + origin_path.write_text(download_info.to_json(), encoding="utf-8") diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/cli/__init__.py b/.venv/lib/python3.11/site-packages/pip/_internal/cli/__init__.py new file mode 100644 index 0000000..e589bb9 --- /dev/null +++ b/.venv/lib/python3.11/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/.venv/lib/python3.11/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2f6ee0176c49162d53960537cbdf9ebc94a3c8f0 GIT binary patch literal 334 zcmY*Vu}VWh5WI^)C6EuWyG~M=CE7|_tt1dcusJq&n`HIg-Q(^Oc-Hv`8+-AWZ2f_N zT`KRHSh&T^&d$OP``+*OM5#A1UTzA1wc@Yjq4{oCUWFBp!pf-_bY5`AfD6z6D2MRJ(Q7TZ$qZXiETw6?)${UN^Fd%F$X zCyEI?W^~M$n<~tinAQlB#w;;blNg@J2($C%F#F;mr(5|(piD+k(6@Vk+QoL{~&gY F`vdeVWUT-I literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..dc303e860b578258e475e8003d617a2ca3db2f77 GIT binary patch literal 10289 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 EKPq?gIsgCw literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/cli/__pycache__/main.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_internal/cli/__pycache__/main.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..697a98998edf3399d44e28211429ab7f6fcb9115 GIT binary patch literal 2626 zcmah~O>7fK6rTOF$98NdAtWJ?#(@OIM6n4VQBVp*0kw!IM4*adRk9ZE;A~j$u4Xqs zjvVAlR7z1KxYbgF#EDXcLytZ5Py~k_?aEcHl_Eu|IB;`Ckr1c8S;ux9T6Jc2=9@Qf z-oAM|-`nqlK|g}BfzHjL078GVNxeur;LWc9zC{X3Aca$SjZ1Lu$R~Jr6cU0viV4vj zrGx~dpm{Rhgg1i|m}C1y&6n{f{4SQXK&CCx=3aO#-_V7)qObYpX;+b5|7xH-&uq9w;cZ;U2r0rd@d>PLHr6?0!`H8u zc~2cZ0kB!0AkYdoCTQ=P57`~f)f{U5PG7=FR=HJPUp#{B&ZgcFqUx&9ays`$GL6T( zd}{7cq@3^_dc?Qd2j7}1X#Rg}*u72V`CuJ?V6hQrh-Ij*rEq)oZUQ$}g}Z`|YvU5P zgqDSyXo-WE4Al35jrKaWKdK{;Hln6@o8BxDyLB6pgSZW^iuTdEE<~%V ziJM6A=ES{LU4O;9qU$e=O@Hmt=FS|a;2gh*p7~n$uSz-Tad%U%iE?|s39!vS^O^Rv1)3sORB$|UiqXr#Kns#KXx8y$3}rzhE8a`ju3f!$HsYX_ z;md5ls;47_Q7JNPMV97>9EUUKTsX6NS!0{dEnVw2cPER|Mn!P8lVs%NbHbZW0m5a?0U|T$kYlsw&&rjB#5fDp{1{ zv)R;~Of$38m?tUQihp+FL|h|q@}!xy=L{HXEAiMO(HG;IdMjRAI2jusk6UoaF;h<6 zk<-MAo2nU4LjEKaQe`})sd46Y%*@hZaK`Oo04$ch@~GksmrAclJhswD3QTImw zQ@(^p%XqZtHt?fkeS)20lH1+C!l4Ik_uGp5Cw`Jk_(B<9D1Ok~w@7R!ptl|r?k{}t zHbowODm^) zk527BYt?Ac+qwuGAnu>qs+*uFYF3TTzBI9?Yc#`2mrHQSBg}QdvZ*7$Eq3qg z59kdD5oKBNJ)WqgrE~NwOj%a5-a}UvIF76G94A&0blWJHcWVWO@@}mlU*4@1^WnW+6>J8^ hsuP3U;VOb|ZMh&8u5b9t;oAIZ$`$`-N6*0V{{g9uj*0*P literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b12b9b8df1cb4fe4403938564bfa31653ddc4e27 GIT binary patch literal 5570 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..363afb027ac0b55af62bddf55dc5c058d1ce7829 GIT binary patch literal 20373 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 L^r<(qnC*W7;Vti^ literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..773a3766115a3a2a8ec0994dc2a947de29cec251 GIT binary patch literal 422 zcmXw#!AiqG5QaBxW3^IjvC@L#UC=Jos}yP*X;71rG%e(^tl8DBrb)=Ih2DDf4ZL_4 z-=@dVtEb)sZ#}soIt<^;F#j;ae3Z*2AnhHrCql-rwD>pWFZnr^$r~WR1w?Tbl5=w; z@8(ItEfCdJ$(9XHitALoPDj?c6!{c|6m<#XWNTHloo-jN?UkxomT9fZj&Wm{V*_Pn zZKPX6r*o?rBV?FEbZt6DZ`BxB+DJDY8(lg2Z4dQy>rY=XOmx>7cKe#0X+Ob_+ypkS z(BU-ZFu(%)jA1dKh7XJ~I>T@<_a-==4&v~MdV<6L_#FBa#{r7wViL-bbzpNwgBkSM zJJFd#Z u(%`f`@MsAd$^O9-R5FkE None: + """Entry Point for completion of main and subcommand options.""" + # Don't complete if user hasn't sourced bash_completion file. + if "PIP_AUTO_COMPLETE" not in os.environ: + return + cwords = os.environ["COMP_WORDS"].split()[1:] + cword = int(os.environ["COMP_CWORD"]) + try: + current = cwords[cword - 1] + except IndexError: + current = "" + + parser = create_main_parser() + subcommands = list(commands_dict) + options = [] + + # subcommand + subcommand_name: Optional[str] = None + for word in cwords: + if word in subcommands: + subcommand_name = word + break + # subcommand options + if subcommand_name is not None: + # special case: 'help' subcommand has no options + if subcommand_name == "help": + sys.exit(1) + # special case: list locally installed dists for show and uninstall + should_list_installed = not current.startswith("-") and subcommand_name in [ + "show", + "uninstall", + ] + if should_list_installed: + env = get_default_environment() + lc = current.lower() + installed = [ + dist.canonical_name + for dist in env.iter_installed_distributions(local_only=True) + if dist.canonical_name.startswith(lc) + and dist.canonical_name not in cwords[1:] + ] + # if there are no dists installed, fall back to option completion + if installed: + for dist in installed: + print(dist) + sys.exit(1) + + should_list_installables = ( + not current.startswith("-") and subcommand_name == "install" + ) + if should_list_installables: + for path in auto_complete_paths(current, "path"): + print(path) + sys.exit(1) + + subcommand = create_command(subcommand_name) + + for opt in subcommand.parser.option_list_all: + if opt.help != optparse.SUPPRESS_HELP: + options += [ + (opt_str, opt.nargs) for opt_str in opt._long_opts + opt._short_opts + ] + + # filter out previously specified options from available options + prev_opts = [x.split("=")[0] for x in cwords[1 : cword - 1]] + options = [(x, v) for (x, v) in options if x not in prev_opts] + # filter options by current input + options = [(k, v) for k, v in options if k.startswith(current)] + # get completion type given cwords and available subcommand options + completion_type = get_path_completion_type( + cwords, + cword, + subcommand.parser.option_list_all, + ) + # get completion files and directories if ``completion_type`` is + # ````, ``

`` or ```` + if completion_type: + paths = auto_complete_paths(current, completion_type) + options = [(path, 0) for path in paths] + for option in options: + opt_label = option[0] + # append '=' to options which require args + if option[1] and option[0][:2] == "--": + opt_label += "=" + print(opt_label) + else: + # show main parser options only when necessary + + opts = [i.option_list for i in parser.option_groups] + opts.append(parser.option_list) + flattened_opts = chain.from_iterable(opts) + if current.startswith("-"): + for opt in flattened_opts: + if opt.help != optparse.SUPPRESS_HELP: + subcommands += opt._long_opts + opt._short_opts + else: + # get completion type given cwords and all available options + completion_type = get_path_completion_type(cwords, cword, flattened_opts) + if completion_type: + subcommands = list(auto_complete_paths(current, completion_type)) + + print(" ".join([x for x in subcommands if x.startswith(current)])) + sys.exit(1) + + +def get_path_completion_type( + cwords: List[str], cword: int, opts: Iterable[Any] +) -> Optional[str]: + """Get the type of path completion (``file``, ``dir``, ``path`` or None) + + :param cwords: same as the environmental variable ``COMP_WORDS`` + :param cword: same as the environmental variable ``COMP_CWORD`` + :param opts: The available options to check + :return: path completion type (``file``, ``dir``, ``path`` or None) + """ + if cword < 2 or not cwords[cword - 2].startswith("-"): + return None + for opt in opts: + if opt.help == optparse.SUPPRESS_HELP: + continue + for o in str(opt).split("/"): + if cwords[cword - 2].split("=")[0] == o: + if not opt.metavar or any( + x in ("path", "file", "dir") for x in opt.metavar.split("/") + ): + return opt.metavar + return None + + +def auto_complete_paths(current: str, completion_type: str) -> Iterable[str]: + """If ``completion_type`` is ``file`` or ``path``, list all regular files + and directories starting with ``current``; otherwise only list directories + starting with ``current``. + + :param current: The word to be completed + :param completion_type: path completion type(``file``, ``path`` or ``dir``) + :return: A generator of regular files and/or directories + """ + directory, filename = os.path.split(current) + current_path = os.path.abspath(directory) + # Don't complete paths if they can't be accessed + if not os.access(current_path, os.R_OK): + return + filename = os.path.normcase(filename) + # list all files that start with ``filename`` + file_list = ( + x for x in os.listdir(current_path) if os.path.normcase(x).startswith(filename) + ) + for f in file_list: + opt = os.path.join(current_path, f) + comp_file = os.path.normcase(os.path.join(directory, f)) + # complete regular files when there is not ```` after option + # complete directories when there is ````, ```` or + # ````after option + if completion_type != "dir" and os.path.isfile(opt): + yield comp_file + elif os.path.isdir(opt): + yield os.path.join(comp_file, "") diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/cli/base_command.py b/.venv/lib/python3.11/site-packages/pip/_internal/cli/base_command.py new file mode 100644 index 0000000..db9d5cc --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_internal/cli/base_command.py @@ -0,0 +1,236 @@ +"""Base Command class, and related routines""" + +import functools +import logging +import logging.config +import optparse +import os +import sys +import traceback +from optparse import Values +from typing import Any, Callable, List, Optional, Tuple + +from pip._vendor.rich import traceback as rich_traceback + +from pip._internal.cli import cmdoptions +from pip._internal.cli.command_context import CommandContextMixIn +from pip._internal.cli.parser import ConfigOptionParser, UpdatingDefaultsHelpFormatter +from pip._internal.cli.status_codes import ( + ERROR, + PREVIOUS_BUILD_DIR_ERROR, + UNKNOWN_ERROR, + VIRTUALENV_NOT_FOUND, +) +from pip._internal.exceptions import ( + BadCommand, + CommandError, + DiagnosticPipError, + InstallationError, + NetworkConnectionError, + PreviousBuildDirError, + UninstallationError, +) +from pip._internal.utils.filesystem import check_path_owner +from pip._internal.utils.logging import BrokenStdoutLoggingError, setup_logging +from pip._internal.utils.misc import get_prog, normalize_path +from pip._internal.utils.temp_dir import TempDirectoryTypeRegistry as TempDirRegistry +from pip._internal.utils.temp_dir import global_tempdir_manager, tempdir_registry +from pip._internal.utils.virtualenv import running_under_virtualenv + +__all__ = ["Command"] + +logger = logging.getLogger(__name__) + + +class Command(CommandContextMixIn): + usage: str = "" + ignore_require_venv: bool = False + + def __init__(self, name: str, summary: str, isolated: bool = False) -> None: + super().__init__() + + self.name = name + self.summary = summary + self.parser = ConfigOptionParser( + usage=self.usage, + prog=f"{get_prog()} {name}", + formatter=UpdatingDefaultsHelpFormatter(), + add_help_option=False, + name=name, + description=self.__doc__, + isolated=isolated, + ) + + self.tempdir_registry: Optional[TempDirRegistry] = None + + # Commands should add options to this option group + optgroup_name = f"{self.name.capitalize()} Options" + self.cmd_opts = optparse.OptionGroup(self.parser, optgroup_name) + + # Add the general options + gen_opts = cmdoptions.make_option_group( + cmdoptions.general_group, + self.parser, + ) + self.parser.add_option_group(gen_opts) + + self.add_options() + + def add_options(self) -> None: + pass + + def handle_pip_version_check(self, options: Values) -> None: + """ + This is a no-op so that commands by default do not do the pip version + check. + """ + # Make sure we do the pip version check if the index_group options + # are present. + assert not hasattr(options, "no_index") + + def run(self, options: Values, args: List[str]) -> int: + raise NotImplementedError + + def parse_args(self, args: List[str]) -> Tuple[Values, List[str]]: + # factored out for testability + return self.parser.parse_args(args) + + def main(self, args: List[str]) -> int: + try: + with self.main_context(): + return self._main(args) + finally: + logging.shutdown() + + def _main(self, args: List[str]) -> int: + # We must initialize this before the tempdir manager, otherwise the + # configuration would not be accessible by the time we clean up the + # tempdir manager. + self.tempdir_registry = self.enter_context(tempdir_registry()) + # Intentionally set as early as possible so globally-managed temporary + # directories are available to the rest of the code. + self.enter_context(global_tempdir_manager()) + + options, args = self.parse_args(args) + + # Set verbosity so that it can be used elsewhere. + self.verbosity = options.verbose - options.quiet + + level_number = setup_logging( + verbosity=self.verbosity, + no_color=options.no_color, + user_log_file=options.log, + ) + + always_enabled_features = set(options.features_enabled) & set( + cmdoptions.ALWAYS_ENABLED_FEATURES + ) + if always_enabled_features: + logger.warning( + "The following features are always enabled: %s. ", + ", ".join(sorted(always_enabled_features)), + ) + + # Make sure that the --python argument isn't specified after the + # subcommand. We can tell, because if --python was specified, + # we should only reach this point if we're running in the created + # subprocess, which has the _PIP_RUNNING_IN_SUBPROCESS environment + # variable set. + if options.python and "_PIP_RUNNING_IN_SUBPROCESS" not in os.environ: + logger.critical( + "The --python option must be placed before the pip subcommand name" + ) + sys.exit(ERROR) + + # TODO: Try to get these passing down from the command? + # without resorting to os.environ to hold these. + # This also affects isolated builds and it should. + + if options.no_input: + os.environ["PIP_NO_INPUT"] = "1" + + if options.exists_action: + os.environ["PIP_EXISTS_ACTION"] = " ".join(options.exists_action) + + if options.require_venv and not self.ignore_require_venv: + # If a venv is required check if it can really be found + if not running_under_virtualenv(): + logger.critical("Could not find an activated virtualenv (required).") + sys.exit(VIRTUALENV_NOT_FOUND) + + if options.cache_dir: + options.cache_dir = normalize_path(options.cache_dir) + if not check_path_owner(options.cache_dir): + logger.warning( + "The directory '%s' or its parent directory is not owned " + "or is not writable by the current user. The cache " + "has been disabled. Check the permissions and owner of " + "that directory. If executing pip with sudo, you should " + "use sudo's -H flag.", + options.cache_dir, + ) + options.cache_dir = None + + def intercepts_unhandled_exc( + run_func: Callable[..., int] + ) -> Callable[..., int]: + @functools.wraps(run_func) + def exc_logging_wrapper(*args: Any) -> int: + try: + status = run_func(*args) + assert isinstance(status, int) + return status + except DiagnosticPipError as exc: + logger.error("%s", exc, extra={"rich": True}) + logger.debug("Exception information:", exc_info=True) + + return ERROR + except PreviousBuildDirError as exc: + logger.critical(str(exc)) + logger.debug("Exception information:", exc_info=True) + + return PREVIOUS_BUILD_DIR_ERROR + except ( + InstallationError, + UninstallationError, + BadCommand, + NetworkConnectionError, + ) as exc: + logger.critical(str(exc)) + logger.debug("Exception information:", exc_info=True) + + return ERROR + except CommandError as exc: + logger.critical("%s", exc) + logger.debug("Exception information:", exc_info=True) + + return ERROR + except BrokenStdoutLoggingError: + # Bypass our logger and write any remaining messages to + # stderr because stdout no longer works. + print("ERROR: Pipe to stdout was broken", file=sys.stderr) + if level_number <= logging.DEBUG: + traceback.print_exc(file=sys.stderr) + + return ERROR + except KeyboardInterrupt: + logger.critical("Operation cancelled by user") + logger.debug("Exception information:", exc_info=True) + + return ERROR + except BaseException: + logger.critical("Exception:", exc_info=True) + + return UNKNOWN_ERROR + + return exc_logging_wrapper + + try: + if not options.debug_mode: + run = intercepts_unhandled_exc(self.run) + else: + run = self.run + rich_traceback.install(show_locals=True) + return run(options, args) + finally: + self.handle_pip_version_check(options) diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/cli/cmdoptions.py b/.venv/lib/python3.11/site-packages/pip/_internal/cli/cmdoptions.py new file mode 100644 index 0000000..d05e502 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_internal/cli/cmdoptions.py @@ -0,0 +1,1074 @@ +""" +shared options and groups + +The principle here is to define options once, but *not* instantiate them +globally. One reason being that options with action='append' can carry state +between parses. pip parses general options twice internally, and shouldn't +pass on state. To be consistent, all options will follow this design. +""" + +# The following comment should be removed at some point in the future. +# mypy: strict-optional=False + +import importlib.util +import logging +import os +import textwrap +from functools import partial +from optparse import SUPPRESS_HELP, Option, OptionGroup, OptionParser, Values +from textwrap import dedent +from typing import Any, Callable, Dict, Optional, Tuple + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.cli.parser import ConfigOptionParser +from pip._internal.exceptions import CommandError +from pip._internal.locations import USER_CACHE_DIR, get_src_prefix +from pip._internal.models.format_control import FormatControl +from pip._internal.models.index import PyPI +from pip._internal.models.target_python import TargetPython +from pip._internal.utils.hashes import STRONG_HASHES +from pip._internal.utils.misc import strtobool + +logger = logging.getLogger(__name__) + + +def raise_option_error(parser: OptionParser, option: Option, msg: str) -> None: + """ + Raise an option parsing error using parser.error(). + + Args: + parser: an OptionParser instance. + option: an Option instance. + msg: the error text. + """ + msg = f"{option} error: {msg}" + msg = textwrap.fill(" ".join(msg.split())) + parser.error(msg) + + +def make_option_group(group: Dict[str, Any], parser: ConfigOptionParser) -> OptionGroup: + """ + Return an OptionGroup object + group -- assumed to be dict with 'name' and 'options' keys + parser -- an optparse Parser + """ + option_group = OptionGroup(parser, group["name"]) + for option in group["options"]: + option_group.add_option(option()) + return option_group + + +def check_dist_restriction(options: Values, check_target: bool = False) -> None: + """Function for determining if custom platform options are allowed. + + :param options: The OptionParser options. + :param check_target: Whether or not to check if --target is being used. + """ + dist_restriction_set = any( + [ + options.python_version, + options.platforms, + options.abis, + options.implementation, + ] + ) + + binary_only = FormatControl(set(), {":all:"}) + sdist_dependencies_allowed = ( + options.format_control != binary_only and not options.ignore_dependencies + ) + + # Installations or downloads using dist restrictions must not combine + # source distributions and dist-specific wheels, as they are not + # guaranteed to be locally compatible. + if dist_restriction_set and sdist_dependencies_allowed: + raise CommandError( + "When restricting platform and interpreter constraints using " + "--python-version, --platform, --abi, or --implementation, " + "either --no-deps must be set, or --only-binary=:all: must be " + "set and --no-binary must not be set (or must be set to " + ":none:)." + ) + + if check_target: + if not options.dry_run and dist_restriction_set and not options.target_dir: + raise CommandError( + "Can not use any platform or abi specific options unless " + "installing via '--target' or using '--dry-run'" + ) + + +def _path_option_check(option: Option, opt: str, value: str) -> str: + return os.path.expanduser(value) + + +def _package_name_option_check(option: Option, opt: str, value: str) -> str: + return canonicalize_name(value) + + +class PipOption(Option): + TYPES = Option.TYPES + ("path", "package_name") + TYPE_CHECKER = Option.TYPE_CHECKER.copy() + TYPE_CHECKER["package_name"] = _package_name_option_check + TYPE_CHECKER["path"] = _path_option_check + + +########### +# options # +########### + +help_: Callable[..., Option] = partial( + Option, + "-h", + "--help", + dest="help", + action="help", + help="Show help.", +) + +debug_mode: Callable[..., Option] = partial( + Option, + "--debug", + dest="debug_mode", + action="store_true", + default=False, + help=( + "Let unhandled exceptions propagate outside the main subroutine, " + "instead of logging them to stderr." + ), +) + +isolated_mode: Callable[..., Option] = partial( + Option, + "--isolated", + dest="isolated_mode", + action="store_true", + default=False, + help=( + "Run pip in an isolated mode, ignoring environment variables and user " + "configuration." + ), +) + +require_virtualenv: Callable[..., Option] = partial( + Option, + "--require-virtualenv", + "--require-venv", + dest="require_venv", + action="store_true", + default=False, + help=( + "Allow pip to only run in a virtual environment; " + "exit with an error otherwise." + ), +) + +override_externally_managed: Callable[..., Option] = partial( + Option, + "--break-system-packages", + dest="override_externally_managed", + action="store_true", + help="Allow pip to modify an EXTERNALLY-MANAGED Python installation", +) + +python: Callable[..., Option] = partial( + Option, + "--python", + dest="python", + help="Run pip with the specified Python interpreter.", +) + +verbose: Callable[..., Option] = partial( + Option, + "-v", + "--verbose", + dest="verbose", + action="count", + default=0, + help="Give more output. Option is additive, and can be used up to 3 times.", +) + +no_color: Callable[..., Option] = partial( + Option, + "--no-color", + dest="no_color", + action="store_true", + default=False, + help="Suppress colored output.", +) + +version: Callable[..., Option] = partial( + Option, + "-V", + "--version", + dest="version", + action="store_true", + help="Show version and exit.", +) + +quiet: Callable[..., Option] = partial( + Option, + "-q", + "--quiet", + dest="quiet", + action="count", + default=0, + help=( + "Give less output. Option is additive, and can be used up to 3" + " times (corresponding to WARNING, ERROR, and CRITICAL logging" + " levels)." + ), +) + +progress_bar: Callable[..., Option] = partial( + Option, + "--progress-bar", + dest="progress_bar", + type="choice", + choices=["on", "off"], + default="on", + help="Specify whether the progress bar should be used [on, off] (default: on)", +) + +log: Callable[..., Option] = partial( + PipOption, + "--log", + "--log-file", + "--local-log", + dest="log", + metavar="path", + type="path", + help="Path to a verbose appending log.", +) + +no_input: Callable[..., Option] = partial( + Option, + # Don't ask for input + "--no-input", + dest="no_input", + action="store_true", + default=False, + help="Disable prompting for input.", +) + +keyring_provider: Callable[..., Option] = partial( + Option, + "--keyring-provider", + dest="keyring_provider", + choices=["auto", "disabled", "import", "subprocess"], + default="auto", + help=( + "Enable the credential lookup via the keyring library if user input is allowed." + " Specify which mechanism to use [disabled, import, subprocess]." + " (default: disabled)" + ), +) + +proxy: Callable[..., Option] = partial( + Option, + "--proxy", + dest="proxy", + type="str", + default="", + help="Specify a proxy in the form scheme://[user:passwd@]proxy.server:port.", +) + +retries: Callable[..., Option] = partial( + Option, + "--retries", + dest="retries", + type="int", + default=5, + help="Maximum number of retries each connection should attempt " + "(default %default times).", +) + +timeout: Callable[..., Option] = partial( + Option, + "--timeout", + "--default-timeout", + metavar="sec", + dest="timeout", + type="float", + default=15, + help="Set the socket timeout (default %default seconds).", +) + + +def exists_action() -> Option: + return Option( + # Option when path already exist + "--exists-action", + dest="exists_action", + type="choice", + choices=["s", "i", "w", "b", "a"], + default=[], + action="append", + metavar="action", + help="Default action when a path already exists: " + "(s)witch, (i)gnore, (w)ipe, (b)ackup, (a)bort.", + ) + + +cert: Callable[..., Option] = partial( + PipOption, + "--cert", + dest="cert", + type="path", + metavar="path", + help=( + "Path to PEM-encoded CA certificate bundle. " + "If provided, overrides the default. " + "See 'SSL Certificate Verification' in pip documentation " + "for more information." + ), +) + +client_cert: Callable[..., Option] = partial( + PipOption, + "--client-cert", + dest="client_cert", + type="path", + default=None, + metavar="path", + help="Path to SSL client certificate, a single file containing the " + "private key and the certificate in PEM format.", +) + +index_url: Callable[..., Option] = partial( + Option, + "-i", + "--index-url", + "--pypi-url", + dest="index_url", + metavar="URL", + default=PyPI.simple_url, + help="Base URL of the Python Package Index (default %default). " + "This should point to a repository compliant with PEP 503 " + "(the simple repository API) or a local directory laid out " + "in the same format.", +) + + +def extra_index_url() -> Option: + return Option( + "--extra-index-url", + dest="extra_index_urls", + metavar="URL", + action="append", + default=[], + help="Extra URLs of package indexes to use in addition to " + "--index-url. Should follow the same rules as " + "--index-url.", + ) + + +no_index: Callable[..., Option] = partial( + Option, + "--no-index", + dest="no_index", + action="store_true", + default=False, + help="Ignore package index (only looking at --find-links URLs instead).", +) + + +def find_links() -> Option: + return Option( + "-f", + "--find-links", + dest="find_links", + action="append", + default=[], + metavar="url", + help="If a URL or path to an html file, then parse for links to " + "archives such as sdist (.tar.gz) or wheel (.whl) files. " + "If a local path or file:// URL that's a directory, " + "then look for archives in the directory listing. " + "Links to VCS project URLs are not supported.", + ) + + +def trusted_host() -> Option: + return Option( + "--trusted-host", + dest="trusted_hosts", + action="append", + metavar="HOSTNAME", + default=[], + help="Mark this host or host:port pair as trusted, even though it " + "does not have valid or any HTTPS.", + ) + + +def constraints() -> Option: + return Option( + "-c", + "--constraint", + dest="constraints", + action="append", + default=[], + metavar="file", + help="Constrain versions using the given constraints file. " + "This option can be used multiple times.", + ) + + +def requirements() -> Option: + return Option( + "-r", + "--requirement", + dest="requirements", + action="append", + default=[], + metavar="file", + help="Install from the given requirements file. " + "This option can be used multiple times.", + ) + + +def editable() -> Option: + return Option( + "-e", + "--editable", + dest="editables", + action="append", + default=[], + metavar="path/url", + help=( + "Install a project in editable mode (i.e. setuptools " + '"develop mode") from a local project path or a VCS url.' + ), + ) + + +def _handle_src(option: Option, opt_str: str, value: str, parser: OptionParser) -> None: + value = os.path.abspath(value) + setattr(parser.values, option.dest, value) + + +src: Callable[..., Option] = partial( + PipOption, + "--src", + "--source", + "--source-dir", + "--source-directory", + dest="src_dir", + type="path", + metavar="dir", + default=get_src_prefix(), + action="callback", + callback=_handle_src, + help="Directory to check out editable projects into. " + 'The default in a virtualenv is "/src". ' + 'The default for global installs is "/src".', +) + + +def _get_format_control(values: Values, option: Option) -> Any: + """Get a format_control object.""" + return getattr(values, option.dest) + + +def _handle_no_binary( + option: Option, opt_str: str, value: str, parser: OptionParser +) -> None: + existing = _get_format_control(parser.values, option) + FormatControl.handle_mutual_excludes( + value, + existing.no_binary, + existing.only_binary, + ) + + +def _handle_only_binary( + option: Option, opt_str: str, value: str, parser: OptionParser +) -> None: + existing = _get_format_control(parser.values, option) + FormatControl.handle_mutual_excludes( + value, + existing.only_binary, + existing.no_binary, + ) + + +def no_binary() -> Option: + format_control = FormatControl(set(), set()) + return Option( + "--no-binary", + dest="format_control", + action="callback", + callback=_handle_no_binary, + type="str", + default=format_control, + help="Do not use binary packages. Can be supplied multiple times, and " + 'each time adds to the existing value. Accepts either ":all:" to ' + 'disable all binary packages, ":none:" to empty the set (notice ' + "the colons), or one or more package names with commas between " + "them (no colons). Note that some packages are tricky to compile " + "and may fail to install when this option is used on them.", + ) + + +def only_binary() -> Option: + format_control = FormatControl(set(), set()) + return Option( + "--only-binary", + dest="format_control", + action="callback", + callback=_handle_only_binary, + type="str", + default=format_control, + help="Do not use source packages. Can be supplied multiple times, and " + 'each time adds to the existing value. Accepts either ":all:" to ' + 'disable all source packages, ":none:" to empty the set, or one ' + "or more package names with commas between them. Packages " + "without binary distributions will fail to install when this " + "option is used on them.", + ) + + +platforms: Callable[..., Option] = partial( + Option, + "--platform", + dest="platforms", + metavar="platform", + action="append", + default=None, + help=( + "Only use wheels compatible with . Defaults to the " + "platform of the running system. Use this option multiple times to " + "specify multiple platforms supported by the target interpreter." + ), +) + + +# This was made a separate function for unit-testing purposes. +def _convert_python_version(value: str) -> Tuple[Tuple[int, ...], Optional[str]]: + """ + Convert a version string like "3", "37", or "3.7.3" into a tuple of ints. + + :return: A 2-tuple (version_info, error_msg), where `error_msg` is + non-None if and only if there was a parsing error. + """ + if not value: + # The empty string is the same as not providing a value. + return (None, None) + + parts = value.split(".") + if len(parts) > 3: + return ((), "at most three version parts are allowed") + + if len(parts) == 1: + # Then we are in the case of "3" or "37". + value = parts[0] + if len(value) > 1: + parts = [value[0], value[1:]] + + try: + version_info = tuple(int(part) for part in parts) + except ValueError: + return ((), "each version part must be an integer") + + return (version_info, None) + + +def _handle_python_version( + option: Option, opt_str: str, value: str, parser: OptionParser +) -> None: + """ + Handle a provided --python-version value. + """ + version_info, error_msg = _convert_python_version(value) + if error_msg is not None: + msg = f"invalid --python-version value: {value!r}: {error_msg}" + raise_option_error(parser, option=option, msg=msg) + + parser.values.python_version = version_info + + +python_version: Callable[..., Option] = partial( + Option, + "--python-version", + dest="python_version", + metavar="python_version", + action="callback", + callback=_handle_python_version, + type="str", + default=None, + help=dedent( + """\ + The Python interpreter version to use for wheel and "Requires-Python" + compatibility checks. Defaults to a version derived from the running + interpreter. The version can be specified using up to three dot-separated + integers (e.g. "3" for 3.0.0, "3.7" for 3.7.0, or "3.7.3"). A major-minor + version can also be given as a string without dots (e.g. "37" for 3.7.0). + """ + ), +) + + +implementation: Callable[..., Option] = partial( + Option, + "--implementation", + dest="implementation", + metavar="implementation", + default=None, + help=( + "Only use wheels compatible with Python " + "implementation , e.g. 'pp', 'jy', 'cp', " + " or 'ip'. If not specified, then the current " + "interpreter implementation is used. Use 'py' to force " + "implementation-agnostic wheels." + ), +) + + +abis: Callable[..., Option] = partial( + Option, + "--abi", + dest="abis", + metavar="abi", + action="append", + default=None, + help=( + "Only use wheels compatible with Python abi , e.g. 'pypy_41'. " + "If not specified, then the current interpreter abi tag is used. " + "Use this option multiple times to specify multiple abis supported " + "by the target interpreter. Generally you will need to specify " + "--implementation, --platform, and --python-version when using this " + "option." + ), +) + + +def add_target_python_options(cmd_opts: OptionGroup) -> None: + cmd_opts.add_option(platforms()) + cmd_opts.add_option(python_version()) + cmd_opts.add_option(implementation()) + cmd_opts.add_option(abis()) + + +def make_target_python(options: Values) -> TargetPython: + target_python = TargetPython( + platforms=options.platforms, + py_version_info=options.python_version, + abis=options.abis, + implementation=options.implementation, + ) + + return target_python + + +def prefer_binary() -> Option: + return Option( + "--prefer-binary", + dest="prefer_binary", + action="store_true", + default=False, + help=( + "Prefer binary packages over source packages, even if the " + "source packages are newer." + ), + ) + + +cache_dir: Callable[..., Option] = partial( + PipOption, + "--cache-dir", + dest="cache_dir", + default=USER_CACHE_DIR, + metavar="dir", + type="path", + help="Store the cache data in .", +) + + +def _handle_no_cache_dir( + option: Option, opt: str, value: str, parser: OptionParser +) -> None: + """ + Process a value provided for the --no-cache-dir option. + + This is an optparse.Option callback for the --no-cache-dir option. + """ + # The value argument will be None if --no-cache-dir is passed via the + # command-line, since the option doesn't accept arguments. However, + # the value can be non-None if the option is triggered e.g. by an + # environment variable, like PIP_NO_CACHE_DIR=true. + if value is not None: + # Then parse the string value to get argument error-checking. + try: + strtobool(value) + except ValueError as exc: + raise_option_error(parser, option=option, msg=str(exc)) + + # Originally, setting PIP_NO_CACHE_DIR to a value that strtobool() + # converted to 0 (like "false" or "no") caused cache_dir to be disabled + # rather than enabled (logic would say the latter). Thus, we disable + # the cache directory not just on values that parse to True, but (for + # backwards compatibility reasons) also on values that parse to False. + # In other words, always set it to False if the option is provided in + # some (valid) form. + parser.values.cache_dir = False + + +no_cache: Callable[..., Option] = partial( + Option, + "--no-cache-dir", + dest="cache_dir", + action="callback", + callback=_handle_no_cache_dir, + help="Disable the cache.", +) + +no_deps: Callable[..., Option] = partial( + Option, + "--no-deps", + "--no-dependencies", + dest="ignore_dependencies", + action="store_true", + default=False, + help="Don't install package dependencies.", +) + +ignore_requires_python: Callable[..., Option] = partial( + Option, + "--ignore-requires-python", + dest="ignore_requires_python", + action="store_true", + help="Ignore the Requires-Python information.", +) + +no_build_isolation: Callable[..., Option] = partial( + Option, + "--no-build-isolation", + dest="build_isolation", + action="store_false", + default=True, + help="Disable isolation when building a modern source distribution. " + "Build dependencies specified by PEP 518 must be already installed " + "if this option is used.", +) + +check_build_deps: Callable[..., Option] = partial( + Option, + "--check-build-dependencies", + dest="check_build_deps", + action="store_true", + default=False, + help="Check the build dependencies when PEP517 is used.", +) + + +def _handle_no_use_pep517( + option: Option, opt: str, value: str, parser: OptionParser +) -> None: + """ + Process a value provided for the --no-use-pep517 option. + + This is an optparse.Option callback for the no_use_pep517 option. + """ + # Since --no-use-pep517 doesn't accept arguments, the value argument + # will be None if --no-use-pep517 is passed via the command-line. + # However, the value can be non-None if the option is triggered e.g. + # by an environment variable, for example "PIP_NO_USE_PEP517=true". + if value is not None: + msg = """A value was passed for --no-use-pep517, + probably using either the PIP_NO_USE_PEP517 environment variable + or the "no-use-pep517" config file option. Use an appropriate value + of the PIP_USE_PEP517 environment variable or the "use-pep517" + config file option instead. + """ + raise_option_error(parser, option=option, msg=msg) + + # If user doesn't wish to use pep517, we check if setuptools and wheel are installed + # and raise error if it is not. + packages = ("setuptools", "wheel") + if not all(importlib.util.find_spec(package) for package in packages): + msg = ( + f"It is not possible to use --no-use-pep517 " + f"without {' and '.join(packages)} installed." + ) + raise_option_error(parser, option=option, msg=msg) + + # Otherwise, --no-use-pep517 was passed via the command-line. + parser.values.use_pep517 = False + + +use_pep517: Any = partial( + Option, + "--use-pep517", + dest="use_pep517", + action="store_true", + default=None, + help="Use PEP 517 for building source distributions " + "(use --no-use-pep517 to force legacy behaviour).", +) + +no_use_pep517: Any = partial( + Option, + "--no-use-pep517", + dest="use_pep517", + action="callback", + callback=_handle_no_use_pep517, + default=None, + help=SUPPRESS_HELP, +) + + +def _handle_config_settings( + option: Option, opt_str: str, value: str, parser: OptionParser +) -> None: + key, sep, val = value.partition("=") + if sep != "=": + parser.error(f"Arguments to {opt_str} must be of the form KEY=VAL") + dest = getattr(parser.values, option.dest) + if dest is None: + dest = {} + setattr(parser.values, option.dest, dest) + if key in dest: + if isinstance(dest[key], list): + dest[key].append(val) + else: + dest[key] = [dest[key], val] + else: + dest[key] = val + + +config_settings: Callable[..., Option] = partial( + Option, + "-C", + "--config-settings", + dest="config_settings", + type=str, + action="callback", + callback=_handle_config_settings, + metavar="settings", + help="Configuration settings to be passed to the PEP 517 build backend. " + "Settings take the form KEY=VALUE. Use multiple --config-settings options " + "to pass multiple keys to the backend.", +) + +build_options: Callable[..., Option] = partial( + Option, + "--build-option", + dest="build_options", + metavar="options", + action="append", + help="Extra arguments to be supplied to 'setup.py bdist_wheel'.", +) + +global_options: Callable[..., Option] = partial( + Option, + "--global-option", + dest="global_options", + action="append", + metavar="options", + help="Extra global options to be supplied to the setup.py " + "call before the install or bdist_wheel command.", +) + +no_clean: Callable[..., Option] = partial( + Option, + "--no-clean", + action="store_true", + default=False, + help="Don't clean up build directories.", +) + +pre: Callable[..., Option] = partial( + Option, + "--pre", + action="store_true", + default=False, + help="Include pre-release and development versions. By default, " + "pip only finds stable versions.", +) + +disable_pip_version_check: Callable[..., Option] = partial( + Option, + "--disable-pip-version-check", + dest="disable_pip_version_check", + action="store_true", + default=False, + help="Don't periodically check PyPI to determine whether a new version " + "of pip is available for download. Implied with --no-index.", +) + +root_user_action: Callable[..., Option] = partial( + Option, + "--root-user-action", + dest="root_user_action", + default="warn", + choices=["warn", "ignore"], + help="Action if pip is run as a root user. By default, a warning message is shown.", +) + + +def _handle_merge_hash( + option: Option, opt_str: str, value: str, parser: OptionParser +) -> None: + """Given a value spelled "algo:digest", append the digest to a list + pointed to in a dict by the algo name.""" + if not parser.values.hashes: + parser.values.hashes = {} + try: + algo, digest = value.split(":", 1) + except ValueError: + parser.error( + f"Arguments to {opt_str} must be a hash name " + "followed by a value, like --hash=sha256:" + "abcde..." + ) + if algo not in STRONG_HASHES: + parser.error( + "Allowed hash algorithms for {} are {}.".format( + opt_str, ", ".join(STRONG_HASHES) + ) + ) + parser.values.hashes.setdefault(algo, []).append(digest) + + +hash: Callable[..., Option] = partial( + Option, + "--hash", + # Hash values eventually end up in InstallRequirement.hashes due to + # __dict__ copying in process_line(). + dest="hashes", + action="callback", + callback=_handle_merge_hash, + type="string", + help="Verify that the package's archive matches this " + "hash before installing. Example: --hash=sha256:abcdef...", +) + + +require_hashes: Callable[..., Option] = partial( + Option, + "--require-hashes", + dest="require_hashes", + action="store_true", + default=False, + help="Require a hash to check each requirement against, for " + "repeatable installs. This option is implied when any package in a " + "requirements file has a --hash option.", +) + + +list_path: Callable[..., Option] = partial( + PipOption, + "--path", + dest="path", + type="path", + action="append", + help="Restrict to the specified installation path for listing " + "packages (can be used multiple times).", +) + + +def check_list_path_option(options: Values) -> None: + if options.path and (options.user or options.local): + raise CommandError("Cannot combine '--path' with '--user' or '--local'") + + +list_exclude: Callable[..., Option] = partial( + PipOption, + "--exclude", + dest="excludes", + action="append", + metavar="package", + type="package_name", + help="Exclude specified package from the output", +) + + +no_python_version_warning: Callable[..., Option] = partial( + Option, + "--no-python-version-warning", + dest="no_python_version_warning", + action="store_true", + default=False, + help="Silence deprecation warnings for upcoming unsupported Pythons.", +) + + +# Features that are now always on. A warning is printed if they are used. +ALWAYS_ENABLED_FEATURES = [ + "no-binary-enable-wheel-cache", # always on since 23.1 +] + +use_new_feature: Callable[..., Option] = partial( + Option, + "--use-feature", + dest="features_enabled", + metavar="feature", + action="append", + default=[], + choices=[ + "fast-deps", + "truststore", + ] + + ALWAYS_ENABLED_FEATURES, + help="Enable new functionality, that may be backward incompatible.", +) + +use_deprecated_feature: Callable[..., Option] = partial( + Option, + "--use-deprecated", + dest="deprecated_features_enabled", + metavar="feature", + action="append", + default=[], + choices=[ + "legacy-resolver", + ], + help=("Enable deprecated functionality, that will be removed in the future."), +) + + +########## +# groups # +########## + +general_group: Dict[str, Any] = { + "name": "General Options", + "options": [ + help_, + debug_mode, + isolated_mode, + require_virtualenv, + python, + verbose, + version, + quiet, + log, + no_input, + keyring_provider, + proxy, + retries, + timeout, + exists_action, + trusted_host, + cert, + client_cert, + cache_dir, + no_cache, + disable_pip_version_check, + no_color, + no_python_version_warning, + use_new_feature, + use_deprecated_feature, + ], +} + +index_group: Dict[str, Any] = { + "name": "Package Index Options", + "options": [ + index_url, + extra_index_url, + no_index, + find_links, + ], +} diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/cli/command_context.py b/.venv/lib/python3.11/site-packages/pip/_internal/cli/command_context.py new file mode 100644 index 0000000..139995a --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_internal/cli/command_context.py @@ -0,0 +1,27 @@ +from contextlib import ExitStack, contextmanager +from typing import ContextManager, Generator, TypeVar + +_T = TypeVar("_T", covariant=True) + + +class CommandContextMixIn: + def __init__(self) -> None: + super().__init__() + self._in_main_context = False + self._main_context = ExitStack() + + @contextmanager + def main_context(self) -> Generator[None, None, None]: + assert not self._in_main_context + + self._in_main_context = True + try: + with self._main_context: + yield + finally: + self._in_main_context = False + + def enter_context(self, context_provider: ContextManager[_T]) -> _T: + assert self._in_main_context + + return self._main_context.enter_context(context_provider) diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/cli/main.py b/.venv/lib/python3.11/site-packages/pip/_internal/cli/main.py new file mode 100644 index 0000000..7e061f5 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_internal/cli/main.py @@ -0,0 +1,79 @@ +"""Primary application entrypoint. +""" +import locale +import logging +import os +import sys +import warnings +from typing import List, Optional + +from pip._internal.cli.autocompletion import autocomplete +from pip._internal.cli.main_parser import parse_command +from pip._internal.commands import create_command +from pip._internal.exceptions import PipError +from pip._internal.utils import deprecation + +logger = logging.getLogger(__name__) + + +# Do not import and use main() directly! Using it directly is actively +# discouraged by pip's maintainers. The name, location and behavior of +# this function is subject to change, so calling it directly is not +# portable across different pip versions. + +# In addition, running pip in-process is unsupported and unsafe. This is +# elaborated in detail at +# https://pip.pypa.io/en/stable/user_guide/#using-pip-from-your-program. +# That document also provides suggestions that should work for nearly +# all users that are considering importing and using main() directly. + +# However, we know that certain users will still want to invoke pip +# in-process. If you understand and accept the implications of using pip +# in an unsupported manner, the best approach is to use runpy to avoid +# depending on the exact location of this entry point. + +# The following example shows how to use runpy to invoke pip in that +# case: +# +# sys.argv = ["pip", your, args, here] +# runpy.run_module("pip", run_name="__main__") +# +# Note that this will exit the process after running, unlike a direct +# call to main. As it is not safe to do any processing after calling +# main, this should not be an issue in practice. + + +def main(args: Optional[List[str]] = None) -> int: + if args is None: + args = sys.argv[1:] + + # Suppress the pkg_resources deprecation warning + # Note - we use a module of .*pkg_resources to cover + # the normal case (pip._vendor.pkg_resources) and the + # devendored case (a bare pkg_resources) + warnings.filterwarnings( + action="ignore", category=DeprecationWarning, module=".*pkg_resources" + ) + + # Configure our deprecation warnings to be sent through loggers + deprecation.install_warning_logger() + + autocomplete() + + try: + cmd_name, cmd_args = parse_command(args) + except PipError as exc: + sys.stderr.write(f"ERROR: {exc}") + sys.stderr.write(os.linesep) + sys.exit(1) + + # Needed for locale.getpreferredencoding(False) to work + # in pip._internal.utils.encoding.auto_decode + try: + locale.setlocale(locale.LC_ALL, "") + except locale.Error as e: + # setlocale can apparently crash if locale are uninitialized + logger.debug("Ignoring error %s when setting locale", e) + command = create_command(cmd_name, isolated=("--isolated" in cmd_args)) + + return command.main(cmd_args) diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/cli/main_parser.py b/.venv/lib/python3.11/site-packages/pip/_internal/cli/main_parser.py new file mode 100644 index 0000000..5ade356 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_internal/cli/main_parser.py @@ -0,0 +1,134 @@ +"""A single place for constructing and exposing the main parser +""" + +import os +import subprocess +import sys +from typing import List, Optional, Tuple + +from pip._internal.build_env import get_runnable_pip +from pip._internal.cli import cmdoptions +from pip._internal.cli.parser import ConfigOptionParser, UpdatingDefaultsHelpFormatter +from pip._internal.commands import commands_dict, get_similar_commands +from pip._internal.exceptions import CommandError +from pip._internal.utils.misc import get_pip_version, get_prog + +__all__ = ["create_main_parser", "parse_command"] + + +def create_main_parser() -> ConfigOptionParser: + """Creates and returns the main parser for pip's CLI""" + + parser = ConfigOptionParser( + usage="\n%prog [options]", + add_help_option=False, + formatter=UpdatingDefaultsHelpFormatter(), + name="global", + prog=get_prog(), + ) + parser.disable_interspersed_args() + + parser.version = get_pip_version() + + # add the general options + gen_opts = cmdoptions.make_option_group(cmdoptions.general_group, parser) + parser.add_option_group(gen_opts) + + # so the help formatter knows + parser.main = True # type: ignore + + # create command listing for description + description = [""] + [ + f"{name:27} {command_info.summary}" + for name, command_info in commands_dict.items() + ] + parser.description = "\n".join(description) + + return parser + + +def identify_python_interpreter(python: str) -> Optional[str]: + # If the named file exists, use it. + # If it's a directory, assume it's a virtual environment and + # look for the environment's Python executable. + if os.path.exists(python): + if os.path.isdir(python): + # bin/python for Unix, Scripts/python.exe for Windows + # Try both in case of odd cases like cygwin. + for exe in ("bin/python", "Scripts/python.exe"): + py = os.path.join(python, exe) + if os.path.exists(py): + return py + else: + return python + + # Could not find the interpreter specified + return None + + +def parse_command(args: List[str]) -> Tuple[str, List[str]]: + parser = create_main_parser() + + # Note: parser calls disable_interspersed_args(), so the result of this + # call is to split the initial args into the general options before the + # subcommand and everything else. + # For example: + # args: ['--timeout=5', 'install', '--user', 'INITools'] + # general_options: ['--timeout==5'] + # args_else: ['install', '--user', 'INITools'] + general_options, args_else = parser.parse_args(args) + + # --python + if general_options.python and "_PIP_RUNNING_IN_SUBPROCESS" not in os.environ: + # Re-invoke pip using the specified Python interpreter + interpreter = identify_python_interpreter(general_options.python) + if interpreter is None: + raise CommandError( + f"Could not locate Python interpreter {general_options.python}" + ) + + pip_cmd = [ + interpreter, + get_runnable_pip(), + ] + pip_cmd.extend(args) + + # Set a flag so the child doesn't re-invoke itself, causing + # an infinite loop. + os.environ["_PIP_RUNNING_IN_SUBPROCESS"] = "1" + returncode = 0 + try: + proc = subprocess.run(pip_cmd) + returncode = proc.returncode + except (subprocess.SubprocessError, OSError) as exc: + raise CommandError(f"Failed to run pip under {interpreter}: {exc}") + sys.exit(returncode) + + # --version + if general_options.version: + sys.stdout.write(parser.version) + sys.stdout.write(os.linesep) + sys.exit() + + # pip || pip help -> print_help() + if not args_else or (args_else[0] == "help" and len(args_else) == 1): + parser.print_help() + sys.exit() + + # the subcommand name + cmd_name = args_else[0] + + if cmd_name not in commands_dict: + guess = get_similar_commands(cmd_name) + + msg = [f'unknown command "{cmd_name}"'] + if guess: + msg.append(f'maybe you meant "{guess}"') + + raise CommandError(" - ".join(msg)) + + # all the args without the subcommand + cmd_args = args[:] + cmd_args.remove(cmd_name) + + return cmd_name, cmd_args diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/cli/parser.py b/.venv/lib/python3.11/site-packages/pip/_internal/cli/parser.py new file mode 100644 index 0000000..ae554b2 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_internal/cli/parser.py @@ -0,0 +1,294 @@ +"""Base option parser setup""" + +import logging +import optparse +import shutil +import sys +import textwrap +from contextlib import suppress +from typing import Any, Dict, Generator, List, Tuple + +from pip._internal.cli.status_codes import UNKNOWN_ERROR +from pip._internal.configuration import Configuration, ConfigurationError +from pip._internal.utils.misc import redact_auth_from_url, strtobool + +logger = logging.getLogger(__name__) + + +class PrettyHelpFormatter(optparse.IndentedHelpFormatter): + """A prettier/less verbose help formatter for optparse.""" + + def __init__(self, *args: Any, **kwargs: Any) -> None: + # help position must be aligned with __init__.parseopts.description + kwargs["max_help_position"] = 30 + kwargs["indent_increment"] = 1 + kwargs["width"] = shutil.get_terminal_size()[0] - 2 + super().__init__(*args, **kwargs) + + def format_option_strings(self, option: optparse.Option) -> str: + return self._format_option_strings(option) + + def _format_option_strings( + self, option: optparse.Option, mvarfmt: str = " <{}>", optsep: str = ", " + ) -> str: + """ + Return a comma-separated list of option strings and metavars. + + :param option: tuple of (short opt, long opt), e.g: ('-f', '--format') + :param mvarfmt: metavar format string + :param optsep: separator + """ + opts = [] + + if option._short_opts: + opts.append(option._short_opts[0]) + if option._long_opts: + opts.append(option._long_opts[0]) + if len(opts) > 1: + opts.insert(1, optsep) + + if option.takes_value(): + assert option.dest is not None + metavar = option.metavar or option.dest.lower() + opts.append(mvarfmt.format(metavar.lower())) + + return "".join(opts) + + def format_heading(self, heading: str) -> str: + if heading == "Options": + return "" + return heading + ":\n" + + def format_usage(self, usage: str) -> str: + """ + Ensure there is only one newline between usage and the first heading + if there is no description. + """ + msg = "\nUsage: {}\n".format(self.indent_lines(textwrap.dedent(usage), " ")) + return msg + + def format_description(self, description: str) -> str: + # leave full control over description to us + if description: + if hasattr(self.parser, "main"): + label = "Commands" + else: + label = "Description" + # some doc strings have initial newlines, some don't + description = description.lstrip("\n") + # some doc strings have final newlines and spaces, some don't + description = description.rstrip() + # dedent, then reindent + description = self.indent_lines(textwrap.dedent(description), " ") + description = f"{label}:\n{description}\n" + return description + else: + return "" + + def format_epilog(self, epilog: str) -> str: + # leave full control over epilog to us + if epilog: + return epilog + else: + return "" + + def indent_lines(self, text: str, indent: str) -> str: + new_lines = [indent + line for line in text.split("\n")] + return "\n".join(new_lines) + + +class UpdatingDefaultsHelpFormatter(PrettyHelpFormatter): + """Custom help formatter for use in ConfigOptionParser. + + This is updates the defaults before expanding them, allowing + them to show up correctly in the help listing. + + Also redact auth from url type options + """ + + def expand_default(self, option: optparse.Option) -> str: + default_values = None + if self.parser is not None: + assert isinstance(self.parser, ConfigOptionParser) + self.parser._update_defaults(self.parser.defaults) + assert option.dest is not None + default_values = self.parser.defaults.get(option.dest) + help_text = super().expand_default(option) + + if default_values and option.metavar == "URL": + if isinstance(default_values, str): + default_values = [default_values] + + # If its not a list, we should abort and just return the help text + if not isinstance(default_values, list): + default_values = [] + + for val in default_values: + help_text = help_text.replace(val, redact_auth_from_url(val)) + + return help_text + + +class CustomOptionParser(optparse.OptionParser): + def insert_option_group( + self, idx: int, *args: Any, **kwargs: Any + ) -> optparse.OptionGroup: + """Insert an OptionGroup at a given position.""" + group = self.add_option_group(*args, **kwargs) + + self.option_groups.pop() + self.option_groups.insert(idx, group) + + return group + + @property + def option_list_all(self) -> List[optparse.Option]: + """Get a list of all options, including those in option groups.""" + res = self.option_list[:] + for i in self.option_groups: + res.extend(i.option_list) + + return res + + +class ConfigOptionParser(CustomOptionParser): + """Custom option parser which updates its defaults by checking the + configuration files and environmental variables""" + + def __init__( + self, + *args: Any, + name: str, + isolated: bool = False, + **kwargs: Any, + ) -> None: + self.name = name + self.config = Configuration(isolated) + + assert self.name + super().__init__(*args, **kwargs) + + def check_default(self, option: optparse.Option, key: str, val: Any) -> Any: + try: + return option.check_value(key, val) + except optparse.OptionValueError as exc: + print(f"An error occurred during configuration: {exc}") + sys.exit(3) + + def _get_ordered_configuration_items( + self, + ) -> Generator[Tuple[str, Any], None, None]: + # Configuration gives keys in an unordered manner. Order them. + override_order = ["global", self.name, ":env:"] + + # Pool the options into different groups + section_items: Dict[str, List[Tuple[str, Any]]] = { + name: [] for name in override_order + } + for section_key, val in self.config.items(): + # ignore empty values + if not val: + logger.debug( + "Ignoring configuration key '%s' as it's value is empty.", + section_key, + ) + continue + + section, key = section_key.split(".", 1) + if section in override_order: + section_items[section].append((key, val)) + + # Yield each group in their override order + for section in override_order: + for key, val in section_items[section]: + yield key, val + + def _update_defaults(self, defaults: Dict[str, Any]) -> Dict[str, Any]: + """Updates the given defaults with values from the config files and + the environ. Does a little special handling for certain types of + options (lists).""" + + # Accumulate complex default state. + self.values = optparse.Values(self.defaults) + late_eval = set() + # Then set the options with those values + for key, val in self._get_ordered_configuration_items(): + # '--' because configuration supports only long names + option = self.get_option("--" + key) + + # Ignore options not present in this parser. E.g. non-globals put + # in [global] by users that want them to apply to all applicable + # commands. + if option is None: + continue + + assert option.dest is not None + + if option.action in ("store_true", "store_false"): + try: + val = strtobool(val) + except ValueError: + self.error( + f"{val} is not a valid value for {key} option, " + "please specify a boolean value like yes/no, " + "true/false or 1/0 instead." + ) + elif option.action == "count": + with suppress(ValueError): + val = strtobool(val) + with suppress(ValueError): + val = int(val) + if not isinstance(val, int) or val < 0: + self.error( + f"{val} is not a valid value for {key} option, " + "please instead specify either a non-negative integer " + "or a boolean value like yes/no or false/true " + "which is equivalent to 1/0." + ) + elif option.action == "append": + val = val.split() + val = [self.check_default(option, key, v) for v in val] + elif option.action == "callback": + assert option.callback is not None + late_eval.add(option.dest) + opt_str = option.get_opt_string() + val = option.convert_value(opt_str, val) + # From take_action + args = option.callback_args or () + kwargs = option.callback_kwargs or {} + option.callback(option, opt_str, val, self, *args, **kwargs) + else: + val = self.check_default(option, key, val) + + defaults[option.dest] = val + + for key in late_eval: + defaults[key] = getattr(self.values, key) + self.values = None + return defaults + + def get_default_values(self) -> optparse.Values: + """Overriding to make updating the defaults after instantiation of + the option parser possible, _update_defaults() does the dirty work.""" + if not self.process_default_values: + # Old, pre-Optik 1.5 behaviour. + return optparse.Values(self.defaults) + + # Load the configuration, or error out in case of an error + try: + self.config.load() + except ConfigurationError as err: + self.exit(UNKNOWN_ERROR, str(err)) + + defaults = self._update_defaults(self.defaults.copy()) # ours + for option in self._get_all_options(): + assert option.dest is not None + default = defaults.get(option.dest) + if isinstance(default, str): + opt_str = option.get_opt_string() + defaults[option.dest] = option.check_value(opt_str, default) + return optparse.Values(defaults) + + def error(self, msg: str) -> None: + self.print_usage(sys.stderr) + self.exit(UNKNOWN_ERROR, f"{msg}\n") diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/cli/progress_bars.py b/.venv/lib/python3.11/site-packages/pip/_internal/cli/progress_bars.py new file mode 100644 index 0000000..0ad1403 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_internal/cli/progress_bars.py @@ -0,0 +1,68 @@ +import functools +from typing import Callable, Generator, Iterable, Iterator, Optional, Tuple + +from pip._vendor.rich.progress import ( + BarColumn, + DownloadColumn, + FileSizeColumn, + Progress, + ProgressColumn, + SpinnerColumn, + TextColumn, + TimeElapsedColumn, + TimeRemainingColumn, + TransferSpeedColumn, +) + +from pip._internal.utils.logging import get_indentation + +DownloadProgressRenderer = Callable[[Iterable[bytes]], Iterator[bytes]] + + +def _rich_progress_bar( + iterable: Iterable[bytes], + *, + bar_type: str, + size: int, +) -> Generator[bytes, None, None]: + assert bar_type == "on", "This should only be used in the default mode." + + if not size: + total = float("inf") + columns: Tuple[ProgressColumn, ...] = ( + TextColumn("[progress.description]{task.description}"), + SpinnerColumn("line", speed=1.5), + FileSizeColumn(), + TransferSpeedColumn(), + TimeElapsedColumn(), + ) + else: + total = size + columns = ( + TextColumn("[progress.description]{task.description}"), + BarColumn(), + DownloadColumn(), + TransferSpeedColumn(), + TextColumn("eta"), + TimeRemainingColumn(), + ) + + progress = Progress(*columns, refresh_per_second=30) + task_id = progress.add_task(" " * (get_indentation() + 2), total=total) + with progress: + for chunk in iterable: + yield chunk + progress.update(task_id, advance=len(chunk)) + + +def get_download_progress_renderer( + *, bar_type: str, size: Optional[int] = None +) -> DownloadProgressRenderer: + """Get an object that can be used to render the download progress. + + Returns a callable, that takes an iterable to "wrap". + """ + if bar_type == "on": + return functools.partial(_rich_progress_bar, bar_type=bar_type, size=size) + else: + return iter # no-op, when passed an iterator diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/cli/req_command.py b/.venv/lib/python3.11/site-packages/pip/_internal/cli/req_command.py new file mode 100644 index 0000000..6f2f79c --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_internal/cli/req_command.py @@ -0,0 +1,505 @@ +"""Contains the Command base classes that depend on PipSession. + +The classes in this module are in a separate module so the commands not +needing download / PackageFinder capability don't unnecessarily import the +PackageFinder machinery and all its vendored dependencies, etc. +""" + +import logging +import os +import sys +from functools import partial +from optparse import Values +from typing import TYPE_CHECKING, Any, List, Optional, Tuple + +from pip._internal.cache import WheelCache +from pip._internal.cli import cmdoptions +from pip._internal.cli.base_command import Command +from pip._internal.cli.command_context import CommandContextMixIn +from pip._internal.exceptions import CommandError, PreviousBuildDirError +from pip._internal.index.collector import LinkCollector +from pip._internal.index.package_finder import PackageFinder +from pip._internal.models.selection_prefs import SelectionPreferences +from pip._internal.models.target_python import TargetPython +from pip._internal.network.session import PipSession +from pip._internal.operations.build.build_tracker import BuildTracker +from pip._internal.operations.prepare import RequirementPreparer +from pip._internal.req.constructors import ( + install_req_from_editable, + install_req_from_line, + install_req_from_parsed_requirement, + install_req_from_req_string, +) +from pip._internal.req.req_file import parse_requirements +from pip._internal.req.req_install import InstallRequirement +from pip._internal.resolution.base import BaseResolver +from pip._internal.self_outdated_check import pip_self_version_check +from pip._internal.utils.temp_dir import ( + TempDirectory, + TempDirectoryTypeRegistry, + tempdir_kinds, +) +from pip._internal.utils.virtualenv import running_under_virtualenv + +if TYPE_CHECKING: + from ssl import SSLContext + +logger = logging.getLogger(__name__) + + +def _create_truststore_ssl_context() -> Optional["SSLContext"]: + if sys.version_info < (3, 10): + raise CommandError("The truststore feature is only available for Python 3.10+") + + try: + import ssl + except ImportError: + logger.warning("Disabling truststore since ssl support is missing") + return None + + try: + from pip._vendor import truststore + except ImportError as e: + raise CommandError(f"The truststore feature is unavailable: {e}") + + return truststore.SSLContext(ssl.PROTOCOL_TLS_CLIENT) + + +class SessionCommandMixin(CommandContextMixIn): + + """ + A class mixin for command classes needing _build_session(). + """ + + def __init__(self) -> None: + super().__init__() + self._session: Optional[PipSession] = None + + @classmethod + def _get_index_urls(cls, options: Values) -> Optional[List[str]]: + """Return a list of index urls from user-provided options.""" + index_urls = [] + if not getattr(options, "no_index", False): + url = getattr(options, "index_url", None) + if url: + index_urls.append(url) + urls = getattr(options, "extra_index_urls", None) + if urls: + index_urls.extend(urls) + # Return None rather than an empty list + return index_urls or None + + def get_default_session(self, options: Values) -> PipSession: + """Get a default-managed session.""" + if self._session is None: + self._session = self.enter_context(self._build_session(options)) + # there's no type annotation on requests.Session, so it's + # automatically ContextManager[Any] and self._session becomes Any, + # then https://github.com/python/mypy/issues/7696 kicks in + assert self._session is not None + return self._session + + def _build_session( + self, + options: Values, + retries: Optional[int] = None, + timeout: Optional[int] = None, + fallback_to_certifi: bool = False, + ) -> PipSession: + cache_dir = options.cache_dir + assert not cache_dir or os.path.isabs(cache_dir) + + if "truststore" in options.features_enabled: + try: + ssl_context = _create_truststore_ssl_context() + except Exception: + if not fallback_to_certifi: + raise + ssl_context = None + else: + ssl_context = None + + session = PipSession( + cache=os.path.join(cache_dir, "http-v2") if cache_dir else None, + retries=retries if retries is not None else options.retries, + trusted_hosts=options.trusted_hosts, + index_urls=self._get_index_urls(options), + ssl_context=ssl_context, + ) + + # Handle custom ca-bundles from the user + if options.cert: + session.verify = options.cert + + # Handle SSL client certificate + if options.client_cert: + session.cert = options.client_cert + + # Handle timeouts + if options.timeout or timeout: + session.timeout = timeout if timeout is not None else options.timeout + + # Handle configured proxies + if options.proxy: + session.proxies = { + "http": options.proxy, + "https": options.proxy, + } + + # Determine if we can prompt the user for authentication or not + session.auth.prompting = not options.no_input + session.auth.keyring_provider = options.keyring_provider + + return session + + +class IndexGroupCommand(Command, SessionCommandMixin): + + """ + Abstract base class for commands with the index_group options. + + This also corresponds to the commands that permit the pip version check. + """ + + def handle_pip_version_check(self, options: Values) -> None: + """ + Do the pip version check if not disabled. + + This overrides the default behavior of not doing the check. + """ + # Make sure the index_group options are present. + assert hasattr(options, "no_index") + + if options.disable_pip_version_check or options.no_index: + return + + # Otherwise, check if we're using the latest version of pip available. + session = self._build_session( + options, + retries=0, + timeout=min(5, options.timeout), + # This is set to ensure the function does not fail when truststore is + # specified in use-feature but cannot be loaded. This usually raises a + # CommandError and shows a nice user-facing error, but this function is not + # called in that try-except block. + fallback_to_certifi=True, + ) + with session: + pip_self_version_check(session, options) + + +KEEPABLE_TEMPDIR_TYPES = [ + tempdir_kinds.BUILD_ENV, + tempdir_kinds.EPHEM_WHEEL_CACHE, + tempdir_kinds.REQ_BUILD, +] + + +def warn_if_run_as_root() -> None: + """Output a warning for sudo users on Unix. + + In a virtual environment, sudo pip still writes to virtualenv. + On Windows, users may run pip as Administrator without issues. + This warning only applies to Unix root users outside of virtualenv. + """ + if running_under_virtualenv(): + return + if not hasattr(os, "getuid"): + return + # On Windows, there are no "system managed" Python packages. Installing as + # Administrator via pip is the correct way of updating system environments. + # + # We choose sys.platform over utils.compat.WINDOWS here to enable Mypy platform + # checks: https://mypy.readthedocs.io/en/stable/common_issues.html + if sys.platform == "win32" or sys.platform == "cygwin": + return + + if os.getuid() != 0: + return + + logger.warning( + "Running pip as the 'root' user can result in broken permissions and " + "conflicting behaviour with the system package manager. " + "It is recommended to use a virtual environment instead: " + "https://pip.pypa.io/warnings/venv" + ) + + +def with_cleanup(func: Any) -> Any: + """Decorator for common logic related to managing temporary + directories. + """ + + def configure_tempdir_registry(registry: TempDirectoryTypeRegistry) -> None: + for t in KEEPABLE_TEMPDIR_TYPES: + registry.set_delete(t, False) + + def wrapper( + self: RequirementCommand, options: Values, args: List[Any] + ) -> Optional[int]: + assert self.tempdir_registry is not None + if options.no_clean: + configure_tempdir_registry(self.tempdir_registry) + + try: + return func(self, options, args) + except PreviousBuildDirError: + # This kind of conflict can occur when the user passes an explicit + # build directory with a pre-existing folder. In that case we do + # not want to accidentally remove it. + configure_tempdir_registry(self.tempdir_registry) + raise + + return wrapper + + +class RequirementCommand(IndexGroupCommand): + def __init__(self, *args: Any, **kw: Any) -> None: + super().__init__(*args, **kw) + + self.cmd_opts.add_option(cmdoptions.no_clean()) + + @staticmethod + def determine_resolver_variant(options: Values) -> str: + """Determines which resolver should be used, based on the given options.""" + if "legacy-resolver" in options.deprecated_features_enabled: + return "legacy" + + return "resolvelib" + + @classmethod + def make_requirement_preparer( + cls, + temp_build_dir: TempDirectory, + options: Values, + build_tracker: BuildTracker, + session: PipSession, + finder: PackageFinder, + use_user_site: bool, + download_dir: Optional[str] = None, + verbosity: int = 0, + ) -> RequirementPreparer: + """ + Create a RequirementPreparer instance for the given parameters. + """ + temp_build_dir_path = temp_build_dir.path + assert temp_build_dir_path is not None + legacy_resolver = False + + resolver_variant = cls.determine_resolver_variant(options) + if resolver_variant == "resolvelib": + lazy_wheel = "fast-deps" in options.features_enabled + if lazy_wheel: + logger.warning( + "pip is using lazily downloaded wheels using HTTP " + "range requests to obtain dependency information. " + "This experimental feature is enabled through " + "--use-feature=fast-deps and it is not ready for " + "production." + ) + else: + legacy_resolver = True + lazy_wheel = False + if "fast-deps" in options.features_enabled: + logger.warning( + "fast-deps has no effect when used with the legacy resolver." + ) + + return RequirementPreparer( + build_dir=temp_build_dir_path, + src_dir=options.src_dir, + download_dir=download_dir, + build_isolation=options.build_isolation, + check_build_deps=options.check_build_deps, + build_tracker=build_tracker, + session=session, + progress_bar=options.progress_bar, + finder=finder, + require_hashes=options.require_hashes, + use_user_site=use_user_site, + lazy_wheel=lazy_wheel, + verbosity=verbosity, + legacy_resolver=legacy_resolver, + ) + + @classmethod + def make_resolver( + cls, + preparer: RequirementPreparer, + finder: PackageFinder, + options: Values, + wheel_cache: Optional[WheelCache] = None, + use_user_site: bool = False, + ignore_installed: bool = True, + ignore_requires_python: bool = False, + force_reinstall: bool = False, + upgrade_strategy: str = "to-satisfy-only", + use_pep517: Optional[bool] = None, + py_version_info: Optional[Tuple[int, ...]] = None, + ) -> BaseResolver: + """ + Create a Resolver instance for the given parameters. + """ + make_install_req = partial( + install_req_from_req_string, + isolated=options.isolated_mode, + use_pep517=use_pep517, + ) + resolver_variant = cls.determine_resolver_variant(options) + # The long import name and duplicated invocation is needed to convince + # Mypy into correctly typechecking. Otherwise it would complain the + # "Resolver" class being redefined. + if resolver_variant == "resolvelib": + import pip._internal.resolution.resolvelib.resolver + + return pip._internal.resolution.resolvelib.resolver.Resolver( + preparer=preparer, + finder=finder, + wheel_cache=wheel_cache, + make_install_req=make_install_req, + use_user_site=use_user_site, + ignore_dependencies=options.ignore_dependencies, + ignore_installed=ignore_installed, + ignore_requires_python=ignore_requires_python, + force_reinstall=force_reinstall, + upgrade_strategy=upgrade_strategy, + py_version_info=py_version_info, + ) + import pip._internal.resolution.legacy.resolver + + return pip._internal.resolution.legacy.resolver.Resolver( + preparer=preparer, + finder=finder, + wheel_cache=wheel_cache, + make_install_req=make_install_req, + use_user_site=use_user_site, + ignore_dependencies=options.ignore_dependencies, + ignore_installed=ignore_installed, + ignore_requires_python=ignore_requires_python, + force_reinstall=force_reinstall, + upgrade_strategy=upgrade_strategy, + py_version_info=py_version_info, + ) + + def get_requirements( + self, + args: List[str], + options: Values, + finder: PackageFinder, + session: PipSession, + ) -> List[InstallRequirement]: + """ + Parse command-line arguments into the corresponding requirements. + """ + requirements: List[InstallRequirement] = [] + for filename in options.constraints: + for parsed_req in parse_requirements( + filename, + constraint=True, + finder=finder, + options=options, + session=session, + ): + req_to_add = install_req_from_parsed_requirement( + parsed_req, + isolated=options.isolated_mode, + user_supplied=False, + ) + requirements.append(req_to_add) + + for req in args: + req_to_add = install_req_from_line( + req, + comes_from=None, + isolated=options.isolated_mode, + use_pep517=options.use_pep517, + user_supplied=True, + config_settings=getattr(options, "config_settings", None), + ) + requirements.append(req_to_add) + + for req in options.editables: + req_to_add = install_req_from_editable( + req, + user_supplied=True, + isolated=options.isolated_mode, + use_pep517=options.use_pep517, + config_settings=getattr(options, "config_settings", None), + ) + requirements.append(req_to_add) + + # NOTE: options.require_hashes may be set if --require-hashes is True + for filename in options.requirements: + for parsed_req in parse_requirements( + filename, finder=finder, options=options, session=session + ): + req_to_add = install_req_from_parsed_requirement( + parsed_req, + isolated=options.isolated_mode, + use_pep517=options.use_pep517, + user_supplied=True, + config_settings=parsed_req.options.get("config_settings") + if parsed_req.options + else None, + ) + requirements.append(req_to_add) + + # If any requirement has hash options, enable hash checking. + if any(req.has_hash_options for req in requirements): + options.require_hashes = True + + if not (args or options.editables or options.requirements): + opts = {"name": self.name} + if options.find_links: + raise CommandError( + "You must give at least one requirement to {name} " + '(maybe you meant "pip {name} {links}"?)'.format( + **dict(opts, links=" ".join(options.find_links)) + ) + ) + else: + raise CommandError( + "You must give at least one requirement to {name} " + '(see "pip help {name}")'.format(**opts) + ) + + return requirements + + @staticmethod + def trace_basic_info(finder: PackageFinder) -> None: + """ + Trace basic information about the provided objects. + """ + # Display where finder is looking for packages + search_scope = finder.search_scope + locations = search_scope.get_formatted_locations() + if locations: + logger.info(locations) + + def _build_package_finder( + self, + options: Values, + session: PipSession, + target_python: Optional[TargetPython] = None, + ignore_requires_python: Optional[bool] = None, + ) -> PackageFinder: + """ + Create a package finder appropriate to this requirement command. + + :param ignore_requires_python: Whether to ignore incompatible + "Requires-Python" values in links. Defaults to False. + """ + link_collector = LinkCollector.create(session, options=options) + selection_prefs = SelectionPreferences( + allow_yanked=True, + format_control=options.format_control, + allow_all_prereleases=options.pre, + prefer_binary=options.prefer_binary, + ignore_requires_python=ignore_requires_python, + ) + + return PackageFinder.create( + link_collector=link_collector, + selection_prefs=selection_prefs, + target_python=target_python, + ) diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/cli/spinners.py b/.venv/lib/python3.11/site-packages/pip/_internal/cli/spinners.py new file mode 100644 index 0000000..cf2b976 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_internal/cli/spinners.py @@ -0,0 +1,159 @@ +import contextlib +import itertools +import logging +import sys +import time +from typing import IO, Generator, Optional + +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.logging import get_indentation + +logger = logging.getLogger(__name__) + + +class SpinnerInterface: + def spin(self) -> None: + raise NotImplementedError() + + def finish(self, final_status: str) -> None: + raise NotImplementedError() + + +class InteractiveSpinner(SpinnerInterface): + def __init__( + self, + message: str, + file: Optional[IO[str]] = None, + spin_chars: str = "-\\|/", + # Empirically, 8 updates/second looks nice + min_update_interval_seconds: float = 0.125, + ): + self._message = message + if file is None: + file = sys.stdout + self._file = file + self._rate_limiter = RateLimiter(min_update_interval_seconds) + self._finished = False + + self._spin_cycle = itertools.cycle(spin_chars) + + self._file.write(" " * get_indentation() + self._message + " ... ") + self._width = 0 + + def _write(self, status: str) -> None: + assert not self._finished + # Erase what we wrote before by backspacing to the beginning, writing + # spaces to overwrite the old text, and then backspacing again + backup = "\b" * self._width + self._file.write(backup + " " * self._width + backup) + # Now we have a blank slate to add our status + self._file.write(status) + self._width = len(status) + self._file.flush() + self._rate_limiter.reset() + + def spin(self) -> None: + if self._finished: + return + if not self._rate_limiter.ready(): + return + self._write(next(self._spin_cycle)) + + def finish(self, final_status: str) -> None: + if self._finished: + return + self._write(final_status) + self._file.write("\n") + self._file.flush() + self._finished = True + + +# Used for dumb terminals, non-interactive installs (no tty), etc. +# We still print updates occasionally (once every 60 seconds by default) to +# act as a keep-alive for systems like Travis-CI that take lack-of-output as +# an indication that a task has frozen. +class NonInteractiveSpinner(SpinnerInterface): + def __init__(self, message: str, min_update_interval_seconds: float = 60.0) -> None: + self._message = message + self._finished = False + self._rate_limiter = RateLimiter(min_update_interval_seconds) + self._update("started") + + def _update(self, status: str) -> None: + assert not self._finished + self._rate_limiter.reset() + logger.info("%s: %s", self._message, status) + + def spin(self) -> None: + if self._finished: + return + if not self._rate_limiter.ready(): + return + self._update("still running...") + + def finish(self, final_status: str) -> None: + if self._finished: + return + self._update(f"finished with status '{final_status}'") + self._finished = True + + +class RateLimiter: + def __init__(self, min_update_interval_seconds: float) -> None: + self._min_update_interval_seconds = min_update_interval_seconds + self._last_update: float = 0 + + def ready(self) -> bool: + now = time.time() + delta = now - self._last_update + return delta >= self._min_update_interval_seconds + + def reset(self) -> None: + self._last_update = time.time() + + +@contextlib.contextmanager +def open_spinner(message: str) -> Generator[SpinnerInterface, None, None]: + # Interactive spinner goes directly to sys.stdout rather than being routed + # through the logging system, but it acts like it has level INFO, + # i.e. it's only displayed if we're at level INFO or better. + # Non-interactive spinner goes through the logging system, so it is always + # in sync with logging configuration. + if sys.stdout.isatty() and logger.getEffectiveLevel() <= logging.INFO: + spinner: SpinnerInterface = InteractiveSpinner(message) + else: + spinner = NonInteractiveSpinner(message) + try: + with hidden_cursor(sys.stdout): + yield spinner + except KeyboardInterrupt: + spinner.finish("canceled") + raise + except Exception: + spinner.finish("error") + raise + else: + spinner.finish("done") + + +HIDE_CURSOR = "\x1b[?25l" +SHOW_CURSOR = "\x1b[?25h" + + +@contextlib.contextmanager +def hidden_cursor(file: IO[str]) -> Generator[None, None, None]: + # The Windows terminal does not support the hide/show cursor ANSI codes, + # even via colorama. So don't even try. + if WINDOWS: + yield + # We don't want to clutter the output with control characters if we're + # writing to a file, or if the user is running with --quiet. + # See https://github.com/pypa/pip/issues/3418 + elif not file.isatty() or logger.getEffectiveLevel() > logging.INFO: + yield + else: + file.write(HIDE_CURSOR) + try: + yield + finally: + file.write(SHOW_CURSOR) diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/cli/status_codes.py b/.venv/lib/python3.11/site-packages/pip/_internal/cli/status_codes.py new file mode 100644 index 0000000..5e29502 --- /dev/null +++ b/.venv/lib/python3.11/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/.venv/lib/python3.11/site-packages/pip/_internal/commands/__init__.py b/.venv/lib/python3.11/site-packages/pip/_internal/commands/__init__.py new file mode 100644 index 0000000..858a410 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_internal/commands/__init__.py @@ -0,0 +1,132 @@ +""" +Package containing all pip commands +""" + +import importlib +from collections import namedtuple +from typing import Any, Dict, Optional + +from pip._internal.cli.base_command import Command + +CommandInfo = namedtuple("CommandInfo", "module_path, class_name, summary") + +# This dictionary does a bunch of heavy lifting for help output: +# - Enables avoiding additional (costly) imports for presenting `--help`. +# - The ordering matters for help display. +# +# Even though the module path starts with the same "pip._internal.commands" +# prefix, the full path makes testing easier (specifically when modifying +# `commands_dict` in test setup / teardown). +commands_dict: Dict[str, CommandInfo] = { + "install": CommandInfo( + "pip._internal.commands.install", + "InstallCommand", + "Install packages.", + ), + "download": CommandInfo( + "pip._internal.commands.download", + "DownloadCommand", + "Download packages.", + ), + "uninstall": CommandInfo( + "pip._internal.commands.uninstall", + "UninstallCommand", + "Uninstall packages.", + ), + "freeze": CommandInfo( + "pip._internal.commands.freeze", + "FreezeCommand", + "Output installed packages in requirements format.", + ), + "inspect": CommandInfo( + "pip._internal.commands.inspect", + "InspectCommand", + "Inspect the python environment.", + ), + "list": CommandInfo( + "pip._internal.commands.list", + "ListCommand", + "List installed packages.", + ), + "show": CommandInfo( + "pip._internal.commands.show", + "ShowCommand", + "Show information about installed packages.", + ), + "check": CommandInfo( + "pip._internal.commands.check", + "CheckCommand", + "Verify installed packages have compatible dependencies.", + ), + "config": CommandInfo( + "pip._internal.commands.configuration", + "ConfigurationCommand", + "Manage local and global configuration.", + ), + "search": CommandInfo( + "pip._internal.commands.search", + "SearchCommand", + "Search PyPI for packages.", + ), + "cache": CommandInfo( + "pip._internal.commands.cache", + "CacheCommand", + "Inspect and manage pip's wheel cache.", + ), + "index": CommandInfo( + "pip._internal.commands.index", + "IndexCommand", + "Inspect information available from package indexes.", + ), + "wheel": CommandInfo( + "pip._internal.commands.wheel", + "WheelCommand", + "Build wheels from your requirements.", + ), + "hash": CommandInfo( + "pip._internal.commands.hash", + "HashCommand", + "Compute hashes of package archives.", + ), + "completion": CommandInfo( + "pip._internal.commands.completion", + "CompletionCommand", + "A helper command used for command completion.", + ), + "debug": CommandInfo( + "pip._internal.commands.debug", + "DebugCommand", + "Show information useful for debugging.", + ), + "help": CommandInfo( + "pip._internal.commands.help", + "HelpCommand", + "Show help for commands.", + ), +} + + +def create_command(name: str, **kwargs: Any) -> Command: + """ + Create an instance of the Command class with the given name. + """ + module_path, class_name, summary = commands_dict[name] + module = importlib.import_module(module_path) + command_class = getattr(module, class_name) + command = command_class(name=name, summary=summary, **kwargs) + + return command + + +def get_similar_commands(name: str) -> Optional[str]: + """Command name auto-correct.""" + from difflib import get_close_matches + + name = name.lower() + + close_commands = get_close_matches(name, commands_dict.keys()) + + if close_commands: + return close_commands[0] + else: + return None diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..61b83c3d7a17221fde7c7a21b0bd6c0225bdcb88 GIT binary patch literal 4502 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/completion.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/completion.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..393714fdf542f0ae7afe6cca320f1d3b2a511ed7 GIT binary patch literal 5672 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/debug.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/debug.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6e1a827564660fe3a674f45fe738901f39dd8779 GIT binary patch literal 12245 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 Kvn{G9Xa64rb~ai7 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/download.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/download.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c08745ab09e92bacd2a4e737bba6069d5e349e43 GIT binary patch literal 7991 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/help.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/help.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c6944de4e862fe74bd2fc73d62f03f9a01fa0b87 GIT binary patch literal 2016 zcmb7E&1>976d$d$l6L)>_12DKYLvJo-auBwfi^8^pcqpZN*b`!l08%?(s->zUzyR` z-epZfNnsB;gnkgWO{q_*OM2*^A{Rp!LBLRQ=xvL8FgcXIkyh($k{&u5y?O7=*KdCF z-uyH)lt)k=qD!l`fY2YzNK3Y>9DD}K17sqTvysD9IF9KVJLB*bKGu0#aI%$btP8g2 zNEIp8v$pKyDme~i&BC2z`0sFeGYnI$d~KhfcTJ`)U7ep_SXu&guJQd!{XM=Hl<`_{~ECO$k9Mk+# z6IZv(>6T;|Fc8KP83hsLKXgsJ5r-~eTt}kr``9&!#0=qvXStE+>x5zw<$VI{X)N$c z`ADGHULlMLGQh+O3(JOMYOe0!C|iXrq7m=VY9ysN*t{fKnSAzzdKGq{s;dXOZCQFy zcf1t~TX;=ZuhflIoj6yBcLN&%RTn>;13STZ^s5!zUw?9mM6Pj>MC(6Rpea>+s+|JUr}(Xt22TUN|rdwOyPIi?ch& zcZ+j-#ktnP{@C31MmRRtt%dWg`SwT=RvUV!Jv#Ov|7AX$dV8k^BB{Hh7xqRkgrgUp z7N)mqKQ_K=?96<7`{C`~g1T2w!$EbwpxiHSAKxvU*(;oBNo{%L-th18$=~FYyYkGQ zJQK<@Pe;aE!*mcRxF^4czByLnceoON8KO+q;yc!~D6eUbXVz>C`kmPtL}OOf^$6AozE!iJWw%Dy+e6^lM-fj067djdWE#w$(E&(AUT1hudaW?SX!I_+gLVUKF`ia|8cgBpe0HZe`I?s)%7c*DTSlO5+_ za`4j(R*a32@l3v$@O_Dt!DR0!{R#vG5y!RBRM=nJXd>*d`)DrgukC&ldfVt+*k3!M V!cBD0%i{j&znJ&$S9Hao{{`T)3mX6c literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/index.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/index.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..65ea647d9cb96847d6d244615a2f11e38b351c87 GIT binary patch literal 7770 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 I0X69V0laH+Jpcdz literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/inspect.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/inspect.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..12335161cba2e58e3dae7db1176156e37a3f82e0 GIT binary patch literal 4492 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 J!C|ZT{|5^>;Zy(s literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/list.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/list.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d2e3a5b1f82c9207bef0a8dba2dd61bd84bc3bad GIT binary patch literal 17296 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/show.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/show.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..493e2b5f771fbd44cdde43a301f756bde7b7cf11 GIT binary patch literal 11341 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6063aa28d7c62b346b8508a1091342e03cd718cd GIT binary patch literal 9448 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/commands/cache.py b/.venv/lib/python3.11/site-packages/pip/_internal/commands/cache.py new file mode 100644 index 0000000..3283361 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_internal/commands/cache.py @@ -0,0 +1,225 @@ +import os +import textwrap +from optparse import Values +from typing import Any, List + +from pip._internal.cli.base_command import Command +from pip._internal.cli.status_codes import ERROR, SUCCESS +from pip._internal.exceptions import CommandError, PipError +from pip._internal.utils import filesystem +from pip._internal.utils.logging import getLogger + +logger = getLogger(__name__) + + +class CacheCommand(Command): + """ + Inspect and manage pip's wheel cache. + + Subcommands: + + - dir: Show the cache directory. + - info: Show information about the cache. + - list: List filenames of packages stored in the cache. + - remove: Remove one or more package from the cache. + - purge: Remove all items from the cache. + + ```` can be a glob expression or a package name. + """ + + ignore_require_venv = True + usage = """ + %prog dir + %prog info + %prog list [] [--format=[human, abspath]] + %prog remove + %prog purge + """ + + def add_options(self) -> None: + self.cmd_opts.add_option( + "--format", + action="store", + dest="list_format", + default="human", + choices=("human", "abspath"), + help="Select the output format among: human (default) or abspath", + ) + + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: List[str]) -> int: + handlers = { + "dir": self.get_cache_dir, + "info": self.get_cache_info, + "list": self.list_cache_items, + "remove": self.remove_cache_items, + "purge": self.purge_cache, + } + + if not options.cache_dir: + logger.error("pip cache commands can not function since cache is disabled.") + return ERROR + + # Determine action + if not args or args[0] not in handlers: + logger.error( + "Need an action (%s) to perform.", + ", ".join(sorted(handlers)), + ) + return ERROR + + action = args[0] + + # Error handling happens here, not in the action-handlers. + try: + handlers[action](options, args[1:]) + except PipError as e: + logger.error(e.args[0]) + return ERROR + + return SUCCESS + + def get_cache_dir(self, options: Values, args: List[Any]) -> None: + if args: + raise CommandError("Too many arguments") + + logger.info(options.cache_dir) + + def get_cache_info(self, options: Values, args: List[Any]) -> None: + if args: + raise CommandError("Too many arguments") + + num_http_files = len(self._find_http_files(options)) + num_packages = len(self._find_wheels(options, "*")) + + http_cache_location = self._cache_dir(options, "http-v2") + old_http_cache_location = self._cache_dir(options, "http") + wheels_cache_location = self._cache_dir(options, "wheels") + http_cache_size = filesystem.format_size( + filesystem.directory_size(http_cache_location) + + filesystem.directory_size(old_http_cache_location) + ) + wheels_cache_size = filesystem.format_directory_size(wheels_cache_location) + + message = ( + textwrap.dedent( + """ + Package index page cache location (pip v23.3+): {http_cache_location} + Package index page cache location (older pips): {old_http_cache_location} + Package index page cache size: {http_cache_size} + Number of HTTP files: {num_http_files} + Locally built wheels location: {wheels_cache_location} + Locally built wheels size: {wheels_cache_size} + Number of locally built wheels: {package_count} + """ # noqa: E501 + ) + .format( + http_cache_location=http_cache_location, + old_http_cache_location=old_http_cache_location, + http_cache_size=http_cache_size, + num_http_files=num_http_files, + wheels_cache_location=wheels_cache_location, + package_count=num_packages, + wheels_cache_size=wheels_cache_size, + ) + .strip() + ) + + logger.info(message) + + def list_cache_items(self, options: Values, args: List[Any]) -> None: + if len(args) > 1: + raise CommandError("Too many arguments") + + if args: + pattern = args[0] + else: + pattern = "*" + + files = self._find_wheels(options, pattern) + if options.list_format == "human": + self.format_for_human(files) + else: + self.format_for_abspath(files) + + def format_for_human(self, files: List[str]) -> None: + if not files: + logger.info("No locally built wheels cached.") + return + + results = [] + for filename in files: + wheel = os.path.basename(filename) + size = filesystem.format_file_size(filename) + results.append(f" - {wheel} ({size})") + logger.info("Cache contents:\n") + logger.info("\n".join(sorted(results))) + + def format_for_abspath(self, files: List[str]) -> None: + if files: + logger.info("\n".join(sorted(files))) + + def remove_cache_items(self, options: Values, args: List[Any]) -> None: + if len(args) > 1: + raise CommandError("Too many arguments") + + if not args: + raise CommandError("Please provide a pattern") + + files = self._find_wheels(options, args[0]) + + no_matching_msg = "No matching packages" + if args[0] == "*": + # Only fetch http files if no specific pattern given + files += self._find_http_files(options) + else: + # Add the pattern to the log message + no_matching_msg += f' for pattern "{args[0]}"' + + if not files: + logger.warning(no_matching_msg) + + for filename in files: + os.unlink(filename) + logger.verbose("Removed %s", filename) + logger.info("Files removed: %s", len(files)) + + def purge_cache(self, options: Values, args: List[Any]) -> None: + if args: + raise CommandError("Too many arguments") + + return self.remove_cache_items(options, ["*"]) + + def _cache_dir(self, options: Values, subdir: str) -> str: + return os.path.join(options.cache_dir, subdir) + + def _find_http_files(self, options: Values) -> List[str]: + old_http_dir = self._cache_dir(options, "http") + new_http_dir = self._cache_dir(options, "http-v2") + return filesystem.find_files(old_http_dir, "*") + filesystem.find_files( + new_http_dir, "*" + ) + + def _find_wheels(self, options: Values, pattern: str) -> List[str]: + wheel_dir = self._cache_dir(options, "wheels") + + # The wheel filename format, as specified in PEP 427, is: + # {distribution}-{version}(-{build})?-{python}-{abi}-{platform}.whl + # + # Additionally, non-alphanumeric values in the distribution are + # normalized to underscores (_), meaning hyphens can never occur + # before `-{version}`. + # + # Given that information: + # - If the pattern we're given contains a hyphen (-), the user is + # providing at least the version. Thus, we can just append `*.whl` + # to match the rest of it. + # - If the pattern we're given doesn't contain a hyphen (-), the + # user is only providing the name. Thus, we append `-*.whl` to + # match the hyphen before the version, followed by anything else. + # + # PEP 427: https://www.python.org/dev/peps/pep-0427/ + pattern = pattern + ("*.whl" if "-" in pattern else "-*.whl") + + return filesystem.find_files(wheel_dir, pattern) diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/commands/check.py b/.venv/lib/python3.11/site-packages/pip/_internal/commands/check.py new file mode 100644 index 0000000..5efd0a3 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_internal/commands/check.py @@ -0,0 +1,54 @@ +import logging +from optparse import Values +from typing import List + +from pip._internal.cli.base_command import Command +from pip._internal.cli.status_codes import ERROR, SUCCESS +from pip._internal.operations.check import ( + check_package_set, + create_package_set_from_installed, + warn_legacy_versions_and_specifiers, +) +from pip._internal.utils.misc import write_output + +logger = logging.getLogger(__name__) + + +class CheckCommand(Command): + """Verify installed packages have compatible dependencies.""" + + usage = """ + %prog [options]""" + + def run(self, options: Values, args: List[str]) -> int: + package_set, parsing_probs = create_package_set_from_installed() + warn_legacy_versions_and_specifiers(package_set) + missing, conflicting = check_package_set(package_set) + + for project_name in missing: + version = package_set[project_name].version + for dependency in missing[project_name]: + write_output( + "%s %s requires %s, which is not installed.", + project_name, + version, + dependency[0], + ) + + for project_name in conflicting: + version = package_set[project_name].version + for dep_name, dep_version, req in conflicting[project_name]: + write_output( + "%s %s has requirement %s, but you have %s %s.", + project_name, + version, + req, + dep_name, + dep_version, + ) + + if missing or conflicting or parsing_probs: + return ERROR + else: + write_output("No broken requirements found.") + return SUCCESS diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/commands/completion.py b/.venv/lib/python3.11/site-packages/pip/_internal/commands/completion.py new file mode 100644 index 0000000..9e89e27 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_internal/commands/completion.py @@ -0,0 +1,130 @@ +import sys +import textwrap +from optparse import Values +from typing import List + +from pip._internal.cli.base_command import Command +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.utils.misc import get_prog + +BASE_COMPLETION = """ +# pip {shell} completion start{script}# pip {shell} completion end +""" + +COMPLETION_SCRIPTS = { + "bash": """ + _pip_completion() + {{ + COMPREPLY=( $( COMP_WORDS="${{COMP_WORDS[*]}}" \\ + COMP_CWORD=$COMP_CWORD \\ + PIP_AUTO_COMPLETE=1 $1 2>/dev/null ) ) + }} + complete -o default -F _pip_completion {prog} + """, + "zsh": """ + #compdef -P pip[0-9.]# + __pip() {{ + compadd $( COMP_WORDS="$words[*]" \\ + COMP_CWORD=$((CURRENT-1)) \\ + PIP_AUTO_COMPLETE=1 $words[1] 2>/dev/null ) + }} + if [[ $zsh_eval_context[-1] == loadautofunc ]]; then + # autoload from fpath, call function directly + __pip "$@" + else + # eval/source/. command, register function for later + compdef __pip -P 'pip[0-9.]#' + fi + """, + "fish": """ + function __fish_complete_pip + set -lx COMP_WORDS (commandline -o) "" + set -lx COMP_CWORD ( \\ + math (contains -i -- (commandline -t) $COMP_WORDS)-1 \\ + ) + set -lx PIP_AUTO_COMPLETE 1 + string split \\ -- (eval $COMP_WORDS[1]) + end + complete -fa "(__fish_complete_pip)" -c {prog} + """, + "powershell": """ + if ((Test-Path Function:\\TabExpansion) -and -not ` + (Test-Path Function:\\_pip_completeBackup)) {{ + Rename-Item Function:\\TabExpansion _pip_completeBackup + }} + function TabExpansion($line, $lastWord) {{ + $lastBlock = [regex]::Split($line, '[|;]')[-1].TrimStart() + if ($lastBlock.StartsWith("{prog} ")) {{ + $Env:COMP_WORDS=$lastBlock + $Env:COMP_CWORD=$lastBlock.Split().Length - 1 + $Env:PIP_AUTO_COMPLETE=1 + (& {prog}).Split() + Remove-Item Env:COMP_WORDS + Remove-Item Env:COMP_CWORD + Remove-Item Env:PIP_AUTO_COMPLETE + }} + elseif (Test-Path Function:\\_pip_completeBackup) {{ + # Fall back on existing tab expansion + _pip_completeBackup $line $lastWord + }} + }} + """, +} + + +class CompletionCommand(Command): + """A helper command to be used for command completion.""" + + ignore_require_venv = True + + def add_options(self) -> None: + self.cmd_opts.add_option( + "--bash", + "-b", + action="store_const", + const="bash", + dest="shell", + help="Emit completion code for bash", + ) + self.cmd_opts.add_option( + "--zsh", + "-z", + action="store_const", + const="zsh", + dest="shell", + help="Emit completion code for zsh", + ) + self.cmd_opts.add_option( + "--fish", + "-f", + action="store_const", + const="fish", + dest="shell", + help="Emit completion code for fish", + ) + self.cmd_opts.add_option( + "--powershell", + "-p", + action="store_const", + const="powershell", + dest="shell", + help="Emit completion code for powershell", + ) + + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: List[str]) -> int: + """Prints the completion code of the given shell""" + shells = COMPLETION_SCRIPTS.keys() + shell_options = ["--" + shell for shell in sorted(shells)] + if options.shell in shells: + script = textwrap.dedent( + COMPLETION_SCRIPTS.get(options.shell, "").format(prog=get_prog()) + ) + print(BASE_COMPLETION.format(script=script, shell=options.shell)) + return SUCCESS + else: + sys.stderr.write( + "ERROR: You must pass {}\n".format(" or ".join(shell_options)) + ) + return SUCCESS diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/commands/configuration.py b/.venv/lib/python3.11/site-packages/pip/_internal/commands/configuration.py new file mode 100644 index 0000000..1a1dc6b --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_internal/commands/configuration.py @@ -0,0 +1,280 @@ +import logging +import os +import subprocess +from optparse import Values +from typing import Any, List, Optional + +from pip._internal.cli.base_command import Command +from pip._internal.cli.status_codes import ERROR, SUCCESS +from pip._internal.configuration import ( + Configuration, + Kind, + get_configuration_files, + kinds, +) +from pip._internal.exceptions import PipError +from pip._internal.utils.logging import indent_log +from pip._internal.utils.misc import get_prog, write_output + +logger = logging.getLogger(__name__) + + +class ConfigurationCommand(Command): + """ + Manage local and global configuration. + + Subcommands: + + - list: List the active configuration (or from the file specified) + - edit: Edit the configuration file in an editor + - get: Get the value associated with command.option + - set: Set the command.option=value + - unset: Unset the value associated with command.option + - debug: List the configuration files and values defined under them + + Configuration keys should be dot separated command and option name, + with the special prefix "global" affecting any command. For example, + "pip config set global.index-url https://example.org/" would configure + the index url for all commands, but "pip config set download.timeout 10" + would configure a 10 second timeout only for "pip download" commands. + + If none of --user, --global and --site are passed, a virtual + environment configuration file is used if one is active and the file + exists. Otherwise, all modifications happen to the user file by + default. + """ + + ignore_require_venv = True + usage = """ + %prog [] list + %prog [] [--editor ] edit + + %prog [] get command.option + %prog [] set command.option value + %prog [] unset command.option + %prog [] debug + """ + + def add_options(self) -> None: + self.cmd_opts.add_option( + "--editor", + dest="editor", + action="store", + default=None, + help=( + "Editor to use to edit the file. Uses VISUAL or EDITOR " + "environment variables if not provided." + ), + ) + + self.cmd_opts.add_option( + "--global", + dest="global_file", + action="store_true", + default=False, + help="Use the system-wide configuration file only", + ) + + self.cmd_opts.add_option( + "--user", + dest="user_file", + action="store_true", + default=False, + help="Use the user configuration file only", + ) + + self.cmd_opts.add_option( + "--site", + dest="site_file", + action="store_true", + default=False, + help="Use the current environment configuration file only", + ) + + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: List[str]) -> int: + handlers = { + "list": self.list_values, + "edit": self.open_in_editor, + "get": self.get_name, + "set": self.set_name_value, + "unset": self.unset_name, + "debug": self.list_config_values, + } + + # Determine action + if not args or args[0] not in handlers: + logger.error( + "Need an action (%s) to perform.", + ", ".join(sorted(handlers)), + ) + return ERROR + + action = args[0] + + # Determine which configuration files are to be loaded + # Depends on whether the command is modifying. + try: + load_only = self._determine_file( + options, need_value=(action in ["get", "set", "unset", "edit"]) + ) + except PipError as e: + logger.error(e.args[0]) + return ERROR + + # Load a new configuration + self.configuration = Configuration( + isolated=options.isolated_mode, load_only=load_only + ) + self.configuration.load() + + # Error handling happens here, not in the action-handlers. + try: + handlers[action](options, args[1:]) + except PipError as e: + logger.error(e.args[0]) + return ERROR + + return SUCCESS + + def _determine_file(self, options: Values, need_value: bool) -> Optional[Kind]: + file_options = [ + key + for key, value in ( + (kinds.USER, options.user_file), + (kinds.GLOBAL, options.global_file), + (kinds.SITE, options.site_file), + ) + if value + ] + + if not file_options: + if not need_value: + return None + # Default to user, unless there's a site file. + elif any( + os.path.exists(site_config_file) + for site_config_file in get_configuration_files()[kinds.SITE] + ): + return kinds.SITE + else: + return kinds.USER + elif len(file_options) == 1: + return file_options[0] + + raise PipError( + "Need exactly one file to operate upon " + "(--user, --site, --global) to perform." + ) + + def list_values(self, options: Values, args: List[str]) -> None: + self._get_n_args(args, "list", n=0) + + for key, value in sorted(self.configuration.items()): + write_output("%s=%r", key, value) + + def get_name(self, options: Values, args: List[str]) -> None: + key = self._get_n_args(args, "get [name]", n=1) + value = self.configuration.get_value(key) + + write_output("%s", value) + + def set_name_value(self, options: Values, args: List[str]) -> None: + key, value = self._get_n_args(args, "set [name] [value]", n=2) + self.configuration.set_value(key, value) + + self._save_configuration() + + def unset_name(self, options: Values, args: List[str]) -> None: + key = self._get_n_args(args, "unset [name]", n=1) + self.configuration.unset_value(key) + + self._save_configuration() + + def list_config_values(self, options: Values, args: List[str]) -> None: + """List config key-value pairs across different config files""" + self._get_n_args(args, "debug", n=0) + + self.print_env_var_values() + # Iterate over config files and print if they exist, and the + # key-value pairs present in them if they do + for variant, files in sorted(self.configuration.iter_config_files()): + write_output("%s:", variant) + for fname in files: + with indent_log(): + file_exists = os.path.exists(fname) + write_output("%s, exists: %r", fname, file_exists) + if file_exists: + self.print_config_file_values(variant) + + def print_config_file_values(self, variant: Kind) -> None: + """Get key-value pairs from the file of a variant""" + for name, value in self.configuration.get_values_in_config(variant).items(): + with indent_log(): + write_output("%s: %s", name, value) + + def print_env_var_values(self) -> None: + """Get key-values pairs present as environment variables""" + write_output("%s:", "env_var") + with indent_log(): + for key, value in sorted(self.configuration.get_environ_vars()): + env_var = f"PIP_{key.upper()}" + write_output("%s=%r", env_var, value) + + def open_in_editor(self, options: Values, args: List[str]) -> None: + editor = self._determine_editor(options) + + fname = self.configuration.get_file_to_edit() + if fname is None: + raise PipError("Could not determine appropriate file.") + elif '"' in fname: + # This shouldn't happen, unless we see a username like that. + # If that happens, we'd appreciate a pull request fixing this. + raise PipError( + f'Can not open an editor for a file name containing "\n{fname}' + ) + + try: + subprocess.check_call(f'{editor} "{fname}"', shell=True) + except FileNotFoundError as e: + if not e.filename: + e.filename = editor + raise + except subprocess.CalledProcessError as e: + raise PipError(f"Editor Subprocess exited with exit code {e.returncode}") + + def _get_n_args(self, args: List[str], example: str, n: int) -> Any: + """Helper to make sure the command got the right number of arguments""" + if len(args) != n: + msg = ( + f"Got unexpected number of arguments, expected {n}. " + f'(example: "{get_prog()} config {example}")' + ) + raise PipError(msg) + + if n == 1: + return args[0] + else: + return args + + def _save_configuration(self) -> None: + # We successfully ran a modifying command. Need to save the + # configuration. + try: + self.configuration.save() + except Exception: + logger.exception( + "Unable to save configuration. Please report this as a bug." + ) + raise PipError("Internal Error.") + + def _determine_editor(self, options: Values) -> str: + if options.editor is not None: + return options.editor + elif "VISUAL" in os.environ: + return os.environ["VISUAL"] + elif "EDITOR" in os.environ: + return os.environ["EDITOR"] + else: + raise PipError("Could not determine editor to use.") diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/commands/debug.py b/.venv/lib/python3.11/site-packages/pip/_internal/commands/debug.py new file mode 100644 index 0000000..7e5271c --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_internal/commands/debug.py @@ -0,0 +1,201 @@ +import importlib.resources +import locale +import logging +import os +import sys +from optparse import Values +from types import ModuleType +from typing import Any, Dict, List, Optional + +import pip._vendor +from pip._vendor.certifi import where +from pip._vendor.packaging.version import parse as parse_version + +from pip._internal.cli import cmdoptions +from pip._internal.cli.base_command import Command +from pip._internal.cli.cmdoptions import make_target_python +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.configuration import Configuration +from pip._internal.metadata import get_environment +from pip._internal.utils.logging import indent_log +from pip._internal.utils.misc import get_pip_version + +logger = logging.getLogger(__name__) + + +def show_value(name: str, value: Any) -> None: + logger.info("%s: %s", name, value) + + +def show_sys_implementation() -> None: + logger.info("sys.implementation:") + implementation_name = sys.implementation.name + with indent_log(): + show_value("name", implementation_name) + + +def create_vendor_txt_map() -> Dict[str, str]: + with importlib.resources.open_text("pip._vendor", "vendor.txt") as f: + # Purge non version specifying lines. + # Also, remove any space prefix or suffixes (including comments). + lines = [ + line.strip().split(" ", 1)[0] for line in f.readlines() if "==" in line + ] + + # Transform into "module" -> version dict. + return dict(line.split("==", 1) for line in lines) + + +def get_module_from_module_name(module_name: str) -> Optional[ModuleType]: + # Module name can be uppercase in vendor.txt for some reason... + module_name = module_name.lower().replace("-", "_") + # PATCH: setuptools is actually only pkg_resources. + if module_name == "setuptools": + module_name = "pkg_resources" + + try: + __import__(f"pip._vendor.{module_name}", globals(), locals(), level=0) + return getattr(pip._vendor, module_name) + except ImportError: + # We allow 'truststore' to fail to import due + # to being unavailable on Python 3.9 and earlier. + if module_name == "truststore" and sys.version_info < (3, 10): + return None + raise + + +def get_vendor_version_from_module(module_name: str) -> Optional[str]: + module = get_module_from_module_name(module_name) + version = getattr(module, "__version__", None) + + if module and not version: + # Try to find version in debundled module info. + assert module.__file__ is not None + env = get_environment([os.path.dirname(module.__file__)]) + dist = env.get_distribution(module_name) + if dist: + version = str(dist.version) + + return version + + +def show_actual_vendor_versions(vendor_txt_versions: Dict[str, str]) -> None: + """Log the actual version and print extra info if there is + a conflict or if the actual version could not be imported. + """ + for module_name, expected_version in vendor_txt_versions.items(): + extra_message = "" + actual_version = get_vendor_version_from_module(module_name) + if not actual_version: + extra_message = ( + " (Unable to locate actual module version, using" + " vendor.txt specified version)" + ) + actual_version = expected_version + elif parse_version(actual_version) != parse_version(expected_version): + extra_message = ( + " (CONFLICT: vendor.txt suggests version should" + f" be {expected_version})" + ) + logger.info("%s==%s%s", module_name, actual_version, extra_message) + + +def show_vendor_versions() -> None: + logger.info("vendored library versions:") + + vendor_txt_versions = create_vendor_txt_map() + with indent_log(): + show_actual_vendor_versions(vendor_txt_versions) + + +def show_tags(options: Values) -> None: + tag_limit = 10 + + target_python = make_target_python(options) + tags = target_python.get_sorted_tags() + + # Display the target options that were explicitly provided. + formatted_target = target_python.format_given() + suffix = "" + if formatted_target: + suffix = f" (target: {formatted_target})" + + msg = f"Compatible tags: {len(tags)}{suffix}" + logger.info(msg) + + if options.verbose < 1 and len(tags) > tag_limit: + tags_limited = True + tags = tags[:tag_limit] + else: + tags_limited = False + + with indent_log(): + for tag in tags: + logger.info(str(tag)) + + if tags_limited: + msg = f"...\n[First {tag_limit} tags shown. Pass --verbose to show all.]" + logger.info(msg) + + +def ca_bundle_info(config: Configuration) -> str: + levels = {key.split(".", 1)[0] for key, _ in config.items()} + if not levels: + return "Not specified" + + levels_that_override_global = ["install", "wheel", "download"] + global_overriding_level = [ + level for level in levels if level in levels_that_override_global + ] + if not global_overriding_level: + return "global" + + if "global" in levels: + levels.remove("global") + return ", ".join(levels) + + +class DebugCommand(Command): + """ + Display debug information. + """ + + usage = """ + %prog """ + ignore_require_venv = True + + def add_options(self) -> None: + cmdoptions.add_target_python_options(self.cmd_opts) + self.parser.insert_option_group(0, self.cmd_opts) + self.parser.config.load() + + def run(self, options: Values, args: List[str]) -> int: + logger.warning( + "This command is only meant for debugging. " + "Do not use this with automation for parsing and getting these " + "details, since the output and options of this command may " + "change without notice." + ) + show_value("pip version", get_pip_version()) + show_value("sys.version", sys.version) + show_value("sys.executable", sys.executable) + show_value("sys.getdefaultencoding", sys.getdefaultencoding()) + show_value("sys.getfilesystemencoding", sys.getfilesystemencoding()) + show_value( + "locale.getpreferredencoding", + locale.getpreferredencoding(), + ) + show_value("sys.platform", sys.platform) + show_sys_implementation() + + show_value("'cert' config value", ca_bundle_info(self.parser.config)) + show_value("REQUESTS_CA_BUNDLE", os.environ.get("REQUESTS_CA_BUNDLE")) + show_value("CURL_CA_BUNDLE", os.environ.get("CURL_CA_BUNDLE")) + show_value("pip._vendor.certifi.where()", where()) + show_value("pip._vendor.DEBUNDLED", pip._vendor.DEBUNDLED) + + show_vendor_versions() + + show_tags(options) + + return SUCCESS diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/commands/download.py b/.venv/lib/python3.11/site-packages/pip/_internal/commands/download.py new file mode 100644 index 0000000..54247a7 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_internal/commands/download.py @@ -0,0 +1,147 @@ +import logging +import os +from optparse import Values +from typing import List + +from pip._internal.cli import cmdoptions +from pip._internal.cli.cmdoptions import make_target_python +from pip._internal.cli.req_command import RequirementCommand, with_cleanup +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.operations.build.build_tracker import get_build_tracker +from pip._internal.req.req_install import check_legacy_setup_py_options +from pip._internal.utils.misc import ensure_dir, normalize_path, write_output +from pip._internal.utils.temp_dir import TempDirectory + +logger = logging.getLogger(__name__) + + +class DownloadCommand(RequirementCommand): + """ + Download packages from: + + - PyPI (and other indexes) using requirement specifiers. + - VCS project urls. + - Local project directories. + - Local or remote source archives. + + pip also supports downloading from "requirements files", which provide + an easy way to specify a whole environment to be downloaded. + """ + + usage = """ + %prog [options] [package-index-options] ... + %prog [options] -r [package-index-options] ... + %prog [options] ... + %prog [options] ... + %prog [options] ...""" + + def add_options(self) -> None: + self.cmd_opts.add_option(cmdoptions.constraints()) + self.cmd_opts.add_option(cmdoptions.requirements()) + self.cmd_opts.add_option(cmdoptions.no_deps()) + self.cmd_opts.add_option(cmdoptions.global_options()) + self.cmd_opts.add_option(cmdoptions.no_binary()) + self.cmd_opts.add_option(cmdoptions.only_binary()) + self.cmd_opts.add_option(cmdoptions.prefer_binary()) + self.cmd_opts.add_option(cmdoptions.src()) + self.cmd_opts.add_option(cmdoptions.pre()) + self.cmd_opts.add_option(cmdoptions.require_hashes()) + self.cmd_opts.add_option(cmdoptions.progress_bar()) + self.cmd_opts.add_option(cmdoptions.no_build_isolation()) + self.cmd_opts.add_option(cmdoptions.use_pep517()) + self.cmd_opts.add_option(cmdoptions.no_use_pep517()) + self.cmd_opts.add_option(cmdoptions.check_build_deps()) + self.cmd_opts.add_option(cmdoptions.ignore_requires_python()) + + self.cmd_opts.add_option( + "-d", + "--dest", + "--destination-dir", + "--destination-directory", + dest="download_dir", + metavar="dir", + default=os.curdir, + help="Download packages into .", + ) + + cmdoptions.add_target_python_options(self.cmd_opts) + + index_opts = cmdoptions.make_option_group( + cmdoptions.index_group, + self.parser, + ) + + self.parser.insert_option_group(0, index_opts) + self.parser.insert_option_group(0, self.cmd_opts) + + @with_cleanup + def run(self, options: Values, args: List[str]) -> int: + options.ignore_installed = True + # editable doesn't really make sense for `pip download`, but the bowels + # of the RequirementSet code require that property. + options.editables = [] + + cmdoptions.check_dist_restriction(options) + + options.download_dir = normalize_path(options.download_dir) + ensure_dir(options.download_dir) + + session = self.get_default_session(options) + + target_python = make_target_python(options) + finder = self._build_package_finder( + options=options, + session=session, + target_python=target_python, + ignore_requires_python=options.ignore_requires_python, + ) + + build_tracker = self.enter_context(get_build_tracker()) + + directory = TempDirectory( + delete=not options.no_clean, + kind="download", + globally_managed=True, + ) + + reqs = self.get_requirements(args, options, finder, session) + check_legacy_setup_py_options(options, reqs) + + preparer = self.make_requirement_preparer( + temp_build_dir=directory, + options=options, + build_tracker=build_tracker, + session=session, + finder=finder, + download_dir=options.download_dir, + use_user_site=False, + verbosity=self.verbosity, + ) + + resolver = self.make_resolver( + preparer=preparer, + finder=finder, + options=options, + ignore_requires_python=options.ignore_requires_python, + use_pep517=options.use_pep517, + py_version_info=options.python_version, + ) + + self.trace_basic_info(finder) + + requirement_set = resolver.resolve(reqs, check_supported_wheels=True) + + downloaded: List[str] = [] + for req in requirement_set.requirements.values(): + if req.satisfied_by is None: + assert req.name is not None + preparer.save_linked_requirement(req) + downloaded.append(req.name) + + preparer.prepare_linked_requirements_more(requirement_set.requirements.values()) + requirement_set.warn_legacy_versions_and_specifiers() + + if downloaded: + write_output("Successfully downloaded %s", " ".join(downloaded)) + + return SUCCESS diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/commands/freeze.py b/.venv/lib/python3.11/site-packages/pip/_internal/commands/freeze.py new file mode 100644 index 0000000..fd9d88a --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_internal/commands/freeze.py @@ -0,0 +1,108 @@ +import sys +from optparse import Values +from typing import AbstractSet, List + +from pip._internal.cli import cmdoptions +from pip._internal.cli.base_command import Command +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.operations.freeze import freeze +from pip._internal.utils.compat import stdlib_pkgs + + +def _should_suppress_build_backends() -> bool: + return sys.version_info < (3, 12) + + +def _dev_pkgs() -> AbstractSet[str]: + pkgs = {"pip"} + + if _should_suppress_build_backends(): + pkgs |= {"setuptools", "distribute", "wheel"} + + return pkgs + + +class FreezeCommand(Command): + """ + Output installed packages in requirements format. + + packages are listed in a case-insensitive sorted order. + """ + + 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/.venv/lib/python3.11/site-packages/pip/_internal/commands/hash.py b/.venv/lib/python3.11/site-packages/pip/_internal/commands/hash.py new file mode 100644 index 0000000..042dac8 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_internal/commands/hash.py @@ -0,0 +1,59 @@ +import hashlib +import logging +import sys +from optparse import Values +from typing import List + +from pip._internal.cli.base_command import Command +from pip._internal.cli.status_codes import ERROR, SUCCESS +from pip._internal.utils.hashes import FAVORITE_HASH, STRONG_HASHES +from pip._internal.utils.misc import read_chunks, write_output + +logger = logging.getLogger(__name__) + + +class HashCommand(Command): + """ + Compute a hash of a local package archive. + + These can be used with --hash in a requirements file to do repeatable + installs. + """ + + usage = "%prog [options] ..." + ignore_require_venv = True + + def add_options(self) -> None: + self.cmd_opts.add_option( + "-a", + "--algorithm", + dest="algorithm", + choices=STRONG_HASHES, + action="store", + default=FAVORITE_HASH, + help="The hash algorithm to use: one of {}".format( + ", ".join(STRONG_HASHES) + ), + ) + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: List[str]) -> int: + if not args: + self.parser.print_usage(sys.stderr) + return ERROR + + algorithm = options.algorithm + for path in args: + write_output( + "%s:\n--hash=%s:%s", path, algorithm, _hash_of_file(path, algorithm) + ) + return SUCCESS + + +def _hash_of_file(path: str, algorithm: str) -> str: + """Return the hash digest of a file.""" + with open(path, "rb") as archive: + hash = hashlib.new(algorithm) + for chunk in read_chunks(archive): + hash.update(chunk) + return hash.hexdigest() diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/commands/help.py b/.venv/lib/python3.11/site-packages/pip/_internal/commands/help.py new file mode 100644 index 0000000..6206631 --- /dev/null +++ b/.venv/lib/python3.11/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/.venv/lib/python3.11/site-packages/pip/_internal/commands/index.py b/.venv/lib/python3.11/site-packages/pip/_internal/commands/index.py new file mode 100644 index 0000000..f55e9e4 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_internal/commands/index.py @@ -0,0 +1,139 @@ +import logging +from optparse import Values +from typing import Any, Iterable, List, Optional, Union + +from pip._vendor.packaging.version import LegacyVersion, Version + +from pip._internal.cli import cmdoptions +from pip._internal.cli.req_command import IndexGroupCommand +from pip._internal.cli.status_codes import ERROR, SUCCESS +from pip._internal.commands.search import print_dist_installation_info +from pip._internal.exceptions import CommandError, DistributionNotFound, PipError +from pip._internal.index.collector import LinkCollector +from pip._internal.index.package_finder import PackageFinder +from pip._internal.models.selection_prefs import SelectionPreferences +from pip._internal.models.target_python import TargetPython +from pip._internal.network.session import PipSession +from pip._internal.utils.misc import write_output + +logger = logging.getLogger(__name__) + + +class IndexCommand(IndexGroupCommand): + """ + Inspect information available from package indexes. + """ + + ignore_require_venv = True + usage = """ + %prog versions + """ + + def add_options(self) -> None: + cmdoptions.add_target_python_options(self.cmd_opts) + + self.cmd_opts.add_option(cmdoptions.ignore_requires_python()) + self.cmd_opts.add_option(cmdoptions.pre()) + self.cmd_opts.add_option(cmdoptions.no_binary()) + self.cmd_opts.add_option(cmdoptions.only_binary()) + + index_opts = cmdoptions.make_option_group( + cmdoptions.index_group, + self.parser, + ) + + self.parser.insert_option_group(0, index_opts) + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: List[str]) -> int: + handlers = { + "versions": self.get_available_package_versions, + } + + logger.warning( + "pip index is currently an experimental command. " + "It may be removed/changed in a future release " + "without prior warning." + ) + + # Determine action + if not args or args[0] not in handlers: + logger.error( + "Need an action (%s) to perform.", + ", ".join(sorted(handlers)), + ) + return ERROR + + action = args[0] + + # Error handling happens here, not in the action-handlers. + try: + handlers[action](options, args[1:]) + except PipError as e: + logger.error(e.args[0]) + return ERROR + + return SUCCESS + + def _build_package_finder( + self, + options: Values, + session: PipSession, + target_python: Optional[TargetPython] = None, + ignore_requires_python: Optional[bool] = None, + ) -> PackageFinder: + """ + Create a package finder appropriate to the index command. + """ + link_collector = LinkCollector.create(session, options=options) + + # Pass allow_yanked=False to ignore yanked versions. + selection_prefs = SelectionPreferences( + allow_yanked=False, + allow_all_prereleases=options.pre, + ignore_requires_python=ignore_requires_python, + ) + + return PackageFinder.create( + link_collector=link_collector, + selection_prefs=selection_prefs, + target_python=target_python, + ) + + def get_available_package_versions(self, options: Values, args: List[Any]) -> None: + if len(args) != 1: + raise CommandError("You need to specify exactly one argument") + + target_python = cmdoptions.make_target_python(options) + query = args[0] + + with self._build_session(options) as session: + finder = self._build_package_finder( + options=options, + session=session, + target_python=target_python, + ignore_requires_python=options.ignore_requires_python, + ) + + versions: Iterable[Union[LegacyVersion, Version]] = ( + candidate.version for candidate in finder.find_all_candidates(query) + ) + + if not options.pre: + # Remove prereleases + versions = ( + version for version in versions if not version.is_prerelease + ) + versions = set(versions) + + if not versions: + raise DistributionNotFound( + f"No matching distribution found for {query}" + ) + + formatted_versions = [str(ver) for ver in sorted(versions, reverse=True)] + latest = formatted_versions[0] + + write_output(f"{query} ({latest})") + write_output("Available versions: {}".format(", ".join(formatted_versions))) + print_dist_installation_info(query, latest) diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/commands/inspect.py b/.venv/lib/python3.11/site-packages/pip/_internal/commands/inspect.py new file mode 100644 index 0000000..27c8fa3 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_internal/commands/inspect.py @@ -0,0 +1,92 @@ +import logging +from optparse import Values +from typing import Any, Dict, List + +from pip._vendor.packaging.markers import default_environment +from pip._vendor.rich import print_json + +from pip import __version__ +from pip._internal.cli import cmdoptions +from pip._internal.cli.req_command import Command +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.metadata import BaseDistribution, get_environment +from pip._internal.utils.compat import stdlib_pkgs +from pip._internal.utils.urls import path_to_url + +logger = logging.getLogger(__name__) + + +class InspectCommand(Command): + """ + Inspect the content of a Python environment and produce a report in JSON format. + """ + + ignore_require_venv = True + usage = """ + %prog [options]""" + + def add_options(self) -> None: + self.cmd_opts.add_option( + "--local", + action="store_true", + default=False, + help=( + "If in a virtualenv that has global access, do not list " + "globally-installed packages." + ), + ) + self.cmd_opts.add_option( + "--user", + dest="user", + action="store_true", + default=False, + help="Only output packages installed in user-site.", + ) + self.cmd_opts.add_option(cmdoptions.list_path()) + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: List[str]) -> int: + cmdoptions.check_list_path_option(options) + dists = get_environment(options.path).iter_installed_distributions( + local_only=options.local, + user_only=options.user, + skip=set(stdlib_pkgs), + ) + output = { + "version": "1", + "pip_version": __version__, + "installed": [self._dist_to_dict(dist) for dist in dists], + "environment": default_environment(), + # TODO tags? scheme? + } + print_json(data=output) + return SUCCESS + + def _dist_to_dict(self, dist: BaseDistribution) -> Dict[str, Any]: + res: Dict[str, Any] = { + "metadata": dist.metadata_dict, + "metadata_location": dist.info_location, + } + # direct_url. Note that we don't have download_info (as in the installation + # report) since it is not recorded in installed metadata. + direct_url = dist.direct_url + if direct_url is not None: + res["direct_url"] = direct_url.to_dict() + else: + # Emulate direct_url for legacy editable installs. + editable_project_location = dist.editable_project_location + if editable_project_location is not None: + res["direct_url"] = { + "url": path_to_url(editable_project_location), + "dir_info": { + "editable": True, + }, + } + # installer + installer = dist.installer + if dist.installer: + res["installer"] = installer + # requested + if dist.installed_with_dist_info: + res["requested"] = dist.requested + return res diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/commands/install.py b/.venv/lib/python3.11/site-packages/pip/_internal/commands/install.py new file mode 100644 index 0000000..e944bb9 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_internal/commands/install.py @@ -0,0 +1,774 @@ +import errno +import json +import operator +import os +import shutil +import site +from optparse import SUPPRESS_HELP, Values +from typing import List, Optional + +from pip._vendor.rich import print_json + +from pip._internal.cache import WheelCache +from pip._internal.cli import cmdoptions +from pip._internal.cli.cmdoptions import make_target_python +from pip._internal.cli.req_command import ( + RequirementCommand, + warn_if_run_as_root, + with_cleanup, +) +from pip._internal.cli.status_codes import ERROR, SUCCESS +from pip._internal.exceptions import CommandError, InstallationError +from pip._internal.locations import get_scheme +from pip._internal.metadata import get_environment +from pip._internal.models.installation_report import InstallationReport +from pip._internal.operations.build.build_tracker import get_build_tracker +from pip._internal.operations.check import ConflictDetails, check_install_conflicts +from pip._internal.req import install_given_reqs +from pip._internal.req.req_install import ( + InstallRequirement, + check_legacy_setup_py_options, +) +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.filesystem import test_writable_dir +from pip._internal.utils.logging import getLogger +from pip._internal.utils.misc import ( + check_externally_managed, + ensure_dir, + get_pip_version, + protect_pip_from_modification_on_windows, + write_output, +) +from pip._internal.utils.temp_dir import TempDirectory +from pip._internal.utils.virtualenv import ( + running_under_virtualenv, + virtualenv_no_global, +) +from pip._internal.wheel_builder import build, should_build_for_install_command + +logger = getLogger(__name__) + + +class InstallCommand(RequirementCommand): + """ + Install packages from: + + - PyPI (and other indexes) using requirement specifiers. + - VCS project urls. + - Local project directories. + - Local or remote source archives. + + pip also supports installing from "requirements files", which provide + an easy way to specify a whole environment to be installed. + """ + + usage = """ + %prog [options] [package-index-options] ... + %prog [options] -r [package-index-options] ... + %prog [options] [-e] ... + %prog [options] [-e] ... + %prog [options] ...""" + + def add_options(self) -> None: + self.cmd_opts.add_option(cmdoptions.requirements()) + self.cmd_opts.add_option(cmdoptions.constraints()) + self.cmd_opts.add_option(cmdoptions.no_deps()) + self.cmd_opts.add_option(cmdoptions.pre()) + + self.cmd_opts.add_option(cmdoptions.editable()) + self.cmd_opts.add_option( + "--dry-run", + action="store_true", + dest="dry_run", + default=False, + help=( + "Don't actually install anything, just print what would be. " + "Can be used in combination with --ignore-installed " + "to 'resolve' the requirements." + ), + ) + self.cmd_opts.add_option( + "-t", + "--target", + dest="target_dir", + metavar="dir", + default=None, + help=( + "Install packages into . " + "By default this will not replace existing files/folders in " + ". Use --upgrade to replace existing packages in " + "with new versions." + ), + ) + cmdoptions.add_target_python_options(self.cmd_opts) + + self.cmd_opts.add_option( + "--user", + dest="use_user_site", + action="store_true", + help=( + "Install to the Python user install directory for your " + "platform. Typically ~/.local/, or %APPDATA%\\Python on " + "Windows. (See the Python documentation for site.USER_BASE " + "for full details.)" + ), + ) + self.cmd_opts.add_option( + "--no-user", + dest="use_user_site", + action="store_false", + help=SUPPRESS_HELP, + ) + self.cmd_opts.add_option( + "--root", + dest="root_path", + metavar="dir", + default=None, + help="Install everything relative to this alternate root directory.", + ) + self.cmd_opts.add_option( + "--prefix", + dest="prefix_path", + metavar="dir", + default=None, + help=( + "Installation prefix where lib, bin and other top-level " + "folders are placed. Note that the resulting installation may " + "contain scripts and other resources which reference the " + "Python interpreter of pip, and not that of ``--prefix``. " + "See also the ``--python`` option if the intention is to " + "install packages into another (possibly pip-free) " + "environment." + ), + ) + + self.cmd_opts.add_option(cmdoptions.src()) + + self.cmd_opts.add_option( + "-U", + "--upgrade", + dest="upgrade", + action="store_true", + help=( + "Upgrade all specified packages to the newest available " + "version. The handling of dependencies depends on the " + "upgrade-strategy used." + ), + ) + + self.cmd_opts.add_option( + "--upgrade-strategy", + dest="upgrade_strategy", + default="only-if-needed", + choices=["only-if-needed", "eager"], + help=( + "Determines how dependency upgrading should be handled " + "[default: %default]. " + '"eager" - dependencies are upgraded regardless of ' + "whether the currently installed version satisfies the " + "requirements of the upgraded package(s). " + '"only-if-needed" - are upgraded only when they do not ' + "satisfy the requirements of the upgraded package(s)." + ), + ) + + self.cmd_opts.add_option( + "--force-reinstall", + dest="force_reinstall", + action="store_true", + help="Reinstall all packages even if they are already up-to-date.", + ) + + self.cmd_opts.add_option( + "-I", + "--ignore-installed", + dest="ignore_installed", + action="store_true", + help=( + "Ignore the installed packages, overwriting them. " + "This can break your system if the existing package " + "is of a different version or was installed " + "with a different package manager!" + ), + ) + + self.cmd_opts.add_option(cmdoptions.ignore_requires_python()) + self.cmd_opts.add_option(cmdoptions.no_build_isolation()) + self.cmd_opts.add_option(cmdoptions.use_pep517()) + self.cmd_opts.add_option(cmdoptions.no_use_pep517()) + self.cmd_opts.add_option(cmdoptions.check_build_deps()) + self.cmd_opts.add_option(cmdoptions.override_externally_managed()) + + self.cmd_opts.add_option(cmdoptions.config_settings()) + self.cmd_opts.add_option(cmdoptions.global_options()) + + self.cmd_opts.add_option( + "--compile", + action="store_true", + dest="compile", + default=True, + help="Compile Python source files to bytecode", + ) + + self.cmd_opts.add_option( + "--no-compile", + action="store_false", + dest="compile", + help="Do not compile Python source files to bytecode", + ) + + self.cmd_opts.add_option( + "--no-warn-script-location", + action="store_false", + dest="warn_script_location", + default=True, + help="Do not warn when installing scripts outside PATH", + ) + self.cmd_opts.add_option( + "--no-warn-conflicts", + action="store_false", + dest="warn_about_conflicts", + default=True, + help="Do not warn about broken dependencies", + ) + self.cmd_opts.add_option(cmdoptions.no_binary()) + self.cmd_opts.add_option(cmdoptions.only_binary()) + self.cmd_opts.add_option(cmdoptions.prefer_binary()) + self.cmd_opts.add_option(cmdoptions.require_hashes()) + self.cmd_opts.add_option(cmdoptions.progress_bar()) + self.cmd_opts.add_option(cmdoptions.root_user_action()) + + index_opts = cmdoptions.make_option_group( + cmdoptions.index_group, + self.parser, + ) + + self.parser.insert_option_group(0, index_opts) + self.parser.insert_option_group(0, self.cmd_opts) + + self.cmd_opts.add_option( + "--report", + dest="json_report_file", + metavar="file", + default=None, + help=( + "Generate a JSON file describing what pip did to install " + "the provided requirements. " + "Can be used in combination with --dry-run and --ignore-installed " + "to 'resolve' the requirements. " + "When - is used as file name it writes to stdout. " + "When writing to stdout, please combine with the --quiet option " + "to avoid mixing pip logging output with JSON output." + ), + ) + + @with_cleanup + def run(self, options: Values, args: List[str]) -> int: + if options.use_user_site and options.target_dir is not None: + raise CommandError("Can not combine '--user' and '--target'") + + # Check whether the environment we're installing into is externally + # managed, as specified in PEP 668. Specifying --root, --target, or + # --prefix disables the check, since there's no reliable way to locate + # the EXTERNALLY-MANAGED file for those cases. An exception is also + # made specifically for "--dry-run --report" for convenience. + installing_into_current_environment = ( + not (options.dry_run and options.json_report_file) + and options.root_path is None + and options.target_dir is None + and options.prefix_path is None + ) + if ( + installing_into_current_environment + and not options.override_externally_managed + ): + check_externally_managed() + + upgrade_strategy = "to-satisfy-only" + if options.upgrade: + upgrade_strategy = options.upgrade_strategy + + cmdoptions.check_dist_restriction(options, check_target=True) + + logger.verbose("Using %s", get_pip_version()) + options.use_user_site = decide_user_install( + options.use_user_site, + prefix_path=options.prefix_path, + target_dir=options.target_dir, + root_path=options.root_path, + isolated_mode=options.isolated_mode, + ) + + target_temp_dir: Optional[TempDirectory] = None + target_temp_dir_path: Optional[str] = None + if options.target_dir: + options.ignore_installed = True + options.target_dir = os.path.abspath(options.target_dir) + if ( + # fmt: off + os.path.exists(options.target_dir) and + not os.path.isdir(options.target_dir) + # fmt: on + ): + raise CommandError( + "Target path exists but is not a directory, will not continue." + ) + + # Create a target directory for using with the target option + target_temp_dir = TempDirectory(kind="target") + target_temp_dir_path = target_temp_dir.path + self.enter_context(target_temp_dir) + + global_options = options.global_options or [] + + session = self.get_default_session(options) + + target_python = make_target_python(options) + finder = self._build_package_finder( + options=options, + session=session, + target_python=target_python, + ignore_requires_python=options.ignore_requires_python, + ) + build_tracker = self.enter_context(get_build_tracker()) + + directory = TempDirectory( + delete=not options.no_clean, + kind="install", + globally_managed=True, + ) + + try: + reqs = self.get_requirements(args, options, finder, session) + check_legacy_setup_py_options(options, reqs) + + wheel_cache = WheelCache(options.cache_dir) + + # Only when installing is it permitted to use PEP 660. + # In other circumstances (pip wheel, pip download) we generate + # regular (i.e. non editable) metadata and wheels. + for req in reqs: + req.permit_editable_wheels = True + + preparer = self.make_requirement_preparer( + temp_build_dir=directory, + options=options, + build_tracker=build_tracker, + session=session, + finder=finder, + use_user_site=options.use_user_site, + verbosity=self.verbosity, + ) + resolver = self.make_resolver( + preparer=preparer, + finder=finder, + options=options, + wheel_cache=wheel_cache, + use_user_site=options.use_user_site, + ignore_installed=options.ignore_installed, + ignore_requires_python=options.ignore_requires_python, + force_reinstall=options.force_reinstall, + upgrade_strategy=upgrade_strategy, + use_pep517=options.use_pep517, + ) + + self.trace_basic_info(finder) + + requirement_set = resolver.resolve( + reqs, check_supported_wheels=not options.target_dir + ) + + if options.json_report_file: + report = InstallationReport(requirement_set.requirements_to_install) + if options.json_report_file == "-": + print_json(data=report.to_dict()) + else: + with open(options.json_report_file, "w", encoding="utf-8") as f: + json.dump(report.to_dict(), f, indent=2, ensure_ascii=False) + + if options.dry_run: + # In non dry-run mode, the legacy versions and specifiers check + # will be done as part of conflict detection. + requirement_set.warn_legacy_versions_and_specifiers() + would_install_items = sorted( + (r.metadata["name"], r.metadata["version"]) + for r in requirement_set.requirements_to_install + ) + if would_install_items: + write_output( + "Would install %s", + " ".join("-".join(item) for item in would_install_items), + ) + return SUCCESS + + try: + pip_req = requirement_set.get_requirement("pip") + except KeyError: + modifying_pip = False + else: + # If we're not replacing an already installed pip, + # we're not modifying it. + modifying_pip = pip_req.satisfied_by is None + protect_pip_from_modification_on_windows(modifying_pip=modifying_pip) + + reqs_to_build = [ + r + for r in requirement_set.requirements.values() + if should_build_for_install_command(r) + ] + + _, build_failures = build( + reqs_to_build, + wheel_cache=wheel_cache, + verify=True, + build_options=[], + global_options=global_options, + ) + + if build_failures: + raise InstallationError( + "Could not build wheels for {}, which is required to " + "install pyproject.toml-based projects".format( + ", ".join(r.name for r in build_failures) # type: ignore + ) + ) + + to_install = resolver.get_installation_order(requirement_set) + + # Check for conflicts in the package set we're installing. + conflicts: Optional[ConflictDetails] = None + should_warn_about_conflicts = ( + not options.ignore_dependencies and options.warn_about_conflicts + ) + if should_warn_about_conflicts: + conflicts = self._determine_conflicts(to_install) + + # Don't warn about script install locations if + # --target or --prefix has been specified + warn_script_location = options.warn_script_location + if options.target_dir or options.prefix_path: + warn_script_location = False + + installed = install_given_reqs( + to_install, + global_options, + root=options.root_path, + home=target_temp_dir_path, + prefix=options.prefix_path, + warn_script_location=warn_script_location, + use_user_site=options.use_user_site, + pycompile=options.compile, + ) + + lib_locations = get_lib_location_guesses( + user=options.use_user_site, + home=target_temp_dir_path, + root=options.root_path, + prefix=options.prefix_path, + isolated=options.isolated_mode, + ) + env = get_environment(lib_locations) + + installed.sort(key=operator.attrgetter("name")) + items = [] + for result in installed: + item = result.name + try: + installed_dist = env.get_distribution(item) + if installed_dist is not None: + item = f"{item}-{installed_dist.version}" + except Exception: + pass + items.append(item) + + if conflicts is not None: + self._warn_about_conflicts( + conflicts, + resolver_variant=self.determine_resolver_variant(options), + ) + + installed_desc = " ".join(items) + if installed_desc: + write_output( + "Successfully installed %s", + installed_desc, + ) + except OSError as error: + show_traceback = self.verbosity >= 1 + + message = create_os_error_message( + error, + show_traceback, + options.use_user_site, + ) + logger.error(message, exc_info=show_traceback) + + return ERROR + + if options.target_dir: + assert target_temp_dir + self._handle_target_dir( + options.target_dir, target_temp_dir, options.upgrade + ) + if options.root_user_action == "warn": + warn_if_run_as_root() + return SUCCESS + + def _handle_target_dir( + self, target_dir: str, target_temp_dir: TempDirectory, upgrade: bool + ) -> None: + ensure_dir(target_dir) + + # Checking both purelib and platlib directories for installed + # packages to be moved to target directory + lib_dir_list = [] + + # Checking both purelib and platlib directories for installed + # packages to be moved to target directory + scheme = get_scheme("", home=target_temp_dir.path) + purelib_dir = scheme.purelib + platlib_dir = scheme.platlib + data_dir = scheme.data + + if os.path.exists(purelib_dir): + lib_dir_list.append(purelib_dir) + if os.path.exists(platlib_dir) and platlib_dir != purelib_dir: + lib_dir_list.append(platlib_dir) + if os.path.exists(data_dir): + lib_dir_list.append(data_dir) + + for lib_dir in lib_dir_list: + for item in os.listdir(lib_dir): + if lib_dir == data_dir: + ddir = os.path.join(data_dir, item) + if any(s.startswith(ddir) for s in lib_dir_list[:-1]): + continue + target_item_dir = os.path.join(target_dir, item) + if os.path.exists(target_item_dir): + if not upgrade: + logger.warning( + "Target directory %s already exists. Specify " + "--upgrade to force replacement.", + target_item_dir, + ) + continue + if os.path.islink(target_item_dir): + logger.warning( + "Target directory %s already exists and is " + "a link. pip will not automatically replace " + "links, please remove if replacement is " + "desired.", + target_item_dir, + ) + continue + if os.path.isdir(target_item_dir): + shutil.rmtree(target_item_dir) + else: + os.remove(target_item_dir) + + shutil.move(os.path.join(lib_dir, item), target_item_dir) + + def _determine_conflicts( + self, to_install: List[InstallRequirement] + ) -> Optional[ConflictDetails]: + try: + return check_install_conflicts(to_install) + except Exception: + logger.exception( + "Error while checking for conflicts. Please file an issue on " + "pip's issue tracker: https://github.com/pypa/pip/issues/new" + ) + return None + + def _warn_about_conflicts( + self, conflict_details: ConflictDetails, resolver_variant: str + ) -> None: + package_set, (missing, conflicting) = conflict_details + if not missing and not conflicting: + return + + parts: List[str] = [] + if resolver_variant == "legacy": + parts.append( + "pip's legacy dependency resolver does not consider dependency " + "conflicts when selecting packages. This behaviour is the " + "source of the following dependency conflicts." + ) + else: + assert resolver_variant == "resolvelib" + parts.append( + "pip's dependency resolver does not currently take into account " + "all the packages that are installed. This behaviour is the " + "source of the following dependency conflicts." + ) + + # NOTE: There is some duplication here, with commands/check.py + for project_name in missing: + version = package_set[project_name][0] + for dependency in missing[project_name]: + message = ( + f"{project_name} {version} requires {dependency[1]}, " + "which is not installed." + ) + parts.append(message) + + for project_name in conflicting: + version = package_set[project_name][0] + for dep_name, dep_version, req in conflicting[project_name]: + message = ( + "{name} {version} requires {requirement}, but {you} have " + "{dep_name} {dep_version} which is incompatible." + ).format( + name=project_name, + version=version, + requirement=req, + dep_name=dep_name, + dep_version=dep_version, + you=("you" if resolver_variant == "resolvelib" else "you'll"), + ) + parts.append(message) + + logger.critical("\n".join(parts)) + + +def get_lib_location_guesses( + user: bool = False, + home: Optional[str] = None, + root: Optional[str] = None, + isolated: bool = False, + prefix: Optional[str] = None, +) -> List[str]: + scheme = get_scheme( + "", + user=user, + home=home, + root=root, + isolated=isolated, + prefix=prefix, + ) + return [scheme.purelib, scheme.platlib] + + +def site_packages_writable(root: Optional[str], isolated: bool) -> bool: + return all( + test_writable_dir(d) + for d in set(get_lib_location_guesses(root=root, isolated=isolated)) + ) + + +def decide_user_install( + use_user_site: Optional[bool], + prefix_path: Optional[str] = None, + target_dir: Optional[str] = None, + root_path: Optional[str] = None, + isolated_mode: bool = False, +) -> bool: + """Determine whether to do a user install based on the input options. + + If use_user_site is False, no additional checks are done. + If use_user_site is True, it is checked for compatibility with other + options. + If use_user_site is None, the default behaviour depends on the environment, + which is provided by the other arguments. + """ + # In some cases (config from tox), use_user_site can be set to an integer + # rather than a bool, which 'use_user_site is False' wouldn't catch. + if (use_user_site is not None) and (not use_user_site): + logger.debug("Non-user install by explicit request") + return False + + if use_user_site: + if prefix_path: + raise CommandError( + "Can not combine '--user' and '--prefix' as they imply " + "different installation locations" + ) + if virtualenv_no_global(): + raise InstallationError( + "Can not perform a '--user' install. User site-packages " + "are not visible in this virtualenv." + ) + logger.debug("User install by explicit request") + return True + + # If we are here, user installs have not been explicitly requested/avoided + assert use_user_site is None + + # user install incompatible with --prefix/--target + if prefix_path or target_dir: + logger.debug("Non-user install due to --prefix or --target option") + return False + + # If user installs are not enabled, choose a non-user install + if not site.ENABLE_USER_SITE: + logger.debug("Non-user install because user site-packages disabled") + return False + + # If we have permission for a non-user install, do that, + # otherwise do a user install. + if site_packages_writable(root=root_path, isolated=isolated_mode): + logger.debug("Non-user install because site-packages writeable") + return False + + logger.info( + "Defaulting to user installation because normal site-packages " + "is not writeable" + ) + return True + + +def create_os_error_message( + error: OSError, show_traceback: bool, using_user_site: bool +) -> str: + """Format an error message for an OSError + + It may occur anytime during the execution of the install command. + """ + parts = [] + + # Mention the error if we are not going to show a traceback + parts.append("Could not install packages due to an OSError") + if not show_traceback: + parts.append(": ") + parts.append(str(error)) + else: + parts.append(".") + + # Spilt the error indication from a helper message (if any) + parts[-1] += "\n" + + # Suggest useful actions to the user: + # (1) using user site-packages or (2) verifying the permissions + if error.errno == errno.EACCES: + user_option_part = "Consider using the `--user` option" + permissions_part = "Check the permissions" + + if not running_under_virtualenv() and not using_user_site: + parts.extend( + [ + user_option_part, + " or ", + permissions_part.lower(), + ] + ) + else: + parts.append(permissions_part) + parts.append(".\n") + + # Suggest the user to enable Long Paths if path length is + # more than 260 + if ( + WINDOWS + and error.errno == errno.ENOENT + and error.filename + and len(error.filename) > 260 + ): + parts.append( + "HINT: This error might have occurred since " + "this system does not have Windows Long Path " + "support enabled. You can find information on " + "how to enable this at " + "https://pip.pypa.io/warnings/enable-long-paths\n" + ) + + return "".join(parts).strip() + "\n" diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/commands/list.py b/.venv/lib/python3.11/site-packages/pip/_internal/commands/list.py new file mode 100644 index 0000000..e551dda --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_internal/commands/list.py @@ -0,0 +1,368 @@ +import json +import logging +from optparse import Values +from typing import TYPE_CHECKING, Generator, List, Optional, Sequence, Tuple, cast + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.cli import cmdoptions +from pip._internal.cli.req_command import IndexGroupCommand +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.exceptions import CommandError +from pip._internal.index.collector import LinkCollector +from pip._internal.index.package_finder import PackageFinder +from pip._internal.metadata import BaseDistribution, get_environment +from pip._internal.models.selection_prefs import SelectionPreferences +from pip._internal.network.session import PipSession +from pip._internal.utils.compat import stdlib_pkgs +from pip._internal.utils.misc import tabulate, write_output + +if TYPE_CHECKING: + from pip._internal.metadata.base import DistributionVersion + + class _DistWithLatestInfo(BaseDistribution): + """Give the distribution object a couple of extra fields. + + These will be populated during ``get_outdated()``. This is dirty but + makes the rest of the code much cleaner. + """ + + latest_version: DistributionVersion + latest_filetype: str + + _ProcessedDists = Sequence[_DistWithLatestInfo] + + +logger = logging.getLogger(__name__) + + +class ListCommand(IndexGroupCommand): + """ + List installed packages, including editables. + + Packages are listed in a case-insensitive sorted order. + """ + + ignore_require_venv = True + usage = """ + %prog [options]""" + + def add_options(self) -> None: + self.cmd_opts.add_option( + "-o", + "--outdated", + action="store_true", + default=False, + help="List outdated packages", + ) + self.cmd_opts.add_option( + "-u", + "--uptodate", + action="store_true", + default=False, + help="List uptodate packages", + ) + self.cmd_opts.add_option( + "-e", + "--editable", + action="store_true", + default=False, + help="List editable projects.", + ) + self.cmd_opts.add_option( + "-l", + "--local", + action="store_true", + default=False, + help=( + "If in a virtualenv that has global access, do not list " + "globally-installed packages." + ), + ) + self.cmd_opts.add_option( + "--user", + dest="user", + action="store_true", + default=False, + help="Only output packages installed in user-site.", + ) + self.cmd_opts.add_option(cmdoptions.list_path()) + self.cmd_opts.add_option( + "--pre", + action="store_true", + default=False, + help=( + "Include pre-release and development versions. By default, " + "pip only finds stable versions." + ), + ) + + self.cmd_opts.add_option( + "--format", + action="store", + dest="list_format", + default="columns", + choices=("columns", "freeze", "json"), + help=( + "Select the output format among: columns (default), freeze, or json. " + "The 'freeze' format cannot be used with the --outdated option." + ), + ) + + self.cmd_opts.add_option( + "--not-required", + action="store_true", + dest="not_required", + help="List packages that are not dependencies of installed packages.", + ) + + self.cmd_opts.add_option( + "--exclude-editable", + action="store_false", + dest="include_editable", + help="Exclude editable package from output.", + ) + self.cmd_opts.add_option( + "--include-editable", + action="store_true", + dest="include_editable", + help="Include editable package from output.", + default=True, + ) + self.cmd_opts.add_option(cmdoptions.list_exclude()) + index_opts = cmdoptions.make_option_group(cmdoptions.index_group, self.parser) + + self.parser.insert_option_group(0, index_opts) + self.parser.insert_option_group(0, self.cmd_opts) + + def _build_package_finder( + self, options: Values, session: PipSession + ) -> PackageFinder: + """ + Create a package finder appropriate to this list command. + """ + link_collector = LinkCollector.create(session, options=options) + + # Pass allow_yanked=False to ignore yanked versions. + selection_prefs = SelectionPreferences( + allow_yanked=False, + allow_all_prereleases=options.pre, + ) + + return PackageFinder.create( + link_collector=link_collector, + selection_prefs=selection_prefs, + ) + + def run(self, options: Values, args: List[str]) -> int: + if options.outdated and options.uptodate: + raise CommandError("Options --outdated and --uptodate cannot be combined.") + + if options.outdated and options.list_format == "freeze": + raise CommandError( + "List format 'freeze' cannot be used with the --outdated option." + ) + + cmdoptions.check_list_path_option(options) + + skip = set(stdlib_pkgs) + if options.excludes: + skip.update(canonicalize_name(n) for n in options.excludes) + + packages: "_ProcessedDists" = [ + cast("_DistWithLatestInfo", d) + for d in get_environment(options.path).iter_installed_distributions( + local_only=options.local, + user_only=options.user, + editables_only=options.editable, + include_editables=options.include_editable, + skip=skip, + ) + ] + + # get_not_required must be called firstly in order to find and + # filter out all dependencies correctly. Otherwise a package + # can't be identified as requirement because some parent packages + # could be filtered out before. + if options.not_required: + packages = self.get_not_required(packages, options) + + if options.outdated: + packages = self.get_outdated(packages, options) + elif options.uptodate: + packages = self.get_uptodate(packages, options) + + self.output_package_listing(packages, options) + return SUCCESS + + def get_outdated( + self, packages: "_ProcessedDists", options: Values + ) -> "_ProcessedDists": + return [ + dist + for dist in self.iter_packages_latest_infos(packages, options) + if dist.latest_version > dist.version + ] + + def get_uptodate( + self, packages: "_ProcessedDists", options: Values + ) -> "_ProcessedDists": + return [ + dist + for dist in self.iter_packages_latest_infos(packages, options) + if dist.latest_version == dist.version + ] + + def get_not_required( + self, packages: "_ProcessedDists", options: Values + ) -> "_ProcessedDists": + dep_keys = { + canonicalize_name(dep.name) + for dist in packages + for dep in (dist.iter_dependencies() or ()) + } + + # Create a set to remove duplicate packages, and cast it to a list + # to keep the return type consistent with get_outdated and + # get_uptodate + return list({pkg for pkg in packages if pkg.canonical_name not in dep_keys}) + + def iter_packages_latest_infos( + self, packages: "_ProcessedDists", options: Values + ) -> Generator["_DistWithLatestInfo", None, None]: + with self._build_session(options) as session: + finder = self._build_package_finder(options, session) + + def latest_info( + dist: "_DistWithLatestInfo", + ) -> Optional["_DistWithLatestInfo"]: + all_candidates = finder.find_all_candidates(dist.canonical_name) + if not options.pre: + # Remove prereleases + all_candidates = [ + candidate + for candidate in all_candidates + if not candidate.version.is_prerelease + ] + + evaluator = finder.make_candidate_evaluator( + project_name=dist.canonical_name, + ) + best_candidate = evaluator.sort_best_candidate(all_candidates) + if best_candidate is None: + return None + + remote_version = best_candidate.version + if best_candidate.link.is_wheel: + typ = "wheel" + else: + typ = "sdist" + dist.latest_version = remote_version + dist.latest_filetype = typ + return dist + + for dist in map(latest_info, packages): + if dist is not None: + yield dist + + def output_package_listing( + self, packages: "_ProcessedDists", options: Values + ) -> None: + packages = sorted( + packages, + key=lambda dist: dist.canonical_name, + ) + if options.list_format == "columns" and packages: + data, header = format_for_columns(packages, options) + self.output_package_listing_columns(data, header) + elif options.list_format == "freeze": + for dist in packages: + if options.verbose >= 1: + write_output( + "%s==%s (%s)", dist.raw_name, dist.version, dist.location + ) + else: + write_output("%s==%s", dist.raw_name, dist.version) + elif options.list_format == "json": + write_output(format_for_json(packages, options)) + + def output_package_listing_columns( + self, data: List[List[str]], header: List[str] + ) -> None: + # insert the header first: we need to know the size of column names + if len(data) > 0: + data.insert(0, header) + + pkg_strings, sizes = tabulate(data) + + # Create and add a separator. + if len(data) > 0: + pkg_strings.insert(1, " ".join("-" * x for x in sizes)) + + for val in pkg_strings: + write_output(val) + + +def format_for_columns( + pkgs: "_ProcessedDists", options: Values +) -> Tuple[List[List[str]], List[str]]: + """ + Convert the package data into something usable + by output_package_listing_columns. + """ + header = ["Package", "Version"] + + running_outdated = options.outdated + if running_outdated: + header.extend(["Latest", "Type"]) + + has_editables = any(x.editable for x in pkgs) + if has_editables: + header.append("Editable project location") + + if options.verbose >= 1: + header.append("Location") + if options.verbose >= 1: + header.append("Installer") + + data = [] + for proj in pkgs: + # if we're working on the 'outdated' list, separate out the + # latest_version and type + row = [proj.raw_name, str(proj.version)] + + if running_outdated: + row.append(str(proj.latest_version)) + row.append(proj.latest_filetype) + + if has_editables: + row.append(proj.editable_project_location or "") + + if options.verbose >= 1: + row.append(proj.location or "") + if options.verbose >= 1: + row.append(proj.installer) + + data.append(row) + + return data, header + + +def format_for_json(packages: "_ProcessedDists", options: Values) -> str: + data = [] + for dist in packages: + info = { + "name": dist.raw_name, + "version": str(dist.version), + } + if options.verbose >= 1: + info["location"] = dist.location or "" + info["installer"] = dist.installer + if options.outdated: + info["latest_version"] = str(dist.latest_version) + info["latest_filetype"] = dist.latest_filetype + editable_project_location = dist.editable_project_location + if editable_project_location: + info["editable_project_location"] = editable_project_location + data.append(info) + return json.dumps(data) diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/commands/search.py b/.venv/lib/python3.11/site-packages/pip/_internal/commands/search.py new file mode 100644 index 0000000..03ed925 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_internal/commands/search.py @@ -0,0 +1,174 @@ +import logging +import shutil +import sys +import textwrap +import xmlrpc.client +from collections import OrderedDict +from optparse import Values +from typing import TYPE_CHECKING, Dict, List, Optional + +from pip._vendor.packaging.version import parse as parse_version + +from pip._internal.cli.base_command import Command +from pip._internal.cli.req_command import SessionCommandMixin +from pip._internal.cli.status_codes import NO_MATCHES_FOUND, SUCCESS +from pip._internal.exceptions import CommandError +from pip._internal.metadata import get_default_environment +from pip._internal.models.index import PyPI +from pip._internal.network.xmlrpc import PipXmlrpcTransport +from pip._internal.utils.logging import indent_log +from pip._internal.utils.misc import write_output + +if TYPE_CHECKING: + from typing import TypedDict + + class TransformedHit(TypedDict): + name: str + summary: str + versions: List[str] + + +logger = logging.getLogger(__name__) + + +class SearchCommand(Command, SessionCommandMixin): + """Search for PyPI packages whose name or summary contains .""" + + usage = """ + %prog [options] """ + ignore_require_venv = True + + def add_options(self) -> None: + self.cmd_opts.add_option( + "-i", + "--index", + dest="index", + metavar="URL", + default=PyPI.pypi_url, + help="Base URL of Python Package Index (default %default)", + ) + + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: List[str]) -> int: + if not args: + raise CommandError("Missing required argument (search query).") + query = args + pypi_hits = self.search(query, options) + hits = transform_hits(pypi_hits) + + terminal_width = None + if sys.stdout.isatty(): + terminal_width = shutil.get_terminal_size()[0] + + print_results(hits, terminal_width=terminal_width) + if pypi_hits: + return SUCCESS + return NO_MATCHES_FOUND + + def search(self, query: List[str], options: Values) -> List[Dict[str, str]]: + index_url = options.index + + session = self.get_default_session(options) + + transport = PipXmlrpcTransport(index_url, session) + pypi = xmlrpc.client.ServerProxy(index_url, transport) + try: + hits = pypi.search({"name": query, "summary": query}, "or") + except xmlrpc.client.Fault as fault: + message = "XMLRPC request failed [code: {code}]\n{string}".format( + code=fault.faultCode, + string=fault.faultString, + ) + raise CommandError(message) + assert isinstance(hits, list) + return hits + + +def transform_hits(hits: List[Dict[str, str]]) -> List["TransformedHit"]: + """ + The list from pypi is really a list of versions. We want a list of + packages with the list of versions stored inline. This converts the + list from pypi into one we can use. + """ + packages: Dict[str, "TransformedHit"] = OrderedDict() + for hit in hits: + name = hit["name"] + summary = hit["summary"] + version = hit["version"] + + if name not in packages.keys(): + packages[name] = { + "name": name, + "summary": summary, + "versions": [version], + } + else: + packages[name]["versions"].append(version) + + # if this is the highest version, replace summary and score + if version == highest_version(packages[name]["versions"]): + packages[name]["summary"] = summary + + return list(packages.values()) + + +def print_dist_installation_info(name: str, latest: str) -> None: + env = get_default_environment() + dist = env.get_distribution(name) + if dist is not None: + with indent_log(): + if dist.version == latest: + write_output("INSTALLED: %s (latest)", dist.version) + else: + write_output("INSTALLED: %s", dist.version) + if parse_version(latest).pre: + write_output( + "LATEST: %s (pre-release; install" + " with `pip install --pre`)", + latest, + ) + else: + write_output("LATEST: %s", latest) + + +def print_results( + hits: List["TransformedHit"], + name_column_width: Optional[int] = None, + terminal_width: Optional[int] = None, +) -> None: + if not hits: + return + if name_column_width is None: + name_column_width = ( + max( + [ + len(hit["name"]) + len(highest_version(hit.get("versions", ["-"]))) + for hit in hits + ] + ) + + 4 + ) + + for hit in hits: + name = hit["name"] + summary = hit["summary"] or "" + latest = highest_version(hit.get("versions", ["-"])) + if terminal_width is not None: + target_width = terminal_width - name_column_width - 5 + if target_width > 10: + # wrap and indent summary to fit terminal + summary_lines = textwrap.wrap(summary, target_width) + summary = ("\n" + " " * (name_column_width + 3)).join(summary_lines) + + name_latest = f"{name} ({latest})" + line = f"{name_latest:{name_column_width}} - {summary}" + try: + write_output(line) + print_dist_installation_info(name, latest) + except UnicodeEncodeError: + pass + + +def highest_version(versions: List[str]) -> str: + return max(versions, key=parse_version) diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/commands/show.py b/.venv/lib/python3.11/site-packages/pip/_internal/commands/show.py new file mode 100644 index 0000000..3f10701 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_internal/commands/show.py @@ -0,0 +1,189 @@ +import logging +from optparse import Values +from typing import Generator, Iterable, Iterator, List, NamedTuple, Optional + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.cli.base_command import Command +from pip._internal.cli.status_codes import ERROR, SUCCESS +from pip._internal.metadata import BaseDistribution, get_default_environment +from pip._internal.utils.misc import write_output + +logger = logging.getLogger(__name__) + + +class ShowCommand(Command): + """ + Show information about one or more installed packages. + + The output is in RFC-compliant mail header format. + """ + + usage = """ + %prog [options] ...""" + ignore_require_venv = True + + def add_options(self) -> None: + self.cmd_opts.add_option( + "-f", + "--files", + dest="files", + action="store_true", + default=False, + help="Show the full list of installed files for each package.", + ) + + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: List[str]) -> int: + if not args: + logger.warning("ERROR: Please provide a package name or names.") + return ERROR + query = args + + results = search_packages_info(query) + if not print_results( + results, list_files=options.files, verbose=options.verbose + ): + return ERROR + return SUCCESS + + +class _PackageInfo(NamedTuple): + name: str + version: str + location: str + editable_project_location: Optional[str] + requires: List[str] + required_by: List[str] + installer: str + metadata_version: str + classifiers: List[str] + summary: str + homepage: str + project_urls: List[str] + author: str + author_email: str + license: str + entry_points: List[str] + files: Optional[List[str]] + + +def search_packages_info(query: List[str]) -> Generator[_PackageInfo, None, None]: + """ + Gather details from installed distributions. Print distribution name, + version, location, and installed files. Installed files requires a + pip generated 'installed-files.txt' in the distributions '.egg-info' + directory. + """ + env = get_default_environment() + + installed = {dist.canonical_name: dist for dist in env.iter_all_distributions()} + query_names = [canonicalize_name(name) for name in query] + missing = sorted( + [name for name, pkg in zip(query, query_names) if pkg not in installed] + ) + if missing: + logger.warning("Package(s) not found: %s", ", ".join(missing)) + + def _get_requiring_packages(current_dist: BaseDistribution) -> Iterator[str]: + return ( + dist.metadata["Name"] or "UNKNOWN" + for dist in installed.values() + if current_dist.canonical_name + in {canonicalize_name(d.name) for d in dist.iter_dependencies()} + ) + + for query_name in query_names: + try: + dist = installed[query_name] + except KeyError: + continue + + requires = sorted((req.name for req in dist.iter_dependencies()), key=str.lower) + required_by = sorted(_get_requiring_packages(dist), key=str.lower) + + try: + entry_points_text = dist.read_text("entry_points.txt") + entry_points = entry_points_text.splitlines(keepends=False) + except FileNotFoundError: + entry_points = [] + + files_iter = dist.iter_declared_entries() + if files_iter is None: + files: Optional[List[str]] = None + else: + files = sorted(files_iter) + + metadata = dist.metadata + + yield _PackageInfo( + name=dist.raw_name, + version=str(dist.version), + location=dist.location or "", + editable_project_location=dist.editable_project_location, + requires=requires, + required_by=required_by, + installer=dist.installer, + metadata_version=dist.metadata_version or "", + classifiers=metadata.get_all("Classifier", []), + summary=metadata.get("Summary", ""), + homepage=metadata.get("Home-page", ""), + project_urls=metadata.get_all("Project-URL", []), + author=metadata.get("Author", ""), + author_email=metadata.get("Author-email", ""), + license=metadata.get("License", ""), + entry_points=entry_points, + files=files, + ) + + +def print_results( + distributions: Iterable[_PackageInfo], + list_files: bool, + verbose: bool, +) -> bool: + """ + Print the information from installed distributions found. + """ + results_printed = False + for i, dist in enumerate(distributions): + results_printed = True + if i > 0: + write_output("---") + + write_output("Name: %s", dist.name) + write_output("Version: %s", dist.version) + write_output("Summary: %s", dist.summary) + write_output("Home-page: %s", dist.homepage) + write_output("Author: %s", dist.author) + write_output("Author-email: %s", dist.author_email) + write_output("License: %s", dist.license) + write_output("Location: %s", dist.location) + if dist.editable_project_location is not None: + write_output( + "Editable project location: %s", dist.editable_project_location + ) + write_output("Requires: %s", ", ".join(dist.requires)) + write_output("Required-by: %s", ", ".join(dist.required_by)) + + if verbose: + write_output("Metadata-Version: %s", dist.metadata_version) + write_output("Installer: %s", dist.installer) + write_output("Classifiers:") + for classifier in dist.classifiers: + write_output(" %s", classifier) + write_output("Entry-points:") + for entry in dist.entry_points: + write_output(" %s", entry.strip()) + write_output("Project-URLs:") + for project_url in dist.project_urls: + write_output(" %s", project_url) + if list_files: + write_output("Files:") + if dist.files is None: + write_output("Cannot locate RECORD or installed-files.txt") + else: + for line in dist.files: + write_output(" %s", line.strip()) + return results_printed diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/commands/uninstall.py b/.venv/lib/python3.11/site-packages/pip/_internal/commands/uninstall.py new file mode 100644 index 0000000..f198fc3 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_internal/commands/uninstall.py @@ -0,0 +1,113 @@ +import logging +from optparse import Values +from typing import List + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.cli import cmdoptions +from pip._internal.cli.base_command import Command +from pip._internal.cli.req_command import SessionCommandMixin, warn_if_run_as_root +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.exceptions import InstallationError +from pip._internal.req import parse_requirements +from pip._internal.req.constructors import ( + install_req_from_line, + install_req_from_parsed_requirement, +) +from pip._internal.utils.misc import ( + check_externally_managed, + protect_pip_from_modification_on_windows, +) + +logger = logging.getLogger(__name__) + + +class UninstallCommand(Command, SessionCommandMixin): + """ + Uninstall packages. + + pip is able to uninstall most installed packages. Known exceptions are: + + - Pure distutils packages installed with ``python setup.py install``, which + leave behind no metadata to determine what files were installed. + - Script wrappers installed by ``python setup.py develop``. + """ + + usage = """ + %prog [options] ... + %prog [options] -r ...""" + + def add_options(self) -> None: + self.cmd_opts.add_option( + "-r", + "--requirement", + dest="requirements", + action="append", + default=[], + metavar="file", + help=( + "Uninstall all the packages listed in the given requirements " + "file. This option can be used multiple times." + ), + ) + self.cmd_opts.add_option( + "-y", + "--yes", + dest="yes", + action="store_true", + help="Don't ask for confirmation of uninstall deletions.", + ) + self.cmd_opts.add_option(cmdoptions.root_user_action()) + self.cmd_opts.add_option(cmdoptions.override_externally_managed()) + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: List[str]) -> int: + session = self.get_default_session(options) + + reqs_to_uninstall = {} + for name in args: + req = install_req_from_line( + name, + isolated=options.isolated_mode, + ) + if req.name: + reqs_to_uninstall[canonicalize_name(req.name)] = req + else: + logger.warning( + "Invalid requirement: %r ignored -" + " the uninstall command expects named" + " requirements.", + name, + ) + for filename in options.requirements: + for parsed_req in parse_requirements( + filename, options=options, session=session + ): + req = install_req_from_parsed_requirement( + parsed_req, isolated=options.isolated_mode + ) + if req.name: + reqs_to_uninstall[canonicalize_name(req.name)] = req + if not reqs_to_uninstall: + raise InstallationError( + f"You must give at least one requirement to {self.name} (see " + f'"pip help {self.name}")' + ) + + if not options.override_externally_managed: + check_externally_managed() + + protect_pip_from_modification_on_windows( + modifying_pip="pip" in reqs_to_uninstall + ) + + for req in reqs_to_uninstall.values(): + uninstall_pathset = req.uninstall( + auto_confirm=options.yes, + verbose=self.verbosity > 0, + ) + if uninstall_pathset: + uninstall_pathset.commit() + if options.root_user_action == "warn": + warn_if_run_as_root() + return SUCCESS diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/commands/wheel.py b/.venv/lib/python3.11/site-packages/pip/_internal/commands/wheel.py new file mode 100644 index 0000000..ed578aa --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_internal/commands/wheel.py @@ -0,0 +1,183 @@ +import logging +import os +import shutil +from optparse import Values +from typing import List + +from pip._internal.cache import WheelCache +from pip._internal.cli import cmdoptions +from pip._internal.cli.req_command import RequirementCommand, with_cleanup +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.exceptions import CommandError +from pip._internal.operations.build.build_tracker import get_build_tracker +from pip._internal.req.req_install import ( + InstallRequirement, + check_legacy_setup_py_options, +) +from pip._internal.utils.misc import ensure_dir, normalize_path +from pip._internal.utils.temp_dir import TempDirectory +from pip._internal.wheel_builder import build, should_build_for_wheel_command + +logger = logging.getLogger(__name__) + + +class WheelCommand(RequirementCommand): + """ + Build Wheel archives for your requirements and dependencies. + + Wheel is a built-package format, and offers the advantage of not + recompiling your software during every install. For more details, see the + wheel docs: https://wheel.readthedocs.io/en/latest/ + + 'pip wheel' uses the build system interface as described here: + https://pip.pypa.io/en/stable/reference/build-system/ + + """ + + usage = """ + %prog [options] ... + %prog [options] -r ... + %prog [options] [-e] ... + %prog [options] [-e] ... + %prog [options] ...""" + + def add_options(self) -> None: + self.cmd_opts.add_option( + "-w", + "--wheel-dir", + dest="wheel_dir", + metavar="dir", + default=os.curdir, + help=( + "Build wheels into , where the default is the " + "current working directory." + ), + ) + self.cmd_opts.add_option(cmdoptions.no_binary()) + self.cmd_opts.add_option(cmdoptions.only_binary()) + self.cmd_opts.add_option(cmdoptions.prefer_binary()) + self.cmd_opts.add_option(cmdoptions.no_build_isolation()) + self.cmd_opts.add_option(cmdoptions.use_pep517()) + self.cmd_opts.add_option(cmdoptions.no_use_pep517()) + self.cmd_opts.add_option(cmdoptions.check_build_deps()) + self.cmd_opts.add_option(cmdoptions.constraints()) + self.cmd_opts.add_option(cmdoptions.editable()) + self.cmd_opts.add_option(cmdoptions.requirements()) + self.cmd_opts.add_option(cmdoptions.src()) + self.cmd_opts.add_option(cmdoptions.ignore_requires_python()) + self.cmd_opts.add_option(cmdoptions.no_deps()) + self.cmd_opts.add_option(cmdoptions.progress_bar()) + + self.cmd_opts.add_option( + "--no-verify", + dest="no_verify", + action="store_true", + default=False, + help="Don't verify if built wheel is valid.", + ) + + self.cmd_opts.add_option(cmdoptions.config_settings()) + self.cmd_opts.add_option(cmdoptions.build_options()) + self.cmd_opts.add_option(cmdoptions.global_options()) + + self.cmd_opts.add_option( + "--pre", + action="store_true", + default=False, + help=( + "Include pre-release and development versions. By default, " + "pip only finds stable versions." + ), + ) + + self.cmd_opts.add_option(cmdoptions.require_hashes()) + + index_opts = cmdoptions.make_option_group( + cmdoptions.index_group, + self.parser, + ) + + self.parser.insert_option_group(0, index_opts) + self.parser.insert_option_group(0, self.cmd_opts) + + @with_cleanup + def run(self, options: Values, args: List[str]) -> int: + session = self.get_default_session(options) + + finder = self._build_package_finder(options, session) + + options.wheel_dir = normalize_path(options.wheel_dir) + ensure_dir(options.wheel_dir) + + build_tracker = self.enter_context(get_build_tracker()) + + directory = TempDirectory( + delete=not options.no_clean, + kind="wheel", + globally_managed=True, + ) + + reqs = self.get_requirements(args, options, finder, session) + check_legacy_setup_py_options(options, reqs) + + wheel_cache = WheelCache(options.cache_dir) + + preparer = self.make_requirement_preparer( + temp_build_dir=directory, + options=options, + build_tracker=build_tracker, + session=session, + finder=finder, + download_dir=options.wheel_dir, + use_user_site=False, + verbosity=self.verbosity, + ) + + resolver = self.make_resolver( + preparer=preparer, + finder=finder, + options=options, + wheel_cache=wheel_cache, + ignore_requires_python=options.ignore_requires_python, + use_pep517=options.use_pep517, + ) + + self.trace_basic_info(finder) + + requirement_set = resolver.resolve(reqs, check_supported_wheels=True) + + reqs_to_build: List[InstallRequirement] = [] + for req in requirement_set.requirements.values(): + if req.is_wheel: + preparer.save_linked_requirement(req) + elif should_build_for_wheel_command(req): + reqs_to_build.append(req) + + preparer.prepare_linked_requirements_more(requirement_set.requirements.values()) + requirement_set.warn_legacy_versions_and_specifiers() + + # build wheels + build_successes, build_failures = build( + reqs_to_build, + wheel_cache=wheel_cache, + verify=(not options.no_verify), + build_options=options.build_options or [], + global_options=options.global_options or [], + ) + for req in build_successes: + assert req.link and req.link.is_wheel + assert req.local_file_path + # copy from cache to target directory + try: + shutil.copy(req.local_file_path, options.wheel_dir) + except OSError as e: + logger.warning( + "Building wheel for %s failed: %s", + req.name, + e, + ) + build_failures.append(req) + if len(build_failures) != 0: + raise CommandError("Failed to build one or more wheels") + + return SUCCESS diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/configuration.py b/.venv/lib/python3.11/site-packages/pip/_internal/configuration.py new file mode 100644 index 0000000..c25273d --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_internal/configuration.py @@ -0,0 +1,383 @@ +"""Configuration management setup + +Some terminology: +- name + As written in config files. +- value + Value associated with a name +- key + Name combined with it's section (section.name) +- variant + A single word describing where the configuration key-value pair came from +""" + +import configparser +import locale +import os +import sys +from typing import Any, Dict, Iterable, List, NewType, Optional, Tuple + +from pip._internal.exceptions import ( + ConfigurationError, + ConfigurationFileCouldNotBeLoaded, +) +from pip._internal.utils import appdirs +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.logging import getLogger +from pip._internal.utils.misc import ensure_dir, enum + +RawConfigParser = configparser.RawConfigParser # Shorthand +Kind = NewType("Kind", str) + +CONFIG_BASENAME = "pip.ini" if WINDOWS else "pip.conf" +ENV_NAMES_IGNORED = "version", "help" + +# The kinds of configurations there are. +kinds = enum( + USER="user", # User Specific + GLOBAL="global", # System Wide + SITE="site", # [Virtual] Environment Specific + ENV="env", # from PIP_CONFIG_FILE + ENV_VAR="env-var", # from Environment Variables +) +OVERRIDE_ORDER = kinds.GLOBAL, kinds.USER, kinds.SITE, kinds.ENV, kinds.ENV_VAR +VALID_LOAD_ONLY = kinds.USER, kinds.GLOBAL, kinds.SITE + +logger = getLogger(__name__) + + +# NOTE: Maybe use the optionx attribute to normalize keynames. +def _normalize_name(name: str) -> str: + """Make a name consistent regardless of source (environment or file)""" + name = name.lower().replace("_", "-") + if name.startswith("--"): + name = name[2:] # only prefer long opts + return name + + +def _disassemble_key(name: str) -> List[str]: + if "." not in name: + error_message = ( + "Key does not contain dot separated section and key. " + f"Perhaps you wanted to use 'global.{name}' instead?" + ) + raise ConfigurationError(error_message) + return name.split(".", 1) + + +def get_configuration_files() -> Dict[Kind, List[str]]: + global_config_files = [ + os.path.join(path, CONFIG_BASENAME) for path in appdirs.site_config_dirs("pip") + ] + + site_config_file = os.path.join(sys.prefix, CONFIG_BASENAME) + legacy_config_file = os.path.join( + os.path.expanduser("~"), + "pip" if WINDOWS else ".pip", + CONFIG_BASENAME, + ) + new_config_file = os.path.join(appdirs.user_config_dir("pip"), CONFIG_BASENAME) + return { + kinds.GLOBAL: global_config_files, + kinds.SITE: [site_config_file], + kinds.USER: [legacy_config_file, new_config_file], + } + + +class Configuration: + """Handles management of configuration. + + Provides an interface to accessing and managing configuration files. + + This class converts provides an API that takes "section.key-name" style + keys and stores the value associated with it as "key-name" under the + section "section". + + This allows for a clean interface wherein the both the section and the + key-name are preserved in an easy to manage form in the configuration files + and the data stored is also nice. + """ + + def __init__(self, isolated: bool, load_only: Optional[Kind] = None) -> None: + super().__init__() + + if load_only is not None and load_only not in VALID_LOAD_ONLY: + raise ConfigurationError( + "Got invalid value for load_only - should be one of {}".format( + ", ".join(map(repr, VALID_LOAD_ONLY)) + ) + ) + self.isolated = isolated + self.load_only = load_only + + # Because we keep track of where we got the data from + self._parsers: Dict[Kind, List[Tuple[str, RawConfigParser]]] = { + variant: [] for variant in OVERRIDE_ORDER + } + self._config: Dict[Kind, Dict[str, Any]] = { + variant: {} for variant in OVERRIDE_ORDER + } + self._modified_parsers: List[Tuple[str, RawConfigParser]] = [] + + def load(self) -> None: + """Loads configuration from configuration files and environment""" + self._load_config_files() + if not self.isolated: + self._load_environment_vars() + + def get_file_to_edit(self) -> Optional[str]: + """Returns the file with highest priority in configuration""" + assert self.load_only is not None, "Need to be specified a file to be editing" + + try: + return self._get_parser_to_modify()[0] + except IndexError: + return None + + def items(self) -> Iterable[Tuple[str, Any]]: + """Returns key-value pairs like dict.items() representing the loaded + configuration + """ + return self._dictionary.items() + + def get_value(self, key: str) -> Any: + """Get a value from the configuration.""" + orig_key = key + key = _normalize_name(key) + try: + return self._dictionary[key] + except KeyError: + # disassembling triggers a more useful error message than simply + # "No such key" in the case that the key isn't in the form command.option + _disassemble_key(key) + raise ConfigurationError(f"No such key - {orig_key}") + + def set_value(self, key: str, value: Any) -> None: + """Modify a value in the configuration.""" + key = _normalize_name(key) + self._ensure_have_load_only() + + assert self.load_only + fname, parser = self._get_parser_to_modify() + + if parser is not None: + section, name = _disassemble_key(key) + + # Modify the parser and the configuration + if not parser.has_section(section): + parser.add_section(section) + parser.set(section, name, value) + + self._config[self.load_only][key] = value + self._mark_as_modified(fname, parser) + + def unset_value(self, key: str) -> None: + """Unset a value in the configuration.""" + orig_key = key + key = _normalize_name(key) + self._ensure_have_load_only() + + assert self.load_only + if key not in self._config[self.load_only]: + raise ConfigurationError(f"No such key - {orig_key}") + + fname, parser = self._get_parser_to_modify() + + if parser is not None: + section, name = _disassemble_key(key) + if not ( + parser.has_section(section) and parser.remove_option(section, name) + ): + # The option was not removed. + raise ConfigurationError( + "Fatal Internal error [id=1]. Please report as a bug." + ) + + # The section may be empty after the option was removed. + if not parser.items(section): + parser.remove_section(section) + self._mark_as_modified(fname, parser) + + del self._config[self.load_only][key] + + def save(self) -> None: + """Save the current in-memory state.""" + self._ensure_have_load_only() + + for fname, parser in self._modified_parsers: + logger.info("Writing to %s", fname) + + # Ensure directory exists. + ensure_dir(os.path.dirname(fname)) + + # Ensure directory's permission(need to be writeable) + try: + with open(fname, "w") as f: + parser.write(f) + except OSError as error: + raise ConfigurationError( + f"An error occurred while writing to the configuration file " + f"{fname}: {error}" + ) + + # + # Private routines + # + + def _ensure_have_load_only(self) -> None: + if self.load_only is None: + raise ConfigurationError("Needed a specific file to be modifying.") + logger.debug("Will be working with %s variant only", self.load_only) + + @property + def _dictionary(self) -> Dict[str, Any]: + """A dictionary representing the loaded configuration.""" + # NOTE: Dictionaries are not populated if not loaded. So, conditionals + # are not needed here. + retval = {} + + for variant in OVERRIDE_ORDER: + retval.update(self._config[variant]) + + return retval + + def _load_config_files(self) -> None: + """Loads configuration from configuration files""" + config_files = dict(self.iter_config_files()) + if config_files[kinds.ENV][0:1] == [os.devnull]: + logger.debug( + "Skipping loading configuration files due to " + "environment's PIP_CONFIG_FILE being os.devnull" + ) + return + + for variant, files in config_files.items(): + for fname in files: + # If there's specific variant set in `load_only`, load only + # that variant, not the others. + if self.load_only is not None and variant != self.load_only: + logger.debug("Skipping file '%s' (variant: %s)", fname, variant) + continue + + parser = self._load_file(variant, fname) + + # Keeping track of the parsers used + self._parsers[variant].append((fname, parser)) + + def _load_file(self, variant: Kind, fname: str) -> RawConfigParser: + logger.verbose("For variant '%s', will try loading '%s'", variant, fname) + parser = self._construct_parser(fname) + + for section in parser.sections(): + items = parser.items(section) + self._config[variant].update(self._normalized_keys(section, items)) + + return parser + + def _construct_parser(self, fname: str) -> RawConfigParser: + parser = configparser.RawConfigParser() + # If there is no such file, don't bother reading it but create the + # parser anyway, to hold the data. + # Doing this is useful when modifying and saving files, where we don't + # need to construct a parser. + if os.path.exists(fname): + locale_encoding = locale.getpreferredencoding(False) + try: + parser.read(fname, encoding=locale_encoding) + except UnicodeDecodeError: + # See https://github.com/pypa/pip/issues/4963 + raise ConfigurationFileCouldNotBeLoaded( + reason=f"contains invalid {locale_encoding} characters", + fname=fname, + ) + except configparser.Error as error: + # See https://github.com/pypa/pip/issues/4893 + raise ConfigurationFileCouldNotBeLoaded(error=error) + return parser + + def _load_environment_vars(self) -> None: + """Loads configuration from environment variables""" + self._config[kinds.ENV_VAR].update( + self._normalized_keys(":env:", self.get_environ_vars()) + ) + + def _normalized_keys( + self, section: str, items: Iterable[Tuple[str, Any]] + ) -> Dict[str, Any]: + """Normalizes items to construct a dictionary with normalized keys. + + This routine is where the names become keys and are made the same + regardless of source - configuration files or environment. + """ + normalized = {} + for name, val in items: + key = section + "." + _normalize_name(name) + normalized[key] = val + return normalized + + def get_environ_vars(self) -> Iterable[Tuple[str, str]]: + """Returns a generator with all environmental vars with prefix PIP_""" + for key, val in os.environ.items(): + if key.startswith("PIP_"): + name = key[4:].lower() + if name not in ENV_NAMES_IGNORED: + yield name, val + + # XXX: This is patched in the tests. + def iter_config_files(self) -> Iterable[Tuple[Kind, List[str]]]: + """Yields variant and configuration files associated with it. + + This should be treated like items of a dictionary. The order + here doesn't affect what gets overridden. That is controlled + by OVERRIDE_ORDER. However this does control the order they are + displayed to the user. It's probably most ergononmic to display + things in the same order as OVERRIDE_ORDER + """ + # SMELL: Move the conditions out of this function + + env_config_file = os.environ.get("PIP_CONFIG_FILE", None) + config_files = get_configuration_files() + + yield kinds.GLOBAL, config_files[kinds.GLOBAL] + + # per-user config is not loaded when env_config_file exists + should_load_user_config = not self.isolated and not ( + env_config_file and os.path.exists(env_config_file) + ) + if should_load_user_config: + # The legacy config file is overridden by the new config file + yield kinds.USER, config_files[kinds.USER] + + # virtualenv config + yield kinds.SITE, config_files[kinds.SITE] + + if env_config_file is not None: + yield kinds.ENV, [env_config_file] + else: + yield kinds.ENV, [] + + def get_values_in_config(self, variant: Kind) -> Dict[str, Any]: + """Get values present in a config file""" + return self._config[variant] + + def _get_parser_to_modify(self) -> Tuple[str, RawConfigParser]: + # Determine which parser to modify + assert self.load_only + parsers = self._parsers[self.load_only] + if not parsers: + # This should not happen if everything works correctly. + raise ConfigurationError( + "Fatal Internal error [id=2]. Please report as a bug." + ) + + # Use the highest priority parser. + return parsers[-1] + + # XXX: This is patched in the tests. + def _mark_as_modified(self, fname: str, parser: RawConfigParser) -> None: + file_parser_tuple = (fname, parser) + if file_parser_tuple not in self._modified_parsers: + self._modified_parsers.append(file_parser_tuple) + + def __repr__(self) -> str: + return f"{self.__class__.__name__}({self._dictionary!r})" diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/distributions/__init__.py b/.venv/lib/python3.11/site-packages/pip/_internal/distributions/__init__.py new file mode 100644 index 0000000..9a89a83 --- /dev/null +++ b/.venv/lib/python3.11/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/.venv/lib/python3.11/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8d8e3114bc4959dd230b4e4da99f5e2e1b6c25d4 GIT binary patch literal 1084 zcmaJ^31bRK8g_xWmZHn|Z%^@6Fryo44PlrtTn+FKD${DNy9?>m9|D82qzaNk=r;4e!i$ld`B>-a>?}bo5dV(O0 zA-6KX2qHIgZ?ELycTYBp-lRjFVOq{kA{^CZ&MrS-vGXrO*T^gua7F7O6M90K#ijp7 zKaVis=whK8le%x`{1bUCnUEx=@KBsn)s2!J&Nw@uWTV??QW0&4WREqJB+C<&&hh+-UG3S`)T;g|qsa%KTPG8Xy@|!tSUiJT=#@L3Inc3p)v-6+k@V^m9!>uW z*}`pUvba^u;MTnB;biwm>j7U6)_}h#!#4}!-;tQscoMdAYb8p8PRLfp931sv<$Kuj w62`cX*3wb!qi5-;_R-UHRQqTp9o4)%jhFf}5Azb(pXR;X1e>G(Y(;Z_0e%8BrT_o{ literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/distributions/__pycache__/base.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_internal/distributions/__pycache__/base.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c14666a36b6cf1d571c1ff2036209e41366801e8 GIT binary patch literal 3176 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 kGnwzl=+38M2~n7q6GLWuuapeuv+FBvEU5dZ)H literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..05fcd06a2afb61a2ffa6f4f2518d0008cbf30414 GIT binary patch literal 9416 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/distributions/base.py b/.venv/lib/python3.11/site-packages/pip/_internal/distributions/base.py new file mode 100644 index 0000000..6fb0d7b --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_internal/distributions/base.py @@ -0,0 +1,51 @@ +import abc +from typing import Optional + +from pip._internal.index.package_finder import PackageFinder +from pip._internal.metadata.base import BaseDistribution +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. + + - if we need to do work in the build tracker, we must be able to generate a unique + string to identify the requirement in the build tracker. + """ + + def __init__(self, req: InstallRequirement) -> None: + super().__init__() + self.req = req + + @abc.abstractproperty + def build_tracker_id(self) -> Optional[str]: + """A string that uniquely identifies this requirement to the build tracker. + + If None, then this dist has no work to do in the build tracker, and + ``.prepare_distribution_metadata()`` will not be called.""" + raise NotImplementedError() + + @abc.abstractmethod + def get_metadata_distribution(self) -> BaseDistribution: + raise NotImplementedError() + + @abc.abstractmethod + def prepare_distribution_metadata( + self, + finder: PackageFinder, + build_isolation: bool, + check_build_deps: bool, + ) -> None: + raise NotImplementedError() diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/distributions/installed.py b/.venv/lib/python3.11/site-packages/pip/_internal/distributions/installed.py new file mode 100644 index 0000000..ab8d53b --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_internal/distributions/installed.py @@ -0,0 +1,29 @@ +from typing import Optional + +from pip._internal.distributions.base import AbstractDistribution +from pip._internal.index.package_finder import PackageFinder +from pip._internal.metadata import BaseDistribution + + +class InstalledDistribution(AbstractDistribution): + """Represents an installed package. + + This does not need any preparation as the required information has already + been computed. + """ + + @property + def build_tracker_id(self) -> Optional[str]: + return None + + def get_metadata_distribution(self) -> BaseDistribution: + assert self.req.satisfied_by is not None, "not actually installed" + return self.req.satisfied_by + + def prepare_distribution_metadata( + self, + finder: PackageFinder, + build_isolation: bool, + check_build_deps: bool, + ) -> None: + pass diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/distributions/sdist.py b/.venv/lib/python3.11/site-packages/pip/_internal/distributions/sdist.py new file mode 100644 index 0000000..15ff42b --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_internal/distributions/sdist.py @@ -0,0 +1,156 @@ +import logging +from typing import Iterable, Optional, Set, Tuple + +from pip._internal.build_env import BuildEnvironment +from pip._internal.distributions.base import AbstractDistribution +from pip._internal.exceptions import InstallationError +from pip._internal.index.package_finder import PackageFinder +from pip._internal.metadata import BaseDistribution +from pip._internal.utils.subprocess import runner_with_spinner_message + +logger = logging.getLogger(__name__) + + +class SourceDistribution(AbstractDistribution): + """Represents a source distribution. + + The preparation step for these needs metadata for the packages to be + generated, either using PEP 517 or using the legacy `setup.py egg_info`. + """ + + @property + def build_tracker_id(self) -> Optional[str]: + """Identify this requirement uniquely by its link.""" + assert self.req.link + return self.req.link.url_without_fragment + + def get_metadata_distribution(self) -> BaseDistribution: + return self.req.get_dist() + + def prepare_distribution_metadata( + self, + finder: PackageFinder, + build_isolation: bool, + check_build_deps: bool, + ) -> None: + # Load pyproject.toml, to determine whether PEP 517 is to be used + self.req.load_pyproject_toml() + + # Set up the build isolation, if this requirement should be isolated + should_isolate = self.req.use_pep517 and build_isolation + if should_isolate: + # Setup an isolated environment and install the build backend static + # requirements in it. + self._prepare_build_backend(finder) + # Check that if the requirement is editable, it either supports PEP 660 or + # has a setup.py or a setup.cfg. This cannot be done earlier because we need + # to setup the build backend to verify it supports build_editable, nor can + # it be done later, because we want to avoid installing build requirements + # needlessly. Doing it here also works around setuptools generating + # UNKNOWN.egg-info when running get_requires_for_build_wheel on a directory + # without setup.py nor setup.cfg. + self.req.isolated_editable_sanity_check() + # Install the dynamic build requirements. + self._install_build_reqs(finder) + # Check if the current environment provides build dependencies + should_check_deps = self.req.use_pep517 and check_build_deps + if should_check_deps: + pyproject_requires = self.req.pyproject_requires + assert pyproject_requires is not None + conflicting, missing = self.req.build_env.check_requirements( + pyproject_requires + ) + if conflicting: + self._raise_conflicts("the backend dependencies", conflicting) + if missing: + self._raise_missing_reqs(missing) + self.req.prepare_metadata() + + def _prepare_build_backend(self, finder: PackageFinder) -> None: + # Isolate in a BuildEnvironment and install the build-time + # requirements. + pyproject_requires = self.req.pyproject_requires + assert pyproject_requires is not None + + self.req.build_env = BuildEnvironment() + self.req.build_env.install_requirements( + finder, pyproject_requires, "overlay", kind="build dependencies" + ) + conflicting, missing = self.req.build_env.check_requirements( + self.req.requirements_to_check + ) + if conflicting: + self._raise_conflicts("PEP 517/518 supported requirements", conflicting) + if missing: + logger.warning( + "Missing build requirements in pyproject.toml for %s.", + self.req, + ) + logger.warning( + "The project does not specify a build backend, and " + "pip cannot fall back to setuptools without %s.", + " and ".join(map(repr, sorted(missing))), + ) + + def _get_build_requires_wheel(self) -> Iterable[str]: + with self.req.build_env: + runner = runner_with_spinner_message("Getting requirements to build wheel") + backend = self.req.pep517_backend + assert backend is not None + with backend.subprocess_runner(runner): + return backend.get_requires_for_build_wheel() + + def _get_build_requires_editable(self) -> Iterable[str]: + with self.req.build_env: + runner = runner_with_spinner_message( + "Getting requirements to build editable" + ) + backend = self.req.pep517_backend + assert backend is not None + with backend.subprocess_runner(runner): + return backend.get_requires_for_build_editable() + + def _install_build_reqs(self, finder: PackageFinder) -> None: + # Install any extra build dependencies that the backend requests. + # This must be done in a second pass, as the pyproject.toml + # dependencies must be installed before we can call the backend. + if ( + self.req.editable + and self.req.permit_editable_wheels + and self.req.supports_pyproject_editable() + ): + build_reqs = self._get_build_requires_editable() + else: + build_reqs = self._get_build_requires_wheel() + conflicting, missing = self.req.build_env.check_requirements(build_reqs) + if conflicting: + self._raise_conflicts("the backend dependencies", conflicting) + self.req.build_env.install_requirements( + finder, missing, "normal", kind="backend dependencies" + ) + + def _raise_conflicts( + self, conflicting_with: str, conflicting_reqs: Set[Tuple[str, str]] + ) -> None: + format_string = ( + "Some build dependencies for {requirement} " + "conflict with {conflicting_with}: {description}." + ) + error_message = format_string.format( + requirement=self.req, + conflicting_with=conflicting_with, + description=", ".join( + f"{installed} is incompatible with {wanted}" + for installed, wanted in sorted(conflicting_reqs) + ), + ) + raise InstallationError(error_message) + + def _raise_missing_reqs(self, missing: Set[str]) -> None: + format_string = ( + "Some build dependencies for {requirement} are missing: {missing}." + ) + error_message = format_string.format( + requirement=self.req, missing=", ".join(map(repr, sorted(missing))) + ) + raise InstallationError(error_message) diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/distributions/wheel.py b/.venv/lib/python3.11/site-packages/pip/_internal/distributions/wheel.py new file mode 100644 index 0000000..eb16e25 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_internal/distributions/wheel.py @@ -0,0 +1,40 @@ +from typing import Optional + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.distributions.base import AbstractDistribution +from pip._internal.index.package_finder import PackageFinder +from pip._internal.metadata import ( + BaseDistribution, + FilesystemWheel, + get_wheel_distribution, +) + + +class WheelDistribution(AbstractDistribution): + """Represents a wheel distribution. + + This does not need any preparation as wheels can be directly unpacked. + """ + + @property + def build_tracker_id(self) -> Optional[str]: + return None + + def get_metadata_distribution(self) -> BaseDistribution: + """Loads the metadata from the wheel file into memory and returns a + Distribution that uses it, not relying on the wheel file or + requirement. + """ + assert self.req.local_file_path, "Set as part of preparation during download" + assert self.req.name, "Wheels are never unnamed" + wheel = FilesystemWheel(self.req.local_file_path) + return get_wheel_distribution(wheel, canonicalize_name(self.req.name)) + + def prepare_distribution_metadata( + self, + finder: PackageFinder, + build_isolation: bool, + check_build_deps: bool, + ) -> None: + pass diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/exceptions.py b/.venv/lib/python3.11/site-packages/pip/_internal/exceptions.py new file mode 100644 index 0000000..5007a62 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_internal/exceptions.py @@ -0,0 +1,728 @@ +"""Exceptions used throughout package. + +This module MUST NOT try to import from anything within `pip._internal` to +operate. This is expected to be importable from any/all files within the +subpackage and, thus, should not depend on them. +""" + +import configparser +import contextlib +import locale +import logging +import pathlib +import re +import sys +from itertools import chain, groupby, repeat +from typing import TYPE_CHECKING, Dict, Iterator, List, Optional, Union + +from pip._vendor.requests.models import Request, Response +from pip._vendor.rich.console import Console, ConsoleOptions, RenderResult +from pip._vendor.rich.markup import escape +from pip._vendor.rich.text import Text + +if TYPE_CHECKING: + from hashlib import _Hash + from typing import Literal + + from pip._internal.metadata import BaseDistribution + from pip._internal.req.req_install import InstallRequirement + +logger = logging.getLogger(__name__) + + +# +# Scaffolding +# +def _is_kebab_case(s: str) -> bool: + return re.match(r"^[a-z]+(-[a-z]+)*$", s) is not None + + +def _prefix_with_indent( + s: Union[Text, str], + console: Console, + *, + prefix: str, + indent: str, +) -> Text: + if isinstance(s, Text): + text = s + else: + text = console.render_str(s) + + return console.render_str(prefix, overflow="ignore") + console.render_str( + f"\n{indent}", overflow="ignore" + ).join(text.split(allow_blank=True)) + + +class PipError(Exception): + """The base pip error.""" + + +class DiagnosticPipError(PipError): + """An error, that presents diagnostic information to the user. + + This contains a bunch of logic, to enable pretty presentation of our error + messages. Each error gets a unique reference. Each error can also include + additional context, a hint and/or a note -- which are presented with the + main error message in a consistent style. + + This is adapted from the error output styling in `sphinx-theme-builder`. + """ + + reference: str + + def __init__( + self, + *, + kind: 'Literal["error", "warning"]' = "error", + reference: Optional[str] = None, + message: Union[str, Text], + context: Optional[Union[str, Text]], + hint_stmt: Optional[Union[str, Text]], + note_stmt: Optional[Union[str, Text]] = None, + link: Optional[str] = None, + ) -> None: + # Ensure a proper reference is provided. + if reference is None: + assert hasattr(self, "reference"), "error reference not provided!" + reference = self.reference + assert _is_kebab_case(reference), "error reference must be kebab-case!" + + self.kind = kind + self.reference = reference + + self.message = message + self.context = context + + self.note_stmt = note_stmt + self.hint_stmt = hint_stmt + + self.link = link + + super().__init__(f"<{self.__class__.__name__}: {self.reference}>") + + def __repr__(self) -> str: + return ( + f"<{self.__class__.__name__}(" + f"reference={self.reference!r}, " + f"message={self.message!r}, " + f"context={self.context!r}, " + f"note_stmt={self.note_stmt!r}, " + f"hint_stmt={self.hint_stmt!r}" + ")>" + ) + + def __rich_console__( + self, + console: Console, + options: ConsoleOptions, + ) -> RenderResult: + colour = "red" if self.kind == "error" else "yellow" + + yield f"[{colour} bold]{self.kind}[/]: [bold]{self.reference}[/]" + yield "" + + if not options.ascii_only: + # Present the main message, with relevant context indented. + if self.context is not None: + yield _prefix_with_indent( + self.message, + console, + prefix=f"[{colour}]×[/] ", + indent=f"[{colour}]│[/] ", + ) + yield _prefix_with_indent( + self.context, + console, + prefix=f"[{colour}]╰─>[/] ", + indent=f"[{colour}] [/] ", + ) + else: + yield _prefix_with_indent( + self.message, + console, + prefix="[red]×[/] ", + indent=" ", + ) + else: + yield self.message + if self.context is not None: + yield "" + yield self.context + + if self.note_stmt is not None or self.hint_stmt is not None: + yield "" + + if self.note_stmt is not None: + yield _prefix_with_indent( + self.note_stmt, + console, + prefix="[magenta bold]note[/]: ", + indent=" ", + ) + if self.hint_stmt is not None: + yield _prefix_with_indent( + self.hint_stmt, + console, + prefix="[cyan bold]hint[/]: ", + indent=" ", + ) + + if self.link is not None: + yield "" + yield f"Link: {self.link}" + + +# +# Actual Errors +# +class ConfigurationError(PipError): + """General exception in configuration""" + + +class InstallationError(PipError): + """General exception during installation""" + + +class UninstallationError(PipError): + """General exception during uninstallation""" + + +class MissingPyProjectBuildRequires(DiagnosticPipError): + """Raised when pyproject.toml has `build-system`, but no `build-system.requires`.""" + + reference = "missing-pyproject-build-system-requires" + + def __init__(self, *, package: str) -> None: + super().__init__( + message=f"Can not process {escape(package)}", + context=Text( + "This package has an invalid pyproject.toml file.\n" + "The [build-system] table is missing the mandatory `requires` key." + ), + note_stmt="This is an issue with the package mentioned above, not pip.", + hint_stmt=Text("See PEP 518 for the detailed specification."), + ) + + +class InvalidPyProjectBuildRequires(DiagnosticPipError): + """Raised when pyproject.toml an invalid `build-system.requires`.""" + + reference = "invalid-pyproject-build-system-requires" + + def __init__(self, *, package: str, reason: str) -> None: + super().__init__( + message=f"Can not process {escape(package)}", + context=Text( + "This package has an invalid `build-system.requires` key in " + f"pyproject.toml.\n{reason}" + ), + note_stmt="This is an issue with the package mentioned above, not pip.", + hint_stmt=Text("See PEP 518 for the detailed specification."), + ) + + +class NoneMetadataError(PipError): + """Raised when accessing a Distribution's "METADATA" or "PKG-INFO". + + This signifies an inconsistency, when the Distribution claims to have + the metadata file (if not, raise ``FileNotFoundError`` instead), but is + not actually able to produce its content. This may be due to permission + errors. + """ + + def __init__( + self, + dist: "BaseDistribution", + metadata_name: str, + ) -> None: + """ + :param dist: A Distribution object. + :param metadata_name: The name of the metadata being accessed + (can be "METADATA" or "PKG-INFO"). + """ + self.dist = dist + self.metadata_name = metadata_name + + def __str__(self) -> str: + # Use `dist` in the error message because its stringification + # includes more information, like the version and location. + return f"None {self.metadata_name} metadata found for distribution: {self.dist}" + + +class UserInstallationInvalid(InstallationError): + """A --user install is requested on an environment without user site.""" + + def __str__(self) -> str: + return "User base directory is not specified" + + +class InvalidSchemeCombination(InstallationError): + def __str__(self) -> str: + before = ", ".join(str(a) for a in self.args[:-1]) + return f"Cannot set {before} and {self.args[-1]} together" + + +class DistributionNotFound(InstallationError): + """Raised when a distribution cannot be found to satisfy a requirement""" + + +class RequirementsFileParseError(InstallationError): + """Raised when a general error occurs parsing a requirements file line.""" + + +class BestVersionAlreadyInstalled(PipError): + """Raised when the most up-to-date version of a package is already + installed.""" + + +class BadCommand(PipError): + """Raised when virtualenv or a command is not found""" + + +class CommandError(PipError): + """Raised when there is an error in command-line arguments""" + + +class PreviousBuildDirError(PipError): + """Raised when there's a previous conflicting build directory""" + + +class NetworkConnectionError(PipError): + """HTTP connection error""" + + def __init__( + self, + error_msg: str, + response: Optional[Response] = None, + request: Optional[Request] = None, + ) -> None: + """ + Initialize NetworkConnectionError with `request` and `response` + objects. + """ + self.response = response + self.request = request + self.error_msg = error_msg + if ( + self.response is not None + and not self.request + and hasattr(response, "request") + ): + self.request = self.response.request + super().__init__(error_msg, response, request) + + def __str__(self) -> str: + return str(self.error_msg) + + +class InvalidWheelFilename(InstallationError): + """Invalid wheel filename.""" + + +class UnsupportedWheel(InstallationError): + """Unsupported wheel.""" + + +class InvalidWheel(InstallationError): + """Invalid (e.g. corrupt) wheel.""" + + def __init__(self, location: str, name: str): + self.location = location + self.name = name + + def __str__(self) -> str: + return f"Wheel '{self.name}' located at {self.location} is invalid." + + +class MetadataInconsistent(InstallationError): + """Built metadata contains inconsistent information. + + This is raised when the metadata contains values (e.g. name and version) + that do not match the information previously obtained from sdist filename, + user-supplied ``#egg=`` value, or an install requirement name. + """ + + def __init__( + self, ireq: "InstallRequirement", field: str, f_val: str, m_val: str + ) -> None: + self.ireq = ireq + self.field = field + self.f_val = f_val + self.m_val = m_val + + def __str__(self) -> str: + return ( + f"Requested {self.ireq} has inconsistent {self.field}: " + f"expected {self.f_val!r}, but metadata has {self.m_val!r}" + ) + + +class InstallationSubprocessError(DiagnosticPipError, InstallationError): + """A subprocess call failed.""" + + reference = "subprocess-exited-with-error" + + def __init__( + self, + *, + command_description: str, + exit_code: int, + output_lines: Optional[List[str]], + ) -> None: + if output_lines is None: + output_prompt = Text("See above for output.") + else: + output_prompt = ( + Text.from_markup(f"[red][{len(output_lines)} lines of output][/]\n") + + Text("".join(output_lines)) + + Text.from_markup(R"[red]\[end of output][/]") + ) + + super().__init__( + message=( + f"[green]{escape(command_description)}[/] did not run successfully.\n" + f"exit code: {exit_code}" + ), + context=output_prompt, + hint_stmt=None, + note_stmt=( + "This error originates from a subprocess, and is likely not a " + "problem with pip." + ), + ) + + self.command_description = command_description + self.exit_code = exit_code + + def __str__(self) -> str: + return f"{self.command_description} exited with {self.exit_code}" + + +class MetadataGenerationFailed(InstallationSubprocessError, InstallationError): + reference = "metadata-generation-failed" + + def __init__( + self, + *, + package_details: str, + ) -> None: + super(InstallationSubprocessError, self).__init__( + message="Encountered error while generating package metadata.", + context=escape(package_details), + hint_stmt="See above for details.", + note_stmt="This is an issue with the package mentioned above, not pip.", + ) + + def __str__(self) -> str: + return "metadata generation failed" + + +class HashErrors(InstallationError): + """Multiple HashError instances rolled into one for reporting""" + + def __init__(self) -> None: + self.errors: List["HashError"] = [] + + def append(self, error: "HashError") -> None: + self.errors.append(error) + + def __str__(self) -> str: + lines = [] + self.errors.sort(key=lambda e: e.order) + for cls, errors_of_cls in groupby(self.errors, lambda e: e.__class__): + lines.append(cls.head) + lines.extend(e.body() for e in errors_of_cls) + if lines: + return "\n".join(lines) + return "" + + def __bool__(self) -> bool: + return bool(self.errors) + + +class HashError(InstallationError): + """ + A failure to verify a package against known-good hashes + + :cvar order: An int sorting hash exception classes by difficulty of + recovery (lower being harder), so the user doesn't bother fretting + about unpinned packages when he has deeper issues, like VCS + dependencies, to deal with. Also keeps error reports in a + deterministic order. + :cvar head: A section heading for display above potentially many + exceptions of this kind + :ivar req: The InstallRequirement that triggered this error. This is + pasted on after the exception is instantiated, because it's not + typically available earlier. + + """ + + req: Optional["InstallRequirement"] = None + head = "" + order: int = -1 + + def body(self) -> str: + """Return a summary of me for display under the heading. + + This default implementation simply prints a description of the + triggering requirement. + + :param req: The InstallRequirement that provoked this error, with + its link already populated by the resolver's _populate_link(). + + """ + return f" {self._requirement_name()}" + + def __str__(self) -> str: + return f"{self.head}\n{self.body()}" + + def _requirement_name(self) -> str: + """Return a description of the requirement that triggered me. + + This default implementation returns long description of the req, with + line numbers + + """ + return str(self.req) if self.req else "unknown package" + + +class VcsHashUnsupported(HashError): + """A hash was provided for a version-control-system-based requirement, but + we don't have a method for hashing those.""" + + order = 0 + head = ( + "Can't verify hashes for these requirements because we don't " + "have a way to hash version control repositories:" + ) + + +class DirectoryUrlHashUnsupported(HashError): + """A hash was provided for a version-control-system-based requirement, but + we don't have a method for hashing those.""" + + order = 1 + head = ( + "Can't verify hashes for these file:// requirements because they " + "point to directories:" + ) + + +class HashMissing(HashError): + """A hash was needed for a requirement but is absent.""" + + order = 2 + head = ( + "Hashes are required in --require-hashes mode, but they are " + "missing from some requirements. Here is a list of those " + "requirements along with the hashes their downloaded archives " + "actually had. Add lines like these to your requirements files to " + "prevent tampering. (If you did not enable --require-hashes " + "manually, note that it turns on automatically when any package " + "has a hash.)" + ) + + def __init__(self, gotten_hash: str) -> None: + """ + :param gotten_hash: The hash of the (possibly malicious) archive we + just downloaded + """ + self.gotten_hash = gotten_hash + + def body(self) -> str: + # Dodge circular import. + from pip._internal.utils.hashes import FAVORITE_HASH + + package = None + if self.req: + # In the case of URL-based requirements, display the original URL + # seen in the requirements file rather than the package name, + # so the output can be directly copied into the requirements file. + package = ( + self.req.original_link + if self.req.is_direct + # In case someone feeds something downright stupid + # to InstallRequirement's constructor. + else getattr(self.req, "req", None) + ) + return " {} --hash={}:{}".format( + package or "unknown package", FAVORITE_HASH, self.gotten_hash + ) + + +class HashUnpinned(HashError): + """A requirement had a hash specified but was not pinned to a specific + version.""" + + order = 3 + head = ( + "In --require-hashes mode, all requirements must have their " + "versions pinned with ==. These do not:" + ) + + +class HashMismatch(HashError): + """ + Distribution file hash values don't match. + + :ivar package_name: The name of the package that triggered the hash + mismatch. Feel free to write to this after the exception is raise to + improve its error message. + + """ + + order = 4 + head = ( + "THESE PACKAGES DO NOT MATCH THE HASHES FROM THE REQUIREMENTS " + "FILE. If you have updated the package versions, please update " + "the hashes. Otherwise, examine the package contents carefully; " + "someone may have tampered with them." + ) + + def __init__(self, allowed: Dict[str, List[str]], gots: Dict[str, "_Hash"]) -> None: + """ + :param allowed: A dict of algorithm names pointing to lists of allowed + hex digests + :param gots: A dict of algorithm names pointing to hashes we + actually got from the files under suspicion + """ + self.allowed = allowed + self.gots = gots + + def body(self) -> str: + return f" {self._requirement_name()}:\n{self._hash_comparison()}" + + def _hash_comparison(self) -> str: + """ + Return a comparison of actual and expected hash values. + + Example:: + + Expected sha256 abcdeabcdeabcdeabcdeabcdeabcdeabcdeabcdeabcde + or 123451234512345123451234512345123451234512345 + Got bcdefbcdefbcdefbcdefbcdefbcdefbcdefbcdefbcdef + + """ + + def hash_then_or(hash_name: str) -> "chain[str]": + # For now, all the decent hashes have 6-char names, so we can get + # away with hard-coding space literals. + return chain([hash_name], repeat(" or")) + + lines: List[str] = [] + for hash_name, expecteds in self.allowed.items(): + prefix = hash_then_or(hash_name) + lines.extend((f" Expected {next(prefix)} {e}") for e in expecteds) + lines.append( + f" Got {self.gots[hash_name].hexdigest()}\n" + ) + return "\n".join(lines) + + +class UnsupportedPythonVersion(InstallationError): + """Unsupported python version according to Requires-Python package + metadata.""" + + +class ConfigurationFileCouldNotBeLoaded(ConfigurationError): + """When there are errors while loading a configuration file""" + + def __init__( + self, + reason: str = "could not be loaded", + fname: Optional[str] = None, + error: Optional[configparser.Error] = None, + ) -> None: + super().__init__(error) + self.reason = reason + self.fname = fname + self.error = error + + def __str__(self) -> str: + if self.fname is not None: + message_part = f" in {self.fname}." + else: + assert self.error is not None + message_part = f".\n{self.error}\n" + return f"Configuration file {self.reason}{message_part}" + + +_DEFAULT_EXTERNALLY_MANAGED_ERROR = f"""\ +The Python environment under {sys.prefix} is managed externally, and may not be +manipulated by the user. Please use specific tooling from the distributor of +the Python installation to interact with this environment instead. +""" + + +class ExternallyManagedEnvironment(DiagnosticPipError): + """The current environment is externally managed. + + This is raised when the current environment is externally managed, as + defined by `PEP 668`_. The ``EXTERNALLY-MANAGED`` configuration is checked + and displayed when the error is bubbled up to the user. + + :param error: The error message read from ``EXTERNALLY-MANAGED``. + """ + + reference = "externally-managed-environment" + + def __init__(self, error: Optional[str]) -> None: + if error is None: + context = Text(_DEFAULT_EXTERNALLY_MANAGED_ERROR) + else: + context = Text(error) + super().__init__( + message="This environment is externally managed", + context=context, + note_stmt=( + "If you believe this is a mistake, please contact your " + "Python installation or OS distribution provider. " + "You can override this, at the risk of breaking your Python " + "installation or OS, by passing --break-system-packages." + ), + hint_stmt=Text("See PEP 668 for the detailed specification."), + ) + + @staticmethod + def _iter_externally_managed_error_keys() -> Iterator[str]: + # LC_MESSAGES is in POSIX, but not the C standard. The most common + # platform that does not implement this category is Windows, where + # using other categories for console message localization is equally + # unreliable, so we fall back to the locale-less vendor message. This + # can always be re-evaluated when a vendor proposes a new alternative. + try: + category = locale.LC_MESSAGES + except AttributeError: + lang: Optional[str] = None + else: + lang, _ = locale.getlocale(category) + if lang is not None: + yield f"Error-{lang}" + for sep in ("-", "_"): + before, found, _ = lang.partition(sep) + if not found: + continue + yield f"Error-{before}" + yield "Error" + + @classmethod + def from_config( + cls, + config: Union[pathlib.Path, str], + ) -> "ExternallyManagedEnvironment": + parser = configparser.ConfigParser(interpolation=None) + try: + parser.read(config, encoding="utf-8") + section = parser["externally-managed"] + for key in cls._iter_externally_managed_error_keys(): + with contextlib.suppress(KeyError): + return cls(section[key]) + except KeyError: + pass + except (OSError, UnicodeDecodeError, configparser.ParsingError): + from pip._internal.utils._log import VERBOSE + + exc_info = logger.isEnabledFor(VERBOSE) + logger.warning("Failed to read %s", config, exc_info=exc_info) + return cls(None) diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/index/__init__.py b/.venv/lib/python3.11/site-packages/pip/_internal/index/__init__.py new file mode 100644 index 0000000..7a17b7b --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_internal/index/__init__.py @@ -0,0 +1,2 @@ +"""Index interaction code +""" diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/index/__pycache__/__init__.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_internal/index/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0efc7d421055b5f4c020617c49f8c3805c82abb3 GIT binary patch literal 288 zcmY*UF-`+95VS)CQKZy}2Bl5GtpY7d4GoHf5E6}L?1fwK*_Lfi91q|NH1vos(ei$K3{A*7L?UWFoY*p^puW%JHM6fbRLnKqzxI03^R>HDVwG7QNxCc}z!rApP z7?i;Z-=*4R**H+OXj?FJ3mfC4n$ICp!Xq!$qrArmo;--(L{=K05)eclP!gi@-FkG| eIQ?XB5q5K|@>@K})bDW4`vK>}p8caR%!_Ja>d9O#mr17u)V&dAGiudoJd^Y>g(`dM z@$`>=zQ5fCupsGkrkQrR{O%9?d+hJ`+u!&7{p}w#H~Tpp?{kMP{M%+qS0 z$G_p^xc4}Ti*gb#IZ}L-XIDqm$*!)bi(TDOH@kYG9(MIcz3eJP1$OmC{p{MruFg~- z-5hP^sZCd^B^`_gS=yayO}9nc((TdqbSN51cSJkVozc#8SF|hL9qmr{M0?V`(cW}l zv@hKs?Pqm7se$x{=mwVdrZ%Prqk}9hq{Q^5=%)1M=w|lYml{fMiEd$Oe`;%bTXY*s zH>HNtBhe9-4y3~A(dZ~kH>b9z$D(5_-I5wlN1_py4yGp3JEA*Sx;3>ky(_v4={Bi7 zwL85hx+lFix;Onq^a-Am+Z39E5XSUm^hut}IOM0IPdYf+dvTvN&GO_2JjZ>6f8&Vm zm%HQx@_`vguXT%y9+W!d15&5lBOj>UopDKBZ@Z$09NckE>VBJ(dgP}+z`Obg|7Kgy zNWJo))G0Yowhv_wv$FjtJFu$kv+Nlg zdvYzs=0=cqz3q;kLK_Fz{O*xoKwqE3{Ora3Y1S^AN4ZA|*Xknw35@PV)~_eguczeh zhJKx9dHawz*)W=yB*z&pd@%o_|Lg@>OvjTMadu9b&8o7Poe^^vlB$@_N^>b$L@JjR z$|k zIav)i>CIisM^Czc|>%vq#m5QHB$-3)EGLh4TlQ~&2exFLJIlbkDxg7m` zAwD~s%$(Q#)A6({ot>LS4dKPvTr!)9r*z?r{H-}TlaO_{k>!3RgB(0qP$);usg!a(={#Uu4EMqGLyj|(TJ7fqOqey(-}FgBrcpu zWM^gk^q)@7o{?46cwDOzPpWckCac8MTs${Nj}0c(7}ZE#Mn*Cvf5__{iY&zwxmbKI zcOf>TWYe)ZC558S%L(=G33bCxy?rX4k&;q8C#%O$;&lAHtox}CXV`4(fpc@olw{65 z>I$coY%YseqC3%;?os62oRUdY2?1Jlo)Q zp{pHT3RTijUuK@SlOUykp37O}9|arpYfD<?IMC zD!w{(MpP3QMD$hs6U;}U`5jcmlb(f z6*F0^eUyx_2J(*Wlha|hGJsC%Uh_G+JC(g6E4m*qRLQAVlDP}IGbLxj4rMcy^O)sm zx428kGE@)L!WFZMvmbuhkBP@puaE5 zO~Iu-kI^)jAYdIHGx2x~iSJWj$abcTAGigffKYrxW!n(uF(p`|$;U@9|ji z)m6S~CD-MkuzAe$^A0=V`LsC6^}jTGyh`i&LR@f%!%MG9ak2nC_3o41$kz zAQt=9Ts&pwIMtlOdZIU*{Y=QIR4n!(uRK9rpqYEd=x+o`g}}3v@iGAVX8lzhPItI) zro!QJ*U2uQxY*?%1X$PELx{K=1l>mEs&Dv#!*=FEt42&f6JhM{MVs> z3yyim+B8sdHqbzaP5a;u0fnCN_+p1rmrC z-$=U$| ziiCG05@fPDG8WHQ zPE2;V&uCEk&Rtr75cvvtq z(&wGiC1S7MN4lL|>QgoPeRo{(B}_bdtix`3Z5a6HGB7+L_SQhLxB!=bRi z1SsWsx)G*FcrtP>l}+fb**JtOHw1U(sxHhZ@$+e7{w|_ws(_NfPj(nc+EI_B7Uff3 zM>)b6^;-ZCc3Qdd-M3HOA3J<+?C>W;rLkk$*s+o;ym)Ns*z%E;t%aVlx4GE4t>~rm zK}*-Qi#IM7g`S5^?cY6c{lJRz*4d>4rKVk4)2_uM4_qC~XG^X=&DB?Q^?mBW5zthlH0s}#bZs=GtHw= zWi{3vx=Ie)x^KY9#`b`3b=X*I2l(bJ)IF<~bDoo2|Fl6Jkld2zeaCIDz4Zl0E>x=r zu?w^GkwxS)H?uNuzFxzm6AnI01DS zJU3%9U6B~BwK7FgA;jZH&l;4%(9>*`!eq&3Nec&eQlSW|hFY%3vIyMDsgs7vvoj)| zWZDd=L1GGOk}9fm>TEKR%+9H)t70m7Nv3|73h0=q))B9nq@seQXBn*kLP29%OTs`e zNSP=7$&evvIAcWe;+M1F{}NbxDjS!epNny;tyEk&FN>t_M#Ps%wlG8s8#yyMuOU<< z;u#Vu&dH)AL#s(AGqO}AWa!*lv@Dsk$f4CiOU$7z8q{l7L_D0xL7c^GKqQA2nKmbz z83wH0QO98ANXX2lfa%VNphjd05NAMXAy}zKd%GjzFO9!bx$gL{ya1!w>)k00z*<3EkhztxUah_2yNr zJ6!UPYTi-kweH;ygn^Yaw}y+tu9C1z6Lul-smuSJQ{O&SY}@?vEl=GIm9`wzwj33j43`FAGf%yZYWszMF(V*VbO)ECA82y9J_McS~i2+Ze8F?`rc`I09}i z(EW((4M6Y%SUmFi9?soa$4kJb+}(BD#Oy~|7-XF+37a%wQ&|Yy2$;Iw##_B5VYepi ze<z(JBD?0TAEbhcTl&NRW=CoROf{!us;!+E$^pML4@aMph$< zr#EgK^U$jfAPKfn$Kb47FrNk;iL@ytXtNYGuz@pRCrl7Kc*LR+q@V!FF2pYrox2Lb zE0JZCD48KtXW9jsieNM|RV6jTR%qU`B{023_mXKwm2pM+81RXTa;FJ3@e|hq$o+0{+MdK0kFtD^tMzuw_993 zRCuiz8pHV@(01d6`+-gO0-H*KAuTYp#Fqz#3e(!a?j?RHQi49;9(r&4yW3ZirS=i6 zePqd7Zo&fOed2>q*YcHj4%|FY3=A@hj3J8PLDj<&nji1NtvcPo2m6Z)ZWxd3lAN*| z=5sH8dyw|dI3xjSfz7{P?_l(R46|gHB(lH+G@=7~;3OHN%zLI)#!-DX$5EQCJ<`&! z_V}89t~#FMNUVoVrONurrlL?sL5|uJM22E1SV8GEsGxvK3RxdIl)bpHv`X!p`kP@u z*|1h;t7eo>P+TR8A2gm|NDFQ&3hWGSD|hrPxo-HD@Wv&$0MUKj(alXS6)E|{D(?p|W|tZ8xS{v>7s=1DSuyGRRX6TwI(tdwkKNC>W< z8Ql|$$=`~_^8M>f4rTs?Dv_QD15>bfW$W*E6r>;Y{jjeT9Mghh#o*~X9Uu38yy26r zKN~#Z3b}pF7ivrnVU2BB;uR(!s^JxeYV8A8jhp|5ijxWgTosy@ zoNQ3jVNc_$A#H$39m*o58s5WObdSJa<6k90UjH6=cVOjLXf6YHgu5LdgEAwzE-JS10++A@!NrLO+vSoZS|Q0^nE zFn8TiZ}YC%8?QB}dXh)-e% z?m|{ZC?uAj@0V!>eN!YS7`t7^JH|vt?nzo_Orlijd!HKF2mo{ar=W<> z;_of3d$iQCUF+Cxl6zsySnR}b6(Wpl4^~0W_psLM?e0nshU@rBb_hE0QI+SzQf?6@ zv}R0|eM;=VtO;@|S?U~7IpsG1AfU0{(j+P00Wd_gMRTfx=I~?Il+yCvKj&_STKJ zioymqukgnB*a`)oazO__;to%xhn@>WD59 z-aYPsNc23+MD}%8sIDlKsUEB8*4o;Q)L^($Ua2>^U93{*dOwbRT{8a=^>Ni9InFnD zdf;~-T5#sb25%l0t46JPC!Rq|fE{+xaltk3TI6pG&bwaa-s5@h#umv5{GqjC9=5ue zks6*YxRKXnm77KA6b$d~LcqFHf2|*7q0U%dD>Lu0kKXt+FWh$94RGc>3{>Y~6U{@|lm7;z_Dq@pKdRYbz(yEP z5KUFZFvnd@$|*@q!r%sR`T|T|athG~8Tze?#H&O@;xny5%;ciG$+n?R=iPI;nenH{ z|3Vyrf;x2JTpR%*NQK)BkMA}NgZZXl>45W!!VBV(3jNbiqL>lHz;qvr4530yl-FCx z$VFXXV}WzoQZ9AZj4VsKN0OoY%E~)f>ettSyh(mLGRui8Bv_(loIujBBdO4^ZH5@vm;eGW$FH!95n>y85)v zZTCCJ?sblpIwM+Vq|Oso+;ptuJ+66=Gand;!C@^pyySuk_TGtiPprIF zI9KWjYaNI~aQV6!SUU0`)P3_%VaqMoZJ`v}sfBhf9f1b7G+%D*DYthmJ!kxtg%)_# zn)_Fdynmw9yj5%7x_Au5ZY&go!v*i+i83rb&wu;*W!KHX{nnv-twV(qrPgt+b-d(? zXs$@n6?y1yxiPXhRStIE__bniYhehL+IwzB$j%aCV9A4?YeBKlb!X@kp%^?_3ZB%0 zC((a|L>wpwI?65WOMc_8;}1Ai&XG+^Ho|E#()eBm`niq&U#6_YKC#)#i|p?2g%sT z^$f!D60l-c$~_`}HkU(PxCrIVdnlr1u*gmWiK+_<4bakK%g<10>-8USplV4wcd{f% zhhd3kwC_zcRBvAJB0eXlKsD`X7y-N6O9NuA_udKz@UX3`;-()SuDh?|rIf&h`d4<}9IyE3m!E5Ct29w6z-`!MRBYk=EtMeM zqbBOWDDRG}fb`+AE?7<7EOF-XZS>b32nM60gN%*{1Vi|j83+bHA?|rW>%6i{7HqbN zx@hJ)I>-Xan4!}553ASEx=ZqbZu(guS`+AwU->O`IX}a&i|B#Dfk7Ui(_WJ0SwqD% z{AtAS#Sf048Ju?rPn@=yQmPC4 zGO`-=$q#U^ruMHb_^viIG={TD5YlSlZ0G4$jRM1T6LwCM@4ppv^s=nvVq`Q|8NBG9oFR3sJFEf)>cOhxtDGQq!iAjz<`eL4 zV1~rv)A=~w2b0_ca#&oz8)C0Q_mE{EBSG>*tTk+$?8Oi^Dt`z73oE@#df`O04f!s3 z0jn4$4i^22iOg?ocvlViqx8x$XaXj>rk3Sx*AFfoTsiyxH;Wr~l|$X{9enp-p|cbk z)afz}(R?gs|%1qOfLRe0qGO+RcZ z1;(_%SkXFBrKM*nYEYZ%tm64qY%$otJP(y3_zjex7$b@V^BjybO<+e#u{umYV-3=3CO+7YqaOzHDM*2nAczqifxc2#xr zMVBvMe{1Qja`(V;fc|I_Ha>(Pn`4856V=W%ls};Ek=fEfH)a|jRmxx-KcW^qh{FO!l{3aU%)NvkMwncv~!{2ce^K7rpPTdSvbNj>w^}Ld%Uo_!r^i& zcjxHcp}TMX%=zPm;^Zl9&kNebG|MTTd5v8gL95H%u_6`r-U{8ia7VqJE{6AOLkF~t z2T8K-_+;c~yMF?^1Cn0@unA+MQ+^jCqagS==~ym``wKfF_VC~;{?i-*{~e2g98%U% z6BQO54&;)96rt-_SG6562KHgiS0gXZ!X2>hf0y4I$lW>TO zUm=YEX3=EFN0xToo|~W5tJXJ=stRR+mV2@C-YD^ zC}^+f+i_>hT~EpNw8mrshyzv(;aO%Ov#}Mjr!z7*kA&Suy}rDJaGg2}9m-Y7SbZIv zHyDx9bv6^Sd837os;w~Q!aTE>7`u)EYL-Obn6s5hJ%+@&8TU|@g>o`gglgF*F@zxa zOS0Yisr(s=P0<7%M*{XQ57#<+YeXBJECu&#!TpOT9yE2Ag;q`IG2qHZO&BS+^+J!k zajM)uUTN|KJdZd4xcCEbw|m?kgZ`jVcF?sttvYDM*D*`24nvllHQA+X!N_aJLN)TeZ$QpBqBaq^iNAT5wh1fNc_`0sO8l?HQV@?)ix+(z&tPq|ByCrR@)%`tJcQk zf*>_7_~v~%V#wx!z5v@lvM`@xE6LZ;Utj%pp?}ju^NVBumr z-5}v0BA!K|YzEPZ=3L-O^@U(~#-@&65YtCSV%Y6|@rDY+$X$*4%kRO{(L9;A;v%-6 z!JC<;m{X{-h`>D03}C975);t&k~6ehL!J~dwIr|P+fmTmB`M0Zm2y(V29G2*Xd>Jy z7Zwe(wc7{*CuxNVKf3n{w!Bg3&S|>!5&(-7XNF|mkyVvf=$1RF;^itwC>?->YZnED zGZ7qiZ^_t)=f!;%E=cke3;1Kq-S7gQq=SSoe&e~^CKqEhv-8Bey+7+DTm79w)f}n5AL}) zxaZE9(%?RAa3A8=5ek2JDYyL63cs=w!SKsn_q^RjZ}<0~egF9Hz3|&F{Nc9Sk^7@Z z?~NY)L@JFwuZ=!m8aSm5oI(*;m0CmJoxeW6GF1wSFoeS@|JtFe*@P8#m>pQQzhXUO?aj#JX3LPbicxr4Q=X9cQLrH z6x^o;q0)ao$-y|k=k5{hz?ow3Y$J(bOH?*91XXNHcN$7*G zg7skLM^AjbzbHIi5}wwCr;%tljgEx0CKgllESlxr7Gy0Hw>@)rHvrC(a99%#7gwFt zHu|YHG(-y+UAR;Yw?)J)&WaQHr~}hvpmk}FdKT#LlVIDCC%B(HvGwGL^Dj2~2o4V) z3psxpYDW5}V(YQJ&Y$k3^j|t!k9Rx&vYVy1>^RZu{8?{1?*D9i=%my6SI*5y|J5)L zm_WPL1DM8+$Mm$C&*c@4qMz!$EHznN#uq6Lp!8Rka8L>6f^_MvQ^rntSu!?ntGa&% zm~VK^5WdHPGsudMO*D<#K1s2LW>1`255{7Qzp}tq>=54qfoK)x!w2@D z83kCVy=A&(43F;Glxt>v%6HkOvue5h9a??esKN{s8^XpODsu=xrqY zz!#~;GFd}iPq>VJGFVlnd(bY8^P%hqVYnj-Jq_(5t?E9m~zS-VgXI5vhFh)CVJJL z4-XqPPDNR(GP9$7$&cAW&geCg*Wod#X;$#hH$w}&&E?k+#A61@bdc`C!pfCC)JDjL zBeH`Dbt++vX@vXIci_C7!M9J8L-}F*LQlZ7n3HRfbk&0Yf>u5WyGHy&vF9YtJL=DS z$8RM{y}PvDUB<0?$cQYk?cbxCq5-=Gw0l5}s~V{}=$j~`({cP3DSHLX**zac=6Hfj*I>n$nJJ_x7g_g+?Sy;S}d z#qu3%&CEZeX&_4*2tW_ly;18LE_ROGdQ#gyRqC8t@?*P#)&#M@?Hed=fo~Dl2Z8qQ zp1OXj+`6sY8hTH7S1_jN?nPWnJtsB5){|Q6$wzKyGj`ViK-2*cxW0j<=OCzcZO}UL zl<`};mi(V~Z^kB{a`z@WI|sDRtrf4UhlIW!l8Af!O99A!eZ%FB{&Mfuird+TJOH%Y z=U<{mTQ^#vdA3!DaT!FF){Wh+S0h6;cQPZU>?OR3@^$WHHqZGU``p!}g1?~oBg+%Q z3R!H47TjJGwzHL@3l`6@8FC397`Z2suPb)vrFa=~iujc+0O#|_F z*lF=fHWxf- zUE=}W-*-U-a5Kj5w)J}*`)`4;YSq!$zWrⅈ?tg9yWWe%U;r!*Ra8@anCdGPMEe4 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 aUp-HQ`)kH>#zFnsQFEqE|La3Exc>uy#(Nb2 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/urls.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/urls.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e7e3b52b3feb76a2e8028a69ed11bcf1f7df31e6 GIT binary patch literal 2735 zcma(SOKclObavNX+q-K!X=o`l&_#tdE)bJcEl{CIG(jZ=r9gm+s8Y1`PU}tAyJlwW zl3*hXffTApm;tuPWQpn}AaBR8&gWGU84h)9S-ZbqdN%857QIEh<8jK^=@Z{EI{ z_nEKbaSg$^jwZ6dstEnYiQWirA-9(RxrS_HOD>x0uF{+&Xn9T%Ye=lJ8_ub7s)TIC z4!MzBbS?^b7{_cCt2p*R&oa6gvLhda<}^DhWHF#)KkgjQXp=i63hz3%Wz?DgaA?Ce|rG{96~CgqC{jH&7u;j z1Ml8pOSXJdM(7s&yTev?T(9r8-cvv~0lT$LfzzRxP3a`zUnks5N)Ey_?>a09yZ#kS zQWAmdMwA;fH{VacK{26e&tjJAI2K#X`4=7R;G&g&WigYrNbVKlFW?NL=@-w9r(J9j zZ$7`svOX+bNqV%1y<*yRE~LAHW20kZY3eZiWZueLwk~0s&O7<^yyG!U;11IT=D0Ks z7e`0)i$UTNX7fPI(@YlUFo}a_JU8fZ02S1ZXw^fN_bTtTlS9j_ttUQy_Ug0M+1evb zeYm9$*IsSu2iNq+R`ti4`jM7?q!BuD8#baKl($&6FC_fnA|!tSat$%Awlx;EFSovZ z`8^q5|3#NuyJwWpO|W)r+hRXeMl8CsWucersLs8+XV_AocBH3J-({o6Ly%bg-|A1M zvQ*+(EiYv?6ULak_1PCsOOU$|6mXSQvy*T_>et8 z7Si&Im1z=#Th_VOJo9-jkq3b@0Dn3Q zpn~pb$VjX_y`~>n)eqb_b^Y`gXFogp%~W%EtTjB=)W=);cxCDrZD8ezHSOV5?cv&$ z@73=TYa^4ZBa=T(HAkjfBhyXoOiMdcnS>OqoFNIY+m~ECkRrKOA@JA!qsIF~L=$I_ zEtk;evaQ@u`m6bUiS0_pg>Ah4ztZkJcvP0ka#;Z=m1LrpWIJ?OSRslXF3aA*-N{8% z8#H*!1<4+!1F|*j2>0)X-0%5a-fgFEeLG2e`}tauOA5E$Z=$%9g1_Bnijz(-$4ucyia)P`JTzL4mIfWP`y+_vvhnCf4^_SQ{2dQCgeenL;;ZF{7*6)e^ZDZyq+AwBd zfRiV5vvH8Tu+N(7S;Vk&@L+2fu%)$ literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0f47cbadac0085faf48642c75acf75feb7f160e1 GIT binary patch literal 4983 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/utils/_jaraco_text.py b/.venv/lib/python3.11/site-packages/pip/_internal/utils/_jaraco_text.py new file mode 100644 index 0000000..e06947c --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_internal/utils/_jaraco_text.py @@ -0,0 +1,109 @@ +"""Functions brought over from jaraco.text. + +These functions are not supposed to be used within `pip._internal`. These are +helper functions brought over from `jaraco.text` to enable vendoring newer +copies of `pkg_resources` without having to vendor `jaraco.text` and its entire +dependency cone; something that our vendoring setup is not currently capable of +handling. + +License reproduced from original source below: + +Copyright Jason R. Coombs + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to +deal in the Software without restriction, including without limitation the +rights to use, copy, modify, merge, publish, distribute, sublicense, and/or +sell copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS +IN THE SOFTWARE. +""" + +import functools +import itertools + + +def _nonblank(str): + return str and not str.startswith("#") + + +@functools.singledispatch +def yield_lines(iterable): + r""" + Yield valid lines of a string or iterable. + + >>> list(yield_lines('')) + [] + >>> list(yield_lines(['foo', 'bar'])) + ['foo', 'bar'] + >>> list(yield_lines('foo\nbar')) + ['foo', 'bar'] + >>> list(yield_lines('\nfoo\n#bar\nbaz #comment')) + ['foo', 'baz #comment'] + >>> list(yield_lines(['foo\nbar', 'baz', 'bing\n\n\n'])) + ['foo', 'bar', 'baz', 'bing'] + """ + return itertools.chain.from_iterable(map(yield_lines, iterable)) + + +@yield_lines.register(str) +def _(text): + return filter(_nonblank, map(str.strip, text.splitlines())) + + +def drop_comment(line): + """ + Drop comments. + + >>> drop_comment('foo # bar') + 'foo' + + A hash without a space may be in a URL. + + >>> drop_comment('http://example.com/foo#bar') + 'http://example.com/foo#bar' + """ + return line.partition(" #")[0] + + +def join_continuation(lines): + r""" + Join lines continued by a trailing backslash. + + >>> list(join_continuation(['foo \\', 'bar', 'baz'])) + ['foobar', 'baz'] + >>> list(join_continuation(['foo \\', 'bar', 'baz'])) + ['foobar', 'baz'] + >>> list(join_continuation(['foo \\', 'bar \\', 'baz'])) + ['foobarbaz'] + + Not sure why, but... + The character preceeding the backslash is also elided. + + >>> list(join_continuation(['goo\\', 'dly'])) + ['godly'] + + A terrible idea, but... + If no line is available to continue, suppress the lines. + + >>> list(join_continuation(['foo', 'bar\\', 'baz\\'])) + ['foo'] + """ + lines = iter(lines) + for item in lines: + while item.endswith("\\"): + try: + item = item[:-2].strip() + next(lines) + except StopIteration: + return + yield item diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/utils/_log.py b/.venv/lib/python3.11/site-packages/pip/_internal/utils/_log.py new file mode 100644 index 0000000..92c4c6a --- /dev/null +++ b/.venv/lib/python3.11/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/.venv/lib/python3.11/site-packages/pip/_internal/utils/appdirs.py b/.venv/lib/python3.11/site-packages/pip/_internal/utils/appdirs.py new file mode 100644 index 0000000..16933bf --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_internal/utils/appdirs.py @@ -0,0 +1,52 @@ +""" +This code wraps the vendored appdirs module to so the return values are +compatible for the current pip code base. + +The intention is to rewrite current usages gradually, keeping the tests pass, +and eventually drop this after all usages are changed. +""" + +import os +import sys +from typing import List + +from pip._vendor import platformdirs as _appdirs + + +def user_cache_dir(appname: str) -> str: + return _appdirs.user_cache_dir(appname, appauthor=False) + + +def _macos_user_config_dir(appname: str, roaming: bool = True) -> str: + # Use ~/Application Support/pip, if the directory exists. + path = _appdirs.user_data_dir(appname, appauthor=False, roaming=roaming) + if os.path.isdir(path): + return path + + # Use a Linux-like ~/.config/pip, by default. + linux_like_path = "~/.config/" + if appname: + linux_like_path = os.path.join(linux_like_path, appname) + + return os.path.expanduser(linux_like_path) + + +def user_config_dir(appname: str, roaming: bool = True) -> str: + if sys.platform == "darwin": + return _macos_user_config_dir(appname, roaming) + + return _appdirs.user_config_dir(appname, appauthor=False, roaming=roaming) + + +# for the discussion regarding site_config_dir locations +# see +def site_config_dirs(appname: str) -> List[str]: + if sys.platform == "darwin": + return [_appdirs.site_data_dir(appname, appauthor=False, multipath=True)] + + dirval = _appdirs.site_config_dir(appname, appauthor=False, multipath=True) + if sys.platform == "win32": + return [dirval] + + # Unix-y system. Look in /etc as well. + return dirval.split(os.pathsep) + ["/etc"] diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/utils/compat.py b/.venv/lib/python3.11/site-packages/pip/_internal/utils/compat.py new file mode 100644 index 0000000..3f4d300 --- /dev/null +++ b/.venv/lib/python3.11/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/.venv/lib/python3.11/site-packages/pip/_internal/utils/compatibility_tags.py b/.venv/lib/python3.11/site-packages/pip/_internal/utils/compatibility_tags.py new file mode 100644 index 0000000..b6ed9a7 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_internal/utils/compatibility_tags.py @@ -0,0 +1,165 @@ +"""Generate and work with PEP 425 Compatibility Tags. +""" + +import re +from typing import List, Optional, Tuple + +from pip._vendor.packaging.tags import ( + PythonVersion, + Tag, + compatible_tags, + cpython_tags, + generic_tags, + interpreter_name, + interpreter_version, + mac_platforms, +) + +_osx_arch_pat = re.compile(r"(.+)_(\d+)_(\d+)_(.+)") + + +def version_info_to_nodot(version_info: Tuple[int, ...]) -> str: + # Only use up to the first two numbers. + return "".join(map(str, version_info[:2])) + + +def _mac_platforms(arch: str) -> List[str]: + match = _osx_arch_pat.match(arch) + if match: + name, major, minor, actual_arch = match.groups() + mac_version = (int(major), int(minor)) + arches = [ + # Since we have always only checked that the platform starts + # with "macosx", for backwards-compatibility we extract the + # actual prefix provided by the user in case they provided + # something like "macosxcustom_". It may be good to remove + # this as undocumented or deprecate it in the future. + "{}_{}".format(name, arch[len("macosx_") :]) + for arch in mac_platforms(mac_version, actual_arch) + ] + else: + # arch pattern didn't match (?!) + arches = [arch] + return arches + + +def _custom_manylinux_platforms(arch: str) -> List[str]: + arches = [arch] + arch_prefix, arch_sep, arch_suffix = arch.partition("_") + if arch_prefix == "manylinux2014": + # manylinux1/manylinux2010 wheels run on most manylinux2014 systems + # with the exception of wheels depending on ncurses. PEP 599 states + # manylinux1/manylinux2010 wheels should be considered + # manylinux2014 wheels: + # https://www.python.org/dev/peps/pep-0599/#backwards-compatibility-with-manylinux2010-wheels + if arch_suffix in {"i686", "x86_64"}: + arches.append("manylinux2010" + arch_sep + arch_suffix) + arches.append("manylinux1" + arch_sep + arch_suffix) + elif arch_prefix == "manylinux2010": + # manylinux1 wheels run on most manylinux2010 systems with the + # exception of wheels depending on ncurses. PEP 571 states + # manylinux1 wheels should be considered manylinux2010 wheels: + # https://www.python.org/dev/peps/pep-0571/#backwards-compatibility-with-manylinux1-wheels + arches.append("manylinux1" + arch_sep + arch_suffix) + return arches + + +def _get_custom_platforms(arch: str) -> List[str]: + arch_prefix, arch_sep, arch_suffix = arch.partition("_") + if arch.startswith("macosx"): + arches = _mac_platforms(arch) + elif arch_prefix in ["manylinux2014", "manylinux2010"]: + arches = _custom_manylinux_platforms(arch) + else: + arches = [arch] + return arches + + +def _expand_allowed_platforms(platforms: Optional[List[str]]) -> Optional[List[str]]: + if not platforms: + return None + + seen = set() + result = [] + + for p in platforms: + if p in seen: + continue + additions = [c for c in _get_custom_platforms(p) if c not in seen] + seen.update(additions) + result.extend(additions) + + return result + + +def _get_python_version(version: str) -> PythonVersion: + if len(version) > 1: + return int(version[0]), int(version[1:]) + else: + return (int(version[0]),) + + +def _get_custom_interpreter( + implementation: Optional[str] = None, version: Optional[str] = None +) -> str: + if implementation is None: + implementation = interpreter_name() + if version is None: + version = interpreter_version() + return f"{implementation}{version}" + + +def get_supported( + version: Optional[str] = None, + platforms: Optional[List[str]] = None, + impl: Optional[str] = None, + abis: Optional[List[str]] = None, +) -> List[Tag]: + """Return a list of supported tags for each version specified in + `versions`. + + :param version: a string version, of the form "33" or "32", + or None. The version will be assumed to support our ABI. + :param platform: specify a list of platforms you want valid + tags for, or None. If None, use the local system platform. + :param impl: specify the exact implementation you want valid + tags for, or None. If None, use the local interpreter impl. + :param abis: specify a list of abis you want valid + tags for, or None. If None, use the local interpreter abi. + """ + supported: List[Tag] = [] + + python_version: Optional[PythonVersion] = None + if version is not None: + python_version = _get_python_version(version) + + interpreter = _get_custom_interpreter(impl, version) + + platforms = _expand_allowed_platforms(platforms) + + is_cpython = (impl or interpreter_name()) == "cp" + if is_cpython: + supported.extend( + cpython_tags( + python_version=python_version, + abis=abis, + platforms=platforms, + ) + ) + else: + supported.extend( + generic_tags( + interpreter=interpreter, + abis=abis, + platforms=platforms, + ) + ) + supported.extend( + compatible_tags( + python_version=python_version, + interpreter=interpreter, + platforms=platforms, + ) + ) + + return supported diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/utils/datetime.py b/.venv/lib/python3.11/site-packages/pip/_internal/utils/datetime.py new file mode 100644 index 0000000..8668b3b --- /dev/null +++ b/.venv/lib/python3.11/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/.venv/lib/python3.11/site-packages/pip/_internal/utils/deprecation.py b/.venv/lib/python3.11/site-packages/pip/_internal/utils/deprecation.py new file mode 100644 index 0000000..72bd6f2 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_internal/utils/deprecation.py @@ -0,0 +1,120 @@ +""" +A module that implements tooling to enable easy warnings about deprecations. +""" + +import logging +import warnings +from typing import Any, Optional, TextIO, Type, Union + +from pip._vendor.packaging.version import parse + +from pip import __version__ as current_version # NOTE: tests patch this name. + +DEPRECATION_MSG_PREFIX = "DEPRECATION: " + + +class PipDeprecationWarning(Warning): + pass + + +_original_showwarning: Any = None + + +# Warnings <-> Logging Integration +def _showwarning( + message: Union[Warning, str], + category: Type[Warning], + filename: str, + lineno: int, + file: Optional[TextIO] = None, + line: Optional[str] = None, +) -> None: + if file is not None: + if _original_showwarning is not None: + _original_showwarning(message, category, filename, lineno, file, line) + elif issubclass(category, PipDeprecationWarning): + # We use a specially named logger which will handle all of the + # deprecation messages for pip. + logger = logging.getLogger("pip._internal.deprecations") + logger.warning(message) + else: + _original_showwarning(message, category, filename, lineno, file, line) + + +def install_warning_logger() -> None: + # Enable our Deprecation Warnings + warnings.simplefilter("default", PipDeprecationWarning, append=True) + + global _original_showwarning + + if _original_showwarning is None: + _original_showwarning = warnings.showwarning + warnings.showwarning = _showwarning + + +def deprecated( + *, + reason: str, + replacement: Optional[str], + gone_in: Optional[str], + feature_flag: Optional[str] = None, + issue: Optional[int] = None, +) -> None: + """Helper to deprecate existing functionality. + + reason: + Textual reason shown to the user about why this functionality has + been deprecated. Should be a complete sentence. + replacement: + Textual suggestion shown to the user about what alternative + functionality they can use. + gone_in: + The version of pip does this functionality should get removed in. + Raises an error if pip's current version is greater than or equal to + this. + feature_flag: + Command-line flag of the form --use-feature={feature_flag} for testing + upcoming functionality. + issue: + Issue number on the tracker that would serve as a useful place for + users to find related discussion and provide feedback. + """ + + # Determine whether or not the feature is already gone in this version. + is_gone = gone_in is not None and parse(current_version) >= parse(gone_in) + + message_parts = [ + (reason, f"{DEPRECATION_MSG_PREFIX}{{}}"), + ( + gone_in, + "pip {} will enforce this behaviour change." + if not is_gone + else "Since pip {}, this is no longer supported.", + ), + ( + replacement, + "A possible replacement is {}.", + ), + ( + feature_flag, + "You can use the flag --use-feature={} to test the upcoming behaviour." + if not is_gone + else None, + ), + ( + issue, + "Discussion can be found at https://github.com/pypa/pip/issues/{}", + ), + ] + + message = " ".join( + format_str.format(value) + for value, format_str in message_parts + if format_str is not None and value is not None + ) + + # Raise as an error if this behaviour is deprecated. + if is_gone: + raise PipDeprecationWarning(message) + + warnings.warn(message, category=PipDeprecationWarning, stacklevel=2) diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/utils/direct_url_helpers.py b/.venv/lib/python3.11/site-packages/pip/_internal/utils/direct_url_helpers.py new file mode 100644 index 0000000..0e8e5e1 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_internal/utils/direct_url_helpers.py @@ -0,0 +1,87 @@ +from typing import Optional + +from pip._internal.models.direct_url import ArchiveInfo, DirectUrl, DirInfo, VcsInfo +from pip._internal.models.link import Link +from pip._internal.utils.urls import path_to_url +from pip._internal.vcs import vcs + + +def direct_url_as_pep440_direct_reference(direct_url: DirectUrl, name: str) -> str: + """Convert a DirectUrl to a pip requirement string.""" + direct_url.validate() # if invalid, this is a pip bug + requirement = name + " @ " + fragments = [] + if isinstance(direct_url.info, VcsInfo): + requirement += "{}+{}@{}".format( + direct_url.info.vcs, direct_url.url, direct_url.info.commit_id + ) + elif isinstance(direct_url.info, ArchiveInfo): + requirement += direct_url.url + if direct_url.info.hash: + fragments.append(direct_url.info.hash) + else: + assert isinstance(direct_url.info, DirInfo) + requirement += direct_url.url + if direct_url.subdirectory: + fragments.append("subdirectory=" + direct_url.subdirectory) + if fragments: + requirement += "#" + "&".join(fragments) + return requirement + + +def direct_url_for_editable(source_dir: str) -> DirectUrl: + return DirectUrl( + url=path_to_url(source_dir), + info=DirInfo(editable=True), + ) + + +def direct_url_from_link( + link: Link, source_dir: Optional[str] = None, link_is_in_wheel_cache: bool = False +) -> DirectUrl: + if link.is_vcs: + vcs_backend = vcs.get_backend_for_scheme(link.scheme) + assert vcs_backend + url, requested_revision, _ = vcs_backend.get_url_rev_and_auth( + link.url_without_fragment + ) + # For VCS links, we need to find out and add commit_id. + if link_is_in_wheel_cache: + # If the requested VCS link corresponds to a cached + # wheel, it means the requested revision was an + # immutable commit hash, otherwise it would not have + # been cached. In that case we don't have a source_dir + # with the VCS checkout. + assert requested_revision + commit_id = requested_revision + else: + # If the wheel was not in cache, it means we have + # had to checkout from VCS to build and we have a source_dir + # which we can inspect to find out the commit id. + assert source_dir + commit_id = vcs_backend.get_revision(source_dir) + return DirectUrl( + url=url, + info=VcsInfo( + vcs=vcs_backend.name, + commit_id=commit_id, + requested_revision=requested_revision, + ), + subdirectory=link.subdirectory_fragment, + ) + elif link.is_existing_dir(): + return DirectUrl( + url=link.url_without_fragment, + info=DirInfo(), + subdirectory=link.subdirectory_fragment, + ) + else: + hash = None + hash_name = link.hash_name + if hash_name: + hash = f"{hash_name}={link.hash}" + return DirectUrl( + url=link.url_without_fragment, + info=ArchiveInfo(hash=hash), + subdirectory=link.subdirectory_fragment, + ) diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/utils/egg_link.py b/.venv/lib/python3.11/site-packages/pip/_internal/utils/egg_link.py new file mode 100644 index 0000000..4a384a6 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_internal/utils/egg_link.py @@ -0,0 +1,80 @@ +import os +import re +import sys +from typing import List, Optional + +from pip._internal.locations import site_packages, user_site +from pip._internal.utils.virtualenv import ( + running_under_virtualenv, + virtualenv_no_global, +) + +__all__ = [ + "egg_link_path_from_sys_path", + "egg_link_path_from_location", +] + + +def _egg_link_names(raw_name: str) -> List[str]: + """ + Convert a Name metadata value to a .egg-link name, by applying + the same substitution as pkg_resources's safe_name function. + Note: we cannot use canonicalize_name because it has a different logic. + + We also look for the raw name (without normalization) as setuptools 69 changed + the way it names .egg-link files (https://github.com/pypa/setuptools/issues/4167). + """ + return [ + re.sub("[^A-Za-z0-9.]+", "-", raw_name) + ".egg-link", + f"{raw_name}.egg-link", + ] + + +def egg_link_path_from_sys_path(raw_name: str) -> Optional[str]: + """ + Look for a .egg-link file for project name, by walking sys.path. + """ + egg_link_names = _egg_link_names(raw_name) + for path_item in sys.path: + for egg_link_name in egg_link_names: + egg_link = os.path.join(path_item, egg_link_name) + if os.path.isfile(egg_link): + return egg_link + return None + + +def egg_link_path_from_location(raw_name: str) -> Optional[str]: + """ + Return the path for the .egg-link file if it exists, otherwise, None. + + There's 3 scenarios: + 1) not in a virtualenv + try to find in site.USER_SITE, then site_packages + 2) in a no-global virtualenv + try to find in site_packages + 3) in a yes-global virtualenv + try to find in site_packages, then site.USER_SITE + (don't look in global location) + + For #1 and #3, there could be odd cases, where there's an egg-link in 2 + locations. + + This method will just return the first one found. + """ + sites: List[str] = [] + if running_under_virtualenv(): + sites.append(site_packages) + if not virtualenv_no_global() and user_site: + sites.append(user_site) + else: + if user_site: + sites.append(user_site) + sites.append(site_packages) + + egg_link_names = _egg_link_names(raw_name) + for site in sites: + for egg_link_name in egg_link_names: + egglink = os.path.join(site, egg_link_name) + if os.path.isfile(egglink): + return egglink + return None diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/utils/encoding.py b/.venv/lib/python3.11/site-packages/pip/_internal/utils/encoding.py new file mode 100644 index 0000000..008f06a --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_internal/utils/encoding.py @@ -0,0 +1,36 @@ +import codecs +import locale +import re +import sys +from typing import List, Tuple + +BOMS: List[Tuple[bytes, str]] = [ + (codecs.BOM_UTF8, "utf-8"), + (codecs.BOM_UTF16, "utf-16"), + (codecs.BOM_UTF16_BE, "utf-16-be"), + (codecs.BOM_UTF16_LE, "utf-16-le"), + (codecs.BOM_UTF32, "utf-32"), + (codecs.BOM_UTF32_BE, "utf-32-be"), + (codecs.BOM_UTF32_LE, "utf-32-le"), +] + +ENCODING_RE = re.compile(rb"coding[:=]\s*([-\w.]+)") + + +def auto_decode(data: bytes) -> str: + """Check a bytes string for a BOM to correctly detect the encoding + + Fallback to locale.getpreferredencoding(False) like open() on Python3""" + for bom, encoding in BOMS: + if data.startswith(bom): + return data[len(bom) :].decode(encoding) + # Lets check the first two lines as in PEP263 + for line in data.split(b"\n")[:2]: + if line[0:1] == b"#" and ENCODING_RE.search(line): + result = ENCODING_RE.search(line) + assert result is not None + encoding = result.groups()[0].decode("ascii") + return data.decode(encoding) + return data.decode( + locale.getpreferredencoding(False) or sys.getdefaultencoding(), + ) diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/utils/entrypoints.py b/.venv/lib/python3.11/site-packages/pip/_internal/utils/entrypoints.py new file mode 100644 index 0000000..1501369 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_internal/utils/entrypoints.py @@ -0,0 +1,84 @@ +import itertools +import os +import shutil +import sys +from typing import List, Optional + +from pip._internal.cli.main import main +from pip._internal.utils.compat import WINDOWS + +_EXECUTABLE_NAMES = [ + "pip", + f"pip{sys.version_info.major}", + f"pip{sys.version_info.major}.{sys.version_info.minor}", +] +if WINDOWS: + _allowed_extensions = {"", ".exe"} + _EXECUTABLE_NAMES = [ + "".join(parts) + for parts in itertools.product(_EXECUTABLE_NAMES, _allowed_extensions) + ] + + +def _wrapper(args: Optional[List[str]] = None) -> int: + """Central wrapper for all old entrypoints. + + Historically pip has had several entrypoints defined. Because of issues + arising from PATH, sys.path, multiple Pythons, their interactions, and most + of them having a pip installed, users suffer every time an entrypoint gets + moved. + + To alleviate this pain, and provide a mechanism for warning users and + directing them to an appropriate place for help, we now define all of + our old entrypoints as wrappers for the current one. + """ + sys.stderr.write( + "WARNING: pip is being invoked by an old script wrapper. This will " + "fail in a future version of pip.\n" + "Please see https://github.com/pypa/pip/issues/5599 for advice on " + "fixing the underlying issue.\n" + "To avoid this problem you can invoke Python with '-m pip' instead of " + "running pip directly.\n" + ) + return main(args) + + +def get_best_invocation_for_this_pip() -> str: + """Try to figure out the best way to invoke pip in the current environment.""" + binary_directory = "Scripts" if WINDOWS else "bin" + binary_prefix = os.path.join(sys.prefix, binary_directory) + + # Try to use pip[X[.Y]] names, if those executables for this environment are + # the first on PATH with that name. + path_parts = os.path.normcase(os.environ.get("PATH", "")).split(os.pathsep) + exe_are_in_PATH = os.path.normcase(binary_prefix) in path_parts + if exe_are_in_PATH: + for exe_name in _EXECUTABLE_NAMES: + found_executable = shutil.which(exe_name) + binary_executable = os.path.join(binary_prefix, exe_name) + if ( + found_executable + and os.path.exists(binary_executable) + and os.path.samefile( + found_executable, + binary_executable, + ) + ): + return exe_name + + # Use the `-m` invocation, if there's no "nice" invocation. + return f"{get_best_invocation_for_this_python()} -m pip" + + +def get_best_invocation_for_this_python() -> str: + """Try to figure out the best way to invoke the current Python.""" + exe = sys.executable + exe_name = os.path.basename(exe) + + # Try to use the basename, if it's the first executable. + found_executable = shutil.which(exe_name) + if found_executable and os.path.samefile(found_executable, exe): + return exe_name + + # Use the full executable name, because we couldn't find something simpler. + return exe diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/utils/filesystem.py b/.venv/lib/python3.11/site-packages/pip/_internal/utils/filesystem.py new file mode 100644 index 0000000..83c2df7 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_internal/utils/filesystem.py @@ -0,0 +1,153 @@ +import fnmatch +import os +import os.path +import random +import sys +from contextlib import contextmanager +from tempfile import NamedTemporaryFile +from typing import Any, BinaryIO, Generator, List, Union, cast + +from pip._vendor.tenacity import retry, stop_after_delay, wait_fixed + +from pip._internal.utils.compat import get_path_uid +from pip._internal.utils.misc import format_size + + +def check_path_owner(path: str) -> bool: + # If we don't have a way to check the effective uid of this process, then + # we'll just assume that we own the directory. + if sys.platform == "win32" or not hasattr(os, "geteuid"): + return True + + assert os.path.isabs(path) + + previous = None + while path != previous: + if os.path.lexists(path): + # Check if path is writable by current user. + if os.geteuid() == 0: + # Special handling for root user in order to handle properly + # cases where users use sudo without -H flag. + try: + path_uid = get_path_uid(path) + except OSError: + return False + return path_uid == 0 + else: + return os.access(path, os.W_OK) + else: + previous, path = path, os.path.dirname(path) + return False # assume we don't own the path + + +@contextmanager +def adjacent_tmp_file(path: str, **kwargs: Any) -> Generator[BinaryIO, None, None]: + """Return a file-like object pointing to a tmp file next to path. + + The file is created securely and is ensured to be written to disk + after the context reaches its end. + + kwargs will be passed to tempfile.NamedTemporaryFile to control + the way the temporary file will be opened. + """ + with NamedTemporaryFile( + delete=False, + dir=os.path.dirname(path), + prefix=os.path.basename(path), + suffix=".tmp", + **kwargs, + ) as f: + result = cast(BinaryIO, f) + try: + yield result + finally: + result.flush() + os.fsync(result.fileno()) + + +# Tenacity raises RetryError by default, explicitly raise the original exception +_replace_retry = retry(reraise=True, stop=stop_after_delay(1), wait=wait_fixed(0.25)) + +replace = _replace_retry(os.replace) + + +# test_writable_dir and _test_writable_dir_win are copied from Flit, +# with the author's agreement to also place them under pip's license. +def test_writable_dir(path: str) -> bool: + """Check if a directory is writable. + + Uses os.access() on POSIX, tries creating files on Windows. + """ + # If the directory doesn't exist, find the closest parent that does. + while not os.path.isdir(path): + parent = os.path.dirname(path) + if parent == path: + break # Should never get here, but infinite loops are bad + path = parent + + if os.name == "posix": + return os.access(path, os.W_OK) + + return _test_writable_dir_win(path) + + +def _test_writable_dir_win(path: str) -> bool: + # os.access doesn't work on Windows: http://bugs.python.org/issue2528 + # and we can't use tempfile: http://bugs.python.org/issue22107 + basename = "accesstest_deleteme_fishfingers_custard_" + alphabet = "abcdefghijklmnopqrstuvwxyz0123456789" + for _ in range(10): + name = basename + "".join(random.choice(alphabet) for _ in range(6)) + file = os.path.join(path, name) + try: + fd = os.open(file, os.O_RDWR | os.O_CREAT | os.O_EXCL) + except FileExistsError: + pass + except PermissionError: + # This could be because there's a directory with the same name. + # But it's highly unlikely there's a directory called that, + # so we'll assume it's because the parent dir is not writable. + # This could as well be because the parent dir is not readable, + # due to non-privileged user access. + return False + else: + os.close(fd) + os.unlink(file) + return True + + # This should never be reached + raise OSError("Unexpected condition testing for writable directory") + + +def find_files(path: str, pattern: str) -> List[str]: + """Returns a list of absolute paths of files beneath path, recursively, + with filenames which match the UNIX-style shell glob pattern.""" + result: List[str] = [] + for root, _, files in os.walk(path): + matches = fnmatch.filter(files, pattern) + result.extend(os.path.join(root, f) for f in matches) + return result + + +def file_size(path: str) -> Union[int, float]: + # If it's a symlink, return 0. + if os.path.islink(path): + return 0 + return os.path.getsize(path) + + +def format_file_size(path: str) -> str: + return format_size(file_size(path)) + + +def directory_size(path: str) -> Union[int, float]: + size = 0.0 + for root, _dirs, files in os.walk(path): + for filename in files: + file_path = os.path.join(root, filename) + size += file_size(file_path) + return size + + +def format_directory_size(path: str) -> str: + return format_size(directory_size(path)) diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/utils/filetypes.py b/.venv/lib/python3.11/site-packages/pip/_internal/utils/filetypes.py new file mode 100644 index 0000000..5948570 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_internal/utils/filetypes.py @@ -0,0 +1,27 @@ +"""Filetype information. +""" + +from typing import Tuple + +from pip._internal.utils.misc import splitext + +WHEEL_EXTENSION = ".whl" +BZ2_EXTENSIONS: Tuple[str, ...] = (".tar.bz2", ".tbz") +XZ_EXTENSIONS: Tuple[str, ...] = ( + ".tar.xz", + ".txz", + ".tlz", + ".tar.lz", + ".tar.lzma", +) +ZIP_EXTENSIONS: Tuple[str, ...] = (".zip", WHEEL_EXTENSION) +TAR_EXTENSIONS: Tuple[str, ...] = (".tar.gz", ".tgz", ".tar") +ARCHIVE_EXTENSIONS = ZIP_EXTENSIONS + BZ2_EXTENSIONS + TAR_EXTENSIONS + XZ_EXTENSIONS + + +def is_archive_file(name: str) -> bool: + """Return True if `name` is a considered as an archive file.""" + ext = splitext(name)[1].lower() + if ext in ARCHIVE_EXTENSIONS: + return True + return False diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/utils/glibc.py b/.venv/lib/python3.11/site-packages/pip/_internal/utils/glibc.py new file mode 100644 index 0000000..81342af --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_internal/utils/glibc.py @@ -0,0 +1,88 @@ +import os +import sys +from typing import Optional, Tuple + + +def glibc_version_string() -> Optional[str]: + "Returns glibc version string, or None if not using glibc." + return glibc_version_string_confstr() or glibc_version_string_ctypes() + + +def glibc_version_string_confstr() -> Optional[str]: + "Primary implementation of glibc_version_string using os.confstr." + # os.confstr is quite a bit faster than ctypes.DLL. It's also less likely + # to be broken or missing. This strategy is used in the standard library + # platform module: + # https://github.com/python/cpython/blob/fcf1d003bf4f0100c9d0921ff3d70e1127ca1b71/Lib/platform.py#L175-L183 + if sys.platform == "win32": + return None + try: + gnu_libc_version = os.confstr("CS_GNU_LIBC_VERSION") + if gnu_libc_version is None: + return None + # os.confstr("CS_GNU_LIBC_VERSION") returns a string like "glibc 2.17": + _, version = gnu_libc_version.split() + except (AttributeError, OSError, ValueError): + # os.confstr() or CS_GNU_LIBC_VERSION not available (or a bad value)... + return None + return version + + +def glibc_version_string_ctypes() -> Optional[str]: + "Fallback implementation of glibc_version_string using ctypes." + + try: + import ctypes + except ImportError: + return None + + # ctypes.CDLL(None) internally calls dlopen(NULL), and as the dlopen + # manpage says, "If filename is NULL, then the returned handle is for the + # main program". This way we can let the linker do the work to figure out + # which libc our process is actually using. + process_namespace = ctypes.CDLL(None) + try: + gnu_get_libc_version = process_namespace.gnu_get_libc_version + except AttributeError: + # Symbol doesn't exist -> therefore, we are not linked to + # glibc. + return None + + # Call gnu_get_libc_version, which returns a string like "2.5" + gnu_get_libc_version.restype = ctypes.c_char_p + version_str = gnu_get_libc_version() + # py2 / py3 compatibility: + if not isinstance(version_str, str): + version_str = version_str.decode("ascii") + + return version_str + + +# platform.libc_ver regularly returns completely nonsensical glibc +# versions. E.g. on my computer, platform says: +# +# ~$ python2.7 -c 'import platform; print(platform.libc_ver())' +# ('glibc', '2.7') +# ~$ python3.5 -c 'import platform; print(platform.libc_ver())' +# ('glibc', '2.9') +# +# But the truth is: +# +# ~$ ldd --version +# ldd (Debian GLIBC 2.22-11) 2.22 +# +# This is unfortunate, because it means that the linehaul data on libc +# versions that was generated by pip 8.1.2 and earlier is useless and +# misleading. Solution: instead of using platform, use our code that actually +# works. +def libc_ver() -> Tuple[str, str]: + """Try to determine the glibc version + + Returns a tuple of strings (lib, version) which default to empty strings + in case the lookup fails. + """ + glibc_version = glibc_version_string() + if glibc_version is None: + return ("", "") + else: + return ("glibc", glibc_version) diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/utils/hashes.py b/.venv/lib/python3.11/site-packages/pip/_internal/utils/hashes.py new file mode 100644 index 0000000..843cffc --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_internal/utils/hashes.py @@ -0,0 +1,151 @@ +import hashlib +from typing import TYPE_CHECKING, BinaryIO, Dict, Iterable, List, Optional + +from pip._internal.exceptions import HashMismatch, HashMissing, InstallationError +from pip._internal.utils.misc import read_chunks + +if TYPE_CHECKING: + from hashlib import _Hash + + # NoReturn introduced in 3.6.2; imported only for type checking to maintain + # pip compatibility with older patch versions of Python 3.6 + from typing import NoReturn + + +# The recommended hash algo of the moment. Change this whenever the state of +# the art changes; it won't hurt backward compatibility. +FAVORITE_HASH = "sha256" + + +# Names of hashlib algorithms allowed by the --hash option and ``pip hash`` +# Currently, those are the ones at least as collision-resistant as sha256. +STRONG_HASHES = ["sha256", "sha384", "sha512"] + + +class Hashes: + """A wrapper that builds multiple hashes at once and checks them against + known-good values + + """ + + def __init__(self, hashes: Optional[Dict[str, List[str]]] = None) -> None: + """ + :param hashes: A dict of algorithm names pointing to lists of allowed + hex digests + """ + allowed = {} + if hashes is not None: + for alg, keys in hashes.items(): + # Make sure values are always sorted (to ease equality checks) + allowed[alg] = sorted(keys) + self._allowed = allowed + + def __and__(self, other: "Hashes") -> "Hashes": + if not isinstance(other, Hashes): + return NotImplemented + + # If either of the Hashes object is entirely empty (i.e. no hash + # specified at all), all hashes from the other object are allowed. + if not other: + return self + if not self: + return other + + # Otherwise only hashes that present in both objects are allowed. + new = {} + for alg, values in other._allowed.items(): + if alg not in self._allowed: + continue + new[alg] = [v for v in values if v in self._allowed[alg]] + return Hashes(new) + + @property + def digest_count(self) -> int: + return sum(len(digests) for digests in self._allowed.values()) + + def is_hash_allowed(self, hash_name: str, hex_digest: str) -> bool: + """Return whether the given hex digest is allowed.""" + return hex_digest in self._allowed.get(hash_name, []) + + def check_against_chunks(self, chunks: Iterable[bytes]) -> None: + """Check good hashes against ones built from iterable of chunks of + data. + + Raise HashMismatch if none match. + + """ + gots = {} + for hash_name in self._allowed.keys(): + try: + gots[hash_name] = hashlib.new(hash_name) + except (ValueError, TypeError): + raise InstallationError(f"Unknown hash name: {hash_name}") + + for chunk in chunks: + for hash in gots.values(): + hash.update(chunk) + + for hash_name, got in gots.items(): + if got.hexdigest() in self._allowed[hash_name]: + return + self._raise(gots) + + def _raise(self, gots: Dict[str, "_Hash"]) -> "NoReturn": + raise HashMismatch(self._allowed, gots) + + def check_against_file(self, file: BinaryIO) -> None: + """Check good hashes against a file-like object + + Raise HashMismatch if none match. + + """ + return self.check_against_chunks(read_chunks(file)) + + def check_against_path(self, path: str) -> None: + with open(path, "rb") as file: + return self.check_against_file(file) + + def has_one_of(self, hashes: Dict[str, str]) -> bool: + """Return whether any of the given hashes are allowed.""" + for hash_name, hex_digest in hashes.items(): + if self.is_hash_allowed(hash_name, hex_digest): + return True + return False + + def __bool__(self) -> bool: + """Return whether I know any known-good hashes.""" + return bool(self._allowed) + + def __eq__(self, other: object) -> bool: + if not isinstance(other, Hashes): + return NotImplemented + return self._allowed == other._allowed + + def __hash__(self) -> int: + return hash( + ",".join( + sorted( + ":".join((alg, digest)) + for alg, digest_list in self._allowed.items() + for digest in digest_list + ) + ) + ) + + +class MissingHashes(Hashes): + """A workalike for Hashes used when we're missing a hash for a requirement + + It computes the actual hash of the requirement and raises a HashMissing + exception showing it to the user. + + """ + + def __init__(self) -> None: + """Don't offer the ``hashes`` kwarg.""" + # Pass our favorite hash in to generate a "gotten hash". With the + # empty list, it will never match, so an error will always raise. + super().__init__(hashes={FAVORITE_HASH: []}) + + def _raise(self, gots: Dict[str, "_Hash"]) -> "NoReturn": + raise HashMissing(gots[FAVORITE_HASH].hexdigest()) diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/utils/logging.py b/.venv/lib/python3.11/site-packages/pip/_internal/utils/logging.py new file mode 100644 index 0000000..95982df --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_internal/utils/logging.py @@ -0,0 +1,348 @@ +import contextlib +import errno +import logging +import logging.handlers +import os +import sys +import threading +from dataclasses import dataclass +from io import TextIOWrapper +from logging import Filter +from typing import Any, ClassVar, Generator, List, Optional, TextIO, Type + +from pip._vendor.rich.console import ( + Console, + ConsoleOptions, + ConsoleRenderable, + RenderableType, + RenderResult, + RichCast, +) +from pip._vendor.rich.highlighter import NullHighlighter +from pip._vendor.rich.logging import RichHandler +from pip._vendor.rich.segment import Segment +from pip._vendor.rich.style import Style + +from pip._internal.utils._log import VERBOSE, getLogger +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.deprecation import DEPRECATION_MSG_PREFIX +from pip._internal.utils.misc import ensure_dir + +_log_state = threading.local() +subprocess_logger = getLogger("pip.subprocessor") + + +class BrokenStdoutLoggingError(Exception): + """ + Raised if BrokenPipeError occurs for the stdout stream while logging. + """ + + +def _is_broken_pipe_error(exc_class: Type[BaseException], exc: BaseException) -> bool: + if exc_class is BrokenPipeError: + return True + + # On Windows, a broken pipe can show up as EINVAL rather than EPIPE: + # https://bugs.python.org/issue19612 + # https://bugs.python.org/issue30418 + if not WINDOWS: + return False + + return isinstance(exc, OSError) and exc.errno in (errno.EINVAL, errno.EPIPE) + + +@contextlib.contextmanager +def indent_log(num: int = 2) -> Generator[None, None, None]: + """ + A context manager which will cause the log output to be indented for any + log messages emitted inside it. + """ + # For thread-safety + _log_state.indentation = get_indentation() + _log_state.indentation += num + try: + yield + finally: + _log_state.indentation -= num + + +def get_indentation() -> int: + return getattr(_log_state, "indentation", 0) + + +class IndentingFormatter(logging.Formatter): + default_time_format = "%Y-%m-%dT%H:%M:%S" + + def __init__( + self, + *args: Any, + add_timestamp: bool = False, + **kwargs: Any, + ) -> None: + """ + A logging.Formatter that obeys the indent_log() context manager. + + :param add_timestamp: A bool indicating output lines should be prefixed + with their record's timestamp. + """ + self.add_timestamp = add_timestamp + super().__init__(*args, **kwargs) + + def get_message_start(self, formatted: str, levelno: int) -> str: + """ + Return the start of the formatted log message (not counting the + prefix to add to each line). + """ + if levelno < logging.WARNING: + return "" + if formatted.startswith(DEPRECATION_MSG_PREFIX): + # Then the message already has a prefix. We don't want it to + # look like "WARNING: DEPRECATION: ...." + return "" + if levelno < logging.ERROR: + return "WARNING: " + + return "ERROR: " + + def format(self, record: logging.LogRecord) -> str: + """ + Calls the standard formatter, but will indent all of the log message + lines by our current indentation level. + """ + formatted = super().format(record) + message_start = self.get_message_start(formatted, record.levelno) + formatted = message_start + formatted + + prefix = "" + if self.add_timestamp: + prefix = f"{self.formatTime(record)} " + prefix += " " * get_indentation() + formatted = "".join([prefix + line for line in formatted.splitlines(True)]) + return formatted + + +@dataclass +class IndentedRenderable: + renderable: RenderableType + indent: int + + def __rich_console__( + self, console: Console, options: ConsoleOptions + ) -> RenderResult: + segments = console.render(self.renderable, options) + lines = Segment.split_lines(segments) + for line in lines: + yield Segment(" " * self.indent) + yield from line + yield Segment("\n") + + +class RichPipStreamHandler(RichHandler): + KEYWORDS: ClassVar[Optional[List[str]]] = [] + + def __init__(self, stream: Optional[TextIO], no_color: bool) -> None: + super().__init__( + console=Console(file=stream, no_color=no_color, soft_wrap=True), + show_time=False, + show_level=False, + show_path=False, + highlighter=NullHighlighter(), + ) + + # Our custom override on Rich's logger, to make things work as we need them to. + def emit(self, record: logging.LogRecord) -> None: + style: Optional[Style] = None + + # If we are given a diagnostic error to present, present it with indentation. + assert isinstance(record.args, tuple) + if getattr(record, "rich", False): + (rich_renderable,) = record.args + assert isinstance( + rich_renderable, (ConsoleRenderable, RichCast, str) + ), f"{rich_renderable} is not rich-console-renderable" + + renderable: RenderableType = IndentedRenderable( + rich_renderable, indent=get_indentation() + ) + else: + message = self.format(record) + renderable = self.render_message(record, message) + if record.levelno is not None: + if record.levelno >= logging.ERROR: + style = Style(color="red") + elif record.levelno >= logging.WARNING: + style = Style(color="yellow") + + try: + self.console.print(renderable, overflow="ignore", crop=False, style=style) + except Exception: + self.handleError(record) + + def handleError(self, record: logging.LogRecord) -> None: + """Called when logging is unable to log some output.""" + + exc_class, exc = sys.exc_info()[:2] + # If a broken pipe occurred while calling write() or flush() on the + # stdout stream in logging's Handler.emit(), then raise our special + # exception so we can handle it in main() instead of logging the + # broken pipe error and continuing. + if ( + exc_class + and exc + and self.console.file is sys.stdout + and _is_broken_pipe_error(exc_class, exc) + ): + raise BrokenStdoutLoggingError() + + return super().handleError(record) + + +class BetterRotatingFileHandler(logging.handlers.RotatingFileHandler): + def _open(self) -> TextIOWrapper: + ensure_dir(os.path.dirname(self.baseFilename)) + return super()._open() + + +class MaxLevelFilter(Filter): + def __init__(self, level: int) -> None: + self.level = level + + def filter(self, record: logging.LogRecord) -> bool: + return record.levelno < self.level + + +class ExcludeLoggerFilter(Filter): + + """ + A logging Filter that excludes records from a logger (or its children). + """ + + def filter(self, record: logging.LogRecord) -> bool: + # The base Filter class allows only records from a logger (or its + # children). + return not super().filter(record) + + +def setup_logging(verbosity: int, no_color: bool, user_log_file: Optional[str]) -> int: + """Configures and sets up all of the logging + + Returns the requested logging level, as its integer value. + """ + + # Determine the level to be logging at. + if verbosity >= 2: + level_number = logging.DEBUG + elif verbosity == 1: + level_number = VERBOSE + elif verbosity == -1: + level_number = logging.WARNING + elif verbosity == -2: + level_number = logging.ERROR + elif verbosity <= -3: + level_number = logging.CRITICAL + else: + level_number = logging.INFO + + level = logging.getLevelName(level_number) + + # The "root" logger should match the "console" level *unless* we also need + # to log to a user log file. + include_user_log = user_log_file is not None + if include_user_log: + additional_log_file = user_log_file + root_level = "DEBUG" + else: + additional_log_file = "/dev/null" + root_level = level + + # Disable any logging besides WARNING unless we have DEBUG level logging + # enabled for vendored libraries. + vendored_log_level = "WARNING" if level in ["INFO", "ERROR"] else "DEBUG" + + # Shorthands for clarity + log_streams = { + "stdout": "ext://sys.stdout", + "stderr": "ext://sys.stderr", + } + handler_classes = { + "stream": "pip._internal.utils.logging.RichPipStreamHandler", + "file": "pip._internal.utils.logging.BetterRotatingFileHandler", + } + handlers = ["console", "console_errors", "console_subprocess"] + ( + ["user_log"] if include_user_log else [] + ) + + logging.config.dictConfig( + { + "version": 1, + "disable_existing_loggers": False, + "filters": { + "exclude_warnings": { + "()": "pip._internal.utils.logging.MaxLevelFilter", + "level": logging.WARNING, + }, + "restrict_to_subprocess": { + "()": "logging.Filter", + "name": subprocess_logger.name, + }, + "exclude_subprocess": { + "()": "pip._internal.utils.logging.ExcludeLoggerFilter", + "name": subprocess_logger.name, + }, + }, + "formatters": { + "indent": { + "()": IndentingFormatter, + "format": "%(message)s", + }, + "indent_with_timestamp": { + "()": IndentingFormatter, + "format": "%(message)s", + "add_timestamp": True, + }, + }, + "handlers": { + "console": { + "level": level, + "class": handler_classes["stream"], + "no_color": no_color, + "stream": log_streams["stdout"], + "filters": ["exclude_subprocess", "exclude_warnings"], + "formatter": "indent", + }, + "console_errors": { + "level": "WARNING", + "class": handler_classes["stream"], + "no_color": no_color, + "stream": log_streams["stderr"], + "filters": ["exclude_subprocess"], + "formatter": "indent", + }, + # A handler responsible for logging to the console messages + # from the "subprocessor" logger. + "console_subprocess": { + "level": level, + "class": handler_classes["stream"], + "stream": log_streams["stderr"], + "no_color": no_color, + "filters": ["restrict_to_subprocess"], + "formatter": "indent", + }, + "user_log": { + "level": "DEBUG", + "class": handler_classes["file"], + "filename": additional_log_file, + "encoding": "utf-8", + "delay": True, + "formatter": "indent_with_timestamp", + }, + }, + "root": { + "level": root_level, + "handlers": handlers, + }, + "loggers": {"pip._vendor": {"level": vendored_log_level}}, + } + ) + + return level_number diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/utils/misc.py b/.venv/lib/python3.11/site-packages/pip/_internal/utils/misc.py new file mode 100644 index 0000000..1ad3f61 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_internal/utils/misc.py @@ -0,0 +1,783 @@ +import contextlib +import errno +import getpass +import hashlib +import io +import logging +import os +import posixpath +import shutil +import stat +import sys +import sysconfig +import urllib.parse +from functools import partial +from io import StringIO +from itertools import filterfalse, tee, zip_longest +from pathlib import Path +from types import FunctionType, TracebackType +from typing import ( + Any, + BinaryIO, + Callable, + ContextManager, + Dict, + Generator, + Iterable, + Iterator, + List, + Optional, + TextIO, + Tuple, + Type, + TypeVar, + Union, + cast, +) + +from pip._vendor.packaging.requirements import Requirement +from pip._vendor.pyproject_hooks import BuildBackendHookCaller +from pip._vendor.tenacity import retry, stop_after_delay, wait_fixed + +from pip import __version__ +from pip._internal.exceptions import CommandError, ExternallyManagedEnvironment +from pip._internal.locations import get_major_minor_version +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.virtualenv import running_under_virtualenv + +__all__ = [ + "rmtree", + "display_path", + "backup_dir", + "ask", + "splitext", + "format_size", + "is_installable_dir", + "normalize_path", + "renames", + "get_prog", + "captured_stdout", + "ensure_dir", + "remove_auth_from_url", + "check_externally_managed", + "ConfiguredBuildBackendHookCaller", +] + +logger = logging.getLogger(__name__) + +T = TypeVar("T") +ExcInfo = Tuple[Type[BaseException], BaseException, TracebackType] +VersionInfo = Tuple[int, int, int] +NetlocTuple = Tuple[str, Tuple[Optional[str], Optional[str]]] +OnExc = Callable[[FunctionType, Path, BaseException], Any] +OnErr = Callable[[FunctionType, Path, ExcInfo], Any] + + +def get_pip_version() -> str: + pip_pkg_dir = os.path.join(os.path.dirname(__file__), "..", "..") + pip_pkg_dir = os.path.abspath(pip_pkg_dir) + + return f"pip {__version__} from {pip_pkg_dir} (python {get_major_minor_version()})" + + +def normalize_version_info(py_version_info: Tuple[int, ...]) -> Tuple[int, int, int]: + """ + Convert a tuple of ints representing a Python version to one of length + three. + + :param py_version_info: a tuple of ints representing a Python version, + or None to specify no version. The tuple can have any length. + + :return: a tuple of length three if `py_version_info` is non-None. + Otherwise, return `py_version_info` unchanged (i.e. None). + """ + if len(py_version_info) < 3: + py_version_info += (3 - len(py_version_info)) * (0,) + elif len(py_version_info) > 3: + py_version_info = py_version_info[:3] + + return cast("VersionInfo", py_version_info) + + +def ensure_dir(path: str) -> None: + """os.path.makedirs without EEXIST.""" + try: + os.makedirs(path) + except OSError as e: + # Windows can raise spurious ENOTEMPTY errors. See #6426. + if e.errno != errno.EEXIST and e.errno != errno.ENOTEMPTY: + raise + + +def get_prog() -> str: + try: + prog = os.path.basename(sys.argv[0]) + if prog in ("__main__.py", "-c"): + return f"{sys.executable} -m pip" + else: + return prog + except (AttributeError, TypeError, IndexError): + pass + return "pip" + + +# Retry every half second for up to 3 seconds +# Tenacity raises RetryError by default, explicitly raise the original exception +@retry(reraise=True, stop=stop_after_delay(3), wait=wait_fixed(0.5)) +def rmtree( + dir: str, + ignore_errors: bool = False, + onexc: Optional[OnExc] = None, +) -> None: + if ignore_errors: + onexc = _onerror_ignore + if onexc is None: + onexc = _onerror_reraise + handler: OnErr = partial( + # `[func, path, Union[ExcInfo, BaseException]] -> Any` is equivalent to + # `Union[([func, path, ExcInfo] -> Any), ([func, path, BaseException] -> Any)]`. + cast(Union[OnExc, OnErr], rmtree_errorhandler), + onexc=onexc, + ) + if sys.version_info >= (3, 12): + # See https://docs.python.org/3.12/whatsnew/3.12.html#shutil. + shutil.rmtree(dir, onexc=handler) # type: ignore + else: + shutil.rmtree(dir, onerror=handler) # type: ignore + + +def _onerror_ignore(*_args: Any) -> None: + pass + + +def _onerror_reraise(*_args: Any) -> None: + raise + + +def rmtree_errorhandler( + func: FunctionType, + path: Path, + exc_info: Union[ExcInfo, BaseException], + *, + onexc: OnExc = _onerror_reraise, +) -> None: + """ + `rmtree` error handler to 'force' a file remove (i.e. like `rm -f`). + + * If a file is readonly then it's write flag is set and operation is + retried. + + * `onerror` is the original callback from `rmtree(... onerror=onerror)` + that is chained at the end if the "rm -f" still fails. + """ + try: + st_mode = os.stat(path).st_mode + except OSError: + # it's equivalent to os.path.exists + return + + if not st_mode & stat.S_IWRITE: + # convert to read/write + try: + os.chmod(path, st_mode | stat.S_IWRITE) + except OSError: + pass + else: + # use the original function to repeat the operation + try: + func(path) + return + except OSError: + pass + + if not isinstance(exc_info, BaseException): + _, exc_info, _ = exc_info + onexc(func, path, exc_info) + + +def display_path(path: str) -> str: + """Gives the display value for a given path, making it relative to cwd + if possible.""" + path = os.path.normcase(os.path.abspath(path)) + if path.startswith(os.getcwd() + os.path.sep): + path = "." + path[len(os.getcwd()) :] + return path + + +def backup_dir(dir: str, ext: str = ".bak") -> str: + """Figure out the name of a directory to back up the given dir to + (adding .bak, .bak2, etc)""" + n = 1 + extension = ext + while os.path.exists(dir + extension): + n += 1 + extension = ext + str(n) + return dir + extension + + +def ask_path_exists(message: str, options: Iterable[str]) -> str: + for action in os.environ.get("PIP_EXISTS_ACTION", "").split(): + if action in options: + return action + return ask(message, options) + + +def _check_no_input(message: str) -> None: + """Raise an error if no input is allowed.""" + if os.environ.get("PIP_NO_INPUT"): + raise Exception( + f"No input was expected ($PIP_NO_INPUT set); question: {message}" + ) + + +def ask(message: str, options: Iterable[str]) -> str: + """Ask the message interactively, with the given possible responses""" + while 1: + _check_no_input(message) + response = input(message) + response = response.strip().lower() + if response not in options: + print( + "Your response ({!r}) was not one of the expected responses: " + "{}".format(response, ", ".join(options)) + ) + else: + return response + + +def ask_input(message: str) -> str: + """Ask for input interactively.""" + _check_no_input(message) + return input(message) + + +def ask_password(message: str) -> str: + """Ask for a password interactively.""" + _check_no_input(message) + return getpass.getpass(message) + + +def strtobool(val: str) -> int: + """Convert a string representation of truth to true (1) or false (0). + + True values are 'y', 'yes', 't', 'true', 'on', and '1'; false values + are 'n', 'no', 'f', 'false', 'off', and '0'. Raises ValueError if + 'val' is anything else. + """ + val = val.lower() + if val in ("y", "yes", "t", "true", "on", "1"): + return 1 + elif val in ("n", "no", "f", "false", "off", "0"): + return 0 + else: + raise ValueError(f"invalid truth value {val!r}") + + +def format_size(bytes: float) -> str: + if bytes > 1000 * 1000: + return f"{bytes / 1000.0 / 1000:.1f} MB" + elif bytes > 10 * 1000: + return f"{int(bytes / 1000)} kB" + elif bytes > 1000: + return f"{bytes / 1000.0:.1f} kB" + else: + return f"{int(bytes)} bytes" + + +def tabulate(rows: Iterable[Iterable[Any]]) -> Tuple[List[str], List[int]]: + """Return a list of formatted rows and a list of column sizes. + + For example:: + + >>> tabulate([['foobar', 2000], [0xdeadbeef]]) + (['foobar 2000', '3735928559'], [10, 4]) + """ + rows = [tuple(map(str, row)) for row in rows] + sizes = [max(map(len, col)) for col in zip_longest(*rows, fillvalue="")] + table = [" ".join(map(str.ljust, row, sizes)).rstrip() for row in rows] + return table, sizes + + +def is_installable_dir(path: str) -> bool: + """Is path is a directory containing pyproject.toml or setup.py? + + If pyproject.toml exists, this is a PEP 517 project. Otherwise we look for + a legacy setuptools layout by identifying setup.py. We don't check for the + setup.cfg because using it without setup.py is only available for PEP 517 + projects, which are already covered by the pyproject.toml check. + """ + if not os.path.isdir(path): + return False + if os.path.isfile(os.path.join(path, "pyproject.toml")): + return True + if os.path.isfile(os.path.join(path, "setup.py")): + return True + return False + + +def read_chunks( + file: BinaryIO, size: int = io.DEFAULT_BUFFER_SIZE +) -> Generator[bytes, None, None]: + """Yield pieces of data from a file-like object until EOF.""" + while True: + chunk = file.read(size) + if not chunk: + break + yield chunk + + +def normalize_path(path: str, resolve_symlinks: bool = True) -> str: + """ + Convert a path to its canonical, case-normalized, absolute version. + + """ + path = os.path.expanduser(path) + if resolve_symlinks: + path = os.path.realpath(path) + else: + path = os.path.abspath(path) + return os.path.normcase(path) + + +def splitext(path: str) -> Tuple[str, str]: + """Like os.path.splitext, but take off .tar too""" + base, ext = posixpath.splitext(path) + if base.lower().endswith(".tar"): + ext = base[-4:] + ext + base = base[:-4] + return base, ext + + +def renames(old: str, new: str) -> None: + """Like os.renames(), but handles renaming across devices.""" + # Implementation borrowed from os.renames(). + head, tail = os.path.split(new) + if head and tail and not os.path.exists(head): + os.makedirs(head) + + shutil.move(old, new) + + head, tail = os.path.split(old) + if head and tail: + try: + os.removedirs(head) + except OSError: + pass + + +def is_local(path: str) -> bool: + """ + Return True if path is within sys.prefix, if we're running in a virtualenv. + + If we're not in a virtualenv, all paths are considered "local." + + Caution: this function assumes the head of path has been normalized + with normalize_path. + """ + if not running_under_virtualenv(): + return True + return path.startswith(normalize_path(sys.prefix)) + + +def write_output(msg: Any, *args: Any) -> None: + logger.info(msg, *args) + + +class StreamWrapper(StringIO): + orig_stream: TextIO + + @classmethod + def from_stream(cls, orig_stream: TextIO) -> "StreamWrapper": + ret = cls() + ret.orig_stream = orig_stream + return ret + + # compileall.compile_dir() needs stdout.encoding to print to stdout + # type ignore is because TextIOBase.encoding is writeable + @property + def encoding(self) -> str: # type: ignore + return self.orig_stream.encoding + + +@contextlib.contextmanager +def captured_output(stream_name: str) -> Generator[StreamWrapper, None, None]: + """Return a context manager used by captured_stdout/stdin/stderr + that temporarily replaces the sys stream *stream_name* with a StringIO. + + Taken from Lib/support/__init__.py in the CPython repo. + """ + orig_stdout = getattr(sys, stream_name) + setattr(sys, stream_name, StreamWrapper.from_stream(orig_stdout)) + try: + yield getattr(sys, stream_name) + finally: + setattr(sys, stream_name, orig_stdout) + + +def captured_stdout() -> ContextManager[StreamWrapper]: + """Capture the output of sys.stdout: + + with captured_stdout() as stdout: + print('hello') + self.assertEqual(stdout.getvalue(), 'hello\n') + + Taken from Lib/support/__init__.py in the CPython repo. + """ + return captured_output("stdout") + + +def captured_stderr() -> ContextManager[StreamWrapper]: + """ + See captured_stdout(). + """ + return captured_output("stderr") + + +# Simulates an enum +def enum(*sequential: Any, **named: Any) -> Type[Any]: + enums = dict(zip(sequential, range(len(sequential))), **named) + reverse = {value: key for key, value in enums.items()} + enums["reverse_mapping"] = reverse + return type("Enum", (), enums) + + +def build_netloc(host: str, port: Optional[int]) -> str: + """ + Build a netloc from a host-port pair + """ + if port is None: + return host + if ":" in host: + # Only wrap host with square brackets when it is IPv6 + host = f"[{host}]" + return f"{host}:{port}" + + +def build_url_from_netloc(netloc: str, scheme: str = "https") -> str: + """ + Build a full URL from a netloc. + """ + if netloc.count(":") >= 2 and "@" not in netloc and "[" not in netloc: + # It must be a bare IPv6 address, so wrap it with brackets. + netloc = f"[{netloc}]" + return f"{scheme}://{netloc}" + + +def parse_netloc(netloc: str) -> Tuple[Optional[str], Optional[int]]: + """ + Return the host-port pair from a netloc. + """ + url = build_url_from_netloc(netloc) + parsed = urllib.parse.urlparse(url) + return parsed.hostname, parsed.port + + +def split_auth_from_netloc(netloc: str) -> NetlocTuple: + """ + Parse out and remove the auth information from a netloc. + + Returns: (netloc, (username, password)). + """ + if "@" not in netloc: + return netloc, (None, None) + + # Split from the right because that's how urllib.parse.urlsplit() + # behaves if more than one @ is present (which can be checked using + # the password attribute of urlsplit()'s return value). + auth, netloc = netloc.rsplit("@", 1) + pw: Optional[str] = None + if ":" in auth: + # Split from the left because that's how urllib.parse.urlsplit() + # behaves if more than one : is present (which again can be checked + # using the password attribute of the return value) + user, pw = auth.split(":", 1) + else: + user, pw = auth, None + + user = urllib.parse.unquote(user) + if pw is not None: + pw = urllib.parse.unquote(pw) + + return netloc, (user, pw) + + +def redact_netloc(netloc: str) -> str: + """ + Replace the sensitive data in a netloc with "****", if it exists. + + For example: + - "user:pass@example.com" returns "user:****@example.com" + - "accesstoken@example.com" returns "****@example.com" + """ + netloc, (user, password) = split_auth_from_netloc(netloc) + if user is None: + return netloc + if password is None: + user = "****" + password = "" + else: + user = urllib.parse.quote(user) + password = ":****" + return f"{user}{password}@{netloc}" + + +def _transform_url( + url: str, transform_netloc: Callable[[str], Tuple[Any, ...]] +) -> Tuple[str, NetlocTuple]: + """Transform and replace netloc in a url. + + transform_netloc is a function taking the netloc and returning a + tuple. The first element of this tuple is the new netloc. The + entire tuple is returned. + + Returns a tuple containing the transformed url as item 0 and the + original tuple returned by transform_netloc as item 1. + """ + purl = urllib.parse.urlsplit(url) + netloc_tuple = transform_netloc(purl.netloc) + # stripped url + url_pieces = (purl.scheme, netloc_tuple[0], purl.path, purl.query, purl.fragment) + surl = urllib.parse.urlunsplit(url_pieces) + return surl, cast("NetlocTuple", netloc_tuple) + + +def _get_netloc(netloc: str) -> NetlocTuple: + return split_auth_from_netloc(netloc) + + +def _redact_netloc(netloc: str) -> Tuple[str]: + return (redact_netloc(netloc),) + + +def split_auth_netloc_from_url( + url: str, +) -> Tuple[str, str, Tuple[Optional[str], Optional[str]]]: + """ + Parse a url into separate netloc, auth, and url with no auth. + + Returns: (url_without_auth, netloc, (username, password)) + """ + url_without_auth, (netloc, auth) = _transform_url(url, _get_netloc) + return url_without_auth, netloc, auth + + +def remove_auth_from_url(url: str) -> str: + """Return a copy of url with 'username:password@' removed.""" + # username/pass params are passed to subversion through flags + # and are not recognized in the url. + return _transform_url(url, _get_netloc)[0] + + +def redact_auth_from_url(url: str) -> str: + """Replace the password in a given url with ****.""" + return _transform_url(url, _redact_netloc)[0] + + +def redact_auth_from_requirement(req: Requirement) -> str: + """Replace the password in a given requirement url with ****.""" + if not req.url: + return str(req) + return str(req).replace(req.url, redact_auth_from_url(req.url)) + + +class HiddenText: + def __init__(self, secret: str, redacted: str) -> None: + self.secret = secret + self.redacted = redacted + + def __repr__(self) -> str: + return f"" + + def __str__(self) -> str: + return self.redacted + + # This is useful for testing. + def __eq__(self, other: Any) -> bool: + if type(self) != type(other): + return False + + # The string being used for redaction doesn't also have to match, + # just the raw, original string. + return self.secret == other.secret + + +def hide_value(value: str) -> HiddenText: + return HiddenText(value, redacted="****") + + +def hide_url(url: str) -> HiddenText: + redacted = redact_auth_from_url(url) + return HiddenText(url, redacted=redacted) + + +def protect_pip_from_modification_on_windows(modifying_pip: bool) -> None: + """Protection of pip.exe from modification on Windows + + On Windows, any operation modifying pip should be run as: + python -m pip ... + """ + pip_names = [ + "pip", + f"pip{sys.version_info.major}", + f"pip{sys.version_info.major}.{sys.version_info.minor}", + ] + + # See https://github.com/pypa/pip/issues/1299 for more discussion + should_show_use_python_msg = ( + modifying_pip and WINDOWS and os.path.basename(sys.argv[0]) in pip_names + ) + + if should_show_use_python_msg: + new_command = [sys.executable, "-m", "pip"] + sys.argv[1:] + raise CommandError( + "To modify pip, please run the following command:\n{}".format( + " ".join(new_command) + ) + ) + + +def check_externally_managed() -> None: + """Check whether the current environment is externally managed. + + If the ``EXTERNALLY-MANAGED`` config file is found, the current environment + is considered externally managed, and an ExternallyManagedEnvironment is + raised. + """ + if running_under_virtualenv(): + return + marker = os.path.join(sysconfig.get_path("stdlib"), "EXTERNALLY-MANAGED") + if not os.path.isfile(marker): + return + raise ExternallyManagedEnvironment.from_config(marker) + + +def is_console_interactive() -> bool: + """Is this console interactive?""" + return sys.stdin is not None and sys.stdin.isatty() + + +def hash_file(path: str, blocksize: int = 1 << 20) -> Tuple[Any, int]: + """Return (hash, length) for path using hashlib.sha256()""" + + h = hashlib.sha256() + length = 0 + with open(path, "rb") as f: + for block in read_chunks(f, size=blocksize): + length += len(block) + h.update(block) + return h, length + + +def pairwise(iterable: Iterable[Any]) -> Iterator[Tuple[Any, Any]]: + """ + Return paired elements. + + For example: + s -> (s0, s1), (s2, s3), (s4, s5), ... + """ + iterable = iter(iterable) + return zip_longest(iterable, iterable) + + +def partition( + pred: Callable[[T], bool], + iterable: Iterable[T], +) -> Tuple[Iterable[T], Iterable[T]]: + """ + Use a predicate to partition entries into false entries and true entries, + like + + partition(is_odd, range(10)) --> 0 2 4 6 8 and 1 3 5 7 9 + """ + t1, t2 = tee(iterable) + return filterfalse(pred, t1), filter(pred, t2) + + +class ConfiguredBuildBackendHookCaller(BuildBackendHookCaller): + def __init__( + self, + config_holder: Any, + source_dir: str, + build_backend: str, + backend_path: Optional[str] = None, + runner: Optional[Callable[..., None]] = None, + python_executable: Optional[str] = None, + ): + super().__init__( + source_dir, build_backend, backend_path, runner, python_executable + ) + self.config_holder = config_holder + + def build_wheel( + self, + wheel_directory: str, + config_settings: Optional[Dict[str, Union[str, List[str]]]] = None, + metadata_directory: Optional[str] = None, + ) -> str: + cs = self.config_holder.config_settings + return super().build_wheel( + wheel_directory, config_settings=cs, metadata_directory=metadata_directory + ) + + def build_sdist( + self, + sdist_directory: str, + config_settings: Optional[Dict[str, Union[str, List[str]]]] = None, + ) -> str: + cs = self.config_holder.config_settings + return super().build_sdist(sdist_directory, config_settings=cs) + + def build_editable( + self, + wheel_directory: str, + config_settings: Optional[Dict[str, Union[str, List[str]]]] = None, + metadata_directory: Optional[str] = None, + ) -> str: + cs = self.config_holder.config_settings + return super().build_editable( + wheel_directory, config_settings=cs, metadata_directory=metadata_directory + ) + + def get_requires_for_build_wheel( + self, config_settings: Optional[Dict[str, Union[str, List[str]]]] = None + ) -> List[str]: + cs = self.config_holder.config_settings + return super().get_requires_for_build_wheel(config_settings=cs) + + def get_requires_for_build_sdist( + self, config_settings: Optional[Dict[str, Union[str, List[str]]]] = None + ) -> List[str]: + cs = self.config_holder.config_settings + return super().get_requires_for_build_sdist(config_settings=cs) + + def get_requires_for_build_editable( + self, config_settings: Optional[Dict[str, Union[str, List[str]]]] = None + ) -> List[str]: + cs = self.config_holder.config_settings + return super().get_requires_for_build_editable(config_settings=cs) + + def prepare_metadata_for_build_wheel( + self, + metadata_directory: str, + config_settings: Optional[Dict[str, Union[str, List[str]]]] = None, + _allow_fallback: bool = True, + ) -> str: + cs = self.config_holder.config_settings + return super().prepare_metadata_for_build_wheel( + metadata_directory=metadata_directory, + config_settings=cs, + _allow_fallback=_allow_fallback, + ) + + def prepare_metadata_for_build_editable( + self, + metadata_directory: str, + config_settings: Optional[Dict[str, Union[str, List[str]]]] = None, + _allow_fallback: bool = True, + ) -> str: + cs = self.config_holder.config_settings + return super().prepare_metadata_for_build_editable( + metadata_directory=metadata_directory, + config_settings=cs, + _allow_fallback=_allow_fallback, + ) diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/utils/models.py b/.venv/lib/python3.11/site-packages/pip/_internal/utils/models.py new file mode 100644 index 0000000..b6bb21a --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_internal/utils/models.py @@ -0,0 +1,39 @@ +"""Utilities for defining models +""" + +import operator +from typing import Any, Callable, Type + + +class KeyBasedCompareMixin: + """Provides comparison capabilities that is based on a key""" + + __slots__ = ["_compare_key", "_defining_class"] + + def __init__(self, key: Any, defining_class: Type["KeyBasedCompareMixin"]) -> None: + self._compare_key = key + self._defining_class = defining_class + + def __hash__(self) -> int: + return hash(self._compare_key) + + def __lt__(self, other: Any) -> bool: + return self._compare(other, operator.__lt__) + + def __le__(self, other: Any) -> bool: + return self._compare(other, operator.__le__) + + def __gt__(self, other: Any) -> bool: + return self._compare(other, operator.__gt__) + + def __ge__(self, other: Any) -> bool: + return self._compare(other, operator.__ge__) + + def __eq__(self, other: Any) -> bool: + return self._compare(other, operator.__eq__) + + def _compare(self, other: Any, method: Callable[[Any, Any], bool]) -> bool: + if not isinstance(other, self._defining_class): + return NotImplemented + + return method(self._compare_key, other._compare_key) diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/utils/packaging.py b/.venv/lib/python3.11/site-packages/pip/_internal/utils/packaging.py new file mode 100644 index 0000000..b9f6af4 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_internal/utils/packaging.py @@ -0,0 +1,57 @@ +import functools +import logging +import re +from typing import NewType, Optional, Tuple, cast + +from pip._vendor.packaging import specifiers, version +from pip._vendor.packaging.requirements import Requirement + +NormalizedExtra = NewType("NormalizedExtra", str) + +logger = logging.getLogger(__name__) + + +def check_requires_python( + requires_python: Optional[str], version_info: Tuple[int, ...] +) -> bool: + """ + Check if the given Python version matches a "Requires-Python" specifier. + + :param version_info: A 3-tuple of ints representing a Python + major-minor-micro version to check (e.g. `sys.version_info[:3]`). + + :return: `True` if the given Python version satisfies the requirement. + Otherwise, return `False`. + + :raises InvalidSpecifier: If `requires_python` has an invalid format. + """ + if requires_python is None: + # The package provides no information + return True + requires_python_specifier = specifiers.SpecifierSet(requires_python) + + python_version = version.parse(".".join(map(str, version_info))) + return python_version in requires_python_specifier + + +@functools.lru_cache(maxsize=512) +def get_requirement(req_string: str) -> Requirement: + """Construct a packaging.Requirement object with caching""" + # Parsing requirement strings is expensive, and is also expected to happen + # with a low diversity of different arguments (at least relative the number + # constructed). This method adds a cache to requirement object creation to + # minimize repeated parsing of the same string to construct equivalent + # Requirement objects. + return Requirement(req_string) + + +def safe_extra(extra: str) -> NormalizedExtra: + """Convert an arbitrary string to a standard 'extra' name + + Any runs of non-alphanumeric characters are replaced with a single '_', + and the result is always lowercased. + + This function is duplicated from ``pkg_resources``. Note that this is not + the same to either ``canonicalize_name`` or ``_egg_link_name``. + """ + return cast(NormalizedExtra, re.sub("[^A-Za-z0-9.-]+", "_", extra).lower()) diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/utils/setuptools_build.py b/.venv/lib/python3.11/site-packages/pip/_internal/utils/setuptools_build.py new file mode 100644 index 0000000..96d1b24 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_internal/utils/setuptools_build.py @@ -0,0 +1,146 @@ +import sys +import textwrap +from typing import List, Optional, Sequence + +# Shim to wrap setup.py invocation with setuptools +# Note that __file__ is handled via two {!r} *and* %r, to ensure that paths on +# Windows are correctly handled (it should be "C:\\Users" not "C:\Users"). +_SETUPTOOLS_SHIM = textwrap.dedent( + """ + exec(compile(''' + # This is -- a caller that pip uses to run setup.py + # + # - It imports setuptools before invoking setup.py, to enable projects that directly + # import from `distutils.core` to work with newer packaging standards. + # - It provides a clear error message when setuptools is not installed. + # - It sets `sys.argv[0]` to the underlying `setup.py`, when invoking `setup.py` so + # setuptools doesn't think the script is `-c`. This avoids the following warning: + # manifest_maker: standard file '-c' not found". + # - It generates a shim setup.py, for handling setup.cfg-only projects. + import os, sys, tokenize + + try: + import setuptools + except ImportError as error: + print( + "ERROR: Can not execute `setup.py` since setuptools is not available in " + "the build environment.", + file=sys.stderr, + ) + sys.exit(1) + + __file__ = %r + sys.argv[0] = __file__ + + if os.path.exists(__file__): + filename = __file__ + with tokenize.open(__file__) as f: + setup_py_code = f.read() + else: + filename = "" + setup_py_code = "from setuptools import setup; setup()" + + exec(compile(setup_py_code, filename, "exec")) + ''' % ({!r},), "", "exec")) + """ +).rstrip() + + +def make_setuptools_shim_args( + setup_py_path: str, + global_options: Optional[Sequence[str]] = None, + no_user_config: bool = False, + unbuffered_output: bool = False, +) -> List[str]: + """ + Get setuptools command arguments with shim wrapped setup file invocation. + + :param setup_py_path: The path to setup.py to be wrapped. + :param global_options: Additional global options. + :param no_user_config: If True, disables personal user configuration. + :param unbuffered_output: If True, adds the unbuffered switch to the + argument list. + """ + args = [sys.executable] + if unbuffered_output: + args += ["-u"] + args += ["-c", _SETUPTOOLS_SHIM.format(setup_py_path)] + if global_options: + args += global_options + if no_user_config: + args += ["--no-user-cfg"] + return args + + +def make_setuptools_bdist_wheel_args( + setup_py_path: str, + global_options: Sequence[str], + build_options: Sequence[str], + destination_dir: str, +) -> List[str]: + # NOTE: Eventually, we'd want to also -S to the flags here, when we're + # isolating. Currently, it breaks Python in virtualenvs, because it + # relies on site.py to find parts of the standard library outside the + # virtualenv. + args = make_setuptools_shim_args( + setup_py_path, global_options=global_options, unbuffered_output=True + ) + args += ["bdist_wheel", "-d", destination_dir] + args += build_options + return args + + +def make_setuptools_clean_args( + setup_py_path: str, + global_options: Sequence[str], +) -> List[str]: + args = make_setuptools_shim_args( + setup_py_path, global_options=global_options, unbuffered_output=True + ) + args += ["clean", "--all"] + return args + + +def make_setuptools_develop_args( + setup_py_path: str, + *, + global_options: Sequence[str], + no_user_config: bool, + prefix: Optional[str], + home: Optional[str], + use_user_site: bool, +) -> List[str]: + assert not (use_user_site and prefix) + + args = make_setuptools_shim_args( + setup_py_path, + global_options=global_options, + no_user_config=no_user_config, + ) + + args += ["develop", "--no-deps"] + + if prefix: + args += ["--prefix", prefix] + if home is not None: + args += ["--install-dir", home] + + if use_user_site: + args += ["--user", "--prefix="] + + return args + + +def make_setuptools_egg_info_args( + setup_py_path: str, + egg_info_dir: Optional[str], + no_user_config: bool, +) -> List[str]: + args = make_setuptools_shim_args(setup_py_path, no_user_config=no_user_config) + + args += ["egg_info"] + + if egg_info_dir: + args += ["--egg-base", egg_info_dir] + + return args diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/utils/subprocess.py b/.venv/lib/python3.11/site-packages/pip/_internal/utils/subprocess.py new file mode 100644 index 0000000..79580b0 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_internal/utils/subprocess.py @@ -0,0 +1,260 @@ +import logging +import os +import shlex +import subprocess +from typing import ( + TYPE_CHECKING, + Any, + Callable, + Iterable, + List, + Mapping, + Optional, + Union, +) + +from pip._vendor.rich.markup import escape + +from pip._internal.cli.spinners import SpinnerInterface, open_spinner +from pip._internal.exceptions import InstallationSubprocessError +from pip._internal.utils.logging import VERBOSE, subprocess_logger +from pip._internal.utils.misc import HiddenText + +if TYPE_CHECKING: + # Literal was introduced in Python 3.8. + # + # TODO: Remove `if TYPE_CHECKING` when dropping support for Python 3.7. + from typing import Literal + +CommandArgs = List[Union[str, HiddenText]] + + +def make_command(*args: Union[str, HiddenText, CommandArgs]) -> CommandArgs: + """ + Create a CommandArgs object. + """ + command_args: CommandArgs = [] + for arg in args: + # Check for list instead of CommandArgs since CommandArgs is + # only known during type-checking. + if isinstance(arg, list): + command_args.extend(arg) + else: + # Otherwise, arg is str or HiddenText. + command_args.append(arg) + + return command_args + + +def format_command_args(args: Union[List[str], CommandArgs]) -> str: + """ + Format command arguments for display. + """ + # For HiddenText arguments, display the redacted form by calling str(). + # Also, we don't apply str() to arguments that aren't HiddenText since + # this can trigger a UnicodeDecodeError in Python 2 if the argument + # has type unicode and includes a non-ascii character. (The type + # checker doesn't ensure the annotations are correct in all cases.) + return " ".join( + shlex.quote(str(arg)) if isinstance(arg, HiddenText) else shlex.quote(arg) + for arg in args + ) + + +def reveal_command_args(args: Union[List[str], CommandArgs]) -> List[str]: + """ + Return the arguments in their raw, unredacted form. + """ + return [arg.secret if isinstance(arg, HiddenText) else arg for arg in args] + + +def call_subprocess( + cmd: Union[List[str], CommandArgs], + show_stdout: bool = False, + cwd: Optional[str] = None, + on_returncode: 'Literal["raise", "warn", "ignore"]' = "raise", + extra_ok_returncodes: Optional[Iterable[int]] = None, + extra_environ: Optional[Mapping[str, Any]] = None, + unset_environ: Optional[Iterable[str]] = None, + spinner: Optional[SpinnerInterface] = None, + log_failed_cmd: Optional[bool] = True, + stdout_only: Optional[bool] = False, + *, + command_desc: str, +) -> str: + """ + Args: + show_stdout: if true, use INFO to log the subprocess's stderr and + stdout streams. Otherwise, use DEBUG. Defaults to False. + extra_ok_returncodes: an iterable of integer return codes that are + acceptable, in addition to 0. Defaults to None, which means []. + unset_environ: an iterable of environment variable names to unset + prior to calling subprocess.Popen(). + log_failed_cmd: if false, failed commands are not logged, only raised. + stdout_only: if true, return only stdout, else return both. When true, + logging of both stdout and stderr occurs when the subprocess has + terminated, else logging occurs as subprocess output is produced. + """ + if extra_ok_returncodes is None: + extra_ok_returncodes = [] + if unset_environ is None: + unset_environ = [] + # Most places in pip use show_stdout=False. What this means is-- + # + # - We connect the child's output (combined stderr and stdout) to a + # single pipe, which we read. + # - We log this output to stderr at DEBUG level as it is received. + # - If DEBUG logging isn't enabled (e.g. if --verbose logging wasn't + # requested), then we show a spinner so the user can still see the + # subprocess is in progress. + # - If the subprocess exits with an error, we log the output to stderr + # at ERROR level if it hasn't already been displayed to the console + # (e.g. if --verbose logging wasn't enabled). This way we don't log + # the output to the console twice. + # + # If show_stdout=True, then the above is still done, but with DEBUG + # replaced by INFO. + if show_stdout: + # Then log the subprocess output at INFO level. + log_subprocess: Callable[..., None] = subprocess_logger.info + used_level = logging.INFO + else: + # Then log the subprocess output using VERBOSE. This also ensures + # it will be logged to the log file (aka user_log), if enabled. + log_subprocess = subprocess_logger.verbose + used_level = VERBOSE + + # Whether the subprocess will be visible in the console. + showing_subprocess = subprocess_logger.getEffectiveLevel() <= used_level + + # Only use the spinner if we're not showing the subprocess output + # and we have a spinner. + use_spinner = not showing_subprocess and spinner is not None + + log_subprocess("Running command %s", command_desc) + env = os.environ.copy() + if extra_environ: + env.update(extra_environ) + for name in unset_environ: + env.pop(name, None) + try: + proc = subprocess.Popen( + # Convert HiddenText objects to the underlying str. + reveal_command_args(cmd), + stdin=subprocess.PIPE, + stdout=subprocess.PIPE, + stderr=subprocess.STDOUT if not stdout_only else subprocess.PIPE, + cwd=cwd, + env=env, + errors="backslashreplace", + ) + except Exception as exc: + if log_failed_cmd: + subprocess_logger.critical( + "Error %s while executing command %s", + exc, + command_desc, + ) + raise + all_output = [] + if not stdout_only: + assert proc.stdout + assert proc.stdin + proc.stdin.close() + # In this mode, stdout and stderr are in the same pipe. + while True: + line: str = proc.stdout.readline() + if not line: + break + line = line.rstrip() + all_output.append(line + "\n") + + # Show the line immediately. + log_subprocess(line) + # Update the spinner. + if use_spinner: + assert spinner + spinner.spin() + try: + proc.wait() + finally: + if proc.stdout: + proc.stdout.close() + output = "".join(all_output) + else: + # In this mode, stdout and stderr are in different pipes. + # We must use communicate() which is the only safe way to read both. + out, err = proc.communicate() + # log line by line to preserve pip log indenting + for out_line in out.splitlines(): + log_subprocess(out_line) + all_output.append(out) + for err_line in err.splitlines(): + log_subprocess(err_line) + all_output.append(err) + output = out + + proc_had_error = proc.returncode and proc.returncode not in extra_ok_returncodes + if use_spinner: + assert spinner + if proc_had_error: + spinner.finish("error") + else: + spinner.finish("done") + if proc_had_error: + if on_returncode == "raise": + error = InstallationSubprocessError( + command_description=command_desc, + exit_code=proc.returncode, + output_lines=all_output if not showing_subprocess else None, + ) + if log_failed_cmd: + subprocess_logger.error("%s", error, extra={"rich": True}) + subprocess_logger.verbose( + "[bold magenta]full command[/]: [blue]%s[/]", + escape(format_command_args(cmd)), + extra={"markup": True}, + ) + subprocess_logger.verbose( + "[bold magenta]cwd[/]: %s", + escape(cwd or "[inherit]"), + extra={"markup": True}, + ) + + raise error + elif on_returncode == "warn": + subprocess_logger.warning( + 'Command "%s" had error code %s in %s', + command_desc, + proc.returncode, + cwd, + ) + elif on_returncode == "ignore": + pass + else: + raise ValueError(f"Invalid value: on_returncode={on_returncode!r}") + return output + + +def runner_with_spinner_message(message: str) -> Callable[..., None]: + """Provide a subprocess_runner that shows a spinner message. + + Intended for use with for BuildBackendHookCaller. Thus, the runner has + an API that matches what's expected by BuildBackendHookCaller.subprocess_runner. + """ + + def runner( + cmd: List[str], + cwd: Optional[str] = None, + extra_environ: Optional[Mapping[str, Any]] = None, + ) -> None: + with open_spinner(message) as spinner: + call_subprocess( + cmd, + command_desc=message, + cwd=cwd, + extra_environ=extra_environ, + spinner=spinner, + ) + + return runner diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/utils/temp_dir.py b/.venv/lib/python3.11/site-packages/pip/_internal/utils/temp_dir.py new file mode 100644 index 0000000..4eec5f3 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_internal/utils/temp_dir.py @@ -0,0 +1,296 @@ +import errno +import itertools +import logging +import os.path +import tempfile +import traceback +from contextlib import ExitStack, contextmanager +from pathlib import Path +from typing import ( + Any, + Callable, + Dict, + Generator, + List, + Optional, + TypeVar, + Union, +) + +from pip._internal.utils.misc import enum, rmtree + +logger = logging.getLogger(__name__) + +_T = TypeVar("_T", bound="TempDirectory") + + +# Kinds of temporary directories. Only needed for ones that are +# globally-managed. +tempdir_kinds = enum( + BUILD_ENV="build-env", + EPHEM_WHEEL_CACHE="ephem-wheel-cache", + REQ_BUILD="req-build", +) + + +_tempdir_manager: Optional[ExitStack] = None + + +@contextmanager +def global_tempdir_manager() -> Generator[None, None, None]: + global _tempdir_manager + with ExitStack() as stack: + old_tempdir_manager, _tempdir_manager = _tempdir_manager, stack + try: + yield + finally: + _tempdir_manager = old_tempdir_manager + + +class TempDirectoryTypeRegistry: + """Manages temp directory behavior""" + + def __init__(self) -> None: + self._should_delete: Dict[str, bool] = {} + + def set_delete(self, kind: str, value: bool) -> None: + """Indicate whether a TempDirectory of the given kind should be + auto-deleted. + """ + self._should_delete[kind] = value + + def get_delete(self, kind: str) -> bool: + """Get configured auto-delete flag for a given TempDirectory type, + default True. + """ + return self._should_delete.get(kind, True) + + +_tempdir_registry: Optional[TempDirectoryTypeRegistry] = None + + +@contextmanager +def tempdir_registry() -> Generator[TempDirectoryTypeRegistry, None, None]: + """Provides a scoped global tempdir registry that can be used to dictate + whether directories should be deleted. + """ + global _tempdir_registry + old_tempdir_registry = _tempdir_registry + _tempdir_registry = TempDirectoryTypeRegistry() + try: + yield _tempdir_registry + finally: + _tempdir_registry = old_tempdir_registry + + +class _Default: + pass + + +_default = _Default() + + +class TempDirectory: + """Helper class that owns and cleans up a temporary directory. + + This class can be used as a context manager or as an OO representation of a + temporary directory. + + Attributes: + path + Location to the created temporary directory + delete + Whether the directory should be deleted when exiting + (when used as a contextmanager) + + Methods: + cleanup() + Deletes the temporary directory + + When used as a context manager, if the delete attribute is True, on + exiting the context the temporary directory is deleted. + """ + + def __init__( + self, + path: Optional[str] = None, + delete: Union[bool, None, _Default] = _default, + kind: str = "temp", + globally_managed: bool = False, + ignore_cleanup_errors: bool = True, + ): + super().__init__() + + if delete is _default: + if path is not None: + # If we were given an explicit directory, resolve delete option + # now. + delete = False + else: + # Otherwise, we wait until cleanup and see what + # tempdir_registry says. + delete = None + + # The only time we specify path is in for editables where it + # is the value of the --src option. + if path is None: + path = self._create(kind) + + self._path = path + self._deleted = False + self.delete = delete + self.kind = kind + self.ignore_cleanup_errors = ignore_cleanup_errors + + if globally_managed: + assert _tempdir_manager is not None + _tempdir_manager.enter_context(self) + + @property + def path(self) -> str: + assert not self._deleted, f"Attempted to access deleted path: {self._path}" + return self._path + + def __repr__(self) -> str: + return f"<{self.__class__.__name__} {self.path!r}>" + + def __enter__(self: _T) -> _T: + return self + + def __exit__(self, exc: Any, value: Any, tb: Any) -> None: + if self.delete is not None: + delete = self.delete + elif _tempdir_registry: + delete = _tempdir_registry.get_delete(self.kind) + else: + delete = True + + if delete: + self.cleanup() + + def _create(self, kind: str) -> str: + """Create a temporary directory and store its path in self.path""" + # We realpath here because some systems have their default tmpdir + # symlinked to another directory. This tends to confuse build + # scripts, so we canonicalize the path by traversing potential + # symlinks here. + path = os.path.realpath(tempfile.mkdtemp(prefix=f"pip-{kind}-")) + logger.debug("Created temporary directory: %s", path) + return path + + def cleanup(self) -> None: + """Remove the temporary directory created and reset state""" + self._deleted = True + if not os.path.exists(self._path): + return + + errors: List[BaseException] = [] + + def onerror( + func: Callable[..., Any], + path: Path, + exc_val: BaseException, + ) -> None: + """Log a warning for a `rmtree` error and continue""" + formatted_exc = "\n".join( + traceback.format_exception_only(type(exc_val), exc_val) + ) + formatted_exc = formatted_exc.rstrip() # remove trailing new line + if func in (os.unlink, os.remove, os.rmdir): + logger.debug( + "Failed to remove a temporary file '%s' due to %s.\n", + path, + formatted_exc, + ) + else: + logger.debug("%s failed with %s.", func.__qualname__, formatted_exc) + errors.append(exc_val) + + if self.ignore_cleanup_errors: + try: + # first try with tenacity; retrying to handle ephemeral errors + rmtree(self._path, ignore_errors=False) + except OSError: + # last pass ignore/log all errors + rmtree(self._path, onexc=onerror) + if errors: + logger.warning( + "Failed to remove contents in a temporary directory '%s'.\n" + "You can safely remove it manually.", + self._path, + ) + else: + rmtree(self._path) + + +class AdjacentTempDirectory(TempDirectory): + """Helper class that creates a temporary directory adjacent to a real one. + + Attributes: + original + The original directory to create a temp directory for. + path + After calling create() or entering, contains the full + path to the temporary directory. + delete + Whether the directory should be deleted when exiting + (when used as a contextmanager) + + """ + + # The characters that may be used to name the temp directory + # We always prepend a ~ and then rotate through these until + # a usable name is found. + # pkg_resources raises a different error for .dist-info folder + # with leading '-' and invalid metadata + LEADING_CHARS = "-~.=%0123456789" + + def __init__(self, original: str, delete: Optional[bool] = None) -> None: + self.original = original.rstrip("/\\") + super().__init__(delete=delete) + + @classmethod + def _generate_names(cls, name: str) -> Generator[str, None, None]: + """Generates a series of temporary names. + + The algorithm replaces the leading characters in the name + with ones that are valid filesystem characters, but are not + valid package names (for both Python and pip definitions of + package). + """ + for i in range(1, len(name)): + for candidate in itertools.combinations_with_replacement( + cls.LEADING_CHARS, i - 1 + ): + new_name = "~" + "".join(candidate) + name[i:] + if new_name != name: + yield new_name + + # If we make it this far, we will have to make a longer name + for i in range(len(cls.LEADING_CHARS)): + for candidate in itertools.combinations_with_replacement( + cls.LEADING_CHARS, i + ): + new_name = "~" + "".join(candidate) + name + if new_name != name: + yield new_name + + def _create(self, kind: str) -> str: + root, name = os.path.split(self.original) + for candidate in self._generate_names(name): + path = os.path.join(root, candidate) + try: + os.mkdir(path) + except OSError as ex: + # Continue if the name exists already + if ex.errno != errno.EEXIST: + raise + else: + path = os.path.realpath(path) + break + else: + # Final fallback on the default behavior. + path = os.path.realpath(tempfile.mkdtemp(prefix=f"pip-{kind}-")) + + logger.debug("Created temporary directory: %s", path) + return path diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/utils/unpacking.py b/.venv/lib/python3.11/site-packages/pip/_internal/utils/unpacking.py new file mode 100644 index 0000000..78b5c13 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_internal/utils/unpacking.py @@ -0,0 +1,257 @@ +"""Utilities related archives. +""" + +import logging +import os +import shutil +import stat +import tarfile +import zipfile +from typing import Iterable, List, Optional +from zipfile import ZipInfo + +from pip._internal.exceptions import InstallationError +from pip._internal.utils.filetypes import ( + BZ2_EXTENSIONS, + TAR_EXTENSIONS, + XZ_EXTENSIONS, + ZIP_EXTENSIONS, +) +from pip._internal.utils.misc import ensure_dir + +logger = logging.getLogger(__name__) + + +SUPPORTED_EXTENSIONS = ZIP_EXTENSIONS + TAR_EXTENSIONS + +try: + import bz2 # noqa + + SUPPORTED_EXTENSIONS += BZ2_EXTENSIONS +except ImportError: + logger.debug("bz2 module is not available") + +try: + # Only for Python 3.3+ + import lzma # noqa + + SUPPORTED_EXTENSIONS += XZ_EXTENSIONS +except ImportError: + logger.debug("lzma module is not available") + + +def current_umask() -> int: + """Get the current umask which involves having to set it temporarily.""" + mask = os.umask(0) + os.umask(mask) + return mask + + +def split_leading_dir(path: str) -> List[str]: + path = path.lstrip("/").lstrip("\\") + if "/" in path and ( + ("\\" in path and path.find("/") < path.find("\\")) or "\\" not in path + ): + return path.split("/", 1) + elif "\\" in path: + return path.split("\\", 1) + else: + return [path, ""] + + +def has_leading_dir(paths: Iterable[str]) -> bool: + """Returns true if all the paths have the same leading path name + (i.e., everything is in one subdirectory in an archive)""" + common_prefix = None + for path in paths: + prefix, rest = split_leading_dir(path) + if not prefix: + return False + elif common_prefix is None: + common_prefix = prefix + elif prefix != common_prefix: + return False + return True + + +def is_within_directory(directory: str, target: str) -> bool: + """ + Return true if the absolute path of target is within the directory + """ + abs_directory = os.path.abspath(directory) + abs_target = os.path.abspath(target) + + prefix = os.path.commonprefix([abs_directory, abs_target]) + return prefix == abs_directory + + +def set_extracted_file_to_default_mode_plus_executable(path: str) -> None: + """ + Make file present at path have execute for user/group/world + (chmod +x) is no-op on windows per python docs + """ + os.chmod(path, (0o777 & ~current_umask() | 0o111)) + + +def zip_item_is_executable(info: ZipInfo) -> bool: + mode = info.external_attr >> 16 + # if mode and regular file and any execute permissions for + # user/group/world? + return bool(mode and stat.S_ISREG(mode) and mode & 0o111) + + +def unzip_file(filename: str, location: str, flatten: bool = True) -> None: + """ + Unzip the file (with path `filename`) to the destination `location`. All + files are written based on system defaults and umask (i.e. permissions are + not preserved), except that regular file members with any execute + permissions (user, group, or world) have "chmod +x" applied after being + written. Note that for windows, any execute changes using os.chmod are + no-ops per the python docs. + """ + ensure_dir(location) + zipfp = open(filename, "rb") + try: + zip = zipfile.ZipFile(zipfp, allowZip64=True) + leading = has_leading_dir(zip.namelist()) and flatten + for info in zip.infolist(): + name = info.filename + fn = name + if leading: + fn = split_leading_dir(name)[1] + fn = os.path.join(location, fn) + dir = os.path.dirname(fn) + if not is_within_directory(location, fn): + message = ( + "The zip file ({}) has a file ({}) trying to install " + "outside target directory ({})" + ) + raise InstallationError(message.format(filename, fn, location)) + if fn.endswith("/") or fn.endswith("\\"): + # A directory + ensure_dir(fn) + else: + ensure_dir(dir) + # Don't use read() to avoid allocating an arbitrarily large + # chunk of memory for the file's content + fp = zip.open(name) + try: + with open(fn, "wb") as destfp: + shutil.copyfileobj(fp, destfp) + finally: + fp.close() + if zip_item_is_executable(info): + set_extracted_file_to_default_mode_plus_executable(fn) + finally: + zipfp.close() + + +def untar_file(filename: str, location: str) -> None: + """ + Untar the file (with path `filename`) to the destination `location`. + All files are written based on system defaults and umask (i.e. permissions + are not preserved), except that regular file members with any execute + permissions (user, group, or world) have "chmod +x" applied after being + written. Note that for windows, any execute changes using os.chmod are + no-ops per the python docs. + """ + ensure_dir(location) + if filename.lower().endswith(".gz") or filename.lower().endswith(".tgz"): + mode = "r:gz" + elif filename.lower().endswith(BZ2_EXTENSIONS): + mode = "r:bz2" + elif filename.lower().endswith(XZ_EXTENSIONS): + mode = "r:xz" + elif filename.lower().endswith(".tar"): + mode = "r" + else: + logger.warning( + "Cannot determine compression type for file %s", + filename, + ) + mode = "r:*" + tar = tarfile.open(filename, mode, encoding="utf-8") + try: + leading = has_leading_dir([member.name for member in tar.getmembers()]) + for member in tar.getmembers(): + fn = member.name + if leading: + fn = split_leading_dir(fn)[1] + path = os.path.join(location, fn) + if not is_within_directory(location, path): + message = ( + "The tar file ({}) has a file ({}) trying to install " + "outside target directory ({})" + ) + raise InstallationError(message.format(filename, path, location)) + if member.isdir(): + ensure_dir(path) + elif member.issym(): + try: + tar._extract_member(member, path) + except Exception as exc: + # Some corrupt tar files seem to produce this + # (specifically bad symlinks) + logger.warning( + "In the tar file %s the member %s is invalid: %s", + filename, + member.name, + exc, + ) + continue + else: + try: + fp = tar.extractfile(member) + except (KeyError, AttributeError) as exc: + # Some corrupt tar files seem to produce this + # (specifically bad symlinks) + logger.warning( + "In the tar file %s the member %s is invalid: %s", + filename, + member.name, + exc, + ) + continue + ensure_dir(os.path.dirname(path)) + assert fp is not None + with open(path, "wb") as destfp: + shutil.copyfileobj(fp, destfp) + fp.close() + # Update the timestamp (useful for cython compiled files) + tar.utime(member, path) + # member have any execute permissions for user/group/world? + if member.mode & 0o111: + set_extracted_file_to_default_mode_plus_executable(path) + finally: + tar.close() + + +def unpack_file( + filename: str, + location: str, + content_type: Optional[str] = None, +) -> None: + filename = os.path.realpath(filename) + if ( + content_type == "application/zip" + or filename.lower().endswith(ZIP_EXTENSIONS) + or zipfile.is_zipfile(filename) + ): + unzip_file(filename, location, flatten=not filename.endswith(".whl")) + elif ( + content_type == "application/x-gzip" + or tarfile.is_tarfile(filename) + or filename.lower().endswith(TAR_EXTENSIONS + BZ2_EXTENSIONS + XZ_EXTENSIONS) + ): + untar_file(filename, location) + else: + # FIXME: handle? + # FIXME: magic signatures? + logger.critical( + "Cannot unpack file %s (downloaded from %s, content-type: %s); " + "cannot detect archive format", + filename, + location, + content_type, + ) + raise InstallationError(f"Cannot determine archive format of {location}") diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/utils/urls.py b/.venv/lib/python3.11/site-packages/pip/_internal/utils/urls.py new file mode 100644 index 0000000..6ba2e04 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_internal/utils/urls.py @@ -0,0 +1,62 @@ +import os +import string +import urllib.parse +import urllib.request +from typing import Optional + +from .compat import WINDOWS + + +def get_url_scheme(url: str) -> Optional[str]: + if ":" not in url: + return None + return url.split(":", 1)[0].lower() + + +def path_to_url(path: str) -> str: + """ + Convert a path to a file: URL. The path will be made absolute and have + quoted path parts. + """ + path = os.path.normpath(os.path.abspath(path)) + url = urllib.parse.urljoin("file:", urllib.request.pathname2url(path)) + return url + + +def url_to_path(url: str) -> str: + """ + Convert a file: URL to a path. + """ + assert url.startswith( + "file:" + ), f"You can only turn file: urls into filenames (not {url!r})" + + _, netloc, path, _, _ = urllib.parse.urlsplit(url) + + if not netloc or netloc == "localhost": + # According to RFC 8089, same as empty authority. + netloc = "" + elif WINDOWS: + # If we have a UNC path, prepend UNC share notation. + netloc = "\\\\" + netloc + else: + raise ValueError( + f"non-local file URIs are not supported on this platform: {url!r}" + ) + + path = urllib.request.url2pathname(netloc + path) + + # On Windows, urlsplit parses the path as something like "/C:/Users/foo". + # This creates issues for path-related functions like io.open(), so we try + # to detect and strip the leading slash. + if ( + WINDOWS + and not netloc # Not UNC. + and len(path) >= 3 + and path[0] == "/" # Leading slash to strip. + and path[1] in string.ascii_letters # Drive letter. + and path[2:4] in (":", ":/") # Colon + end of string, or colon + absolute path. + ): + path = path[1:] + + return path diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/utils/virtualenv.py b/.venv/lib/python3.11/site-packages/pip/_internal/utils/virtualenv.py new file mode 100644 index 0000000..882e36f --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_internal/utils/virtualenv.py @@ -0,0 +1,104 @@ +import logging +import os +import re +import site +import sys +from typing import List, Optional + +logger = logging.getLogger(__name__) +_INCLUDE_SYSTEM_SITE_PACKAGES_REGEX = re.compile( + r"include-system-site-packages\s*=\s*(?Ptrue|false)" +) + + +def _running_under_venv() -> bool: + """Checks if sys.base_prefix and sys.prefix match. + + This handles PEP 405 compliant virtual environments. + """ + return sys.prefix != getattr(sys, "base_prefix", sys.prefix) + + +def _running_under_legacy_virtualenv() -> bool: + """Checks if sys.real_prefix is set. + + This handles virtual environments created with pypa's virtualenv. + """ + # pypa/virtualenv case + return hasattr(sys, "real_prefix") + + +def running_under_virtualenv() -> bool: + """True if we're running inside a virtual environment, False otherwise.""" + return _running_under_venv() or _running_under_legacy_virtualenv() + + +def _get_pyvenv_cfg_lines() -> Optional[List[str]]: + """Reads {sys.prefix}/pyvenv.cfg and returns its contents as list of lines + + Returns None, if it could not read/access the file. + """ + pyvenv_cfg_file = os.path.join(sys.prefix, "pyvenv.cfg") + try: + # Although PEP 405 does not specify, the built-in venv module always + # writes with UTF-8. (pypa/pip#8717) + with open(pyvenv_cfg_file, encoding="utf-8") as f: + return f.read().splitlines() # avoids trailing newlines + except OSError: + return None + + +def _no_global_under_venv() -> bool: + """Check `{sys.prefix}/pyvenv.cfg` for system site-packages inclusion + + PEP 405 specifies that when system site-packages are not supposed to be + visible from a virtual environment, `pyvenv.cfg` must contain the following + line: + + include-system-site-packages = false + + Additionally, log a warning if accessing the file fails. + """ + cfg_lines = _get_pyvenv_cfg_lines() + if cfg_lines is None: + # We're not in a "sane" venv, so assume there is no system + # site-packages access (since that's PEP 405's default state). + logger.warning( + "Could not access 'pyvenv.cfg' despite a virtual environment " + "being active. Assuming global site-packages is not accessible " + "in this environment." + ) + return True + + for line in cfg_lines: + match = _INCLUDE_SYSTEM_SITE_PACKAGES_REGEX.match(line) + if match is not None and match.group("value") == "false": + return True + return False + + +def _no_global_under_legacy_virtualenv() -> bool: + """Check if "no-global-site-packages.txt" exists beside site.py + + This mirrors logic in pypa/virtualenv for determining whether system + site-packages are visible in the virtual environment. + """ + site_mod_dir = os.path.dirname(os.path.abspath(site.__file__)) + no_global_site_packages_file = os.path.join( + site_mod_dir, + "no-global-site-packages.txt", + ) + return os.path.exists(no_global_site_packages_file) + + +def virtualenv_no_global() -> bool: + """Returns a boolean, whether running in venv with no system site-packages.""" + # PEP 405 compliance needs to be checked first since virtualenv >=20 would + # return True for both checks, but is only able to use the PEP 405 config. + if _running_under_venv(): + return _no_global_under_venv() + + if _running_under_legacy_virtualenv(): + return _no_global_under_legacy_virtualenv() + + return False diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/utils/wheel.py b/.venv/lib/python3.11/site-packages/pip/_internal/utils/wheel.py new file mode 100644 index 0000000..3551f8f --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_internal/utils/wheel.py @@ -0,0 +1,134 @@ +"""Support functions for working with wheel files. +""" + +import logging +from email.message import Message +from email.parser import Parser +from typing import Tuple +from zipfile import BadZipFile, ZipFile + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.exceptions import UnsupportedWheel + +VERSION_COMPATIBLE = (1, 0) + + +logger = logging.getLogger(__name__) + + +def parse_wheel(wheel_zip: ZipFile, name: str) -> Tuple[str, Message]: + """Extract information from the provided wheel, ensuring it meets basic + standards. + + Returns the name of the .dist-info directory and the parsed WHEEL metadata. + """ + try: + info_dir = wheel_dist_info_dir(wheel_zip, name) + metadata = wheel_metadata(wheel_zip, info_dir) + version = wheel_version(metadata) + except UnsupportedWheel as e: + raise UnsupportedWheel(f"{name} has an invalid wheel, {str(e)}") + + check_compatibility(version, name) + + return info_dir, metadata + + +def wheel_dist_info_dir(source: ZipFile, name: str) -> str: + """Returns the name of the contained .dist-info directory. + + Raises AssertionError or UnsupportedWheel if not found, >1 found, or + it doesn't match the provided name. + """ + # Zip file path separators must be / + subdirs = {p.split("/", 1)[0] for p in source.namelist()} + + info_dirs = [s for s in subdirs if s.endswith(".dist-info")] + + if not info_dirs: + raise UnsupportedWheel(".dist-info directory not found") + + if len(info_dirs) > 1: + raise UnsupportedWheel( + "multiple .dist-info directories found: {}".format(", ".join(info_dirs)) + ) + + info_dir = info_dirs[0] + + info_dir_name = canonicalize_name(info_dir) + canonical_name = canonicalize_name(name) + if not info_dir_name.startswith(canonical_name): + raise UnsupportedWheel( + f".dist-info directory {info_dir!r} does not start with {canonical_name!r}" + ) + + return info_dir + + +def read_wheel_metadata_file(source: ZipFile, path: str) -> bytes: + try: + return source.read(path) + # BadZipFile for general corruption, KeyError for missing entry, + # and RuntimeError for password-protected files + except (BadZipFile, KeyError, RuntimeError) as e: + raise UnsupportedWheel(f"could not read {path!r} file: {e!r}") + + +def wheel_metadata(source: ZipFile, dist_info_dir: str) -> Message: + """Return the WHEEL metadata of an extracted wheel, if possible. + Otherwise, raise UnsupportedWheel. + """ + path = f"{dist_info_dir}/WHEEL" + # Zip file path separators must be / + wheel_contents = read_wheel_metadata_file(source, path) + + try: + wheel_text = wheel_contents.decode() + except UnicodeDecodeError as e: + raise UnsupportedWheel(f"error decoding {path!r}: {e!r}") + + # FeedParser (used by Parser) does not raise any exceptions. The returned + # message may have .defects populated, but for backwards-compatibility we + # currently ignore them. + return Parser().parsestr(wheel_text) + + +def wheel_version(wheel_data: Message) -> Tuple[int, ...]: + """Given WHEEL metadata, return the parsed Wheel-Version. + Otherwise, raise UnsupportedWheel. + """ + version_text = wheel_data["Wheel-Version"] + if version_text is None: + raise UnsupportedWheel("WHEEL is missing Wheel-Version") + + version = version_text.strip() + + try: + return tuple(map(int, version.split("."))) + except ValueError: + raise UnsupportedWheel(f"invalid Wheel-Version: {version!r}") + + +def check_compatibility(version: Tuple[int, ...], name: str) -> None: + """Raises errors or warns if called with an incompatible Wheel-Version. + + pip should refuse to install a Wheel-Version that's a major series + ahead of what it's compatible with (e.g 2.0 > 1.1); and warn when + installing a version only minor version ahead (e.g 1.2 > 1.1). + + version: a 2-tuple representing a Wheel-Version (Major, Minor) + name: name of wheel or package to raise exception about + + :raises UnsupportedWheel: when an incompatible Wheel-Version is given + """ + if version[0] > VERSION_COMPATIBLE[0]: + raise UnsupportedWheel( + "{}'s Wheel-Version ({}) is not compatible with this version " + "of pip".format(name, ".".join(map(str, version))) + ) + elif version > VERSION_COMPATIBLE: + logger.warning( + "Installing from a newer Wheel-Version (%s)", + ".".join(map(str, version)), + ) diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/vcs/__init__.py b/.venv/lib/python3.11/site-packages/pip/_internal/vcs/__init__.py new file mode 100644 index 0000000..b6beddb --- /dev/null +++ b/.venv/lib/python3.11/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/.venv/lib/python3.11/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..20b1ed99d02684737b83dd6b648cc49f20e5e0c6 GIT binary patch literal 678 zcmb_YJ!>055Z%4APO^dtAp{ID*d&#T+~TASE&?&Bj7ee#t~pkxiM8>5oM-nAl-l5* z;3j>@zfmc!O_fgI&Xwo%5dvy6%)ZCG#||^|b7!Z|D1NY`@#l!K-)*rDsuywhj_8(+ z*obSE@dZaKj#s?3;7E5&k|m~_bxkkpneA-b^s_#vpP$$u{?oQQ8FZSbAHlc)CoUYj z%8uS6I{ZgGms+jFMESfz-Rv5933*-k9O0@`2nK9eI5CNXN6l`j$~0Ft09vV264Rml zE+sZGInA?8`$C20`KD|Diwc$0&EBTzt6>f3m9x#krn|BVX9GHoF>Q-mEp%E)TIdq| zVt0h>{#u-QY9_1{)@4Yo{RB1TECo~kN=Wht+ oG3R{VXZ&Ew_Ln(hd((B!*o)~pXYA#4o%1N+(VYD^z{fPp1Fi(kBLDyZ literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3f0f0fa947df3f6da2972579e645de1400c4cef9 GIT binary patch literal 5903 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 JG#`7z{s$=|X8r&G literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/vcs/__pycache__/git.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_internal/vcs/__pycache__/git.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fd533dcfde20c9f6e3f2e01318dc3f69016f7dae GIT binary patch literal 21418 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..323609ebbbb28994af2325a602a84dddf7e3b8b6 GIT binary patch literal 8771 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 OBE4nOTdY6qO#cVAUJUmD literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..73fa567c18d811b0b320cfb4fbb8e36d5082ef27 GIT binary patch literal 14646 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 SaptCrTtMLhh3b!O*gpgCopj0o literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..54a5900308efc994d74764360740bc2007f131bc GIT binary patch literal 31810 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 AAOHXW literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/vcs/bazaar.py b/.venv/lib/python3.11/site-packages/pip/_internal/vcs/bazaar.py new file mode 100644 index 0000000..20a17ed --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_internal/vcs/bazaar.py @@ -0,0 +1,112 @@ +import logging +from typing import List, Optional, Tuple + +from pip._internal.utils.misc import HiddenText, display_path +from pip._internal.utils.subprocess import make_command +from pip._internal.utils.urls import path_to_url +from pip._internal.vcs.versioncontrol import ( + AuthInfo, + RemoteNotFoundError, + RevOptions, + VersionControl, + vcs, +) + +logger = logging.getLogger(__name__) + + +class Bazaar(VersionControl): + name = "bzr" + dirname = ".bzr" + repo_name = "branch" + schemes = ( + "bzr+http", + "bzr+https", + "bzr+ssh", + "bzr+sftp", + "bzr+ftp", + "bzr+lp", + "bzr+file", + ) + + @staticmethod + def get_base_rev_args(rev: str) -> List[str]: + return ["-r", rev] + + def fetch_new( + self, dest: str, url: HiddenText, rev_options: RevOptions, verbosity: int + ) -> None: + rev_display = rev_options.to_display() + logger.info( + "Checking out %s%s to %s", + url, + rev_display, + display_path(dest), + ) + if verbosity <= 0: + flag = "--quiet" + elif verbosity == 1: + flag = "" + else: + flag = f"-{'v'*verbosity}" + cmd_args = make_command( + "checkout", "--lightweight", flag, rev_options.to_args(), url, dest + ) + self.run_command(cmd_args) + + def switch(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None: + self.run_command(make_command("switch", url), cwd=dest) + + def update(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None: + output = self.run_command( + make_command("info"), show_stdout=False, stdout_only=True, cwd=dest + ) + if output.startswith("Standalone "): + # Older versions of pip used to create standalone branches. + # Convert the standalone branch to a checkout by calling "bzr bind". + cmd_args = make_command("bind", "-q", url) + self.run_command(cmd_args, cwd=dest) + + cmd_args = make_command("update", "-q", rev_options.to_args()) + self.run_command(cmd_args, cwd=dest) + + @classmethod + def get_url_rev_and_auth(cls, url: str) -> Tuple[str, Optional[str], AuthInfo]: + # hotfix the URL scheme after removing bzr+ from bzr+ssh:// re-add it + url, rev, user_pass = super().get_url_rev_and_auth(url) + if url.startswith("ssh://"): + url = "bzr+" + url + return url, rev, user_pass + + @classmethod + def get_remote_url(cls, location: str) -> str: + urls = cls.run_command( + ["info"], show_stdout=False, stdout_only=True, cwd=location + ) + for line in urls.splitlines(): + line = line.strip() + for x in ("checkout of branch: ", "parent branch: "): + if line.startswith(x): + repo = line.split(x)[1] + if cls._is_local_repository(repo): + return path_to_url(repo) + return repo + raise RemoteNotFoundError + + @classmethod + def get_revision(cls, location: str) -> str: + revision = cls.run_command( + ["revno"], + show_stdout=False, + stdout_only=True, + cwd=location, + ) + return revision.splitlines()[-1] + + @classmethod + def is_commit_id_equal(cls, dest: str, name: Optional[str]) -> bool: + """Always assume the versions don't match""" + return False + + +vcs.register(Bazaar) diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/vcs/git.py b/.venv/lib/python3.11/site-packages/pip/_internal/vcs/git.py new file mode 100644 index 0000000..8c242cf --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_internal/vcs/git.py @@ -0,0 +1,526 @@ +import logging +import os.path +import pathlib +import re +import urllib.parse +import urllib.request +from typing import List, Optional, Tuple + +from pip._internal.exceptions import BadCommand, InstallationError +from pip._internal.utils.misc import HiddenText, display_path, hide_url +from pip._internal.utils.subprocess import make_command +from pip._internal.vcs.versioncontrol import ( + AuthInfo, + RemoteNotFoundError, + RemoteNotValidError, + RevOptions, + VersionControl, + find_path_to_project_root_from_repo_root, + vcs, +) + +urlsplit = urllib.parse.urlsplit +urlunsplit = urllib.parse.urlunsplit + + +logger = logging.getLogger(__name__) + + +GIT_VERSION_REGEX = re.compile( + r"^git version " # Prefix. + r"(\d+)" # Major. + r"\.(\d+)" # Dot, minor. + r"(?:\.(\d+))?" # Optional dot, patch. + r".*$" # Suffix, including any pre- and post-release segments we don't care about. +) + +HASH_REGEX = re.compile("^[a-fA-F0-9]{40}$") + +# SCP (Secure copy protocol) shorthand. e.g. 'git@example.com:foo/bar.git' +SCP_REGEX = re.compile( + r"""^ + # Optional user, e.g. 'git@' + (\w+@)? + # Server, e.g. 'github.com'. + ([^/:]+): + # The server-side path. e.g. 'user/project.git'. Must start with an + # alphanumeric character so as not to be confusable with a Windows paths + # like 'C:/foo/bar' or 'C:\foo\bar'. + (\w[^:]*) + $""", + re.VERBOSE, +) + + +def looks_like_hash(sha: str) -> bool: + return bool(HASH_REGEX.match(sha)) + + +class Git(VersionControl): + name = "git" + dirname = ".git" + repo_name = "clone" + schemes = ( + "git+http", + "git+https", + "git+ssh", + "git+git", + "git+file", + ) + # Prevent the user's environment variables from interfering with pip: + # https://github.com/pypa/pip/issues/1130 + unset_environ = ("GIT_DIR", "GIT_WORK_TREE") + default_arg_rev = "HEAD" + + @staticmethod + def get_base_rev_args(rev: str) -> List[str]: + return [rev] + + def is_immutable_rev_checkout(self, url: str, dest: str) -> bool: + _, rev_options = self.get_url_rev_options(hide_url(url)) + if not rev_options.rev: + return False + if not self.is_commit_id_equal(dest, rev_options.rev): + # the current commit is different from rev, + # which means rev was something else than a commit hash + return False + # return False in the rare case rev is both a commit hash + # and a tag or a branch; we don't want to cache in that case + # because that branch/tag could point to something else in the future + is_tag_or_branch = bool(self.get_revision_sha(dest, rev_options.rev)[0]) + return not is_tag_or_branch + + def get_git_version(self) -> Tuple[int, ...]: + version = self.run_command( + ["version"], + command_desc="git version", + show_stdout=False, + stdout_only=True, + ) + match = GIT_VERSION_REGEX.match(version) + if not match: + logger.warning("Can't parse git version: %s", version) + return () + return (int(match.group(1)), int(match.group(2))) + + @classmethod + def get_current_branch(cls, location: str) -> Optional[str]: + """ + Return the current branch, or None if HEAD isn't at a branch + (e.g. detached HEAD). + """ + # git-symbolic-ref exits with empty stdout if "HEAD" is a detached + # HEAD rather than a symbolic ref. In addition, the -q causes the + # command to exit with status code 1 instead of 128 in this case + # and to suppress the message to stderr. + args = ["symbolic-ref", "-q", "HEAD"] + output = cls.run_command( + args, + extra_ok_returncodes=(1,), + show_stdout=False, + stdout_only=True, + cwd=location, + ) + ref = output.strip() + + if ref.startswith("refs/heads/"): + return ref[len("refs/heads/") :] + + return None + + @classmethod + def get_revision_sha(cls, dest: str, rev: str) -> Tuple[Optional[str], bool]: + """ + Return (sha_or_none, is_branch), where sha_or_none is a commit hash + if the revision names a remote branch or tag, otherwise None. + + Args: + dest: the repository directory. + rev: the revision name. + """ + # Pass rev to pre-filter the list. + output = cls.run_command( + ["show-ref", rev], + cwd=dest, + show_stdout=False, + stdout_only=True, + on_returncode="ignore", + ) + refs = {} + # NOTE: We do not use splitlines here since that would split on other + # unicode separators, which can be maliciously used to install a + # different revision. + for line in output.strip().split("\n"): + line = line.rstrip("\r") + if not line: + continue + try: + ref_sha, ref_name = line.split(" ", maxsplit=2) + except ValueError: + # Include the offending line to simplify troubleshooting if + # this error ever occurs. + raise ValueError(f"unexpected show-ref line: {line!r}") + + refs[ref_name] = ref_sha + + branch_ref = f"refs/remotes/origin/{rev}" + tag_ref = f"refs/tags/{rev}" + + sha = refs.get(branch_ref) + if sha is not None: + return (sha, True) + + sha = refs.get(tag_ref) + + return (sha, False) + + @classmethod + def _should_fetch(cls, dest: str, rev: str) -> bool: + """ + Return true if rev is a ref or is a commit that we don't have locally. + + Branches and tags are not considered in this method because they are + assumed to be always available locally (which is a normal outcome of + ``git clone`` and ``git fetch --tags``). + """ + if rev.startswith("refs/"): + # Always fetch remote refs. + return True + + if not looks_like_hash(rev): + # Git fetch would fail with abbreviated commits. + return False + + if cls.has_commit(dest, rev): + # Don't fetch if we have the commit locally. + return False + + return True + + @classmethod + def resolve_revision( + cls, dest: str, url: HiddenText, rev_options: RevOptions + ) -> RevOptions: + """ + Resolve a revision to a new RevOptions object with the SHA1 of the + branch, tag, or ref if found. + + Args: + rev_options: a RevOptions object. + """ + rev = rev_options.arg_rev + # The arg_rev property's implementation for Git ensures that the + # rev return value is always non-None. + assert rev is not None + + sha, is_branch = cls.get_revision_sha(dest, rev) + + if sha is not None: + rev_options = rev_options.make_new(sha) + rev_options.branch_name = rev if is_branch else None + + return rev_options + + # Do not show a warning for the common case of something that has + # the form of a Git commit hash. + if not looks_like_hash(rev): + logger.warning( + "Did not find branch or tag '%s', assuming revision or ref.", + rev, + ) + + if not cls._should_fetch(dest, rev): + return rev_options + + # fetch the requested revision + cls.run_command( + make_command("fetch", "-q", url, rev_options.to_args()), + cwd=dest, + ) + # Change the revision to the SHA of the ref we fetched + sha = cls.get_revision(dest, rev="FETCH_HEAD") + rev_options = rev_options.make_new(sha) + + return rev_options + + @classmethod + def is_commit_id_equal(cls, dest: str, name: Optional[str]) -> bool: + """ + Return whether the current commit hash equals the given name. + + Args: + dest: the repository directory. + name: a string name. + """ + if not name: + # Then avoid an unnecessary subprocess call. + return False + + return cls.get_revision(dest) == name + + def fetch_new( + self, dest: str, url: HiddenText, rev_options: RevOptions, verbosity: int + ) -> None: + rev_display = rev_options.to_display() + logger.info("Cloning %s%s to %s", url, rev_display, display_path(dest)) + if verbosity <= 0: + flags: Tuple[str, ...] = ("--quiet",) + elif verbosity == 1: + flags = () + else: + flags = ("--verbose", "--progress") + if self.get_git_version() >= (2, 17): + # Git added support for partial clone in 2.17 + # https://git-scm.com/docs/partial-clone + # Speeds up cloning by functioning without a complete copy of repository + self.run_command( + make_command( + "clone", + "--filter=blob:none", + *flags, + url, + dest, + ) + ) + else: + self.run_command(make_command("clone", *flags, url, dest)) + + if rev_options.rev: + # Then a specific revision was requested. + rev_options = self.resolve_revision(dest, url, rev_options) + branch_name = getattr(rev_options, "branch_name", None) + logger.debug("Rev options %s, branch_name %s", rev_options, branch_name) + if branch_name is None: + # Only do a checkout if the current commit id doesn't match + # the requested revision. + if not self.is_commit_id_equal(dest, rev_options.rev): + cmd_args = make_command( + "checkout", + "-q", + rev_options.to_args(), + ) + self.run_command(cmd_args, cwd=dest) + elif self.get_current_branch(dest) != branch_name: + # Then a specific branch was requested, and that branch + # is not yet checked out. + track_branch = f"origin/{branch_name}" + cmd_args = [ + "checkout", + "-b", + branch_name, + "--track", + track_branch, + ] + self.run_command(cmd_args, cwd=dest) + else: + sha = self.get_revision(dest) + rev_options = rev_options.make_new(sha) + + logger.info("Resolved %s to commit %s", url, rev_options.rev) + + #: repo may contain submodules + self.update_submodules(dest) + + def switch(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None: + self.run_command( + make_command("config", "remote.origin.url", url), + cwd=dest, + ) + cmd_args = make_command("checkout", "-q", rev_options.to_args()) + self.run_command(cmd_args, cwd=dest) + + self.update_submodules(dest) + + def update(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None: + # First fetch changes from the default remote + if self.get_git_version() >= (1, 9): + # fetch tags in addition to everything else + self.run_command(["fetch", "-q", "--tags"], cwd=dest) + else: + self.run_command(["fetch", "-q"], cwd=dest) + # Then reset to wanted revision (maybe even origin/master) + rev_options = self.resolve_revision(dest, url, rev_options) + cmd_args = make_command("reset", "--hard", "-q", rev_options.to_args()) + self.run_command(cmd_args, cwd=dest) + #: update submodules + self.update_submodules(dest) + + @classmethod + def get_remote_url(cls, location: str) -> str: + """ + Return URL of the first remote encountered. + + Raises RemoteNotFoundError if the repository does not have a remote + url configured. + """ + # We need to pass 1 for extra_ok_returncodes since the command + # exits with return code 1 if there are no matching lines. + stdout = cls.run_command( + ["config", "--get-regexp", r"remote\..*\.url"], + extra_ok_returncodes=(1,), + show_stdout=False, + stdout_only=True, + cwd=location, + ) + remotes = stdout.splitlines() + try: + found_remote = remotes[0] + except IndexError: + raise RemoteNotFoundError + + for remote in remotes: + if remote.startswith("remote.origin.url "): + found_remote = remote + break + url = found_remote.split(" ")[1] + return cls._git_remote_to_pip_url(url.strip()) + + @staticmethod + def _git_remote_to_pip_url(url: str) -> str: + """ + Convert a remote url from what git uses to what pip accepts. + + There are 3 legal forms **url** may take: + + 1. A fully qualified url: ssh://git@example.com/foo/bar.git + 2. A local project.git folder: /path/to/bare/repository.git + 3. SCP shorthand for form 1: git@example.com:foo/bar.git + + Form 1 is output as-is. Form 2 must be converted to URI and form 3 must + be converted to form 1. + + See the corresponding test test_git_remote_url_to_pip() for examples of + sample inputs/outputs. + """ + if re.match(r"\w+://", url): + # This is already valid. Pass it though as-is. + return url + if os.path.exists(url): + # A local bare remote (git clone --mirror). + # Needs a file:// prefix. + return pathlib.PurePath(url).as_uri() + scp_match = SCP_REGEX.match(url) + if scp_match: + # Add an ssh:// prefix and replace the ':' with a '/'. + return scp_match.expand(r"ssh://\1\2/\3") + # Otherwise, bail out. + raise RemoteNotValidError(url) + + @classmethod + def has_commit(cls, location: str, rev: str) -> bool: + """ + Check if rev is a commit that is available in the local repository. + """ + try: + cls.run_command( + ["rev-parse", "-q", "--verify", "sha^" + rev], + cwd=location, + log_failed_cmd=False, + ) + except InstallationError: + return False + else: + return True + + @classmethod + def get_revision(cls, location: str, rev: Optional[str] = None) -> str: + if rev is None: + rev = "HEAD" + current_rev = cls.run_command( + ["rev-parse", rev], + show_stdout=False, + stdout_only=True, + cwd=location, + ) + return current_rev.strip() + + @classmethod + def get_subdirectory(cls, location: str) -> Optional[str]: + """ + Return the path to Python project root, relative to the repo root. + Return None if the project root is in the repo root. + """ + # find the repo root + git_dir = cls.run_command( + ["rev-parse", "--git-dir"], + show_stdout=False, + stdout_only=True, + cwd=location, + ).strip() + if not os.path.isabs(git_dir): + git_dir = os.path.join(location, git_dir) + repo_root = os.path.abspath(os.path.join(git_dir, "..")) + return find_path_to_project_root_from_repo_root(location, repo_root) + + @classmethod + def get_url_rev_and_auth(cls, url: str) -> Tuple[str, Optional[str], AuthInfo]: + """ + Prefixes stub URLs like 'user@hostname:user/repo.git' with 'ssh://'. + That's required because although they use SSH they sometimes don't + work with a ssh:// scheme (e.g. GitHub). But we need a scheme for + parsing. Hence we remove it again afterwards and return it as a stub. + """ + # Works around an apparent Git bug + # (see https://article.gmane.org/gmane.comp.version-control.git/146500) + scheme, netloc, path, query, fragment = urlsplit(url) + if scheme.endswith("file"): + initial_slashes = path[: -len(path.lstrip("/"))] + newpath = initial_slashes + urllib.request.url2pathname(path).replace( + "\\", "/" + ).lstrip("/") + after_plus = scheme.find("+") + 1 + url = scheme[:after_plus] + urlunsplit( + (scheme[after_plus:], netloc, newpath, query, fragment), + ) + + if "://" not in url: + assert "file:" not in url + url = url.replace("git+", "git+ssh://") + url, rev, user_pass = super().get_url_rev_and_auth(url) + url = url.replace("ssh://", "") + else: + url, rev, user_pass = super().get_url_rev_and_auth(url) + + return url, rev, user_pass + + @classmethod + def update_submodules(cls, location: str) -> None: + if not os.path.exists(os.path.join(location, ".gitmodules")): + return + cls.run_command( + ["submodule", "update", "--init", "--recursive", "-q"], + cwd=location, + ) + + @classmethod + def get_repository_root(cls, location: str) -> Optional[str]: + loc = super().get_repository_root(location) + if loc: + return loc + try: + r = cls.run_command( + ["rev-parse", "--show-toplevel"], + cwd=location, + show_stdout=False, + stdout_only=True, + on_returncode="raise", + log_failed_cmd=False, + ) + except BadCommand: + logger.debug( + "could not determine if %s is under git control " + "because git is not available", + location, + ) + return None + except InstallationError: + return None + return os.path.normpath(r.rstrip("\r\n")) + + @staticmethod + def should_add_vcs_url_prefix(repo_url: str) -> bool: + """In either https or ssh form, requirements must be prefixed with git+.""" + return True + + +vcs.register(Git) diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/vcs/mercurial.py b/.venv/lib/python3.11/site-packages/pip/_internal/vcs/mercurial.py new file mode 100644 index 0000000..c183d41 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_internal/vcs/mercurial.py @@ -0,0 +1,163 @@ +import configparser +import logging +import os +from typing import List, Optional, Tuple + +from pip._internal.exceptions import BadCommand, InstallationError +from pip._internal.utils.misc import HiddenText, display_path +from pip._internal.utils.subprocess import make_command +from pip._internal.utils.urls import path_to_url +from pip._internal.vcs.versioncontrol import ( + RevOptions, + VersionControl, + find_path_to_project_root_from_repo_root, + vcs, +) + +logger = logging.getLogger(__name__) + + +class Mercurial(VersionControl): + name = "hg" + dirname = ".hg" + repo_name = "clone" + schemes = ( + "hg+file", + "hg+http", + "hg+https", + "hg+ssh", + "hg+static-http", + ) + + @staticmethod + def get_base_rev_args(rev: str) -> List[str]: + return [f"--rev={rev}"] + + def fetch_new( + self, dest: str, url: HiddenText, rev_options: RevOptions, verbosity: int + ) -> None: + rev_display = rev_options.to_display() + logger.info( + "Cloning hg %s%s to %s", + url, + rev_display, + display_path(dest), + ) + if verbosity <= 0: + flags: Tuple[str, ...] = ("--quiet",) + elif verbosity == 1: + flags = () + elif verbosity == 2: + flags = ("--verbose",) + else: + flags = ("--verbose", "--debug") + self.run_command(make_command("clone", "--noupdate", *flags, url, dest)) + self.run_command( + make_command("update", *flags, rev_options.to_args()), + cwd=dest, + ) + + def switch(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None: + repo_config = os.path.join(dest, self.dirname, "hgrc") + config = configparser.RawConfigParser() + try: + config.read(repo_config) + config.set("paths", "default", url.secret) + with open(repo_config, "w") as config_file: + config.write(config_file) + except (OSError, configparser.NoSectionError) as exc: + logger.warning("Could not switch Mercurial repository to %s: %s", url, exc) + else: + cmd_args = make_command("update", "-q", rev_options.to_args()) + self.run_command(cmd_args, cwd=dest) + + def update(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None: + self.run_command(["pull", "-q"], cwd=dest) + cmd_args = make_command("update", "-q", rev_options.to_args()) + self.run_command(cmd_args, cwd=dest) + + @classmethod + def get_remote_url(cls, location: str) -> str: + url = cls.run_command( + ["showconfig", "paths.default"], + show_stdout=False, + stdout_only=True, + cwd=location, + ).strip() + if cls._is_local_repository(url): + url = path_to_url(url) + return url.strip() + + @classmethod + def get_revision(cls, location: str) -> str: + """ + Return the repository-local changeset revision number, as an integer. + """ + current_revision = cls.run_command( + ["parents", "--template={rev}"], + show_stdout=False, + stdout_only=True, + cwd=location, + ).strip() + return current_revision + + @classmethod + def get_requirement_revision(cls, location: str) -> str: + """ + Return the changeset identification hash, as a 40-character + hexadecimal string + """ + current_rev_hash = cls.run_command( + ["parents", "--template={node}"], + show_stdout=False, + stdout_only=True, + cwd=location, + ).strip() + return current_rev_hash + + @classmethod + def is_commit_id_equal(cls, dest: str, name: Optional[str]) -> bool: + """Always assume the versions don't match""" + return False + + @classmethod + def get_subdirectory(cls, location: str) -> Optional[str]: + """ + Return the path to Python project root, relative to the repo root. + Return None if the project root is in the repo root. + """ + # find the repo root + repo_root = cls.run_command( + ["root"], show_stdout=False, stdout_only=True, cwd=location + ).strip() + if not os.path.isabs(repo_root): + repo_root = os.path.abspath(os.path.join(location, repo_root)) + return find_path_to_project_root_from_repo_root(location, repo_root) + + @classmethod + def get_repository_root(cls, location: str) -> Optional[str]: + loc = super().get_repository_root(location) + if loc: + return loc + try: + r = cls.run_command( + ["root"], + cwd=location, + show_stdout=False, + stdout_only=True, + on_returncode="raise", + log_failed_cmd=False, + ) + except BadCommand: + logger.debug( + "could not determine if %s is under hg control " + "because hg is not available", + location, + ) + return None + except InstallationError: + return None + return os.path.normpath(r.rstrip("\r\n")) + + +vcs.register(Mercurial) diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/vcs/subversion.py b/.venv/lib/python3.11/site-packages/pip/_internal/vcs/subversion.py new file mode 100644 index 0000000..16d93a6 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_internal/vcs/subversion.py @@ -0,0 +1,324 @@ +import logging +import os +import re +from typing import List, Optional, Tuple + +from pip._internal.utils.misc import ( + HiddenText, + display_path, + is_console_interactive, + is_installable_dir, + split_auth_from_netloc, +) +from pip._internal.utils.subprocess import CommandArgs, make_command +from pip._internal.vcs.versioncontrol import ( + AuthInfo, + RemoteNotFoundError, + RevOptions, + VersionControl, + vcs, +) + +logger = logging.getLogger(__name__) + +_svn_xml_url_re = re.compile('url="([^"]+)"') +_svn_rev_re = re.compile(r'committed-rev="(\d+)"') +_svn_info_xml_rev_re = re.compile(r'\s*revision="(\d+)"') +_svn_info_xml_url_re = re.compile(r"(.*)") + + +class Subversion(VersionControl): + name = "svn" + dirname = ".svn" + repo_name = "checkout" + schemes = ("svn+ssh", "svn+http", "svn+https", "svn+svn", "svn+file") + + @classmethod + def should_add_vcs_url_prefix(cls, remote_url: str) -> bool: + return True + + @staticmethod + def get_base_rev_args(rev: str) -> List[str]: + return ["-r", rev] + + @classmethod + def get_revision(cls, location: str) -> str: + """ + Return the maximum revision for all files under a given location + """ + # Note: taken from setuptools.command.egg_info + revision = 0 + + for base, dirs, _ in os.walk(location): + if cls.dirname not in dirs: + dirs[:] = [] + continue # no sense walking uncontrolled subdirs + dirs.remove(cls.dirname) + entries_fn = os.path.join(base, cls.dirname, "entries") + if not os.path.exists(entries_fn): + # FIXME: should we warn? + continue + + dirurl, localrev = cls._get_svn_url_rev(base) + + if base == location: + assert dirurl is not None + base = dirurl + "/" # save the root url + elif not dirurl or not dirurl.startswith(base): + dirs[:] = [] + continue # not part of the same svn tree, skip it + revision = max(revision, localrev) + return str(revision) + + @classmethod + def get_netloc_and_auth( + cls, netloc: str, scheme: str + ) -> Tuple[str, Tuple[Optional[str], Optional[str]]]: + """ + This override allows the auth information to be passed to svn via the + --username and --password options instead of via the URL. + """ + if scheme == "ssh": + # The --username and --password options can't be used for + # svn+ssh URLs, so keep the auth information in the URL. + return super().get_netloc_and_auth(netloc, scheme) + + return split_auth_from_netloc(netloc) + + @classmethod + def get_url_rev_and_auth(cls, url: str) -> Tuple[str, Optional[str], AuthInfo]: + # hotfix the URL scheme after removing svn+ from svn+ssh:// re-add it + url, rev, user_pass = super().get_url_rev_and_auth(url) + if url.startswith("ssh://"): + url = "svn+" + url + return url, rev, user_pass + + @staticmethod + def make_rev_args( + username: Optional[str], password: Optional[HiddenText] + ) -> CommandArgs: + extra_args: CommandArgs = [] + if username: + extra_args += ["--username", username] + if password: + extra_args += ["--password", password] + + return extra_args + + @classmethod + def get_remote_url(cls, location: str) -> str: + # In cases where the source is in a subdirectory, we have to look up in + # the location until we find a valid project root. + orig_location = location + while not is_installable_dir(location): + last_location = location + location = os.path.dirname(location) + if location == last_location: + # We've traversed up to the root of the filesystem without + # finding a Python project. + logger.warning( + "Could not find Python project for directory %s (tried all " + "parent directories)", + orig_location, + ) + raise RemoteNotFoundError + + url, _rev = cls._get_svn_url_rev(location) + if url is None: + raise RemoteNotFoundError + + return url + + @classmethod + def _get_svn_url_rev(cls, location: str) -> Tuple[Optional[str], int]: + from pip._internal.exceptions import InstallationError + + entries_path = os.path.join(location, cls.dirname, "entries") + if os.path.exists(entries_path): + with open(entries_path) as f: + data = f.read() + else: # subversion >= 1.7 does not have the 'entries' file + data = "" + + url = None + if data.startswith("8") or data.startswith("9") or data.startswith("10"): + entries = list(map(str.splitlines, data.split("\n\x0c\n"))) + del entries[0][0] # get rid of the '8' + url = entries[0][3] + revs = [int(d[9]) for d in entries if len(d) > 9 and d[9]] + [0] + elif data.startswith("= 1.7 + # Note that using get_remote_call_options is not necessary here + # because `svn info` is being run against a local directory. + # We don't need to worry about making sure interactive mode + # is being used to prompt for passwords, because passwords + # are only potentially needed for remote server requests. + xml = cls.run_command( + ["info", "--xml", location], + show_stdout=False, + stdout_only=True, + ) + match = _svn_info_xml_url_re.search(xml) + assert match is not None + url = match.group(1) + revs = [int(m.group(1)) for m in _svn_info_xml_rev_re.finditer(xml)] + except InstallationError: + url, revs = None, [] + + if revs: + rev = max(revs) + else: + rev = 0 + + return url, rev + + @classmethod + def is_commit_id_equal(cls, dest: str, name: Optional[str]) -> bool: + """Always assume the versions don't match""" + return False + + def __init__(self, use_interactive: Optional[bool] = None) -> None: + if use_interactive is None: + use_interactive = is_console_interactive() + self.use_interactive = use_interactive + + # This member is used to cache the fetched version of the current + # ``svn`` client. + # Special value definitions: + # None: Not evaluated yet. + # Empty tuple: Could not parse version. + self._vcs_version: Optional[Tuple[int, ...]] = None + + super().__init__() + + def call_vcs_version(self) -> Tuple[int, ...]: + """Query the version of the currently installed Subversion client. + + :return: A tuple containing the parts of the version information or + ``()`` if the version returned from ``svn`` could not be parsed. + :raises: BadCommand: If ``svn`` is not installed. + """ + # Example versions: + # svn, version 1.10.3 (r1842928) + # compiled Feb 25 2019, 14:20:39 on x86_64-apple-darwin17.0.0 + # svn, version 1.7.14 (r1542130) + # compiled Mar 28 2018, 08:49:13 on x86_64-pc-linux-gnu + # svn, version 1.12.0-SlikSvn (SlikSvn/1.12.0) + # compiled May 28 2019, 13:44:56 on x86_64-microsoft-windows6.2 + version_prefix = "svn, version " + version = self.run_command(["--version"], show_stdout=False, stdout_only=True) + if not version.startswith(version_prefix): + return () + + version = version[len(version_prefix) :].split()[0] + version_list = version.partition("-")[0].split(".") + try: + parsed_version = tuple(map(int, version_list)) + except ValueError: + return () + + return parsed_version + + def get_vcs_version(self) -> Tuple[int, ...]: + """Return the version of the currently installed Subversion client. + + If the version of the Subversion client has already been queried, + a cached value will be used. + + :return: A tuple containing the parts of the version information or + ``()`` if the version returned from ``svn`` could not be parsed. + :raises: BadCommand: If ``svn`` is not installed. + """ + if self._vcs_version is not None: + # Use cached version, if available. + # If parsing the version failed previously (empty tuple), + # do not attempt to parse it again. + return self._vcs_version + + vcs_version = self.call_vcs_version() + self._vcs_version = vcs_version + return vcs_version + + def get_remote_call_options(self) -> CommandArgs: + """Return options to be used on calls to Subversion that contact the server. + + These options are applicable for the following ``svn`` subcommands used + in this class. + + - checkout + - switch + - update + + :return: A list of command line arguments to pass to ``svn``. + """ + if not self.use_interactive: + # --non-interactive switch is available since Subversion 0.14.4. + # Subversion < 1.8 runs in interactive mode by default. + return ["--non-interactive"] + + svn_version = self.get_vcs_version() + # By default, Subversion >= 1.8 runs in non-interactive mode if + # stdin is not a TTY. Since that is how pip invokes SVN, in + # call_subprocess(), pip must pass --force-interactive to ensure + # the user can be prompted for a password, if required. + # SVN added the --force-interactive option in SVN 1.8. Since + # e.g. RHEL/CentOS 7, which is supported until 2024, ships with + # SVN 1.7, pip should continue to support SVN 1.7. Therefore, pip + # can't safely add the option if the SVN version is < 1.8 (or unknown). + if svn_version >= (1, 8): + return ["--force-interactive"] + + return [] + + def fetch_new( + self, dest: str, url: HiddenText, rev_options: RevOptions, verbosity: int + ) -> None: + rev_display = rev_options.to_display() + logger.info( + "Checking out %s%s to %s", + url, + rev_display, + display_path(dest), + ) + if verbosity <= 0: + flag = "--quiet" + else: + flag = "" + cmd_args = make_command( + "checkout", + flag, + self.get_remote_call_options(), + rev_options.to_args(), + url, + dest, + ) + self.run_command(cmd_args) + + def switch(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None: + cmd_args = make_command( + "switch", + self.get_remote_call_options(), + rev_options.to_args(), + url, + dest, + ) + self.run_command(cmd_args) + + def update(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None: + cmd_args = make_command( + "update", + self.get_remote_call_options(), + rev_options.to_args(), + dest, + ) + self.run_command(cmd_args) + + +vcs.register(Subversion) diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/vcs/versioncontrol.py b/.venv/lib/python3.11/site-packages/pip/_internal/vcs/versioncontrol.py new file mode 100644 index 0000000..46ca279 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_internal/vcs/versioncontrol.py @@ -0,0 +1,705 @@ +"""Handles all VCS (version control) support""" + +import logging +import os +import shutil +import sys +import urllib.parse +from typing import ( + TYPE_CHECKING, + Any, + Dict, + Iterable, + Iterator, + List, + Mapping, + Optional, + Tuple, + Type, + Union, +) + +from pip._internal.cli.spinners import SpinnerInterface +from pip._internal.exceptions import BadCommand, InstallationError +from pip._internal.utils.misc import ( + HiddenText, + ask_path_exists, + backup_dir, + display_path, + hide_url, + hide_value, + is_installable_dir, + rmtree, +) +from pip._internal.utils.subprocess import ( + CommandArgs, + call_subprocess, + format_command_args, + make_command, +) +from pip._internal.utils.urls import get_url_scheme + +if TYPE_CHECKING: + # Literal was introduced in Python 3.8. + # + # TODO: Remove `if TYPE_CHECKING` when dropping support for Python 3.7. + from typing import Literal + + +__all__ = ["vcs"] + + +logger = logging.getLogger(__name__) + +AuthInfo = Tuple[Optional[str], Optional[str]] + + +def is_url(name: str) -> bool: + """ + Return true if the name looks like a URL. + """ + scheme = get_url_scheme(name) + if scheme is None: + return False + return scheme in ["http", "https", "file", "ftp"] + vcs.all_schemes + + +def make_vcs_requirement_url( + repo_url: str, rev: str, project_name: str, subdir: Optional[str] = None +) -> str: + """ + Return the URL for a VCS requirement. + + Args: + repo_url: the remote VCS url, with any needed VCS prefix (e.g. "git+"). + project_name: the (unescaped) project name. + """ + egg_project_name = project_name.replace("-", "_") + req = f"{repo_url}@{rev}#egg={egg_project_name}" + if subdir: + req += f"&subdirectory={subdir}" + + return req + + +def find_path_to_project_root_from_repo_root( + location: str, repo_root: str +) -> Optional[str]: + """ + Find the the Python project's root by searching up the filesystem from + `location`. Return the path to project root relative to `repo_root`. + Return None if the project root is `repo_root`, or cannot be found. + """ + # find project root. + orig_location = location + while not is_installable_dir(location): + last_location = location + location = os.path.dirname(location) + if location == last_location: + # We've traversed up to the root of the filesystem without + # finding a Python project. + logger.warning( + "Could not find a Python project for directory %s (tried all " + "parent directories)", + orig_location, + ) + return None + + if os.path.samefile(repo_root, location): + return None + + return os.path.relpath(location, repo_root) + + +class RemoteNotFoundError(Exception): + pass + + +class RemoteNotValidError(Exception): + def __init__(self, url: str): + super().__init__(url) + self.url = url + + +class RevOptions: + + """ + Encapsulates a VCS-specific revision to install, along with any VCS + install options. + + Instances of this class should be treated as if immutable. + """ + + def __init__( + self, + vc_class: Type["VersionControl"], + rev: Optional[str] = None, + extra_args: Optional[CommandArgs] = None, + ) -> None: + """ + Args: + vc_class: a VersionControl subclass. + rev: the name of the revision to install. + extra_args: a list of extra options. + """ + if extra_args is None: + extra_args = [] + + self.extra_args = extra_args + self.rev = rev + self.vc_class = vc_class + self.branch_name: Optional[str] = None + + def __repr__(self) -> str: + return f"" + + @property + def arg_rev(self) -> Optional[str]: + if self.rev is None: + return self.vc_class.default_arg_rev + + return self.rev + + def to_args(self) -> CommandArgs: + """ + Return the VCS-specific command arguments. + """ + args: CommandArgs = [] + rev = self.arg_rev + if rev is not None: + args += self.vc_class.get_base_rev_args(rev) + args += self.extra_args + + return args + + def to_display(self) -> str: + if not self.rev: + return "" + + return f" (to revision {self.rev})" + + def make_new(self, rev: str) -> "RevOptions": + """ + Make a copy of the current instance, but with a new rev. + + Args: + rev: the name of the revision for the new object. + """ + return self.vc_class.make_rev_options(rev, extra_args=self.extra_args) + + +class VcsSupport: + _registry: Dict[str, "VersionControl"] = {} + schemes = ["ssh", "git", "hg", "bzr", "sftp", "svn"] + + def __init__(self) -> None: + # Register more schemes with urlparse for various version control + # systems + urllib.parse.uses_netloc.extend(self.schemes) + super().__init__() + + def __iter__(self) -> Iterator[str]: + return self._registry.__iter__() + + @property + def backends(self) -> List["VersionControl"]: + return list(self._registry.values()) + + @property + def dirnames(self) -> List[str]: + return [backend.dirname for backend in self.backends] + + @property + def all_schemes(self) -> List[str]: + schemes: List[str] = [] + for backend in self.backends: + schemes.extend(backend.schemes) + return schemes + + def register(self, cls: Type["VersionControl"]) -> None: + if not hasattr(cls, "name"): + logger.warning("Cannot register VCS %s", cls.__name__) + return + if cls.name not in self._registry: + self._registry[cls.name] = cls() + logger.debug("Registered VCS backend: %s", cls.name) + + def unregister(self, name: str) -> None: + if name in self._registry: + del self._registry[name] + + def get_backend_for_dir(self, location: str) -> Optional["VersionControl"]: + """ + Return a VersionControl object if a repository of that type is found + at the given directory. + """ + vcs_backends = {} + for vcs_backend in self._registry.values(): + repo_path = vcs_backend.get_repository_root(location) + if not repo_path: + continue + logger.debug("Determine that %s uses VCS: %s", location, vcs_backend.name) + vcs_backends[repo_path] = vcs_backend + + if not vcs_backends: + return None + + # Choose the VCS in the inner-most directory. Since all repository + # roots found here would be either `location` or one of its + # parents, the longest path should have the most path components, + # i.e. the backend representing the inner-most repository. + inner_most_repo_path = max(vcs_backends, key=len) + return vcs_backends[inner_most_repo_path] + + def get_backend_for_scheme(self, scheme: str) -> Optional["VersionControl"]: + """ + Return a VersionControl object or None. + """ + for vcs_backend in self._registry.values(): + if scheme in vcs_backend.schemes: + return vcs_backend + return None + + def get_backend(self, name: str) -> Optional["VersionControl"]: + """ + Return a VersionControl object or None. + """ + name = name.lower() + return self._registry.get(name) + + +vcs = VcsSupport() + + +class VersionControl: + name = "" + dirname = "" + repo_name = "" + # List of supported schemes for this Version Control + schemes: Tuple[str, ...] = () + # Iterable of environment variable names to pass to call_subprocess(). + unset_environ: Tuple[str, ...] = () + default_arg_rev: Optional[str] = None + + @classmethod + def should_add_vcs_url_prefix(cls, remote_url: str) -> bool: + """ + Return whether the vcs prefix (e.g. "git+") should be added to a + repository's remote url when used in a requirement. + """ + return not remote_url.lower().startswith(f"{cls.name}:") + + @classmethod + def get_subdirectory(cls, location: str) -> Optional[str]: + """ + Return the path to Python project root, relative to the repo root. + Return None if the project root is in the repo root. + """ + return None + + @classmethod + def get_requirement_revision(cls, repo_dir: str) -> str: + """ + Return the revision string that should be used in a requirement. + """ + return cls.get_revision(repo_dir) + + @classmethod + def get_src_requirement(cls, repo_dir: str, project_name: str) -> str: + """ + Return the requirement string to use to redownload the files + currently at the given repository directory. + + Args: + project_name: the (unescaped) project name. + + The return value has a form similar to the following: + + {repository_url}@{revision}#egg={project_name} + """ + repo_url = cls.get_remote_url(repo_dir) + + if cls.should_add_vcs_url_prefix(repo_url): + repo_url = f"{cls.name}+{repo_url}" + + revision = cls.get_requirement_revision(repo_dir) + subdir = cls.get_subdirectory(repo_dir) + req = make_vcs_requirement_url(repo_url, revision, project_name, subdir=subdir) + + return req + + @staticmethod + def get_base_rev_args(rev: str) -> List[str]: + """ + Return the base revision arguments for a vcs command. + + Args: + rev: the name of a revision to install. Cannot be None. + """ + raise NotImplementedError + + def is_immutable_rev_checkout(self, url: str, dest: str) -> bool: + """ + Return true if the commit hash checked out at dest matches + the revision in url. + + Always return False, if the VCS does not support immutable commit + hashes. + + This method does not check if there are local uncommitted changes + in dest after checkout, as pip currently has no use case for that. + """ + return False + + @classmethod + def make_rev_options( + cls, rev: Optional[str] = None, extra_args: Optional[CommandArgs] = None + ) -> RevOptions: + """ + Return a RevOptions object. + + Args: + rev: the name of a revision to install. + extra_args: a list of extra options. + """ + return RevOptions(cls, rev, extra_args=extra_args) + + @classmethod + def _is_local_repository(cls, repo: str) -> bool: + """ + posix absolute paths start with os.path.sep, + win32 ones start with drive (like c:\\folder) + """ + drive, tail = os.path.splitdrive(repo) + return repo.startswith(os.path.sep) or bool(drive) + + @classmethod + def get_netloc_and_auth( + cls, netloc: str, scheme: str + ) -> Tuple[str, Tuple[Optional[str], Optional[str]]]: + """ + Parse the repository URL's netloc, and return the new netloc to use + along with auth information. + + Args: + netloc: the original repository URL netloc. + scheme: the repository URL's scheme without the vcs prefix. + + This is mainly for the Subversion class to override, so that auth + information can be provided via the --username and --password options + instead of through the URL. For other subclasses like Git without + such an option, auth information must stay in the URL. + + Returns: (netloc, (username, password)). + """ + return netloc, (None, None) + + @classmethod + def get_url_rev_and_auth(cls, url: str) -> Tuple[str, Optional[str], AuthInfo]: + """ + Parse the repository URL to use, and return the URL, revision, + and auth info to use. + + Returns: (url, rev, (username, password)). + """ + scheme, netloc, path, query, frag = urllib.parse.urlsplit(url) + if "+" not in scheme: + raise ValueError( + f"Sorry, {url!r} is a malformed VCS url. " + "The format is +://, " + "e.g. svn+http://myrepo/svn/MyApp#egg=MyApp" + ) + # Remove the vcs prefix. + scheme = scheme.split("+", 1)[1] + netloc, user_pass = cls.get_netloc_and_auth(netloc, scheme) + rev = None + if "@" in path: + path, rev = path.rsplit("@", 1) + if not rev: + raise InstallationError( + f"The URL {url!r} has an empty revision (after @) " + "which is not supported. Include a revision after @ " + "or remove @ from the URL." + ) + url = urllib.parse.urlunsplit((scheme, netloc, path, query, "")) + return url, rev, user_pass + + @staticmethod + def make_rev_args( + username: Optional[str], password: Optional[HiddenText] + ) -> CommandArgs: + """ + Return the RevOptions "extra arguments" to use in obtain(). + """ + return [] + + def get_url_rev_options(self, url: HiddenText) -> Tuple[HiddenText, RevOptions]: + """ + Return the URL and RevOptions object to use in obtain(), + as a tuple (url, rev_options). + """ + secret_url, rev, user_pass = self.get_url_rev_and_auth(url.secret) + username, secret_password = user_pass + password: Optional[HiddenText] = None + if secret_password is not None: + password = hide_value(secret_password) + extra_args = self.make_rev_args(username, password) + rev_options = self.make_rev_options(rev, extra_args=extra_args) + + return hide_url(secret_url), rev_options + + @staticmethod + def normalize_url(url: str) -> str: + """ + Normalize a URL for comparison by unquoting it and removing any + trailing slash. + """ + return urllib.parse.unquote(url).rstrip("/") + + @classmethod + def compare_urls(cls, url1: str, url2: str) -> bool: + """ + Compare two repo URLs for identity, ignoring incidental differences. + """ + return cls.normalize_url(url1) == cls.normalize_url(url2) + + def fetch_new( + self, dest: str, url: HiddenText, rev_options: RevOptions, verbosity: int + ) -> None: + """ + Fetch a revision from a repository, in the case that this is the + first fetch from the repository. + + Args: + dest: the directory to fetch the repository to. + rev_options: a RevOptions object. + verbosity: verbosity level. + """ + raise NotImplementedError + + def switch(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None: + """ + Switch the repo at ``dest`` to point to ``URL``. + + Args: + rev_options: a RevOptions object. + """ + raise NotImplementedError + + def update(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None: + """ + Update an already-existing repo to the given ``rev_options``. + + Args: + rev_options: a RevOptions object. + """ + raise NotImplementedError + + @classmethod + def is_commit_id_equal(cls, dest: str, name: Optional[str]) -> bool: + """ + Return whether the id of the current commit equals the given name. + + Args: + dest: the repository directory. + name: a string name. + """ + raise NotImplementedError + + def obtain(self, dest: str, url: HiddenText, verbosity: int) -> None: + """ + Install or update in editable mode the package represented by this + VersionControl object. + + :param dest: the repository directory in which to install or update. + :param url: the repository URL starting with a vcs prefix. + :param verbosity: verbosity level. + """ + url, rev_options = self.get_url_rev_options(url) + + if not os.path.exists(dest): + self.fetch_new(dest, url, rev_options, verbosity=verbosity) + return + + rev_display = rev_options.to_display() + if self.is_repository_directory(dest): + existing_url = self.get_remote_url(dest) + if self.compare_urls(existing_url, url.secret): + logger.debug( + "%s in %s exists, and has correct URL (%s)", + self.repo_name.title(), + display_path(dest), + url, + ) + if not self.is_commit_id_equal(dest, rev_options.rev): + logger.info( + "Updating %s %s%s", + display_path(dest), + self.repo_name, + rev_display, + ) + self.update(dest, url, rev_options) + else: + logger.info("Skipping because already up-to-date.") + return + + logger.warning( + "%s %s in %s exists with URL %s", + self.name, + self.repo_name, + display_path(dest), + existing_url, + ) + prompt = ("(s)witch, (i)gnore, (w)ipe, (b)ackup ", ("s", "i", "w", "b")) + else: + logger.warning( + "Directory %s already exists, and is not a %s %s.", + dest, + self.name, + self.repo_name, + ) + # https://github.com/python/mypy/issues/1174 + prompt = ("(i)gnore, (w)ipe, (b)ackup ", ("i", "w", "b")) # type: ignore + + logger.warning( + "The plan is to install the %s repository %s", + self.name, + url, + ) + response = ask_path_exists(f"What to do? {prompt[0]}", prompt[1]) + + if response == "a": + sys.exit(-1) + + if response == "w": + logger.warning("Deleting %s", display_path(dest)) + rmtree(dest) + self.fetch_new(dest, url, rev_options, verbosity=verbosity) + return + + if response == "b": + dest_dir = backup_dir(dest) + logger.warning("Backing up %s to %s", display_path(dest), dest_dir) + shutil.move(dest, dest_dir) + self.fetch_new(dest, url, rev_options, verbosity=verbosity) + return + + # Do nothing if the response is "i". + if response == "s": + logger.info( + "Switching %s %s to %s%s", + self.repo_name, + display_path(dest), + url, + rev_display, + ) + self.switch(dest, url, rev_options) + + def unpack(self, location: str, url: HiddenText, verbosity: int) -> None: + """ + Clean up current location and download the url repository + (and vcs infos) into location + + :param url: the repository URL starting with a vcs prefix. + :param verbosity: verbosity level. + """ + if os.path.exists(location): + rmtree(location) + self.obtain(location, url=url, verbosity=verbosity) + + @classmethod + def get_remote_url(cls, location: str) -> str: + """ + Return the url used at location + + Raises RemoteNotFoundError if the repository does not have a remote + url configured. + """ + raise NotImplementedError + + @classmethod + def get_revision(cls, location: str) -> str: + """ + Return the current commit id of the files at the given location. + """ + raise NotImplementedError + + @classmethod + def run_command( + cls, + cmd: Union[List[str], CommandArgs], + show_stdout: bool = True, + cwd: Optional[str] = None, + on_returncode: 'Literal["raise", "warn", "ignore"]' = "raise", + extra_ok_returncodes: Optional[Iterable[int]] = None, + command_desc: Optional[str] = None, + extra_environ: Optional[Mapping[str, Any]] = None, + spinner: Optional[SpinnerInterface] = None, + log_failed_cmd: bool = True, + stdout_only: bool = False, + ) -> str: + """ + Run a VCS subcommand + This is simply a wrapper around call_subprocess that adds the VCS + command name, and checks that the VCS is available + """ + cmd = make_command(cls.name, *cmd) + if command_desc is None: + command_desc = format_command_args(cmd) + try: + return call_subprocess( + cmd, + show_stdout, + cwd, + on_returncode=on_returncode, + extra_ok_returncodes=extra_ok_returncodes, + command_desc=command_desc, + extra_environ=extra_environ, + unset_environ=cls.unset_environ, + spinner=spinner, + log_failed_cmd=log_failed_cmd, + stdout_only=stdout_only, + ) + except FileNotFoundError: + # errno.ENOENT = no such file or directory + # In other words, the VCS executable isn't available + raise BadCommand( + f"Cannot find command {cls.name!r} - do you have " + f"{cls.name!r} installed and in your PATH?" + ) + except PermissionError: + # errno.EACCES = Permission denied + # This error occurs, for instance, when the command is installed + # only for another user. So, the current user don't have + # permission to call the other user command. + raise BadCommand( + f"No permission to execute {cls.name!r} - install it " + f"locally, globally (ask admin), or check your PATH. " + f"See possible solutions at " + f"https://pip.pypa.io/en/latest/reference/pip_freeze/" + f"#fixing-permission-denied." + ) + + @classmethod + def is_repository_directory(cls, path: str) -> bool: + """ + Return whether a directory path is a repository directory. + """ + logger.debug("Checking in %s for %s (%s)...", path, cls.dirname, cls.name) + return os.path.exists(os.path.join(path, cls.dirname)) + + @classmethod + def get_repository_root(cls, location: str) -> Optional[str]: + """ + Return the "root" (top-level) directory controlled by the vcs, + or `None` if the directory is not in any. + + It is meant to be overridden to implement smarter detection + mechanisms for specific vcs. + + This can do more than is_repository_directory() alone. For + example, the Git override checks that Git is actually available. + """ + if cls.is_repository_directory(location): + return location + return None diff --git a/.venv/lib/python3.11/site-packages/pip/_internal/wheel_builder.py b/.venv/lib/python3.11/site-packages/pip/_internal/wheel_builder.py new file mode 100644 index 0000000..b1debe3 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_internal/wheel_builder.py @@ -0,0 +1,354 @@ +"""Orchestrator for building wheels from InstallRequirements. +""" + +import logging +import os.path +import re +import shutil +from typing import Iterable, List, Optional, Tuple + +from pip._vendor.packaging.utils import canonicalize_name, canonicalize_version +from pip._vendor.packaging.version import InvalidVersion, Version + +from pip._internal.cache import WheelCache +from pip._internal.exceptions import InvalidWheelFilename, UnsupportedWheel +from pip._internal.metadata import FilesystemWheel, get_wheel_distribution +from pip._internal.models.link import Link +from pip._internal.models.wheel import Wheel +from pip._internal.operations.build.wheel import build_wheel_pep517 +from pip._internal.operations.build.wheel_editable import build_wheel_editable +from pip._internal.operations.build.wheel_legacy import build_wheel_legacy +from pip._internal.req.req_install import InstallRequirement +from pip._internal.utils.logging import indent_log +from pip._internal.utils.misc import ensure_dir, hash_file +from pip._internal.utils.setuptools_build import make_setuptools_clean_args +from pip._internal.utils.subprocess import call_subprocess +from pip._internal.utils.temp_dir import TempDirectory +from pip._internal.utils.urls import path_to_url +from pip._internal.vcs import vcs + +logger = logging.getLogger(__name__) + +_egg_info_re = re.compile(r"([a-z0-9_.]+)-([a-z0-9_.!+-]+)", re.IGNORECASE) + +BuildResult = Tuple[List[InstallRequirement], List[InstallRequirement]] + + +def _contains_egg_info(s: str) -> bool: + """Determine whether the string looks like an egg_info. + + :param s: The string to parse. E.g. foo-2.1 + """ + return bool(_egg_info_re.search(s)) + + +def _should_build( + req: InstallRequirement, + need_wheel: bool, +) -> bool: + """Return whether an InstallRequirement should be built into a wheel.""" + if req.constraint: + # never build requirements that are merely constraints + return False + if req.is_wheel: + if need_wheel: + logger.info( + "Skipping %s, due to already being wheel.", + req.name, + ) + return False + + if need_wheel: + # i.e. pip wheel, not pip install + return True + + # From this point, this concerns the pip install command only + # (need_wheel=False). + + if not req.source_dir: + return False + + if req.editable: + # we only build PEP 660 editable requirements + return req.supports_pyproject_editable() + + return True + + +def should_build_for_wheel_command( + req: InstallRequirement, +) -> bool: + return _should_build(req, need_wheel=True) + + +def should_build_for_install_command( + req: InstallRequirement, +) -> bool: + return _should_build(req, need_wheel=False) + + +def _should_cache( + req: InstallRequirement, +) -> Optional[bool]: + """ + Return whether a built InstallRequirement can be stored in the persistent + wheel cache, assuming the wheel cache is available, and _should_build() + has determined a wheel needs to be built. + """ + if req.editable or not req.source_dir: + # never cache editable requirements + return False + + if req.link and req.link.is_vcs: + # VCS checkout. Do not cache + # unless it points to an immutable commit hash. + assert not req.editable + assert req.source_dir + vcs_backend = vcs.get_backend_for_scheme(req.link.scheme) + assert vcs_backend + if vcs_backend.is_immutable_rev_checkout(req.link.url, req.source_dir): + return True + return False + + assert req.link + base, ext = req.link.splitext() + if _contains_egg_info(base): + return True + + # Otherwise, do not cache. + return False + + +def _get_cache_dir( + req: InstallRequirement, + wheel_cache: WheelCache, +) -> str: + """Return the persistent or temporary cache directory where the built + wheel need to be stored. + """ + cache_available = bool(wheel_cache.cache_dir) + assert req.link + if cache_available and _should_cache(req): + cache_dir = wheel_cache.get_path_for_link(req.link) + else: + cache_dir = wheel_cache.get_ephem_path_for_link(req.link) + return cache_dir + + +def _verify_one(req: InstallRequirement, wheel_path: str) -> None: + canonical_name = canonicalize_name(req.name or "") + w = Wheel(os.path.basename(wheel_path)) + if canonicalize_name(w.name) != canonical_name: + raise InvalidWheelFilename( + f"Wheel has unexpected file name: expected {canonical_name!r}, " + f"got {w.name!r}", + ) + dist = get_wheel_distribution(FilesystemWheel(wheel_path), canonical_name) + dist_verstr = str(dist.version) + if canonicalize_version(dist_verstr) != canonicalize_version(w.version): + raise InvalidWheelFilename( + f"Wheel has unexpected file name: expected {dist_verstr!r}, " + f"got {w.version!r}", + ) + metadata_version_value = dist.metadata_version + if metadata_version_value is None: + raise UnsupportedWheel("Missing Metadata-Version") + try: + metadata_version = Version(metadata_version_value) + except InvalidVersion: + msg = f"Invalid Metadata-Version: {metadata_version_value}" + raise UnsupportedWheel(msg) + if metadata_version >= Version("1.2") and not isinstance(dist.version, Version): + raise UnsupportedWheel( + f"Metadata 1.2 mandates PEP 440 version, but {dist_verstr!r} is not" + ) + + +def _build_one( + req: InstallRequirement, + output_dir: str, + verify: bool, + build_options: List[str], + global_options: List[str], + editable: bool, +) -> Optional[str]: + """Build one wheel. + + :return: The filename of the built wheel, or None if the build failed. + """ + artifact = "editable" if editable else "wheel" + try: + ensure_dir(output_dir) + except OSError as e: + logger.warning( + "Building %s for %s failed: %s", + artifact, + req.name, + e, + ) + return None + + # Install build deps into temporary directory (PEP 518) + with req.build_env: + wheel_path = _build_one_inside_env( + req, output_dir, build_options, global_options, editable + ) + if wheel_path and verify: + try: + _verify_one(req, wheel_path) + except (InvalidWheelFilename, UnsupportedWheel) as e: + logger.warning("Built %s for %s is invalid: %s", artifact, req.name, e) + return None + return wheel_path + + +def _build_one_inside_env( + req: InstallRequirement, + output_dir: str, + build_options: List[str], + global_options: List[str], + editable: bool, +) -> Optional[str]: + with TempDirectory(kind="wheel") as temp_dir: + assert req.name + if req.use_pep517: + assert req.metadata_directory + assert req.pep517_backend + if global_options: + logger.warning( + "Ignoring --global-option when building %s using PEP 517", req.name + ) + if build_options: + logger.warning( + "Ignoring --build-option when building %s using PEP 517", req.name + ) + if editable: + wheel_path = build_wheel_editable( + name=req.name, + backend=req.pep517_backend, + metadata_directory=req.metadata_directory, + tempd=temp_dir.path, + ) + else: + wheel_path = build_wheel_pep517( + name=req.name, + backend=req.pep517_backend, + metadata_directory=req.metadata_directory, + tempd=temp_dir.path, + ) + else: + wheel_path = build_wheel_legacy( + name=req.name, + setup_py_path=req.setup_py_path, + source_dir=req.unpacked_source_directory, + global_options=global_options, + build_options=build_options, + tempd=temp_dir.path, + ) + + if wheel_path is not None: + wheel_name = os.path.basename(wheel_path) + dest_path = os.path.join(output_dir, wheel_name) + try: + wheel_hash, length = hash_file(wheel_path) + shutil.move(wheel_path, dest_path) + logger.info( + "Created wheel for %s: filename=%s size=%d sha256=%s", + req.name, + wheel_name, + length, + wheel_hash.hexdigest(), + ) + logger.info("Stored in directory: %s", output_dir) + return dest_path + except Exception as e: + logger.warning( + "Building wheel for %s failed: %s", + req.name, + e, + ) + # Ignore return, we can't do anything else useful. + if not req.use_pep517: + _clean_one_legacy(req, global_options) + return None + + +def _clean_one_legacy(req: InstallRequirement, global_options: List[str]) -> bool: + clean_args = make_setuptools_clean_args( + req.setup_py_path, + global_options=global_options, + ) + + logger.info("Running setup.py clean for %s", req.name) + try: + call_subprocess( + clean_args, command_desc="python setup.py clean", cwd=req.source_dir + ) + return True + except Exception: + logger.error("Failed cleaning build dir for %s", req.name) + return False + + +def build( + requirements: Iterable[InstallRequirement], + wheel_cache: WheelCache, + verify: bool, + build_options: List[str], + global_options: List[str], +) -> BuildResult: + """Build wheels. + + :return: The list of InstallRequirement that succeeded to build and + the list of InstallRequirement that failed to build. + """ + if not requirements: + return [], [] + + # Build the wheels. + logger.info( + "Building wheels for collected packages: %s", + ", ".join(req.name for req in requirements), # type: ignore + ) + + with indent_log(): + build_successes, build_failures = [], [] + for req in requirements: + assert req.name + cache_dir = _get_cache_dir(req, wheel_cache) + wheel_file = _build_one( + req, + cache_dir, + verify, + build_options, + global_options, + req.editable and req.permit_editable_wheels, + ) + if wheel_file: + # Record the download origin in the cache + if req.download_info is not None: + # download_info is guaranteed to be set because when we build an + # InstallRequirement it has been through the preparer before, but + # let's be cautious. + wheel_cache.record_download_origin(cache_dir, req.download_info) + # Update the link for this. + req.link = Link(path_to_url(wheel_file)) + req.local_file_path = req.link.file_path + assert req.link.is_wheel + build_successes.append(req) + else: + build_failures.append(req) + + # notify success/failure + if build_successes: + logger.info( + "Successfully built %s", + " ".join([req.name for req in build_successes]), # type: ignore + ) + if build_failures: + logger.info( + "Failed to build %s", + " ".join([req.name for req in build_failures]), # type: ignore + ) + # Return a list of requirements that failed to build + return build_successes, build_failures diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/__init__.py b/.venv/lib/python3.11/site-packages/pip/_vendor/__init__.py new file mode 100644 index 0000000..c1884ba --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/__init__.py @@ -0,0 +1,121 @@ +""" +pip._vendor is for vendoring dependencies of pip to prevent needing pip to +depend on something external. + +Files inside of pip._vendor should be considered immutable and should only be +updated to versions from upstream. +""" +from __future__ import absolute_import + +import glob +import os.path +import sys + +# Downstream redistributors which have debundled our dependencies should also +# patch this value to be true. This will trigger the additional patching +# to cause things like "six" to be available as pip. +DEBUNDLED = False + +# By default, look in this directory for a bunch of .whl files which we will +# add to the beginning of sys.path before attempting to import anything. This +# is done to support downstream re-distributors like Debian and Fedora who +# wish to create their own Wheels for our dependencies to aid in debundling. +WHEEL_DIR = os.path.abspath(os.path.dirname(__file__)) + + +# Define a small helper function to alias our vendored modules to the real ones +# if the vendored ones do not exist. This idea of this was taken from +# https://github.com/kennethreitz/requests/pull/2567. +def vendored(modulename): + vendored_name = "{0}.{1}".format(__name__, modulename) + + try: + __import__(modulename, globals(), locals(), level=0) + except ImportError: + # We can just silently allow import failures to pass here. If we + # got to this point it means that ``import pip._vendor.whatever`` + # failed and so did ``import whatever``. Since we're importing this + # upfront in an attempt to alias imports, not erroring here will + # just mean we get a regular import error whenever pip *actually* + # tries to import one of these modules to use it, which actually + # gives us a better error message than we would have otherwise + # gotten. + pass + else: + sys.modules[vendored_name] = sys.modules[modulename] + base, head = vendored_name.rsplit(".", 1) + setattr(sys.modules[base], head, sys.modules[modulename]) + + +# If we're operating in a debundled setup, then we want to go ahead and trigger +# the aliasing of our vendored libraries as well as looking for wheels to add +# to our sys.path. This will cause all of this code to be a no-op typically +# however downstream redistributors can enable it in a consistent way across +# all platforms. +if DEBUNDLED: + # Actually look inside of WHEEL_DIR to find .whl files and add them to the + # front of our sys.path. + sys.path[:] = glob.glob(os.path.join(WHEEL_DIR, "*.whl")) + sys.path + + # Actually alias all of our vendored dependencies. + vendored("cachecontrol") + vendored("certifi") + vendored("colorama") + vendored("distlib") + vendored("distro") + vendored("six") + vendored("six.moves") + vendored("six.moves.urllib") + vendored("six.moves.urllib.parse") + vendored("packaging") + vendored("packaging.version") + vendored("packaging.specifiers") + vendored("pep517") + vendored("pkg_resources") + vendored("platformdirs") + vendored("progress") + vendored("requests") + vendored("requests.exceptions") + vendored("requests.packages") + vendored("requests.packages.urllib3") + vendored("requests.packages.urllib3._collections") + vendored("requests.packages.urllib3.connection") + vendored("requests.packages.urllib3.connectionpool") + vendored("requests.packages.urllib3.contrib") + vendored("requests.packages.urllib3.contrib.ntlmpool") + vendored("requests.packages.urllib3.contrib.pyopenssl") + vendored("requests.packages.urllib3.exceptions") + vendored("requests.packages.urllib3.fields") + vendored("requests.packages.urllib3.filepost") + vendored("requests.packages.urllib3.packages") + vendored("requests.packages.urllib3.packages.ordered_dict") + vendored("requests.packages.urllib3.packages.six") + vendored("requests.packages.urllib3.packages.ssl_match_hostname") + vendored("requests.packages.urllib3.packages.ssl_match_hostname." + "_implementation") + vendored("requests.packages.urllib3.poolmanager") + vendored("requests.packages.urllib3.request") + vendored("requests.packages.urllib3.response") + vendored("requests.packages.urllib3.util") + vendored("requests.packages.urllib3.util.connection") + vendored("requests.packages.urllib3.util.request") + vendored("requests.packages.urllib3.util.response") + vendored("requests.packages.urllib3.util.retry") + vendored("requests.packages.urllib3.util.ssl_") + vendored("requests.packages.urllib3.util.timeout") + vendored("requests.packages.urllib3.util.url") + vendored("resolvelib") + vendored("rich") + vendored("rich.console") + vendored("rich.highlighter") + vendored("rich.logging") + vendored("rich.markup") + vendored("rich.progress") + vendored("rich.segment") + vendored("rich.style") + vendored("rich.text") + vendored("rich.traceback") + vendored("tenacity") + vendored("tomli") + vendored("truststore") + vendored("urllib3") diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/__pycache__/__init__.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4019a11b99588448b226c9897e9053e4a2c00d69 GIT binary patch literal 5706 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

5Kv_KE=A_08z%DL7rn%r10K+q$3mAwrrC%a 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 N^N}|qiWQc@{{?M}!I}U7 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/__init__.py b/.venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/__init__.py new file mode 100644 index 0000000..4d20bc9 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/__init__.py @@ -0,0 +1,28 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 + +"""CacheControl import Interface. + +Make it easy to import from cachecontrol without long namespaces. +""" +__author__ = "Eric Larson" +__email__ = "eric@ionrock.org" +__version__ = "0.13.1" + +from pip._vendor.cachecontrol.adapter import CacheControlAdapter +from pip._vendor.cachecontrol.controller import CacheController +from pip._vendor.cachecontrol.wrapper import CacheControl + +__all__ = [ + "__author__", + "__email__", + "__version__", + "CacheControlAdapter", + "CacheController", + "CacheControl", +] + +import logging + +logging.getLogger(__name__).addHandler(logging.NullHandler()) diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9b320ec8dd5d77b276b108958720dab329a1abaa GIT binary patch literal 1022 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d4eecbfddd77550bbab7ca5332fc2ef4952a1836 GIT binary patch literal 4546 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 PcVA=wZx0B?BjNu7*yVkv literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e63886287831b158204f5b477fc79a1128406320 GIT binary patch literal 4802 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 M+8=%(3thec1Gc|2O#lD@ literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..47bf92447a2b8886c76e741c6bd8b81a9bd43bde GIT binary patch literal 1914 zcmaJ?&2Jk;6rZuz>$M%nc4GRKFUKw)2I{3yAXGG>xKYzaSdkKh*a}%2dm1n7hnZcc za{9PdHdd**pE3n*~_JUP9J&!;&q<(9L4VOKyI?zEUl(u9VmARBn6mvZ1P^#-yM-U6yMN zQZ{sp8tTou+_VUV<=8EyX89tR2$X!?BBo_B!N;;m27=V6vFaNpnS7PBsA5`54GiKN zgetPC>=Ihp^f;54W-mQ(SlWOo1mZ<%ER0@y=sjoWDuzzHgfFNPOWrm;Zp$!KFK!M! z_A)2l2Nto$VE0~jESP~px)!`G1YE7DGQ=}$wVUMLe_rN`fqqgB($ZJX{ZF}{wxL1B zk6GSQNmV0O!>F6Rb0j*m877ju3cqql_ zOx^Hly3mVUr5K?Za7w2cdx^30jLiVsjW#T+d0iBD1qMt&#W0OBF^kWOXhuu7iZPmG zODV=qb9Ipkm_IMtuaFsoS#B_T-;19@tC*rLThM@tY_&DxzCskTBa7?pT0^GVIyJt8 zvtWv=pS>-rM5cPR*@lwAUmy`nJ4D|RRb@*I1n-otUKLHnB3GJn?JIekm||0Did9gn z8&vd5-)}JS0hOCgLQBoIH!<2>G!JoR;V~Zo>!5BH%`P6?`0>uewI9~@*M1|N6*s%+ zWS5@3ywv%`ot)X%Tp{UZ7u@MNcWTDHSadJF(M?8E{Bs2CAI3VjyJ-}OeRubpyZh~f zSD$eCr(E9Q@-8R%Yr6;UKj8{bxq`zLjuNTP+A(a6iqXnug^l7=knKrW3{swE$j|!} zLw+4u%t0~FG2~bD0z-Z+E-}OkLT4G9V~qJLPJ8ic^?nOFom8uo-J>24r%2JaDaVxH zrbS*3(pc)Ju{4^-Qop)EbIhNq=G*vfGR~8nqU#In*WYyf#F49J>f&msJB$IOs~L{opAFxux=P*+!YWmI4D0#N9axG zG&({bIpgG_YtA?wh0|Tc<7Jn-?2OY9x8#hI%axsRa=Dw%IJw*nXPmlmv`}y_%(|Cf bb69^HcIKTQV5s literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/_cmd.py b/.venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/_cmd.py new file mode 100644 index 0000000..2c84208 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/_cmd.py @@ -0,0 +1,70 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 +from __future__ import annotations + +import logging +from argparse import ArgumentParser +from typing import TYPE_CHECKING + +from pip._vendor import requests + +from pip._vendor.cachecontrol.adapter import CacheControlAdapter +from pip._vendor.cachecontrol.cache import DictCache +from pip._vendor.cachecontrol.controller import logger + +if TYPE_CHECKING: + from argparse import Namespace + + from pip._vendor.cachecontrol.controller import CacheController + + +def setup_logging() -> None: + logger.setLevel(logging.DEBUG) + handler = logging.StreamHandler() + logger.addHandler(handler) + + +def get_session() -> requests.Session: + adapter = CacheControlAdapter( + DictCache(), cache_etags=True, serializer=None, heuristic=None + ) + sess = requests.Session() + sess.mount("http://", adapter) + sess.mount("https://", adapter) + + sess.cache_controller = adapter.controller # type: ignore[attr-defined] + return sess + + +def get_args() -> Namespace: + parser = ArgumentParser() + parser.add_argument("url", help="The URL to try and cache") + return parser.parse_args() + + +def main() -> None: + args = get_args() + sess = get_session() + + # Make a request to get a response + resp = sess.get(args.url) + + # Turn on logging + setup_logging() + + # try setting the cache + cache_controller: CacheController = ( + sess.cache_controller # type: ignore[attr-defined] + ) + cache_controller.cache_response(resp.request, resp.raw) + + # Now try to get it + if cache_controller.cached_request(resp.request): + print("Cached!") + else: + print("Not cached :(") + + +if __name__ == "__main__": + main() diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/adapter.py b/.venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/adapter.py new file mode 100644 index 0000000..3e83e30 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/adapter.py @@ -0,0 +1,161 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 +from __future__ import annotations + +import functools +import types +import zlib +from typing import TYPE_CHECKING, Any, Collection, Mapping + +from pip._vendor.requests.adapters import HTTPAdapter + +from pip._vendor.cachecontrol.cache import DictCache +from pip._vendor.cachecontrol.controller import PERMANENT_REDIRECT_STATUSES, CacheController +from pip._vendor.cachecontrol.filewrapper import CallbackFileWrapper + +if TYPE_CHECKING: + from pip._vendor.requests import PreparedRequest, Response + from pip._vendor.urllib3 import HTTPResponse + + from pip._vendor.cachecontrol.cache import BaseCache + from pip._vendor.cachecontrol.heuristics import BaseHeuristic + from pip._vendor.cachecontrol.serialize import Serializer + + +class CacheControlAdapter(HTTPAdapter): + invalidating_methods = {"PUT", "PATCH", "DELETE"} + + def __init__( + self, + cache: BaseCache | None = None, + cache_etags: bool = True, + controller_class: type[CacheController] | None = None, + serializer: Serializer | None = None, + heuristic: BaseHeuristic | None = None, + cacheable_methods: Collection[str] | None = None, + *args: Any, + **kw: Any, + ) -> None: + super().__init__(*args, **kw) + self.cache = DictCache() if cache is None else cache + self.heuristic = heuristic + self.cacheable_methods = cacheable_methods or ("GET",) + + controller_factory = controller_class or CacheController + self.controller = controller_factory( + self.cache, cache_etags=cache_etags, serializer=serializer + ) + + def send( + self, + request: PreparedRequest, + stream: bool = False, + timeout: None | float | tuple[float, float] | tuple[float, None] = None, + verify: bool | str = True, + cert: (None | bytes | str | tuple[bytes | str, bytes | str]) = None, + proxies: Mapping[str, str] | None = None, + cacheable_methods: Collection[str] | None = None, + ) -> Response: + """ + Send a request. Use the request information to see if it + exists in the cache and cache the response if we need to and can. + """ + cacheable = cacheable_methods or self.cacheable_methods + if request.method in cacheable: + try: + cached_response = self.controller.cached_request(request) + except zlib.error: + cached_response = None + if cached_response: + return self.build_response(request, cached_response, from_cache=True) + + # check for etags and add headers if appropriate + request.headers.update(self.controller.conditional_headers(request)) + + resp = super().send(request, stream, timeout, verify, cert, proxies) + + return resp + + def build_response( + self, + request: PreparedRequest, + response: HTTPResponse, + from_cache: bool = False, + cacheable_methods: Collection[str] | None = None, + ) -> Response: + """ + Build a response by making a request or using the cache. + + This will end up calling send and returning a potentially + cached response + """ + cacheable = cacheable_methods or self.cacheable_methods + if not from_cache and request.method in cacheable: + # Check for any heuristics that might update headers + # before trying to cache. + if self.heuristic: + response = self.heuristic.apply(response) + + # apply any expiration heuristics + if response.status == 304: + # We must have sent an ETag request. This could mean + # that we've been expired already or that we simply + # have an etag. In either case, we want to try and + # update the cache if that is the case. + cached_response = self.controller.update_cached_response( + request, response + ) + + if cached_response is not response: + from_cache = True + + # We are done with the server response, read a + # possible response body (compliant servers will + # not return one, but we cannot be 100% sure) and + # release the connection back to the pool. + response.read(decode_content=False) + response.release_conn() + + response = cached_response + + # We always cache the 301 responses + elif int(response.status) in PERMANENT_REDIRECT_STATUSES: + self.controller.cache_response(request, response) + else: + # Wrap the response file with a wrapper that will cache the + # response when the stream has been consumed. + response._fp = CallbackFileWrapper( # type: ignore[attr-defined] + response._fp, # type: ignore[attr-defined] + functools.partial( + self.controller.cache_response, request, response + ), + ) + if response.chunked: + super_update_chunk_length = response._update_chunk_length # type: ignore[attr-defined] + + def _update_chunk_length(self: HTTPResponse) -> None: + super_update_chunk_length() + if self.chunk_left == 0: + self._fp._close() # type: ignore[attr-defined] + + response._update_chunk_length = types.MethodType( # type: ignore[attr-defined] + _update_chunk_length, response + ) + + resp: Response = super().build_response(request, response) # type: ignore[no-untyped-call] + + # See if we should invalidate the cache. + if request.method in self.invalidating_methods and resp.ok: + assert request.url is not None + cache_url = self.controller.cache_url(request.url) + self.cache.delete(cache_url) + + # Give the request a from_cache attr to let people use it + resp.from_cache = from_cache # type: ignore[attr-defined] + + return resp + + def close(self) -> None: + self.cache.close() + super().close() # type: ignore[no-untyped-call] diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/cache.py b/.venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/cache.py new file mode 100644 index 0000000..3293b00 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/cache.py @@ -0,0 +1,74 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 + +""" +The cache object API for implementing caches. The default is a thread +safe in-memory dictionary. +""" +from __future__ import annotations + +from threading import Lock +from typing import IO, TYPE_CHECKING, MutableMapping + +if TYPE_CHECKING: + from datetime import datetime + + +class BaseCache: + def get(self, key: str) -> bytes | None: + raise NotImplementedError() + + def set( + self, key: str, value: bytes, expires: int | datetime | None = None + ) -> None: + raise NotImplementedError() + + def delete(self, key: str) -> None: + raise NotImplementedError() + + def close(self) -> None: + pass + + +class DictCache(BaseCache): + def __init__(self, init_dict: MutableMapping[str, bytes] | None = None) -> None: + self.lock = Lock() + self.data = init_dict or {} + + def get(self, key: str) -> bytes | None: + return self.data.get(key, None) + + def set( + self, key: str, value: bytes, expires: int | datetime | None = None + ) -> None: + with self.lock: + self.data.update({key: value}) + + def delete(self, key: str) -> None: + with self.lock: + if key in self.data: + self.data.pop(key) + + +class SeparateBodyBaseCache(BaseCache): + """ + In this variant, the body is not stored mixed in with the metadata, but is + passed in (as a bytes-like object) in a separate call to ``set_body()``. + + That is, the expected interaction pattern is:: + + cache.set(key, serialized_metadata) + cache.set_body(key) + + Similarly, the body should be loaded separately via ``get_body()``. + """ + + def set_body(self, key: str, body: bytes) -> None: + raise NotImplementedError() + + def get_body(self, key: str) -> IO[bytes] | None: + """ + Return the body as file-like object. + """ + raise NotImplementedError() diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/caches/__init__.py b/.venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/caches/__init__.py new file mode 100644 index 0000000..24ff469 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/caches/__init__.py @@ -0,0 +1,8 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 + +from pip._vendor.cachecontrol.caches.file_cache import FileCache, SeparateBodyFileCache +from pip._vendor.cachecontrol.caches.redis_cache import RedisCache + +__all__ = ["FileCache", "SeparateBodyFileCache", "RedisCache"] diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f73ec5a08dde4ea4363e855d30f27fb085770fdd GIT binary patch literal 523 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 E4@q~O!TaC7`CLsw=cwyc4ovz3a}d z1Bsj}2M!U61gfa8s!GkFq($`5V~_m_HnK#t5)x8Ry}6>Noci8uY-~a+)baSu%$qke z?|t*;z5OYb>LF0RCzEsYG9iE9pjBXuMR++2^dYf`B{-xgYI zNJTj>^St#9?KK4re{nt|!qwizrIy;+;u zbivfGEEeWWR=mQzd0Gg3{le$Rb%&bFHA;)YoCi%bqvsZ=yP!Mvbv>GRFE=rv`*uLz zEt!Rz<_+rWCA*{>AZB??FCesFWxzZq8u&Uxlnp+UD=mhKVc4!67{*fnD`;{p<{r@9 zPXSpWn*+nE(pqvAelLMRLh&YD3`IX+TPg=nt7tnw!wck~oq*0mQX%uWl$Uj()$434 z!Upi4wC83B>x21hjAI#!H)!xU#!xM`56CvSY%enQ16kVLVFd`|W%+|Zz<}QVwZ(hO zcbBU(_1<)&H(gWG4CkjqdBJqbG?cj=VS?T+*^K&I`)oG=t6IL?GEjmwt&)HaHxSJM z14V!AZH%nMHoz^OwEYX8;S343pD=D-5rcT^5JI}8*>ZsAZkPGCJ^>F75qrM9x*O1C zsUps|SFa3Kq;;jWQ)g?DUtYTkTv?Hp;EZLt%f@8qx>mm;1b9K)r6RB6!`M+afb*oy z?bZ}90%Tu>oCu@0IT`eP)m2_ z9idnb3QWUZg3*#=7Qjzn3B4VP;2vQrfUxHnK0Y(c&&FT*COZI&*ce|4yBV-gC|lGC zOdsz?<0bOkG>p4E7Y-N#p8q?L71E58zM&>bCMP!4zO{?@F5SIUJzOo<)l5Up)LQj< zYN(ocG+a*|ZKRGiNg_G%eDL4{=h4X@&(sIU8-wGk=Qn!?*S@axW;RFCKj`1-zYbLO z`pAjK$cg)j&4B~e8})(A>bdBQ%XcqVryljMUwxK2`80E~o;lUXoT{f!H`1qnyINPL z8tPQ7RbOze_=@$RpEGrJyrGWQT9v=Cu29;J3a7xl{}UA=SLliiaX=Psg^eI=QOJ$3 zJqC=WJsnXY63n37K_Czq6m>26Oc{Qv3|IT>%2-1gtF>yRd^;S0Jh}&e@eDd|qkOlI ze?+d0E<^6<2!!n@02{W;>w!=pYh#uGIV`qx@d9;9lxedb(+Zd-Z1;v{I*u01Q4NB! zui36$q z+CK|~JLtghgAX1~eluC`Kiud)+$2Ks5GSis+@GGQqfgaQh`egLp{8rRHpQ0EPLvUG zjxs(K_?U?-|B&mTm3``Kn7kobf*D%L^Bln7nC5z#OR1#=9suKk)riO|!QAv?_*UUB z)W-uf?jdL($i8MEaB?8xW2jsqFBElE;#y`Uju=yc&oDEx-9Uhg(T-uJiMaTDBL`JF zrg%sg#VL#n4E^uFHsM>xIwX>quU)f94I}I^jG||i9qg-y@m1M$q8ZkY+hR6k7+9if z)vAmi0`5rte3J`tLtDo-@Y8_1|2 zAH+4CBrf3=-9(MasV4as5-E+UPG@(a`LkvCRs-`H1{5B*qmUgB7E9m{41Fg&2p>eb z?GK_{=Lbn71^-Sq`|zt&w}hTpH{{X07tGWOH literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py b/.venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py new file mode 100644 index 0000000..1fd2801 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py @@ -0,0 +1,181 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 +from __future__ import annotations + +import hashlib +import os +from textwrap import dedent +from typing import IO, TYPE_CHECKING + +from pip._vendor.cachecontrol.cache import BaseCache, SeparateBodyBaseCache +from pip._vendor.cachecontrol.controller import CacheController + +if TYPE_CHECKING: + from datetime import datetime + + from filelock import BaseFileLock + + +def _secure_open_write(filename: str, fmode: int) -> IO[bytes]: + # We only want to write to this file, so open it in write only mode + flags = os.O_WRONLY + + # os.O_CREAT | os.O_EXCL will fail if the file already exists, so we only + # will open *new* files. + # We specify this because we want to ensure that the mode we pass is the + # mode of the file. + flags |= os.O_CREAT | os.O_EXCL + + # Do not follow symlinks to prevent someone from making a symlink that + # we follow and insecurely open a cache file. + if hasattr(os, "O_NOFOLLOW"): + flags |= os.O_NOFOLLOW + + # On Windows we'll mark this file as binary + if hasattr(os, "O_BINARY"): + flags |= os.O_BINARY + + # Before we open our file, we want to delete any existing file that is + # there + try: + os.remove(filename) + except OSError: + # The file must not exist already, so we can just skip ahead to opening + pass + + # Open our file, the use of os.O_CREAT | os.O_EXCL will ensure that if a + # race condition happens between the os.remove and this line, that an + # error will be raised. Because we utilize a lockfile this should only + # happen if someone is attempting to attack us. + fd = os.open(filename, flags, fmode) + try: + return os.fdopen(fd, "wb") + + except: + # An error occurred wrapping our FD in a file object + os.close(fd) + raise + + +class _FileCacheMixin: + """Shared implementation for both FileCache variants.""" + + def __init__( + self, + directory: str, + forever: bool = False, + filemode: int = 0o0600, + dirmode: int = 0o0700, + lock_class: type[BaseFileLock] | None = None, + ) -> None: + try: + if lock_class is None: + from filelock import FileLock + + lock_class = FileLock + except ImportError: + notice = dedent( + """ + NOTE: In order to use the FileCache you must have + filelock installed. You can install it via pip: + pip install filelock + """ + ) + raise ImportError(notice) + + self.directory = directory + self.forever = forever + self.filemode = filemode + self.dirmode = dirmode + self.lock_class = lock_class + + @staticmethod + def encode(x: str) -> str: + return hashlib.sha224(x.encode()).hexdigest() + + def _fn(self, name: str) -> str: + # NOTE: This method should not change as some may depend on it. + # See: https://github.com/ionrock/cachecontrol/issues/63 + hashed = self.encode(name) + parts = list(hashed[:5]) + [hashed] + return os.path.join(self.directory, *parts) + + def get(self, key: str) -> bytes | None: + name = self._fn(key) + try: + with open(name, "rb") as fh: + return fh.read() + + except FileNotFoundError: + return None + + def set( + self, key: str, value: bytes, expires: int | datetime | None = None + ) -> None: + name = self._fn(key) + self._write(name, value) + + def _write(self, path: str, data: bytes) -> None: + """ + Safely write the data to the given path. + """ + # Make sure the directory exists + try: + os.makedirs(os.path.dirname(path), self.dirmode) + except OSError: + pass + + with self.lock_class(path + ".lock"): + # Write our actual file + with _secure_open_write(path, self.filemode) as fh: + fh.write(data) + + def _delete(self, key: str, suffix: str) -> None: + name = self._fn(key) + suffix + if not self.forever: + try: + os.remove(name) + except FileNotFoundError: + pass + + +class FileCache(_FileCacheMixin, BaseCache): + """ + Traditional FileCache: body is stored in memory, so not suitable for large + downloads. + """ + + def delete(self, key: str) -> None: + self._delete(key, "") + + +class SeparateBodyFileCache(_FileCacheMixin, SeparateBodyBaseCache): + """ + Memory-efficient FileCache: body is stored in a separate file, reducing + peak memory usage. + """ + + def get_body(self, key: str) -> IO[bytes] | None: + name = self._fn(key) + ".body" + try: + return open(name, "rb") + except FileNotFoundError: + return None + + def set_body(self, key: str, body: bytes) -> None: + name = self._fn(key) + ".body" + self._write(name, body) + + def delete(self, key: str) -> None: + self._delete(key, "") + self._delete(key, ".body") + + +def url_to_file_path(url: str, filecache: FileCache) -> str: + """Return the file cache path based on the URL. + + This does not ensure the file exists! + """ + key = CacheController.cache_url(url) + return filecache._fn(key) diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py b/.venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py new file mode 100644 index 0000000..f4f68c4 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py @@ -0,0 +1,48 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 +from __future__ import annotations + + +from datetime import datetime, timezone +from typing import TYPE_CHECKING + +from pip._vendor.cachecontrol.cache import BaseCache + +if TYPE_CHECKING: + from redis import Redis + + +class RedisCache(BaseCache): + def __init__(self, conn: Redis[bytes]) -> None: + self.conn = conn + + def get(self, key: str) -> bytes | None: + return self.conn.get(key) + + def set( + self, key: str, value: bytes, expires: int | datetime | None = None + ) -> None: + if not expires: + self.conn.set(key, value) + elif isinstance(expires, datetime): + now_utc = datetime.now(timezone.utc) + if expires.tzinfo is None: + now_utc = now_utc.replace(tzinfo=None) + delta = expires - now_utc + self.conn.setex(key, int(delta.total_seconds()), value) + else: + self.conn.setex(key, expires, value) + + def delete(self, key: str) -> None: + self.conn.delete(key) + + def clear(self) -> None: + """Helper for clearing all the keys in a database. Use with + caution!""" + for key in self.conn.keys(): + self.conn.delete(key) + + def close(self) -> None: + """Redis uses connection pooling, no need to close the connection.""" + pass diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/controller.py b/.venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/controller.py new file mode 100644 index 0000000..586b9f9 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/controller.py @@ -0,0 +1,494 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 + +""" +The httplib2 algorithms ported for use with requests. +""" +from __future__ import annotations + +import calendar +import logging +import re +import time +from email.utils import parsedate_tz +from typing import TYPE_CHECKING, Collection, Mapping + +from pip._vendor.requests.structures import CaseInsensitiveDict + +from pip._vendor.cachecontrol.cache import DictCache, SeparateBodyBaseCache +from pip._vendor.cachecontrol.serialize import Serializer + +if TYPE_CHECKING: + from typing import Literal + + from pip._vendor.requests import PreparedRequest + from pip._vendor.urllib3 import HTTPResponse + + from pip._vendor.cachecontrol.cache import BaseCache + +logger = logging.getLogger(__name__) + +URI = re.compile(r"^(([^:/?#]+):)?(//([^/?#]*))?([^?#]*)(\?([^#]*))?(#(.*))?") + +PERMANENT_REDIRECT_STATUSES = (301, 308) + + +def parse_uri(uri: str) -> tuple[str, str, str, str, str]: + """Parses a URI using the regex given in Appendix B of RFC 3986. + + (scheme, authority, path, query, fragment) = parse_uri(uri) + """ + match = URI.match(uri) + assert match is not None + groups = match.groups() + return (groups[1], groups[3], groups[4], groups[6], groups[8]) + + +class CacheController: + """An interface to see if request should cached or not.""" + + def __init__( + self, + cache: BaseCache | None = None, + cache_etags: bool = True, + serializer: Serializer | None = None, + status_codes: Collection[int] | None = None, + ): + self.cache = DictCache() if cache is None else cache + self.cache_etags = cache_etags + self.serializer = serializer or Serializer() + self.cacheable_status_codes = status_codes or (200, 203, 300, 301, 308) + + @classmethod + def _urlnorm(cls, uri: str) -> str: + """Normalize the URL to create a safe key for the cache""" + (scheme, authority, path, query, fragment) = parse_uri(uri) + if not scheme or not authority: + raise Exception("Only absolute URIs are allowed. uri = %s" % uri) + + scheme = scheme.lower() + authority = authority.lower() + + if not path: + path = "/" + + # Could do syntax based normalization of the URI before + # computing the digest. See Section 6.2.2 of Std 66. + request_uri = query and "?".join([path, query]) or path + defrag_uri = scheme + "://" + authority + request_uri + + return defrag_uri + + @classmethod + def cache_url(cls, uri: str) -> str: + return cls._urlnorm(uri) + + def parse_cache_control(self, headers: Mapping[str, str]) -> dict[str, int | None]: + known_directives = { + # https://tools.ietf.org/html/rfc7234#section-5.2 + "max-age": (int, True), + "max-stale": (int, False), + "min-fresh": (int, True), + "no-cache": (None, False), + "no-store": (None, False), + "no-transform": (None, False), + "only-if-cached": (None, False), + "must-revalidate": (None, False), + "public": (None, False), + "private": (None, False), + "proxy-revalidate": (None, False), + "s-maxage": (int, True), + } + + cc_headers = headers.get("cache-control", headers.get("Cache-Control", "")) + + retval: dict[str, int | None] = {} + + for cc_directive in cc_headers.split(","): + if not cc_directive.strip(): + continue + + parts = cc_directive.split("=", 1) + directive = parts[0].strip() + + try: + typ, required = known_directives[directive] + except KeyError: + logger.debug("Ignoring unknown cache-control directive: %s", directive) + continue + + if not typ or not required: + retval[directive] = None + if typ: + try: + retval[directive] = typ(parts[1].strip()) + except IndexError: + if required: + logger.debug( + "Missing value for cache-control " "directive: %s", + directive, + ) + except ValueError: + logger.debug( + "Invalid value for cache-control directive " "%s, must be %s", + directive, + typ.__name__, + ) + + return retval + + def _load_from_cache(self, request: PreparedRequest) -> HTTPResponse | None: + """ + Load a cached response, or return None if it's not available. + """ + cache_url = request.url + assert cache_url is not None + cache_data = self.cache.get(cache_url) + if cache_data is None: + logger.debug("No cache entry available") + return None + + if isinstance(self.cache, SeparateBodyBaseCache): + body_file = self.cache.get_body(cache_url) + else: + body_file = None + + result = self.serializer.loads(request, cache_data, body_file) + if result is None: + logger.warning("Cache entry deserialization failed, entry ignored") + return result + + def cached_request(self, request: PreparedRequest) -> HTTPResponse | Literal[False]: + """ + Return a cached response if it exists in the cache, otherwise + return False. + """ + assert request.url is not None + cache_url = self.cache_url(request.url) + logger.debug('Looking up "%s" in the cache', cache_url) + cc = self.parse_cache_control(request.headers) + + # Bail out if the request insists on fresh data + if "no-cache" in cc: + logger.debug('Request header has "no-cache", cache bypassed') + return False + + if "max-age" in cc and cc["max-age"] == 0: + logger.debug('Request header has "max_age" as 0, cache bypassed') + return False + + # Check whether we can load the response from the cache: + resp = self._load_from_cache(request) + if not resp: + return False + + # If we have a cached permanent redirect, return it immediately. We + # don't need to test our response for other headers b/c it is + # intrinsically "cacheable" as it is Permanent. + # + # See: + # https://tools.ietf.org/html/rfc7231#section-6.4.2 + # + # Client can try to refresh the value by repeating the request + # with cache busting headers as usual (ie no-cache). + if int(resp.status) in PERMANENT_REDIRECT_STATUSES: + msg = ( + "Returning cached permanent redirect response " + "(ignoring date and etag information)" + ) + logger.debug(msg) + return resp + + headers: CaseInsensitiveDict[str] = CaseInsensitiveDict(resp.headers) + if not headers or "date" not in headers: + if "etag" not in headers: + # Without date or etag, the cached response can never be used + # and should be deleted. + logger.debug("Purging cached response: no date or etag") + self.cache.delete(cache_url) + logger.debug("Ignoring cached response: no date") + return False + + now = time.time() + time_tuple = parsedate_tz(headers["date"]) + assert time_tuple is not None + date = calendar.timegm(time_tuple[:6]) + current_age = max(0, now - date) + logger.debug("Current age based on date: %i", current_age) + + # TODO: There is an assumption that the result will be a + # urllib3 response object. This may not be best since we + # could probably avoid instantiating or constructing the + # response until we know we need it. + resp_cc = self.parse_cache_control(headers) + + # determine freshness + freshness_lifetime = 0 + + # Check the max-age pragma in the cache control header + max_age = resp_cc.get("max-age") + if max_age is not None: + freshness_lifetime = max_age + logger.debug("Freshness lifetime from max-age: %i", freshness_lifetime) + + # If there isn't a max-age, check for an expires header + elif "expires" in headers: + expires = parsedate_tz(headers["expires"]) + if expires is not None: + expire_time = calendar.timegm(expires[:6]) - date + freshness_lifetime = max(0, expire_time) + logger.debug("Freshness lifetime from expires: %i", freshness_lifetime) + + # Determine if we are setting freshness limit in the + # request. Note, this overrides what was in the response. + max_age = cc.get("max-age") + if max_age is not None: + freshness_lifetime = max_age + logger.debug( + "Freshness lifetime from request max-age: %i", freshness_lifetime + ) + + min_fresh = cc.get("min-fresh") + if min_fresh is not None: + # adjust our current age by our min fresh + current_age += min_fresh + logger.debug("Adjusted current age from min-fresh: %i", current_age) + + # Return entry if it is fresh enough + if freshness_lifetime > current_age: + logger.debug('The response is "fresh", returning cached response') + logger.debug("%i > %i", freshness_lifetime, current_age) + return resp + + # we're not fresh. If we don't have an Etag, clear it out + if "etag" not in headers: + logger.debug('The cached response is "stale" with no etag, purging') + self.cache.delete(cache_url) + + # return the original handler + return False + + def conditional_headers(self, request: PreparedRequest) -> dict[str, str]: + resp = self._load_from_cache(request) + new_headers = {} + + if resp: + headers: CaseInsensitiveDict[str] = CaseInsensitiveDict(resp.headers) + + if "etag" in headers: + new_headers["If-None-Match"] = headers["ETag"] + + if "last-modified" in headers: + new_headers["If-Modified-Since"] = headers["Last-Modified"] + + return new_headers + + def _cache_set( + self, + cache_url: str, + request: PreparedRequest, + response: HTTPResponse, + body: bytes | None = None, + expires_time: int | None = None, + ) -> None: + """ + Store the data in the cache. + """ + if isinstance(self.cache, SeparateBodyBaseCache): + # We pass in the body separately; just put a placeholder empty + # string in the metadata. + self.cache.set( + cache_url, + self.serializer.dumps(request, response, b""), + expires=expires_time, + ) + # body is None can happen when, for example, we're only updating + # headers, as is the case in update_cached_response(). + if body is not None: + self.cache.set_body(cache_url, body) + else: + self.cache.set( + cache_url, + self.serializer.dumps(request, response, body), + expires=expires_time, + ) + + def cache_response( + self, + request: PreparedRequest, + response: HTTPResponse, + body: bytes | None = None, + status_codes: Collection[int] | None = None, + ) -> None: + """ + Algorithm for caching requests. + + This assumes a requests Response object. + """ + # From httplib2: Don't cache 206's since we aren't going to + # handle byte range requests + cacheable_status_codes = status_codes or self.cacheable_status_codes + if response.status not in cacheable_status_codes: + logger.debug( + "Status code %s not in %s", response.status, cacheable_status_codes + ) + return + + response_headers: CaseInsensitiveDict[str] = CaseInsensitiveDict( + response.headers + ) + + if "date" in response_headers: + time_tuple = parsedate_tz(response_headers["date"]) + assert time_tuple is not None + date = calendar.timegm(time_tuple[:6]) + else: + date = 0 + + # If we've been given a body, our response has a Content-Length, that + # Content-Length is valid then we can check to see if the body we've + # been given matches the expected size, and if it doesn't we'll just + # skip trying to cache it. + if ( + body is not None + and "content-length" in response_headers + and response_headers["content-length"].isdigit() + and int(response_headers["content-length"]) != len(body) + ): + return + + cc_req = self.parse_cache_control(request.headers) + cc = self.parse_cache_control(response_headers) + + assert request.url is not None + cache_url = self.cache_url(request.url) + logger.debug('Updating cache with response from "%s"', cache_url) + + # Delete it from the cache if we happen to have it stored there + no_store = False + if "no-store" in cc: + no_store = True + logger.debug('Response header has "no-store"') + if "no-store" in cc_req: + no_store = True + logger.debug('Request header has "no-store"') + if no_store and self.cache.get(cache_url): + logger.debug('Purging existing cache entry to honor "no-store"') + self.cache.delete(cache_url) + if no_store: + return + + # https://tools.ietf.org/html/rfc7234#section-4.1: + # A Vary header field-value of "*" always fails to match. + # Storing such a response leads to a deserialization warning + # during cache lookup and is not allowed to ever be served, + # so storing it can be avoided. + if "*" in response_headers.get("vary", ""): + logger.debug('Response header has "Vary: *"') + return + + # If we've been given an etag, then keep the response + if self.cache_etags and "etag" in response_headers: + expires_time = 0 + if response_headers.get("expires"): + expires = parsedate_tz(response_headers["expires"]) + if expires is not None: + expires_time = calendar.timegm(expires[:6]) - date + + expires_time = max(expires_time, 14 * 86400) + + logger.debug(f"etag object cached for {expires_time} seconds") + logger.debug("Caching due to etag") + self._cache_set(cache_url, request, response, body, expires_time) + + # Add to the cache any permanent redirects. We do this before looking + # that the Date headers. + elif int(response.status) in PERMANENT_REDIRECT_STATUSES: + logger.debug("Caching permanent redirect") + self._cache_set(cache_url, request, response, b"") + + # Add to the cache if the response headers demand it. If there + # is no date header then we can't do anything about expiring + # the cache. + elif "date" in response_headers: + time_tuple = parsedate_tz(response_headers["date"]) + assert time_tuple is not None + date = calendar.timegm(time_tuple[:6]) + # cache when there is a max-age > 0 + max_age = cc.get("max-age") + if max_age is not None and max_age > 0: + logger.debug("Caching b/c date exists and max-age > 0") + expires_time = max_age + self._cache_set( + cache_url, + request, + response, + body, + expires_time, + ) + + # If the request can expire, it means we should cache it + # in the meantime. + elif "expires" in response_headers: + if response_headers["expires"]: + expires = parsedate_tz(response_headers["expires"]) + if expires is not None: + expires_time = calendar.timegm(expires[:6]) - date + else: + expires_time = None + + logger.debug( + "Caching b/c of expires header. expires in {} seconds".format( + expires_time + ) + ) + self._cache_set( + cache_url, + request, + response, + body, + expires_time, + ) + + def update_cached_response( + self, request: PreparedRequest, response: HTTPResponse + ) -> HTTPResponse: + """On a 304 we will get a new set of headers that we want to + update our cached value with, assuming we have one. + + This should only ever be called when we've sent an ETag and + gotten a 304 as the response. + """ + assert request.url is not None + cache_url = self.cache_url(request.url) + cached_response = self._load_from_cache(request) + + if not cached_response: + # we didn't have a cached response + return response + + # Lets update our headers with the headers from the new request: + # http://tools.ietf.org/html/draft-ietf-httpbis-p4-conditional-26#section-4.1 + # + # The server isn't supposed to send headers that would make + # the cached body invalid. But... just in case, we'll be sure + # to strip out ones we know that might be problmatic due to + # typical assumptions. + excluded_headers = ["content-length"] + + cached_response.headers.update( + { + k: v + for k, v in response.headers.items() # type: ignore[no-untyped-call] + if k.lower() not in excluded_headers + } + ) + + # we want a 200 b/c we have content via the cache + cached_response.status = 200 + + # update our cache + self._cache_set(cache_url, request, cached_response) + + return cached_response diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/filewrapper.py b/.venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/filewrapper.py new file mode 100644 index 0000000..2514390 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/filewrapper.py @@ -0,0 +1,119 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 +from __future__ import annotations + +import mmap +from tempfile import NamedTemporaryFile +from typing import TYPE_CHECKING, Any, Callable + +if TYPE_CHECKING: + from http.client import HTTPResponse + + +class CallbackFileWrapper: + """ + Small wrapper around a fp object which will tee everything read into a + buffer, and when that file is closed it will execute a callback with the + contents of that buffer. + + All attributes are proxied to the underlying file object. + + This class uses members with a double underscore (__) leading prefix so as + not to accidentally shadow an attribute. + + The data is stored in a temporary file until it is all available. As long + as the temporary files directory is disk-based (sometimes it's a + memory-backed-``tmpfs`` on Linux), data will be unloaded to disk if memory + pressure is high. For small files the disk usually won't be used at all, + it'll all be in the filesystem memory cache, so there should be no + performance impact. + """ + + def __init__( + self, fp: HTTPResponse, callback: Callable[[bytes], None] | None + ) -> None: + self.__buf = NamedTemporaryFile("rb+", delete=True) + self.__fp = fp + self.__callback = callback + + def __getattr__(self, name: str) -> Any: + # The vaguaries of garbage collection means that self.__fp is + # not always set. By using __getattribute__ and the private + # name[0] allows looking up the attribute value and raising an + # AttributeError when it doesn't exist. This stop thigns from + # infinitely recursing calls to getattr in the case where + # self.__fp hasn't been set. + # + # [0] https://docs.python.org/2/reference/expressions.html#atom-identifiers + fp = self.__getattribute__("_CallbackFileWrapper__fp") + return getattr(fp, name) + + def __is_fp_closed(self) -> bool: + try: + return self.__fp.fp is None + + except AttributeError: + pass + + try: + closed: bool = self.__fp.closed + return closed + + except AttributeError: + pass + + # We just don't cache it then. + # TODO: Add some logging here... + return False + + def _close(self) -> None: + if self.__callback: + if self.__buf.tell() == 0: + # Empty file: + result = b"" + else: + # Return the data without actually loading it into memory, + # relying on Python's buffer API and mmap(). mmap() just gives + # a view directly into the filesystem's memory cache, so it + # doesn't result in duplicate memory use. + self.__buf.seek(0, 0) + result = memoryview( + mmap.mmap(self.__buf.fileno(), 0, access=mmap.ACCESS_READ) + ) + self.__callback(result) + + # We assign this to None here, because otherwise we can get into + # really tricky problems where the CPython interpreter dead locks + # because the callback is holding a reference to something which + # has a __del__ method. Setting this to None breaks the cycle + # and allows the garbage collector to do it's thing normally. + self.__callback = None + + # Closing the temporary file releases memory and frees disk space. + # Important when caching big files. + self.__buf.close() + + def read(self, amt: int | None = None) -> bytes: + data: bytes = self.__fp.read(amt) + if data: + # We may be dealing with b'', a sign that things are over: + # it's passed e.g. after we've already closed self.__buf. + self.__buf.write(data) + if self.__is_fp_closed(): + self._close() + + return data + + def _safe_read(self, amt: int) -> bytes: + data: bytes = self.__fp._safe_read(amt) # type: ignore[attr-defined] + if amt == 2 and data == b"\r\n": + # urllib executes this read to toss the CRLF at the end + # of the chunk. + return data + + self.__buf.write(data) + if self.__is_fp_closed(): + self._close() + + return data diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/heuristics.py b/.venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/heuristics.py new file mode 100644 index 0000000..b9d72ca --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/heuristics.py @@ -0,0 +1,154 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 +from __future__ import annotations + +import calendar +import time +from datetime import datetime, timedelta, timezone +from email.utils import formatdate, parsedate, parsedate_tz +from typing import TYPE_CHECKING, Any, Mapping + +if TYPE_CHECKING: + from pip._vendor.urllib3 import HTTPResponse + +TIME_FMT = "%a, %d %b %Y %H:%M:%S GMT" + + +def expire_after(delta: timedelta, date: datetime | None = None) -> datetime: + date = date or datetime.now(timezone.utc) + return date + delta + + +def datetime_to_header(dt: datetime) -> str: + return formatdate(calendar.timegm(dt.timetuple())) + + +class BaseHeuristic: + def warning(self, response: HTTPResponse) -> str | None: + """ + Return a valid 1xx warning header value describing the cache + adjustments. + + The response is provided too allow warnings like 113 + http://tools.ietf.org/html/rfc7234#section-5.5.4 where we need + to explicitly say response is over 24 hours old. + """ + return '110 - "Response is Stale"' + + def update_headers(self, response: HTTPResponse) -> dict[str, str]: + """Update the response headers with any new headers. + + NOTE: This SHOULD always include some Warning header to + signify that the response was cached by the client, not + by way of the provided headers. + """ + return {} + + def apply(self, response: HTTPResponse) -> HTTPResponse: + updated_headers = self.update_headers(response) + + if updated_headers: + response.headers.update(updated_headers) + warning_header_value = self.warning(response) + if warning_header_value is not None: + response.headers.update({"Warning": warning_header_value}) + + return response + + +class OneDayCache(BaseHeuristic): + """ + Cache the response by providing an expires 1 day in the + future. + """ + + def update_headers(self, response: HTTPResponse) -> dict[str, str]: + headers = {} + + if "expires" not in response.headers: + date = parsedate(response.headers["date"]) + expires = expire_after(timedelta(days=1), date=datetime(*date[:6], tzinfo=timezone.utc)) # type: ignore[misc] + headers["expires"] = datetime_to_header(expires) + headers["cache-control"] = "public" + return headers + + +class ExpiresAfter(BaseHeuristic): + """ + Cache **all** requests for a defined time period. + """ + + def __init__(self, **kw: Any) -> None: + self.delta = timedelta(**kw) + + def update_headers(self, response: HTTPResponse) -> dict[str, str]: + expires = expire_after(self.delta) + return {"expires": datetime_to_header(expires), "cache-control": "public"} + + def warning(self, response: HTTPResponse) -> str | None: + tmpl = "110 - Automatically cached for %s. Response might be stale" + return tmpl % self.delta + + +class LastModified(BaseHeuristic): + """ + If there is no Expires header already, fall back on Last-Modified + using the heuristic from + http://tools.ietf.org/html/rfc7234#section-4.2.2 + to calculate a reasonable value. + + Firefox also does something like this per + https://developer.mozilla.org/en-US/docs/Web/HTTP/Caching_FAQ + http://lxr.mozilla.org/mozilla-release/source/netwerk/protocol/http/nsHttpResponseHead.cpp#397 + Unlike mozilla we limit this to 24-hr. + """ + + cacheable_by_default_statuses = { + 200, + 203, + 204, + 206, + 300, + 301, + 404, + 405, + 410, + 414, + 501, + } + + def update_headers(self, resp: HTTPResponse) -> dict[str, str]: + headers: Mapping[str, str] = resp.headers + + if "expires" in headers: + return {} + + if "cache-control" in headers and headers["cache-control"] != "public": + return {} + + if resp.status not in self.cacheable_by_default_statuses: + return {} + + if "date" not in headers or "last-modified" not in headers: + return {} + + time_tuple = parsedate_tz(headers["date"]) + assert time_tuple is not None + date = calendar.timegm(time_tuple[:6]) + last_modified = parsedate(headers["last-modified"]) + if last_modified is None: + return {} + + now = time.time() + current_age = max(0, now - date) + delta = date - calendar.timegm(last_modified) + freshness_lifetime = max(0, min(delta / 10, 24 * 3600)) + if freshness_lifetime <= current_age: + return {} + + expires = date + freshness_lifetime + return {"expires": time.strftime(TIME_FMT, time.gmtime(expires))} + + def warning(self, resp: HTTPResponse) -> str | None: + return None diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/py.typed b/.venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/py.typed new file mode 100644 index 0000000..e69de29 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/serialize.py b/.venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/serialize.py new file mode 100644 index 0000000..f9e967c --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/serialize.py @@ -0,0 +1,206 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 +from __future__ import annotations + +import io +from typing import IO, TYPE_CHECKING, Any, Mapping, cast + +from pip._vendor import msgpack +from pip._vendor.requests.structures import CaseInsensitiveDict +from pip._vendor.urllib3 import HTTPResponse + +if TYPE_CHECKING: + from pip._vendor.requests import PreparedRequest + + +class Serializer: + serde_version = "4" + + def dumps( + self, + request: PreparedRequest, + response: HTTPResponse, + body: bytes | None = None, + ) -> bytes: + response_headers: CaseInsensitiveDict[str] = CaseInsensitiveDict( + response.headers + ) + + if body is None: + # When a body isn't passed in, we'll read the response. We + # also update the response with a new file handler to be + # sure it acts as though it was never read. + body = response.read(decode_content=False) + response._fp = io.BytesIO(body) # type: ignore[attr-defined] + response.length_remaining = len(body) + + data = { + "response": { + "body": body, # Empty bytestring if body is stored separately + "headers": {str(k): str(v) for k, v in response.headers.items()}, # type: ignore[no-untyped-call] + "status": response.status, + "version": response.version, + "reason": str(response.reason), + "decode_content": response.decode_content, + } + } + + # Construct our vary headers + data["vary"] = {} + if "vary" in response_headers: + varied_headers = response_headers["vary"].split(",") + for header in varied_headers: + header = str(header).strip() + header_value = request.headers.get(header, None) + if header_value is not None: + header_value = str(header_value) + data["vary"][header] = header_value + + return b",".join([f"cc={self.serde_version}".encode(), self.serialize(data)]) + + def serialize(self, data: dict[str, Any]) -> bytes: + return cast(bytes, msgpack.dumps(data, use_bin_type=True)) + + def loads( + self, + request: PreparedRequest, + data: bytes, + body_file: IO[bytes] | None = None, + ) -> HTTPResponse | None: + # Short circuit if we've been given an empty set of data + if not data: + return None + + # Determine what version of the serializer the data was serialized + # with + try: + ver, data = data.split(b",", 1) + except ValueError: + ver = b"cc=0" + + # Make sure that our "ver" is actually a version and isn't a false + # positive from a , being in the data stream. + if ver[:3] != b"cc=": + data = ver + data + ver = b"cc=0" + + # Get the version number out of the cc=N + verstr = ver.split(b"=", 1)[-1].decode("ascii") + + # Dispatch to the actual load method for the given version + try: + return getattr(self, f"_loads_v{verstr}")(request, data, body_file) # type: ignore[no-any-return] + + except AttributeError: + # This is a version we don't have a loads function for, so we'll + # just treat it as a miss and return None + return None + + def prepare_response( + self, + request: PreparedRequest, + cached: Mapping[str, Any], + body_file: IO[bytes] | None = None, + ) -> HTTPResponse | None: + """Verify our vary headers match and construct a real urllib3 + HTTPResponse object. + """ + # Special case the '*' Vary value as it means we cannot actually + # determine if the cached response is suitable for this request. + # This case is also handled in the controller code when creating + # a cache entry, but is left here for backwards compatibility. + if "*" in cached.get("vary", {}): + return None + + # Ensure that the Vary headers for the cached response match our + # request + for header, value in cached.get("vary", {}).items(): + if request.headers.get(header, None) != value: + return None + + body_raw = cached["response"].pop("body") + + headers: CaseInsensitiveDict[str] = CaseInsensitiveDict( + data=cached["response"]["headers"] + ) + if headers.get("transfer-encoding", "") == "chunked": + headers.pop("transfer-encoding") + + cached["response"]["headers"] = headers + + try: + body: IO[bytes] + if body_file is None: + body = io.BytesIO(body_raw) + else: + body = body_file + except TypeError: + # This can happen if cachecontrol serialized to v1 format (pickle) + # using Python 2. A Python 2 str(byte string) will be unpickled as + # a Python 3 str (unicode string), which will cause the above to + # fail with: + # + # TypeError: 'str' does not support the buffer interface + body = io.BytesIO(body_raw.encode("utf8")) + + # Discard any `strict` parameter serialized by older version of cachecontrol. + cached["response"].pop("strict", None) + + return HTTPResponse(body=body, preload_content=False, **cached["response"]) + + def _loads_v0( + self, + request: PreparedRequest, + data: bytes, + body_file: IO[bytes] | None = None, + ) -> None: + # The original legacy cache data. This doesn't contain enough + # information to construct everything we need, so we'll treat this as + # a miss. + return None + + def _loads_v1( + self, + request: PreparedRequest, + data: bytes, + body_file: IO[bytes] | None = None, + ) -> HTTPResponse | None: + # The "v1" pickled cache format. This is no longer supported + # for security reasons, so we treat it as a miss. + return None + + def _loads_v2( + self, + request: PreparedRequest, + data: bytes, + body_file: IO[bytes] | None = None, + ) -> HTTPResponse | None: + # The "v2" compressed base64 cache format. + # This has been removed due to age and poor size/performance + # characteristics, so we treat it as a miss. + return None + + def _loads_v3( + self, + request: PreparedRequest, + data: bytes, + body_file: IO[bytes] | None = None, + ) -> None: + # Due to Python 2 encoding issues, it's impossible to know for sure + # exactly how to load v3 entries, thus we'll treat these as a miss so + # that they get rewritten out as v4 entries. + return None + + def _loads_v4( + self, + request: PreparedRequest, + data: bytes, + body_file: IO[bytes] | None = None, + ) -> HTTPResponse | None: + try: + cached = msgpack.loads(data, raw=False) + except ValueError: + return None + + return self.prepare_response(request, cached, body_file) diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/wrapper.py b/.venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/wrapper.py new file mode 100644 index 0000000..f618bc3 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/wrapper.py @@ -0,0 +1,43 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 +from __future__ import annotations + +from typing import TYPE_CHECKING, Collection + +from pip._vendor.cachecontrol.adapter import CacheControlAdapter +from pip._vendor.cachecontrol.cache import DictCache + +if TYPE_CHECKING: + from pip._vendor import requests + + from pip._vendor.cachecontrol.cache import BaseCache + from pip._vendor.cachecontrol.controller import CacheController + from pip._vendor.cachecontrol.heuristics import BaseHeuristic + from pip._vendor.cachecontrol.serialize import Serializer + + +def CacheControl( + sess: requests.Session, + cache: BaseCache | None = None, + cache_etags: bool = True, + serializer: Serializer | None = None, + heuristic: BaseHeuristic | None = None, + controller_class: type[CacheController] | None = None, + adapter_class: type[CacheControlAdapter] | None = None, + cacheable_methods: Collection[str] | None = None, +) -> requests.Session: + cache = DictCache() if cache is None else cache + adapter_class = adapter_class or CacheControlAdapter + adapter = adapter_class( + cache, + cache_etags=cache_etags, + serializer=serializer, + heuristic=heuristic, + controller_class=controller_class, + cacheable_methods=cacheable_methods, + ) + sess.mount("http://", adapter) + sess.mount("https://", adapter) + + return sess diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/certifi/__init__.py b/.venv/lib/python3.11/site-packages/pip/_vendor/certifi/__init__.py new file mode 100644 index 0000000..8ce89ce --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/certifi/__init__.py @@ -0,0 +1,4 @@ +from .core import contents, where + +__all__ = ["contents", "where"] +__version__ = "2023.07.22" diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/certifi/__main__.py b/.venv/lib/python3.11/site-packages/pip/_vendor/certifi/__main__.py new file mode 100644 index 0000000..0037634 --- /dev/null +++ b/.venv/lib/python3.11/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/.venv/lib/python3.11/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1700029e63993d7e6cba2a0af018ca546100a74a GIT binary patch literal 385 zcmZusJ5R$f5Vn()mPTb`VL`BUAa2uv1$AaZl@LP8fMsI0F*tT)n^a-y)R~Qi9r15E zR+*5P*pRw)!c{?H;O=y<@1C!nP8&FS0mJOZ*^f=|OWu#OI(E)8pnyUFa+tu}OFRgu zNBxPH_%uiY+PDPWolocryI$Q&m9$J+Q#Ym=(@gs=uLGwZ+i@=*M7`4}jxV~6I!M)D zxNc%hguu8CF)o=lTuF@Iz{<6P^&DLpmqU_RA~+|u%GH=N&PswtRhkigDsWs^Q zI!1yKEpbuV%uOk_2#QK3OCE~(NeW!myFM;LR- zEyht%ty^cgq7Q-%b?DC8{A_woefbc=B{*9AC-33@({#~3oHdtw2eWX)de=351B={k A*#H0l literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6033e902199198eba262864e0838a2475784ad0b GIT binary patch literal 786 zcmah`&1(}u6rb78Y%nT@K4 zLYD%8z?)fg)&A8tM{->y%d?W;U~%H-TkK3#JCK5O@U@rkBHv&2ZNSaJ=!t}U9Rxg?+7$~aE6^wc9p1O5e^OR5*I z(GyV|qX2X4QHuG%5BDjdq>oW^;B+wan=I@ShsWsA(>ur`m<4t;;GIyIWd_v*$v*Pv zGqg613zWh(Czq zOob56!Hr?M7648DwHMaI+87#hV4Q;D2`IjK@b32KmlIH&g8B^9C!jtz z3#VrJ#4JzEwVAm#)E26Fc<&6TusGMO;lt7PX!~gAcxS4WW?E^I?M0f~9Bm$L9dEsA M95#mOVmAfH-!_NL+5i9m literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c6f09bd25fcc090e83ebe598997f7827d9b9a079 GIT binary patch literal 3408 zcmbVOU2NOd6}}WniIOGLwq(VzyGV8FC2C@6`B~Z`Yl<`|?4e$4)ONONTL_N4is?wA zaLL4V=MKV9U_nrzZqXrrSO>o>MUXz^ZF}4H)_uO-Tc<=enIagmK5-|eh59G?yp9cu}2R1sTuPyB5IYJ%~ofL`A>7g=LI~EQ+ak(r6ncd+UlEEzMJ$RO(L-t&-iR(zsT9(~9}2~2TaJJn(?jzlu#(iZQWRF| zE5<8{V&b`#VqGisbyo8C)?e)RYq=;x9WM`528)9np@URj9_s8EcXPbcAjKr~N_rxo zOGQbP=*RQ{n$!nrN*{s|NqF%jF+KI6SWL7}GTgP7bZ0NQk@sm#qs%r+M!vQh`^`a# z#TJ$fD_b%3J7t<>)V{;2R@PpkS)*#%YPqc1hFQ&)O|2!ErL3mnO8FYCWKEVeY%8mo zRhw3AD<9j%V_eULc6q3Gk+EFJi>Q`TGRo8w5iKv=`izESI|V7jIeT9LJRo*Q4|RRf z#-4VueR5k3oqGtb@EG1!+3XtE(Gj3MI4amu1-s)|FvXS*=WT`$s7NJ!=K_ zJx?C-*Y}e(qn20h(yDHyL#=dcNUbns|(W%&&Tl7p0sQl)tYKA zd3~J`*A{-}@s`cJsG@+yDN~e3WDmEq|J%Z%MVVEosz94zsP<~bEE&|Gch$n&s7Sl2l&Q+9N^R9%GNEeq6!NgqyM?mxt3s>eLjK&jf@RorvZiXc)mzjm zz!+EETbYZE%q2H-sWJA7JNC-GnQ!DV zM;c=oHUZZ`((&D^0)XorxC2n%>mXfyFt}ZM9c1$$mvly8t@B?BLArrp@jAnV#n6R3 zQMEL~c*J=Ut!k!jRBz>YpGlU$?kJO3o*3DZUmPK zc>+2R8-+%|XaXpFqumFgC*Ce~#~Y@vhhUJ$2S!mtHm=<+Hm=kzn_Y58N67yZF)Rx6 zaw3aE`wt@zvThbEH|;8Gwx=JVanhYQeYT?Xj#xe+pU(mDC+U(Pm0r`*x0@8Dkt zspS{+l#kJzewimM4Z1-!Czv%__4)M#3?Xn2WP+VSz*Dl*0G^;j;UkL-;3-`WM2X?kMTmvu8)C4|NuL^B+@h@P8Gq@{zxXIY13m2L&1PS$aM| zmk+Yo(bl(-;dTjTtPcVgRM$G){?VCA)-ZntLchg}f31sN$h6q^V6Yd_4OUev)RPqd zo>vr4z^g0Ad0ffD&9>RVd%-8N1cG%209-%b|IyUPv-f8|pKin_-1x*j?i+dVqm_@> z?yqfJ-B@eLXI=TMBb|Ld@qgFAWG~`Af;rfaNFQ!v=Qsl1G>}bSLU{t^VK1U6x~ahd zd27}3;&+no714D(tmk@>dpa{=0rWf0I&SsuU> z?bRCoQ-TVv5q1)Fv7h*V(iWh{i_EpIV^4ag6Ys(E>`Omt{inOaUWds@g0%|>PR()6 zkjM#5f)FQMUp=ebNgSePi@Po_4$oSXZVyWpRP|ghsg2l zcKSp!8WABa0BjGAG= (3, 11): + + from importlib.resources import as_file, files + + _CACERT_CTX = None + _CACERT_PATH = None + + def where() -> str: + # This is slightly terrible, but we want to delay extracting the file + # in cases where we're inside of a zipimport situation until someone + # actually calls where(), but we don't want to re-extract the file + # on every call of where(), so we'll do it once then store it in a + # global variable. + global _CACERT_CTX + global _CACERT_PATH + if _CACERT_PATH is None: + # This is slightly janky, the importlib.resources API wants you to + # manage the cleanup of this file, so it doesn't actually return a + # path, it returns a context manager that will give you the path + # when you enter it and will do any cleanup when you leave it. In + # the common case of not needing a temporary file, it will just + # return the file system location and the __exit__() is a no-op. + # + # We also have to hold onto the actual context manager, because + # it will do the cleanup whenever it gets garbage collected, so + # we will also store that at the global level as well. + _CACERT_CTX = as_file(files("pip._vendor.certifi").joinpath("cacert.pem")) + _CACERT_PATH = str(_CACERT_CTX.__enter__()) + + return _CACERT_PATH + + def contents() -> str: + return files("pip._vendor.certifi").joinpath("cacert.pem").read_text(encoding="ascii") + +elif sys.version_info >= (3, 7): + + from importlib.resources import path as get_path, read_text + + _CACERT_CTX = None + _CACERT_PATH = None + + def where() -> str: + # This is slightly terrible, but we want to delay extracting the + # file in cases where we're inside of a zipimport situation until + # someone actually calls where(), but we don't want to re-extract + # the file on every call of where(), so we'll do it once then store + # it in a global variable. + global _CACERT_CTX + global _CACERT_PATH + if _CACERT_PATH is None: + # This is slightly janky, the importlib.resources API wants you + # to manage the cleanup of this file, so it doesn't actually + # return a path, it returns a context manager that will give + # you the path when you enter it and will do any cleanup when + # you leave it. In the common case of not needing a temporary + # file, it will just return the file system location and the + # __exit__() is a no-op. + # + # We also have to hold onto the actual context manager, because + # it will do the cleanup whenever it gets garbage collected, so + # we will also store that at the global level as well. + _CACERT_CTX = get_path("pip._vendor.certifi", "cacert.pem") + _CACERT_PATH = str(_CACERT_CTX.__enter__()) + + return _CACERT_PATH + + def contents() -> str: + return read_text("pip._vendor.certifi", "cacert.pem", encoding="ascii") + +else: + import os + import types + from typing import Union + + Package = Union[types.ModuleType, str] + Resource = Union[str, "os.PathLike"] + + # This fallback will work for Python versions prior to 3.7 that lack the + # importlib.resources module but relies on the existing `where` function + # so won't address issues with environments like PyOxidizer that don't set + # __file__ on modules. + def read_text( + package: Package, + resource: Resource, + encoding: str = 'utf-8', + errors: str = 'strict' + ) -> str: + with open(where(), encoding=encoding) as data: + return data.read() + + # If we don't have importlib.resources, then we will just do the old logic + # of assuming we're on the filesystem and munge the path directly. + def where() -> str: + f = os.path.dirname(__file__) + + return os.path.join(f, "cacert.pem") + + def contents() -> str: + return read_text("pip._vendor.certifi", "cacert.pem", encoding="ascii") diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/certifi/py.typed b/.venv/lib/python3.11/site-packages/pip/_vendor/certifi/py.typed new file mode 100644 index 0000000..e69de29 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/__init__.py b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/__init__.py new file mode 100644 index 0000000..fe58162 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/__init__.py @@ -0,0 +1,115 @@ +######################## BEGIN LICENSE BLOCK ######################## +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from typing import List, Union + +from .charsetgroupprober import CharSetGroupProber +from .charsetprober import CharSetProber +from .enums import InputState +from .resultdict import ResultDict +from .universaldetector import UniversalDetector +from .version import VERSION, __version__ + +__all__ = ["UniversalDetector", "detect", "detect_all", "__version__", "VERSION"] + + +def detect( + byte_str: Union[bytes, bytearray], should_rename_legacy: bool = False +) -> ResultDict: + """ + Detect the encoding of the given byte string. + + :param byte_str: The byte sequence to examine. + :type byte_str: ``bytes`` or ``bytearray`` + :param should_rename_legacy: Should we rename legacy encodings + to their more modern equivalents? + :type should_rename_legacy: ``bool`` + """ + if not isinstance(byte_str, bytearray): + if not isinstance(byte_str, bytes): + raise TypeError( + f"Expected object of type bytes or bytearray, got: {type(byte_str)}" + ) + byte_str = bytearray(byte_str) + detector = UniversalDetector(should_rename_legacy=should_rename_legacy) + detector.feed(byte_str) + return detector.close() + + +def detect_all( + byte_str: Union[bytes, bytearray], + ignore_threshold: bool = False, + should_rename_legacy: bool = False, +) -> List[ResultDict]: + """ + Detect all the possible encodings of the given byte string. + + :param byte_str: The byte sequence to examine. + :type byte_str: ``bytes`` or ``bytearray`` + :param ignore_threshold: Include encodings that are below + ``UniversalDetector.MINIMUM_THRESHOLD`` + in results. + :type ignore_threshold: ``bool`` + :param should_rename_legacy: Should we rename legacy encodings + to their more modern equivalents? + :type should_rename_legacy: ``bool`` + """ + if not isinstance(byte_str, bytearray): + if not isinstance(byte_str, bytes): + raise TypeError( + f"Expected object of type bytes or bytearray, got: {type(byte_str)}" + ) + byte_str = bytearray(byte_str) + + detector = UniversalDetector(should_rename_legacy=should_rename_legacy) + detector.feed(byte_str) + detector.close() + + if detector.input_state == InputState.HIGH_BYTE: + results: List[ResultDict] = [] + probers: List[CharSetProber] = [] + for prober in detector.charset_probers: + if isinstance(prober, CharSetGroupProber): + probers.extend(p for p in prober.probers) + else: + probers.append(prober) + for prober in probers: + if ignore_threshold or prober.get_confidence() > detector.MINIMUM_THRESHOLD: + charset_name = prober.charset_name or "" + lower_charset_name = charset_name.lower() + # Use Windows encoding name instead of ISO-8859 if we saw any + # extra Windows-specific bytes + if lower_charset_name.startswith("iso-8859") and detector.has_win_bytes: + charset_name = detector.ISO_WIN_MAP.get( + lower_charset_name, charset_name + ) + # Rename legacy encodings with superset encodings if asked + if should_rename_legacy: + charset_name = detector.LEGACY_MAP.get( + charset_name.lower(), charset_name + ) + results.append( + { + "encoding": charset_name, + "confidence": prober.get_confidence(), + "language": prober.language, + } + ) + if len(results) > 0: + return sorted(results, key=lambda result: -result["confidence"]) + + return [detector.result] diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/__init__.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9e545b59e6d0ab984715f9a56e668e9fb1484f4c GIT binary patch literal 5117 zcmdTIT}&IvdDcJcKd`|zJ`y1K0+^UfaDJKu2%$;?1dgBlK*9y-WESsYHd%X}*@cA2 zNGOV0u1ZzZmmu{{LRBx#DS3$0mwTzyO0Cp~KGoOaT-O>!lwrmJY%E>$Po)9!?4 z+QXnY;vK(XrfVFC_wp{mB-9GtIn$vcCy1{Se0;UwoMUGtFQo@44QfVk z?yN9p=WAeQ9bY?v!v1f`%3+gk85I>(x86*Oa`Ib-j4`_R@;rwp1oaA*7gE=-JS$)r ztuBm~2Aspm)Pg#pa;gAm=M6zwkko!Lrb4e47F-mt!b$ytD#TP7!@F#^25w9YUme$7 z(I`Q}E2Gh{6_ah&S)LN=PU9KnBnejm0=obV>h{?sRfsAo*8R%7ydd#WEF`&v5S4^D z7hBR0Ys;hPU%T; zm`hLuIjJ79OmGqwFi3@a3$T(9ROO)XfJ=x;q0^YAE~N~boms(|88S(knF-3c(BUxV zmS$$kU$vhqz-uR{h6L{mK|@J`hLV&7QRo_!z4rp(5@Z)~Fd<_B059NV5JV6cIY~&W z%8$!X-^xwxQ2Qer9srk~_x93iU$BavuSOp0nW z+L>Cy)r3a^j=*2}1%MUwwjNal*5hISh44=KQ~wI0G#YM>e(F$)0Rp+Z!4UJS3O@&#oHgF zmyXJvm>}BSSfq+G5MrHNKd3Ve9)%DKnGOxBDOpj(S!pNULQMDp0hdO!9~gD%+=GSQ z-A)j~?r<_DE%4?1tMi;1A zqfgmoCe7SJPZ>~e8;?K{neng41;EsKQfE>MnH3D;CV0Ga^u~px@F0cz9yS@N0?EcZ zdnGx>NlIU52|WeW%25FSgx?Cv9O;I-aee)s(JF_SM06cJw2O*-qO0p{ci61ki;1P~ zjLFG4ktgY)ZkM=Zd;!u0OnBNO8WH*p5t@j_GbKYtE+Uj^93KN5CQQLK1a1XX70CV+ zgtPZbTw<2z`W`m!D_a434`wJN7ObFGi(gCH`H{@IkrhP6fQ8L>g{5#4CXNyl|A>ie z#KhlW!VyitFgXC+06=$%qbiFUeUX!y!d^e49`2Xqg~gcLy~i4y$);04e6Z35N&q=v>whN){Ko-u zK*$QmAB|@%e$C>~Sp3^Ik7jH5;-S`jX47^iYde!`4XxU8?O_0cBU+#{k1URM3RVY6 zo*Me*=#R3Vvzq5DB&yZzxtb52x_{+1Y~y+8Whb<J!wsmW5@S3A}$cIB)zLT52ldleEeZ88m7dWg9{IOoUG(}sv zmXEZS^II(!Hd`*_>N}o~LPp&hfQ-5|ur`{vBmc1-GGL--v!y3j-?~-bv02}dtv{~S zAAc@YOkq)NJ&}I9^<*w|d@FQeGjt&vx~PRN=2|;`do^#f)CFMc>H^=H*;?=S2tb~I zf4z01D$nZu&w8Kqu79`*$+)ZGweQe+d!~JaRNrXUH>&wYGgYJ8RsJVeGp@#rrI8xz zc$gUsn+6BN0iA`r5!_ZWNzXCKsB~{Z8RO(jM?qJq^;H)Tg)x%U>sBGTkWdWsbsB2U z!`BW>bXc!lD1PuTyo!vCOPHudXw>i-#Czx#a!)jFKUDpR`=Z<% z4%yxd_s<1M=))s`AkIwb1(-K843lp~OmhYu*;}{K=}cwKp<|iKnnO*Q%9=w*GnF-m zPG%}=4uv!O)othX46Q3R(2fD-VXNTN_yK&iGq3cN-nfUA#n}+g4BB zS|p>i1~`q5wB$Yv;Bekb&@5_bHVEyAb*^@3*1Ei-IFC-=1?cYn E8}pgiL;wH) literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/big5freq.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/big5freq.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1f33bd01b679592e66a3e4ab168fb2b760f24a67 GIT binary patch literal 27247 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

-8L4>&cr?I(LI6Cp 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 cXQAmz@7M6ma$ui#!K29^=OV literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/version.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/version.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..027310662d3efab560b8586bc4ebcf4b5a5a998b GIT binary patch literal 550 zcmYjO&ubJh6i)UBTT-egz4Y>q?xBgR2vVe!wt`-2v8}>hhU_G}6U`(;lG!>v_2S>4 z2M?YU@$4U>2rYZ{A6TfTJ(=mwf-mI#;CqjJU*6Y^4T7S5LOa>t82{A8%GynG{WvBc zkU&Eu@DNMq#1WY1~PUwhcgv2Wx&f&7QtHWfg1rgP}2v# z92Go$%O}!PLbiDsGV8YCfE(D;+}yOmJ;4nft;*d=&XuOA&HLoM`-l$c{RO6n{m!hH zB*LaiGFwlQhFUDTK5`GU-m9lCkDtFd{D!V;>5KR5)JOWv@W8cFJXEsc2w05 z=SR-Ik!kSk+3N>POYTfkRFPl|ON7y>G*hP4h%JGKbTD9E1-Z3S#R^rh$i@ikSfiRX z +# +# 128 --> 0.42261 +# 256 --> 0.57851 +# 512 --> 0.74851 +# 1024 --> 0.89384 +# 2048 --> 0.97583 +# +# Ideal Distribution Ratio = 0.74851/(1-0.74851) =2.98 +# Random Distribution Ration = 512/(5401-512)=0.105 +# +# Typical Distribution Ratio about 25% of Ideal one, still much higher than RDR + +BIG5_TYPICAL_DISTRIBUTION_RATIO = 0.75 + +# Char to FreqOrder table +BIG5_TABLE_SIZE = 5376 +# fmt: off +BIG5_CHAR_TO_FREQ_ORDER = ( + 1,1801,1506, 255,1431, 198, 9, 82, 6,5008, 177, 202,3681,1256,2821, 110, # 16 +3814, 33,3274, 261, 76, 44,2114, 16,2946,2187,1176, 659,3971, 26,3451,2653, # 32 +1198,3972,3350,4202, 410,2215, 302, 590, 361,1964, 8, 204, 58,4510,5009,1932, # 48 + 63,5010,5011, 317,1614, 75, 222, 159,4203,2417,1480,5012,3555,3091, 224,2822, # 64 +3682, 3, 10,3973,1471, 29,2787,1135,2866,1940, 873, 130,3275,1123, 312,5013, # 80 +4511,2052, 507, 252, 682,5014, 142,1915, 124, 206,2947, 34,3556,3204, 64, 604, # 96 +5015,2501,1977,1978, 155,1991, 645, 641,1606,5016,3452, 337, 72, 406,5017, 80, # 112 + 630, 238,3205,1509, 263, 939,1092,2654, 756,1440,1094,3453, 449, 69,2987, 591, # 128 + 179,2096, 471, 115,2035,1844, 60, 50,2988, 134, 806,1869, 734,2036,3454, 180, # 144 + 995,1607, 156, 537,2907, 688,5018, 319,1305, 779,2145, 514,2379, 298,4512, 359, # 160 +2502, 90,2716,1338, 663, 11, 906,1099,2553, 20,2441, 182, 532,1716,5019, 732, # 176 +1376,4204,1311,1420,3206, 25,2317,1056, 113, 399, 382,1950, 242,3455,2474, 529, # 192 +3276, 475,1447,3683,5020, 117, 21, 656, 810,1297,2300,2334,3557,5021, 126,4205, # 208 + 706, 456, 150, 613,4513, 71,1118,2037,4206, 145,3092, 85, 835, 486,2115,1246, # 224 +1426, 428, 727,1285,1015, 800, 106, 623, 303,1281,5022,2128,2359, 347,3815, 221, # 240 +3558,3135,5023,1956,1153,4207, 83, 296,1199,3093, 192, 624, 93,5024, 822,1898, # 256 +2823,3136, 795,2065, 991,1554,1542,1592, 27, 43,2867, 859, 139,1456, 860,4514, # 272 + 437, 712,3974, 164,2397,3137, 695, 211,3037,2097, 195,3975,1608,3559,3560,3684, # 288 +3976, 234, 811,2989,2098,3977,2233,1441,3561,1615,2380, 668,2077,1638, 305, 228, # 304 +1664,4515, 467, 415,5025, 262,2099,1593, 239, 108, 300, 200,1033, 512,1247,2078, # 320 +5026,5027,2176,3207,3685,2682, 593, 845,1062,3277, 88,1723,2038,3978,1951, 212, # 336 + 266, 152, 149, 468,1899,4208,4516, 77, 187,5028,3038, 37, 5,2990,5029,3979, # 352 +5030,5031, 39,2524,4517,2908,3208,2079, 55, 148, 74,4518, 545, 483,1474,1029, # 368 +1665, 217,1870,1531,3138,1104,2655,4209, 24, 172,3562, 900,3980,3563,3564,4519, # 384 + 32,1408,2824,1312, 329, 487,2360,2251,2717, 784,2683, 4,3039,3351,1427,1789, # 400 + 188, 109, 499,5032,3686,1717,1790, 888,1217,3040,4520,5033,3565,5034,3352,1520, # 416 +3687,3981, 196,1034, 775,5035,5036, 929,1816, 249, 439, 38,5037,1063,5038, 794, # 432 +3982,1435,2301, 46, 178,3278,2066,5039,2381,5040, 214,1709,4521, 804, 35, 707, # 448 + 324,3688,1601,2554, 140, 459,4210,5041,5042,1365, 839, 272, 978,2262,2580,3456, # 464 +2129,1363,3689,1423, 697, 100,3094, 48, 70,1231, 495,3139,2196,5043,1294,5044, # 480 +2080, 462, 586,1042,3279, 853, 256, 988, 185,2382,3457,1698, 434,1084,5045,3458, # 496 + 314,2625,2788,4522,2335,2336, 569,2285, 637,1817,2525, 757,1162,1879,1616,3459, # 512 + 287,1577,2116, 768,4523,1671,2868,3566,2526,1321,3816, 909,2418,5046,4211, 933, # 528 +3817,4212,2053,2361,1222,4524, 765,2419,1322, 786,4525,5047,1920,1462,1677,2909, # 544 +1699,5048,4526,1424,2442,3140,3690,2600,3353,1775,1941,3460,3983,4213, 309,1369, # 560 +1130,2825, 364,2234,1653,1299,3984,3567,3985,3986,2656, 525,1085,3041, 902,2001, # 576 +1475, 964,4527, 421,1845,1415,1057,2286, 940,1364,3141, 376,4528,4529,1381, 7, # 592 +2527, 983,2383, 336,1710,2684,1846, 321,3461, 559,1131,3042,2752,1809,1132,1313, # 608 + 265,1481,1858,5049, 352,1203,2826,3280, 167,1089, 420,2827, 776, 792,1724,3568, # 624 +4214,2443,3281,5050,4215,5051, 446, 229, 333,2753, 901,3818,1200,1557,4530,2657, # 640 +1921, 395,2754,2685,3819,4216,1836, 125, 916,3209,2626,4531,5052,5053,3820,5054, # 656 +5055,5056,4532,3142,3691,1133,2555,1757,3462,1510,2318,1409,3569,5057,2146, 438, # 672 +2601,2910,2384,3354,1068, 958,3043, 461, 311,2869,2686,4217,1916,3210,4218,1979, # 688 + 383, 750,2755,2627,4219, 274, 539, 385,1278,1442,5058,1154,1965, 384, 561, 210, # 704 + 98,1295,2556,3570,5059,1711,2420,1482,3463,3987,2911,1257, 129,5060,3821, 642, # 720 + 523,2789,2790,2658,5061, 141,2235,1333, 68, 176, 441, 876, 907,4220, 603,2602, # 736 + 710, 171,3464, 404, 549, 18,3143,2398,1410,3692,1666,5062,3571,4533,2912,4534, # 752 +5063,2991, 368,5064, 146, 366, 99, 871,3693,1543, 748, 807,1586,1185, 22,2263, # 768 + 379,3822,3211,5065,3212, 505,1942,2628,1992,1382,2319,5066, 380,2362, 218, 702, # 784 +1818,1248,3465,3044,3572,3355,3282,5067,2992,3694, 930,3283,3823,5068, 59,5069, # 800 + 585, 601,4221, 497,3466,1112,1314,4535,1802,5070,1223,1472,2177,5071, 749,1837, # 816 + 690,1900,3824,1773,3988,1476, 429,1043,1791,2236,2117, 917,4222, 447,1086,1629, # 832 +5072, 556,5073,5074,2021,1654, 844,1090, 105, 550, 966,1758,2828,1008,1783, 686, # 848 +1095,5075,2287, 793,1602,5076,3573,2603,4536,4223,2948,2302,4537,3825, 980,2503, # 864 + 544, 353, 527,4538, 908,2687,2913,5077, 381,2629,1943,1348,5078,1341,1252, 560, # 880 +3095,5079,3467,2870,5080,2054, 973, 886,2081, 143,4539,5081,5082, 157,3989, 496, # 896 +4224, 57, 840, 540,2039,4540,4541,3468,2118,1445, 970,2264,1748,1966,2082,4225, # 912 +3144,1234,1776,3284,2829,3695, 773,1206,2130,1066,2040,1326,3990,1738,1725,4226, # 928 + 279,3145, 51,1544,2604, 423,1578,2131,2067, 173,4542,1880,5083,5084,1583, 264, # 944 + 610,3696,4543,2444, 280, 154,5085,5086,5087,1739, 338,1282,3096, 693,2871,1411, # 960 +1074,3826,2445,5088,4544,5089,5090,1240, 952,2399,5091,2914,1538,2688, 685,1483, # 976 +4227,2475,1436, 953,4228,2055,4545, 671,2400, 79,4229,2446,3285, 608, 567,2689, # 992 +3469,4230,4231,1691, 393,1261,1792,2401,5092,4546,5093,5094,5095,5096,1383,1672, # 1008 +3827,3213,1464, 522,1119, 661,1150, 216, 675,4547,3991,1432,3574, 609,4548,2690, # 1024 +2402,5097,5098,5099,4232,3045, 0,5100,2476, 315, 231,2447, 301,3356,4549,2385, # 1040 +5101, 233,4233,3697,1819,4550,4551,5102, 96,1777,1315,2083,5103, 257,5104,1810, # 1056 +3698,2718,1139,1820,4234,2022,1124,2164,2791,1778,2659,5105,3097, 363,1655,3214, # 1072 +5106,2993,5107,5108,5109,3992,1567,3993, 718, 103,3215, 849,1443, 341,3357,2949, # 1088 +1484,5110,1712, 127, 67, 339,4235,2403, 679,1412, 821,5111,5112, 834, 738, 351, # 1104 +2994,2147, 846, 235,1497,1881, 418,1993,3828,2719, 186,1100,2148,2756,3575,1545, # 1120 +1355,2950,2872,1377, 583,3994,4236,2581,2995,5113,1298,3699,1078,2557,3700,2363, # 1136 + 78,3829,3830, 267,1289,2100,2002,1594,4237, 348, 369,1274,2197,2178,1838,4552, # 1152 +1821,2830,3701,2757,2288,2003,4553,2951,2758, 144,3358, 882,4554,3995,2759,3470, # 1168 +4555,2915,5114,4238,1726, 320,5115,3996,3046, 788,2996,5116,2831,1774,1327,2873, # 1184 +3997,2832,5117,1306,4556,2004,1700,3831,3576,2364,2660, 787,2023, 506, 824,3702, # 1200 + 534, 323,4557,1044,3359,2024,1901, 946,3471,5118,1779,1500,1678,5119,1882,4558, # 1216 + 165, 243,4559,3703,2528, 123, 683,4239, 764,4560, 36,3998,1793, 589,2916, 816, # 1232 + 626,1667,3047,2237,1639,1555,1622,3832,3999,5120,4000,2874,1370,1228,1933, 891, # 1248 +2084,2917, 304,4240,5121, 292,2997,2720,3577, 691,2101,4241,1115,4561, 118, 662, # 1264 +5122, 611,1156, 854,2386,1316,2875, 2, 386, 515,2918,5123,5124,3286, 868,2238, # 1280 +1486, 855,2661, 785,2216,3048,5125,1040,3216,3578,5126,3146, 448,5127,1525,5128, # 1296 +2165,4562,5129,3833,5130,4242,2833,3579,3147, 503, 818,4001,3148,1568, 814, 676, # 1312 +1444, 306,1749,5131,3834,1416,1030, 197,1428, 805,2834,1501,4563,5132,5133,5134, # 1328 +1994,5135,4564,5136,5137,2198, 13,2792,3704,2998,3149,1229,1917,5138,3835,2132, # 1344 +5139,4243,4565,2404,3580,5140,2217,1511,1727,1120,5141,5142, 646,3836,2448, 307, # 1360 +5143,5144,1595,3217,5145,5146,5147,3705,1113,1356,4002,1465,2529,2530,5148, 519, # 1376 +5149, 128,2133, 92,2289,1980,5150,4003,1512, 342,3150,2199,5151,2793,2218,1981, # 1392 +3360,4244, 290,1656,1317, 789, 827,2365,5152,3837,4566, 562, 581,4004,5153, 401, # 1408 +4567,2252, 94,4568,5154,1399,2794,5155,1463,2025,4569,3218,1944,5156, 828,1105, # 1424 +4245,1262,1394,5157,4246, 605,4570,5158,1784,2876,5159,2835, 819,2102, 578,2200, # 1440 +2952,5160,1502, 436,3287,4247,3288,2836,4005,2919,3472,3473,5161,2721,2320,5162, # 1456 +5163,2337,2068, 23,4571, 193, 826,3838,2103, 699,1630,4248,3098, 390,1794,1064, # 1472 +3581,5164,1579,3099,3100,1400,5165,4249,1839,1640,2877,5166,4572,4573, 137,4250, # 1488 + 598,3101,1967, 780, 104, 974,2953,5167, 278, 899, 253, 402, 572, 504, 493,1339, # 1504 +5168,4006,1275,4574,2582,2558,5169,3706,3049,3102,2253, 565,1334,2722, 863, 41, # 1520 +5170,5171,4575,5172,1657,2338, 19, 463,2760,4251, 606,5173,2999,3289,1087,2085, # 1536 +1323,2662,3000,5174,1631,1623,1750,4252,2691,5175,2878, 791,2723,2663,2339, 232, # 1552 +2421,5176,3001,1498,5177,2664,2630, 755,1366,3707,3290,3151,2026,1609, 119,1918, # 1568 +3474, 862,1026,4253,5178,4007,3839,4576,4008,4577,2265,1952,2477,5179,1125, 817, # 1584 +4254,4255,4009,1513,1766,2041,1487,4256,3050,3291,2837,3840,3152,5180,5181,1507, # 1600 +5182,2692, 733, 40,1632,1106,2879, 345,4257, 841,2531, 230,4578,3002,1847,3292, # 1616 +3475,5183,1263, 986,3476,5184, 735, 879, 254,1137, 857, 622,1300,1180,1388,1562, # 1632 +4010,4011,2954, 967,2761,2665,1349, 592,2134,1692,3361,3003,1995,4258,1679,4012, # 1648 +1902,2188,5185, 739,3708,2724,1296,1290,5186,4259,2201,2202,1922,1563,2605,2559, # 1664 +1871,2762,3004,5187, 435,5188, 343,1108, 596, 17,1751,4579,2239,3477,3709,5189, # 1680 +4580, 294,3582,2955,1693, 477, 979, 281,2042,3583, 643,2043,3710,2631,2795,2266, # 1696 +1031,2340,2135,2303,3584,4581, 367,1249,2560,5190,3585,5191,4582,1283,3362,2005, # 1712 + 240,1762,3363,4583,4584, 836,1069,3153, 474,5192,2149,2532, 268,3586,5193,3219, # 1728 +1521,1284,5194,1658,1546,4260,5195,3587,3588,5196,4261,3364,2693,1685,4262, 961, # 1744 +1673,2632, 190,2006,2203,3841,4585,4586,5197, 570,2504,3711,1490,5198,4587,2633, # 1760 +3293,1957,4588, 584,1514, 396,1045,1945,5199,4589,1968,2449,5200,5201,4590,4013, # 1776 + 619,5202,3154,3294, 215,2007,2796,2561,3220,4591,3221,4592, 763,4263,3842,4593, # 1792 +5203,5204,1958,1767,2956,3365,3712,1174, 452,1477,4594,3366,3155,5205,2838,1253, # 1808 +2387,2189,1091,2290,4264, 492,5206, 638,1169,1825,2136,1752,4014, 648, 926,1021, # 1824 +1324,4595, 520,4596, 997, 847,1007, 892,4597,3843,2267,1872,3713,2405,1785,4598, # 1840 +1953,2957,3103,3222,1728,4265,2044,3714,4599,2008,1701,3156,1551, 30,2268,4266, # 1856 +5207,2027,4600,3589,5208, 501,5209,4267, 594,3478,2166,1822,3590,3479,3591,3223, # 1872 + 829,2839,4268,5210,1680,3157,1225,4269,5211,3295,4601,4270,3158,2341,5212,4602, # 1888 +4271,5213,4015,4016,5214,1848,2388,2606,3367,5215,4603, 374,4017, 652,4272,4273, # 1904 + 375,1140, 798,5216,5217,5218,2366,4604,2269, 546,1659, 138,3051,2450,4605,5219, # 1920 +2254, 612,1849, 910, 796,3844,1740,1371, 825,3845,3846,5220,2920,2562,5221, 692, # 1936 + 444,3052,2634, 801,4606,4274,5222,1491, 244,1053,3053,4275,4276, 340,5223,4018, # 1952 +1041,3005, 293,1168, 87,1357,5224,1539, 959,5225,2240, 721, 694,4277,3847, 219, # 1968 +1478, 644,1417,3368,2666,1413,1401,1335,1389,4019,5226,5227,3006,2367,3159,1826, # 1984 + 730,1515, 184,2840, 66,4607,5228,1660,2958, 246,3369, 378,1457, 226,3480, 975, # 2000 +4020,2959,1264,3592, 674, 696,5229, 163,5230,1141,2422,2167, 713,3593,3370,4608, # 2016 +4021,5231,5232,1186, 15,5233,1079,1070,5234,1522,3224,3594, 276,1050,2725, 758, # 2032 +1126, 653,2960,3296,5235,2342, 889,3595,4022,3104,3007, 903,1250,4609,4023,3481, # 2048 +3596,1342,1681,1718, 766,3297, 286, 89,2961,3715,5236,1713,5237,2607,3371,3008, # 2064 +5238,2962,2219,3225,2880,5239,4610,2505,2533, 181, 387,1075,4024, 731,2190,3372, # 2080 +5240,3298, 310, 313,3482,2304, 770,4278, 54,3054, 189,4611,3105,3848,4025,5241, # 2096 +1230,1617,1850, 355,3597,4279,4612,3373, 111,4280,3716,1350,3160,3483,3055,4281, # 2112 +2150,3299,3598,5242,2797,4026,4027,3009, 722,2009,5243,1071, 247,1207,2343,2478, # 2128 +1378,4613,2010, 864,1437,1214,4614, 373,3849,1142,2220, 667,4615, 442,2763,2563, # 2144 +3850,4028,1969,4282,3300,1840, 837, 170,1107, 934,1336,1883,5244,5245,2119,4283, # 2160 +2841, 743,1569,5246,4616,4284, 582,2389,1418,3484,5247,1803,5248, 357,1395,1729, # 2176 +3717,3301,2423,1564,2241,5249,3106,3851,1633,4617,1114,2086,4285,1532,5250, 482, # 2192 +2451,4618,5251,5252,1492, 833,1466,5253,2726,3599,1641,2842,5254,1526,1272,3718, # 2208 +4286,1686,1795, 416,2564,1903,1954,1804,5255,3852,2798,3853,1159,2321,5256,2881, # 2224 +4619,1610,1584,3056,2424,2764, 443,3302,1163,3161,5257,5258,4029,5259,4287,2506, # 2240 +3057,4620,4030,3162,2104,1647,3600,2011,1873,4288,5260,4289, 431,3485,5261, 250, # 2256 + 97, 81,4290,5262,1648,1851,1558, 160, 848,5263, 866, 740,1694,5264,2204,2843, # 2272 +3226,4291,4621,3719,1687, 950,2479, 426, 469,3227,3720,3721,4031,5265,5266,1188, # 2288 + 424,1996, 861,3601,4292,3854,2205,2694, 168,1235,3602,4293,5267,2087,1674,4622, # 2304 +3374,3303, 220,2565,1009,5268,3855, 670,3010, 332,1208, 717,5269,5270,3603,2452, # 2320 +4032,3375,5271, 513,5272,1209,2882,3376,3163,4623,1080,5273,5274,5275,5276,2534, # 2336 +3722,3604, 815,1587,4033,4034,5277,3605,3486,3856,1254,4624,1328,3058,1390,4035, # 2352 +1741,4036,3857,4037,5278, 236,3858,2453,3304,5279,5280,3723,3859,1273,3860,4625, # 2368 +5281, 308,5282,4626, 245,4627,1852,2480,1307,2583, 430, 715,2137,2454,5283, 270, # 2384 + 199,2883,4038,5284,3606,2727,1753, 761,1754, 725,1661,1841,4628,3487,3724,5285, # 2400 +5286, 587, 14,3305, 227,2608, 326, 480,2270, 943,2765,3607, 291, 650,1884,5287, # 2416 +1702,1226, 102,1547, 62,3488, 904,4629,3489,1164,4294,5288,5289,1224,1548,2766, # 2432 + 391, 498,1493,5290,1386,1419,5291,2056,1177,4630, 813, 880,1081,2368, 566,1145, # 2448 +4631,2291,1001,1035,2566,2609,2242, 394,1286,5292,5293,2069,5294, 86,1494,1730, # 2464 +4039, 491,1588, 745, 897,2963, 843,3377,4040,2767,2884,3306,1768, 998,2221,2070, # 2480 + 397,1827,1195,1970,3725,3011,3378, 284,5295,3861,2507,2138,2120,1904,5296,4041, # 2496 +2151,4042,4295,1036,3490,1905, 114,2567,4296, 209,1527,5297,5298,2964,2844,2635, # 2512 +2390,2728,3164, 812,2568,5299,3307,5300,1559, 737,1885,3726,1210, 885, 28,2695, # 2528 +3608,3862,5301,4297,1004,1780,4632,5302, 346,1982,2222,2696,4633,3863,1742, 797, # 2544 +1642,4043,1934,1072,1384,2152, 896,4044,3308,3727,3228,2885,3609,5303,2569,1959, # 2560 +4634,2455,1786,5304,5305,5306,4045,4298,1005,1308,3728,4299,2729,4635,4636,1528, # 2576 +2610, 161,1178,4300,1983, 987,4637,1101,4301, 631,4046,1157,3229,2425,1343,1241, # 2592 +1016,2243,2570, 372, 877,2344,2508,1160, 555,1935, 911,4047,5307, 466,1170, 169, # 2608 +1051,2921,2697,3729,2481,3012,1182,2012,2571,1251,2636,5308, 992,2345,3491,1540, # 2624 +2730,1201,2071,2406,1997,2482,5309,4638, 528,1923,2191,1503,1874,1570,2369,3379, # 2640 +3309,5310, 557,1073,5311,1828,3492,2088,2271,3165,3059,3107, 767,3108,2799,4639, # 2656 +1006,4302,4640,2346,1267,2179,3730,3230, 778,4048,3231,2731,1597,2667,5312,4641, # 2672 +5313,3493,5314,5315,5316,3310,2698,1433,3311, 131, 95,1504,4049, 723,4303,3166, # 2688 +1842,3610,2768,2192,4050,2028,2105,3731,5317,3013,4051,1218,5318,3380,3232,4052, # 2704 +4304,2584, 248,1634,3864, 912,5319,2845,3732,3060,3865, 654, 53,5320,3014,5321, # 2720 +1688,4642, 777,3494,1032,4053,1425,5322, 191, 820,2121,2846, 971,4643, 931,3233, # 2736 + 135, 664, 783,3866,1998, 772,2922,1936,4054,3867,4644,2923,3234, 282,2732, 640, # 2752 +1372,3495,1127, 922, 325,3381,5323,5324, 711,2045,5325,5326,4055,2223,2800,1937, # 2768 +4056,3382,2224,2255,3868,2305,5327,4645,3869,1258,3312,4057,3235,2139,2965,4058, # 2784 +4059,5328,2225, 258,3236,4646, 101,1227,5329,3313,1755,5330,1391,3314,5331,2924, # 2800 +2057, 893,5332,5333,5334,1402,4305,2347,5335,5336,3237,3611,5337,5338, 878,1325, # 2816 +1781,2801,4647, 259,1385,2585, 744,1183,2272,4648,5339,4060,2509,5340, 684,1024, # 2832 +4306,5341, 472,3612,3496,1165,3315,4061,4062, 322,2153, 881, 455,1695,1152,1340, # 2848 + 660, 554,2154,4649,1058,4650,4307, 830,1065,3383,4063,4651,1924,5342,1703,1919, # 2864 +5343, 932,2273, 122,5344,4652, 947, 677,5345,3870,2637, 297,1906,1925,2274,4653, # 2880 +2322,3316,5346,5347,4308,5348,4309, 84,4310, 112, 989,5349, 547,1059,4064, 701, # 2896 +3613,1019,5350,4311,5351,3497, 942, 639, 457,2306,2456, 993,2966, 407, 851, 494, # 2912 +4654,3384, 927,5352,1237,5353,2426,3385, 573,4312, 680, 921,2925,1279,1875, 285, # 2928 + 790,1448,1984, 719,2168,5354,5355,4655,4065,4066,1649,5356,1541, 563,5357,1077, # 2944 +5358,3386,3061,3498, 511,3015,4067,4068,3733,4069,1268,2572,3387,3238,4656,4657, # 2960 +5359, 535,1048,1276,1189,2926,2029,3167,1438,1373,2847,2967,1134,2013,5360,4313, # 2976 +1238,2586,3109,1259,5361, 700,5362,2968,3168,3734,4314,5363,4315,1146,1876,1907, # 2992 +4658,2611,4070, 781,2427, 132,1589, 203, 147, 273,2802,2407, 898,1787,2155,4071, # 3008 +4072,5364,3871,2803,5365,5366,4659,4660,5367,3239,5368,1635,3872, 965,5369,1805, # 3024 +2699,1516,3614,1121,1082,1329,3317,4073,1449,3873, 65,1128,2848,2927,2769,1590, # 3040 +3874,5370,5371, 12,2668, 45, 976,2587,3169,4661, 517,2535,1013,1037,3240,5372, # 3056 +3875,2849,5373,3876,5374,3499,5375,2612, 614,1999,2323,3877,3110,2733,2638,5376, # 3072 +2588,4316, 599,1269,5377,1811,3735,5378,2700,3111, 759,1060, 489,1806,3388,3318, # 3088 +1358,5379,5380,2391,1387,1215,2639,2256, 490,5381,5382,4317,1759,2392,2348,5383, # 3104 +4662,3878,1908,4074,2640,1807,3241,4663,3500,3319,2770,2349, 874,5384,5385,3501, # 3120 +3736,1859, 91,2928,3737,3062,3879,4664,5386,3170,4075,2669,5387,3502,1202,1403, # 3136 +3880,2969,2536,1517,2510,4665,3503,2511,5388,4666,5389,2701,1886,1495,1731,4076, # 3152 +2370,4667,5390,2030,5391,5392,4077,2702,1216, 237,2589,4318,2324,4078,3881,4668, # 3168 +4669,2703,3615,3504, 445,4670,5393,5394,5395,5396,2771, 61,4079,3738,1823,4080, # 3184 +5397, 687,2046, 935, 925, 405,2670, 703,1096,1860,2734,4671,4081,1877,1367,2704, # 3200 +3389, 918,2106,1782,2483, 334,3320,1611,1093,4672, 564,3171,3505,3739,3390, 945, # 3216 +2641,2058,4673,5398,1926, 872,4319,5399,3506,2705,3112, 349,4320,3740,4082,4674, # 3232 +3882,4321,3741,2156,4083,4675,4676,4322,4677,2408,2047, 782,4084, 400, 251,4323, # 3248 +1624,5400,5401, 277,3742, 299,1265, 476,1191,3883,2122,4324,4325,1109, 205,5402, # 3264 +2590,1000,2157,3616,1861,5403,5404,5405,4678,5406,4679,2573, 107,2484,2158,4085, # 3280 +3507,3172,5407,1533, 541,1301, 158, 753,4326,2886,3617,5408,1696, 370,1088,4327, # 3296 +4680,3618, 579, 327, 440, 162,2244, 269,1938,1374,3508, 968,3063, 56,1396,3113, # 3312 +2107,3321,3391,5409,1927,2159,4681,3016,5410,3619,5411,5412,3743,4682,2485,5413, # 3328 +2804,5414,1650,4683,5415,2613,5416,5417,4086,2671,3392,1149,3393,4087,3884,4088, # 3344 +5418,1076, 49,5419, 951,3242,3322,3323, 450,2850, 920,5420,1812,2805,2371,4328, # 3360 +1909,1138,2372,3885,3509,5421,3243,4684,1910,1147,1518,2428,4685,3886,5422,4686, # 3376 +2393,2614, 260,1796,3244,5423,5424,3887,3324, 708,5425,3620,1704,5426,3621,1351, # 3392 +1618,3394,3017,1887, 944,4329,3395,4330,3064,3396,4331,5427,3744, 422, 413,1714, # 3408 +3325, 500,2059,2350,4332,2486,5428,1344,1911, 954,5429,1668,5430,5431,4089,2409, # 3424 +4333,3622,3888,4334,5432,2307,1318,2512,3114, 133,3115,2887,4687, 629, 31,2851, # 3440 +2706,3889,4688, 850, 949,4689,4090,2970,1732,2089,4335,1496,1853,5433,4091, 620, # 3456 +3245, 981,1242,3745,3397,1619,3746,1643,3326,2140,2457,1971,1719,3510,2169,5434, # 3472 +3246,5435,5436,3398,1829,5437,1277,4690,1565,2048,5438,1636,3623,3116,5439, 869, # 3488 +2852, 655,3890,3891,3117,4092,3018,3892,1310,3624,4691,5440,5441,5442,1733, 558, # 3504 +4692,3747, 335,1549,3065,1756,4336,3748,1946,3511,1830,1291,1192, 470,2735,2108, # 3520 +2806, 913,1054,4093,5443,1027,5444,3066,4094,4693, 982,2672,3399,3173,3512,3247, # 3536 +3248,1947,2807,5445, 571,4694,5446,1831,5447,3625,2591,1523,2429,5448,2090, 984, # 3552 +4695,3749,1960,5449,3750, 852, 923,2808,3513,3751, 969,1519, 999,2049,2325,1705, # 3568 +5450,3118, 615,1662, 151, 597,4095,2410,2326,1049, 275,4696,3752,4337, 568,3753, # 3584 +3626,2487,4338,3754,5451,2430,2275, 409,3249,5452,1566,2888,3514,1002, 769,2853, # 3600 + 194,2091,3174,3755,2226,3327,4339, 628,1505,5453,5454,1763,2180,3019,4096, 521, # 3616 +1161,2592,1788,2206,2411,4697,4097,1625,4340,4341, 412, 42,3119, 464,5455,2642, # 3632 +4698,3400,1760,1571,2889,3515,2537,1219,2207,3893,2643,2141,2373,4699,4700,3328, # 3648 +1651,3401,3627,5456,5457,3628,2488,3516,5458,3756,5459,5460,2276,2092, 460,5461, # 3664 +4701,5462,3020, 962, 588,3629, 289,3250,2644,1116, 52,5463,3067,1797,5464,5465, # 3680 +5466,1467,5467,1598,1143,3757,4342,1985,1734,1067,4702,1280,3402, 465,4703,1572, # 3696 + 510,5468,1928,2245,1813,1644,3630,5469,4704,3758,5470,5471,2673,1573,1534,5472, # 3712 +5473, 536,1808,1761,3517,3894,3175,2645,5474,5475,5476,4705,3518,2929,1912,2809, # 3728 +5477,3329,1122, 377,3251,5478, 360,5479,5480,4343,1529, 551,5481,2060,3759,1769, # 3744 +2431,5482,2930,4344,3330,3120,2327,2109,2031,4706,1404, 136,1468,1479, 672,1171, # 3760 +3252,2308, 271,3176,5483,2772,5484,2050, 678,2736, 865,1948,4707,5485,2014,4098, # 3776 +2971,5486,2737,2227,1397,3068,3760,4708,4709,1735,2931,3403,3631,5487,3895, 509, # 3792 +2854,2458,2890,3896,5488,5489,3177,3178,4710,4345,2538,4711,2309,1166,1010, 552, # 3808 + 681,1888,5490,5491,2972,2973,4099,1287,1596,1862,3179, 358, 453, 736, 175, 478, # 3824 +1117, 905,1167,1097,5492,1854,1530,5493,1706,5494,2181,3519,2292,3761,3520,3632, # 3840 +4346,2093,4347,5495,3404,1193,2489,4348,1458,2193,2208,1863,1889,1421,3331,2932, # 3856 +3069,2182,3521, 595,2123,5496,4100,5497,5498,4349,1707,2646, 223,3762,1359, 751, # 3872 +3121, 183,3522,5499,2810,3021, 419,2374, 633, 704,3897,2394, 241,5500,5501,5502, # 3888 + 838,3022,3763,2277,2773,2459,3898,1939,2051,4101,1309,3122,2246,1181,5503,1136, # 3904 +2209,3899,2375,1446,4350,2310,4712,5504,5505,4351,1055,2615, 484,3764,5506,4102, # 3920 + 625,4352,2278,3405,1499,4353,4103,5507,4104,4354,3253,2279,2280,3523,5508,5509, # 3936 +2774, 808,2616,3765,3406,4105,4355,3123,2539, 526,3407,3900,4356, 955,5510,1620, # 3952 +4357,2647,2432,5511,1429,3766,1669,1832, 994, 928,5512,3633,1260,5513,5514,5515, # 3968 +1949,2293, 741,2933,1626,4358,2738,2460, 867,1184, 362,3408,1392,5516,5517,4106, # 3984 +4359,1770,1736,3254,2934,4713,4714,1929,2707,1459,1158,5518,3070,3409,2891,1292, # 4000 +1930,2513,2855,3767,1986,1187,2072,2015,2617,4360,5519,2574,2514,2170,3768,2490, # 4016 +3332,5520,3769,4715,5521,5522, 666,1003,3023,1022,3634,4361,5523,4716,1814,2257, # 4032 + 574,3901,1603, 295,1535, 705,3902,4362, 283, 858, 417,5524,5525,3255,4717,4718, # 4048 +3071,1220,1890,1046,2281,2461,4107,1393,1599, 689,2575, 388,4363,5526,2491, 802, # 4064 +5527,2811,3903,2061,1405,2258,5528,4719,3904,2110,1052,1345,3256,1585,5529, 809, # 4080 +5530,5531,5532, 575,2739,3524, 956,1552,1469,1144,2328,5533,2329,1560,2462,3635, # 4096 +3257,4108, 616,2210,4364,3180,2183,2294,5534,1833,5535,3525,4720,5536,1319,3770, # 4112 +3771,1211,3636,1023,3258,1293,2812,5537,5538,5539,3905, 607,2311,3906, 762,2892, # 4128 +1439,4365,1360,4721,1485,3072,5540,4722,1038,4366,1450,2062,2648,4367,1379,4723, # 4144 +2593,5541,5542,4368,1352,1414,2330,2935,1172,5543,5544,3907,3908,4724,1798,1451, # 4160 +5545,5546,5547,5548,2936,4109,4110,2492,2351, 411,4111,4112,3637,3333,3124,4725, # 4176 +1561,2674,1452,4113,1375,5549,5550, 47,2974, 316,5551,1406,1591,2937,3181,5552, # 4192 +1025,2142,3125,3182, 354,2740, 884,2228,4369,2412, 508,3772, 726,3638, 996,2433, # 4208 +3639, 729,5553, 392,2194,1453,4114,4726,3773,5554,5555,2463,3640,2618,1675,2813, # 4224 + 919,2352,2975,2353,1270,4727,4115, 73,5556,5557, 647,5558,3259,2856,2259,1550, # 4240 +1346,3024,5559,1332, 883,3526,5560,5561,5562,5563,3334,2775,5564,1212, 831,1347, # 4256 +4370,4728,2331,3909,1864,3073, 720,3910,4729,4730,3911,5565,4371,5566,5567,4731, # 4272 +5568,5569,1799,4732,3774,2619,4733,3641,1645,2376,4734,5570,2938, 669,2211,2675, # 4288 +2434,5571,2893,5572,5573,1028,3260,5574,4372,2413,5575,2260,1353,5576,5577,4735, # 4304 +3183, 518,5578,4116,5579,4373,1961,5580,2143,4374,5581,5582,3025,2354,2355,3912, # 4320 + 516,1834,1454,4117,2708,4375,4736,2229,2620,1972,1129,3642,5583,2776,5584,2976, # 4336 +1422, 577,1470,3026,1524,3410,5585,5586, 432,4376,3074,3527,5587,2594,1455,2515, # 4352 +2230,1973,1175,5588,1020,2741,4118,3528,4737,5589,2742,5590,1743,1361,3075,3529, # 4368 +2649,4119,4377,4738,2295, 895, 924,4378,2171, 331,2247,3076, 166,1627,3077,1098, # 4384 +5591,1232,2894,2231,3411,4739, 657, 403,1196,2377, 542,3775,3412,1600,4379,3530, # 4400 +5592,4740,2777,3261, 576, 530,1362,4741,4742,2540,2676,3776,4120,5593, 842,3913, # 4416 +5594,2814,2032,1014,4121, 213,2709,3413, 665, 621,4380,5595,3777,2939,2435,5596, # 4432 +2436,3335,3643,3414,4743,4381,2541,4382,4744,3644,1682,4383,3531,1380,5597, 724, # 4448 +2282, 600,1670,5598,1337,1233,4745,3126,2248,5599,1621,4746,5600, 651,4384,5601, # 4464 +1612,4385,2621,5602,2857,5603,2743,2312,3078,5604, 716,2464,3079, 174,1255,2710, # 4480 +4122,3645, 548,1320,1398, 728,4123,1574,5605,1891,1197,3080,4124,5606,3081,3082, # 4496 +3778,3646,3779, 747,5607, 635,4386,4747,5608,5609,5610,4387,5611,5612,4748,5613, # 4512 +3415,4749,2437, 451,5614,3780,2542,2073,4388,2744,4389,4125,5615,1764,4750,5616, # 4528 +4390, 350,4751,2283,2395,2493,5617,4391,4126,2249,1434,4127, 488,4752, 458,4392, # 4544 +4128,3781, 771,1330,2396,3914,2576,3184,2160,2414,1553,2677,3185,4393,5618,2494, # 4560 +2895,2622,1720,2711,4394,3416,4753,5619,2543,4395,5620,3262,4396,2778,5621,2016, # 4576 +2745,5622,1155,1017,3782,3915,5623,3336,2313, 201,1865,4397,1430,5624,4129,5625, # 4592 +5626,5627,5628,5629,4398,1604,5630, 414,1866, 371,2595,4754,4755,3532,2017,3127, # 4608 +4756,1708, 960,4399, 887, 389,2172,1536,1663,1721,5631,2232,4130,2356,2940,1580, # 4624 +5632,5633,1744,4757,2544,4758,4759,5634,4760,5635,2074,5636,4761,3647,3417,2896, # 4640 +4400,5637,4401,2650,3418,2815, 673,2712,2465, 709,3533,4131,3648,4402,5638,1148, # 4656 + 502, 634,5639,5640,1204,4762,3649,1575,4763,2623,3783,5641,3784,3128, 948,3263, # 4672 + 121,1745,3916,1110,5642,4403,3083,2516,3027,4132,3785,1151,1771,3917,1488,4133, # 4688 +1987,5643,2438,3534,5644,5645,2094,5646,4404,3918,1213,1407,2816, 531,2746,2545, # 4704 +3264,1011,1537,4764,2779,4405,3129,1061,5647,3786,3787,1867,2897,5648,2018, 120, # 4720 +4406,4407,2063,3650,3265,2314,3919,2678,3419,1955,4765,4134,5649,3535,1047,2713, # 4736 +1266,5650,1368,4766,2858, 649,3420,3920,2546,2747,1102,2859,2679,5651,5652,2000, # 4752 +5653,1111,3651,2977,5654,2495,3921,3652,2817,1855,3421,3788,5655,5656,3422,2415, # 4768 +2898,3337,3266,3653,5657,2577,5658,3654,2818,4135,1460, 856,5659,3655,5660,2899, # 4784 +2978,5661,2900,3922,5662,4408, 632,2517, 875,3923,1697,3924,2296,5663,5664,4767, # 4800 +3028,1239, 580,4768,4409,5665, 914, 936,2075,1190,4136,1039,2124,5666,5667,5668, # 4816 +5669,3423,1473,5670,1354,4410,3925,4769,2173,3084,4137, 915,3338,4411,4412,3339, # 4832 +1605,1835,5671,2748, 398,3656,4413,3926,4138, 328,1913,2860,4139,3927,1331,4414, # 4848 +3029, 937,4415,5672,3657,4140,4141,3424,2161,4770,3425, 524, 742, 538,3085,1012, # 4864 +5673,5674,3928,2466,5675, 658,1103, 225,3929,5676,5677,4771,5678,4772,5679,3267, # 4880 +1243,5680,4142, 963,2250,4773,5681,2714,3658,3186,5682,5683,2596,2332,5684,4774, # 4896 +5685,5686,5687,3536, 957,3426,2547,2033,1931,2941,2467, 870,2019,3659,1746,2780, # 4912 +2781,2439,2468,5688,3930,5689,3789,3130,3790,3537,3427,3791,5690,1179,3086,5691, # 4928 +3187,2378,4416,3792,2548,3188,3131,2749,4143,5692,3428,1556,2549,2297, 977,2901, # 4944 +2034,4144,1205,3429,5693,1765,3430,3189,2125,1271, 714,1689,4775,3538,5694,2333, # 4960 +3931, 533,4417,3660,2184, 617,5695,2469,3340,3539,2315,5696,5697,3190,5698,5699, # 4976 +3932,1988, 618, 427,2651,3540,3431,5700,5701,1244,1690,5702,2819,4418,4776,5703, # 4992 +3541,4777,5704,2284,1576, 473,3661,4419,3432, 972,5705,3662,5706,3087,5707,5708, # 5008 +4778,4779,5709,3793,4145,4146,5710, 153,4780, 356,5711,1892,2902,4420,2144, 408, # 5024 + 803,2357,5712,3933,5713,4421,1646,2578,2518,4781,4782,3934,5714,3935,4422,5715, # 5040 +2416,3433, 752,5716,5717,1962,3341,2979,5718, 746,3030,2470,4783,4423,3794, 698, # 5056 +4784,1893,4424,3663,2550,4785,3664,3936,5719,3191,3434,5720,1824,1302,4147,2715, # 5072 +3937,1974,4425,5721,4426,3192, 823,1303,1288,1236,2861,3542,4148,3435, 774,3938, # 5088 +5722,1581,4786,1304,2862,3939,4787,5723,2440,2162,1083,3268,4427,4149,4428, 344, # 5104 +1173, 288,2316, 454,1683,5724,5725,1461,4788,4150,2597,5726,5727,4789, 985, 894, # 5120 +5728,3436,3193,5729,1914,2942,3795,1989,5730,2111,1975,5731,4151,5732,2579,1194, # 5136 + 425,5733,4790,3194,1245,3796,4429,5734,5735,2863,5736, 636,4791,1856,3940, 760, # 5152 +1800,5737,4430,2212,1508,4792,4152,1894,1684,2298,5738,5739,4793,4431,4432,2213, # 5168 + 479,5740,5741, 832,5742,4153,2496,5743,2980,2497,3797, 990,3132, 627,1815,2652, # 5184 +4433,1582,4434,2126,2112,3543,4794,5744, 799,4435,3195,5745,4795,2113,1737,3031, # 5200 +1018, 543, 754,4436,3342,1676,4796,4797,4154,4798,1489,5746,3544,5747,2624,2903, # 5216 +4155,5748,5749,2981,5750,5751,5752,5753,3196,4799,4800,2185,1722,5754,3269,3270, # 5232 +1843,3665,1715, 481, 365,1976,1857,5755,5756,1963,2498,4801,5757,2127,3666,3271, # 5248 + 433,1895,2064,2076,5758, 602,2750,5759,5760,5761,5762,5763,3032,1628,3437,5764, # 5264 +3197,4802,4156,2904,4803,2519,5765,2551,2782,5766,5767,5768,3343,4804,2905,5769, # 5280 +4805,5770,2864,4806,4807,1221,2982,4157,2520,5771,5772,5773,1868,1990,5774,5775, # 5296 +5776,1896,5777,5778,4808,1897,4158, 318,5779,2095,4159,4437,5780,5781, 485,5782, # 5312 + 938,3941, 553,2680, 116,5783,3942,3667,5784,3545,2681,2783,3438,3344,2820,5785, # 5328 +3668,2943,4160,1747,2944,2983,5786,5787, 207,5788,4809,5789,4810,2521,5790,3033, # 5344 + 890,3669,3943,5791,1878,3798,3439,5792,2186,2358,3440,1652,5793,5794,5795, 941, # 5360 +2299, 208,3546,4161,2020, 330,4438,3944,2906,2499,3799,4439,4811,5796,5797,5798, # 5376 +) +# fmt: on diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/big5prober.py b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/big5prober.py new file mode 100644 index 0000000..ef09c60 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/big5prober.py @@ -0,0 +1,47 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Communicator client code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from .chardistribution import Big5DistributionAnalysis +from .codingstatemachine import CodingStateMachine +from .mbcharsetprober import MultiByteCharSetProber +from .mbcssm import BIG5_SM_MODEL + + +class Big5Prober(MultiByteCharSetProber): + def __init__(self) -> None: + super().__init__() + self.coding_sm = CodingStateMachine(BIG5_SM_MODEL) + self.distribution_analyzer = Big5DistributionAnalysis() + self.reset() + + @property + def charset_name(self) -> str: + return "Big5" + + @property + def language(self) -> str: + return "Chinese" diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/chardistribution.py b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/chardistribution.py new file mode 100644 index 0000000..176cb99 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/chardistribution.py @@ -0,0 +1,261 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Communicator client code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from typing import Tuple, Union + +from .big5freq import ( + BIG5_CHAR_TO_FREQ_ORDER, + BIG5_TABLE_SIZE, + BIG5_TYPICAL_DISTRIBUTION_RATIO, +) +from .euckrfreq import ( + EUCKR_CHAR_TO_FREQ_ORDER, + EUCKR_TABLE_SIZE, + EUCKR_TYPICAL_DISTRIBUTION_RATIO, +) +from .euctwfreq import ( + EUCTW_CHAR_TO_FREQ_ORDER, + EUCTW_TABLE_SIZE, + EUCTW_TYPICAL_DISTRIBUTION_RATIO, +) +from .gb2312freq import ( + GB2312_CHAR_TO_FREQ_ORDER, + GB2312_TABLE_SIZE, + GB2312_TYPICAL_DISTRIBUTION_RATIO, +) +from .jisfreq import ( + JIS_CHAR_TO_FREQ_ORDER, + JIS_TABLE_SIZE, + JIS_TYPICAL_DISTRIBUTION_RATIO, +) +from .johabfreq import JOHAB_TO_EUCKR_ORDER_TABLE + + +class CharDistributionAnalysis: + ENOUGH_DATA_THRESHOLD = 1024 + SURE_YES = 0.99 + SURE_NO = 0.01 + MINIMUM_DATA_THRESHOLD = 3 + + def __init__(self) -> None: + # Mapping table to get frequency order from char order (get from + # GetOrder()) + self._char_to_freq_order: Tuple[int, ...] = tuple() + self._table_size = 0 # Size of above table + # This is a constant value which varies from language to language, + # used in calculating confidence. See + # http://www.mozilla.org/projects/intl/UniversalCharsetDetection.html + # for further detail. + self.typical_distribution_ratio = 0.0 + self._done = False + self._total_chars = 0 + self._freq_chars = 0 + self.reset() + + def reset(self) -> None: + """reset analyser, clear any state""" + # If this flag is set to True, detection is done and conclusion has + # been made + self._done = False + self._total_chars = 0 # Total characters encountered + # The number of characters whose frequency order is less than 512 + self._freq_chars = 0 + + def feed(self, char: Union[bytes, bytearray], char_len: int) -> None: + """feed a character with known length""" + if char_len == 2: + # we only care about 2-bytes character in our distribution analysis + order = self.get_order(char) + else: + order = -1 + if order >= 0: + self._total_chars += 1 + # order is valid + if order < self._table_size: + if 512 > self._char_to_freq_order[order]: + self._freq_chars += 1 + + def get_confidence(self) -> float: + """return confidence based on existing data""" + # if we didn't receive any character in our consideration range, + # return negative answer + if self._total_chars <= 0 or self._freq_chars <= self.MINIMUM_DATA_THRESHOLD: + return self.SURE_NO + + if self._total_chars != self._freq_chars: + r = self._freq_chars / ( + (self._total_chars - self._freq_chars) * self.typical_distribution_ratio + ) + if r < self.SURE_YES: + return r + + # normalize confidence (we don't want to be 100% sure) + return self.SURE_YES + + def got_enough_data(self) -> bool: + # It is not necessary to receive all data to draw conclusion. + # For charset detection, certain amount of data is enough + return self._total_chars > self.ENOUGH_DATA_THRESHOLD + + def get_order(self, _: Union[bytes, bytearray]) -> int: + # We do not handle characters based on the original encoding string, + # but convert this encoding string to a number, here called order. + # This allows multiple encodings of a language to share one frequency + # table. + return -1 + + +class EUCTWDistributionAnalysis(CharDistributionAnalysis): + def __init__(self) -> None: + super().__init__() + self._char_to_freq_order = EUCTW_CHAR_TO_FREQ_ORDER + self._table_size = EUCTW_TABLE_SIZE + self.typical_distribution_ratio = EUCTW_TYPICAL_DISTRIBUTION_RATIO + + def get_order(self, byte_str: Union[bytes, bytearray]) -> int: + # for euc-TW encoding, we are interested + # first byte range: 0xc4 -- 0xfe + # second byte range: 0xa1 -- 0xfe + # no validation needed here. State machine has done that + first_char = byte_str[0] + if first_char >= 0xC4: + return 94 * (first_char - 0xC4) + byte_str[1] - 0xA1 + return -1 + + +class EUCKRDistributionAnalysis(CharDistributionAnalysis): + def __init__(self) -> None: + super().__init__() + self._char_to_freq_order = EUCKR_CHAR_TO_FREQ_ORDER + self._table_size = EUCKR_TABLE_SIZE + self.typical_distribution_ratio = EUCKR_TYPICAL_DISTRIBUTION_RATIO + + def get_order(self, byte_str: Union[bytes, bytearray]) -> int: + # for euc-KR encoding, we are interested + # first byte range: 0xb0 -- 0xfe + # second byte range: 0xa1 -- 0xfe + # no validation needed here. State machine has done that + first_char = byte_str[0] + if first_char >= 0xB0: + return 94 * (first_char - 0xB0) + byte_str[1] - 0xA1 + return -1 + + +class JOHABDistributionAnalysis(CharDistributionAnalysis): + def __init__(self) -> None: + super().__init__() + self._char_to_freq_order = EUCKR_CHAR_TO_FREQ_ORDER + self._table_size = EUCKR_TABLE_SIZE + self.typical_distribution_ratio = EUCKR_TYPICAL_DISTRIBUTION_RATIO + + def get_order(self, byte_str: Union[bytes, bytearray]) -> int: + first_char = byte_str[0] + if 0x88 <= first_char < 0xD4: + code = first_char * 256 + byte_str[1] + return JOHAB_TO_EUCKR_ORDER_TABLE.get(code, -1) + return -1 + + +class GB2312DistributionAnalysis(CharDistributionAnalysis): + def __init__(self) -> None: + super().__init__() + self._char_to_freq_order = GB2312_CHAR_TO_FREQ_ORDER + self._table_size = GB2312_TABLE_SIZE + self.typical_distribution_ratio = GB2312_TYPICAL_DISTRIBUTION_RATIO + + def get_order(self, byte_str: Union[bytes, bytearray]) -> int: + # for GB2312 encoding, we are interested + # first byte range: 0xb0 -- 0xfe + # second byte range: 0xa1 -- 0xfe + # no validation needed here. State machine has done that + first_char, second_char = byte_str[0], byte_str[1] + if (first_char >= 0xB0) and (second_char >= 0xA1): + return 94 * (first_char - 0xB0) + second_char - 0xA1 + return -1 + + +class Big5DistributionAnalysis(CharDistributionAnalysis): + def __init__(self) -> None: + super().__init__() + self._char_to_freq_order = BIG5_CHAR_TO_FREQ_ORDER + self._table_size = BIG5_TABLE_SIZE + self.typical_distribution_ratio = BIG5_TYPICAL_DISTRIBUTION_RATIO + + def get_order(self, byte_str: Union[bytes, bytearray]) -> int: + # for big5 encoding, we are interested + # first byte range: 0xa4 -- 0xfe + # second byte range: 0x40 -- 0x7e , 0xa1 -- 0xfe + # no validation needed here. State machine has done that + first_char, second_char = byte_str[0], byte_str[1] + if first_char >= 0xA4: + if second_char >= 0xA1: + return 157 * (first_char - 0xA4) + second_char - 0xA1 + 63 + return 157 * (first_char - 0xA4) + second_char - 0x40 + return -1 + + +class SJISDistributionAnalysis(CharDistributionAnalysis): + def __init__(self) -> None: + super().__init__() + self._char_to_freq_order = JIS_CHAR_TO_FREQ_ORDER + self._table_size = JIS_TABLE_SIZE + self.typical_distribution_ratio = JIS_TYPICAL_DISTRIBUTION_RATIO + + def get_order(self, byte_str: Union[bytes, bytearray]) -> int: + # for sjis encoding, we are interested + # first byte range: 0x81 -- 0x9f , 0xe0 -- 0xfe + # second byte range: 0x40 -- 0x7e, 0x81 -- oxfe + # no validation needed here. State machine has done that + first_char, second_char = byte_str[0], byte_str[1] + if 0x81 <= first_char <= 0x9F: + order = 188 * (first_char - 0x81) + elif 0xE0 <= first_char <= 0xEF: + order = 188 * (first_char - 0xE0 + 31) + else: + return -1 + order = order + second_char - 0x40 + if second_char > 0x7F: + order = -1 + return order + + +class EUCJPDistributionAnalysis(CharDistributionAnalysis): + def __init__(self) -> None: + super().__init__() + self._char_to_freq_order = JIS_CHAR_TO_FREQ_ORDER + self._table_size = JIS_TABLE_SIZE + self.typical_distribution_ratio = JIS_TYPICAL_DISTRIBUTION_RATIO + + def get_order(self, byte_str: Union[bytes, bytearray]) -> int: + # for euc-JP encoding, we are interested + # first byte range: 0xa0 -- 0xfe + # second byte range: 0xa1 -- 0xfe + # no validation needed here. State machine has done that + char = byte_str[0] + if char >= 0xA0: + return 94 * (char - 0xA1) + byte_str[1] - 0xA1 + return -1 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/charsetgroupprober.py b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/charsetgroupprober.py new file mode 100644 index 0000000..6def56b --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/charsetgroupprober.py @@ -0,0 +1,106 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Communicator client code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from typing import List, Optional, Union + +from .charsetprober import CharSetProber +from .enums import LanguageFilter, ProbingState + + +class CharSetGroupProber(CharSetProber): + def __init__(self, lang_filter: LanguageFilter = LanguageFilter.NONE) -> None: + super().__init__(lang_filter=lang_filter) + self._active_num = 0 + self.probers: List[CharSetProber] = [] + self._best_guess_prober: Optional[CharSetProber] = None + + def reset(self) -> None: + super().reset() + self._active_num = 0 + for prober in self.probers: + prober.reset() + prober.active = True + self._active_num += 1 + self._best_guess_prober = None + + @property + def charset_name(self) -> Optional[str]: + if not self._best_guess_prober: + self.get_confidence() + if not self._best_guess_prober: + return None + return self._best_guess_prober.charset_name + + @property + def language(self) -> Optional[str]: + if not self._best_guess_prober: + self.get_confidence() + if not self._best_guess_prober: + return None + return self._best_guess_prober.language + + def feed(self, byte_str: Union[bytes, bytearray]) -> ProbingState: + for prober in self.probers: + if not prober.active: + continue + state = prober.feed(byte_str) + if not state: + continue + if state == ProbingState.FOUND_IT: + self._best_guess_prober = prober + self._state = ProbingState.FOUND_IT + return self.state + if state == ProbingState.NOT_ME: + prober.active = False + self._active_num -= 1 + if self._active_num <= 0: + self._state = ProbingState.NOT_ME + return self.state + return self.state + + def get_confidence(self) -> float: + state = self.state + if state == ProbingState.FOUND_IT: + return 0.99 + if state == ProbingState.NOT_ME: + return 0.01 + best_conf = 0.0 + self._best_guess_prober = None + for prober in self.probers: + if not prober.active: + self.logger.debug("%s not active", prober.charset_name) + continue + conf = prober.get_confidence() + self.logger.debug( + "%s %s confidence = %s", prober.charset_name, prober.language, conf + ) + if best_conf < conf: + best_conf = conf + self._best_guess_prober = prober + if not self._best_guess_prober: + return 0.0 + return best_conf diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/charsetprober.py b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/charsetprober.py new file mode 100644 index 0000000..a103ca1 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/charsetprober.py @@ -0,0 +1,147 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Universal charset detector code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 2001 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# Shy Shalom - original C code +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +import logging +import re +from typing import Optional, Union + +from .enums import LanguageFilter, ProbingState + +INTERNATIONAL_WORDS_PATTERN = re.compile( + b"[a-zA-Z]*[\x80-\xFF]+[a-zA-Z]*[^a-zA-Z\x80-\xFF]?" +) + + +class CharSetProber: + + SHORTCUT_THRESHOLD = 0.95 + + def __init__(self, lang_filter: LanguageFilter = LanguageFilter.NONE) -> None: + self._state = ProbingState.DETECTING + self.active = True + self.lang_filter = lang_filter + self.logger = logging.getLogger(__name__) + + def reset(self) -> None: + self._state = ProbingState.DETECTING + + @property + def charset_name(self) -> Optional[str]: + return None + + @property + def language(self) -> Optional[str]: + raise NotImplementedError + + def feed(self, byte_str: Union[bytes, bytearray]) -> ProbingState: + raise NotImplementedError + + @property + def state(self) -> ProbingState: + return self._state + + def get_confidence(self) -> float: + return 0.0 + + @staticmethod + def filter_high_byte_only(buf: Union[bytes, bytearray]) -> bytes: + buf = re.sub(b"([\x00-\x7F])+", b" ", buf) + return buf + + @staticmethod + def filter_international_words(buf: Union[bytes, bytearray]) -> bytearray: + """ + We define three types of bytes: + alphabet: english alphabets [a-zA-Z] + international: international characters [\x80-\xFF] + marker: everything else [^a-zA-Z\x80-\xFF] + The input buffer can be thought to contain a series of words delimited + by markers. This function works to filter all words that contain at + least one international character. All contiguous sequences of markers + are replaced by a single space ascii character. + This filter applies to all scripts which do not use English characters. + """ + filtered = bytearray() + + # This regex expression filters out only words that have at-least one + # international character. The word may include one marker character at + # the end. + words = INTERNATIONAL_WORDS_PATTERN.findall(buf) + + for word in words: + filtered.extend(word[:-1]) + + # If the last character in the word is a marker, replace it with a + # space as markers shouldn't affect our analysis (they are used + # similarly across all languages and may thus have similar + # frequencies). + last_char = word[-1:] + if not last_char.isalpha() and last_char < b"\x80": + last_char = b" " + filtered.extend(last_char) + + return filtered + + @staticmethod + def remove_xml_tags(buf: Union[bytes, bytearray]) -> bytes: + """ + Returns a copy of ``buf`` that retains only the sequences of English + alphabet and high byte characters that are not between <> characters. + This filter can be applied to all scripts which contain both English + characters and extended ASCII characters, but is currently only used by + ``Latin1Prober``. + """ + filtered = bytearray() + in_tag = False + prev = 0 + buf = memoryview(buf).cast("c") + + for curr, buf_char in enumerate(buf): + # Check if we're coming out of or entering an XML tag + + # https://github.com/python/typeshed/issues/8182 + if buf_char == b">": # type: ignore[comparison-overlap] + prev = curr + 1 + in_tag = False + # https://github.com/python/typeshed/issues/8182 + elif buf_char == b"<": # type: ignore[comparison-overlap] + if curr > prev and not in_tag: + # Keep everything after last non-extended-ASCII, + # non-alphabetic character + filtered.extend(buf[prev:curr]) + # Output a space to delimit stretch we kept + filtered.extend(b" ") + in_tag = True + + # If we're not in a tag... + if not in_tag: + # Keep everything after last non-extended-ASCII, non-alphabetic + # character + filtered.extend(buf[prev:]) + + return filtered diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/cli/__init__.py b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/cli/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/cli/__pycache__/__init__.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/cli/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3938dfef2265fa739ea252c24b1cdd6307cd961b GIT binary patch literal 247 zcmXv|F$w}P5KI(B1o0gf-lDc*Z6$(;Wr%mHx0<_zBp%!s{D6(U_%1&n*jbsNPBAmP zvn+G#^|~zJ%4T`gN2EXa&%D~fTv*0dY`_FYx82nj0* z%R0@aEtXavF!c`Rn=vSqwiKrJxeoG8AgQpdK+zVy!6X@tz>&wHk?B$H(SacYBAjK~ rLj0Pchg1;=K_z)15>vlB(?Vw_g)`d<)na+q5A!Z6 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/cli/__pycache__/chardetect.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/cli/__pycache__/chardetect.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..faff05bb0ec6f48bbc0ccc4eafba2d4ded306abb GIT binary patch literal 4386 zcma)9TW=f36`mz`m*ny$%C>CDMm#p0)O0POfk*aKrfo7JC8M&JgG|p2I!m{_Ebbl}x ztSE9#{PG9&=OjY3YZY$RJ-WVPR#vE|-()UzY(^bUYYu0$YFdoeb#KL`x@}O->JIl% zg?cN@9!ScY5ahi|3)@t zr#g4mz?gBCnqJRk6MQo5dc&ht?$oI3fhz?~`vy1eQa&2Q=RL;tC5r{}+otOU@ym73 zbZp)F2Ddsd1<7)Gjd2&+%4MkLZrCQ)b!%2^ki!E-7@Z3g%e0vr$hKZ%L9AxlW=*$( zgYJscu#7Ti*j~2SvR-KhDra7U+ZB0mfP|<}j>7NB1RUQd!~@xX+R+{99@Os-+HT2h zGE3em-cmdq(|g*=J}sp!-xZkYYxLjyH6_xPR|l4OL?X7dbq+=kudqLu?8hFARr;N` z)OLi&+o}=S!|^pTTIUmO=~H4vM_Zvqh8AUS+^6Jo1;(PT`Z?e`AJhKNe69DT1;+L=p=tC?l;knX2eyLLhWdTu#3kwz;IJR~TxBv@8b*Zj%y+*}hmgsdb zC5qH@=rRLXLBo*ALU)YUtoQUvw2vq>z0~xWJ8Tv~P@mBWU92v#LZuL-o#bp|&Y$I&j}21|Cq4`Bvfef9%h0tX19s5u7XHf6tWm}|Pl zY|p(ow6 z0}0$uopZez$W_LSKsJEW0;OU(F2hSDlw%yJpC?fu)psYC8i9;E%O{}8je+R7|J_#c zh6`7^XzQMCnWpYFYfjZuVx>z(-QgZS)je0JkCf9z056lGk9P5Dvw$o9bx-rIU_ zQ}*MDkJJy3gUZ4i~yFsKVaG)8Id(03-B_1+k^l^Ms~)3V8$W8_O#n%-yTNVkyYG(@jyIT zycKOn?~2T+-`anVay~!m9q#u)rgLCqAN%memRH9;ra@Y>OdDm$~tB;u!}btMng2mA&}f=iwG`HN8YHi1iAs z#Pg?t-ZtY(2;ftcjd*RNlF zdwQ07>n7y6dN+v>XcL&COO|fm?4lF>HJ2g(>}>;hU8PN@!Mj;(fdYV_O4oJRF5KI* zxQO8eOiyF821hGndI1X`#K24WTo8vdfD8x1W#+ZsO}K(p9;9@`C_}Hf9YGv1a2<~= z3P9yZ5`ntZs8$*07(4?_Siu1vLGU#V-^_5HQluN1t^x_=l%iW0ffMDl9|{|pL(3S94c}~{g#0EFN%%1 zP$Nq6EBWw4`LG|)`svG$(ua1_&ux1T(x+gEpUFMS9lSHSn>*1NI~gX4a^zd0Dli&E zC`4w+zyUw~3qN}_j0rs%^+1F|3{RBuX@ zzF}0TM^GI^D1=H<<6k9@Jxm_kzWyM2ayNN$WA<@6x3v(Gw4w>IDf!9NM;AW4@Ih&- z6p~mX^C*=IBhlQ^r*Sedd1oO^s_6{4md=1{X$a>ao@NN@P5EQFk7w?@bob|fe&tK! zKR3f@1XV%68lV)F6B_uLfSCs3K!0M6oE^l=Wjq-8M-&yvn48N>2(DPUY&ey2nV$hI zUO-h9u0C85j`5J=;c|?m0qKG$*XaM9>XMVgyNRA65@&#(2hhMwvI`>w0#1&ZZMpn6 zB32`i@?HEDNK_jZdzHTqN|-mehd@G(BS~Q-CCMQ{@f?xHHnRBfiMAm=KKW_q+26-x zsx$ia$xLVT3!uv#@efY=Cte5>$0ZsP5PtH&$8T(145LtftffN*J5-Vx4`W!0lcUGG z${JBKo0Z$|gh_12p+jO;IxoRNfY^L@Ti(9*Sz Optional[str]: + """ + Return a string describing the probable encoding of a file or + list of strings. + + :param lines: The lines to get the encoding of. + :type lines: Iterable of bytes + :param name: Name of file or collection of lines + :type name: str + :param should_rename_legacy: Should we rename legacy encodings to + their more modern equivalents? + :type should_rename_legacy: ``bool`` + """ + u = UniversalDetector(should_rename_legacy=should_rename_legacy) + for line in lines: + line = bytearray(line) + u.feed(line) + # shortcut out of the loop to save reading further - particularly useful if we read a BOM. + if u.done: + break + u.close() + result = u.result + if minimal: + return result["encoding"] + if result["encoding"]: + return f'{name}: {result["encoding"]} with confidence {result["confidence"]}' + return f"{name}: no result" + + +def main(argv: Optional[List[str]] = None) -> None: + """ + Handles command line arguments and gets things started. + + :param argv: List of arguments, as if specified on the command-line. + If None, ``sys.argv[1:]`` is used instead. + :type argv: list of str + """ + # Get command line arguments + parser = argparse.ArgumentParser( + description=( + "Takes one or more file paths and reports their detected encodings" + ) + ) + parser.add_argument( + "input", + help="File whose encoding we would like to determine. (default: stdin)", + type=argparse.FileType("rb"), + nargs="*", + default=[sys.stdin.buffer], + ) + parser.add_argument( + "--minimal", + help="Print only the encoding to standard output", + action="store_true", + ) + parser.add_argument( + "-l", + "--legacy", + help="Rename legacy encodings to more modern ones.", + action="store_true", + ) + parser.add_argument( + "--version", action="version", version=f"%(prog)s {__version__}" + ) + args = parser.parse_args(argv) + + for f in args.input: + if f.isatty(): + print( + "You are running chardetect interactively. Press " + "CTRL-D twice at the start of a blank line to signal the " + "end of your input. If you want help, run chardetect " + "--help\n", + file=sys.stderr, + ) + print( + description_of( + f, f.name, minimal=args.minimal, should_rename_legacy=args.legacy + ) + ) + + +if __name__ == "__main__": + main() diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/codingstatemachine.py b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/codingstatemachine.py new file mode 100644 index 0000000..8ed4a87 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/codingstatemachine.py @@ -0,0 +1,90 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +import logging + +from .codingstatemachinedict import CodingStateMachineDict +from .enums import MachineState + + +class CodingStateMachine: + """ + A state machine to verify a byte sequence for a particular encoding. For + each byte the detector receives, it will feed that byte to every active + state machine available, one byte at a time. The state machine changes its + state based on its previous state and the byte it receives. There are 3 + states in a state machine that are of interest to an auto-detector: + + START state: This is the state to start with, or a legal byte sequence + (i.e. a valid code point) for character has been identified. + + ME state: This indicates that the state machine identified a byte sequence + that is specific to the charset it is designed for and that + there is no other possible encoding which can contain this byte + sequence. This will to lead to an immediate positive answer for + the detector. + + ERROR state: This indicates the state machine identified an illegal byte + sequence for that encoding. This will lead to an immediate + negative answer for this encoding. Detector will exclude this + encoding from consideration from here on. + """ + + def __init__(self, sm: CodingStateMachineDict) -> None: + self._model = sm + self._curr_byte_pos = 0 + self._curr_char_len = 0 + self._curr_state = MachineState.START + self.active = True + self.logger = logging.getLogger(__name__) + self.reset() + + def reset(self) -> None: + self._curr_state = MachineState.START + + def next_state(self, c: int) -> int: + # for each byte we get its class + # if it is first byte, we also get byte length + byte_class = self._model["class_table"][c] + if self._curr_state == MachineState.START: + self._curr_byte_pos = 0 + self._curr_char_len = self._model["char_len_table"][byte_class] + # from byte's class and state_table, we get its next state + curr_state = self._curr_state * self._model["class_factor"] + byte_class + self._curr_state = self._model["state_table"][curr_state] + self._curr_byte_pos += 1 + return self._curr_state + + def get_current_charlen(self) -> int: + return self._curr_char_len + + def get_coding_state_machine(self) -> str: + return self._model["name"] + + @property + def language(self) -> str: + return self._model["language"] diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/codingstatemachinedict.py b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/codingstatemachinedict.py new file mode 100644 index 0000000..7a3c4c7 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/codingstatemachinedict.py @@ -0,0 +1,19 @@ +from typing import TYPE_CHECKING, Tuple + +if TYPE_CHECKING: + # TypedDict was introduced in Python 3.8. + # + # TODO: Remove the else block and TYPE_CHECKING check when dropping support + # for Python 3.7. + from typing import TypedDict + + class CodingStateMachineDict(TypedDict, total=False): + class_table: Tuple[int, ...] + class_factor: int + state_table: Tuple[int, ...] + char_len_table: Tuple[int, ...] + name: str + language: str # Optional key + +else: + CodingStateMachineDict = dict diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/cp949prober.py b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/cp949prober.py new file mode 100644 index 0000000..fa7307e --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/cp949prober.py @@ -0,0 +1,49 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from .chardistribution import EUCKRDistributionAnalysis +from .codingstatemachine import CodingStateMachine +from .mbcharsetprober import MultiByteCharSetProber +from .mbcssm import CP949_SM_MODEL + + +class CP949Prober(MultiByteCharSetProber): + def __init__(self) -> None: + super().__init__() + self.coding_sm = CodingStateMachine(CP949_SM_MODEL) + # NOTE: CP949 is a superset of EUC-KR, so the distribution should be + # not different. + self.distribution_analyzer = EUCKRDistributionAnalysis() + self.reset() + + @property + def charset_name(self) -> str: + return "CP949" + + @property + def language(self) -> str: + return "Korean" diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/enums.py b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/enums.py new file mode 100644 index 0000000..5e3e198 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/enums.py @@ -0,0 +1,85 @@ +""" +All of the Enums that are used throughout the chardet package. + +:author: Dan Blanchard (dan.blanchard@gmail.com) +""" + +from enum import Enum, Flag + + +class InputState: + """ + This enum represents the different states a universal detector can be in. + """ + + PURE_ASCII = 0 + ESC_ASCII = 1 + HIGH_BYTE = 2 + + +class LanguageFilter(Flag): + """ + This enum represents the different language filters we can apply to a + ``UniversalDetector``. + """ + + NONE = 0x00 + CHINESE_SIMPLIFIED = 0x01 + CHINESE_TRADITIONAL = 0x02 + JAPANESE = 0x04 + KOREAN = 0x08 + NON_CJK = 0x10 + ALL = 0x1F + CHINESE = CHINESE_SIMPLIFIED | CHINESE_TRADITIONAL + CJK = CHINESE | JAPANESE | KOREAN + + +class ProbingState(Enum): + """ + This enum represents the different states a prober can be in. + """ + + DETECTING = 0 + FOUND_IT = 1 + NOT_ME = 2 + + +class MachineState: + """ + This enum represents the different states a state machine can be in. + """ + + START = 0 + ERROR = 1 + ITS_ME = 2 + + +class SequenceLikelihood: + """ + This enum represents the likelihood of a character following the previous one. + """ + + NEGATIVE = 0 + UNLIKELY = 1 + LIKELY = 2 + POSITIVE = 3 + + @classmethod + def get_num_categories(cls) -> int: + """:returns: The number of likelihood categories in the enum.""" + return 4 + + +class CharacterCategory: + """ + This enum represents the different categories language models for + ``SingleByteCharsetProber`` put characters into. + + Anything less than CONTROL is considered a letter. + """ + + UNDEFINED = 255 + LINE_BREAK = 254 + SYMBOL = 253 + DIGIT = 252 + CONTROL = 251 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/escprober.py b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/escprober.py new file mode 100644 index 0000000..fd71383 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/escprober.py @@ -0,0 +1,102 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from typing import Optional, Union + +from .charsetprober import CharSetProber +from .codingstatemachine import CodingStateMachine +from .enums import LanguageFilter, MachineState, ProbingState +from .escsm import ( + HZ_SM_MODEL, + ISO2022CN_SM_MODEL, + ISO2022JP_SM_MODEL, + ISO2022KR_SM_MODEL, +) + + +class EscCharSetProber(CharSetProber): + """ + This CharSetProber uses a "code scheme" approach for detecting encodings, + whereby easily recognizable escape or shift sequences are relied on to + identify these encodings. + """ + + def __init__(self, lang_filter: LanguageFilter = LanguageFilter.NONE) -> None: + super().__init__(lang_filter=lang_filter) + self.coding_sm = [] + if self.lang_filter & LanguageFilter.CHINESE_SIMPLIFIED: + self.coding_sm.append(CodingStateMachine(HZ_SM_MODEL)) + self.coding_sm.append(CodingStateMachine(ISO2022CN_SM_MODEL)) + if self.lang_filter & LanguageFilter.JAPANESE: + self.coding_sm.append(CodingStateMachine(ISO2022JP_SM_MODEL)) + if self.lang_filter & LanguageFilter.KOREAN: + self.coding_sm.append(CodingStateMachine(ISO2022KR_SM_MODEL)) + self.active_sm_count = 0 + self._detected_charset: Optional[str] = None + self._detected_language: Optional[str] = None + self._state = ProbingState.DETECTING + self.reset() + + def reset(self) -> None: + super().reset() + for coding_sm in self.coding_sm: + coding_sm.active = True + coding_sm.reset() + self.active_sm_count = len(self.coding_sm) + self._detected_charset = None + self._detected_language = None + + @property + def charset_name(self) -> Optional[str]: + return self._detected_charset + + @property + def language(self) -> Optional[str]: + return self._detected_language + + def get_confidence(self) -> float: + return 0.99 if self._detected_charset else 0.00 + + def feed(self, byte_str: Union[bytes, bytearray]) -> ProbingState: + for c in byte_str: + for coding_sm in self.coding_sm: + if not coding_sm.active: + continue + coding_state = coding_sm.next_state(c) + if coding_state == MachineState.ERROR: + coding_sm.active = False + self.active_sm_count -= 1 + if self.active_sm_count <= 0: + self._state = ProbingState.NOT_ME + return self.state + elif coding_state == MachineState.ITS_ME: + self._state = ProbingState.FOUND_IT + self._detected_charset = coding_sm.get_coding_state_machine() + self._detected_language = coding_sm.language + return self.state + + return self.state diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/escsm.py b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/escsm.py new file mode 100644 index 0000000..11d4adf --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/escsm.py @@ -0,0 +1,261 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from .codingstatemachinedict import CodingStateMachineDict +from .enums import MachineState + +# fmt: off +HZ_CLS = ( + 1, 0, 0, 0, 0, 0, 0, 0, # 00 - 07 + 0, 0, 0, 0, 0, 0, 0, 0, # 08 - 0f + 0, 0, 0, 0, 0, 0, 0, 0, # 10 - 17 + 0, 0, 0, 1, 0, 0, 0, 0, # 18 - 1f + 0, 0, 0, 0, 0, 0, 0, 0, # 20 - 27 + 0, 0, 0, 0, 0, 0, 0, 0, # 28 - 2f + 0, 0, 0, 0, 0, 0, 0, 0, # 30 - 37 + 0, 0, 0, 0, 0, 0, 0, 0, # 38 - 3f + 0, 0, 0, 0, 0, 0, 0, 0, # 40 - 47 + 0, 0, 0, 0, 0, 0, 0, 0, # 48 - 4f + 0, 0, 0, 0, 0, 0, 0, 0, # 50 - 57 + 0, 0, 0, 0, 0, 0, 0, 0, # 58 - 5f + 0, 0, 0, 0, 0, 0, 0, 0, # 60 - 67 + 0, 0, 0, 0, 0, 0, 0, 0, # 68 - 6f + 0, 0, 0, 0, 0, 0, 0, 0, # 70 - 77 + 0, 0, 0, 4, 0, 5, 2, 0, # 78 - 7f + 1, 1, 1, 1, 1, 1, 1, 1, # 80 - 87 + 1, 1, 1, 1, 1, 1, 1, 1, # 88 - 8f + 1, 1, 1, 1, 1, 1, 1, 1, # 90 - 97 + 1, 1, 1, 1, 1, 1, 1, 1, # 98 - 9f + 1, 1, 1, 1, 1, 1, 1, 1, # a0 - a7 + 1, 1, 1, 1, 1, 1, 1, 1, # a8 - af + 1, 1, 1, 1, 1, 1, 1, 1, # b0 - b7 + 1, 1, 1, 1, 1, 1, 1, 1, # b8 - bf + 1, 1, 1, 1, 1, 1, 1, 1, # c0 - c7 + 1, 1, 1, 1, 1, 1, 1, 1, # c8 - cf + 1, 1, 1, 1, 1, 1, 1, 1, # d0 - d7 + 1, 1, 1, 1, 1, 1, 1, 1, # d8 - df + 1, 1, 1, 1, 1, 1, 1, 1, # e0 - e7 + 1, 1, 1, 1, 1, 1, 1, 1, # e8 - ef + 1, 1, 1, 1, 1, 1, 1, 1, # f0 - f7 + 1, 1, 1, 1, 1, 1, 1, 1, # f8 - ff +) + +HZ_ST = ( +MachineState.START, MachineState.ERROR, 3, MachineState.START, MachineState.START, MachineState.START, MachineState.ERROR, MachineState.ERROR, # 00-07 +MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ITS_ME, MachineState.ITS_ME, MachineState.ITS_ME, MachineState.ITS_ME, # 08-0f +MachineState.ITS_ME, MachineState.ITS_ME, MachineState.ERROR, MachineState.ERROR, MachineState.START, MachineState.START, 4, MachineState.ERROR, # 10-17 + 5, MachineState.ERROR, 6, MachineState.ERROR, 5, 5, 4, MachineState.ERROR, # 18-1f + 4, MachineState.ERROR, 4, 4, 4, MachineState.ERROR, 4, MachineState.ERROR, # 20-27 + 4, MachineState.ITS_ME, MachineState.START, MachineState.START, MachineState.START, MachineState.START, MachineState.START, MachineState.START, # 28-2f +) +# fmt: on + +HZ_CHAR_LEN_TABLE = (0, 0, 0, 0, 0, 0) + +HZ_SM_MODEL: CodingStateMachineDict = { + "class_table": HZ_CLS, + "class_factor": 6, + "state_table": HZ_ST, + "char_len_table": HZ_CHAR_LEN_TABLE, + "name": "HZ-GB-2312", + "language": "Chinese", +} + +# fmt: off +ISO2022CN_CLS = ( + 2, 0, 0, 0, 0, 0, 0, 0, # 00 - 07 + 0, 0, 0, 0, 0, 0, 0, 0, # 08 - 0f + 0, 0, 0, 0, 0, 0, 0, 0, # 10 - 17 + 0, 0, 0, 1, 0, 0, 0, 0, # 18 - 1f + 0, 0, 0, 0, 0, 0, 0, 0, # 20 - 27 + 0, 3, 0, 0, 0, 0, 0, 0, # 28 - 2f + 0, 0, 0, 0, 0, 0, 0, 0, # 30 - 37 + 0, 0, 0, 0, 0, 0, 0, 0, # 38 - 3f + 0, 0, 0, 4, 0, 0, 0, 0, # 40 - 47 + 0, 0, 0, 0, 0, 0, 0, 0, # 48 - 4f + 0, 0, 0, 0, 0, 0, 0, 0, # 50 - 57 + 0, 0, 0, 0, 0, 0, 0, 0, # 58 - 5f + 0, 0, 0, 0, 0, 0, 0, 0, # 60 - 67 + 0, 0, 0, 0, 0, 0, 0, 0, # 68 - 6f + 0, 0, 0, 0, 0, 0, 0, 0, # 70 - 77 + 0, 0, 0, 0, 0, 0, 0, 0, # 78 - 7f + 2, 2, 2, 2, 2, 2, 2, 2, # 80 - 87 + 2, 2, 2, 2, 2, 2, 2, 2, # 88 - 8f + 2, 2, 2, 2, 2, 2, 2, 2, # 90 - 97 + 2, 2, 2, 2, 2, 2, 2, 2, # 98 - 9f + 2, 2, 2, 2, 2, 2, 2, 2, # a0 - a7 + 2, 2, 2, 2, 2, 2, 2, 2, # a8 - af + 2, 2, 2, 2, 2, 2, 2, 2, # b0 - b7 + 2, 2, 2, 2, 2, 2, 2, 2, # b8 - bf + 2, 2, 2, 2, 2, 2, 2, 2, # c0 - c7 + 2, 2, 2, 2, 2, 2, 2, 2, # c8 - cf + 2, 2, 2, 2, 2, 2, 2, 2, # d0 - d7 + 2, 2, 2, 2, 2, 2, 2, 2, # d8 - df + 2, 2, 2, 2, 2, 2, 2, 2, # e0 - e7 + 2, 2, 2, 2, 2, 2, 2, 2, # e8 - ef + 2, 2, 2, 2, 2, 2, 2, 2, # f0 - f7 + 2, 2, 2, 2, 2, 2, 2, 2, # f8 - ff +) + +ISO2022CN_ST = ( + MachineState.START, 3, MachineState.ERROR, MachineState.START, MachineState.START, MachineState.START, MachineState.START, MachineState.START, # 00-07 + MachineState.START, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, # 08-0f + MachineState.ERROR, MachineState.ERROR, MachineState.ITS_ME, MachineState.ITS_ME, MachineState.ITS_ME, MachineState.ITS_ME, MachineState.ITS_ME, MachineState.ITS_ME, # 10-17 + MachineState.ITS_ME, MachineState.ITS_ME, MachineState.ITS_ME, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, 4, MachineState.ERROR, # 18-1f + MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ITS_ME, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, # 20-27 + 5, 6, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, # 28-2f + MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ITS_ME, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, # 30-37 + MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ITS_ME, MachineState.ERROR, MachineState.START, # 38-3f +) +# fmt: on + +ISO2022CN_CHAR_LEN_TABLE = (0, 0, 0, 0, 0, 0, 0, 0, 0) + +ISO2022CN_SM_MODEL: CodingStateMachineDict = { + "class_table": ISO2022CN_CLS, + "class_factor": 9, + "state_table": ISO2022CN_ST, + "char_len_table": ISO2022CN_CHAR_LEN_TABLE, + "name": "ISO-2022-CN", + "language": "Chinese", +} + +# fmt: off +ISO2022JP_CLS = ( + 2, 0, 0, 0, 0, 0, 0, 0, # 00 - 07 + 0, 0, 0, 0, 0, 0, 2, 2, # 08 - 0f + 0, 0, 0, 0, 0, 0, 0, 0, # 10 - 17 + 0, 0, 0, 1, 0, 0, 0, 0, # 18 - 1f + 0, 0, 0, 0, 7, 0, 0, 0, # 20 - 27 + 3, 0, 0, 0, 0, 0, 0, 0, # 28 - 2f + 0, 0, 0, 0, 0, 0, 0, 0, # 30 - 37 + 0, 0, 0, 0, 0, 0, 0, 0, # 38 - 3f + 6, 0, 4, 0, 8, 0, 0, 0, # 40 - 47 + 0, 9, 5, 0, 0, 0, 0, 0, # 48 - 4f + 0, 0, 0, 0, 0, 0, 0, 0, # 50 - 57 + 0, 0, 0, 0, 0, 0, 0, 0, # 58 - 5f + 0, 0, 0, 0, 0, 0, 0, 0, # 60 - 67 + 0, 0, 0, 0, 0, 0, 0, 0, # 68 - 6f + 0, 0, 0, 0, 0, 0, 0, 0, # 70 - 77 + 0, 0, 0, 0, 0, 0, 0, 0, # 78 - 7f + 2, 2, 2, 2, 2, 2, 2, 2, # 80 - 87 + 2, 2, 2, 2, 2, 2, 2, 2, # 88 - 8f + 2, 2, 2, 2, 2, 2, 2, 2, # 90 - 97 + 2, 2, 2, 2, 2, 2, 2, 2, # 98 - 9f + 2, 2, 2, 2, 2, 2, 2, 2, # a0 - a7 + 2, 2, 2, 2, 2, 2, 2, 2, # a8 - af + 2, 2, 2, 2, 2, 2, 2, 2, # b0 - b7 + 2, 2, 2, 2, 2, 2, 2, 2, # b8 - bf + 2, 2, 2, 2, 2, 2, 2, 2, # c0 - c7 + 2, 2, 2, 2, 2, 2, 2, 2, # c8 - cf + 2, 2, 2, 2, 2, 2, 2, 2, # d0 - d7 + 2, 2, 2, 2, 2, 2, 2, 2, # d8 - df + 2, 2, 2, 2, 2, 2, 2, 2, # e0 - e7 + 2, 2, 2, 2, 2, 2, 2, 2, # e8 - ef + 2, 2, 2, 2, 2, 2, 2, 2, # f0 - f7 + 2, 2, 2, 2, 2, 2, 2, 2, # f8 - ff +) + +ISO2022JP_ST = ( + MachineState.START, 3, MachineState.ERROR, MachineState.START, MachineState.START, MachineState.START, MachineState.START, MachineState.START, # 00-07 + MachineState.START, MachineState.START, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, # 08-0f + MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ITS_ME, MachineState.ITS_ME, MachineState.ITS_ME, MachineState.ITS_ME, # 10-17 + MachineState.ITS_ME, MachineState.ITS_ME, MachineState.ITS_ME, MachineState.ITS_ME, MachineState.ITS_ME, MachineState.ITS_ME, MachineState.ERROR, MachineState.ERROR, # 18-1f + MachineState.ERROR, 5, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, 4, MachineState.ERROR, MachineState.ERROR, # 20-27 + MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, 6, MachineState.ITS_ME, MachineState.ERROR, MachineState.ITS_ME, MachineState.ERROR, # 28-2f + MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ITS_ME, MachineState.ITS_ME, # 30-37 + MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ITS_ME, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, # 38-3f + MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ITS_ME, MachineState.ERROR, MachineState.START, MachineState.START, # 40-47 +) +# fmt: on + +ISO2022JP_CHAR_LEN_TABLE = (0, 0, 0, 0, 0, 0, 0, 0, 0, 0) + +ISO2022JP_SM_MODEL: CodingStateMachineDict = { + "class_table": ISO2022JP_CLS, + "class_factor": 10, + "state_table": ISO2022JP_ST, + "char_len_table": ISO2022JP_CHAR_LEN_TABLE, + "name": "ISO-2022-JP", + "language": "Japanese", +} + +# fmt: off +ISO2022KR_CLS = ( + 2, 0, 0, 0, 0, 0, 0, 0, # 00 - 07 + 0, 0, 0, 0, 0, 0, 0, 0, # 08 - 0f + 0, 0, 0, 0, 0, 0, 0, 0, # 10 - 17 + 0, 0, 0, 1, 0, 0, 0, 0, # 18 - 1f + 0, 0, 0, 0, 3, 0, 0, 0, # 20 - 27 + 0, 4, 0, 0, 0, 0, 0, 0, # 28 - 2f + 0, 0, 0, 0, 0, 0, 0, 0, # 30 - 37 + 0, 0, 0, 0, 0, 0, 0, 0, # 38 - 3f + 0, 0, 0, 5, 0, 0, 0, 0, # 40 - 47 + 0, 0, 0, 0, 0, 0, 0, 0, # 48 - 4f + 0, 0, 0, 0, 0, 0, 0, 0, # 50 - 57 + 0, 0, 0, 0, 0, 0, 0, 0, # 58 - 5f + 0, 0, 0, 0, 0, 0, 0, 0, # 60 - 67 + 0, 0, 0, 0, 0, 0, 0, 0, # 68 - 6f + 0, 0, 0, 0, 0, 0, 0, 0, # 70 - 77 + 0, 0, 0, 0, 0, 0, 0, 0, # 78 - 7f + 2, 2, 2, 2, 2, 2, 2, 2, # 80 - 87 + 2, 2, 2, 2, 2, 2, 2, 2, # 88 - 8f + 2, 2, 2, 2, 2, 2, 2, 2, # 90 - 97 + 2, 2, 2, 2, 2, 2, 2, 2, # 98 - 9f + 2, 2, 2, 2, 2, 2, 2, 2, # a0 - a7 + 2, 2, 2, 2, 2, 2, 2, 2, # a8 - af + 2, 2, 2, 2, 2, 2, 2, 2, # b0 - b7 + 2, 2, 2, 2, 2, 2, 2, 2, # b8 - bf + 2, 2, 2, 2, 2, 2, 2, 2, # c0 - c7 + 2, 2, 2, 2, 2, 2, 2, 2, # c8 - cf + 2, 2, 2, 2, 2, 2, 2, 2, # d0 - d7 + 2, 2, 2, 2, 2, 2, 2, 2, # d8 - df + 2, 2, 2, 2, 2, 2, 2, 2, # e0 - e7 + 2, 2, 2, 2, 2, 2, 2, 2, # e8 - ef + 2, 2, 2, 2, 2, 2, 2, 2, # f0 - f7 + 2, 2, 2, 2, 2, 2, 2, 2, # f8 - ff +) + +ISO2022KR_ST = ( + MachineState.START, 3, MachineState.ERROR, MachineState.START, MachineState.START, MachineState.START, MachineState.ERROR, MachineState.ERROR, # 00-07 + MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ITS_ME, MachineState.ITS_ME, MachineState.ITS_ME, MachineState.ITS_ME, # 08-0f + MachineState.ITS_ME, MachineState.ITS_ME, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, 4, MachineState.ERROR, MachineState.ERROR, # 10-17 + MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, 5, MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, # 18-1f + MachineState.ERROR, MachineState.ERROR, MachineState.ERROR, MachineState.ITS_ME, MachineState.START, MachineState.START, MachineState.START, MachineState.START, # 20-27 +) +# fmt: on + +ISO2022KR_CHAR_LEN_TABLE = (0, 0, 0, 0, 0, 0) + +ISO2022KR_SM_MODEL: CodingStateMachineDict = { + "class_table": ISO2022KR_CLS, + "class_factor": 6, + "state_table": ISO2022KR_ST, + "char_len_table": ISO2022KR_CHAR_LEN_TABLE, + "name": "ISO-2022-KR", + "language": "Korean", +} diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/eucjpprober.py b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/eucjpprober.py new file mode 100644 index 0000000..39487f4 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/eucjpprober.py @@ -0,0 +1,102 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from typing import Union + +from .chardistribution import EUCJPDistributionAnalysis +from .codingstatemachine import CodingStateMachine +from .enums import MachineState, ProbingState +from .jpcntx import EUCJPContextAnalysis +from .mbcharsetprober import MultiByteCharSetProber +from .mbcssm import EUCJP_SM_MODEL + + +class EUCJPProber(MultiByteCharSetProber): + def __init__(self) -> None: + super().__init__() + self.coding_sm = CodingStateMachine(EUCJP_SM_MODEL) + self.distribution_analyzer = EUCJPDistributionAnalysis() + self.context_analyzer = EUCJPContextAnalysis() + self.reset() + + def reset(self) -> None: + super().reset() + self.context_analyzer.reset() + + @property + def charset_name(self) -> str: + return "EUC-JP" + + @property + def language(self) -> str: + return "Japanese" + + def feed(self, byte_str: Union[bytes, bytearray]) -> ProbingState: + assert self.coding_sm is not None + assert self.distribution_analyzer is not None + + for i, byte in enumerate(byte_str): + # PY3K: byte_str is a byte array, so byte is an int, not a byte + coding_state = self.coding_sm.next_state(byte) + if coding_state == MachineState.ERROR: + self.logger.debug( + "%s %s prober hit error at byte %s", + self.charset_name, + self.language, + i, + ) + self._state = ProbingState.NOT_ME + break + if coding_state == MachineState.ITS_ME: + self._state = ProbingState.FOUND_IT + break + if coding_state == MachineState.START: + char_len = self.coding_sm.get_current_charlen() + if i == 0: + self._last_char[1] = byte + self.context_analyzer.feed(self._last_char, char_len) + self.distribution_analyzer.feed(self._last_char, char_len) + else: + self.context_analyzer.feed(byte_str[i - 1 : i + 1], char_len) + self.distribution_analyzer.feed(byte_str[i - 1 : i + 1], char_len) + + self._last_char[0] = byte_str[-1] + + if self.state == ProbingState.DETECTING: + if self.context_analyzer.got_enough_data() and ( + self.get_confidence() > self.SHORTCUT_THRESHOLD + ): + self._state = ProbingState.FOUND_IT + + return self.state + + def get_confidence(self) -> float: + assert self.distribution_analyzer is not None + + context_conf = self.context_analyzer.get_confidence() + distrib_conf = self.distribution_analyzer.get_confidence() + return max(context_conf, distrib_conf) diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/euckrfreq.py b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/euckrfreq.py new file mode 100644 index 0000000..7dc3b10 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/euckrfreq.py @@ -0,0 +1,196 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Communicator client code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +# Sampling from about 20M text materials include literature and computer technology + +# 128 --> 0.79 +# 256 --> 0.92 +# 512 --> 0.986 +# 1024 --> 0.99944 +# 2048 --> 0.99999 +# +# Idea Distribution Ratio = 0.98653 / (1-0.98653) = 73.24 +# Random Distribution Ration = 512 / (2350-512) = 0.279. +# +# Typical Distribution Ratio + +EUCKR_TYPICAL_DISTRIBUTION_RATIO = 6.0 + +EUCKR_TABLE_SIZE = 2352 + +# Char to FreqOrder table , +# fmt: off +EUCKR_CHAR_TO_FREQ_ORDER = ( + 13, 130, 120,1396, 481,1719,1720, 328, 609, 212,1721, 707, 400, 299,1722, 87, +1397,1723, 104, 536,1117,1203,1724,1267, 685,1268, 508,1725,1726,1727,1728,1398, +1399,1729,1730,1731, 141, 621, 326,1057, 368,1732, 267, 488, 20,1733,1269,1734, + 945,1400,1735, 47, 904,1270,1736,1737, 773, 248,1738, 409, 313, 786, 429,1739, + 116, 987, 813,1401, 683, 75,1204, 145,1740,1741,1742,1743, 16, 847, 667, 622, + 708,1744,1745,1746, 966, 787, 304, 129,1747, 60, 820, 123, 676,1748,1749,1750, +1751, 617,1752, 626,1753,1754,1755,1756, 653,1757,1758,1759,1760,1761,1762, 856, + 344,1763,1764,1765,1766, 89, 401, 418, 806, 905, 848,1767,1768,1769, 946,1205, + 709,1770,1118,1771, 241,1772,1773,1774,1271,1775, 569,1776, 999,1777,1778,1779, +1780, 337, 751,1058, 28, 628, 254,1781, 177, 906, 270, 349, 891,1079,1782, 19, +1783, 379,1784, 315,1785, 629, 754,1402, 559,1786, 636, 203,1206,1787, 710, 567, +1788, 935, 814,1789,1790,1207, 766, 528,1791,1792,1208,1793,1794,1795,1796,1797, +1403,1798,1799, 533,1059,1404,1405,1156,1406, 936, 884,1080,1800, 351,1801,1802, +1803,1804,1805, 801,1806,1807,1808,1119,1809,1157, 714, 474,1407,1810, 298, 899, + 885,1811,1120, 802,1158,1812, 892,1813,1814,1408, 659,1815,1816,1121,1817,1818, +1819,1820,1821,1822, 319,1823, 594, 545,1824, 815, 937,1209,1825,1826, 573,1409, +1022,1827,1210,1828,1829,1830,1831,1832,1833, 556, 722, 807,1122,1060,1834, 697, +1835, 900, 557, 715,1836,1410, 540,1411, 752,1159, 294, 597,1211, 976, 803, 770, +1412,1837,1838, 39, 794,1413, 358,1839, 371, 925,1840, 453, 661, 788, 531, 723, + 544,1023,1081, 869, 91,1841, 392, 430, 790, 602,1414, 677,1082, 457,1415,1416, +1842,1843, 475, 327,1024,1417, 795, 121,1844, 733, 403,1418,1845,1846,1847, 300, + 119, 711,1212, 627,1848,1272, 207,1849,1850, 796,1213, 382,1851, 519,1852,1083, + 893,1853,1854,1855, 367, 809, 487, 671,1856, 663,1857,1858, 956, 471, 306, 857, +1859,1860,1160,1084,1861,1862,1863,1864,1865,1061,1866,1867,1868,1869,1870,1871, + 282, 96, 574,1872, 502,1085,1873,1214,1874, 907,1875,1876, 827, 977,1419,1420, +1421, 268,1877,1422,1878,1879,1880, 308,1881, 2, 537,1882,1883,1215,1884,1885, + 127, 791,1886,1273,1423,1887, 34, 336, 404, 643,1888, 571, 654, 894, 840,1889, + 0, 886,1274, 122, 575, 260, 908, 938,1890,1275, 410, 316,1891,1892, 100,1893, +1894,1123, 48,1161,1124,1025,1895, 633, 901,1276,1896,1897, 115, 816,1898, 317, +1899, 694,1900, 909, 734,1424, 572, 866,1425, 691, 85, 524,1010, 543, 394, 841, +1901,1902,1903,1026,1904,1905,1906,1907,1908,1909, 30, 451, 651, 988, 310,1910, +1911,1426, 810,1216, 93,1912,1913,1277,1217,1914, 858, 759, 45, 58, 181, 610, + 269,1915,1916, 131,1062, 551, 443,1000, 821,1427, 957, 895,1086,1917,1918, 375, +1919, 359,1920, 687,1921, 822,1922, 293,1923,1924, 40, 662, 118, 692, 29, 939, + 887, 640, 482, 174,1925, 69,1162, 728,1428, 910,1926,1278,1218,1279, 386, 870, + 217, 854,1163, 823,1927,1928,1929,1930, 834,1931, 78,1932, 859,1933,1063,1934, +1935,1936,1937, 438,1164, 208, 595,1938,1939,1940,1941,1219,1125,1942, 280, 888, +1429,1430,1220,1431,1943,1944,1945,1946,1947,1280, 150, 510,1432,1948,1949,1950, +1951,1952,1953,1954,1011,1087,1955,1433,1043,1956, 881,1957, 614, 958,1064,1065, +1221,1958, 638,1001, 860, 967, 896,1434, 989, 492, 553,1281,1165,1959,1282,1002, +1283,1222,1960,1961,1962,1963, 36, 383, 228, 753, 247, 454,1964, 876, 678,1965, +1966,1284, 126, 464, 490, 835, 136, 672, 529, 940,1088,1435, 473,1967,1968, 467, + 50, 390, 227, 587, 279, 378, 598, 792, 968, 240, 151, 160, 849, 882,1126,1285, + 639,1044, 133, 140, 288, 360, 811, 563,1027, 561, 142, 523,1969,1970,1971, 7, + 103, 296, 439, 407, 506, 634, 990,1972,1973,1974,1975, 645,1976,1977,1978,1979, +1980,1981, 236,1982,1436,1983,1984,1089, 192, 828, 618, 518,1166, 333,1127,1985, + 818,1223,1986,1987,1988,1989,1990,1991,1992,1993, 342,1128,1286, 746, 842,1994, +1995, 560, 223,1287, 98, 8, 189, 650, 978,1288,1996,1437,1997, 17, 345, 250, + 423, 277, 234, 512, 226, 97, 289, 42, 167,1998, 201,1999,2000, 843, 836, 824, + 532, 338, 783,1090, 182, 576, 436,1438,1439, 527, 500,2001, 947, 889,2002,2003, +2004,2005, 262, 600, 314, 447,2006, 547,2007, 693, 738,1129,2008, 71,1440, 745, + 619, 688,2009, 829,2010,2011, 147,2012, 33, 948,2013,2014, 74, 224,2015, 61, + 191, 918, 399, 637,2016,1028,1130, 257, 902,2017,2018,2019,2020,2021,2022,2023, +2024,2025,2026, 837,2027,2028,2029,2030, 179, 874, 591, 52, 724, 246,2031,2032, +2033,2034,1167, 969,2035,1289, 630, 605, 911,1091,1168,2036,2037,2038,1441, 912, +2039, 623,2040,2041, 253,1169,1290,2042,1442, 146, 620, 611, 577, 433,2043,1224, + 719,1170, 959, 440, 437, 534, 84, 388, 480,1131, 159, 220, 198, 679,2044,1012, + 819,1066,1443, 113,1225, 194, 318,1003,1029,2045,2046,2047,2048,1067,2049,2050, +2051,2052,2053, 59, 913, 112,2054, 632,2055, 455, 144, 739,1291,2056, 273, 681, + 499,2057, 448,2058,2059, 760,2060,2061, 970, 384, 169, 245,1132,2062,2063, 414, +1444,2064,2065, 41, 235,2066, 157, 252, 877, 568, 919, 789, 580,2067, 725,2068, +2069,1292,2070,2071,1445,2072,1446,2073,2074, 55, 588, 66,1447, 271,1092,2075, +1226,2076, 960,1013, 372,2077,2078,2079,2080,2081,1293,2082,2083,2084,2085, 850, +2086,2087,2088,2089,2090, 186,2091,1068, 180,2092,2093,2094, 109,1227, 522, 606, +2095, 867,1448,1093, 991,1171, 926, 353,1133,2096, 581,2097,2098,2099,1294,1449, +1450,2100, 596,1172,1014,1228,2101,1451,1295,1173,1229,2102,2103,1296,1134,1452, + 949,1135,2104,2105,1094,1453,1454,1455,2106,1095,2107,2108,2109,2110,2111,2112, +2113,2114,2115,2116,2117, 804,2118,2119,1230,1231, 805,1456, 405,1136,2120,2121, +2122,2123,2124, 720, 701,1297, 992,1457, 927,1004,2125,2126,2127,2128,2129,2130, + 22, 417,2131, 303,2132, 385,2133, 971, 520, 513,2134,1174, 73,1096, 231, 274, + 962,1458, 673,2135,1459,2136, 152,1137,2137,2138,2139,2140,1005,1138,1460,1139, +2141,2142,2143,2144, 11, 374, 844,2145, 154,1232, 46,1461,2146, 838, 830, 721, +1233, 106,2147, 90, 428, 462, 578, 566,1175, 352,2148,2149, 538,1234, 124,1298, +2150,1462, 761, 565,2151, 686,2152, 649,2153, 72, 173,2154, 460, 415,2155,1463, +2156,1235, 305,2157,2158,2159,2160,2161,2162, 579,2163,2164,2165,2166,2167, 747, +2168,2169,2170,2171,1464, 669,2172,2173,2174,2175,2176,1465,2177, 23, 530, 285, +2178, 335, 729,2179, 397,2180,2181,2182,1030,2183,2184, 698,2185,2186, 325,2187, +2188, 369,2189, 799,1097,1015, 348,2190,1069, 680,2191, 851,1466,2192,2193, 10, +2194, 613, 424,2195, 979, 108, 449, 589, 27, 172, 81,1031, 80, 774, 281, 350, +1032, 525, 301, 582,1176,2196, 674,1045,2197,2198,1467, 730, 762,2199,2200,2201, +2202,1468,2203, 993,2204,2205, 266,1070, 963,1140,2206,2207,2208, 664,1098, 972, +2209,2210,2211,1177,1469,1470, 871,2212,2213,2214,2215,2216,1471,2217,2218,2219, +2220,2221,2222,2223,2224,2225,2226,2227,1472,1236,2228,2229,2230,2231,2232,2233, +2234,2235,1299,2236,2237, 200,2238, 477, 373,2239,2240, 731, 825, 777,2241,2242, +2243, 521, 486, 548,2244,2245,2246,1473,1300, 53, 549, 137, 875, 76, 158,2247, +1301,1474, 469, 396,1016, 278, 712,2248, 321, 442, 503, 767, 744, 941,1237,1178, +1475,2249, 82, 178,1141,1179, 973,2250,1302,2251, 297,2252,2253, 570,2254,2255, +2256, 18, 450, 206,2257, 290, 292,1142,2258, 511, 162, 99, 346, 164, 735,2259, +1476,1477, 4, 554, 343, 798,1099,2260,1100,2261, 43, 171,1303, 139, 215,2262, +2263, 717, 775,2264,1033, 322, 216,2265, 831,2266, 149,2267,1304,2268,2269, 702, +1238, 135, 845, 347, 309,2270, 484,2271, 878, 655, 238,1006,1478,2272, 67,2273, + 295,2274,2275, 461,2276, 478, 942, 412,2277,1034,2278,2279,2280, 265,2281, 541, +2282,2283,2284,2285,2286, 70, 852,1071,2287,2288,2289,2290, 21, 56, 509, 117, + 432,2291,2292, 331, 980, 552,1101, 148, 284, 105, 393,1180,1239, 755,2293, 187, +2294,1046,1479,2295, 340,2296, 63,1047, 230,2297,2298,1305, 763,1306, 101, 800, + 808, 494,2299,2300,2301, 903,2302, 37,1072, 14, 5,2303, 79, 675,2304, 312, +2305,2306,2307,2308,2309,1480, 6,1307,2310,2311,2312, 1, 470, 35, 24, 229, +2313, 695, 210, 86, 778, 15, 784, 592, 779, 32, 77, 855, 964,2314, 259,2315, + 501, 380,2316,2317, 83, 981, 153, 689,1308,1481,1482,1483,2318,2319, 716,1484, +2320,2321,2322,2323,2324,2325,1485,2326,2327, 128, 57, 68, 261,1048, 211, 170, +1240, 31,2328, 51, 435, 742,2329,2330,2331, 635,2332, 264, 456,2333,2334,2335, + 425,2336,1486, 143, 507, 263, 943,2337, 363, 920,1487, 256,1488,1102, 243, 601, +1489,2338,2339,2340,2341,2342,2343,2344, 861,2345,2346,2347,2348,2349,2350, 395, +2351,1490,1491, 62, 535, 166, 225,2352,2353, 668, 419,1241, 138, 604, 928,2354, +1181,2355,1492,1493,2356,2357,2358,1143,2359, 696,2360, 387, 307,1309, 682, 476, +2361,2362, 332, 12, 222, 156,2363, 232,2364, 641, 276, 656, 517,1494,1495,1035, + 416, 736,1496,2365,1017, 586,2366,2367,2368,1497,2369, 242,2370,2371,2372,1498, +2373, 965, 713,2374,2375,2376,2377, 740, 982,1499, 944,1500,1007,2378,2379,1310, +1501,2380,2381,2382, 785, 329,2383,2384,1502,2385,2386,2387, 932,2388,1503,2389, +2390,2391,2392,1242,2393,2394,2395,2396,2397, 994, 950,2398,2399,2400,2401,1504, +1311,2402,2403,2404,2405,1049, 749,2406,2407, 853, 718,1144,1312,2408,1182,1505, +2409,2410, 255, 516, 479, 564, 550, 214,1506,1507,1313, 413, 239, 444, 339,1145, +1036,1508,1509,1314,1037,1510,1315,2411,1511,2412,2413,2414, 176, 703, 497, 624, + 593, 921, 302,2415, 341, 165,1103,1512,2416,1513,2417,2418,2419, 376,2420, 700, +2421,2422,2423, 258, 768,1316,2424,1183,2425, 995, 608,2426,2427,2428,2429, 221, +2430,2431,2432,2433,2434,2435,2436,2437, 195, 323, 726, 188, 897, 983,1317, 377, + 644,1050, 879,2438, 452,2439,2440,2441,2442,2443,2444, 914,2445,2446,2447,2448, + 915, 489,2449,1514,1184,2450,2451, 515, 64, 427, 495,2452, 583,2453, 483, 485, +1038, 562, 213,1515, 748, 666,2454,2455,2456,2457, 334,2458, 780, 996,1008, 705, +1243,2459,2460,2461,2462,2463, 114,2464, 493,1146, 366, 163,1516, 961,1104,2465, + 291,2466,1318,1105,2467,1517, 365,2468, 355, 951,1244,2469,1319,2470, 631,2471, +2472, 218,1320, 364, 320, 756,1518,1519,1321,1520,1322,2473,2474,2475,2476, 997, +2477,2478,2479,2480, 665,1185,2481, 916,1521,2482,2483,2484, 584, 684,2485,2486, + 797,2487,1051,1186,2488,2489,2490,1522,2491,2492, 370,2493,1039,1187, 65,2494, + 434, 205, 463,1188,2495, 125, 812, 391, 402, 826, 699, 286, 398, 155, 781, 771, + 585,2496, 590, 505,1073,2497, 599, 244, 219, 917,1018, 952, 646,1523,2498,1323, +2499,2500, 49, 984, 354, 741,2501, 625,2502,1324,2503,1019, 190, 357, 757, 491, + 95, 782, 868,2504,2505,2506,2507,2508,2509, 134,1524,1074, 422,1525, 898,2510, + 161,2511,2512,2513,2514, 769,2515,1526,2516,2517, 411,1325,2518, 472,1527,2519, +2520,2521,2522,2523,2524, 985,2525,2526,2527,2528,2529,2530, 764,2531,1245,2532, +2533, 25, 204, 311,2534, 496,2535,1052,2536,2537,2538,2539,2540,2541,2542, 199, + 704, 504, 468, 758, 657,1528, 196, 44, 839,1246, 272, 750,2543, 765, 862,2544, +2545,1326,2546, 132, 615, 933,2547, 732,2548,2549,2550,1189,1529,2551, 283,1247, +1053, 607, 929,2552,2553,2554, 930, 183, 872, 616,1040,1147,2555,1148,1020, 441, + 249,1075,2556,2557,2558, 466, 743,2559,2560,2561, 92, 514, 426, 420, 526,2562, +2563,2564,2565,2566,2567,2568, 185,2569,2570,2571,2572, 776,1530, 658,2573, 362, +2574, 361, 922,1076, 793,2575,2576,2577,2578,2579,2580,1531, 251,2581,2582,2583, +2584,1532, 54, 612, 237,1327,2585,2586, 275, 408, 647, 111,2587,1533,1106, 465, + 3, 458, 9, 38,2588, 107, 110, 890, 209, 26, 737, 498,2589,1534,2590, 431, + 202, 88,1535, 356, 287,1107, 660,1149,2591, 381,1536, 986,1150, 445,1248,1151, + 974,2592,2593, 846,2594, 446, 953, 184,1249,1250, 727,2595, 923, 193, 883,2596, +2597,2598, 102, 324, 539, 817,2599, 421,1041,2600, 832,2601, 94, 175, 197, 406, +2602, 459,2603,2604,2605,2606,2607, 330, 555,2608,2609,2610, 706,1108, 389,2611, +2612,2613,2614, 233,2615, 833, 558, 931, 954,1251,2616,2617,1537, 546,2618,2619, +1009,2620,2621,2622,1538, 690,1328,2623, 955,2624,1539,2625,2626, 772,2627,2628, +2629,2630,2631, 924, 648, 863, 603,2632,2633, 934,1540, 864, 865,2634, 642,1042, + 670,1190,2635,2636,2637,2638, 168,2639, 652, 873, 542,1054,1541,2640,2641,2642, # 512, 256 +) +# fmt: on diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/euckrprober.py b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/euckrprober.py new file mode 100644 index 0000000..1fc5de0 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/euckrprober.py @@ -0,0 +1,47 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from .chardistribution import EUCKRDistributionAnalysis +from .codingstatemachine import CodingStateMachine +from .mbcharsetprober import MultiByteCharSetProber +from .mbcssm import EUCKR_SM_MODEL + + +class EUCKRProber(MultiByteCharSetProber): + def __init__(self) -> None: + super().__init__() + self.coding_sm = CodingStateMachine(EUCKR_SM_MODEL) + self.distribution_analyzer = EUCKRDistributionAnalysis() + self.reset() + + @property + def charset_name(self) -> str: + return "EUC-KR" + + @property + def language(self) -> str: + return "Korean" diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/euctwfreq.py b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/euctwfreq.py new file mode 100644 index 0000000..4900ccc --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/euctwfreq.py @@ -0,0 +1,388 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Communicator client code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +# EUCTW frequency table +# Converted from big5 work +# by Taiwan's Mandarin Promotion Council +# + +# 128 --> 0.42261 +# 256 --> 0.57851 +# 512 --> 0.74851 +# 1024 --> 0.89384 +# 2048 --> 0.97583 +# +# Idea Distribution Ratio = 0.74851/(1-0.74851) =2.98 +# Random Distribution Ration = 512/(5401-512)=0.105 +# +# Typical Distribution Ratio about 25% of Ideal one, still much higher than RDR + +EUCTW_TYPICAL_DISTRIBUTION_RATIO = 0.75 + +# Char to FreqOrder table +EUCTW_TABLE_SIZE = 5376 + +# fmt: off +EUCTW_CHAR_TO_FREQ_ORDER = ( + 1, 1800, 1506, 255, 1431, 198, 9, 82, 6, 7310, 177, 202, 3615, 1256, 2808, 110, # 2742 + 3735, 33, 3241, 261, 76, 44, 2113, 16, 2931, 2184, 1176, 659, 3868, 26, 3404, 2643, # 2758 + 1198, 3869, 3313, 4060, 410, 2211, 302, 590, 361, 1963, 8, 204, 58, 4296, 7311, 1931, # 2774 + 63, 7312, 7313, 317, 1614, 75, 222, 159, 4061, 2412, 1480, 7314, 3500, 3068, 224, 2809, # 2790 + 3616, 3, 10, 3870, 1471, 29, 2774, 1135, 2852, 1939, 873, 130, 3242, 1123, 312, 7315, # 2806 + 4297, 2051, 507, 252, 682, 7316, 142, 1914, 124, 206, 2932, 34, 3501, 3173, 64, 604, # 2822 + 7317, 2494, 1976, 1977, 155, 1990, 645, 641, 1606, 7318, 3405, 337, 72, 406, 7319, 80, # 2838 + 630, 238, 3174, 1509, 263, 939, 1092, 2644, 756, 1440, 1094, 3406, 449, 69, 2969, 591, # 2854 + 179, 2095, 471, 115, 2034, 1843, 60, 50, 2970, 134, 806, 1868, 734, 2035, 3407, 180, # 2870 + 995, 1607, 156, 537, 2893, 688, 7320, 319, 1305, 779, 2144, 514, 2374, 298, 4298, 359, # 2886 + 2495, 90, 2707, 1338, 663, 11, 906, 1099, 2545, 20, 2436, 182, 532, 1716, 7321, 732, # 2902 + 1376, 4062, 1311, 1420, 3175, 25, 2312, 1056, 113, 399, 382, 1949, 242, 3408, 2467, 529, # 2918 + 3243, 475, 1447, 3617, 7322, 117, 21, 656, 810, 1297, 2295, 2329, 3502, 7323, 126, 4063, # 2934 + 706, 456, 150, 613, 4299, 71, 1118, 2036, 4064, 145, 3069, 85, 835, 486, 2114, 1246, # 2950 + 1426, 428, 727, 1285, 1015, 800, 106, 623, 303, 1281, 7324, 2127, 2354, 347, 3736, 221, # 2966 + 3503, 3110, 7325, 1955, 1153, 4065, 83, 296, 1199, 3070, 192, 624, 93, 7326, 822, 1897, # 2982 + 2810, 3111, 795, 2064, 991, 1554, 1542, 1592, 27, 43, 2853, 859, 139, 1456, 860, 4300, # 2998 + 437, 712, 3871, 164, 2392, 3112, 695, 211, 3017, 2096, 195, 3872, 1608, 3504, 3505, 3618, # 3014 + 3873, 234, 811, 2971, 2097, 3874, 2229, 1441, 3506, 1615, 2375, 668, 2076, 1638, 305, 228, # 3030 + 1664, 4301, 467, 415, 7327, 262, 2098, 1593, 239, 108, 300, 200, 1033, 512, 1247, 2077, # 3046 + 7328, 7329, 2173, 3176, 3619, 2673, 593, 845, 1062, 3244, 88, 1723, 2037, 3875, 1950, 212, # 3062 + 266, 152, 149, 468, 1898, 4066, 4302, 77, 187, 7330, 3018, 37, 5, 2972, 7331, 3876, # 3078 + 7332, 7333, 39, 2517, 4303, 2894, 3177, 2078, 55, 148, 74, 4304, 545, 483, 1474, 1029, # 3094 + 1665, 217, 1869, 1531, 3113, 1104, 2645, 4067, 24, 172, 3507, 900, 3877, 3508, 3509, 4305, # 3110 + 32, 1408, 2811, 1312, 329, 487, 2355, 2247, 2708, 784, 2674, 4, 3019, 3314, 1427, 1788, # 3126 + 188, 109, 499, 7334, 3620, 1717, 1789, 888, 1217, 3020, 4306, 7335, 3510, 7336, 3315, 1520, # 3142 + 3621, 3878, 196, 1034, 775, 7337, 7338, 929, 1815, 249, 439, 38, 7339, 1063, 7340, 794, # 3158 + 3879, 1435, 2296, 46, 178, 3245, 2065, 7341, 2376, 7342, 214, 1709, 4307, 804, 35, 707, # 3174 + 324, 3622, 1601, 2546, 140, 459, 4068, 7343, 7344, 1365, 839, 272, 978, 2257, 2572, 3409, # 3190 + 2128, 1363, 3623, 1423, 697, 100, 3071, 48, 70, 1231, 495, 3114, 2193, 7345, 1294, 7346, # 3206 + 2079, 462, 586, 1042, 3246, 853, 256, 988, 185, 2377, 3410, 1698, 434, 1084, 7347, 3411, # 3222 + 314, 2615, 2775, 4308, 2330, 2331, 569, 2280, 637, 1816, 2518, 757, 1162, 1878, 1616, 3412, # 3238 + 287, 1577, 2115, 768, 4309, 1671, 2854, 3511, 2519, 1321, 3737, 909, 2413, 7348, 4069, 933, # 3254 + 3738, 7349, 2052, 2356, 1222, 4310, 765, 2414, 1322, 786, 4311, 7350, 1919, 1462, 1677, 2895, # 3270 + 1699, 7351, 4312, 1424, 2437, 3115, 3624, 2590, 3316, 1774, 1940, 3413, 3880, 4070, 309, 1369, # 3286 + 1130, 2812, 364, 2230, 1653, 1299, 3881, 3512, 3882, 3883, 2646, 525, 1085, 3021, 902, 2000, # 3302 + 1475, 964, 4313, 421, 1844, 1415, 1057, 2281, 940, 1364, 3116, 376, 4314, 4315, 1381, 7, # 3318 + 2520, 983, 2378, 336, 1710, 2675, 1845, 321, 3414, 559, 1131, 3022, 2742, 1808, 1132, 1313, # 3334 + 265, 1481, 1857, 7352, 352, 1203, 2813, 3247, 167, 1089, 420, 2814, 776, 792, 1724, 3513, # 3350 + 4071, 2438, 3248, 7353, 4072, 7354, 446, 229, 333, 2743, 901, 3739, 1200, 1557, 4316, 2647, # 3366 + 1920, 395, 2744, 2676, 3740, 4073, 1835, 125, 916, 3178, 2616, 4317, 7355, 7356, 3741, 7357, # 3382 + 7358, 7359, 4318, 3117, 3625, 1133, 2547, 1757, 3415, 1510, 2313, 1409, 3514, 7360, 2145, 438, # 3398 + 2591, 2896, 2379, 3317, 1068, 958, 3023, 461, 311, 2855, 2677, 4074, 1915, 3179, 4075, 1978, # 3414 + 383, 750, 2745, 2617, 4076, 274, 539, 385, 1278, 1442, 7361, 1154, 1964, 384, 561, 210, # 3430 + 98, 1295, 2548, 3515, 7362, 1711, 2415, 1482, 3416, 3884, 2897, 1257, 129, 7363, 3742, 642, # 3446 + 523, 2776, 2777, 2648, 7364, 141, 2231, 1333, 68, 176, 441, 876, 907, 4077, 603, 2592, # 3462 + 710, 171, 3417, 404, 549, 18, 3118, 2393, 1410, 3626, 1666, 7365, 3516, 4319, 2898, 4320, # 3478 + 7366, 2973, 368, 7367, 146, 366, 99, 871, 3627, 1543, 748, 807, 1586, 1185, 22, 2258, # 3494 + 379, 3743, 3180, 7368, 3181, 505, 1941, 2618, 1991, 1382, 2314, 7369, 380, 2357, 218, 702, # 3510 + 1817, 1248, 3418, 3024, 3517, 3318, 3249, 7370, 2974, 3628, 930, 3250, 3744, 7371, 59, 7372, # 3526 + 585, 601, 4078, 497, 3419, 1112, 1314, 4321, 1801, 7373, 1223, 1472, 2174, 7374, 749, 1836, # 3542 + 690, 1899, 3745, 1772, 3885, 1476, 429, 1043, 1790, 2232, 2116, 917, 4079, 447, 1086, 1629, # 3558 + 7375, 556, 7376, 7377, 2020, 1654, 844, 1090, 105, 550, 966, 1758, 2815, 1008, 1782, 686, # 3574 + 1095, 7378, 2282, 793, 1602, 7379, 3518, 2593, 4322, 4080, 2933, 2297, 4323, 3746, 980, 2496, # 3590 + 544, 353, 527, 4324, 908, 2678, 2899, 7380, 381, 2619, 1942, 1348, 7381, 1341, 1252, 560, # 3606 + 3072, 7382, 3420, 2856, 7383, 2053, 973, 886, 2080, 143, 4325, 7384, 7385, 157, 3886, 496, # 3622 + 4081, 57, 840, 540, 2038, 4326, 4327, 3421, 2117, 1445, 970, 2259, 1748, 1965, 2081, 4082, # 3638 + 3119, 1234, 1775, 3251, 2816, 3629, 773, 1206, 2129, 1066, 2039, 1326, 3887, 1738, 1725, 4083, # 3654 + 279, 3120, 51, 1544, 2594, 423, 1578, 2130, 2066, 173, 4328, 1879, 7386, 7387, 1583, 264, # 3670 + 610, 3630, 4329, 2439, 280, 154, 7388, 7389, 7390, 1739, 338, 1282, 3073, 693, 2857, 1411, # 3686 + 1074, 3747, 2440, 7391, 4330, 7392, 7393, 1240, 952, 2394, 7394, 2900, 1538, 2679, 685, 1483, # 3702 + 4084, 2468, 1436, 953, 4085, 2054, 4331, 671, 2395, 79, 4086, 2441, 3252, 608, 567, 2680, # 3718 + 3422, 4087, 4088, 1691, 393, 1261, 1791, 2396, 7395, 4332, 7396, 7397, 7398, 7399, 1383, 1672, # 3734 + 3748, 3182, 1464, 522, 1119, 661, 1150, 216, 675, 4333, 3888, 1432, 3519, 609, 4334, 2681, # 3750 + 2397, 7400, 7401, 7402, 4089, 3025, 0, 7403, 2469, 315, 231, 2442, 301, 3319, 4335, 2380, # 3766 + 7404, 233, 4090, 3631, 1818, 4336, 4337, 7405, 96, 1776, 1315, 2082, 7406, 257, 7407, 1809, # 3782 + 3632, 2709, 1139, 1819, 4091, 2021, 1124, 2163, 2778, 1777, 2649, 7408, 3074, 363, 1655, 3183, # 3798 + 7409, 2975, 7410, 7411, 7412, 3889, 1567, 3890, 718, 103, 3184, 849, 1443, 341, 3320, 2934, # 3814 + 1484, 7413, 1712, 127, 67, 339, 4092, 2398, 679, 1412, 821, 7414, 7415, 834, 738, 351, # 3830 + 2976, 2146, 846, 235, 1497, 1880, 418, 1992, 3749, 2710, 186, 1100, 2147, 2746, 3520, 1545, # 3846 + 1355, 2935, 2858, 1377, 583, 3891, 4093, 2573, 2977, 7416, 1298, 3633, 1078, 2549, 3634, 2358, # 3862 + 78, 3750, 3751, 267, 1289, 2099, 2001, 1594, 4094, 348, 369, 1274, 2194, 2175, 1837, 4338, # 3878 + 1820, 2817, 3635, 2747, 2283, 2002, 4339, 2936, 2748, 144, 3321, 882, 4340, 3892, 2749, 3423, # 3894 + 4341, 2901, 7417, 4095, 1726, 320, 7418, 3893, 3026, 788, 2978, 7419, 2818, 1773, 1327, 2859, # 3910 + 3894, 2819, 7420, 1306, 4342, 2003, 1700, 3752, 3521, 2359, 2650, 787, 2022, 506, 824, 3636, # 3926 + 534, 323, 4343, 1044, 3322, 2023, 1900, 946, 3424, 7421, 1778, 1500, 1678, 7422, 1881, 4344, # 3942 + 165, 243, 4345, 3637, 2521, 123, 683, 4096, 764, 4346, 36, 3895, 1792, 589, 2902, 816, # 3958 + 626, 1667, 3027, 2233, 1639, 1555, 1622, 3753, 3896, 7423, 3897, 2860, 1370, 1228, 1932, 891, # 3974 + 2083, 2903, 304, 4097, 7424, 292, 2979, 2711, 3522, 691, 2100, 4098, 1115, 4347, 118, 662, # 3990 + 7425, 611, 1156, 854, 2381, 1316, 2861, 2, 386, 515, 2904, 7426, 7427, 3253, 868, 2234, # 4006 + 1486, 855, 2651, 785, 2212, 3028, 7428, 1040, 3185, 3523, 7429, 3121, 448, 7430, 1525, 7431, # 4022 + 2164, 4348, 7432, 3754, 7433, 4099, 2820, 3524, 3122, 503, 818, 3898, 3123, 1568, 814, 676, # 4038 + 1444, 306, 1749, 7434, 3755, 1416, 1030, 197, 1428, 805, 2821, 1501, 4349, 7435, 7436, 7437, # 4054 + 1993, 7438, 4350, 7439, 7440, 2195, 13, 2779, 3638, 2980, 3124, 1229, 1916, 7441, 3756, 2131, # 4070 + 7442, 4100, 4351, 2399, 3525, 7443, 2213, 1511, 1727, 1120, 7444, 7445, 646, 3757, 2443, 307, # 4086 + 7446, 7447, 1595, 3186, 7448, 7449, 7450, 3639, 1113, 1356, 3899, 1465, 2522, 2523, 7451, 519, # 4102 + 7452, 128, 2132, 92, 2284, 1979, 7453, 3900, 1512, 342, 3125, 2196, 7454, 2780, 2214, 1980, # 4118 + 3323, 7455, 290, 1656, 1317, 789, 827, 2360, 7456, 3758, 4352, 562, 581, 3901, 7457, 401, # 4134 + 4353, 2248, 94, 4354, 1399, 2781, 7458, 1463, 2024, 4355, 3187, 1943, 7459, 828, 1105, 4101, # 4150 + 1262, 1394, 7460, 4102, 605, 4356, 7461, 1783, 2862, 7462, 2822, 819, 2101, 578, 2197, 2937, # 4166 + 7463, 1502, 436, 3254, 4103, 3255, 2823, 3902, 2905, 3425, 3426, 7464, 2712, 2315, 7465, 7466, # 4182 + 2332, 2067, 23, 4357, 193, 826, 3759, 2102, 699, 1630, 4104, 3075, 390, 1793, 1064, 3526, # 4198 + 7467, 1579, 3076, 3077, 1400, 7468, 4105, 1838, 1640, 2863, 7469, 4358, 4359, 137, 4106, 598, # 4214 + 3078, 1966, 780, 104, 974, 2938, 7470, 278, 899, 253, 402, 572, 504, 493, 1339, 7471, # 4230 + 3903, 1275, 4360, 2574, 2550, 7472, 3640, 3029, 3079, 2249, 565, 1334, 2713, 863, 41, 7473, # 4246 + 7474, 4361, 7475, 1657, 2333, 19, 463, 2750, 4107, 606, 7476, 2981, 3256, 1087, 2084, 1323, # 4262 + 2652, 2982, 7477, 1631, 1623, 1750, 4108, 2682, 7478, 2864, 791, 2714, 2653, 2334, 232, 2416, # 4278 + 7479, 2983, 1498, 7480, 2654, 2620, 755, 1366, 3641, 3257, 3126, 2025, 1609, 119, 1917, 3427, # 4294 + 862, 1026, 4109, 7481, 3904, 3760, 4362, 3905, 4363, 2260, 1951, 2470, 7482, 1125, 817, 4110, # 4310 + 4111, 3906, 1513, 1766, 2040, 1487, 4112, 3030, 3258, 2824, 3761, 3127, 7483, 7484, 1507, 7485, # 4326 + 2683, 733, 40, 1632, 1106, 2865, 345, 4113, 841, 2524, 230, 4364, 2984, 1846, 3259, 3428, # 4342 + 7486, 1263, 986, 3429, 7487, 735, 879, 254, 1137, 857, 622, 1300, 1180, 1388, 1562, 3907, # 4358 + 3908, 2939, 967, 2751, 2655, 1349, 592, 2133, 1692, 3324, 2985, 1994, 4114, 1679, 3909, 1901, # 4374 + 2185, 7488, 739, 3642, 2715, 1296, 1290, 7489, 4115, 2198, 2199, 1921, 1563, 2595, 2551, 1870, # 4390 + 2752, 2986, 7490, 435, 7491, 343, 1108, 596, 17, 1751, 4365, 2235, 3430, 3643, 7492, 4366, # 4406 + 294, 3527, 2940, 1693, 477, 979, 281, 2041, 3528, 643, 2042, 3644, 2621, 2782, 2261, 1031, # 4422 + 2335, 2134, 2298, 3529, 4367, 367, 1249, 2552, 7493, 3530, 7494, 4368, 1283, 3325, 2004, 240, # 4438 + 1762, 3326, 4369, 4370, 836, 1069, 3128, 474, 7495, 2148, 2525, 268, 3531, 7496, 3188, 1521, # 4454 + 1284, 7497, 1658, 1546, 4116, 7498, 3532, 3533, 7499, 4117, 3327, 2684, 1685, 4118, 961, 1673, # 4470 + 2622, 190, 2005, 2200, 3762, 4371, 4372, 7500, 570, 2497, 3645, 1490, 7501, 4373, 2623, 3260, # 4486 + 1956, 4374, 584, 1514, 396, 1045, 1944, 7502, 4375, 1967, 2444, 7503, 7504, 4376, 3910, 619, # 4502 + 7505, 3129, 3261, 215, 2006, 2783, 2553, 3189, 4377, 3190, 4378, 763, 4119, 3763, 4379, 7506, # 4518 + 7507, 1957, 1767, 2941, 3328, 3646, 1174, 452, 1477, 4380, 3329, 3130, 7508, 2825, 1253, 2382, # 4534 + 2186, 1091, 2285, 4120, 492, 7509, 638, 1169, 1824, 2135, 1752, 3911, 648, 926, 1021, 1324, # 4550 + 4381, 520, 4382, 997, 847, 1007, 892, 4383, 3764, 2262, 1871, 3647, 7510, 2400, 1784, 4384, # 4566 + 1952, 2942, 3080, 3191, 1728, 4121, 2043, 3648, 4385, 2007, 1701, 3131, 1551, 30, 2263, 4122, # 4582 + 7511, 2026, 4386, 3534, 7512, 501, 7513, 4123, 594, 3431, 2165, 1821, 3535, 3432, 3536, 3192, # 4598 + 829, 2826, 4124, 7514, 1680, 3132, 1225, 4125, 7515, 3262, 4387, 4126, 3133, 2336, 7516, 4388, # 4614 + 4127, 7517, 3912, 3913, 7518, 1847, 2383, 2596, 3330, 7519, 4389, 374, 3914, 652, 4128, 4129, # 4630 + 375, 1140, 798, 7520, 7521, 7522, 2361, 4390, 2264, 546, 1659, 138, 3031, 2445, 4391, 7523, # 4646 + 2250, 612, 1848, 910, 796, 3765, 1740, 1371, 825, 3766, 3767, 7524, 2906, 2554, 7525, 692, # 4662 + 444, 3032, 2624, 801, 4392, 4130, 7526, 1491, 244, 1053, 3033, 4131, 4132, 340, 7527, 3915, # 4678 + 1041, 2987, 293, 1168, 87, 1357, 7528, 1539, 959, 7529, 2236, 721, 694, 4133, 3768, 219, # 4694 + 1478, 644, 1417, 3331, 2656, 1413, 1401, 1335, 1389, 3916, 7530, 7531, 2988, 2362, 3134, 1825, # 4710 + 730, 1515, 184, 2827, 66, 4393, 7532, 1660, 2943, 246, 3332, 378, 1457, 226, 3433, 975, # 4726 + 3917, 2944, 1264, 3537, 674, 696, 7533, 163, 7534, 1141, 2417, 2166, 713, 3538, 3333, 4394, # 4742 + 3918, 7535, 7536, 1186, 15, 7537, 1079, 1070, 7538, 1522, 3193, 3539, 276, 1050, 2716, 758, # 4758 + 1126, 653, 2945, 3263, 7539, 2337, 889, 3540, 3919, 3081, 2989, 903, 1250, 4395, 3920, 3434, # 4774 + 3541, 1342, 1681, 1718, 766, 3264, 286, 89, 2946, 3649, 7540, 1713, 7541, 2597, 3334, 2990, # 4790 + 7542, 2947, 2215, 3194, 2866, 7543, 4396, 2498, 2526, 181, 387, 1075, 3921, 731, 2187, 3335, # 4806 + 7544, 3265, 310, 313, 3435, 2299, 770, 4134, 54, 3034, 189, 4397, 3082, 3769, 3922, 7545, # 4822 + 1230, 1617, 1849, 355, 3542, 4135, 4398, 3336, 111, 4136, 3650, 1350, 3135, 3436, 3035, 4137, # 4838 + 2149, 3266, 3543, 7546, 2784, 3923, 3924, 2991, 722, 2008, 7547, 1071, 247, 1207, 2338, 2471, # 4854 + 1378, 4399, 2009, 864, 1437, 1214, 4400, 373, 3770, 1142, 2216, 667, 4401, 442, 2753, 2555, # 4870 + 3771, 3925, 1968, 4138, 3267, 1839, 837, 170, 1107, 934, 1336, 1882, 7548, 7549, 2118, 4139, # 4886 + 2828, 743, 1569, 7550, 4402, 4140, 582, 2384, 1418, 3437, 7551, 1802, 7552, 357, 1395, 1729, # 4902 + 3651, 3268, 2418, 1564, 2237, 7553, 3083, 3772, 1633, 4403, 1114, 2085, 4141, 1532, 7554, 482, # 4918 + 2446, 4404, 7555, 7556, 1492, 833, 1466, 7557, 2717, 3544, 1641, 2829, 7558, 1526, 1272, 3652, # 4934 + 4142, 1686, 1794, 416, 2556, 1902, 1953, 1803, 7559, 3773, 2785, 3774, 1159, 2316, 7560, 2867, # 4950 + 4405, 1610, 1584, 3036, 2419, 2754, 443, 3269, 1163, 3136, 7561, 7562, 3926, 7563, 4143, 2499, # 4966 + 3037, 4406, 3927, 3137, 2103, 1647, 3545, 2010, 1872, 4144, 7564, 4145, 431, 3438, 7565, 250, # 4982 + 97, 81, 4146, 7566, 1648, 1850, 1558, 160, 848, 7567, 866, 740, 1694, 7568, 2201, 2830, # 4998 + 3195, 4147, 4407, 3653, 1687, 950, 2472, 426, 469, 3196, 3654, 3655, 3928, 7569, 7570, 1188, # 5014 + 424, 1995, 861, 3546, 4148, 3775, 2202, 2685, 168, 1235, 3547, 4149, 7571, 2086, 1674, 4408, # 5030 + 3337, 3270, 220, 2557, 1009, 7572, 3776, 670, 2992, 332, 1208, 717, 7573, 7574, 3548, 2447, # 5046 + 3929, 3338, 7575, 513, 7576, 1209, 2868, 3339, 3138, 4409, 1080, 7577, 7578, 7579, 7580, 2527, # 5062 + 3656, 3549, 815, 1587, 3930, 3931, 7581, 3550, 3439, 3777, 1254, 4410, 1328, 3038, 1390, 3932, # 5078 + 1741, 3933, 3778, 3934, 7582, 236, 3779, 2448, 3271, 7583, 7584, 3657, 3780, 1273, 3781, 4411, # 5094 + 7585, 308, 7586, 4412, 245, 4413, 1851, 2473, 1307, 2575, 430, 715, 2136, 2449, 7587, 270, # 5110 + 199, 2869, 3935, 7588, 3551, 2718, 1753, 761, 1754, 725, 1661, 1840, 4414, 3440, 3658, 7589, # 5126 + 7590, 587, 14, 3272, 227, 2598, 326, 480, 2265, 943, 2755, 3552, 291, 650, 1883, 7591, # 5142 + 1702, 1226, 102, 1547, 62, 3441, 904, 4415, 3442, 1164, 4150, 7592, 7593, 1224, 1548, 2756, # 5158 + 391, 498, 1493, 7594, 1386, 1419, 7595, 2055, 1177, 4416, 813, 880, 1081, 2363, 566, 1145, # 5174 + 4417, 2286, 1001, 1035, 2558, 2599, 2238, 394, 1286, 7596, 7597, 2068, 7598, 86, 1494, 1730, # 5190 + 3936, 491, 1588, 745, 897, 2948, 843, 3340, 3937, 2757, 2870, 3273, 1768, 998, 2217, 2069, # 5206 + 397, 1826, 1195, 1969, 3659, 2993, 3341, 284, 7599, 3782, 2500, 2137, 2119, 1903, 7600, 3938, # 5222 + 2150, 3939, 4151, 1036, 3443, 1904, 114, 2559, 4152, 209, 1527, 7601, 7602, 2949, 2831, 2625, # 5238 + 2385, 2719, 3139, 812, 2560, 7603, 3274, 7604, 1559, 737, 1884, 3660, 1210, 885, 28, 2686, # 5254 + 3553, 3783, 7605, 4153, 1004, 1779, 4418, 7606, 346, 1981, 2218, 2687, 4419, 3784, 1742, 797, # 5270 + 1642, 3940, 1933, 1072, 1384, 2151, 896, 3941, 3275, 3661, 3197, 2871, 3554, 7607, 2561, 1958, # 5286 + 4420, 2450, 1785, 7608, 7609, 7610, 3942, 4154, 1005, 1308, 3662, 4155, 2720, 4421, 4422, 1528, # 5302 + 2600, 161, 1178, 4156, 1982, 987, 4423, 1101, 4157, 631, 3943, 1157, 3198, 2420, 1343, 1241, # 5318 + 1016, 2239, 2562, 372, 877, 2339, 2501, 1160, 555, 1934, 911, 3944, 7611, 466, 1170, 169, # 5334 + 1051, 2907, 2688, 3663, 2474, 2994, 1182, 2011, 2563, 1251, 2626, 7612, 992, 2340, 3444, 1540, # 5350 + 2721, 1201, 2070, 2401, 1996, 2475, 7613, 4424, 528, 1922, 2188, 1503, 1873, 1570, 2364, 3342, # 5366 + 3276, 7614, 557, 1073, 7615, 1827, 3445, 2087, 2266, 3140, 3039, 3084, 767, 3085, 2786, 4425, # 5382 + 1006, 4158, 4426, 2341, 1267, 2176, 3664, 3199, 778, 3945, 3200, 2722, 1597, 2657, 7616, 4427, # 5398 + 7617, 3446, 7618, 7619, 7620, 3277, 2689, 1433, 3278, 131, 95, 1504, 3946, 723, 4159, 3141, # 5414 + 1841, 3555, 2758, 2189, 3947, 2027, 2104, 3665, 7621, 2995, 3948, 1218, 7622, 3343, 3201, 3949, # 5430 + 4160, 2576, 248, 1634, 3785, 912, 7623, 2832, 3666, 3040, 3786, 654, 53, 7624, 2996, 7625, # 5446 + 1688, 4428, 777, 3447, 1032, 3950, 1425, 7626, 191, 820, 2120, 2833, 971, 4429, 931, 3202, # 5462 + 135, 664, 783, 3787, 1997, 772, 2908, 1935, 3951, 3788, 4430, 2909, 3203, 282, 2723, 640, # 5478 + 1372, 3448, 1127, 922, 325, 3344, 7627, 7628, 711, 2044, 7629, 7630, 3952, 2219, 2787, 1936, # 5494 + 3953, 3345, 2220, 2251, 3789, 2300, 7631, 4431, 3790, 1258, 3279, 3954, 3204, 2138, 2950, 3955, # 5510 + 3956, 7632, 2221, 258, 3205, 4432, 101, 1227, 7633, 3280, 1755, 7634, 1391, 3281, 7635, 2910, # 5526 + 2056, 893, 7636, 7637, 7638, 1402, 4161, 2342, 7639, 7640, 3206, 3556, 7641, 7642, 878, 1325, # 5542 + 1780, 2788, 4433, 259, 1385, 2577, 744, 1183, 2267, 4434, 7643, 3957, 2502, 7644, 684, 1024, # 5558 + 4162, 7645, 472, 3557, 3449, 1165, 3282, 3958, 3959, 322, 2152, 881, 455, 1695, 1152, 1340, # 5574 + 660, 554, 2153, 4435, 1058, 4436, 4163, 830, 1065, 3346, 3960, 4437, 1923, 7646, 1703, 1918, # 5590 + 7647, 932, 2268, 122, 7648, 4438, 947, 677, 7649, 3791, 2627, 297, 1905, 1924, 2269, 4439, # 5606 + 2317, 3283, 7650, 7651, 4164, 7652, 4165, 84, 4166, 112, 989, 7653, 547, 1059, 3961, 701, # 5622 + 3558, 1019, 7654, 4167, 7655, 3450, 942, 639, 457, 2301, 2451, 993, 2951, 407, 851, 494, # 5638 + 4440, 3347, 927, 7656, 1237, 7657, 2421, 3348, 573, 4168, 680, 921, 2911, 1279, 1874, 285, # 5654 + 790, 1448, 1983, 719, 2167, 7658, 7659, 4441, 3962, 3963, 1649, 7660, 1541, 563, 7661, 1077, # 5670 + 7662, 3349, 3041, 3451, 511, 2997, 3964, 3965, 3667, 3966, 1268, 2564, 3350, 3207, 4442, 4443, # 5686 + 7663, 535, 1048, 1276, 1189, 2912, 2028, 3142, 1438, 1373, 2834, 2952, 1134, 2012, 7664, 4169, # 5702 + 1238, 2578, 3086, 1259, 7665, 700, 7666, 2953, 3143, 3668, 4170, 7667, 4171, 1146, 1875, 1906, # 5718 + 4444, 2601, 3967, 781, 2422, 132, 1589, 203, 147, 273, 2789, 2402, 898, 1786, 2154, 3968, # 5734 + 3969, 7668, 3792, 2790, 7669, 7670, 4445, 4446, 7671, 3208, 7672, 1635, 3793, 965, 7673, 1804, # 5750 + 2690, 1516, 3559, 1121, 1082, 1329, 3284, 3970, 1449, 3794, 65, 1128, 2835, 2913, 2759, 1590, # 5766 + 3795, 7674, 7675, 12, 2658, 45, 976, 2579, 3144, 4447, 517, 2528, 1013, 1037, 3209, 7676, # 5782 + 3796, 2836, 7677, 3797, 7678, 3452, 7679, 2602, 614, 1998, 2318, 3798, 3087, 2724, 2628, 7680, # 5798 + 2580, 4172, 599, 1269, 7681, 1810, 3669, 7682, 2691, 3088, 759, 1060, 489, 1805, 3351, 3285, # 5814 + 1358, 7683, 7684, 2386, 1387, 1215, 2629, 2252, 490, 7685, 7686, 4173, 1759, 2387, 2343, 7687, # 5830 + 4448, 3799, 1907, 3971, 2630, 1806, 3210, 4449, 3453, 3286, 2760, 2344, 874, 7688, 7689, 3454, # 5846 + 3670, 1858, 91, 2914, 3671, 3042, 3800, 4450, 7690, 3145, 3972, 2659, 7691, 3455, 1202, 1403, # 5862 + 3801, 2954, 2529, 1517, 2503, 4451, 3456, 2504, 7692, 4452, 7693, 2692, 1885, 1495, 1731, 3973, # 5878 + 2365, 4453, 7694, 2029, 7695, 7696, 3974, 2693, 1216, 237, 2581, 4174, 2319, 3975, 3802, 4454, # 5894 + 4455, 2694, 3560, 3457, 445, 4456, 7697, 7698, 7699, 7700, 2761, 61, 3976, 3672, 1822, 3977, # 5910 + 7701, 687, 2045, 935, 925, 405, 2660, 703, 1096, 1859, 2725, 4457, 3978, 1876, 1367, 2695, # 5926 + 3352, 918, 2105, 1781, 2476, 334, 3287, 1611, 1093, 4458, 564, 3146, 3458, 3673, 3353, 945, # 5942 + 2631, 2057, 4459, 7702, 1925, 872, 4175, 7703, 3459, 2696, 3089, 349, 4176, 3674, 3979, 4460, # 5958 + 3803, 4177, 3675, 2155, 3980, 4461, 4462, 4178, 4463, 2403, 2046, 782, 3981, 400, 251, 4179, # 5974 + 1624, 7704, 7705, 277, 3676, 299, 1265, 476, 1191, 3804, 2121, 4180, 4181, 1109, 205, 7706, # 5990 + 2582, 1000, 2156, 3561, 1860, 7707, 7708, 7709, 4464, 7710, 4465, 2565, 107, 2477, 2157, 3982, # 6006 + 3460, 3147, 7711, 1533, 541, 1301, 158, 753, 4182, 2872, 3562, 7712, 1696, 370, 1088, 4183, # 6022 + 4466, 3563, 579, 327, 440, 162, 2240, 269, 1937, 1374, 3461, 968, 3043, 56, 1396, 3090, # 6038 + 2106, 3288, 3354, 7713, 1926, 2158, 4467, 2998, 7714, 3564, 7715, 7716, 3677, 4468, 2478, 7717, # 6054 + 2791, 7718, 1650, 4469, 7719, 2603, 7720, 7721, 3983, 2661, 3355, 1149, 3356, 3984, 3805, 3985, # 6070 + 7722, 1076, 49, 7723, 951, 3211, 3289, 3290, 450, 2837, 920, 7724, 1811, 2792, 2366, 4184, # 6086 + 1908, 1138, 2367, 3806, 3462, 7725, 3212, 4470, 1909, 1147, 1518, 2423, 4471, 3807, 7726, 4472, # 6102 + 2388, 2604, 260, 1795, 3213, 7727, 7728, 3808, 3291, 708, 7729, 3565, 1704, 7730, 3566, 1351, # 6118 + 1618, 3357, 2999, 1886, 944, 4185, 3358, 4186, 3044, 3359, 4187, 7731, 3678, 422, 413, 1714, # 6134 + 3292, 500, 2058, 2345, 4188, 2479, 7732, 1344, 1910, 954, 7733, 1668, 7734, 7735, 3986, 2404, # 6150 + 4189, 3567, 3809, 4190, 7736, 2302, 1318, 2505, 3091, 133, 3092, 2873, 4473, 629, 31, 2838, # 6166 + 2697, 3810, 4474, 850, 949, 4475, 3987, 2955, 1732, 2088, 4191, 1496, 1852, 7737, 3988, 620, # 6182 + 3214, 981, 1242, 3679, 3360, 1619, 3680, 1643, 3293, 2139, 2452, 1970, 1719, 3463, 2168, 7738, # 6198 + 3215, 7739, 7740, 3361, 1828, 7741, 1277, 4476, 1565, 2047, 7742, 1636, 3568, 3093, 7743, 869, # 6214 + 2839, 655, 3811, 3812, 3094, 3989, 3000, 3813, 1310, 3569, 4477, 7744, 7745, 7746, 1733, 558, # 6230 + 4478, 3681, 335, 1549, 3045, 1756, 4192, 3682, 1945, 3464, 1829, 1291, 1192, 470, 2726, 2107, # 6246 + 2793, 913, 1054, 3990, 7747, 1027, 7748, 3046, 3991, 4479, 982, 2662, 3362, 3148, 3465, 3216, # 6262 + 3217, 1946, 2794, 7749, 571, 4480, 7750, 1830, 7751, 3570, 2583, 1523, 2424, 7752, 2089, 984, # 6278 + 4481, 3683, 1959, 7753, 3684, 852, 923, 2795, 3466, 3685, 969, 1519, 999, 2048, 2320, 1705, # 6294 + 7754, 3095, 615, 1662, 151, 597, 3992, 2405, 2321, 1049, 275, 4482, 3686, 4193, 568, 3687, # 6310 + 3571, 2480, 4194, 3688, 7755, 2425, 2270, 409, 3218, 7756, 1566, 2874, 3467, 1002, 769, 2840, # 6326 + 194, 2090, 3149, 3689, 2222, 3294, 4195, 628, 1505, 7757, 7758, 1763, 2177, 3001, 3993, 521, # 6342 + 1161, 2584, 1787, 2203, 2406, 4483, 3994, 1625, 4196, 4197, 412, 42, 3096, 464, 7759, 2632, # 6358 + 4484, 3363, 1760, 1571, 2875, 3468, 2530, 1219, 2204, 3814, 2633, 2140, 2368, 4485, 4486, 3295, # 6374 + 1651, 3364, 3572, 7760, 7761, 3573, 2481, 3469, 7762, 3690, 7763, 7764, 2271, 2091, 460, 7765, # 6390 + 4487, 7766, 3002, 962, 588, 3574, 289, 3219, 2634, 1116, 52, 7767, 3047, 1796, 7768, 7769, # 6406 + 7770, 1467, 7771, 1598, 1143, 3691, 4198, 1984, 1734, 1067, 4488, 1280, 3365, 465, 4489, 1572, # 6422 + 510, 7772, 1927, 2241, 1812, 1644, 3575, 7773, 4490, 3692, 7774, 7775, 2663, 1573, 1534, 7776, # 6438 + 7777, 4199, 536, 1807, 1761, 3470, 3815, 3150, 2635, 7778, 7779, 7780, 4491, 3471, 2915, 1911, # 6454 + 2796, 7781, 3296, 1122, 377, 3220, 7782, 360, 7783, 7784, 4200, 1529, 551, 7785, 2059, 3693, # 6470 + 1769, 2426, 7786, 2916, 4201, 3297, 3097, 2322, 2108, 2030, 4492, 1404, 136, 1468, 1479, 672, # 6486 + 1171, 3221, 2303, 271, 3151, 7787, 2762, 7788, 2049, 678, 2727, 865, 1947, 4493, 7789, 2013, # 6502 + 3995, 2956, 7790, 2728, 2223, 1397, 3048, 3694, 4494, 4495, 1735, 2917, 3366, 3576, 7791, 3816, # 6518 + 509, 2841, 2453, 2876, 3817, 7792, 7793, 3152, 3153, 4496, 4202, 2531, 4497, 2304, 1166, 1010, # 6534 + 552, 681, 1887, 7794, 7795, 2957, 2958, 3996, 1287, 1596, 1861, 3154, 358, 453, 736, 175, # 6550 + 478, 1117, 905, 1167, 1097, 7796, 1853, 1530, 7797, 1706, 7798, 2178, 3472, 2287, 3695, 3473, # 6566 + 3577, 4203, 2092, 4204, 7799, 3367, 1193, 2482, 4205, 1458, 2190, 2205, 1862, 1888, 1421, 3298, # 6582 + 2918, 3049, 2179, 3474, 595, 2122, 7800, 3997, 7801, 7802, 4206, 1707, 2636, 223, 3696, 1359, # 6598 + 751, 3098, 183, 3475, 7803, 2797, 3003, 419, 2369, 633, 704, 3818, 2389, 241, 7804, 7805, # 6614 + 7806, 838, 3004, 3697, 2272, 2763, 2454, 3819, 1938, 2050, 3998, 1309, 3099, 2242, 1181, 7807, # 6630 + 1136, 2206, 3820, 2370, 1446, 4207, 2305, 4498, 7808, 7809, 4208, 1055, 2605, 484, 3698, 7810, # 6646 + 3999, 625, 4209, 2273, 3368, 1499, 4210, 4000, 7811, 4001, 4211, 3222, 2274, 2275, 3476, 7812, # 6662 + 7813, 2764, 808, 2606, 3699, 3369, 4002, 4212, 3100, 2532, 526, 3370, 3821, 4213, 955, 7814, # 6678 + 1620, 4214, 2637, 2427, 7815, 1429, 3700, 1669, 1831, 994, 928, 7816, 3578, 1260, 7817, 7818, # 6694 + 7819, 1948, 2288, 741, 2919, 1626, 4215, 2729, 2455, 867, 1184, 362, 3371, 1392, 7820, 7821, # 6710 + 4003, 4216, 1770, 1736, 3223, 2920, 4499, 4500, 1928, 2698, 1459, 1158, 7822, 3050, 3372, 2877, # 6726 + 1292, 1929, 2506, 2842, 3701, 1985, 1187, 2071, 2014, 2607, 4217, 7823, 2566, 2507, 2169, 3702, # 6742 + 2483, 3299, 7824, 3703, 4501, 7825, 7826, 666, 1003, 3005, 1022, 3579, 4218, 7827, 4502, 1813, # 6758 + 2253, 574, 3822, 1603, 295, 1535, 705, 3823, 4219, 283, 858, 417, 7828, 7829, 3224, 4503, # 6774 + 4504, 3051, 1220, 1889, 1046, 2276, 2456, 4004, 1393, 1599, 689, 2567, 388, 4220, 7830, 2484, # 6790 + 802, 7831, 2798, 3824, 2060, 1405, 2254, 7832, 4505, 3825, 2109, 1052, 1345, 3225, 1585, 7833, # 6806 + 809, 7834, 7835, 7836, 575, 2730, 3477, 956, 1552, 1469, 1144, 2323, 7837, 2324, 1560, 2457, # 6822 + 3580, 3226, 4005, 616, 2207, 3155, 2180, 2289, 7838, 1832, 7839, 3478, 4506, 7840, 1319, 3704, # 6838 + 3705, 1211, 3581, 1023, 3227, 1293, 2799, 7841, 7842, 7843, 3826, 607, 2306, 3827, 762, 2878, # 6854 + 1439, 4221, 1360, 7844, 1485, 3052, 7845, 4507, 1038, 4222, 1450, 2061, 2638, 4223, 1379, 4508, # 6870 + 2585, 7846, 7847, 4224, 1352, 1414, 2325, 2921, 1172, 7848, 7849, 3828, 3829, 7850, 1797, 1451, # 6886 + 7851, 7852, 7853, 7854, 2922, 4006, 4007, 2485, 2346, 411, 4008, 4009, 3582, 3300, 3101, 4509, # 6902 + 1561, 2664, 1452, 4010, 1375, 7855, 7856, 47, 2959, 316, 7857, 1406, 1591, 2923, 3156, 7858, # 6918 + 1025, 2141, 3102, 3157, 354, 2731, 884, 2224, 4225, 2407, 508, 3706, 726, 3583, 996, 2428, # 6934 + 3584, 729, 7859, 392, 2191, 1453, 4011, 4510, 3707, 7860, 7861, 2458, 3585, 2608, 1675, 2800, # 6950 + 919, 2347, 2960, 2348, 1270, 4511, 4012, 73, 7862, 7863, 647, 7864, 3228, 2843, 2255, 1550, # 6966 + 1346, 3006, 7865, 1332, 883, 3479, 7866, 7867, 7868, 7869, 3301, 2765, 7870, 1212, 831, 1347, # 6982 + 4226, 4512, 2326, 3830, 1863, 3053, 720, 3831, 4513, 4514, 3832, 7871, 4227, 7872, 7873, 4515, # 6998 + 7874, 7875, 1798, 4516, 3708, 2609, 4517, 3586, 1645, 2371, 7876, 7877, 2924, 669, 2208, 2665, # 7014 + 2429, 7878, 2879, 7879, 7880, 1028, 3229, 7881, 4228, 2408, 7882, 2256, 1353, 7883, 7884, 4518, # 7030 + 3158, 518, 7885, 4013, 7886, 4229, 1960, 7887, 2142, 4230, 7888, 7889, 3007, 2349, 2350, 3833, # 7046 + 516, 1833, 1454, 4014, 2699, 4231, 4519, 2225, 2610, 1971, 1129, 3587, 7890, 2766, 7891, 2961, # 7062 + 1422, 577, 1470, 3008, 1524, 3373, 7892, 7893, 432, 4232, 3054, 3480, 7894, 2586, 1455, 2508, # 7078 + 2226, 1972, 1175, 7895, 1020, 2732, 4015, 3481, 4520, 7896, 2733, 7897, 1743, 1361, 3055, 3482, # 7094 + 2639, 4016, 4233, 4521, 2290, 895, 924, 4234, 2170, 331, 2243, 3056, 166, 1627, 3057, 1098, # 7110 + 7898, 1232, 2880, 2227, 3374, 4522, 657, 403, 1196, 2372, 542, 3709, 3375, 1600, 4235, 3483, # 7126 + 7899, 4523, 2767, 3230, 576, 530, 1362, 7900, 4524, 2533, 2666, 3710, 4017, 7901, 842, 3834, # 7142 + 7902, 2801, 2031, 1014, 4018, 213, 2700, 3376, 665, 621, 4236, 7903, 3711, 2925, 2430, 7904, # 7158 + 2431, 3302, 3588, 3377, 7905, 4237, 2534, 4238, 4525, 3589, 1682, 4239, 3484, 1380, 7906, 724, # 7174 + 2277, 600, 1670, 7907, 1337, 1233, 4526, 3103, 2244, 7908, 1621, 4527, 7909, 651, 4240, 7910, # 7190 + 1612, 4241, 2611, 7911, 2844, 7912, 2734, 2307, 3058, 7913, 716, 2459, 3059, 174, 1255, 2701, # 7206 + 4019, 3590, 548, 1320, 1398, 728, 4020, 1574, 7914, 1890, 1197, 3060, 4021, 7915, 3061, 3062, # 7222 + 3712, 3591, 3713, 747, 7916, 635, 4242, 4528, 7917, 7918, 7919, 4243, 7920, 7921, 4529, 7922, # 7238 + 3378, 4530, 2432, 451, 7923, 3714, 2535, 2072, 4244, 2735, 4245, 4022, 7924, 1764, 4531, 7925, # 7254 + 4246, 350, 7926, 2278, 2390, 2486, 7927, 4247, 4023, 2245, 1434, 4024, 488, 4532, 458, 4248, # 7270 + 4025, 3715, 771, 1330, 2391, 3835, 2568, 3159, 2159, 2409, 1553, 2667, 3160, 4249, 7928, 2487, # 7286 + 2881, 2612, 1720, 2702, 4250, 3379, 4533, 7929, 2536, 4251, 7930, 3231, 4252, 2768, 7931, 2015, # 7302 + 2736, 7932, 1155, 1017, 3716, 3836, 7933, 3303, 2308, 201, 1864, 4253, 1430, 7934, 4026, 7935, # 7318 + 7936, 7937, 7938, 7939, 4254, 1604, 7940, 414, 1865, 371, 2587, 4534, 4535, 3485, 2016, 3104, # 7334 + 4536, 1708, 960, 4255, 887, 389, 2171, 1536, 1663, 1721, 7941, 2228, 4027, 2351, 2926, 1580, # 7350 + 7942, 7943, 7944, 1744, 7945, 2537, 4537, 4538, 7946, 4539, 7947, 2073, 7948, 7949, 3592, 3380, # 7366 + 2882, 4256, 7950, 4257, 2640, 3381, 2802, 673, 2703, 2460, 709, 3486, 4028, 3593, 4258, 7951, # 7382 + 1148, 502, 634, 7952, 7953, 1204, 4540, 3594, 1575, 4541, 2613, 3717, 7954, 3718, 3105, 948, # 7398 + 3232, 121, 1745, 3837, 1110, 7955, 4259, 3063, 2509, 3009, 4029, 3719, 1151, 1771, 3838, 1488, # 7414 + 4030, 1986, 7956, 2433, 3487, 7957, 7958, 2093, 7959, 4260, 3839, 1213, 1407, 2803, 531, 2737, # 7430 + 2538, 3233, 1011, 1537, 7960, 2769, 4261, 3106, 1061, 7961, 3720, 3721, 1866, 2883, 7962, 2017, # 7446 + 120, 4262, 4263, 2062, 3595, 3234, 2309, 3840, 2668, 3382, 1954, 4542, 7963, 7964, 3488, 1047, # 7462 + 2704, 1266, 7965, 1368, 4543, 2845, 649, 3383, 3841, 2539, 2738, 1102, 2846, 2669, 7966, 7967, # 7478 + 1999, 7968, 1111, 3596, 2962, 7969, 2488, 3842, 3597, 2804, 1854, 3384, 3722, 7970, 7971, 3385, # 7494 + 2410, 2884, 3304, 3235, 3598, 7972, 2569, 7973, 3599, 2805, 4031, 1460, 856, 7974, 3600, 7975, # 7510 + 2885, 2963, 7976, 2886, 3843, 7977, 4264, 632, 2510, 875, 3844, 1697, 3845, 2291, 7978, 7979, # 7526 + 4544, 3010, 1239, 580, 4545, 4265, 7980, 914, 936, 2074, 1190, 4032, 1039, 2123, 7981, 7982, # 7542 + 7983, 3386, 1473, 7984, 1354, 4266, 3846, 7985, 2172, 3064, 4033, 915, 3305, 4267, 4268, 3306, # 7558 + 1605, 1834, 7986, 2739, 398, 3601, 4269, 3847, 4034, 328, 1912, 2847, 4035, 3848, 1331, 4270, # 7574 + 3011, 937, 4271, 7987, 3602, 4036, 4037, 3387, 2160, 4546, 3388, 524, 742, 538, 3065, 1012, # 7590 + 7988, 7989, 3849, 2461, 7990, 658, 1103, 225, 3850, 7991, 7992, 4547, 7993, 4548, 7994, 3236, # 7606 + 1243, 7995, 4038, 963, 2246, 4549, 7996, 2705, 3603, 3161, 7997, 7998, 2588, 2327, 7999, 4550, # 7622 + 8000, 8001, 8002, 3489, 3307, 957, 3389, 2540, 2032, 1930, 2927, 2462, 870, 2018, 3604, 1746, # 7638 + 2770, 2771, 2434, 2463, 8003, 3851, 8004, 3723, 3107, 3724, 3490, 3390, 3725, 8005, 1179, 3066, # 7654 + 8006, 3162, 2373, 4272, 3726, 2541, 3163, 3108, 2740, 4039, 8007, 3391, 1556, 2542, 2292, 977, # 7670 + 2887, 2033, 4040, 1205, 3392, 8008, 1765, 3393, 3164, 2124, 1271, 1689, 714, 4551, 3491, 8009, # 7686 + 2328, 3852, 533, 4273, 3605, 2181, 617, 8010, 2464, 3308, 3492, 2310, 8011, 8012, 3165, 8013, # 7702 + 8014, 3853, 1987, 618, 427, 2641, 3493, 3394, 8015, 8016, 1244, 1690, 8017, 2806, 4274, 4552, # 7718 + 8018, 3494, 8019, 8020, 2279, 1576, 473, 3606, 4275, 3395, 972, 8021, 3607, 8022, 3067, 8023, # 7734 + 8024, 4553, 4554, 8025, 3727, 4041, 4042, 8026, 153, 4555, 356, 8027, 1891, 2888, 4276, 2143, # 7750 + 408, 803, 2352, 8028, 3854, 8029, 4277, 1646, 2570, 2511, 4556, 4557, 3855, 8030, 3856, 4278, # 7766 + 8031, 2411, 3396, 752, 8032, 8033, 1961, 2964, 8034, 746, 3012, 2465, 8035, 4279, 3728, 698, # 7782 + 4558, 1892, 4280, 3608, 2543, 4559, 3609, 3857, 8036, 3166, 3397, 8037, 1823, 1302, 4043, 2706, # 7798 + 3858, 1973, 4281, 8038, 4282, 3167, 823, 1303, 1288, 1236, 2848, 3495, 4044, 3398, 774, 3859, # 7814 + 8039, 1581, 4560, 1304, 2849, 3860, 4561, 8040, 2435, 2161, 1083, 3237, 4283, 4045, 4284, 344, # 7830 + 1173, 288, 2311, 454, 1683, 8041, 8042, 1461, 4562, 4046, 2589, 8043, 8044, 4563, 985, 894, # 7846 + 8045, 3399, 3168, 8046, 1913, 2928, 3729, 1988, 8047, 2110, 1974, 8048, 4047, 8049, 2571, 1194, # 7862 + 425, 8050, 4564, 3169, 1245, 3730, 4285, 8051, 8052, 2850, 8053, 636, 4565, 1855, 3861, 760, # 7878 + 1799, 8054, 4286, 2209, 1508, 4566, 4048, 1893, 1684, 2293, 8055, 8056, 8057, 4287, 4288, 2210, # 7894 + 479, 8058, 8059, 832, 8060, 4049, 2489, 8061, 2965, 2490, 3731, 990, 3109, 627, 1814, 2642, # 7910 + 4289, 1582, 4290, 2125, 2111, 3496, 4567, 8062, 799, 4291, 3170, 8063, 4568, 2112, 1737, 3013, # 7926 + 1018, 543, 754, 4292, 3309, 1676, 4569, 4570, 4050, 8064, 1489, 8065, 3497, 8066, 2614, 2889, # 7942 + 4051, 8067, 8068, 2966, 8069, 8070, 8071, 8072, 3171, 4571, 4572, 2182, 1722, 8073, 3238, 3239, # 7958 + 1842, 3610, 1715, 481, 365, 1975, 1856, 8074, 8075, 1962, 2491, 4573, 8076, 2126, 3611, 3240, # 7974 + 433, 1894, 2063, 2075, 8077, 602, 2741, 8078, 8079, 8080, 8081, 8082, 3014, 1628, 3400, 8083, # 7990 + 3172, 4574, 4052, 2890, 4575, 2512, 8084, 2544, 2772, 8085, 8086, 8087, 3310, 4576, 2891, 8088, # 8006 + 4577, 8089, 2851, 4578, 4579, 1221, 2967, 4053, 2513, 8090, 8091, 8092, 1867, 1989, 8093, 8094, # 8022 + 8095, 1895, 8096, 8097, 4580, 1896, 4054, 318, 8098, 2094, 4055, 4293, 8099, 8100, 485, 8101, # 8038 + 938, 3862, 553, 2670, 116, 8102, 3863, 3612, 8103, 3498, 2671, 2773, 3401, 3311, 2807, 8104, # 8054 + 3613, 2929, 4056, 1747, 2930, 2968, 8105, 8106, 207, 8107, 8108, 2672, 4581, 2514, 8109, 3015, # 8070 + 890, 3614, 3864, 8110, 1877, 3732, 3402, 8111, 2183, 2353, 3403, 1652, 8112, 8113, 8114, 941, # 8086 + 2294, 208, 3499, 4057, 2019, 330, 4294, 3865, 2892, 2492, 3733, 4295, 8115, 8116, 8117, 8118, # 8102 +) +# fmt: on diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/euctwprober.py b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/euctwprober.py new file mode 100644 index 0000000..a37ab18 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/euctwprober.py @@ -0,0 +1,47 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from .chardistribution import EUCTWDistributionAnalysis +from .codingstatemachine import CodingStateMachine +from .mbcharsetprober import MultiByteCharSetProber +from .mbcssm import EUCTW_SM_MODEL + + +class EUCTWProber(MultiByteCharSetProber): + def __init__(self) -> None: + super().__init__() + self.coding_sm = CodingStateMachine(EUCTW_SM_MODEL) + self.distribution_analyzer = EUCTWDistributionAnalysis() + self.reset() + + @property + def charset_name(self) -> str: + return "EUC-TW" + + @property + def language(self) -> str: + return "Taiwan" diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/gb2312freq.py b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/gb2312freq.py new file mode 100644 index 0000000..b32bfc7 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/gb2312freq.py @@ -0,0 +1,284 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Communicator client code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +# GB2312 most frequently used character table +# +# Char to FreqOrder table , from hz6763 + +# 512 --> 0.79 -- 0.79 +# 1024 --> 0.92 -- 0.13 +# 2048 --> 0.98 -- 0.06 +# 6768 --> 1.00 -- 0.02 +# +# Ideal Distribution Ratio = 0.79135/(1-0.79135) = 3.79 +# Random Distribution Ration = 512 / (3755 - 512) = 0.157 +# +# Typical Distribution Ratio about 25% of Ideal one, still much higher that RDR + +GB2312_TYPICAL_DISTRIBUTION_RATIO = 0.9 + +GB2312_TABLE_SIZE = 3760 + +# fmt: off +GB2312_CHAR_TO_FREQ_ORDER = ( +1671, 749,1443,2364,3924,3807,2330,3921,1704,3463,2691,1511,1515, 572,3191,2205, +2361, 224,2558, 479,1711, 963,3162, 440,4060,1905,2966,2947,3580,2647,3961,3842, +2204, 869,4207, 970,2678,5626,2944,2956,1479,4048, 514,3595, 588,1346,2820,3409, + 249,4088,1746,1873,2047,1774, 581,1813, 358,1174,3590,1014,1561,4844,2245, 670, +1636,3112, 889,1286, 953, 556,2327,3060,1290,3141, 613, 185,3477,1367, 850,3820, +1715,2428,2642,2303,2732,3041,2562,2648,3566,3946,1349, 388,3098,2091,1360,3585, + 152,1687,1539, 738,1559, 59,1232,2925,2267,1388,1249,1741,1679,2960, 151,1566, +1125,1352,4271, 924,4296, 385,3166,4459, 310,1245,2850, 70,3285,2729,3534,3575, +2398,3298,3466,1960,2265, 217,3647, 864,1909,2084,4401,2773,1010,3269,5152, 853, +3051,3121,1244,4251,1895, 364,1499,1540,2313,1180,3655,2268, 562, 715,2417,3061, + 544, 336,3768,2380,1752,4075, 950, 280,2425,4382, 183,2759,3272, 333,4297,2155, +1688,2356,1444,1039,4540, 736,1177,3349,2443,2368,2144,2225, 565, 196,1482,3406, + 927,1335,4147, 692, 878,1311,1653,3911,3622,1378,4200,1840,2969,3149,2126,1816, +2534,1546,2393,2760, 737,2494, 13, 447, 245,2747, 38,2765,2129,2589,1079, 606, + 360, 471,3755,2890, 404, 848, 699,1785,1236, 370,2221,1023,3746,2074,2026,2023, +2388,1581,2119, 812,1141,3091,2536,1519, 804,2053, 406,1596,1090, 784, 548,4414, +1806,2264,2936,1100, 343,4114,5096, 622,3358, 743,3668,1510,1626,5020,3567,2513, +3195,4115,5627,2489,2991, 24,2065,2697,1087,2719, 48,1634, 315, 68, 985,2052, + 198,2239,1347,1107,1439, 597,2366,2172, 871,3307, 919,2487,2790,1867, 236,2570, +1413,3794, 906,3365,3381,1701,1982,1818,1524,2924,1205, 616,2586,2072,2004, 575, + 253,3099, 32,1365,1182, 197,1714,2454,1201, 554,3388,3224,2748, 756,2587, 250, +2567,1507,1517,3529,1922,2761,2337,3416,1961,1677,2452,2238,3153, 615, 911,1506, +1474,2495,1265,1906,2749,3756,3280,2161, 898,2714,1759,3450,2243,2444, 563, 26, +3286,2266,3769,3344,2707,3677, 611,1402, 531,1028,2871,4548,1375, 261,2948, 835, +1190,4134, 353, 840,2684,1900,3082,1435,2109,1207,1674, 329,1872,2781,4055,2686, +2104, 608,3318,2423,2957,2768,1108,3739,3512,3271,3985,2203,1771,3520,1418,2054, +1681,1153, 225,1627,2929, 162,2050,2511,3687,1954, 124,1859,2431,1684,3032,2894, + 585,4805,3969,2869,2704,2088,2032,2095,3656,2635,4362,2209, 256, 518,2042,2105, +3777,3657, 643,2298,1148,1779, 190, 989,3544, 414, 11,2135,2063,2979,1471, 403, +3678, 126, 770,1563, 671,2499,3216,2877, 600,1179, 307,2805,4937,1268,1297,2694, + 252,4032,1448,1494,1331,1394, 127,2256, 222,1647,1035,1481,3056,1915,1048, 873, +3651, 210, 33,1608,2516, 200,1520, 415, 102, 0,3389,1287, 817, 91,3299,2940, + 836,1814, 549,2197,1396,1669,2987,3582,2297,2848,4528,1070, 687, 20,1819, 121, +1552,1364,1461,1968,2617,3540,2824,2083, 177, 948,4938,2291, 110,4549,2066, 648, +3359,1755,2110,2114,4642,4845,1693,3937,3308,1257,1869,2123, 208,1804,3159,2992, +2531,2549,3361,2418,1350,2347,2800,2568,1291,2036,2680, 72, 842,1990, 212,1233, +1154,1586, 75,2027,3410,4900,1823,1337,2710,2676, 728,2810,1522,3026,4995, 157, + 755,1050,4022, 710, 785,1936,2194,2085,1406,2777,2400, 150,1250,4049,1206, 807, +1910, 534, 529,3309,1721,1660, 274, 39,2827, 661,2670,1578, 925,3248,3815,1094, +4278,4901,4252, 41,1150,3747,2572,2227,4501,3658,4902,3813,3357,3617,2884,2258, + 887, 538,4187,3199,1294,2439,3042,2329,2343,2497,1255, 107, 543,1527, 521,3478, +3568, 194,5062, 15, 961,3870,1241,1192,2664, 66,5215,3260,2111,1295,1127,2152, +3805,4135, 901,1164,1976, 398,1278, 530,1460, 748, 904,1054,1966,1426, 53,2909, + 509, 523,2279,1534, 536,1019, 239,1685, 460,2353, 673,1065,2401,3600,4298,2272, +1272,2363, 284,1753,3679,4064,1695, 81, 815,2677,2757,2731,1386, 859, 500,4221, +2190,2566, 757,1006,2519,2068,1166,1455, 337,2654,3203,1863,1682,1914,3025,1252, +1409,1366, 847, 714,2834,2038,3209, 964,2970,1901, 885,2553,1078,1756,3049, 301, +1572,3326, 688,2130,1996,2429,1805,1648,2930,3421,2750,3652,3088, 262,1158,1254, + 389,1641,1812, 526,1719, 923,2073,1073,1902, 468, 489,4625,1140, 857,2375,3070, +3319,2863, 380, 116,1328,2693,1161,2244, 273,1212,1884,2769,3011,1775,1142, 461, +3066,1200,2147,2212, 790, 702,2695,4222,1601,1058, 434,2338,5153,3640, 67,2360, +4099,2502, 618,3472,1329, 416,1132, 830,2782,1807,2653,3211,3510,1662, 192,2124, + 296,3979,1739,1611,3684, 23, 118, 324, 446,1239,1225, 293,2520,3814,3795,2535, +3116, 17,1074, 467,2692,2201, 387,2922, 45,1326,3055,1645,3659,2817, 958, 243, +1903,2320,1339,2825,1784,3289, 356, 576, 865,2315,2381,3377,3916,1088,3122,1713, +1655, 935, 628,4689,1034,1327, 441, 800, 720, 894,1979,2183,1528,5289,2702,1071, +4046,3572,2399,1571,3281, 79, 761,1103, 327, 134, 758,1899,1371,1615, 879, 442, + 215,2605,2579, 173,2048,2485,1057,2975,3317,1097,2253,3801,4263,1403,1650,2946, + 814,4968,3487,1548,2644,1567,1285, 2, 295,2636, 97, 946,3576, 832, 141,4257, +3273, 760,3821,3521,3156,2607, 949,1024,1733,1516,1803,1920,2125,2283,2665,3180, +1501,2064,3560,2171,1592, 803,3518,1416, 732,3897,4258,1363,1362,2458, 119,1427, + 602,1525,2608,1605,1639,3175, 694,3064, 10, 465, 76,2000,4846,4208, 444,3781, +1619,3353,2206,1273,3796, 740,2483, 320,1723,2377,3660,2619,1359,1137,1762,1724, +2345,2842,1850,1862, 912, 821,1866, 612,2625,1735,2573,3369,1093, 844, 89, 937, + 930,1424,3564,2413,2972,1004,3046,3019,2011, 711,3171,1452,4178, 428, 801,1943, + 432, 445,2811, 206,4136,1472, 730, 349, 73, 397,2802,2547, 998,1637,1167, 789, + 396,3217, 154,1218, 716,1120,1780,2819,4826,1931,3334,3762,2139,1215,2627, 552, +3664,3628,3232,1405,2383,3111,1356,2652,3577,3320,3101,1703, 640,1045,1370,1246, +4996, 371,1575,2436,1621,2210, 984,4033,1734,2638, 16,4529, 663,2755,3255,1451, +3917,2257,1253,1955,2234,1263,2951, 214,1229, 617, 485, 359,1831,1969, 473,2310, + 750,2058, 165, 80,2864,2419, 361,4344,2416,2479,1134, 796,3726,1266,2943, 860, +2715, 938, 390,2734,1313,1384, 248, 202, 877,1064,2854, 522,3907, 279,1602, 297, +2357, 395,3740, 137,2075, 944,4089,2584,1267,3802, 62,1533,2285, 178, 176, 780, +2440, 201,3707, 590, 478,1560,4354,2117,1075, 30, 74,4643,4004,1635,1441,2745, + 776,2596, 238,1077,1692,1912,2844, 605, 499,1742,3947, 241,3053, 980,1749, 936, +2640,4511,2582, 515,1543,2162,5322,2892,2993, 890,2148,1924, 665,1827,3581,1032, + 968,3163, 339,1044,1896, 270, 583,1791,1720,4367,1194,3488,3669, 43,2523,1657, + 163,2167, 290,1209,1622,3378, 550, 634,2508,2510, 695,2634,2384,2512,1476,1414, + 220,1469,2341,2138,2852,3183,2900,4939,2865,3502,1211,3680, 854,3227,1299,2976, +3172, 186,2998,1459, 443,1067,3251,1495, 321,1932,3054, 909, 753,1410,1828, 436, +2441,1119,1587,3164,2186,1258, 227, 231,1425,1890,3200,3942, 247, 959, 725,5254, +2741, 577,2158,2079, 929, 120, 174, 838,2813, 591,1115, 417,2024, 40,3240,1536, +1037, 291,4151,2354, 632,1298,2406,2500,3535,1825,1846,3451, 205,1171, 345,4238, + 18,1163, 811, 685,2208,1217, 425,1312,1508,1175,4308,2552,1033, 587,1381,3059, +2984,3482, 340,1316,4023,3972, 792,3176, 519, 777,4690, 918, 933,4130,2981,3741, + 90,3360,2911,2200,5184,4550, 609,3079,2030, 272,3379,2736, 363,3881,1130,1447, + 286, 779, 357,1169,3350,3137,1630,1220,2687,2391, 747,1277,3688,2618,2682,2601, +1156,3196,5290,4034,3102,1689,3596,3128, 874, 219,2783, 798, 508,1843,2461, 269, +1658,1776,1392,1913,2983,3287,2866,2159,2372, 829,4076, 46,4253,2873,1889,1894, + 915,1834,1631,2181,2318, 298, 664,2818,3555,2735, 954,3228,3117, 527,3511,2173, + 681,2712,3033,2247,2346,3467,1652, 155,2164,3382, 113,1994, 450, 899, 494, 994, +1237,2958,1875,2336,1926,3727, 545,1577,1550, 633,3473, 204,1305,3072,2410,1956, +2471, 707,2134, 841,2195,2196,2663,3843,1026,4940, 990,3252,4997, 368,1092, 437, +3212,3258,1933,1829, 675,2977,2893, 412, 943,3723,4644,3294,3283,2230,2373,5154, +2389,2241,2661,2323,1404,2524, 593, 787, 677,3008,1275,2059, 438,2709,2609,2240, +2269,2246,1446, 36,1568,1373,3892,1574,2301,1456,3962, 693,2276,5216,2035,1143, +2720,1919,1797,1811,2763,4137,2597,1830,1699,1488,1198,2090, 424,1694, 312,3634, +3390,4179,3335,2252,1214, 561,1059,3243,2295,2561, 975,5155,2321,2751,3772, 472, +1537,3282,3398,1047,2077,2348,2878,1323,3340,3076, 690,2906, 51, 369, 170,3541, +1060,2187,2688,3670,2541,1083,1683, 928,3918, 459, 109,4427, 599,3744,4286, 143, +2101,2730,2490, 82,1588,3036,2121, 281,1860, 477,4035,1238,2812,3020,2716,3312, +1530,2188,2055,1317, 843, 636,1808,1173,3495, 649, 181,1002, 147,3641,1159,2414, +3750,2289,2795, 813,3123,2610,1136,4368, 5,3391,4541,2174, 420, 429,1728, 754, +1228,2115,2219, 347,2223,2733, 735,1518,3003,2355,3134,1764,3948,3329,1888,2424, +1001,1234,1972,3321,3363,1672,1021,1450,1584, 226, 765, 655,2526,3404,3244,2302, +3665, 731, 594,2184, 319,1576, 621, 658,2656,4299,2099,3864,1279,2071,2598,2739, + 795,3086,3699,3908,1707,2352,2402,1382,3136,2475,1465,4847,3496,3865,1085,3004, +2591,1084, 213,2287,1963,3565,2250, 822, 793,4574,3187,1772,1789,3050, 595,1484, +1959,2770,1080,2650, 456, 422,2996, 940,3322,4328,4345,3092,2742, 965,2784, 739, +4124, 952,1358,2498,2949,2565, 332,2698,2378, 660,2260,2473,4194,3856,2919, 535, +1260,2651,1208,1428,1300,1949,1303,2942, 433,2455,2450,1251,1946, 614,1269, 641, +1306,1810,2737,3078,2912, 564,2365,1419,1415,1497,4460,2367,2185,1379,3005,1307, +3218,2175,1897,3063, 682,1157,4040,4005,1712,1160,1941,1399, 394, 402,2952,1573, +1151,2986,2404, 862, 299,2033,1489,3006, 346, 171,2886,3401,1726,2932, 168,2533, + 47,2507,1030,3735,1145,3370,1395,1318,1579,3609,4560,2857,4116,1457,2529,1965, + 504,1036,2690,2988,2405, 745,5871, 849,2397,2056,3081, 863,2359,3857,2096, 99, +1397,1769,2300,4428,1643,3455,1978,1757,3718,1440, 35,4879,3742,1296,4228,2280, + 160,5063,1599,2013, 166, 520,3479,1646,3345,3012, 490,1937,1545,1264,2182,2505, +1096,1188,1369,1436,2421,1667,2792,2460,1270,2122, 727,3167,2143, 806,1706,1012, +1800,3037, 960,2218,1882, 805, 139,2456,1139,1521, 851,1052,3093,3089, 342,2039, + 744,5097,1468,1502,1585,2087, 223, 939, 326,2140,2577, 892,2481,1623,4077, 982, +3708, 135,2131, 87,2503,3114,2326,1106, 876,1616, 547,2997,2831,2093,3441,4530, +4314, 9,3256,4229,4148, 659,1462,1986,1710,2046,2913,2231,4090,4880,5255,3392, +3274,1368,3689,4645,1477, 705,3384,3635,1068,1529,2941,1458,3782,1509, 100,1656, +2548, 718,2339, 408,1590,2780,3548,1838,4117,3719,1345,3530, 717,3442,2778,3220, +2898,1892,4590,3614,3371,2043,1998,1224,3483, 891, 635, 584,2559,3355, 733,1766, +1729,1172,3789,1891,2307, 781,2982,2271,1957,1580,5773,2633,2005,4195,3097,1535, +3213,1189,1934,5693,3262, 586,3118,1324,1598, 517,1564,2217,1868,1893,4445,3728, +2703,3139,1526,1787,1992,3882,2875,1549,1199,1056,2224,1904,2711,5098,4287, 338, +1993,3129,3489,2689,1809,2815,1997, 957,1855,3898,2550,3275,3057,1105,1319, 627, +1505,1911,1883,3526, 698,3629,3456,1833,1431, 746, 77,1261,2017,2296,1977,1885, + 125,1334,1600, 525,1798,1109,2222,1470,1945, 559,2236,1186,3443,2476,1929,1411, +2411,3135,1777,3372,2621,1841,1613,3229, 668,1430,1839,2643,2916, 195,1989,2671, +2358,1387, 629,3205,2293,5256,4439, 123,1310, 888,1879,4300,3021,3605,1003,1162, +3192,2910,2010, 140,2395,2859, 55,1082,2012,2901, 662, 419,2081,1438, 680,2774, +4654,3912,1620,1731,1625,5035,4065,2328, 512,1344, 802,5443,2163,2311,2537, 524, +3399, 98,1155,2103,1918,2606,3925,2816,1393,2465,1504,3773,2177,3963,1478,4346, + 180,1113,4655,3461,2028,1698, 833,2696,1235,1322,1594,4408,3623,3013,3225,2040, +3022, 541,2881, 607,3632,2029,1665,1219, 639,1385,1686,1099,2803,3231,1938,3188, +2858, 427, 676,2772,1168,2025, 454,3253,2486,3556, 230,1950, 580, 791,1991,1280, +1086,1974,2034, 630, 257,3338,2788,4903,1017, 86,4790, 966,2789,1995,1696,1131, + 259,3095,4188,1308, 179,1463,5257, 289,4107,1248, 42,3413,1725,2288, 896,1947, + 774,4474,4254, 604,3430,4264, 392,2514,2588, 452, 237,1408,3018, 988,4531,1970, +3034,3310, 540,2370,1562,1288,2990, 502,4765,1147, 4,1853,2708, 207, 294,2814, +4078,2902,2509, 684, 34,3105,3532,2551, 644, 709,2801,2344, 573,1727,3573,3557, +2021,1081,3100,4315,2100,3681, 199,2263,1837,2385, 146,3484,1195,2776,3949, 997, +1939,3973,1008,1091,1202,1962,1847,1149,4209,5444,1076, 493, 117,5400,2521, 972, +1490,2934,1796,4542,2374,1512,2933,2657, 413,2888,1135,2762,2314,2156,1355,2369, + 766,2007,2527,2170,3124,2491,2593,2632,4757,2437, 234,3125,3591,1898,1750,1376, +1942,3468,3138, 570,2127,2145,3276,4131, 962, 132,1445,4196, 19, 941,3624,3480, +3366,1973,1374,4461,3431,2629, 283,2415,2275, 808,2887,3620,2112,2563,1353,3610, + 955,1089,3103,1053, 96, 88,4097, 823,3808,1583, 399, 292,4091,3313, 421,1128, + 642,4006, 903,2539,1877,2082, 596, 29,4066,1790, 722,2157, 130, 995,1569, 769, +1485, 464, 513,2213, 288,1923,1101,2453,4316, 133, 486,2445, 50, 625, 487,2207, + 57, 423, 481,2962, 159,3729,1558, 491, 303, 482, 501, 240,2837, 112,3648,2392, +1783, 362, 8,3433,3422, 610,2793,3277,1390,1284,1654, 21,3823, 734, 367, 623, + 193, 287, 374,1009,1483, 816, 476, 313,2255,2340,1262,2150,2899,1146,2581, 782, +2116,1659,2018,1880, 255,3586,3314,1110,2867,2137,2564, 986,2767,5185,2006, 650, + 158, 926, 762, 881,3157,2717,2362,3587, 306,3690,3245,1542,3077,2427,1691,2478, +2118,2985,3490,2438, 539,2305, 983, 129,1754, 355,4201,2386, 827,2923, 104,1773, +2838,2771, 411,2905,3919, 376, 767, 122,1114, 828,2422,1817,3506, 266,3460,1007, +1609,4998, 945,2612,4429,2274, 726,1247,1964,2914,2199,2070,4002,4108, 657,3323, +1422, 579, 455,2764,4737,1222,2895,1670, 824,1223,1487,2525, 558, 861,3080, 598, +2659,2515,1967, 752,2583,2376,2214,4180, 977, 704,2464,4999,2622,4109,1210,2961, + 819,1541, 142,2284, 44, 418, 457,1126,3730,4347,4626,1644,1876,3671,1864, 302, +1063,5694, 624, 723,1984,3745,1314,1676,2488,1610,1449,3558,3569,2166,2098, 409, +1011,2325,3704,2306, 818,1732,1383,1824,1844,3757, 999,2705,3497,1216,1423,2683, +2426,2954,2501,2726,2229,1475,2554,5064,1971,1794,1666,2014,1343, 783, 724, 191, +2434,1354,2220,5065,1763,2752,2472,4152, 131, 175,2885,3434, 92,1466,4920,2616, +3871,3872,3866, 128,1551,1632, 669,1854,3682,4691,4125,1230, 188,2973,3290,1302, +1213, 560,3266, 917, 763,3909,3249,1760, 868,1958, 764,1782,2097, 145,2277,3774, +4462, 64,1491,3062, 971,2132,3606,2442, 221,1226,1617, 218, 323,1185,3207,3147, + 571, 619,1473,1005,1744,2281, 449,1887,2396,3685, 275, 375,3816,1743,3844,3731, + 845,1983,2350,4210,1377, 773, 967,3499,3052,3743,2725,4007,1697,1022,3943,1464, +3264,2855,2722,1952,1029,2839,2467, 84,4383,2215, 820,1391,2015,2448,3672, 377, +1948,2168, 797,2545,3536,2578,2645, 94,2874,1678, 405,1259,3071, 771, 546,1315, + 470,1243,3083, 895,2468, 981, 969,2037, 846,4181, 653,1276,2928, 14,2594, 557, +3007,2474, 156, 902,1338,1740,2574, 537,2518, 973,2282,2216,2433,1928, 138,2903, +1293,2631,1612, 646,3457, 839,2935, 111, 496,2191,2847, 589,3186, 149,3994,2060, +4031,2641,4067,3145,1870, 37,3597,2136,1025,2051,3009,3383,3549,1121,1016,3261, +1301, 251,2446,2599,2153, 872,3246, 637, 334,3705, 831, 884, 921,3065,3140,4092, +2198,1944, 246,2964, 108,2045,1152,1921,2308,1031, 203,3173,4170,1907,3890, 810, +1401,2003,1690, 506, 647,1242,2828,1761,1649,3208,2249,1589,3709,2931,5156,1708, + 498, 666,2613, 834,3817,1231, 184,2851,1124, 883,3197,2261,3710,1765,1553,2658, +1178,2639,2351, 93,1193, 942,2538,2141,4402, 235,1821, 870,1591,2192,1709,1871, +3341,1618,4126,2595,2334, 603, 651, 69, 701, 268,2662,3411,2555,1380,1606, 503, + 448, 254,2371,2646, 574,1187,2309,1770, 322,2235,1292,1801, 305, 566,1133, 229, +2067,2057, 706, 167, 483,2002,2672,3295,1820,3561,3067, 316, 378,2746,3452,1112, + 136,1981, 507,1651,2917,1117, 285,4591, 182,2580,3522,1304, 335,3303,1835,2504, +1795,1792,2248, 674,1018,2106,2449,1857,2292,2845, 976,3047,1781,2600,2727,1389, +1281, 52,3152, 153, 265,3950, 672,3485,3951,4463, 430,1183, 365, 278,2169, 27, +1407,1336,2304, 209,1340,1730,2202,1852,2403,2883, 979,1737,1062, 631,2829,2542, +3876,2592, 825,2086,2226,3048,3625, 352,1417,3724, 542, 991, 431,1351,3938,1861, +2294, 826,1361,2927,3142,3503,1738, 463,2462,2723, 582,1916,1595,2808, 400,3845, +3891,2868,3621,2254, 58,2492,1123, 910,2160,2614,1372,1603,1196,1072,3385,1700, +3267,1980, 696, 480,2430, 920, 799,1570,2920,1951,2041,4047,2540,1321,4223,2469, +3562,2228,1271,2602, 401,2833,3351,2575,5157, 907,2312,1256, 410, 263,3507,1582, + 996, 678,1849,2316,1480, 908,3545,2237, 703,2322, 667,1826,2849,1531,2604,2999, +2407,3146,2151,2630,1786,3711, 469,3542, 497,3899,2409, 858, 837,4446,3393,1274, + 786, 620,1845,2001,3311, 484, 308,3367,1204,1815,3691,2332,1532,2557,1842,2020, +2724,1927,2333,4440, 567, 22,1673,2728,4475,1987,1858,1144,1597, 101,1832,3601, + 12, 974,3783,4391, 951,1412, 1,3720, 453,4608,4041, 528,1041,1027,3230,2628, +1129, 875,1051,3291,1203,2262,1069,2860,2799,2149,2615,3278, 144,1758,3040, 31, + 475,1680, 366,2685,3184, 311,1642,4008,2466,5036,1593,1493,2809, 216,1420,1668, + 233, 304,2128,3284, 232,1429,1768,1040,2008,3407,2740,2967,2543, 242,2133, 778, +1565,2022,2620, 505,2189,2756,1098,2273, 372,1614, 708, 553,2846,2094,2278, 169, +3626,2835,4161, 228,2674,3165, 809,1454,1309, 466,1705,1095, 900,3423, 880,2667, +3751,5258,2317,3109,2571,4317,2766,1503,1342, 866,4447,1118, 63,2076, 314,1881, +1348,1061, 172, 978,3515,1747, 532, 511,3970, 6, 601, 905,2699,3300,1751, 276, +1467,3725,2668, 65,4239,2544,2779,2556,1604, 578,2451,1802, 992,2331,2624,1320, +3446, 713,1513,1013, 103,2786,2447,1661, 886,1702, 916, 654,3574,2031,1556, 751, +2178,2821,2179,1498,1538,2176, 271, 914,2251,2080,1325, 638,1953,2937,3877,2432, +2754, 95,3265,1716, 260,1227,4083, 775, 106,1357,3254, 426,1607, 555,2480, 772, +1985, 244,2546, 474, 495,1046,2611,1851,2061, 71,2089,1675,2590, 742,3758,2843, +3222,1433, 267,2180,2576,2826,2233,2092,3913,2435, 956,1745,3075, 856,2113,1116, + 451, 3,1988,2896,1398, 993,2463,1878,2049,1341,2718,2721,2870,2108, 712,2904, +4363,2753,2324, 277,2872,2349,2649, 384, 987, 435, 691,3000, 922, 164,3939, 652, +1500,1184,4153,2482,3373,2165,4848,2335,3775,3508,3154,2806,2830,1554,2102,1664, +2530,1434,2408, 893,1547,2623,3447,2832,2242,2532,3169,2856,3223,2078, 49,3770, +3469, 462, 318, 656,2259,3250,3069, 679,1629,2758, 344,1138,1104,3120,1836,1283, +3115,2154,1437,4448, 934, 759,1999, 794,2862,1038, 533,2560,1722,2342, 855,2626, +1197,1663,4476,3127, 85,4240,2528, 25,1111,1181,3673, 407,3470,4561,2679,2713, + 768,1925,2841,3986,1544,1165, 932, 373,1240,2146,1930,2673, 721,4766, 354,4333, + 391,2963, 187, 61,3364,1442,1102, 330,1940,1767, 341,3809,4118, 393,2496,2062, +2211, 105, 331, 300, 439, 913,1332, 626, 379,3304,1557, 328, 689,3952, 309,1555, + 931, 317,2517,3027, 325, 569, 686,2107,3084, 60,1042,1333,2794, 264,3177,4014, +1628, 258,3712, 7,4464,1176,1043,1778, 683, 114,1975, 78,1492, 383,1886, 510, + 386, 645,5291,2891,2069,3305,4138,3867,2939,2603,2493,1935,1066,1848,3588,1015, +1282,1289,4609, 697,1453,3044,2666,3611,1856,2412, 54, 719,1330, 568,3778,2459, +1748, 788, 492, 551,1191,1000, 488,3394,3763, 282,1799, 348,2016,1523,3155,2390, +1049, 382,2019,1788,1170, 729,2968,3523, 897,3926,2785,2938,3292, 350,2319,3238, +1718,1717,2655,3453,3143,4465, 161,2889,2980,2009,1421, 56,1908,1640,2387,2232, +1917,1874,2477,4921, 148, 83,3438, 592,4245,2882,1822,1055, 741, 115,1496,1624, + 381,1638,4592,1020, 516,3214, 458, 947,4575,1432, 211,1514,2926,1865,2142, 189, + 852,1221,1400,1486, 882,2299,4036, 351, 28,1122, 700,6479,6480,6481,6482,6483, #last 512 +) +# fmt: on diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/gb2312prober.py b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/gb2312prober.py new file mode 100644 index 0000000..d423e73 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/gb2312prober.py @@ -0,0 +1,47 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from .chardistribution import GB2312DistributionAnalysis +from .codingstatemachine import CodingStateMachine +from .mbcharsetprober import MultiByteCharSetProber +from .mbcssm import GB2312_SM_MODEL + + +class GB2312Prober(MultiByteCharSetProber): + def __init__(self) -> None: + super().__init__() + self.coding_sm = CodingStateMachine(GB2312_SM_MODEL) + self.distribution_analyzer = GB2312DistributionAnalysis() + self.reset() + + @property + def charset_name(self) -> str: + return "GB2312" + + @property + def language(self) -> str: + return "Chinese" diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/hebrewprober.py b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/hebrewprober.py new file mode 100644 index 0000000..785d005 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/hebrewprober.py @@ -0,0 +1,316 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Universal charset detector code. +# +# The Initial Developer of the Original Code is +# Shy Shalom +# Portions created by the Initial Developer are Copyright (C) 2005 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from typing import Optional, Union + +from .charsetprober import CharSetProber +from .enums import ProbingState +from .sbcharsetprober import SingleByteCharSetProber + +# This prober doesn't actually recognize a language or a charset. +# It is a helper prober for the use of the Hebrew model probers + +### General ideas of the Hebrew charset recognition ### +# +# Four main charsets exist in Hebrew: +# "ISO-8859-8" - Visual Hebrew +# "windows-1255" - Logical Hebrew +# "ISO-8859-8-I" - Logical Hebrew +# "x-mac-hebrew" - ?? Logical Hebrew ?? +# +# Both "ISO" charsets use a completely identical set of code points, whereas +# "windows-1255" and "x-mac-hebrew" are two different proper supersets of +# these code points. windows-1255 defines additional characters in the range +# 0x80-0x9F as some misc punctuation marks as well as some Hebrew-specific +# diacritics and additional 'Yiddish' ligature letters in the range 0xc0-0xd6. +# x-mac-hebrew defines similar additional code points but with a different +# mapping. +# +# As far as an average Hebrew text with no diacritics is concerned, all four +# charsets are identical with respect to code points. Meaning that for the +# main Hebrew alphabet, all four map the same values to all 27 Hebrew letters +# (including final letters). +# +# The dominant difference between these charsets is their directionality. +# "Visual" directionality means that the text is ordered as if the renderer is +# not aware of a BIDI rendering algorithm. The renderer sees the text and +# draws it from left to right. The text itself when ordered naturally is read +# backwards. A buffer of Visual Hebrew generally looks like so: +# "[last word of first line spelled backwards] [whole line ordered backwards +# and spelled backwards] [first word of first line spelled backwards] +# [end of line] [last word of second line] ... etc' " +# adding punctuation marks, numbers and English text to visual text is +# naturally also "visual" and from left to right. +# +# "Logical" directionality means the text is ordered "naturally" according to +# the order it is read. It is the responsibility of the renderer to display +# the text from right to left. A BIDI algorithm is used to place general +# punctuation marks, numbers and English text in the text. +# +# Texts in x-mac-hebrew are almost impossible to find on the Internet. From +# what little evidence I could find, it seems that its general directionality +# is Logical. +# +# To sum up all of the above, the Hebrew probing mechanism knows about two +# charsets: +# Visual Hebrew - "ISO-8859-8" - backwards text - Words and sentences are +# backwards while line order is natural. For charset recognition purposes +# the line order is unimportant (In fact, for this implementation, even +# word order is unimportant). +# Logical Hebrew - "windows-1255" - normal, naturally ordered text. +# +# "ISO-8859-8-I" is a subset of windows-1255 and doesn't need to be +# specifically identified. +# "x-mac-hebrew" is also identified as windows-1255. A text in x-mac-hebrew +# that contain special punctuation marks or diacritics is displayed with +# some unconverted characters showing as question marks. This problem might +# be corrected using another model prober for x-mac-hebrew. Due to the fact +# that x-mac-hebrew texts are so rare, writing another model prober isn't +# worth the effort and performance hit. +# +#### The Prober #### +# +# The prober is divided between two SBCharSetProbers and a HebrewProber, +# all of which are managed, created, fed data, inquired and deleted by the +# SBCSGroupProber. The two SBCharSetProbers identify that the text is in +# fact some kind of Hebrew, Logical or Visual. The final decision about which +# one is it is made by the HebrewProber by combining final-letter scores +# with the scores of the two SBCharSetProbers to produce a final answer. +# +# The SBCSGroupProber is responsible for stripping the original text of HTML +# tags, English characters, numbers, low-ASCII punctuation characters, spaces +# and new lines. It reduces any sequence of such characters to a single space. +# The buffer fed to each prober in the SBCS group prober is pure text in +# high-ASCII. +# The two SBCharSetProbers (model probers) share the same language model: +# Win1255Model. +# The first SBCharSetProber uses the model normally as any other +# SBCharSetProber does, to recognize windows-1255, upon which this model was +# built. The second SBCharSetProber is told to make the pair-of-letter +# lookup in the language model backwards. This in practice exactly simulates +# a visual Hebrew model using the windows-1255 logical Hebrew model. +# +# The HebrewProber is not using any language model. All it does is look for +# final-letter evidence suggesting the text is either logical Hebrew or visual +# Hebrew. Disjointed from the model probers, the results of the HebrewProber +# alone are meaningless. HebrewProber always returns 0.00 as confidence +# since it never identifies a charset by itself. Instead, the pointer to the +# HebrewProber is passed to the model probers as a helper "Name Prober". +# When the Group prober receives a positive identification from any prober, +# it asks for the name of the charset identified. If the prober queried is a +# Hebrew model prober, the model prober forwards the call to the +# HebrewProber to make the final decision. In the HebrewProber, the +# decision is made according to the final-letters scores maintained and Both +# model probers scores. The answer is returned in the form of the name of the +# charset identified, either "windows-1255" or "ISO-8859-8". + + +class HebrewProber(CharSetProber): + SPACE = 0x20 + # windows-1255 / ISO-8859-8 code points of interest + FINAL_KAF = 0xEA + NORMAL_KAF = 0xEB + FINAL_MEM = 0xED + NORMAL_MEM = 0xEE + FINAL_NUN = 0xEF + NORMAL_NUN = 0xF0 + FINAL_PE = 0xF3 + NORMAL_PE = 0xF4 + FINAL_TSADI = 0xF5 + NORMAL_TSADI = 0xF6 + + # Minimum Visual vs Logical final letter score difference. + # If the difference is below this, don't rely solely on the final letter score + # distance. + MIN_FINAL_CHAR_DISTANCE = 5 + + # Minimum Visual vs Logical model score difference. + # If the difference is below this, don't rely at all on the model score + # distance. + MIN_MODEL_DISTANCE = 0.01 + + VISUAL_HEBREW_NAME = "ISO-8859-8" + LOGICAL_HEBREW_NAME = "windows-1255" + + def __init__(self) -> None: + super().__init__() + self._final_char_logical_score = 0 + self._final_char_visual_score = 0 + self._prev = self.SPACE + self._before_prev = self.SPACE + self._logical_prober: Optional[SingleByteCharSetProber] = None + self._visual_prober: Optional[SingleByteCharSetProber] = None + self.reset() + + def reset(self) -> None: + self._final_char_logical_score = 0 + self._final_char_visual_score = 0 + # The two last characters seen in the previous buffer, + # mPrev and mBeforePrev are initialized to space in order to simulate + # a word delimiter at the beginning of the data + self._prev = self.SPACE + self._before_prev = self.SPACE + # These probers are owned by the group prober. + + def set_model_probers( + self, + logical_prober: SingleByteCharSetProber, + visual_prober: SingleByteCharSetProber, + ) -> None: + self._logical_prober = logical_prober + self._visual_prober = visual_prober + + def is_final(self, c: int) -> bool: + return c in [ + self.FINAL_KAF, + self.FINAL_MEM, + self.FINAL_NUN, + self.FINAL_PE, + self.FINAL_TSADI, + ] + + def is_non_final(self, c: int) -> bool: + # The normal Tsadi is not a good Non-Final letter due to words like + # 'lechotet' (to chat) containing an apostrophe after the tsadi. This + # apostrophe is converted to a space in FilterWithoutEnglishLetters + # causing the Non-Final tsadi to appear at an end of a word even + # though this is not the case in the original text. + # The letters Pe and Kaf rarely display a related behavior of not being + # a good Non-Final letter. Words like 'Pop', 'Winamp' and 'Mubarak' + # for example legally end with a Non-Final Pe or Kaf. However, the + # benefit of these letters as Non-Final letters outweighs the damage + # since these words are quite rare. + return c in [self.NORMAL_KAF, self.NORMAL_MEM, self.NORMAL_NUN, self.NORMAL_PE] + + def feed(self, byte_str: Union[bytes, bytearray]) -> ProbingState: + # Final letter analysis for logical-visual decision. + # Look for evidence that the received buffer is either logical Hebrew + # or visual Hebrew. + # The following cases are checked: + # 1) A word longer than 1 letter, ending with a final letter. This is + # an indication that the text is laid out "naturally" since the + # final letter really appears at the end. +1 for logical score. + # 2) A word longer than 1 letter, ending with a Non-Final letter. In + # normal Hebrew, words ending with Kaf, Mem, Nun, Pe or Tsadi, + # should not end with the Non-Final form of that letter. Exceptions + # to this rule are mentioned above in isNonFinal(). This is an + # indication that the text is laid out backwards. +1 for visual + # score + # 3) A word longer than 1 letter, starting with a final letter. Final + # letters should not appear at the beginning of a word. This is an + # indication that the text is laid out backwards. +1 for visual + # score. + # + # The visual score and logical score are accumulated throughout the + # text and are finally checked against each other in GetCharSetName(). + # No checking for final letters in the middle of words is done since + # that case is not an indication for either Logical or Visual text. + # + # We automatically filter out all 7-bit characters (replace them with + # spaces) so the word boundary detection works properly. [MAP] + + if self.state == ProbingState.NOT_ME: + # Both model probers say it's not them. No reason to continue. + return ProbingState.NOT_ME + + byte_str = self.filter_high_byte_only(byte_str) + + for cur in byte_str: + if cur == self.SPACE: + # We stand on a space - a word just ended + if self._before_prev != self.SPACE: + # next-to-last char was not a space so self._prev is not a + # 1 letter word + if self.is_final(self._prev): + # case (1) [-2:not space][-1:final letter][cur:space] + self._final_char_logical_score += 1 + elif self.is_non_final(self._prev): + # case (2) [-2:not space][-1:Non-Final letter][ + # cur:space] + self._final_char_visual_score += 1 + else: + # Not standing on a space + if ( + (self._before_prev == self.SPACE) + and (self.is_final(self._prev)) + and (cur != self.SPACE) + ): + # case (3) [-2:space][-1:final letter][cur:not space] + self._final_char_visual_score += 1 + self._before_prev = self._prev + self._prev = cur + + # Forever detecting, till the end or until both model probers return + # ProbingState.NOT_ME (handled above) + return ProbingState.DETECTING + + @property + def charset_name(self) -> str: + assert self._logical_prober is not None + assert self._visual_prober is not None + + # Make the decision: is it Logical or Visual? + # If the final letter score distance is dominant enough, rely on it. + finalsub = self._final_char_logical_score - self._final_char_visual_score + if finalsub >= self.MIN_FINAL_CHAR_DISTANCE: + return self.LOGICAL_HEBREW_NAME + if finalsub <= -self.MIN_FINAL_CHAR_DISTANCE: + return self.VISUAL_HEBREW_NAME + + # It's not dominant enough, try to rely on the model scores instead. + modelsub = ( + self._logical_prober.get_confidence() - self._visual_prober.get_confidence() + ) + if modelsub > self.MIN_MODEL_DISTANCE: + return self.LOGICAL_HEBREW_NAME + if modelsub < -self.MIN_MODEL_DISTANCE: + return self.VISUAL_HEBREW_NAME + + # Still no good, back to final letter distance, maybe it'll save the + # day. + if finalsub < 0.0: + return self.VISUAL_HEBREW_NAME + + # (finalsub > 0 - Logical) or (don't know what to do) default to + # Logical. + return self.LOGICAL_HEBREW_NAME + + @property + def language(self) -> str: + return "Hebrew" + + @property + def state(self) -> ProbingState: + assert self._logical_prober is not None + assert self._visual_prober is not None + + # Remain active as long as any of the model probers are active. + if (self._logical_prober.state == ProbingState.NOT_ME) and ( + self._visual_prober.state == ProbingState.NOT_ME + ): + return ProbingState.NOT_ME + return ProbingState.DETECTING diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/jisfreq.py b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/jisfreq.py new file mode 100644 index 0000000..3293576 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/jisfreq.py @@ -0,0 +1,325 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Communicator client code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +# Sampling from about 20M text materials include literature and computer technology +# +# Japanese frequency table, applied to both S-JIS and EUC-JP +# They are sorted in order. + +# 128 --> 0.77094 +# 256 --> 0.85710 +# 512 --> 0.92635 +# 1024 --> 0.97130 +# 2048 --> 0.99431 +# +# Ideal Distribution Ratio = 0.92635 / (1-0.92635) = 12.58 +# Random Distribution Ration = 512 / (2965+62+83+86-512) = 0.191 +# +# Typical Distribution Ratio, 25% of IDR + +JIS_TYPICAL_DISTRIBUTION_RATIO = 3.0 + +# Char to FreqOrder table , +JIS_TABLE_SIZE = 4368 + +# fmt: off +JIS_CHAR_TO_FREQ_ORDER = ( + 40, 1, 6, 182, 152, 180, 295,2127, 285, 381,3295,4304,3068,4606,3165,3510, # 16 +3511,1822,2785,4607,1193,2226,5070,4608, 171,2996,1247, 18, 179,5071, 856,1661, # 32 +1262,5072, 619, 127,3431,3512,3230,1899,1700, 232, 228,1294,1298, 284, 283,2041, # 48 +2042,1061,1062, 48, 49, 44, 45, 433, 434,1040,1041, 996, 787,2997,1255,4305, # 64 +2108,4609,1684,1648,5073,5074,5075,5076,5077,5078,3687,5079,4610,5080,3927,3928, # 80 +5081,3296,3432, 290,2285,1471,2187,5082,2580,2825,1303,2140,1739,1445,2691,3375, # 96 +1691,3297,4306,4307,4611, 452,3376,1182,2713,3688,3069,4308,5083,5084,5085,5086, # 112 +5087,5088,5089,5090,5091,5092,5093,5094,5095,5096,5097,5098,5099,5100,5101,5102, # 128 +5103,5104,5105,5106,5107,5108,5109,5110,5111,5112,4097,5113,5114,5115,5116,5117, # 144 +5118,5119,5120,5121,5122,5123,5124,5125,5126,5127,5128,5129,5130,5131,5132,5133, # 160 +5134,5135,5136,5137,5138,5139,5140,5141,5142,5143,5144,5145,5146,5147,5148,5149, # 176 +5150,5151,5152,4612,5153,5154,5155,5156,5157,5158,5159,5160,5161,5162,5163,5164, # 192 +5165,5166,5167,5168,5169,5170,5171,5172,5173,5174,5175,1472, 598, 618, 820,1205, # 208 +1309,1412,1858,1307,1692,5176,5177,5178,5179,5180,5181,5182,1142,1452,1234,1172, # 224 +1875,2043,2149,1793,1382,2973, 925,2404,1067,1241, 960,1377,2935,1491, 919,1217, # 240 +1865,2030,1406,1499,2749,4098,5183,5184,5185,5186,5187,5188,2561,4099,3117,1804, # 256 +2049,3689,4309,3513,1663,5189,3166,3118,3298,1587,1561,3433,5190,3119,1625,2998, # 272 +3299,4613,1766,3690,2786,4614,5191,5192,5193,5194,2161, 26,3377, 2,3929, 20, # 288 +3691, 47,4100, 50, 17, 16, 35, 268, 27, 243, 42, 155, 24, 154, 29, 184, # 304 + 4, 91, 14, 92, 53, 396, 33, 289, 9, 37, 64, 620, 21, 39, 321, 5, # 320 + 12, 11, 52, 13, 3, 208, 138, 0, 7, 60, 526, 141, 151,1069, 181, 275, # 336 +1591, 83, 132,1475, 126, 331, 829, 15, 69, 160, 59, 22, 157, 55,1079, 312, # 352 + 109, 38, 23, 25, 10, 19, 79,5195, 61, 382,1124, 8, 30,5196,5197,5198, # 368 +5199,5200,5201,5202,5203,5204,5205,5206, 89, 62, 74, 34,2416, 112, 139, 196, # 384 + 271, 149, 84, 607, 131, 765, 46, 88, 153, 683, 76, 874, 101, 258, 57, 80, # 400 + 32, 364, 121,1508, 169,1547, 68, 235, 145,2999, 41, 360,3027, 70, 63, 31, # 416 + 43, 259, 262,1383, 99, 533, 194, 66, 93, 846, 217, 192, 56, 106, 58, 565, # 432 + 280, 272, 311, 256, 146, 82, 308, 71, 100, 128, 214, 655, 110, 261, 104,1140, # 448 + 54, 51, 36, 87, 67,3070, 185,2618,2936,2020, 28,1066,2390,2059,5207,5208, # 464 +5209,5210,5211,5212,5213,5214,5215,5216,4615,5217,5218,5219,5220,5221,5222,5223, # 480 +5224,5225,5226,5227,5228,5229,5230,5231,5232,5233,5234,5235,5236,3514,5237,5238, # 496 +5239,5240,5241,5242,5243,5244,2297,2031,4616,4310,3692,5245,3071,5246,3598,5247, # 512 +4617,3231,3515,5248,4101,4311,4618,3808,4312,4102,5249,4103,4104,3599,5250,5251, # 528 +5252,5253,5254,5255,5256,5257,5258,5259,5260,5261,5262,5263,5264,5265,5266,5267, # 544 +5268,5269,5270,5271,5272,5273,5274,5275,5276,5277,5278,5279,5280,5281,5282,5283, # 560 +5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297,5298,5299, # 576 +5300,5301,5302,5303,5304,5305,5306,5307,5308,5309,5310,5311,5312,5313,5314,5315, # 592 +5316,5317,5318,5319,5320,5321,5322,5323,5324,5325,5326,5327,5328,5329,5330,5331, # 608 +5332,5333,5334,5335,5336,5337,5338,5339,5340,5341,5342,5343,5344,5345,5346,5347, # 624 +5348,5349,5350,5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362,5363, # 640 +5364,5365,5366,5367,5368,5369,5370,5371,5372,5373,5374,5375,5376,5377,5378,5379, # 656 +5380,5381, 363, 642,2787,2878,2788,2789,2316,3232,2317,3434,2011, 165,1942,3930, # 672 +3931,3932,3933,5382,4619,5383,4620,5384,5385,5386,5387,5388,5389,5390,5391,5392, # 688 +5393,5394,5395,5396,5397,5398,5399,5400,5401,5402,5403,5404,5405,5406,5407,5408, # 704 +5409,5410,5411,5412,5413,5414,5415,5416,5417,5418,5419,5420,5421,5422,5423,5424, # 720 +5425,5426,5427,5428,5429,5430,5431,5432,5433,5434,5435,5436,5437,5438,5439,5440, # 736 +5441,5442,5443,5444,5445,5446,5447,5448,5449,5450,5451,5452,5453,5454,5455,5456, # 752 +5457,5458,5459,5460,5461,5462,5463,5464,5465,5466,5467,5468,5469,5470,5471,5472, # 768 +5473,5474,5475,5476,5477,5478,5479,5480,5481,5482,5483,5484,5485,5486,5487,5488, # 784 +5489,5490,5491,5492,5493,5494,5495,5496,5497,5498,5499,5500,5501,5502,5503,5504, # 800 +5505,5506,5507,5508,5509,5510,5511,5512,5513,5514,5515,5516,5517,5518,5519,5520, # 816 +5521,5522,5523,5524,5525,5526,5527,5528,5529,5530,5531,5532,5533,5534,5535,5536, # 832 +5537,5538,5539,5540,5541,5542,5543,5544,5545,5546,5547,5548,5549,5550,5551,5552, # 848 +5553,5554,5555,5556,5557,5558,5559,5560,5561,5562,5563,5564,5565,5566,5567,5568, # 864 +5569,5570,5571,5572,5573,5574,5575,5576,5577,5578,5579,5580,5581,5582,5583,5584, # 880 +5585,5586,5587,5588,5589,5590,5591,5592,5593,5594,5595,5596,5597,5598,5599,5600, # 896 +5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,5612,5613,5614,5615,5616, # 912 +5617,5618,5619,5620,5621,5622,5623,5624,5625,5626,5627,5628,5629,5630,5631,5632, # 928 +5633,5634,5635,5636,5637,5638,5639,5640,5641,5642,5643,5644,5645,5646,5647,5648, # 944 +5649,5650,5651,5652,5653,5654,5655,5656,5657,5658,5659,5660,5661,5662,5663,5664, # 960 +5665,5666,5667,5668,5669,5670,5671,5672,5673,5674,5675,5676,5677,5678,5679,5680, # 976 +5681,5682,5683,5684,5685,5686,5687,5688,5689,5690,5691,5692,5693,5694,5695,5696, # 992 +5697,5698,5699,5700,5701,5702,5703,5704,5705,5706,5707,5708,5709,5710,5711,5712, # 1008 +5713,5714,5715,5716,5717,5718,5719,5720,5721,5722,5723,5724,5725,5726,5727,5728, # 1024 +5729,5730,5731,5732,5733,5734,5735,5736,5737,5738,5739,5740,5741,5742,5743,5744, # 1040 +5745,5746,5747,5748,5749,5750,5751,5752,5753,5754,5755,5756,5757,5758,5759,5760, # 1056 +5761,5762,5763,5764,5765,5766,5767,5768,5769,5770,5771,5772,5773,5774,5775,5776, # 1072 +5777,5778,5779,5780,5781,5782,5783,5784,5785,5786,5787,5788,5789,5790,5791,5792, # 1088 +5793,5794,5795,5796,5797,5798,5799,5800,5801,5802,5803,5804,5805,5806,5807,5808, # 1104 +5809,5810,5811,5812,5813,5814,5815,5816,5817,5818,5819,5820,5821,5822,5823,5824, # 1120 +5825,5826,5827,5828,5829,5830,5831,5832,5833,5834,5835,5836,5837,5838,5839,5840, # 1136 +5841,5842,5843,5844,5845,5846,5847,5848,5849,5850,5851,5852,5853,5854,5855,5856, # 1152 +5857,5858,5859,5860,5861,5862,5863,5864,5865,5866,5867,5868,5869,5870,5871,5872, # 1168 +5873,5874,5875,5876,5877,5878,5879,5880,5881,5882,5883,5884,5885,5886,5887,5888, # 1184 +5889,5890,5891,5892,5893,5894,5895,5896,5897,5898,5899,5900,5901,5902,5903,5904, # 1200 +5905,5906,5907,5908,5909,5910,5911,5912,5913,5914,5915,5916,5917,5918,5919,5920, # 1216 +5921,5922,5923,5924,5925,5926,5927,5928,5929,5930,5931,5932,5933,5934,5935,5936, # 1232 +5937,5938,5939,5940,5941,5942,5943,5944,5945,5946,5947,5948,5949,5950,5951,5952, # 1248 +5953,5954,5955,5956,5957,5958,5959,5960,5961,5962,5963,5964,5965,5966,5967,5968, # 1264 +5969,5970,5971,5972,5973,5974,5975,5976,5977,5978,5979,5980,5981,5982,5983,5984, # 1280 +5985,5986,5987,5988,5989,5990,5991,5992,5993,5994,5995,5996,5997,5998,5999,6000, # 1296 +6001,6002,6003,6004,6005,6006,6007,6008,6009,6010,6011,6012,6013,6014,6015,6016, # 1312 +6017,6018,6019,6020,6021,6022,6023,6024,6025,6026,6027,6028,6029,6030,6031,6032, # 1328 +6033,6034,6035,6036,6037,6038,6039,6040,6041,6042,6043,6044,6045,6046,6047,6048, # 1344 +6049,6050,6051,6052,6053,6054,6055,6056,6057,6058,6059,6060,6061,6062,6063,6064, # 1360 +6065,6066,6067,6068,6069,6070,6071,6072,6073,6074,6075,6076,6077,6078,6079,6080, # 1376 +6081,6082,6083,6084,6085,6086,6087,6088,6089,6090,6091,6092,6093,6094,6095,6096, # 1392 +6097,6098,6099,6100,6101,6102,6103,6104,6105,6106,6107,6108,6109,6110,6111,6112, # 1408 +6113,6114,2044,2060,4621, 997,1235, 473,1186,4622, 920,3378,6115,6116, 379,1108, # 1424 +4313,2657,2735,3934,6117,3809, 636,3233, 573,1026,3693,3435,2974,3300,2298,4105, # 1440 + 854,2937,2463, 393,2581,2417, 539, 752,1280,2750,2480, 140,1161, 440, 708,1569, # 1456 + 665,2497,1746,1291,1523,3000, 164,1603, 847,1331, 537,1997, 486, 508,1693,2418, # 1472 +1970,2227, 878,1220, 299,1030, 969, 652,2751, 624,1137,3301,2619, 65,3302,2045, # 1488 +1761,1859,3120,1930,3694,3516, 663,1767, 852, 835,3695, 269, 767,2826,2339,1305, # 1504 + 896,1150, 770,1616,6118, 506,1502,2075,1012,2519, 775,2520,2975,2340,2938,4314, # 1520 +3028,2086,1224,1943,2286,6119,3072,4315,2240,1273,1987,3935,1557, 175, 597, 985, # 1536 +3517,2419,2521,1416,3029, 585, 938,1931,1007,1052,1932,1685,6120,3379,4316,4623, # 1552 + 804, 599,3121,1333,2128,2539,1159,1554,2032,3810, 687,2033,2904, 952, 675,1467, # 1568 +3436,6121,2241,1096,1786,2440,1543,1924, 980,1813,2228, 781,2692,1879, 728,1918, # 1584 +3696,4624, 548,1950,4625,1809,1088,1356,3303,2522,1944, 502, 972, 373, 513,2827, # 1600 + 586,2377,2391,1003,1976,1631,6122,2464,1084, 648,1776,4626,2141, 324, 962,2012, # 1616 +2177,2076,1384, 742,2178,1448,1173,1810, 222, 102, 301, 445, 125,2420, 662,2498, # 1632 + 277, 200,1476,1165,1068, 224,2562,1378,1446, 450,1880, 659, 791, 582,4627,2939, # 1648 +3936,1516,1274, 555,2099,3697,1020,1389,1526,3380,1762,1723,1787,2229, 412,2114, # 1664 +1900,2392,3518, 512,2597, 427,1925,2341,3122,1653,1686,2465,2499, 697, 330, 273, # 1680 + 380,2162, 951, 832, 780, 991,1301,3073, 965,2270,3519, 668,2523,2636,1286, 535, # 1696 +1407, 518, 671, 957,2658,2378, 267, 611,2197,3030,6123, 248,2299, 967,1799,2356, # 1712 + 850,1418,3437,1876,1256,1480,2828,1718,6124,6125,1755,1664,2405,6126,4628,2879, # 1728 +2829, 499,2179, 676,4629, 557,2329,2214,2090, 325,3234, 464, 811,3001, 992,2342, # 1744 +2481,1232,1469, 303,2242, 466,1070,2163, 603,1777,2091,4630,2752,4631,2714, 322, # 1760 +2659,1964,1768, 481,2188,1463,2330,2857,3600,2092,3031,2421,4632,2318,2070,1849, # 1776 +2598,4633,1302,2254,1668,1701,2422,3811,2905,3032,3123,2046,4106,1763,1694,4634, # 1792 +1604, 943,1724,1454, 917, 868,2215,1169,2940, 552,1145,1800,1228,1823,1955, 316, # 1808 +1080,2510, 361,1807,2830,4107,2660,3381,1346,1423,1134,4108,6127, 541,1263,1229, # 1824 +1148,2540, 545, 465,1833,2880,3438,1901,3074,2482, 816,3937, 713,1788,2500, 122, # 1840 +1575, 195,1451,2501,1111,6128, 859, 374,1225,2243,2483,4317, 390,1033,3439,3075, # 1856 +2524,1687, 266, 793,1440,2599, 946, 779, 802, 507, 897,1081, 528,2189,1292, 711, # 1872 +1866,1725,1167,1640, 753, 398,2661,1053, 246, 348,4318, 137,1024,3440,1600,2077, # 1888 +2129, 825,4319, 698, 238, 521, 187,2300,1157,2423,1641,1605,1464,1610,1097,2541, # 1904 +1260,1436, 759,2255,1814,2150, 705,3235, 409,2563,3304, 561,3033,2005,2564, 726, # 1920 +1956,2343,3698,4109, 949,3812,3813,3520,1669, 653,1379,2525, 881,2198, 632,2256, # 1936 +1027, 778,1074, 733,1957, 514,1481,2466, 554,2180, 702,3938,1606,1017,1398,6129, # 1952 +1380,3521, 921, 993,1313, 594, 449,1489,1617,1166, 768,1426,1360, 495,1794,3601, # 1968 +1177,3602,1170,4320,2344, 476, 425,3167,4635,3168,1424, 401,2662,1171,3382,1998, # 1984 +1089,4110, 477,3169, 474,6130,1909, 596,2831,1842, 494, 693,1051,1028,1207,3076, # 2000 + 606,2115, 727,2790,1473,1115, 743,3522, 630, 805,1532,4321,2021, 366,1057, 838, # 2016 + 684,1114,2142,4322,2050,1492,1892,1808,2271,3814,2424,1971,1447,1373,3305,1090, # 2032 +1536,3939,3523,3306,1455,2199, 336, 369,2331,1035, 584,2393, 902, 718,2600,6131, # 2048 +2753, 463,2151,1149,1611,2467, 715,1308,3124,1268, 343,1413,3236,1517,1347,2663, # 2064 +2093,3940,2022,1131,1553,2100,2941,1427,3441,2942,1323,2484,6132,1980, 872,2368, # 2080 +2441,2943, 320,2369,2116,1082, 679,1933,3941,2791,3815, 625,1143,2023, 422,2200, # 2096 +3816,6133, 730,1695, 356,2257,1626,2301,2858,2637,1627,1778, 937, 883,2906,2693, # 2112 +3002,1769,1086, 400,1063,1325,3307,2792,4111,3077, 456,2345,1046, 747,6134,1524, # 2128 + 884,1094,3383,1474,2164,1059, 974,1688,2181,2258,1047, 345,1665,1187, 358, 875, # 2144 +3170, 305, 660,3524,2190,1334,1135,3171,1540,1649,2542,1527, 927, 968,2793, 885, # 2160 +1972,1850, 482, 500,2638,1218,1109,1085,2543,1654,2034, 876, 78,2287,1482,1277, # 2176 + 861,1675,1083,1779, 724,2754, 454, 397,1132,1612,2332, 893, 672,1237, 257,2259, # 2192 +2370, 135,3384, 337,2244, 547, 352, 340, 709,2485,1400, 788,1138,2511, 540, 772, # 2208 +1682,2260,2272,2544,2013,1843,1902,4636,1999,1562,2288,4637,2201,1403,1533, 407, # 2224 + 576,3308,1254,2071, 978,3385, 170, 136,1201,3125,2664,3172,2394, 213, 912, 873, # 2240 +3603,1713,2202, 699,3604,3699, 813,3442, 493, 531,1054, 468,2907,1483, 304, 281, # 2256 +4112,1726,1252,2094, 339,2319,2130,2639, 756,1563,2944, 748, 571,2976,1588,2425, # 2272 +2715,1851,1460,2426,1528,1392,1973,3237, 288,3309, 685,3386, 296, 892,2716,2216, # 2288 +1570,2245, 722,1747,2217, 905,3238,1103,6135,1893,1441,1965, 251,1805,2371,3700, # 2304 +2601,1919,1078, 75,2182,1509,1592,1270,2640,4638,2152,6136,3310,3817, 524, 706, # 2320 +1075, 292,3818,1756,2602, 317, 98,3173,3605,3525,1844,2218,3819,2502, 814, 567, # 2336 + 385,2908,1534,6137, 534,1642,3239, 797,6138,1670,1529, 953,4323, 188,1071, 538, # 2352 + 178, 729,3240,2109,1226,1374,2000,2357,2977, 731,2468,1116,2014,2051,6139,1261, # 2368 +1593, 803,2859,2736,3443, 556, 682, 823,1541,6140,1369,2289,1706,2794, 845, 462, # 2384 +2603,2665,1361, 387, 162,2358,1740, 739,1770,1720,1304,1401,3241,1049, 627,1571, # 2400 +2427,3526,1877,3942,1852,1500, 431,1910,1503, 677, 297,2795, 286,1433,1038,1198, # 2416 +2290,1133,1596,4113,4639,2469,1510,1484,3943,6141,2442, 108, 712,4640,2372, 866, # 2432 +3701,2755,3242,1348, 834,1945,1408,3527,2395,3243,1811, 824, 994,1179,2110,1548, # 2448 +1453, 790,3003, 690,4324,4325,2832,2909,3820,1860,3821, 225,1748, 310, 346,1780, # 2464 +2470, 821,1993,2717,2796, 828, 877,3528,2860,2471,1702,2165,2910,2486,1789, 453, # 2480 + 359,2291,1676, 73,1164,1461,1127,3311, 421, 604, 314,1037, 589, 116,2487, 737, # 2496 + 837,1180, 111, 244, 735,6142,2261,1861,1362, 986, 523, 418, 581,2666,3822, 103, # 2512 + 855, 503,1414,1867,2488,1091, 657,1597, 979, 605,1316,4641,1021,2443,2078,2001, # 2528 +1209, 96, 587,2166,1032, 260,1072,2153, 173, 94, 226,3244, 819,2006,4642,4114, # 2544 +2203, 231,1744, 782, 97,2667, 786,3387, 887, 391, 442,2219,4326,1425,6143,2694, # 2560 + 633,1544,1202, 483,2015, 592,2052,1958,2472,1655, 419, 129,4327,3444,3312,1714, # 2576 +1257,3078,4328,1518,1098, 865,1310,1019,1885,1512,1734, 469,2444, 148, 773, 436, # 2592 +1815,1868,1128,1055,4329,1245,2756,3445,2154,1934,1039,4643, 579,1238, 932,2320, # 2608 + 353, 205, 801, 115,2428, 944,2321,1881, 399,2565,1211, 678, 766,3944, 335,2101, # 2624 +1459,1781,1402,3945,2737,2131,1010, 844, 981,1326,1013, 550,1816,1545,2620,1335, # 2640 +1008, 371,2881, 936,1419,1613,3529,1456,1395,2273,1834,2604,1317,2738,2503, 416, # 2656 +1643,4330, 806,1126, 229, 591,3946,1314,1981,1576,1837,1666, 347,1790, 977,3313, # 2672 + 764,2861,1853, 688,2429,1920,1462, 77, 595, 415,2002,3034, 798,1192,4115,6144, # 2688 +2978,4331,3035,2695,2582,2072,2566, 430,2430,1727, 842,1396,3947,3702, 613, 377, # 2704 + 278, 236,1417,3388,3314,3174, 757,1869, 107,3530,6145,1194, 623,2262, 207,1253, # 2720 +2167,3446,3948, 492,1117,1935, 536,1838,2757,1246,4332, 696,2095,2406,1393,1572, # 2736 +3175,1782, 583, 190, 253,1390,2230, 830,3126,3389, 934,3245,1703,1749,2979,1870, # 2752 +2545,1656,2204, 869,2346,4116,3176,1817, 496,1764,4644, 942,1504, 404,1903,1122, # 2768 +1580,3606,2945,1022, 515, 372,1735, 955,2431,3036,6146,2797,1110,2302,2798, 617, # 2784 +6147, 441, 762,1771,3447,3607,3608,1904, 840,3037, 86, 939,1385, 572,1370,2445, # 2800 +1336, 114,3703, 898, 294, 203,3315, 703,1583,2274, 429, 961,4333,1854,1951,3390, # 2816 +2373,3704,4334,1318,1381, 966,1911,2322,1006,1155, 309, 989, 458,2718,1795,1372, # 2832 +1203, 252,1689,1363,3177, 517,1936, 168,1490, 562, 193,3823,1042,4117,1835, 551, # 2848 + 470,4645, 395, 489,3448,1871,1465,2583,2641, 417,1493, 279,1295, 511,1236,1119, # 2864 + 72,1231,1982,1812,3004, 871,1564, 984,3449,1667,2696,2096,4646,2347,2833,1673, # 2880 +3609, 695,3246,2668, 807,1183,4647, 890, 388,2333,1801,1457,2911,1765,1477,1031, # 2896 +3316,3317,1278,3391,2799,2292,2526, 163,3450,4335,2669,1404,1802,6148,2323,2407, # 2912 +1584,1728,1494,1824,1269, 298, 909,3318,1034,1632, 375, 776,1683,2061, 291, 210, # 2928 +1123, 809,1249,1002,2642,3038, 206,1011,2132, 144, 975, 882,1565, 342, 667, 754, # 2944 +1442,2143,1299,2303,2062, 447, 626,2205,1221,2739,2912,1144,1214,2206,2584, 760, # 2960 +1715, 614, 950,1281,2670,2621, 810, 577,1287,2546,4648, 242,2168, 250,2643, 691, # 2976 + 123,2644, 647, 313,1029, 689,1357,2946,1650, 216, 771,1339,1306, 808,2063, 549, # 2992 + 913,1371,2913,2914,6149,1466,1092,1174,1196,1311,2605,2396,1783,1796,3079, 406, # 3008 +2671,2117,3949,4649, 487,1825,2220,6150,2915, 448,2348,1073,6151,2397,1707, 130, # 3024 + 900,1598, 329, 176,1959,2527,1620,6152,2275,4336,3319,1983,2191,3705,3610,2155, # 3040 +3706,1912,1513,1614,6153,1988, 646, 392,2304,1589,3320,3039,1826,1239,1352,1340, # 3056 +2916, 505,2567,1709,1437,2408,2547, 906,6154,2672, 384,1458,1594,1100,1329, 710, # 3072 + 423,3531,2064,2231,2622,1989,2673,1087,1882, 333, 841,3005,1296,2882,2379, 580, # 3088 +1937,1827,1293,2585, 601, 574, 249,1772,4118,2079,1120, 645, 901,1176,1690, 795, # 3104 +2207, 478,1434, 516,1190,1530, 761,2080, 930,1264, 355, 435,1552, 644,1791, 987, # 3120 + 220,1364,1163,1121,1538, 306,2169,1327,1222, 546,2645, 218, 241, 610,1704,3321, # 3136 +1984,1839,1966,2528, 451,6155,2586,3707,2568, 907,3178, 254,2947, 186,1845,4650, # 3152 + 745, 432,1757, 428,1633, 888,2246,2221,2489,3611,2118,1258,1265, 956,3127,1784, # 3168 +4337,2490, 319, 510, 119, 457,3612, 274,2035,2007,4651,1409,3128, 970,2758, 590, # 3184 +2800, 661,2247,4652,2008,3950,1420,1549,3080,3322,3951,1651,1375,2111, 485,2491, # 3200 +1429,1156,6156,2548,2183,1495, 831,1840,2529,2446, 501,1657, 307,1894,3247,1341, # 3216 + 666, 899,2156,1539,2549,1559, 886, 349,2208,3081,2305,1736,3824,2170,2759,1014, # 3232 +1913,1386, 542,1397,2948, 490, 368, 716, 362, 159, 282,2569,1129,1658,1288,1750, # 3248 +2674, 276, 649,2016, 751,1496, 658,1818,1284,1862,2209,2087,2512,3451, 622,2834, # 3264 + 376, 117,1060,2053,1208,1721,1101,1443, 247,1250,3179,1792,3952,2760,2398,3953, # 3280 +6157,2144,3708, 446,2432,1151,2570,3452,2447,2761,2835,1210,2448,3082, 424,2222, # 3296 +1251,2449,2119,2836, 504,1581,4338, 602, 817, 857,3825,2349,2306, 357,3826,1470, # 3312 +1883,2883, 255, 958, 929,2917,3248, 302,4653,1050,1271,1751,2307,1952,1430,2697, # 3328 +2719,2359, 354,3180, 777, 158,2036,4339,1659,4340,4654,2308,2949,2248,1146,2232, # 3344 +3532,2720,1696,2623,3827,6158,3129,1550,2698,1485,1297,1428, 637, 931,2721,2145, # 3360 + 914,2550,2587, 81,2450, 612, 827,2646,1242,4655,1118,2884, 472,1855,3181,3533, # 3376 +3534, 569,1353,2699,1244,1758,2588,4119,2009,2762,2171,3709,1312,1531,6159,1152, # 3392 +1938, 134,1830, 471,3710,2276,1112,1535,3323,3453,3535, 982,1337,2950, 488, 826, # 3408 + 674,1058,1628,4120,2017, 522,2399, 211, 568,1367,3454, 350, 293,1872,1139,3249, # 3424 +1399,1946,3006,1300,2360,3324, 588, 736,6160,2606, 744, 669,3536,3828,6161,1358, # 3440 + 199, 723, 848, 933, 851,1939,1505,1514,1338,1618,1831,4656,1634,3613, 443,2740, # 3456 +3829, 717,1947, 491,1914,6162,2551,1542,4121,1025,6163,1099,1223, 198,3040,2722, # 3472 + 370, 410,1905,2589, 998,1248,3182,2380, 519,1449,4122,1710, 947, 928,1153,4341, # 3488 +2277, 344,2624,1511, 615, 105, 161,1212,1076,1960,3130,2054,1926,1175,1906,2473, # 3504 + 414,1873,2801,6164,2309, 315,1319,3325, 318,2018,2146,2157, 963, 631, 223,4342, # 3520 +4343,2675, 479,3711,1197,2625,3712,2676,2361,6165,4344,4123,6166,2451,3183,1886, # 3536 +2184,1674,1330,1711,1635,1506, 799, 219,3250,3083,3954,1677,3713,3326,2081,3614, # 3552 +1652,2073,4657,1147,3041,1752, 643,1961, 147,1974,3955,6167,1716,2037, 918,3007, # 3568 +1994, 120,1537, 118, 609,3184,4345, 740,3455,1219, 332,1615,3830,6168,1621,2980, # 3584 +1582, 783, 212, 553,2350,3714,1349,2433,2082,4124, 889,6169,2310,1275,1410, 973, # 3600 + 166,1320,3456,1797,1215,3185,2885,1846,2590,2763,4658, 629, 822,3008, 763, 940, # 3616 +1990,2862, 439,2409,1566,1240,1622, 926,1282,1907,2764, 654,2210,1607, 327,1130, # 3632 +3956,1678,1623,6170,2434,2192, 686, 608,3831,3715, 903,3957,3042,6171,2741,1522, # 3648 +1915,1105,1555,2552,1359, 323,3251,4346,3457, 738,1354,2553,2311,2334,1828,2003, # 3664 +3832,1753,2351,1227,6172,1887,4125,1478,6173,2410,1874,1712,1847, 520,1204,2607, # 3680 + 264,4659, 836,2677,2102, 600,4660,3833,2278,3084,6174,4347,3615,1342, 640, 532, # 3696 + 543,2608,1888,2400,2591,1009,4348,1497, 341,1737,3616,2723,1394, 529,3252,1321, # 3712 + 983,4661,1515,2120, 971,2592, 924, 287,1662,3186,4349,2700,4350,1519, 908,1948, # 3728 +2452, 156, 796,1629,1486,2223,2055, 694,4126,1259,1036,3392,1213,2249,2742,1889, # 3744 +1230,3958,1015, 910, 408, 559,3617,4662, 746, 725, 935,4663,3959,3009,1289, 563, # 3760 + 867,4664,3960,1567,2981,2038,2626, 988,2263,2381,4351, 143,2374, 704,1895,6175, # 3776 +1188,3716,2088, 673,3085,2362,4352, 484,1608,1921,2765,2918, 215, 904,3618,3537, # 3792 + 894, 509, 976,3043,2701,3961,4353,2837,2982, 498,6176,6177,1102,3538,1332,3393, # 3808 +1487,1636,1637, 233, 245,3962, 383, 650, 995,3044, 460,1520,1206,2352, 749,3327, # 3824 + 530, 700, 389,1438,1560,1773,3963,2264, 719,2951,2724,3834, 870,1832,1644,1000, # 3840 + 839,2474,3717, 197,1630,3394, 365,2886,3964,1285,2133, 734, 922, 818,1106, 732, # 3856 + 480,2083,1774,3458, 923,2279,1350, 221,3086, 85,2233,2234,3835,1585,3010,2147, # 3872 +1387,1705,2382,1619,2475, 133, 239,2802,1991,1016,2084,2383, 411,2838,1113, 651, # 3888 +1985,1160,3328, 990,1863,3087,1048,1276,2647, 265,2627,1599,3253,2056, 150, 638, # 3904 +2019, 656, 853, 326,1479, 680,1439,4354,1001,1759, 413,3459,3395,2492,1431, 459, # 3920 +4355,1125,3329,2265,1953,1450,2065,2863, 849, 351,2678,3131,3254,3255,1104,1577, # 3936 + 227,1351,1645,2453,2193,1421,2887, 812,2121, 634, 95,2435, 201,2312,4665,1646, # 3952 +1671,2743,1601,2554,2702,2648,2280,1315,1366,2089,3132,1573,3718,3965,1729,1189, # 3968 + 328,2679,1077,1940,1136, 558,1283, 964,1195, 621,2074,1199,1743,3460,3619,1896, # 3984 +1916,1890,3836,2952,1154,2112,1064, 862, 378,3011,2066,2113,2803,1568,2839,6178, # 4000 +3088,2919,1941,1660,2004,1992,2194, 142, 707,1590,1708,1624,1922,1023,1836,1233, # 4016 +1004,2313, 789, 741,3620,6179,1609,2411,1200,4127,3719,3720,4666,2057,3721, 593, # 4032 +2840, 367,2920,1878,6180,3461,1521, 628,1168, 692,2211,2649, 300, 720,2067,2571, # 4048 +2953,3396, 959,2504,3966,3539,3462,1977, 701,6181, 954,1043, 800, 681, 183,3722, # 4064 +1803,1730,3540,4128,2103, 815,2314, 174, 467, 230,2454,1093,2134, 755,3541,3397, # 4080 +1141,1162,6182,1738,2039, 270,3256,2513,1005,1647,2185,3837, 858,1679,1897,1719, # 4096 +2954,2324,1806, 402, 670, 167,4129,1498,2158,2104, 750,6183, 915, 189,1680,1551, # 4112 + 455,4356,1501,2455, 405,1095,2955, 338,1586,1266,1819, 570, 641,1324, 237,1556, # 4128 +2650,1388,3723,6184,1368,2384,1343,1978,3089,2436, 879,3724, 792,1191, 758,3012, # 4144 +1411,2135,1322,4357, 240,4667,1848,3725,1574,6185, 420,3045,1546,1391, 714,4358, # 4160 +1967, 941,1864, 863, 664, 426, 560,1731,2680,1785,2864,1949,2363, 403,3330,1415, # 4176 +1279,2136,1697,2335, 204, 721,2097,3838, 90,6186,2085,2505, 191,3967, 124,2148, # 4192 +1376,1798,1178,1107,1898,1405, 860,4359,1243,1272,2375,2983,1558,2456,1638, 113, # 4208 +3621, 578,1923,2609, 880, 386,4130, 784,2186,2266,1422,2956,2172,1722, 497, 263, # 4224 +2514,1267,2412,2610, 177,2703,3542, 774,1927,1344, 616,1432,1595,1018, 172,4360, # 4240 +2325, 911,4361, 438,1468,3622, 794,3968,2024,2173,1681,1829,2957, 945, 895,3090, # 4256 + 575,2212,2476, 475,2401,2681, 785,2744,1745,2293,2555,1975,3133,2865, 394,4668, # 4272 +3839, 635,4131, 639, 202,1507,2195,2766,1345,1435,2572,3726,1908,1184,1181,2457, # 4288 +3727,3134,4362, 843,2611, 437, 916,4669, 234, 769,1884,3046,3047,3623, 833,6187, # 4304 +1639,2250,2402,1355,1185,2010,2047, 999, 525,1732,1290,1488,2612, 948,1578,3728, # 4320 +2413,2477,1216,2725,2159, 334,3840,1328,3624,2921,1525,4132, 564,1056, 891,4363, # 4336 +1444,1698,2385,2251,3729,1365,2281,2235,1717,6188, 864,3841,2515, 444, 527,2767, # 4352 +2922,3625, 544, 461,6189, 566, 209,2437,3398,2098,1065,2068,3331,3626,3257,2137, # 4368 #last 512 +) +# fmt: on diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/johabfreq.py b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/johabfreq.py new file mode 100644 index 0000000..c129699 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/johabfreq.py @@ -0,0 +1,2382 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Communicator client code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +# The frequency data itself is the same as euc-kr. +# This is just a mapping table to euc-kr. + +JOHAB_TO_EUCKR_ORDER_TABLE = { + 0x8861: 0, + 0x8862: 1, + 0x8865: 2, + 0x8868: 3, + 0x8869: 4, + 0x886A: 5, + 0x886B: 6, + 0x8871: 7, + 0x8873: 8, + 0x8874: 9, + 0x8875: 10, + 0x8876: 11, + 0x8877: 12, + 0x8878: 13, + 0x8879: 14, + 0x887B: 15, + 0x887C: 16, + 0x887D: 17, + 0x8881: 18, + 0x8882: 19, + 0x8885: 20, + 0x8889: 21, + 0x8891: 22, + 0x8893: 23, + 0x8895: 24, + 0x8896: 25, + 0x8897: 26, + 0x88A1: 27, + 0x88A2: 28, + 0x88A5: 29, + 0x88A9: 30, + 0x88B5: 31, + 0x88B7: 32, + 0x88C1: 33, + 0x88C5: 34, + 0x88C9: 35, + 0x88E1: 36, + 0x88E2: 37, + 0x88E5: 38, + 0x88E8: 39, + 0x88E9: 40, + 0x88EB: 41, + 0x88F1: 42, + 0x88F3: 43, + 0x88F5: 44, + 0x88F6: 45, + 0x88F7: 46, + 0x88F8: 47, + 0x88FB: 48, + 0x88FC: 49, + 0x88FD: 50, + 0x8941: 51, + 0x8945: 52, + 0x8949: 53, + 0x8951: 54, + 0x8953: 55, + 0x8955: 56, + 0x8956: 57, + 0x8957: 58, + 0x8961: 59, + 0x8962: 60, + 0x8963: 61, + 0x8965: 62, + 0x8968: 63, + 0x8969: 64, + 0x8971: 65, + 0x8973: 66, + 0x8975: 67, + 0x8976: 68, + 0x8977: 69, + 0x897B: 70, + 0x8981: 71, + 0x8985: 72, + 0x8989: 73, + 0x8993: 74, + 0x8995: 75, + 0x89A1: 76, + 0x89A2: 77, + 0x89A5: 78, + 0x89A8: 79, + 0x89A9: 80, + 0x89AB: 81, + 0x89AD: 82, + 0x89B0: 83, + 0x89B1: 84, + 0x89B3: 85, + 0x89B5: 86, + 0x89B7: 87, + 0x89B8: 88, + 0x89C1: 89, + 0x89C2: 90, + 0x89C5: 91, + 0x89C9: 92, + 0x89CB: 93, + 0x89D1: 94, + 0x89D3: 95, + 0x89D5: 96, + 0x89D7: 97, + 0x89E1: 98, + 0x89E5: 99, + 0x89E9: 100, + 0x89F3: 101, + 0x89F6: 102, + 0x89F7: 103, + 0x8A41: 104, + 0x8A42: 105, + 0x8A45: 106, + 0x8A49: 107, + 0x8A51: 108, + 0x8A53: 109, + 0x8A55: 110, + 0x8A57: 111, + 0x8A61: 112, + 0x8A65: 113, + 0x8A69: 114, + 0x8A73: 115, + 0x8A75: 116, + 0x8A81: 117, + 0x8A82: 118, + 0x8A85: 119, + 0x8A88: 120, + 0x8A89: 121, + 0x8A8A: 122, + 0x8A8B: 123, + 0x8A90: 124, + 0x8A91: 125, + 0x8A93: 126, + 0x8A95: 127, + 0x8A97: 128, + 0x8A98: 129, + 0x8AA1: 130, + 0x8AA2: 131, + 0x8AA5: 132, + 0x8AA9: 133, + 0x8AB6: 134, + 0x8AB7: 135, + 0x8AC1: 136, + 0x8AD5: 137, + 0x8AE1: 138, + 0x8AE2: 139, + 0x8AE5: 140, + 0x8AE9: 141, + 0x8AF1: 142, + 0x8AF3: 143, + 0x8AF5: 144, + 0x8B41: 145, + 0x8B45: 146, + 0x8B49: 147, + 0x8B61: 148, + 0x8B62: 149, + 0x8B65: 150, + 0x8B68: 151, + 0x8B69: 152, + 0x8B6A: 153, + 0x8B71: 154, + 0x8B73: 155, + 0x8B75: 156, + 0x8B77: 157, + 0x8B81: 158, + 0x8BA1: 159, + 0x8BA2: 160, + 0x8BA5: 161, + 0x8BA8: 162, + 0x8BA9: 163, + 0x8BAB: 164, + 0x8BB1: 165, + 0x8BB3: 166, + 0x8BB5: 167, + 0x8BB7: 168, + 0x8BB8: 169, + 0x8BBC: 170, + 0x8C61: 171, + 0x8C62: 172, + 0x8C63: 173, + 0x8C65: 174, + 0x8C69: 175, + 0x8C6B: 176, + 0x8C71: 177, + 0x8C73: 178, + 0x8C75: 179, + 0x8C76: 180, + 0x8C77: 181, + 0x8C7B: 182, + 0x8C81: 183, + 0x8C82: 184, + 0x8C85: 185, + 0x8C89: 186, + 0x8C91: 187, + 0x8C93: 188, + 0x8C95: 189, + 0x8C96: 190, + 0x8C97: 191, + 0x8CA1: 192, + 0x8CA2: 193, + 0x8CA9: 194, + 0x8CE1: 195, + 0x8CE2: 196, + 0x8CE3: 197, + 0x8CE5: 198, + 0x8CE9: 199, + 0x8CF1: 200, + 0x8CF3: 201, + 0x8CF5: 202, + 0x8CF6: 203, + 0x8CF7: 204, + 0x8D41: 205, + 0x8D42: 206, + 0x8D45: 207, + 0x8D51: 208, + 0x8D55: 209, + 0x8D57: 210, + 0x8D61: 211, + 0x8D65: 212, + 0x8D69: 213, + 0x8D75: 214, + 0x8D76: 215, + 0x8D7B: 216, + 0x8D81: 217, + 0x8DA1: 218, + 0x8DA2: 219, + 0x8DA5: 220, + 0x8DA7: 221, + 0x8DA9: 222, + 0x8DB1: 223, + 0x8DB3: 224, + 0x8DB5: 225, + 0x8DB7: 226, + 0x8DB8: 227, + 0x8DB9: 228, + 0x8DC1: 229, + 0x8DC2: 230, + 0x8DC9: 231, + 0x8DD6: 232, + 0x8DD7: 233, + 0x8DE1: 234, + 0x8DE2: 235, + 0x8DF7: 236, + 0x8E41: 237, + 0x8E45: 238, + 0x8E49: 239, + 0x8E51: 240, + 0x8E53: 241, + 0x8E57: 242, + 0x8E61: 243, + 0x8E81: 244, + 0x8E82: 245, + 0x8E85: 246, + 0x8E89: 247, + 0x8E90: 248, + 0x8E91: 249, + 0x8E93: 250, + 0x8E95: 251, + 0x8E97: 252, + 0x8E98: 253, + 0x8EA1: 254, + 0x8EA9: 255, + 0x8EB6: 256, + 0x8EB7: 257, + 0x8EC1: 258, + 0x8EC2: 259, + 0x8EC5: 260, + 0x8EC9: 261, + 0x8ED1: 262, + 0x8ED3: 263, + 0x8ED6: 264, + 0x8EE1: 265, + 0x8EE5: 266, + 0x8EE9: 267, + 0x8EF1: 268, + 0x8EF3: 269, + 0x8F41: 270, + 0x8F61: 271, + 0x8F62: 272, + 0x8F65: 273, + 0x8F67: 274, + 0x8F69: 275, + 0x8F6B: 276, + 0x8F70: 277, + 0x8F71: 278, + 0x8F73: 279, + 0x8F75: 280, + 0x8F77: 281, + 0x8F7B: 282, + 0x8FA1: 283, + 0x8FA2: 284, + 0x8FA5: 285, + 0x8FA9: 286, + 0x8FB1: 287, + 0x8FB3: 288, + 0x8FB5: 289, + 0x8FB7: 290, + 0x9061: 291, + 0x9062: 292, + 0x9063: 293, + 0x9065: 294, + 0x9068: 295, + 0x9069: 296, + 0x906A: 297, + 0x906B: 298, + 0x9071: 299, + 0x9073: 300, + 0x9075: 301, + 0x9076: 302, + 0x9077: 303, + 0x9078: 304, + 0x9079: 305, + 0x907B: 306, + 0x907D: 307, + 0x9081: 308, + 0x9082: 309, + 0x9085: 310, + 0x9089: 311, + 0x9091: 312, + 0x9093: 313, + 0x9095: 314, + 0x9096: 315, + 0x9097: 316, + 0x90A1: 317, + 0x90A2: 318, + 0x90A5: 319, + 0x90A9: 320, + 0x90B1: 321, + 0x90B7: 322, + 0x90E1: 323, + 0x90E2: 324, + 0x90E4: 325, + 0x90E5: 326, + 0x90E9: 327, + 0x90EB: 328, + 0x90EC: 329, + 0x90F1: 330, + 0x90F3: 331, + 0x90F5: 332, + 0x90F6: 333, + 0x90F7: 334, + 0x90FD: 335, + 0x9141: 336, + 0x9142: 337, + 0x9145: 338, + 0x9149: 339, + 0x9151: 340, + 0x9153: 341, + 0x9155: 342, + 0x9156: 343, + 0x9157: 344, + 0x9161: 345, + 0x9162: 346, + 0x9165: 347, + 0x9169: 348, + 0x9171: 349, + 0x9173: 350, + 0x9176: 351, + 0x9177: 352, + 0x917A: 353, + 0x9181: 354, + 0x9185: 355, + 0x91A1: 356, + 0x91A2: 357, + 0x91A5: 358, + 0x91A9: 359, + 0x91AB: 360, + 0x91B1: 361, + 0x91B3: 362, + 0x91B5: 363, + 0x91B7: 364, + 0x91BC: 365, + 0x91BD: 366, + 0x91C1: 367, + 0x91C5: 368, + 0x91C9: 369, + 0x91D6: 370, + 0x9241: 371, + 0x9245: 372, + 0x9249: 373, + 0x9251: 374, + 0x9253: 375, + 0x9255: 376, + 0x9261: 377, + 0x9262: 378, + 0x9265: 379, + 0x9269: 380, + 0x9273: 381, + 0x9275: 382, + 0x9277: 383, + 0x9281: 384, + 0x9282: 385, + 0x9285: 386, + 0x9288: 387, + 0x9289: 388, + 0x9291: 389, + 0x9293: 390, + 0x9295: 391, + 0x9297: 392, + 0x92A1: 393, + 0x92B6: 394, + 0x92C1: 395, + 0x92E1: 396, + 0x92E5: 397, + 0x92E9: 398, + 0x92F1: 399, + 0x92F3: 400, + 0x9341: 401, + 0x9342: 402, + 0x9349: 403, + 0x9351: 404, + 0x9353: 405, + 0x9357: 406, + 0x9361: 407, + 0x9362: 408, + 0x9365: 409, + 0x9369: 410, + 0x936A: 411, + 0x936B: 412, + 0x9371: 413, + 0x9373: 414, + 0x9375: 415, + 0x9377: 416, + 0x9378: 417, + 0x937C: 418, + 0x9381: 419, + 0x9385: 420, + 0x9389: 421, + 0x93A1: 422, + 0x93A2: 423, + 0x93A5: 424, + 0x93A9: 425, + 0x93AB: 426, + 0x93B1: 427, + 0x93B3: 428, + 0x93B5: 429, + 0x93B7: 430, + 0x93BC: 431, + 0x9461: 432, + 0x9462: 433, + 0x9463: 434, + 0x9465: 435, + 0x9468: 436, + 0x9469: 437, + 0x946A: 438, + 0x946B: 439, + 0x946C: 440, + 0x9470: 441, + 0x9471: 442, + 0x9473: 443, + 0x9475: 444, + 0x9476: 445, + 0x9477: 446, + 0x9478: 447, + 0x9479: 448, + 0x947D: 449, + 0x9481: 450, + 0x9482: 451, + 0x9485: 452, + 0x9489: 453, + 0x9491: 454, + 0x9493: 455, + 0x9495: 456, + 0x9496: 457, + 0x9497: 458, + 0x94A1: 459, + 0x94E1: 460, + 0x94E2: 461, + 0x94E3: 462, + 0x94E5: 463, + 0x94E8: 464, + 0x94E9: 465, + 0x94EB: 466, + 0x94EC: 467, + 0x94F1: 468, + 0x94F3: 469, + 0x94F5: 470, + 0x94F7: 471, + 0x94F9: 472, + 0x94FC: 473, + 0x9541: 474, + 0x9542: 475, + 0x9545: 476, + 0x9549: 477, + 0x9551: 478, + 0x9553: 479, + 0x9555: 480, + 0x9556: 481, + 0x9557: 482, + 0x9561: 483, + 0x9565: 484, + 0x9569: 485, + 0x9576: 486, + 0x9577: 487, + 0x9581: 488, + 0x9585: 489, + 0x95A1: 490, + 0x95A2: 491, + 0x95A5: 492, + 0x95A8: 493, + 0x95A9: 494, + 0x95AB: 495, + 0x95AD: 496, + 0x95B1: 497, + 0x95B3: 498, + 0x95B5: 499, + 0x95B7: 500, + 0x95B9: 501, + 0x95BB: 502, + 0x95C1: 503, + 0x95C5: 504, + 0x95C9: 505, + 0x95E1: 506, + 0x95F6: 507, + 0x9641: 508, + 0x9645: 509, + 0x9649: 510, + 0x9651: 511, + 0x9653: 512, + 0x9655: 513, + 0x9661: 514, + 0x9681: 515, + 0x9682: 516, + 0x9685: 517, + 0x9689: 518, + 0x9691: 519, + 0x9693: 520, + 0x9695: 521, + 0x9697: 522, + 0x96A1: 523, + 0x96B6: 524, + 0x96C1: 525, + 0x96D7: 526, + 0x96E1: 527, + 0x96E5: 528, + 0x96E9: 529, + 0x96F3: 530, + 0x96F5: 531, + 0x96F7: 532, + 0x9741: 533, + 0x9745: 534, + 0x9749: 535, + 0x9751: 536, + 0x9757: 537, + 0x9761: 538, + 0x9762: 539, + 0x9765: 540, + 0x9768: 541, + 0x9769: 542, + 0x976B: 543, + 0x9771: 544, + 0x9773: 545, + 0x9775: 546, + 0x9777: 547, + 0x9781: 548, + 0x97A1: 549, + 0x97A2: 550, + 0x97A5: 551, + 0x97A8: 552, + 0x97A9: 553, + 0x97B1: 554, + 0x97B3: 555, + 0x97B5: 556, + 0x97B6: 557, + 0x97B7: 558, + 0x97B8: 559, + 0x9861: 560, + 0x9862: 561, + 0x9865: 562, + 0x9869: 563, + 0x9871: 564, + 0x9873: 565, + 0x9875: 566, + 0x9876: 567, + 0x9877: 568, + 0x987D: 569, + 0x9881: 570, + 0x9882: 571, + 0x9885: 572, + 0x9889: 573, + 0x9891: 574, + 0x9893: 575, + 0x9895: 576, + 0x9896: 577, + 0x9897: 578, + 0x98E1: 579, + 0x98E2: 580, + 0x98E5: 581, + 0x98E9: 582, + 0x98EB: 583, + 0x98EC: 584, + 0x98F1: 585, + 0x98F3: 586, + 0x98F5: 587, + 0x98F6: 588, + 0x98F7: 589, + 0x98FD: 590, + 0x9941: 591, + 0x9942: 592, + 0x9945: 593, + 0x9949: 594, + 0x9951: 595, + 0x9953: 596, + 0x9955: 597, + 0x9956: 598, + 0x9957: 599, + 0x9961: 600, + 0x9976: 601, + 0x99A1: 602, + 0x99A2: 603, + 0x99A5: 604, + 0x99A9: 605, + 0x99B7: 606, + 0x99C1: 607, + 0x99C9: 608, + 0x99E1: 609, + 0x9A41: 610, + 0x9A45: 611, + 0x9A81: 612, + 0x9A82: 613, + 0x9A85: 614, + 0x9A89: 615, + 0x9A90: 616, + 0x9A91: 617, + 0x9A97: 618, + 0x9AC1: 619, + 0x9AE1: 620, + 0x9AE5: 621, + 0x9AE9: 622, + 0x9AF1: 623, + 0x9AF3: 624, + 0x9AF7: 625, + 0x9B61: 626, + 0x9B62: 627, + 0x9B65: 628, + 0x9B68: 629, + 0x9B69: 630, + 0x9B71: 631, + 0x9B73: 632, + 0x9B75: 633, + 0x9B81: 634, + 0x9B85: 635, + 0x9B89: 636, + 0x9B91: 637, + 0x9B93: 638, + 0x9BA1: 639, + 0x9BA5: 640, + 0x9BA9: 641, + 0x9BB1: 642, + 0x9BB3: 643, + 0x9BB5: 644, + 0x9BB7: 645, + 0x9C61: 646, + 0x9C62: 647, + 0x9C65: 648, + 0x9C69: 649, + 0x9C71: 650, + 0x9C73: 651, + 0x9C75: 652, + 0x9C76: 653, + 0x9C77: 654, + 0x9C78: 655, + 0x9C7C: 656, + 0x9C7D: 657, + 0x9C81: 658, + 0x9C82: 659, + 0x9C85: 660, + 0x9C89: 661, + 0x9C91: 662, + 0x9C93: 663, + 0x9C95: 664, + 0x9C96: 665, + 0x9C97: 666, + 0x9CA1: 667, + 0x9CA2: 668, + 0x9CA5: 669, + 0x9CB5: 670, + 0x9CB7: 671, + 0x9CE1: 672, + 0x9CE2: 673, + 0x9CE5: 674, + 0x9CE9: 675, + 0x9CF1: 676, + 0x9CF3: 677, + 0x9CF5: 678, + 0x9CF6: 679, + 0x9CF7: 680, + 0x9CFD: 681, + 0x9D41: 682, + 0x9D42: 683, + 0x9D45: 684, + 0x9D49: 685, + 0x9D51: 686, + 0x9D53: 687, + 0x9D55: 688, + 0x9D57: 689, + 0x9D61: 690, + 0x9D62: 691, + 0x9D65: 692, + 0x9D69: 693, + 0x9D71: 694, + 0x9D73: 695, + 0x9D75: 696, + 0x9D76: 697, + 0x9D77: 698, + 0x9D81: 699, + 0x9D85: 700, + 0x9D93: 701, + 0x9D95: 702, + 0x9DA1: 703, + 0x9DA2: 704, + 0x9DA5: 705, + 0x9DA9: 706, + 0x9DB1: 707, + 0x9DB3: 708, + 0x9DB5: 709, + 0x9DB7: 710, + 0x9DC1: 711, + 0x9DC5: 712, + 0x9DD7: 713, + 0x9DF6: 714, + 0x9E41: 715, + 0x9E45: 716, + 0x9E49: 717, + 0x9E51: 718, + 0x9E53: 719, + 0x9E55: 720, + 0x9E57: 721, + 0x9E61: 722, + 0x9E65: 723, + 0x9E69: 724, + 0x9E73: 725, + 0x9E75: 726, + 0x9E77: 727, + 0x9E81: 728, + 0x9E82: 729, + 0x9E85: 730, + 0x9E89: 731, + 0x9E91: 732, + 0x9E93: 733, + 0x9E95: 734, + 0x9E97: 735, + 0x9EA1: 736, + 0x9EB6: 737, + 0x9EC1: 738, + 0x9EE1: 739, + 0x9EE2: 740, + 0x9EE5: 741, + 0x9EE9: 742, + 0x9EF1: 743, + 0x9EF5: 744, + 0x9EF7: 745, + 0x9F41: 746, + 0x9F42: 747, + 0x9F45: 748, + 0x9F49: 749, + 0x9F51: 750, + 0x9F53: 751, + 0x9F55: 752, + 0x9F57: 753, + 0x9F61: 754, + 0x9F62: 755, + 0x9F65: 756, + 0x9F69: 757, + 0x9F71: 758, + 0x9F73: 759, + 0x9F75: 760, + 0x9F77: 761, + 0x9F78: 762, + 0x9F7B: 763, + 0x9F7C: 764, + 0x9FA1: 765, + 0x9FA2: 766, + 0x9FA5: 767, + 0x9FA9: 768, + 0x9FB1: 769, + 0x9FB3: 770, + 0x9FB5: 771, + 0x9FB7: 772, + 0xA061: 773, + 0xA062: 774, + 0xA065: 775, + 0xA067: 776, + 0xA068: 777, + 0xA069: 778, + 0xA06A: 779, + 0xA06B: 780, + 0xA071: 781, + 0xA073: 782, + 0xA075: 783, + 0xA077: 784, + 0xA078: 785, + 0xA07B: 786, + 0xA07D: 787, + 0xA081: 788, + 0xA082: 789, + 0xA085: 790, + 0xA089: 791, + 0xA091: 792, + 0xA093: 793, + 0xA095: 794, + 0xA096: 795, + 0xA097: 796, + 0xA098: 797, + 0xA0A1: 798, + 0xA0A2: 799, + 0xA0A9: 800, + 0xA0B7: 801, + 0xA0E1: 802, + 0xA0E2: 803, + 0xA0E5: 804, + 0xA0E9: 805, + 0xA0EB: 806, + 0xA0F1: 807, + 0xA0F3: 808, + 0xA0F5: 809, + 0xA0F7: 810, + 0xA0F8: 811, + 0xA0FD: 812, + 0xA141: 813, + 0xA142: 814, + 0xA145: 815, + 0xA149: 816, + 0xA151: 817, + 0xA153: 818, + 0xA155: 819, + 0xA156: 820, + 0xA157: 821, + 0xA161: 822, + 0xA162: 823, + 0xA165: 824, + 0xA169: 825, + 0xA175: 826, + 0xA176: 827, + 0xA177: 828, + 0xA179: 829, + 0xA181: 830, + 0xA1A1: 831, + 0xA1A2: 832, + 0xA1A4: 833, + 0xA1A5: 834, + 0xA1A9: 835, + 0xA1AB: 836, + 0xA1B1: 837, + 0xA1B3: 838, + 0xA1B5: 839, + 0xA1B7: 840, + 0xA1C1: 841, + 0xA1C5: 842, + 0xA1D6: 843, + 0xA1D7: 844, + 0xA241: 845, + 0xA245: 846, + 0xA249: 847, + 0xA253: 848, + 0xA255: 849, + 0xA257: 850, + 0xA261: 851, + 0xA265: 852, + 0xA269: 853, + 0xA273: 854, + 0xA275: 855, + 0xA281: 856, + 0xA282: 857, + 0xA283: 858, + 0xA285: 859, + 0xA288: 860, + 0xA289: 861, + 0xA28A: 862, + 0xA28B: 863, + 0xA291: 864, + 0xA293: 865, + 0xA295: 866, + 0xA297: 867, + 0xA29B: 868, + 0xA29D: 869, + 0xA2A1: 870, + 0xA2A5: 871, + 0xA2A9: 872, + 0xA2B3: 873, + 0xA2B5: 874, + 0xA2C1: 875, + 0xA2E1: 876, + 0xA2E5: 877, + 0xA2E9: 878, + 0xA341: 879, + 0xA345: 880, + 0xA349: 881, + 0xA351: 882, + 0xA355: 883, + 0xA361: 884, + 0xA365: 885, + 0xA369: 886, + 0xA371: 887, + 0xA375: 888, + 0xA3A1: 889, + 0xA3A2: 890, + 0xA3A5: 891, + 0xA3A8: 892, + 0xA3A9: 893, + 0xA3AB: 894, + 0xA3B1: 895, + 0xA3B3: 896, + 0xA3B5: 897, + 0xA3B6: 898, + 0xA3B7: 899, + 0xA3B9: 900, + 0xA3BB: 901, + 0xA461: 902, + 0xA462: 903, + 0xA463: 904, + 0xA464: 905, + 0xA465: 906, + 0xA468: 907, + 0xA469: 908, + 0xA46A: 909, + 0xA46B: 910, + 0xA46C: 911, + 0xA471: 912, + 0xA473: 913, + 0xA475: 914, + 0xA477: 915, + 0xA47B: 916, + 0xA481: 917, + 0xA482: 918, + 0xA485: 919, + 0xA489: 920, + 0xA491: 921, + 0xA493: 922, + 0xA495: 923, + 0xA496: 924, + 0xA497: 925, + 0xA49B: 926, + 0xA4A1: 927, + 0xA4A2: 928, + 0xA4A5: 929, + 0xA4B3: 930, + 0xA4E1: 931, + 0xA4E2: 932, + 0xA4E5: 933, + 0xA4E8: 934, + 0xA4E9: 935, + 0xA4EB: 936, + 0xA4F1: 937, + 0xA4F3: 938, + 0xA4F5: 939, + 0xA4F7: 940, + 0xA4F8: 941, + 0xA541: 942, + 0xA542: 943, + 0xA545: 944, + 0xA548: 945, + 0xA549: 946, + 0xA551: 947, + 0xA553: 948, + 0xA555: 949, + 0xA556: 950, + 0xA557: 951, + 0xA561: 952, + 0xA562: 953, + 0xA565: 954, + 0xA569: 955, + 0xA573: 956, + 0xA575: 957, + 0xA576: 958, + 0xA577: 959, + 0xA57B: 960, + 0xA581: 961, + 0xA585: 962, + 0xA5A1: 963, + 0xA5A2: 964, + 0xA5A3: 965, + 0xA5A5: 966, + 0xA5A9: 967, + 0xA5B1: 968, + 0xA5B3: 969, + 0xA5B5: 970, + 0xA5B7: 971, + 0xA5C1: 972, + 0xA5C5: 973, + 0xA5D6: 974, + 0xA5E1: 975, + 0xA5F6: 976, + 0xA641: 977, + 0xA642: 978, + 0xA645: 979, + 0xA649: 980, + 0xA651: 981, + 0xA653: 982, + 0xA661: 983, + 0xA665: 984, + 0xA681: 985, + 0xA682: 986, + 0xA685: 987, + 0xA688: 988, + 0xA689: 989, + 0xA68A: 990, + 0xA68B: 991, + 0xA691: 992, + 0xA693: 993, + 0xA695: 994, + 0xA697: 995, + 0xA69B: 996, + 0xA69C: 997, + 0xA6A1: 998, + 0xA6A9: 999, + 0xA6B6: 1000, + 0xA6C1: 1001, + 0xA6E1: 1002, + 0xA6E2: 1003, + 0xA6E5: 1004, + 0xA6E9: 1005, + 0xA6F7: 1006, + 0xA741: 1007, + 0xA745: 1008, + 0xA749: 1009, + 0xA751: 1010, + 0xA755: 1011, + 0xA757: 1012, + 0xA761: 1013, + 0xA762: 1014, + 0xA765: 1015, + 0xA769: 1016, + 0xA771: 1017, + 0xA773: 1018, + 0xA775: 1019, + 0xA7A1: 1020, + 0xA7A2: 1021, + 0xA7A5: 1022, + 0xA7A9: 1023, + 0xA7AB: 1024, + 0xA7B1: 1025, + 0xA7B3: 1026, + 0xA7B5: 1027, + 0xA7B7: 1028, + 0xA7B8: 1029, + 0xA7B9: 1030, + 0xA861: 1031, + 0xA862: 1032, + 0xA865: 1033, + 0xA869: 1034, + 0xA86B: 1035, + 0xA871: 1036, + 0xA873: 1037, + 0xA875: 1038, + 0xA876: 1039, + 0xA877: 1040, + 0xA87D: 1041, + 0xA881: 1042, + 0xA882: 1043, + 0xA885: 1044, + 0xA889: 1045, + 0xA891: 1046, + 0xA893: 1047, + 0xA895: 1048, + 0xA896: 1049, + 0xA897: 1050, + 0xA8A1: 1051, + 0xA8A2: 1052, + 0xA8B1: 1053, + 0xA8E1: 1054, + 0xA8E2: 1055, + 0xA8E5: 1056, + 0xA8E8: 1057, + 0xA8E9: 1058, + 0xA8F1: 1059, + 0xA8F5: 1060, + 0xA8F6: 1061, + 0xA8F7: 1062, + 0xA941: 1063, + 0xA957: 1064, + 0xA961: 1065, + 0xA962: 1066, + 0xA971: 1067, + 0xA973: 1068, + 0xA975: 1069, + 0xA976: 1070, + 0xA977: 1071, + 0xA9A1: 1072, + 0xA9A2: 1073, + 0xA9A5: 1074, + 0xA9A9: 1075, + 0xA9B1: 1076, + 0xA9B3: 1077, + 0xA9B7: 1078, + 0xAA41: 1079, + 0xAA61: 1080, + 0xAA77: 1081, + 0xAA81: 1082, + 0xAA82: 1083, + 0xAA85: 1084, + 0xAA89: 1085, + 0xAA91: 1086, + 0xAA95: 1087, + 0xAA97: 1088, + 0xAB41: 1089, + 0xAB57: 1090, + 0xAB61: 1091, + 0xAB65: 1092, + 0xAB69: 1093, + 0xAB71: 1094, + 0xAB73: 1095, + 0xABA1: 1096, + 0xABA2: 1097, + 0xABA5: 1098, + 0xABA9: 1099, + 0xABB1: 1100, + 0xABB3: 1101, + 0xABB5: 1102, + 0xABB7: 1103, + 0xAC61: 1104, + 0xAC62: 1105, + 0xAC64: 1106, + 0xAC65: 1107, + 0xAC68: 1108, + 0xAC69: 1109, + 0xAC6A: 1110, + 0xAC6B: 1111, + 0xAC71: 1112, + 0xAC73: 1113, + 0xAC75: 1114, + 0xAC76: 1115, + 0xAC77: 1116, + 0xAC7B: 1117, + 0xAC81: 1118, + 0xAC82: 1119, + 0xAC85: 1120, + 0xAC89: 1121, + 0xAC91: 1122, + 0xAC93: 1123, + 0xAC95: 1124, + 0xAC96: 1125, + 0xAC97: 1126, + 0xACA1: 1127, + 0xACA2: 1128, + 0xACA5: 1129, + 0xACA9: 1130, + 0xACB1: 1131, + 0xACB3: 1132, + 0xACB5: 1133, + 0xACB7: 1134, + 0xACC1: 1135, + 0xACC5: 1136, + 0xACC9: 1137, + 0xACD1: 1138, + 0xACD7: 1139, + 0xACE1: 1140, + 0xACE2: 1141, + 0xACE3: 1142, + 0xACE4: 1143, + 0xACE5: 1144, + 0xACE8: 1145, + 0xACE9: 1146, + 0xACEB: 1147, + 0xACEC: 1148, + 0xACF1: 1149, + 0xACF3: 1150, + 0xACF5: 1151, + 0xACF6: 1152, + 0xACF7: 1153, + 0xACFC: 1154, + 0xAD41: 1155, + 0xAD42: 1156, + 0xAD45: 1157, + 0xAD49: 1158, + 0xAD51: 1159, + 0xAD53: 1160, + 0xAD55: 1161, + 0xAD56: 1162, + 0xAD57: 1163, + 0xAD61: 1164, + 0xAD62: 1165, + 0xAD65: 1166, + 0xAD69: 1167, + 0xAD71: 1168, + 0xAD73: 1169, + 0xAD75: 1170, + 0xAD76: 1171, + 0xAD77: 1172, + 0xAD81: 1173, + 0xAD85: 1174, + 0xAD89: 1175, + 0xAD97: 1176, + 0xADA1: 1177, + 0xADA2: 1178, + 0xADA3: 1179, + 0xADA5: 1180, + 0xADA9: 1181, + 0xADAB: 1182, + 0xADB1: 1183, + 0xADB3: 1184, + 0xADB5: 1185, + 0xADB7: 1186, + 0xADBB: 1187, + 0xADC1: 1188, + 0xADC2: 1189, + 0xADC5: 1190, + 0xADC9: 1191, + 0xADD7: 1192, + 0xADE1: 1193, + 0xADE5: 1194, + 0xADE9: 1195, + 0xADF1: 1196, + 0xADF5: 1197, + 0xADF6: 1198, + 0xAE41: 1199, + 0xAE45: 1200, + 0xAE49: 1201, + 0xAE51: 1202, + 0xAE53: 1203, + 0xAE55: 1204, + 0xAE61: 1205, + 0xAE62: 1206, + 0xAE65: 1207, + 0xAE69: 1208, + 0xAE71: 1209, + 0xAE73: 1210, + 0xAE75: 1211, + 0xAE77: 1212, + 0xAE81: 1213, + 0xAE82: 1214, + 0xAE85: 1215, + 0xAE88: 1216, + 0xAE89: 1217, + 0xAE91: 1218, + 0xAE93: 1219, + 0xAE95: 1220, + 0xAE97: 1221, + 0xAE99: 1222, + 0xAE9B: 1223, + 0xAE9C: 1224, + 0xAEA1: 1225, + 0xAEB6: 1226, + 0xAEC1: 1227, + 0xAEC2: 1228, + 0xAEC5: 1229, + 0xAEC9: 1230, + 0xAED1: 1231, + 0xAED7: 1232, + 0xAEE1: 1233, + 0xAEE2: 1234, + 0xAEE5: 1235, + 0xAEE9: 1236, + 0xAEF1: 1237, + 0xAEF3: 1238, + 0xAEF5: 1239, + 0xAEF7: 1240, + 0xAF41: 1241, + 0xAF42: 1242, + 0xAF49: 1243, + 0xAF51: 1244, + 0xAF55: 1245, + 0xAF57: 1246, + 0xAF61: 1247, + 0xAF62: 1248, + 0xAF65: 1249, + 0xAF69: 1250, + 0xAF6A: 1251, + 0xAF71: 1252, + 0xAF73: 1253, + 0xAF75: 1254, + 0xAF77: 1255, + 0xAFA1: 1256, + 0xAFA2: 1257, + 0xAFA5: 1258, + 0xAFA8: 1259, + 0xAFA9: 1260, + 0xAFB0: 1261, + 0xAFB1: 1262, + 0xAFB3: 1263, + 0xAFB5: 1264, + 0xAFB7: 1265, + 0xAFBC: 1266, + 0xB061: 1267, + 0xB062: 1268, + 0xB064: 1269, + 0xB065: 1270, + 0xB069: 1271, + 0xB071: 1272, + 0xB073: 1273, + 0xB076: 1274, + 0xB077: 1275, + 0xB07D: 1276, + 0xB081: 1277, + 0xB082: 1278, + 0xB085: 1279, + 0xB089: 1280, + 0xB091: 1281, + 0xB093: 1282, + 0xB096: 1283, + 0xB097: 1284, + 0xB0B7: 1285, + 0xB0E1: 1286, + 0xB0E2: 1287, + 0xB0E5: 1288, + 0xB0E9: 1289, + 0xB0EB: 1290, + 0xB0F1: 1291, + 0xB0F3: 1292, + 0xB0F6: 1293, + 0xB0F7: 1294, + 0xB141: 1295, + 0xB145: 1296, + 0xB149: 1297, + 0xB185: 1298, + 0xB1A1: 1299, + 0xB1A2: 1300, + 0xB1A5: 1301, + 0xB1A8: 1302, + 0xB1A9: 1303, + 0xB1AB: 1304, + 0xB1B1: 1305, + 0xB1B3: 1306, + 0xB1B7: 1307, + 0xB1C1: 1308, + 0xB1C2: 1309, + 0xB1C5: 1310, + 0xB1D6: 1311, + 0xB1E1: 1312, + 0xB1F6: 1313, + 0xB241: 1314, + 0xB245: 1315, + 0xB249: 1316, + 0xB251: 1317, + 0xB253: 1318, + 0xB261: 1319, + 0xB281: 1320, + 0xB282: 1321, + 0xB285: 1322, + 0xB289: 1323, + 0xB291: 1324, + 0xB293: 1325, + 0xB297: 1326, + 0xB2A1: 1327, + 0xB2B6: 1328, + 0xB2C1: 1329, + 0xB2E1: 1330, + 0xB2E5: 1331, + 0xB357: 1332, + 0xB361: 1333, + 0xB362: 1334, + 0xB365: 1335, + 0xB369: 1336, + 0xB36B: 1337, + 0xB370: 1338, + 0xB371: 1339, + 0xB373: 1340, + 0xB381: 1341, + 0xB385: 1342, + 0xB389: 1343, + 0xB391: 1344, + 0xB3A1: 1345, + 0xB3A2: 1346, + 0xB3A5: 1347, + 0xB3A9: 1348, + 0xB3B1: 1349, + 0xB3B3: 1350, + 0xB3B5: 1351, + 0xB3B7: 1352, + 0xB461: 1353, + 0xB462: 1354, + 0xB465: 1355, + 0xB466: 1356, + 0xB467: 1357, + 0xB469: 1358, + 0xB46A: 1359, + 0xB46B: 1360, + 0xB470: 1361, + 0xB471: 1362, + 0xB473: 1363, + 0xB475: 1364, + 0xB476: 1365, + 0xB477: 1366, + 0xB47B: 1367, + 0xB47C: 1368, + 0xB481: 1369, + 0xB482: 1370, + 0xB485: 1371, + 0xB489: 1372, + 0xB491: 1373, + 0xB493: 1374, + 0xB495: 1375, + 0xB496: 1376, + 0xB497: 1377, + 0xB4A1: 1378, + 0xB4A2: 1379, + 0xB4A5: 1380, + 0xB4A9: 1381, + 0xB4AC: 1382, + 0xB4B1: 1383, + 0xB4B3: 1384, + 0xB4B5: 1385, + 0xB4B7: 1386, + 0xB4BB: 1387, + 0xB4BD: 1388, + 0xB4C1: 1389, + 0xB4C5: 1390, + 0xB4C9: 1391, + 0xB4D3: 1392, + 0xB4E1: 1393, + 0xB4E2: 1394, + 0xB4E5: 1395, + 0xB4E6: 1396, + 0xB4E8: 1397, + 0xB4E9: 1398, + 0xB4EA: 1399, + 0xB4EB: 1400, + 0xB4F1: 1401, + 0xB4F3: 1402, + 0xB4F4: 1403, + 0xB4F5: 1404, + 0xB4F6: 1405, + 0xB4F7: 1406, + 0xB4F8: 1407, + 0xB4FA: 1408, + 0xB4FC: 1409, + 0xB541: 1410, + 0xB542: 1411, + 0xB545: 1412, + 0xB549: 1413, + 0xB551: 1414, + 0xB553: 1415, + 0xB555: 1416, + 0xB557: 1417, + 0xB561: 1418, + 0xB562: 1419, + 0xB563: 1420, + 0xB565: 1421, + 0xB569: 1422, + 0xB56B: 1423, + 0xB56C: 1424, + 0xB571: 1425, + 0xB573: 1426, + 0xB574: 1427, + 0xB575: 1428, + 0xB576: 1429, + 0xB577: 1430, + 0xB57B: 1431, + 0xB57C: 1432, + 0xB57D: 1433, + 0xB581: 1434, + 0xB585: 1435, + 0xB589: 1436, + 0xB591: 1437, + 0xB593: 1438, + 0xB595: 1439, + 0xB596: 1440, + 0xB5A1: 1441, + 0xB5A2: 1442, + 0xB5A5: 1443, + 0xB5A9: 1444, + 0xB5AA: 1445, + 0xB5AB: 1446, + 0xB5AD: 1447, + 0xB5B0: 1448, + 0xB5B1: 1449, + 0xB5B3: 1450, + 0xB5B5: 1451, + 0xB5B7: 1452, + 0xB5B9: 1453, + 0xB5C1: 1454, + 0xB5C2: 1455, + 0xB5C5: 1456, + 0xB5C9: 1457, + 0xB5D1: 1458, + 0xB5D3: 1459, + 0xB5D5: 1460, + 0xB5D6: 1461, + 0xB5D7: 1462, + 0xB5E1: 1463, + 0xB5E2: 1464, + 0xB5E5: 1465, + 0xB5F1: 1466, + 0xB5F5: 1467, + 0xB5F7: 1468, + 0xB641: 1469, + 0xB642: 1470, + 0xB645: 1471, + 0xB649: 1472, + 0xB651: 1473, + 0xB653: 1474, + 0xB655: 1475, + 0xB657: 1476, + 0xB661: 1477, + 0xB662: 1478, + 0xB665: 1479, + 0xB669: 1480, + 0xB671: 1481, + 0xB673: 1482, + 0xB675: 1483, + 0xB677: 1484, + 0xB681: 1485, + 0xB682: 1486, + 0xB685: 1487, + 0xB689: 1488, + 0xB68A: 1489, + 0xB68B: 1490, + 0xB691: 1491, + 0xB693: 1492, + 0xB695: 1493, + 0xB697: 1494, + 0xB6A1: 1495, + 0xB6A2: 1496, + 0xB6A5: 1497, + 0xB6A9: 1498, + 0xB6B1: 1499, + 0xB6B3: 1500, + 0xB6B6: 1501, + 0xB6B7: 1502, + 0xB6C1: 1503, + 0xB6C2: 1504, + 0xB6C5: 1505, + 0xB6C9: 1506, + 0xB6D1: 1507, + 0xB6D3: 1508, + 0xB6D7: 1509, + 0xB6E1: 1510, + 0xB6E2: 1511, + 0xB6E5: 1512, + 0xB6E9: 1513, + 0xB6F1: 1514, + 0xB6F3: 1515, + 0xB6F5: 1516, + 0xB6F7: 1517, + 0xB741: 1518, + 0xB742: 1519, + 0xB745: 1520, + 0xB749: 1521, + 0xB751: 1522, + 0xB753: 1523, + 0xB755: 1524, + 0xB757: 1525, + 0xB759: 1526, + 0xB761: 1527, + 0xB762: 1528, + 0xB765: 1529, + 0xB769: 1530, + 0xB76F: 1531, + 0xB771: 1532, + 0xB773: 1533, + 0xB775: 1534, + 0xB777: 1535, + 0xB778: 1536, + 0xB779: 1537, + 0xB77A: 1538, + 0xB77B: 1539, + 0xB77C: 1540, + 0xB77D: 1541, + 0xB781: 1542, + 0xB785: 1543, + 0xB789: 1544, + 0xB791: 1545, + 0xB795: 1546, + 0xB7A1: 1547, + 0xB7A2: 1548, + 0xB7A5: 1549, + 0xB7A9: 1550, + 0xB7AA: 1551, + 0xB7AB: 1552, + 0xB7B0: 1553, + 0xB7B1: 1554, + 0xB7B3: 1555, + 0xB7B5: 1556, + 0xB7B6: 1557, + 0xB7B7: 1558, + 0xB7B8: 1559, + 0xB7BC: 1560, + 0xB861: 1561, + 0xB862: 1562, + 0xB865: 1563, + 0xB867: 1564, + 0xB868: 1565, + 0xB869: 1566, + 0xB86B: 1567, + 0xB871: 1568, + 0xB873: 1569, + 0xB875: 1570, + 0xB876: 1571, + 0xB877: 1572, + 0xB878: 1573, + 0xB881: 1574, + 0xB882: 1575, + 0xB885: 1576, + 0xB889: 1577, + 0xB891: 1578, + 0xB893: 1579, + 0xB895: 1580, + 0xB896: 1581, + 0xB897: 1582, + 0xB8A1: 1583, + 0xB8A2: 1584, + 0xB8A5: 1585, + 0xB8A7: 1586, + 0xB8A9: 1587, + 0xB8B1: 1588, + 0xB8B7: 1589, + 0xB8C1: 1590, + 0xB8C5: 1591, + 0xB8C9: 1592, + 0xB8E1: 1593, + 0xB8E2: 1594, + 0xB8E5: 1595, + 0xB8E9: 1596, + 0xB8EB: 1597, + 0xB8F1: 1598, + 0xB8F3: 1599, + 0xB8F5: 1600, + 0xB8F7: 1601, + 0xB8F8: 1602, + 0xB941: 1603, + 0xB942: 1604, + 0xB945: 1605, + 0xB949: 1606, + 0xB951: 1607, + 0xB953: 1608, + 0xB955: 1609, + 0xB957: 1610, + 0xB961: 1611, + 0xB965: 1612, + 0xB969: 1613, + 0xB971: 1614, + 0xB973: 1615, + 0xB976: 1616, + 0xB977: 1617, + 0xB981: 1618, + 0xB9A1: 1619, + 0xB9A2: 1620, + 0xB9A5: 1621, + 0xB9A9: 1622, + 0xB9AB: 1623, + 0xB9B1: 1624, + 0xB9B3: 1625, + 0xB9B5: 1626, + 0xB9B7: 1627, + 0xB9B8: 1628, + 0xB9B9: 1629, + 0xB9BD: 1630, + 0xB9C1: 1631, + 0xB9C2: 1632, + 0xB9C9: 1633, + 0xB9D3: 1634, + 0xB9D5: 1635, + 0xB9D7: 1636, + 0xB9E1: 1637, + 0xB9F6: 1638, + 0xB9F7: 1639, + 0xBA41: 1640, + 0xBA45: 1641, + 0xBA49: 1642, + 0xBA51: 1643, + 0xBA53: 1644, + 0xBA55: 1645, + 0xBA57: 1646, + 0xBA61: 1647, + 0xBA62: 1648, + 0xBA65: 1649, + 0xBA77: 1650, + 0xBA81: 1651, + 0xBA82: 1652, + 0xBA85: 1653, + 0xBA89: 1654, + 0xBA8A: 1655, + 0xBA8B: 1656, + 0xBA91: 1657, + 0xBA93: 1658, + 0xBA95: 1659, + 0xBA97: 1660, + 0xBAA1: 1661, + 0xBAB6: 1662, + 0xBAC1: 1663, + 0xBAE1: 1664, + 0xBAE2: 1665, + 0xBAE5: 1666, + 0xBAE9: 1667, + 0xBAF1: 1668, + 0xBAF3: 1669, + 0xBAF5: 1670, + 0xBB41: 1671, + 0xBB45: 1672, + 0xBB49: 1673, + 0xBB51: 1674, + 0xBB61: 1675, + 0xBB62: 1676, + 0xBB65: 1677, + 0xBB69: 1678, + 0xBB71: 1679, + 0xBB73: 1680, + 0xBB75: 1681, + 0xBB77: 1682, + 0xBBA1: 1683, + 0xBBA2: 1684, + 0xBBA5: 1685, + 0xBBA8: 1686, + 0xBBA9: 1687, + 0xBBAB: 1688, + 0xBBB1: 1689, + 0xBBB3: 1690, + 0xBBB5: 1691, + 0xBBB7: 1692, + 0xBBB8: 1693, + 0xBBBB: 1694, + 0xBBBC: 1695, + 0xBC61: 1696, + 0xBC62: 1697, + 0xBC65: 1698, + 0xBC67: 1699, + 0xBC69: 1700, + 0xBC6C: 1701, + 0xBC71: 1702, + 0xBC73: 1703, + 0xBC75: 1704, + 0xBC76: 1705, + 0xBC77: 1706, + 0xBC81: 1707, + 0xBC82: 1708, + 0xBC85: 1709, + 0xBC89: 1710, + 0xBC91: 1711, + 0xBC93: 1712, + 0xBC95: 1713, + 0xBC96: 1714, + 0xBC97: 1715, + 0xBCA1: 1716, + 0xBCA5: 1717, + 0xBCB7: 1718, + 0xBCE1: 1719, + 0xBCE2: 1720, + 0xBCE5: 1721, + 0xBCE9: 1722, + 0xBCF1: 1723, + 0xBCF3: 1724, + 0xBCF5: 1725, + 0xBCF6: 1726, + 0xBCF7: 1727, + 0xBD41: 1728, + 0xBD57: 1729, + 0xBD61: 1730, + 0xBD76: 1731, + 0xBDA1: 1732, + 0xBDA2: 1733, + 0xBDA5: 1734, + 0xBDA9: 1735, + 0xBDB1: 1736, + 0xBDB3: 1737, + 0xBDB5: 1738, + 0xBDB7: 1739, + 0xBDB9: 1740, + 0xBDC1: 1741, + 0xBDC2: 1742, + 0xBDC9: 1743, + 0xBDD6: 1744, + 0xBDE1: 1745, + 0xBDF6: 1746, + 0xBE41: 1747, + 0xBE45: 1748, + 0xBE49: 1749, + 0xBE51: 1750, + 0xBE53: 1751, + 0xBE77: 1752, + 0xBE81: 1753, + 0xBE82: 1754, + 0xBE85: 1755, + 0xBE89: 1756, + 0xBE91: 1757, + 0xBE93: 1758, + 0xBE97: 1759, + 0xBEA1: 1760, + 0xBEB6: 1761, + 0xBEB7: 1762, + 0xBEE1: 1763, + 0xBF41: 1764, + 0xBF61: 1765, + 0xBF71: 1766, + 0xBF75: 1767, + 0xBF77: 1768, + 0xBFA1: 1769, + 0xBFA2: 1770, + 0xBFA5: 1771, + 0xBFA9: 1772, + 0xBFB1: 1773, + 0xBFB3: 1774, + 0xBFB7: 1775, + 0xBFB8: 1776, + 0xBFBD: 1777, + 0xC061: 1778, + 0xC062: 1779, + 0xC065: 1780, + 0xC067: 1781, + 0xC069: 1782, + 0xC071: 1783, + 0xC073: 1784, + 0xC075: 1785, + 0xC076: 1786, + 0xC077: 1787, + 0xC078: 1788, + 0xC081: 1789, + 0xC082: 1790, + 0xC085: 1791, + 0xC089: 1792, + 0xC091: 1793, + 0xC093: 1794, + 0xC095: 1795, + 0xC096: 1796, + 0xC097: 1797, + 0xC0A1: 1798, + 0xC0A5: 1799, + 0xC0A7: 1800, + 0xC0A9: 1801, + 0xC0B1: 1802, + 0xC0B7: 1803, + 0xC0E1: 1804, + 0xC0E2: 1805, + 0xC0E5: 1806, + 0xC0E9: 1807, + 0xC0F1: 1808, + 0xC0F3: 1809, + 0xC0F5: 1810, + 0xC0F6: 1811, + 0xC0F7: 1812, + 0xC141: 1813, + 0xC142: 1814, + 0xC145: 1815, + 0xC149: 1816, + 0xC151: 1817, + 0xC153: 1818, + 0xC155: 1819, + 0xC157: 1820, + 0xC161: 1821, + 0xC165: 1822, + 0xC176: 1823, + 0xC181: 1824, + 0xC185: 1825, + 0xC197: 1826, + 0xC1A1: 1827, + 0xC1A2: 1828, + 0xC1A5: 1829, + 0xC1A9: 1830, + 0xC1B1: 1831, + 0xC1B3: 1832, + 0xC1B5: 1833, + 0xC1B7: 1834, + 0xC1C1: 1835, + 0xC1C5: 1836, + 0xC1C9: 1837, + 0xC1D7: 1838, + 0xC241: 1839, + 0xC245: 1840, + 0xC249: 1841, + 0xC251: 1842, + 0xC253: 1843, + 0xC255: 1844, + 0xC257: 1845, + 0xC261: 1846, + 0xC271: 1847, + 0xC281: 1848, + 0xC282: 1849, + 0xC285: 1850, + 0xC289: 1851, + 0xC291: 1852, + 0xC293: 1853, + 0xC295: 1854, + 0xC297: 1855, + 0xC2A1: 1856, + 0xC2B6: 1857, + 0xC2C1: 1858, + 0xC2C5: 1859, + 0xC2E1: 1860, + 0xC2E5: 1861, + 0xC2E9: 1862, + 0xC2F1: 1863, + 0xC2F3: 1864, + 0xC2F5: 1865, + 0xC2F7: 1866, + 0xC341: 1867, + 0xC345: 1868, + 0xC349: 1869, + 0xC351: 1870, + 0xC357: 1871, + 0xC361: 1872, + 0xC362: 1873, + 0xC365: 1874, + 0xC369: 1875, + 0xC371: 1876, + 0xC373: 1877, + 0xC375: 1878, + 0xC377: 1879, + 0xC3A1: 1880, + 0xC3A2: 1881, + 0xC3A5: 1882, + 0xC3A8: 1883, + 0xC3A9: 1884, + 0xC3AA: 1885, + 0xC3B1: 1886, + 0xC3B3: 1887, + 0xC3B5: 1888, + 0xC3B7: 1889, + 0xC461: 1890, + 0xC462: 1891, + 0xC465: 1892, + 0xC469: 1893, + 0xC471: 1894, + 0xC473: 1895, + 0xC475: 1896, + 0xC477: 1897, + 0xC481: 1898, + 0xC482: 1899, + 0xC485: 1900, + 0xC489: 1901, + 0xC491: 1902, + 0xC493: 1903, + 0xC495: 1904, + 0xC496: 1905, + 0xC497: 1906, + 0xC4A1: 1907, + 0xC4A2: 1908, + 0xC4B7: 1909, + 0xC4E1: 1910, + 0xC4E2: 1911, + 0xC4E5: 1912, + 0xC4E8: 1913, + 0xC4E9: 1914, + 0xC4F1: 1915, + 0xC4F3: 1916, + 0xC4F5: 1917, + 0xC4F6: 1918, + 0xC4F7: 1919, + 0xC541: 1920, + 0xC542: 1921, + 0xC545: 1922, + 0xC549: 1923, + 0xC551: 1924, + 0xC553: 1925, + 0xC555: 1926, + 0xC557: 1927, + 0xC561: 1928, + 0xC565: 1929, + 0xC569: 1930, + 0xC571: 1931, + 0xC573: 1932, + 0xC575: 1933, + 0xC576: 1934, + 0xC577: 1935, + 0xC581: 1936, + 0xC5A1: 1937, + 0xC5A2: 1938, + 0xC5A5: 1939, + 0xC5A9: 1940, + 0xC5B1: 1941, + 0xC5B3: 1942, + 0xC5B5: 1943, + 0xC5B7: 1944, + 0xC5C1: 1945, + 0xC5C2: 1946, + 0xC5C5: 1947, + 0xC5C9: 1948, + 0xC5D1: 1949, + 0xC5D7: 1950, + 0xC5E1: 1951, + 0xC5F7: 1952, + 0xC641: 1953, + 0xC649: 1954, + 0xC661: 1955, + 0xC681: 1956, + 0xC682: 1957, + 0xC685: 1958, + 0xC689: 1959, + 0xC691: 1960, + 0xC693: 1961, + 0xC695: 1962, + 0xC697: 1963, + 0xC6A1: 1964, + 0xC6A5: 1965, + 0xC6A9: 1966, + 0xC6B7: 1967, + 0xC6C1: 1968, + 0xC6D7: 1969, + 0xC6E1: 1970, + 0xC6E2: 1971, + 0xC6E5: 1972, + 0xC6E9: 1973, + 0xC6F1: 1974, + 0xC6F3: 1975, + 0xC6F5: 1976, + 0xC6F7: 1977, + 0xC741: 1978, + 0xC745: 1979, + 0xC749: 1980, + 0xC751: 1981, + 0xC761: 1982, + 0xC762: 1983, + 0xC765: 1984, + 0xC769: 1985, + 0xC771: 1986, + 0xC773: 1987, + 0xC777: 1988, + 0xC7A1: 1989, + 0xC7A2: 1990, + 0xC7A5: 1991, + 0xC7A9: 1992, + 0xC7B1: 1993, + 0xC7B3: 1994, + 0xC7B5: 1995, + 0xC7B7: 1996, + 0xC861: 1997, + 0xC862: 1998, + 0xC865: 1999, + 0xC869: 2000, + 0xC86A: 2001, + 0xC871: 2002, + 0xC873: 2003, + 0xC875: 2004, + 0xC876: 2005, + 0xC877: 2006, + 0xC881: 2007, + 0xC882: 2008, + 0xC885: 2009, + 0xC889: 2010, + 0xC891: 2011, + 0xC893: 2012, + 0xC895: 2013, + 0xC896: 2014, + 0xC897: 2015, + 0xC8A1: 2016, + 0xC8B7: 2017, + 0xC8E1: 2018, + 0xC8E2: 2019, + 0xC8E5: 2020, + 0xC8E9: 2021, + 0xC8EB: 2022, + 0xC8F1: 2023, + 0xC8F3: 2024, + 0xC8F5: 2025, + 0xC8F6: 2026, + 0xC8F7: 2027, + 0xC941: 2028, + 0xC942: 2029, + 0xC945: 2030, + 0xC949: 2031, + 0xC951: 2032, + 0xC953: 2033, + 0xC955: 2034, + 0xC957: 2035, + 0xC961: 2036, + 0xC965: 2037, + 0xC976: 2038, + 0xC981: 2039, + 0xC985: 2040, + 0xC9A1: 2041, + 0xC9A2: 2042, + 0xC9A5: 2043, + 0xC9A9: 2044, + 0xC9B1: 2045, + 0xC9B3: 2046, + 0xC9B5: 2047, + 0xC9B7: 2048, + 0xC9BC: 2049, + 0xC9C1: 2050, + 0xC9C5: 2051, + 0xC9E1: 2052, + 0xCA41: 2053, + 0xCA45: 2054, + 0xCA55: 2055, + 0xCA57: 2056, + 0xCA61: 2057, + 0xCA81: 2058, + 0xCA82: 2059, + 0xCA85: 2060, + 0xCA89: 2061, + 0xCA91: 2062, + 0xCA93: 2063, + 0xCA95: 2064, + 0xCA97: 2065, + 0xCAA1: 2066, + 0xCAB6: 2067, + 0xCAC1: 2068, + 0xCAE1: 2069, + 0xCAE2: 2070, + 0xCAE5: 2071, + 0xCAE9: 2072, + 0xCAF1: 2073, + 0xCAF3: 2074, + 0xCAF7: 2075, + 0xCB41: 2076, + 0xCB45: 2077, + 0xCB49: 2078, + 0xCB51: 2079, + 0xCB57: 2080, + 0xCB61: 2081, + 0xCB62: 2082, + 0xCB65: 2083, + 0xCB68: 2084, + 0xCB69: 2085, + 0xCB6B: 2086, + 0xCB71: 2087, + 0xCB73: 2088, + 0xCB75: 2089, + 0xCB81: 2090, + 0xCB85: 2091, + 0xCB89: 2092, + 0xCB91: 2093, + 0xCB93: 2094, + 0xCBA1: 2095, + 0xCBA2: 2096, + 0xCBA5: 2097, + 0xCBA9: 2098, + 0xCBB1: 2099, + 0xCBB3: 2100, + 0xCBB5: 2101, + 0xCBB7: 2102, + 0xCC61: 2103, + 0xCC62: 2104, + 0xCC63: 2105, + 0xCC65: 2106, + 0xCC69: 2107, + 0xCC6B: 2108, + 0xCC71: 2109, + 0xCC73: 2110, + 0xCC75: 2111, + 0xCC76: 2112, + 0xCC77: 2113, + 0xCC7B: 2114, + 0xCC81: 2115, + 0xCC82: 2116, + 0xCC85: 2117, + 0xCC89: 2118, + 0xCC91: 2119, + 0xCC93: 2120, + 0xCC95: 2121, + 0xCC96: 2122, + 0xCC97: 2123, + 0xCCA1: 2124, + 0xCCA2: 2125, + 0xCCE1: 2126, + 0xCCE2: 2127, + 0xCCE5: 2128, + 0xCCE9: 2129, + 0xCCF1: 2130, + 0xCCF3: 2131, + 0xCCF5: 2132, + 0xCCF6: 2133, + 0xCCF7: 2134, + 0xCD41: 2135, + 0xCD42: 2136, + 0xCD45: 2137, + 0xCD49: 2138, + 0xCD51: 2139, + 0xCD53: 2140, + 0xCD55: 2141, + 0xCD57: 2142, + 0xCD61: 2143, + 0xCD65: 2144, + 0xCD69: 2145, + 0xCD71: 2146, + 0xCD73: 2147, + 0xCD76: 2148, + 0xCD77: 2149, + 0xCD81: 2150, + 0xCD89: 2151, + 0xCD93: 2152, + 0xCD95: 2153, + 0xCDA1: 2154, + 0xCDA2: 2155, + 0xCDA5: 2156, + 0xCDA9: 2157, + 0xCDB1: 2158, + 0xCDB3: 2159, + 0xCDB5: 2160, + 0xCDB7: 2161, + 0xCDC1: 2162, + 0xCDD7: 2163, + 0xCE41: 2164, + 0xCE45: 2165, + 0xCE61: 2166, + 0xCE65: 2167, + 0xCE69: 2168, + 0xCE73: 2169, + 0xCE75: 2170, + 0xCE81: 2171, + 0xCE82: 2172, + 0xCE85: 2173, + 0xCE88: 2174, + 0xCE89: 2175, + 0xCE8B: 2176, + 0xCE91: 2177, + 0xCE93: 2178, + 0xCE95: 2179, + 0xCE97: 2180, + 0xCEA1: 2181, + 0xCEB7: 2182, + 0xCEE1: 2183, + 0xCEE5: 2184, + 0xCEE9: 2185, + 0xCEF1: 2186, + 0xCEF5: 2187, + 0xCF41: 2188, + 0xCF45: 2189, + 0xCF49: 2190, + 0xCF51: 2191, + 0xCF55: 2192, + 0xCF57: 2193, + 0xCF61: 2194, + 0xCF65: 2195, + 0xCF69: 2196, + 0xCF71: 2197, + 0xCF73: 2198, + 0xCF75: 2199, + 0xCFA1: 2200, + 0xCFA2: 2201, + 0xCFA5: 2202, + 0xCFA9: 2203, + 0xCFB1: 2204, + 0xCFB3: 2205, + 0xCFB5: 2206, + 0xCFB7: 2207, + 0xD061: 2208, + 0xD062: 2209, + 0xD065: 2210, + 0xD069: 2211, + 0xD06E: 2212, + 0xD071: 2213, + 0xD073: 2214, + 0xD075: 2215, + 0xD077: 2216, + 0xD081: 2217, + 0xD082: 2218, + 0xD085: 2219, + 0xD089: 2220, + 0xD091: 2221, + 0xD093: 2222, + 0xD095: 2223, + 0xD096: 2224, + 0xD097: 2225, + 0xD0A1: 2226, + 0xD0B7: 2227, + 0xD0E1: 2228, + 0xD0E2: 2229, + 0xD0E5: 2230, + 0xD0E9: 2231, + 0xD0EB: 2232, + 0xD0F1: 2233, + 0xD0F3: 2234, + 0xD0F5: 2235, + 0xD0F7: 2236, + 0xD141: 2237, + 0xD142: 2238, + 0xD145: 2239, + 0xD149: 2240, + 0xD151: 2241, + 0xD153: 2242, + 0xD155: 2243, + 0xD157: 2244, + 0xD161: 2245, + 0xD162: 2246, + 0xD165: 2247, + 0xD169: 2248, + 0xD171: 2249, + 0xD173: 2250, + 0xD175: 2251, + 0xD176: 2252, + 0xD177: 2253, + 0xD181: 2254, + 0xD185: 2255, + 0xD189: 2256, + 0xD193: 2257, + 0xD1A1: 2258, + 0xD1A2: 2259, + 0xD1A5: 2260, + 0xD1A9: 2261, + 0xD1AE: 2262, + 0xD1B1: 2263, + 0xD1B3: 2264, + 0xD1B5: 2265, + 0xD1B7: 2266, + 0xD1BB: 2267, + 0xD1C1: 2268, + 0xD1C2: 2269, + 0xD1C5: 2270, + 0xD1C9: 2271, + 0xD1D5: 2272, + 0xD1D7: 2273, + 0xD1E1: 2274, + 0xD1E2: 2275, + 0xD1E5: 2276, + 0xD1F5: 2277, + 0xD1F7: 2278, + 0xD241: 2279, + 0xD242: 2280, + 0xD245: 2281, + 0xD249: 2282, + 0xD253: 2283, + 0xD255: 2284, + 0xD257: 2285, + 0xD261: 2286, + 0xD265: 2287, + 0xD269: 2288, + 0xD273: 2289, + 0xD275: 2290, + 0xD281: 2291, + 0xD282: 2292, + 0xD285: 2293, + 0xD289: 2294, + 0xD28E: 2295, + 0xD291: 2296, + 0xD295: 2297, + 0xD297: 2298, + 0xD2A1: 2299, + 0xD2A5: 2300, + 0xD2A9: 2301, + 0xD2B1: 2302, + 0xD2B7: 2303, + 0xD2C1: 2304, + 0xD2C2: 2305, + 0xD2C5: 2306, + 0xD2C9: 2307, + 0xD2D7: 2308, + 0xD2E1: 2309, + 0xD2E2: 2310, + 0xD2E5: 2311, + 0xD2E9: 2312, + 0xD2F1: 2313, + 0xD2F3: 2314, + 0xD2F5: 2315, + 0xD2F7: 2316, + 0xD341: 2317, + 0xD342: 2318, + 0xD345: 2319, + 0xD349: 2320, + 0xD351: 2321, + 0xD355: 2322, + 0xD357: 2323, + 0xD361: 2324, + 0xD362: 2325, + 0xD365: 2326, + 0xD367: 2327, + 0xD368: 2328, + 0xD369: 2329, + 0xD36A: 2330, + 0xD371: 2331, + 0xD373: 2332, + 0xD375: 2333, + 0xD377: 2334, + 0xD37B: 2335, + 0xD381: 2336, + 0xD385: 2337, + 0xD389: 2338, + 0xD391: 2339, + 0xD393: 2340, + 0xD397: 2341, + 0xD3A1: 2342, + 0xD3A2: 2343, + 0xD3A5: 2344, + 0xD3A9: 2345, + 0xD3B1: 2346, + 0xD3B3: 2347, + 0xD3B5: 2348, + 0xD3B7: 2349, +} diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/johabprober.py b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/johabprober.py new file mode 100644 index 0000000..d7364ba --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/johabprober.py @@ -0,0 +1,47 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from .chardistribution import JOHABDistributionAnalysis +from .codingstatemachine import CodingStateMachine +from .mbcharsetprober import MultiByteCharSetProber +from .mbcssm import JOHAB_SM_MODEL + + +class JOHABProber(MultiByteCharSetProber): + def __init__(self) -> None: + super().__init__() + self.coding_sm = CodingStateMachine(JOHAB_SM_MODEL) + self.distribution_analyzer = JOHABDistributionAnalysis() + self.reset() + + @property + def charset_name(self) -> str: + return "Johab" + + @property + def language(self) -> str: + return "Korean" diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/jpcntx.py b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/jpcntx.py new file mode 100644 index 0000000..2f53bdd --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/jpcntx.py @@ -0,0 +1,238 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Communicator client code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from typing import List, Tuple, Union + +# This is hiragana 2-char sequence table, the number in each cell represents its frequency category +# fmt: off +jp2_char_context = ( + (0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1), + (2, 4, 0, 4, 0, 3, 0, 4, 0, 3, 4, 4, 4, 2, 4, 3, 3, 4, 3, 2, 3, 3, 4, 2, 3, 3, 3, 2, 4, 1, 4, 3, 3, 1, 5, 4, 3, 4, 3, 4, 3, 5, 3, 0, 3, 5, 4, 2, 0, 3, 1, 0, 3, 3, 0, 3, 3, 0, 1, 1, 0, 4, 3, 0, 3, 3, 0, 4, 0, 2, 0, 3, 5, 5, 5, 5, 4, 0, 4, 1, 0, 3, 4), + (0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2), + (0, 4, 0, 5, 0, 5, 0, 4, 0, 4, 5, 4, 4, 3, 5, 3, 5, 1, 5, 3, 4, 3, 4, 4, 3, 4, 3, 3, 4, 3, 5, 4, 4, 3, 5, 5, 3, 5, 5, 5, 3, 5, 5, 3, 4, 5, 5, 3, 1, 3, 2, 0, 3, 4, 0, 4, 2, 0, 4, 2, 1, 5, 3, 2, 3, 5, 0, 4, 0, 2, 0, 5, 4, 4, 5, 4, 5, 0, 4, 0, 0, 4, 4), + (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), + (0, 3, 0, 4, 0, 3, 0, 3, 0, 4, 5, 4, 3, 3, 3, 3, 4, 3, 5, 4, 4, 3, 5, 4, 4, 3, 4, 3, 4, 4, 4, 4, 5, 3, 4, 4, 3, 4, 5, 5, 4, 5, 5, 1, 4, 5, 4, 3, 0, 3, 3, 1, 3, 3, 0, 4, 4, 0, 3, 3, 1, 5, 3, 3, 3, 5, 0, 4, 0, 3, 0, 4, 4, 3, 4, 3, 3, 0, 4, 1, 1, 3, 4), + (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), + (0, 4, 0, 3, 0, 3, 0, 4, 0, 3, 4, 4, 3, 2, 2, 1, 2, 1, 3, 1, 3, 3, 3, 3, 3, 4, 3, 1, 3, 3, 5, 3, 3, 0, 4, 3, 0, 5, 4, 3, 3, 5, 4, 4, 3, 4, 4, 5, 0, 1, 2, 0, 1, 2, 0, 2, 2, 0, 1, 0, 0, 5, 2, 2, 1, 4, 0, 3, 0, 1, 0, 4, 4, 3, 5, 4, 3, 0, 2, 1, 0, 4, 3), + (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), + (0, 3, 0, 5, 0, 4, 0, 2, 1, 4, 4, 2, 4, 1, 4, 2, 4, 2, 4, 3, 3, 3, 4, 3, 3, 3, 3, 1, 4, 2, 3, 3, 3, 1, 4, 4, 1, 1, 1, 4, 3, 3, 2, 0, 2, 4, 3, 2, 0, 3, 3, 0, 3, 1, 1, 0, 0, 0, 3, 3, 0, 4, 2, 2, 3, 4, 0, 4, 0, 3, 0, 4, 4, 5, 3, 4, 4, 0, 3, 0, 0, 1, 4), + (1, 4, 0, 4, 0, 4, 0, 4, 0, 3, 5, 4, 4, 3, 4, 3, 5, 4, 3, 3, 4, 3, 5, 4, 4, 4, 4, 3, 4, 2, 4, 3, 3, 1, 5, 4, 3, 2, 4, 5, 4, 5, 5, 4, 4, 5, 4, 4, 0, 3, 2, 2, 3, 3, 0, 4, 3, 1, 3, 2, 1, 4, 3, 3, 4, 5, 0, 3, 0, 2, 0, 4, 5, 5, 4, 5, 4, 0, 4, 0, 0, 5, 4), + (0, 5, 0, 5, 0, 4, 0, 3, 0, 4, 4, 3, 4, 3, 3, 3, 4, 0, 4, 4, 4, 3, 4, 3, 4, 3, 3, 1, 4, 2, 4, 3, 4, 0, 5, 4, 1, 4, 5, 4, 4, 5, 3, 2, 4, 3, 4, 3, 2, 4, 1, 3, 3, 3, 2, 3, 2, 0, 4, 3, 3, 4, 3, 3, 3, 4, 0, 4, 0, 3, 0, 4, 5, 4, 4, 4, 3, 0, 4, 1, 0, 1, 3), + (0, 3, 1, 4, 0, 3, 0, 2, 0, 3, 4, 4, 3, 1, 4, 2, 3, 3, 4, 3, 4, 3, 4, 3, 4, 4, 3, 2, 3, 1, 5, 4, 4, 1, 4, 4, 3, 5, 4, 4, 3, 5, 5, 4, 3, 4, 4, 3, 1, 2, 3, 1, 2, 2, 0, 3, 2, 0, 3, 1, 0, 5, 3, 3, 3, 4, 3, 3, 3, 3, 4, 4, 4, 4, 5, 4, 2, 0, 3, 3, 2, 4, 3), + (0, 2, 0, 3, 0, 1, 0, 1, 0, 0, 3, 2, 0, 0, 2, 0, 1, 0, 2, 1, 3, 3, 3, 1, 2, 3, 1, 0, 1, 0, 4, 2, 1, 1, 3, 3, 0, 4, 3, 3, 1, 4, 3, 3, 0, 3, 3, 2, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 4, 1, 0, 2, 3, 2, 2, 2, 1, 3, 3, 3, 4, 4, 3, 2, 0, 3, 1, 0, 3, 3), + (0, 4, 0, 4, 0, 3, 0, 3, 0, 4, 4, 4, 3, 3, 3, 3, 3, 3, 4, 3, 4, 2, 4, 3, 4, 3, 3, 2, 4, 3, 4, 5, 4, 1, 4, 5, 3, 5, 4, 5, 3, 5, 4, 0, 3, 5, 5, 3, 1, 3, 3, 2, 2, 3, 0, 3, 4, 1, 3, 3, 2, 4, 3, 3, 3, 4, 0, 4, 0, 3, 0, 4, 5, 4, 4, 5, 3, 0, 4, 1, 0, 3, 4), + (0, 2, 0, 3, 0, 3, 0, 0, 0, 2, 2, 2, 1, 0, 1, 0, 0, 0, 3, 0, 3, 0, 3, 0, 1, 3, 1, 0, 3, 1, 3, 3, 3, 1, 3, 3, 3, 0, 1, 3, 1, 3, 4, 0, 0, 3, 1, 1, 0, 3, 2, 0, 0, 0, 0, 1, 3, 0, 1, 0, 0, 3, 3, 2, 0, 3, 0, 0, 0, 0, 0, 3, 4, 3, 4, 3, 3, 0, 3, 0, 0, 2, 3), + (2, 3, 0, 3, 0, 2, 0, 1, 0, 3, 3, 4, 3, 1, 3, 1, 1, 1, 3, 1, 4, 3, 4, 3, 3, 3, 0, 0, 3, 1, 5, 4, 3, 1, 4, 3, 2, 5, 5, 4, 4, 4, 4, 3, 3, 4, 4, 4, 0, 2, 1, 1, 3, 2, 0, 1, 2, 0, 0, 1, 0, 4, 1, 3, 3, 3, 0, 3, 0, 1, 0, 4, 4, 4, 5, 5, 3, 0, 2, 0, 0, 4, 4), + (0, 2, 0, 1, 0, 3, 1, 3, 0, 2, 3, 3, 3, 0, 3, 1, 0, 0, 3, 0, 3, 2, 3, 1, 3, 2, 1, 1, 0, 0, 4, 2, 1, 0, 2, 3, 1, 4, 3, 2, 0, 4, 4, 3, 1, 3, 1, 3, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 4, 1, 1, 1, 2, 0, 3, 0, 0, 0, 3, 4, 2, 4, 3, 2, 0, 1, 0, 0, 3, 3), + (0, 1, 0, 4, 0, 5, 0, 4, 0, 2, 4, 4, 2, 3, 3, 2, 3, 3, 5, 3, 3, 3, 4, 3, 4, 2, 3, 0, 4, 3, 3, 3, 4, 1, 4, 3, 2, 1, 5, 5, 3, 4, 5, 1, 3, 5, 4, 2, 0, 3, 3, 0, 1, 3, 0, 4, 2, 0, 1, 3, 1, 4, 3, 3, 3, 3, 0, 3, 0, 1, 0, 3, 4, 4, 4, 5, 5, 0, 3, 0, 1, 4, 5), + (0, 2, 0, 3, 0, 3, 0, 0, 0, 2, 3, 1, 3, 0, 4, 0, 1, 1, 3, 0, 3, 4, 3, 2, 3, 1, 0, 3, 3, 2, 3, 1, 3, 0, 2, 3, 0, 2, 1, 4, 1, 2, 2, 0, 0, 3, 3, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 2, 2, 0, 3, 2, 1, 3, 3, 0, 2, 0, 2, 0, 0, 3, 3, 1, 2, 4, 0, 3, 0, 2, 2, 3), + (2, 4, 0, 5, 0, 4, 0, 4, 0, 2, 4, 4, 4, 3, 4, 3, 3, 3, 1, 2, 4, 3, 4, 3, 4, 4, 5, 0, 3, 3, 3, 3, 2, 0, 4, 3, 1, 4, 3, 4, 1, 4, 4, 3, 3, 4, 4, 3, 1, 2, 3, 0, 4, 2, 0, 4, 1, 0, 3, 3, 0, 4, 3, 3, 3, 4, 0, 4, 0, 2, 0, 3, 5, 3, 4, 5, 2, 0, 3, 0, 0, 4, 5), + (0, 3, 0, 4, 0, 1, 0, 1, 0, 1, 3, 2, 2, 1, 3, 0, 3, 0, 2, 0, 2, 0, 3, 0, 2, 0, 0, 0, 1, 0, 1, 1, 0, 0, 3, 1, 0, 0, 0, 4, 0, 3, 1, 0, 2, 1, 3, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 4, 2, 2, 3, 1, 0, 3, 0, 0, 0, 1, 4, 4, 4, 3, 0, 0, 4, 0, 0, 1, 4), + (1, 4, 1, 5, 0, 3, 0, 3, 0, 4, 5, 4, 4, 3, 5, 3, 3, 4, 4, 3, 4, 1, 3, 3, 3, 3, 2, 1, 4, 1, 5, 4, 3, 1, 4, 4, 3, 5, 4, 4, 3, 5, 4, 3, 3, 4, 4, 4, 0, 3, 3, 1, 2, 3, 0, 3, 1, 0, 3, 3, 0, 5, 4, 4, 4, 4, 4, 4, 3, 3, 5, 4, 4, 3, 3, 5, 4, 0, 3, 2, 0, 4, 4), + (0, 2, 0, 3, 0, 1, 0, 0, 0, 1, 3, 3, 3, 2, 4, 1, 3, 0, 3, 1, 3, 0, 2, 2, 1, 1, 0, 0, 2, 0, 4, 3, 1, 0, 4, 3, 0, 4, 4, 4, 1, 4, 3, 1, 1, 3, 3, 1, 0, 2, 0, 0, 1, 3, 0, 0, 0, 0, 2, 0, 0, 4, 3, 2, 4, 3, 5, 4, 3, 3, 3, 4, 3, 3, 4, 3, 3, 0, 2, 1, 0, 3, 3), + (0, 2, 0, 4, 0, 3, 0, 2, 0, 2, 5, 5, 3, 4, 4, 4, 4, 1, 4, 3, 3, 0, 4, 3, 4, 3, 1, 3, 3, 2, 4, 3, 0, 3, 4, 3, 0, 3, 4, 4, 2, 4, 4, 0, 4, 5, 3, 3, 2, 2, 1, 1, 1, 2, 0, 1, 5, 0, 3, 3, 2, 4, 3, 3, 3, 4, 0, 3, 0, 2, 0, 4, 4, 3, 5, 5, 0, 0, 3, 0, 2, 3, 3), + (0, 3, 0, 4, 0, 3, 0, 1, 0, 3, 4, 3, 3, 1, 3, 3, 3, 0, 3, 1, 3, 0, 4, 3, 3, 1, 1, 0, 3, 0, 3, 3, 0, 0, 4, 4, 0, 1, 5, 4, 3, 3, 5, 0, 3, 3, 4, 3, 0, 2, 0, 1, 1, 1, 0, 1, 3, 0, 1, 2, 1, 3, 3, 2, 3, 3, 0, 3, 0, 1, 0, 1, 3, 3, 4, 4, 1, 0, 1, 2, 2, 1, 3), + (0, 1, 0, 4, 0, 4, 0, 3, 0, 1, 3, 3, 3, 2, 3, 1, 1, 0, 3, 0, 3, 3, 4, 3, 2, 4, 2, 0, 1, 0, 4, 3, 2, 0, 4, 3, 0, 5, 3, 3, 2, 4, 4, 4, 3, 3, 3, 4, 0, 1, 3, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 4, 2, 3, 3, 3, 0, 3, 0, 0, 0, 4, 4, 4, 5, 3, 2, 0, 3, 3, 0, 3, 5), + (0, 2, 0, 3, 0, 0, 0, 3, 0, 1, 3, 0, 2, 0, 0, 0, 1, 0, 3, 1, 1, 3, 3, 0, 0, 3, 0, 0, 3, 0, 2, 3, 1, 0, 3, 1, 0, 3, 3, 2, 0, 4, 2, 2, 0, 2, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 2, 0, 1, 0, 1, 0, 0, 0, 1, 3, 1, 2, 0, 0, 0, 1, 0, 0, 1, 4), + (0, 3, 0, 3, 0, 5, 0, 1, 0, 2, 4, 3, 1, 3, 3, 2, 1, 1, 5, 2, 1, 0, 5, 1, 2, 0, 0, 0, 3, 3, 2, 2, 3, 2, 4, 3, 0, 0, 3, 3, 1, 3, 3, 0, 2, 5, 3, 4, 0, 3, 3, 0, 1, 2, 0, 2, 2, 0, 3, 2, 0, 2, 2, 3, 3, 3, 0, 2, 0, 1, 0, 3, 4, 4, 2, 5, 4, 0, 3, 0, 0, 3, 5), + (0, 3, 0, 3, 0, 3, 0, 1, 0, 3, 3, 3, 3, 0, 3, 0, 2, 0, 2, 1, 1, 0, 2, 0, 1, 0, 0, 0, 2, 1, 0, 0, 1, 0, 3, 2, 0, 0, 3, 3, 1, 2, 3, 1, 0, 3, 3, 0, 0, 1, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 3, 1, 2, 3, 0, 3, 0, 1, 0, 3, 2, 1, 0, 4, 3, 0, 1, 1, 0, 3, 3), + (0, 4, 0, 5, 0, 3, 0, 3, 0, 4, 5, 5, 4, 3, 5, 3, 4, 3, 5, 3, 3, 2, 5, 3, 4, 4, 4, 3, 4, 3, 4, 5, 5, 3, 4, 4, 3, 4, 4, 5, 4, 4, 4, 3, 4, 5, 5, 4, 2, 3, 4, 2, 3, 4, 0, 3, 3, 1, 4, 3, 2, 4, 3, 3, 5, 5, 0, 3, 0, 3, 0, 5, 5, 5, 5, 4, 4, 0, 4, 0, 1, 4, 4), + (0, 4, 0, 4, 0, 3, 0, 3, 0, 3, 5, 4, 4, 2, 3, 2, 5, 1, 3, 2, 5, 1, 4, 2, 3, 2, 3, 3, 4, 3, 3, 3, 3, 2, 5, 4, 1, 3, 3, 5, 3, 4, 4, 0, 4, 4, 3, 1, 1, 3, 1, 0, 2, 3, 0, 2, 3, 0, 3, 0, 0, 4, 3, 1, 3, 4, 0, 3, 0, 2, 0, 4, 4, 4, 3, 4, 5, 0, 4, 0, 0, 3, 4), + (0, 3, 0, 3, 0, 3, 1, 2, 0, 3, 4, 4, 3, 3, 3, 0, 2, 2, 4, 3, 3, 1, 3, 3, 3, 1, 1, 0, 3, 1, 4, 3, 2, 3, 4, 4, 2, 4, 4, 4, 3, 4, 4, 3, 2, 4, 4, 3, 1, 3, 3, 1, 3, 3, 0, 4, 1, 0, 2, 2, 1, 4, 3, 2, 3, 3, 5, 4, 3, 3, 5, 4, 4, 3, 3, 0, 4, 0, 3, 2, 2, 4, 4), + (0, 2, 0, 1, 0, 0, 0, 0, 0, 1, 2, 1, 3, 0, 0, 0, 0, 0, 2, 0, 1, 2, 1, 0, 0, 1, 0, 0, 0, 0, 3, 0, 0, 1, 0, 1, 1, 3, 1, 0, 0, 0, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 2, 0, 3, 4, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1), + (0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 4, 0, 4, 1, 4, 0, 3, 0, 4, 0, 3, 0, 4, 0, 3, 0, 3, 0, 4, 1, 5, 1, 4, 0, 0, 3, 0, 5, 0, 5, 2, 0, 1, 0, 0, 0, 2, 1, 4, 0, 1, 3, 0, 0, 3, 0, 0, 3, 1, 1, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0), + (1, 4, 0, 5, 0, 3, 0, 2, 0, 3, 5, 4, 4, 3, 4, 3, 5, 3, 4, 3, 3, 0, 4, 3, 3, 3, 3, 3, 3, 2, 4, 4, 3, 1, 3, 4, 4, 5, 4, 4, 3, 4, 4, 1, 3, 5, 4, 3, 3, 3, 1, 2, 2, 3, 3, 1, 3, 1, 3, 3, 3, 5, 3, 3, 4, 5, 0, 3, 0, 3, 0, 3, 4, 3, 4, 4, 3, 0, 3, 0, 2, 4, 3), + (0, 1, 0, 4, 0, 0, 0, 0, 0, 1, 4, 0, 4, 1, 4, 2, 4, 0, 3, 0, 1, 0, 1, 0, 0, 0, 0, 0, 2, 0, 3, 1, 1, 1, 0, 3, 0, 0, 0, 1, 2, 1, 0, 0, 1, 1, 1, 1, 0, 1, 0, 0, 0, 1, 0, 0, 3, 0, 0, 0, 0, 3, 2, 0, 2, 2, 0, 1, 0, 0, 0, 2, 3, 2, 3, 3, 0, 0, 0, 0, 2, 1, 0), + (0, 5, 1, 5, 0, 3, 0, 3, 0, 5, 4, 4, 5, 1, 5, 3, 3, 0, 4, 3, 4, 3, 5, 3, 4, 3, 3, 2, 4, 3, 4, 3, 3, 0, 3, 3, 1, 4, 4, 3, 4, 4, 4, 3, 4, 5, 5, 3, 2, 3, 1, 1, 3, 3, 1, 3, 1, 1, 3, 3, 2, 4, 5, 3, 3, 5, 0, 4, 0, 3, 0, 4, 4, 3, 5, 3, 3, 0, 3, 4, 0, 4, 3), + (0, 5, 0, 5, 0, 3, 0, 2, 0, 4, 4, 3, 5, 2, 4, 3, 3, 3, 4, 4, 4, 3, 5, 3, 5, 3, 3, 1, 4, 0, 4, 3, 3, 0, 3, 3, 0, 4, 4, 4, 4, 5, 4, 3, 3, 5, 5, 3, 2, 3, 1, 2, 3, 2, 0, 1, 0, 0, 3, 2, 2, 4, 4, 3, 1, 5, 0, 4, 0, 3, 0, 4, 3, 1, 3, 2, 1, 0, 3, 3, 0, 3, 3), + (0, 4, 0, 5, 0, 5, 0, 4, 0, 4, 5, 5, 5, 3, 4, 3, 3, 2, 5, 4, 4, 3, 5, 3, 5, 3, 4, 0, 4, 3, 4, 4, 3, 2, 4, 4, 3, 4, 5, 4, 4, 5, 5, 0, 3, 5, 5, 4, 1, 3, 3, 2, 3, 3, 1, 3, 1, 0, 4, 3, 1, 4, 4, 3, 4, 5, 0, 4, 0, 2, 0, 4, 3, 4, 4, 3, 3, 0, 4, 0, 0, 5, 5), + (0, 4, 0, 4, 0, 5, 0, 1, 1, 3, 3, 4, 4, 3, 4, 1, 3, 0, 5, 1, 3, 0, 3, 1, 3, 1, 1, 0, 3, 0, 3, 3, 4, 0, 4, 3, 0, 4, 4, 4, 3, 4, 4, 0, 3, 5, 4, 1, 0, 3, 0, 0, 2, 3, 0, 3, 1, 0, 3, 1, 0, 3, 2, 1, 3, 5, 0, 3, 0, 1, 0, 3, 2, 3, 3, 4, 4, 0, 2, 2, 0, 4, 4), + (2, 4, 0, 5, 0, 4, 0, 3, 0, 4, 5, 5, 4, 3, 5, 3, 5, 3, 5, 3, 5, 2, 5, 3, 4, 3, 3, 4, 3, 4, 5, 3, 2, 1, 5, 4, 3, 2, 3, 4, 5, 3, 4, 1, 2, 5, 4, 3, 0, 3, 3, 0, 3, 2, 0, 2, 3, 0, 4, 1, 0, 3, 4, 3, 3, 5, 0, 3, 0, 1, 0, 4, 5, 5, 5, 4, 3, 0, 4, 2, 0, 3, 5), + (0, 5, 0, 4, 0, 4, 0, 2, 0, 5, 4, 3, 4, 3, 4, 3, 3, 3, 4, 3, 4, 2, 5, 3, 5, 3, 4, 1, 4, 3, 4, 4, 4, 0, 3, 5, 0, 4, 4, 4, 4, 5, 3, 1, 3, 4, 5, 3, 3, 3, 3, 3, 3, 3, 0, 2, 2, 0, 3, 3, 2, 4, 3, 3, 3, 5, 3, 4, 1, 3, 3, 5, 3, 2, 0, 0, 0, 0, 4, 3, 1, 3, 3), + (0, 1, 0, 3, 0, 3, 0, 1, 0, 1, 3, 3, 3, 2, 3, 3, 3, 0, 3, 0, 0, 0, 3, 1, 3, 0, 0, 0, 2, 2, 2, 3, 0, 0, 3, 2, 0, 1, 2, 4, 1, 3, 3, 0, 0, 3, 3, 3, 0, 1, 0, 0, 2, 1, 0, 0, 3, 0, 3, 1, 0, 3, 0, 0, 1, 3, 0, 2, 0, 1, 0, 3, 3, 1, 3, 3, 0, 0, 1, 1, 0, 3, 3), + (0, 2, 0, 3, 0, 2, 1, 4, 0, 2, 2, 3, 1, 1, 3, 1, 1, 0, 2, 0, 3, 1, 2, 3, 1, 3, 0, 0, 1, 0, 4, 3, 2, 3, 3, 3, 1, 4, 2, 3, 3, 3, 3, 1, 0, 3, 1, 4, 0, 1, 1, 0, 1, 2, 0, 1, 1, 0, 1, 1, 0, 3, 1, 3, 2, 2, 0, 1, 0, 0, 0, 2, 3, 3, 3, 1, 0, 0, 0, 0, 0, 2, 3), + (0, 5, 0, 4, 0, 5, 0, 2, 0, 4, 5, 5, 3, 3, 4, 3, 3, 1, 5, 4, 4, 2, 4, 4, 4, 3, 4, 2, 4, 3, 5, 5, 4, 3, 3, 4, 3, 3, 5, 5, 4, 5, 5, 1, 3, 4, 5, 3, 1, 4, 3, 1, 3, 3, 0, 3, 3, 1, 4, 3, 1, 4, 5, 3, 3, 5, 0, 4, 0, 3, 0, 5, 3, 3, 1, 4, 3, 0, 4, 0, 1, 5, 3), + (0, 5, 0, 5, 0, 4, 0, 2, 0, 4, 4, 3, 4, 3, 3, 3, 3, 3, 5, 4, 4, 4, 4, 4, 4, 5, 3, 3, 5, 2, 4, 4, 4, 3, 4, 4, 3, 3, 4, 4, 5, 5, 3, 3, 4, 3, 4, 3, 3, 4, 3, 3, 3, 3, 1, 2, 2, 1, 4, 3, 3, 5, 4, 4, 3, 4, 0, 4, 0, 3, 0, 4, 4, 4, 4, 4, 1, 0, 4, 2, 0, 2, 4), + (0, 4, 0, 4, 0, 3, 0, 1, 0, 3, 5, 2, 3, 0, 3, 0, 2, 1, 4, 2, 3, 3, 4, 1, 4, 3, 3, 2, 4, 1, 3, 3, 3, 0, 3, 3, 0, 0, 3, 3, 3, 5, 3, 3, 3, 3, 3, 2, 0, 2, 0, 0, 2, 0, 0, 2, 0, 0, 1, 0, 0, 3, 1, 2, 2, 3, 0, 3, 0, 2, 0, 4, 4, 3, 3, 4, 1, 0, 3, 0, 0, 2, 4), + (0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 2, 0, 0, 0, 0, 0, 1, 0, 2, 0, 1, 0, 0, 0, 0, 0, 3, 1, 3, 0, 3, 2, 0, 0, 0, 1, 0, 3, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 2, 0, 0, 0, 0, 0, 0, 2), + (0, 2, 1, 3, 0, 2, 0, 2, 0, 3, 3, 3, 3, 1, 3, 1, 3, 3, 3, 3, 3, 3, 4, 2, 2, 1, 2, 1, 4, 0, 4, 3, 1, 3, 3, 3, 2, 4, 3, 5, 4, 3, 3, 3, 3, 3, 3, 3, 0, 1, 3, 0, 2, 0, 0, 1, 0, 0, 1, 0, 0, 4, 2, 0, 2, 3, 0, 3, 3, 0, 3, 3, 4, 2, 3, 1, 4, 0, 1, 2, 0, 2, 3), + (0, 3, 0, 3, 0, 1, 0, 3, 0, 2, 3, 3, 3, 0, 3, 1, 2, 0, 3, 3, 2, 3, 3, 2, 3, 2, 3, 1, 3, 0, 4, 3, 2, 0, 3, 3, 1, 4, 3, 3, 2, 3, 4, 3, 1, 3, 3, 1, 1, 0, 1, 1, 0, 1, 0, 1, 0, 1, 0, 0, 0, 4, 1, 1, 0, 3, 0, 3, 1, 0, 2, 3, 3, 3, 3, 3, 1, 0, 0, 2, 0, 3, 3), + (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 2, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 3, 1, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 2, 0, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 3), + (0, 2, 0, 3, 1, 3, 0, 3, 0, 2, 3, 3, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 1, 3, 0, 2, 3, 1, 1, 4, 3, 3, 2, 3, 3, 1, 2, 2, 4, 1, 3, 3, 0, 1, 4, 2, 3, 0, 1, 3, 0, 3, 0, 0, 1, 3, 0, 2, 0, 0, 3, 3, 2, 1, 3, 0, 3, 0, 2, 0, 3, 4, 4, 4, 3, 1, 0, 3, 0, 0, 3, 3), + (0, 2, 0, 1, 0, 2, 0, 0, 0, 1, 3, 2, 2, 1, 3, 0, 1, 1, 3, 0, 3, 2, 3, 1, 2, 0, 2, 0, 1, 1, 3, 3, 3, 0, 3, 3, 1, 1, 2, 3, 2, 3, 3, 1, 2, 3, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 3, 0, 1, 0, 0, 2, 1, 2, 1, 3, 0, 3, 0, 0, 0, 3, 4, 4, 4, 3, 2, 0, 2, 0, 0, 2, 4), + (0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 3, 1, 0, 0, 0, 0, 0, 0, 0, 3), + (0, 3, 0, 3, 0, 2, 0, 3, 0, 3, 3, 3, 2, 3, 2, 2, 2, 0, 3, 1, 3, 3, 3, 2, 3, 3, 0, 0, 3, 0, 3, 2, 2, 0, 2, 3, 1, 4, 3, 4, 3, 3, 2, 3, 1, 5, 4, 4, 0, 3, 1, 2, 1, 3, 0, 3, 1, 1, 2, 0, 2, 3, 1, 3, 1, 3, 0, 3, 0, 1, 0, 3, 3, 4, 4, 2, 1, 0, 2, 1, 0, 2, 4), + (0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 4, 2, 5, 1, 4, 0, 2, 0, 2, 1, 3, 1, 4, 0, 2, 1, 0, 0, 2, 1, 4, 1, 1, 0, 3, 3, 0, 5, 1, 3, 2, 3, 3, 1, 0, 3, 2, 3, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 4, 0, 1, 0, 3, 0, 2, 0, 1, 0, 3, 3, 3, 4, 3, 3, 0, 0, 0, 0, 2, 3), + (0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 1, 0, 0, 0, 0, 0, 3), + (0, 1, 0, 3, 0, 4, 0, 3, 0, 2, 4, 3, 1, 0, 3, 2, 2, 1, 3, 1, 2, 2, 3, 1, 1, 1, 2, 1, 3, 0, 1, 2, 0, 1, 3, 2, 1, 3, 0, 5, 5, 1, 0, 0, 1, 3, 2, 1, 0, 3, 0, 0, 1, 0, 0, 0, 0, 0, 3, 4, 0, 1, 1, 1, 3, 2, 0, 2, 0, 1, 0, 2, 3, 3, 1, 2, 3, 0, 1, 0, 1, 0, 4), + (0, 0, 0, 1, 0, 3, 0, 3, 0, 2, 2, 1, 0, 0, 4, 0, 3, 0, 3, 1, 3, 0, 3, 0, 3, 0, 1, 0, 3, 0, 3, 1, 3, 0, 3, 3, 0, 0, 1, 2, 1, 1, 1, 0, 1, 2, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 1, 2, 0, 0, 2, 0, 0, 0, 0, 2, 3, 3, 3, 3, 0, 0, 0, 0, 1, 4), + (0, 0, 0, 3, 0, 3, 0, 0, 0, 0, 3, 1, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 3, 0, 2, 0, 2, 3, 0, 0, 2, 2, 3, 1, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 2, 0, 0, 0, 0, 2, 3), + (2, 4, 0, 5, 0, 5, 0, 4, 0, 3, 4, 3, 3, 3, 4, 3, 3, 3, 4, 3, 4, 4, 5, 4, 5, 5, 5, 2, 3, 0, 5, 5, 4, 1, 5, 4, 3, 1, 5, 4, 3, 4, 4, 3, 3, 4, 3, 3, 0, 3, 2, 0, 2, 3, 0, 3, 0, 0, 3, 3, 0, 5, 3, 2, 3, 3, 0, 3, 0, 3, 0, 3, 4, 5, 4, 5, 3, 0, 4, 3, 0, 3, 4), + (0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 3, 4, 3, 2, 3, 2, 3, 0, 4, 3, 3, 3, 3, 3, 3, 3, 3, 0, 3, 2, 4, 3, 3, 1, 3, 4, 3, 4, 4, 4, 3, 4, 4, 3, 2, 4, 4, 1, 0, 2, 0, 0, 1, 1, 0, 2, 0, 0, 3, 1, 0, 5, 3, 2, 1, 3, 0, 3, 0, 1, 2, 4, 3, 2, 4, 3, 3, 0, 3, 2, 0, 4, 4), + (0, 3, 0, 3, 0, 1, 0, 0, 0, 1, 4, 3, 3, 2, 3, 1, 3, 1, 4, 2, 3, 2, 4, 2, 3, 4, 3, 0, 2, 2, 3, 3, 3, 0, 3, 3, 3, 0, 3, 4, 1, 3, 3, 0, 3, 4, 3, 3, 0, 1, 1, 0, 1, 0, 0, 0, 4, 0, 3, 0, 0, 3, 1, 2, 1, 3, 0, 4, 0, 1, 0, 4, 3, 3, 4, 3, 3, 0, 2, 0, 0, 3, 3), + (0, 3, 0, 4, 0, 1, 0, 3, 0, 3, 4, 3, 3, 0, 3, 3, 3, 1, 3, 1, 3, 3, 4, 3, 3, 3, 0, 0, 3, 1, 5, 3, 3, 1, 3, 3, 2, 5, 4, 3, 3, 4, 5, 3, 2, 5, 3, 4, 0, 1, 0, 0, 0, 0, 0, 2, 0, 0, 1, 1, 0, 4, 2, 2, 1, 3, 0, 3, 0, 2, 0, 4, 4, 3, 5, 3, 2, 0, 1, 1, 0, 3, 4), + (0, 5, 0, 4, 0, 5, 0, 2, 0, 4, 4, 3, 3, 2, 3, 3, 3, 1, 4, 3, 4, 1, 5, 3, 4, 3, 4, 0, 4, 2, 4, 3, 4, 1, 5, 4, 0, 4, 4, 4, 4, 5, 4, 1, 3, 5, 4, 2, 1, 4, 1, 1, 3, 2, 0, 3, 1, 0, 3, 2, 1, 4, 3, 3, 3, 4, 0, 4, 0, 3, 0, 4, 4, 4, 3, 3, 3, 0, 4, 2, 0, 3, 4), + (1, 4, 0, 4, 0, 3, 0, 1, 0, 3, 3, 3, 1, 1, 3, 3, 2, 2, 3, 3, 1, 0, 3, 2, 2, 1, 2, 0, 3, 1, 2, 1, 2, 0, 3, 2, 0, 2, 2, 3, 3, 4, 3, 0, 3, 3, 1, 2, 0, 1, 1, 3, 1, 2, 0, 0, 3, 0, 1, 1, 0, 3, 2, 2, 3, 3, 0, 3, 0, 0, 0, 2, 3, 3, 4, 3, 3, 0, 1, 0, 0, 1, 4), + (0, 4, 0, 4, 0, 4, 0, 0, 0, 3, 4, 4, 3, 1, 4, 2, 3, 2, 3, 3, 3, 1, 4, 3, 4, 0, 3, 0, 4, 2, 3, 3, 2, 2, 5, 4, 2, 1, 3, 4, 3, 4, 3, 1, 3, 3, 4, 2, 0, 2, 1, 0, 3, 3, 0, 0, 2, 0, 3, 1, 0, 4, 4, 3, 4, 3, 0, 4, 0, 1, 0, 2, 4, 4, 4, 4, 4, 0, 3, 2, 0, 3, 3), + (0, 0, 0, 1, 0, 4, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 3, 2, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2), + (0, 2, 0, 3, 0, 4, 0, 4, 0, 1, 3, 3, 3, 0, 4, 0, 2, 1, 2, 1, 1, 1, 2, 0, 3, 1, 1, 0, 1, 0, 3, 1, 0, 0, 3, 3, 2, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 2, 0, 2, 2, 0, 3, 1, 0, 0, 1, 0, 1, 1, 0, 1, 2, 0, 3, 0, 0, 0, 0, 1, 0, 0, 3, 3, 4, 3, 1, 0, 1, 0, 3, 0, 2), + (0, 0, 0, 3, 0, 5, 0, 0, 0, 0, 1, 0, 2, 0, 3, 1, 0, 1, 3, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 4, 0, 0, 0, 2, 3, 0, 1, 4, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 3, 0, 0, 0, 0, 0, 3), + (0, 2, 0, 5, 0, 5, 0, 1, 0, 2, 4, 3, 3, 2, 5, 1, 3, 2, 3, 3, 3, 0, 4, 1, 2, 0, 3, 0, 4, 0, 2, 2, 1, 1, 5, 3, 0, 0, 1, 4, 2, 3, 2, 0, 3, 3, 3, 2, 0, 2, 4, 1, 1, 2, 0, 1, 1, 0, 3, 1, 0, 1, 3, 1, 2, 3, 0, 2, 0, 0, 0, 1, 3, 5, 4, 4, 4, 0, 3, 0, 0, 1, 3), + (0, 4, 0, 5, 0, 4, 0, 4, 0, 4, 5, 4, 3, 3, 4, 3, 3, 3, 4, 3, 4, 4, 5, 3, 4, 5, 4, 2, 4, 2, 3, 4, 3, 1, 4, 4, 1, 3, 5, 4, 4, 5, 5, 4, 4, 5, 5, 5, 2, 3, 3, 1, 4, 3, 1, 3, 3, 0, 3, 3, 1, 4, 3, 4, 4, 4, 0, 3, 0, 4, 0, 3, 3, 4, 4, 5, 0, 0, 4, 3, 0, 4, 5), + (0, 4, 0, 4, 0, 3, 0, 3, 0, 3, 4, 4, 4, 3, 3, 2, 4, 3, 4, 3, 4, 3, 5, 3, 4, 3, 2, 1, 4, 2, 4, 4, 3, 1, 3, 4, 2, 4, 5, 5, 3, 4, 5, 4, 1, 5, 4, 3, 0, 3, 2, 2, 3, 2, 1, 3, 1, 0, 3, 3, 3, 5, 3, 3, 3, 5, 4, 4, 2, 3, 3, 4, 3, 3, 3, 2, 1, 0, 3, 2, 1, 4, 3), + (0, 4, 0, 5, 0, 4, 0, 3, 0, 3, 5, 5, 3, 2, 4, 3, 4, 0, 5, 4, 4, 1, 4, 4, 4, 3, 3, 3, 4, 3, 5, 5, 2, 3, 3, 4, 1, 2, 5, 5, 3, 5, 5, 2, 3, 5, 5, 4, 0, 3, 2, 0, 3, 3, 1, 1, 5, 1, 4, 1, 0, 4, 3, 2, 3, 5, 0, 4, 0, 3, 0, 5, 4, 3, 4, 3, 0, 0, 4, 1, 0, 4, 4), + (1, 3, 0, 4, 0, 2, 0, 2, 0, 2, 5, 5, 3, 3, 3, 3, 3, 0, 4, 2, 3, 4, 4, 4, 3, 4, 0, 0, 3, 4, 5, 4, 3, 3, 3, 3, 2, 5, 5, 4, 5, 5, 5, 4, 3, 5, 5, 5, 1, 3, 1, 0, 1, 0, 0, 3, 2, 0, 4, 2, 0, 5, 2, 3, 2, 4, 1, 3, 0, 3, 0, 4, 5, 4, 5, 4, 3, 0, 4, 2, 0, 5, 4), + (0, 3, 0, 4, 0, 5, 0, 3, 0, 3, 4, 4, 3, 2, 3, 2, 3, 3, 3, 3, 3, 2, 4, 3, 3, 2, 2, 0, 3, 3, 3, 3, 3, 1, 3, 3, 3, 0, 4, 4, 3, 4, 4, 1, 1, 4, 4, 2, 0, 3, 1, 0, 1, 1, 0, 4, 1, 0, 2, 3, 1, 3, 3, 1, 3, 4, 0, 3, 0, 1, 0, 3, 1, 3, 0, 0, 1, 0, 2, 0, 0, 4, 4), + (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), + (0, 3, 0, 3, 0, 2, 0, 3, 0, 1, 5, 4, 3, 3, 3, 1, 4, 2, 1, 2, 3, 4, 4, 2, 4, 4, 5, 0, 3, 1, 4, 3, 4, 0, 4, 3, 3, 3, 2, 3, 2, 5, 3, 4, 3, 2, 2, 3, 0, 0, 3, 0, 2, 1, 0, 1, 2, 0, 0, 0, 0, 2, 1, 1, 3, 1, 0, 2, 0, 4, 0, 3, 4, 4, 4, 5, 2, 0, 2, 0, 0, 1, 3), + (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 4, 2, 1, 1, 0, 1, 0, 3, 2, 0, 0, 3, 1, 1, 1, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 1, 0, 0, 0, 2, 0, 0, 0, 1, 4, 0, 4, 2, 1, 0, 0, 0, 0, 0, 1), + (0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 3, 1, 0, 0, 0, 2, 0, 2, 1, 0, 0, 1, 2, 1, 0, 1, 1, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 1, 0, 0, 0, 0, 0, 1, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2), + (0, 4, 0, 4, 0, 4, 0, 3, 0, 4, 4, 3, 4, 2, 4, 3, 2, 0, 4, 4, 4, 3, 5, 3, 5, 3, 3, 2, 4, 2, 4, 3, 4, 3, 1, 4, 0, 2, 3, 4, 4, 4, 3, 3, 3, 4, 4, 4, 3, 4, 1, 3, 4, 3, 2, 1, 2, 1, 3, 3, 3, 4, 4, 3, 3, 5, 0, 4, 0, 3, 0, 4, 3, 3, 3, 2, 1, 0, 3, 0, 0, 3, 3), + (0, 4, 0, 3, 0, 3, 0, 3, 0, 3, 5, 5, 3, 3, 3, 3, 4, 3, 4, 3, 3, 3, 4, 4, 4, 3, 3, 3, 3, 4, 3, 5, 3, 3, 1, 3, 2, 4, 5, 5, 5, 5, 4, 3, 4, 5, 5, 3, 2, 2, 3, 3, 3, 3, 2, 3, 3, 1, 2, 3, 2, 4, 3, 3, 3, 4, 0, 4, 0, 2, 0, 4, 3, 2, 2, 1, 2, 0, 3, 0, 0, 4, 1), +) +# fmt: on + + +class JapaneseContextAnalysis: + NUM_OF_CATEGORY = 6 + DONT_KNOW = -1 + ENOUGH_REL_THRESHOLD = 100 + MAX_REL_THRESHOLD = 1000 + MINIMUM_DATA_THRESHOLD = 4 + + def __init__(self) -> None: + self._total_rel = 0 + self._rel_sample: List[int] = [] + self._need_to_skip_char_num = 0 + self._last_char_order = -1 + self._done = False + self.reset() + + def reset(self) -> None: + self._total_rel = 0 # total sequence received + # category counters, each integer counts sequence in its category + self._rel_sample = [0] * self.NUM_OF_CATEGORY + # if last byte in current buffer is not the last byte of a character, + # we need to know how many bytes to skip in next buffer + self._need_to_skip_char_num = 0 + self._last_char_order = -1 # The order of previous char + # If this flag is set to True, detection is done and conclusion has + # been made + self._done = False + + def feed(self, byte_str: Union[bytes, bytearray], num_bytes: int) -> None: + if self._done: + return + + # The buffer we got is byte oriented, and a character may span in more than one + # buffers. In case the last one or two byte in last buffer is not + # complete, we record how many byte needed to complete that character + # and skip these bytes here. We can choose to record those bytes as + # well and analyse the character once it is complete, but since a + # character will not make much difference, by simply skipping + # this character will simply our logic and improve performance. + i = self._need_to_skip_char_num + while i < num_bytes: + order, char_len = self.get_order(byte_str[i : i + 2]) + i += char_len + if i > num_bytes: + self._need_to_skip_char_num = i - num_bytes + self._last_char_order = -1 + else: + if (order != -1) and (self._last_char_order != -1): + self._total_rel += 1 + if self._total_rel > self.MAX_REL_THRESHOLD: + self._done = True + break + self._rel_sample[ + jp2_char_context[self._last_char_order][order] + ] += 1 + self._last_char_order = order + + def got_enough_data(self) -> bool: + return self._total_rel > self.ENOUGH_REL_THRESHOLD + + def get_confidence(self) -> float: + # This is just one way to calculate confidence. It works well for me. + if self._total_rel > self.MINIMUM_DATA_THRESHOLD: + return (self._total_rel - self._rel_sample[0]) / self._total_rel + return self.DONT_KNOW + + def get_order(self, _: Union[bytes, bytearray]) -> Tuple[int, int]: + return -1, 1 + + +class SJISContextAnalysis(JapaneseContextAnalysis): + def __init__(self) -> None: + super().__init__() + self._charset_name = "SHIFT_JIS" + + @property + def charset_name(self) -> str: + return self._charset_name + + def get_order(self, byte_str: Union[bytes, bytearray]) -> Tuple[int, int]: + if not byte_str: + return -1, 1 + # find out current char's byte length + first_char = byte_str[0] + if (0x81 <= first_char <= 0x9F) or (0xE0 <= first_char <= 0xFC): + char_len = 2 + if (first_char == 0x87) or (0xFA <= first_char <= 0xFC): + self._charset_name = "CP932" + else: + char_len = 1 + + # return its order if it is hiragana + if len(byte_str) > 1: + second_char = byte_str[1] + if (first_char == 202) and (0x9F <= second_char <= 0xF1): + return second_char - 0x9F, char_len + + return -1, char_len + + +class EUCJPContextAnalysis(JapaneseContextAnalysis): + def get_order(self, byte_str: Union[bytes, bytearray]) -> Tuple[int, int]: + if not byte_str: + return -1, 1 + # find out current char's byte length + first_char = byte_str[0] + if (first_char == 0x8E) or (0xA1 <= first_char <= 0xFE): + char_len = 2 + elif first_char == 0x8F: + char_len = 3 + else: + char_len = 1 + + # return its order if it is hiragana + if len(byte_str) > 1: + second_char = byte_str[1] + if (first_char == 0xA4) and (0xA1 <= second_char <= 0xF3): + return second_char - 0xA1, char_len + + return -1, char_len diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/langbulgarianmodel.py b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/langbulgarianmodel.py new file mode 100644 index 0000000..9946682 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/langbulgarianmodel.py @@ -0,0 +1,4649 @@ +from pip._vendor.chardet.sbcharsetprober import SingleByteCharSetModel + +# 3: Positive +# 2: Likely +# 1: Unlikely +# 0: Negative + +BULGARIAN_LANG_MODEL = { + 63: { # 'e' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 0, # 'а' + 18: 1, # 'б' + 9: 1, # 'в' + 20: 1, # 'г' + 11: 1, # 'д' + 3: 1, # 'е' + 23: 1, # 'ж' + 15: 1, # 'з' + 2: 0, # 'и' + 26: 1, # 'й' + 12: 1, # 'к' + 10: 1, # 'л' + 14: 1, # 'м' + 6: 1, # 'н' + 4: 1, # 'о' + 13: 1, # 'п' + 7: 1, # 'р' + 8: 1, # 'с' + 5: 1, # 'т' + 19: 0, # 'у' + 29: 1, # 'ф' + 25: 1, # 'х' + 22: 0, # 'ц' + 21: 1, # 'ч' + 27: 1, # 'ш' + 24: 1, # 'щ' + 17: 0, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 45: { # '\xad' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 1, # 'Б' + 35: 1, # 'В' + 43: 0, # 'Г' + 37: 1, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 1, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 0, # 'Л' + 38: 1, # 'М' + 36: 0, # 'Н' + 41: 1, # 'О' + 30: 1, # 'П' + 39: 1, # 'Р' + 28: 1, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 1, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 0, # 'а' + 18: 0, # 'б' + 9: 0, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 0, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 0, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 0, # 'л' + 14: 0, # 'м' + 6: 0, # 'н' + 4: 0, # 'о' + 13: 0, # 'п' + 7: 0, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 0, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 0, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 31: { # 'А' + 63: 0, # 'e' + 45: 1, # '\xad' + 31: 1, # 'А' + 32: 1, # 'Б' + 35: 2, # 'В' + 43: 1, # 'Г' + 37: 2, # 'Д' + 44: 2, # 'Е' + 55: 1, # 'Ж' + 47: 2, # 'З' + 40: 1, # 'И' + 59: 1, # 'Й' + 33: 1, # 'К' + 46: 2, # 'Л' + 38: 1, # 'М' + 36: 2, # 'Н' + 41: 1, # 'О' + 30: 2, # 'П' + 39: 2, # 'Р' + 28: 2, # 'С' + 34: 2, # 'Т' + 51: 1, # 'У' + 48: 2, # 'Ф' + 49: 1, # 'Х' + 53: 1, # 'Ц' + 50: 1, # 'Ч' + 54: 1, # 'Ш' + 57: 2, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 1, # 'Я' + 1: 1, # 'а' + 18: 2, # 'б' + 9: 2, # 'в' + 20: 2, # 'г' + 11: 2, # 'д' + 3: 1, # 'е' + 23: 1, # 'ж' + 15: 2, # 'з' + 2: 0, # 'и' + 26: 2, # 'й' + 12: 2, # 'к' + 10: 3, # 'л' + 14: 2, # 'м' + 6: 3, # 'н' + 4: 0, # 'о' + 13: 2, # 'п' + 7: 2, # 'р' + 8: 2, # 'с' + 5: 2, # 'т' + 19: 1, # 'у' + 29: 2, # 'ф' + 25: 1, # 'х' + 22: 1, # 'ц' + 21: 1, # 'ч' + 27: 1, # 'ш' + 24: 0, # 'щ' + 17: 0, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 32: { # 'Б' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 2, # 'А' + 32: 2, # 'Б' + 35: 1, # 'В' + 43: 1, # 'Г' + 37: 2, # 'Д' + 44: 1, # 'Е' + 55: 1, # 'Ж' + 47: 2, # 'З' + 40: 1, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 1, # 'Л' + 38: 1, # 'М' + 36: 2, # 'Н' + 41: 2, # 'О' + 30: 1, # 'П' + 39: 1, # 'Р' + 28: 2, # 'С' + 34: 2, # 'Т' + 51: 1, # 'У' + 48: 2, # 'Ф' + 49: 1, # 'Х' + 53: 1, # 'Ц' + 50: 1, # 'Ч' + 54: 0, # 'Ш' + 57: 1, # 'Щ' + 61: 2, # 'Ъ' + 60: 1, # 'Ю' + 56: 1, # 'Я' + 1: 3, # 'а' + 18: 0, # 'б' + 9: 0, # 'в' + 20: 0, # 'г' + 11: 1, # 'д' + 3: 3, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 2, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 2, # 'л' + 14: 0, # 'м' + 6: 0, # 'н' + 4: 3, # 'о' + 13: 0, # 'п' + 7: 2, # 'р' + 8: 1, # 'с' + 5: 0, # 'т' + 19: 2, # 'у' + 29: 0, # 'ф' + 25: 1, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 3, # 'ъ' + 52: 1, # 'ь' + 42: 1, # 'ю' + 16: 2, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 35: { # 'В' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 2, # 'А' + 32: 1, # 'Б' + 35: 1, # 'В' + 43: 0, # 'Г' + 37: 1, # 'Д' + 44: 2, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 2, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 1, # 'Л' + 38: 1, # 'М' + 36: 1, # 'Н' + 41: 1, # 'О' + 30: 1, # 'П' + 39: 2, # 'Р' + 28: 2, # 'С' + 34: 1, # 'Т' + 51: 1, # 'У' + 48: 2, # 'Ф' + 49: 0, # 'Х' + 53: 1, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 1, # 'Ъ' + 60: 1, # 'Ю' + 56: 2, # 'Я' + 1: 3, # 'а' + 18: 1, # 'б' + 9: 0, # 'в' + 20: 0, # 'г' + 11: 1, # 'д' + 3: 3, # 'е' + 23: 1, # 'ж' + 15: 2, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 1, # 'к' + 10: 2, # 'л' + 14: 1, # 'м' + 6: 2, # 'н' + 4: 2, # 'о' + 13: 1, # 'п' + 7: 2, # 'р' + 8: 2, # 'с' + 5: 2, # 'т' + 19: 1, # 'у' + 29: 0, # 'ф' + 25: 1, # 'х' + 22: 0, # 'ц' + 21: 2, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 2, # 'ъ' + 52: 1, # 'ь' + 42: 1, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 43: { # 'Г' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 2, # 'А' + 32: 1, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 1, # 'Д' + 44: 2, # 'Е' + 55: 0, # 'Ж' + 47: 1, # 'З' + 40: 1, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 1, # 'Л' + 38: 0, # 'М' + 36: 1, # 'Н' + 41: 1, # 'О' + 30: 0, # 'П' + 39: 1, # 'Р' + 28: 1, # 'С' + 34: 0, # 'Т' + 51: 1, # 'У' + 48: 1, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 1, # 'Щ' + 61: 1, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 2, # 'а' + 18: 1, # 'б' + 9: 1, # 'в' + 20: 0, # 'г' + 11: 1, # 'д' + 3: 3, # 'е' + 23: 1, # 'ж' + 15: 0, # 'з' + 2: 2, # 'и' + 26: 0, # 'й' + 12: 1, # 'к' + 10: 2, # 'л' + 14: 1, # 'м' + 6: 1, # 'н' + 4: 2, # 'о' + 13: 0, # 'п' + 7: 2, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 2, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 1, # 'щ' + 17: 2, # 'ъ' + 52: 1, # 'ь' + 42: 1, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 37: { # 'Д' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 2, # 'А' + 32: 1, # 'Б' + 35: 2, # 'В' + 43: 1, # 'Г' + 37: 2, # 'Д' + 44: 2, # 'Е' + 55: 2, # 'Ж' + 47: 1, # 'З' + 40: 2, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 1, # 'Л' + 38: 1, # 'М' + 36: 1, # 'Н' + 41: 2, # 'О' + 30: 2, # 'П' + 39: 1, # 'Р' + 28: 2, # 'С' + 34: 1, # 'Т' + 51: 1, # 'У' + 48: 1, # 'Ф' + 49: 0, # 'Х' + 53: 1, # 'Ц' + 50: 1, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 1, # 'Ъ' + 60: 1, # 'Ю' + 56: 1, # 'Я' + 1: 3, # 'а' + 18: 0, # 'б' + 9: 2, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 3, # 'е' + 23: 3, # 'ж' + 15: 1, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 1, # 'л' + 14: 1, # 'м' + 6: 2, # 'н' + 4: 3, # 'о' + 13: 0, # 'п' + 7: 2, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 2, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 2, # 'ъ' + 52: 1, # 'ь' + 42: 2, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 44: { # 'Е' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 1, # 'А' + 32: 1, # 'Б' + 35: 2, # 'В' + 43: 1, # 'Г' + 37: 1, # 'Д' + 44: 1, # 'Е' + 55: 1, # 'Ж' + 47: 1, # 'З' + 40: 1, # 'И' + 59: 1, # 'Й' + 33: 2, # 'К' + 46: 2, # 'Л' + 38: 1, # 'М' + 36: 2, # 'Н' + 41: 2, # 'О' + 30: 1, # 'П' + 39: 2, # 'Р' + 28: 2, # 'С' + 34: 2, # 'Т' + 51: 1, # 'У' + 48: 2, # 'Ф' + 49: 1, # 'Х' + 53: 2, # 'Ц' + 50: 1, # 'Ч' + 54: 1, # 'Ш' + 57: 1, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 1, # 'Я' + 1: 0, # 'а' + 18: 1, # 'б' + 9: 2, # 'в' + 20: 1, # 'г' + 11: 2, # 'д' + 3: 0, # 'е' + 23: 1, # 'ж' + 15: 1, # 'з' + 2: 0, # 'и' + 26: 1, # 'й' + 12: 2, # 'к' + 10: 2, # 'л' + 14: 2, # 'м' + 6: 2, # 'н' + 4: 0, # 'о' + 13: 1, # 'п' + 7: 2, # 'р' + 8: 2, # 'с' + 5: 1, # 'т' + 19: 1, # 'у' + 29: 1, # 'ф' + 25: 1, # 'х' + 22: 0, # 'ц' + 21: 1, # 'ч' + 27: 1, # 'ш' + 24: 1, # 'щ' + 17: 1, # 'ъ' + 52: 0, # 'ь' + 42: 1, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 55: { # 'Ж' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 1, # 'А' + 32: 0, # 'Б' + 35: 1, # 'В' + 43: 0, # 'Г' + 37: 1, # 'Д' + 44: 1, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 1, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 1, # 'Н' + 41: 1, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 1, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 2, # 'а' + 18: 0, # 'б' + 9: 0, # 'в' + 20: 0, # 'г' + 11: 1, # 'д' + 3: 2, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 2, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 0, # 'л' + 14: 0, # 'м' + 6: 0, # 'н' + 4: 2, # 'о' + 13: 1, # 'п' + 7: 1, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 1, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 1, # 'ъ' + 52: 1, # 'ь' + 42: 1, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 47: { # 'З' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 2, # 'А' + 32: 1, # 'Б' + 35: 1, # 'В' + 43: 1, # 'Г' + 37: 1, # 'Д' + 44: 1, # 'Е' + 55: 0, # 'Ж' + 47: 1, # 'З' + 40: 1, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 1, # 'Л' + 38: 1, # 'М' + 36: 2, # 'Н' + 41: 1, # 'О' + 30: 1, # 'П' + 39: 1, # 'Р' + 28: 1, # 'С' + 34: 1, # 'Т' + 51: 1, # 'У' + 48: 0, # 'Ф' + 49: 1, # 'Х' + 53: 1, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 1, # 'Ъ' + 60: 0, # 'Ю' + 56: 1, # 'Я' + 1: 3, # 'а' + 18: 1, # 'б' + 9: 2, # 'в' + 20: 1, # 'г' + 11: 2, # 'д' + 3: 2, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 1, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 2, # 'л' + 14: 1, # 'м' + 6: 1, # 'н' + 4: 1, # 'о' + 13: 0, # 'п' + 7: 1, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 1, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 1, # 'ъ' + 52: 0, # 'ь' + 42: 1, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 40: { # 'И' + 63: 0, # 'e' + 45: 1, # '\xad' + 31: 1, # 'А' + 32: 1, # 'Б' + 35: 1, # 'В' + 43: 1, # 'Г' + 37: 1, # 'Д' + 44: 2, # 'Е' + 55: 1, # 'Ж' + 47: 2, # 'З' + 40: 1, # 'И' + 59: 1, # 'Й' + 33: 2, # 'К' + 46: 2, # 'Л' + 38: 2, # 'М' + 36: 2, # 'Н' + 41: 1, # 'О' + 30: 1, # 'П' + 39: 2, # 'Р' + 28: 2, # 'С' + 34: 2, # 'Т' + 51: 0, # 'У' + 48: 1, # 'Ф' + 49: 1, # 'Х' + 53: 1, # 'Ц' + 50: 1, # 'Ч' + 54: 1, # 'Ш' + 57: 1, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 2, # 'Я' + 1: 1, # 'а' + 18: 1, # 'б' + 9: 3, # 'в' + 20: 2, # 'г' + 11: 1, # 'д' + 3: 1, # 'е' + 23: 0, # 'ж' + 15: 3, # 'з' + 2: 0, # 'и' + 26: 1, # 'й' + 12: 1, # 'к' + 10: 2, # 'л' + 14: 2, # 'м' + 6: 2, # 'н' + 4: 0, # 'о' + 13: 1, # 'п' + 7: 2, # 'р' + 8: 2, # 'с' + 5: 2, # 'т' + 19: 0, # 'у' + 29: 1, # 'ф' + 25: 1, # 'х' + 22: 1, # 'ц' + 21: 1, # 'ч' + 27: 1, # 'ш' + 24: 1, # 'щ' + 17: 0, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 59: { # 'Й' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 1, # 'Д' + 44: 1, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 1, # 'Л' + 38: 1, # 'М' + 36: 1, # 'Н' + 41: 1, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 1, # 'С' + 34: 1, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 1, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 1, # 'Я' + 1: 0, # 'а' + 18: 0, # 'б' + 9: 0, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 1, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 0, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 0, # 'л' + 14: 0, # 'м' + 6: 0, # 'н' + 4: 2, # 'о' + 13: 0, # 'п' + 7: 0, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 0, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 1, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 33: { # 'К' + 63: 0, # 'e' + 45: 1, # '\xad' + 31: 2, # 'А' + 32: 1, # 'Б' + 35: 1, # 'В' + 43: 1, # 'Г' + 37: 1, # 'Д' + 44: 1, # 'Е' + 55: 0, # 'Ж' + 47: 1, # 'З' + 40: 2, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 1, # 'Л' + 38: 0, # 'М' + 36: 2, # 'Н' + 41: 2, # 'О' + 30: 2, # 'П' + 39: 1, # 'Р' + 28: 2, # 'С' + 34: 1, # 'Т' + 51: 1, # 'У' + 48: 1, # 'Ф' + 49: 1, # 'Х' + 53: 1, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 1, # 'Ъ' + 60: 1, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 0, # 'б' + 9: 1, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 2, # 'е' + 23: 1, # 'ж' + 15: 0, # 'з' + 2: 2, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 2, # 'л' + 14: 1, # 'м' + 6: 2, # 'н' + 4: 3, # 'о' + 13: 0, # 'п' + 7: 3, # 'р' + 8: 1, # 'с' + 5: 0, # 'т' + 19: 2, # 'у' + 29: 0, # 'ф' + 25: 1, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 1, # 'ш' + 24: 0, # 'щ' + 17: 2, # 'ъ' + 52: 1, # 'ь' + 42: 2, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 46: { # 'Л' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 2, # 'А' + 32: 1, # 'Б' + 35: 1, # 'В' + 43: 2, # 'Г' + 37: 1, # 'Д' + 44: 2, # 'Е' + 55: 0, # 'Ж' + 47: 1, # 'З' + 40: 2, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 1, # 'Л' + 38: 0, # 'М' + 36: 1, # 'Н' + 41: 2, # 'О' + 30: 1, # 'П' + 39: 0, # 'Р' + 28: 1, # 'С' + 34: 1, # 'Т' + 51: 1, # 'У' + 48: 0, # 'Ф' + 49: 1, # 'Х' + 53: 1, # 'Ц' + 50: 1, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 1, # 'Ъ' + 60: 1, # 'Ю' + 56: 1, # 'Я' + 1: 2, # 'а' + 18: 0, # 'б' + 9: 1, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 3, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 2, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 0, # 'л' + 14: 0, # 'м' + 6: 0, # 'н' + 4: 2, # 'о' + 13: 0, # 'п' + 7: 0, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 2, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 1, # 'ъ' + 52: 1, # 'ь' + 42: 2, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 38: { # 'М' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 2, # 'А' + 32: 1, # 'Б' + 35: 2, # 'В' + 43: 0, # 'Г' + 37: 1, # 'Д' + 44: 1, # 'Е' + 55: 0, # 'Ж' + 47: 1, # 'З' + 40: 2, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 1, # 'Л' + 38: 1, # 'М' + 36: 1, # 'Н' + 41: 2, # 'О' + 30: 1, # 'П' + 39: 1, # 'Р' + 28: 2, # 'С' + 34: 1, # 'Т' + 51: 1, # 'У' + 48: 1, # 'Ф' + 49: 0, # 'Х' + 53: 1, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 1, # 'Ъ' + 60: 0, # 'Ю' + 56: 1, # 'Я' + 1: 3, # 'а' + 18: 0, # 'б' + 9: 0, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 3, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 2, # 'л' + 14: 0, # 'м' + 6: 2, # 'н' + 4: 3, # 'о' + 13: 0, # 'п' + 7: 1, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 2, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 2, # 'ъ' + 52: 1, # 'ь' + 42: 2, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 36: { # 'Н' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 2, # 'А' + 32: 2, # 'Б' + 35: 1, # 'В' + 43: 1, # 'Г' + 37: 2, # 'Д' + 44: 2, # 'Е' + 55: 1, # 'Ж' + 47: 1, # 'З' + 40: 2, # 'И' + 59: 1, # 'Й' + 33: 2, # 'К' + 46: 1, # 'Л' + 38: 1, # 'М' + 36: 1, # 'Н' + 41: 2, # 'О' + 30: 1, # 'П' + 39: 1, # 'Р' + 28: 2, # 'С' + 34: 2, # 'Т' + 51: 1, # 'У' + 48: 1, # 'Ф' + 49: 1, # 'Х' + 53: 1, # 'Ц' + 50: 1, # 'Ч' + 54: 1, # 'Ш' + 57: 0, # 'Щ' + 61: 1, # 'Ъ' + 60: 1, # 'Ю' + 56: 1, # 'Я' + 1: 3, # 'а' + 18: 0, # 'б' + 9: 0, # 'в' + 20: 1, # 'г' + 11: 0, # 'д' + 3: 3, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 0, # 'л' + 14: 0, # 'м' + 6: 0, # 'н' + 4: 3, # 'о' + 13: 0, # 'п' + 7: 0, # 'р' + 8: 0, # 'с' + 5: 1, # 'т' + 19: 1, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 1, # 'ш' + 24: 0, # 'щ' + 17: 0, # 'ъ' + 52: 0, # 'ь' + 42: 2, # 'ю' + 16: 2, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 41: { # 'О' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 1, # 'А' + 32: 1, # 'Б' + 35: 2, # 'В' + 43: 1, # 'Г' + 37: 2, # 'Д' + 44: 1, # 'Е' + 55: 1, # 'Ж' + 47: 1, # 'З' + 40: 1, # 'И' + 59: 1, # 'Й' + 33: 2, # 'К' + 46: 2, # 'Л' + 38: 2, # 'М' + 36: 2, # 'Н' + 41: 2, # 'О' + 30: 1, # 'П' + 39: 2, # 'Р' + 28: 2, # 'С' + 34: 2, # 'Т' + 51: 1, # 'У' + 48: 1, # 'Ф' + 49: 1, # 'Х' + 53: 0, # 'Ц' + 50: 1, # 'Ч' + 54: 1, # 'Ш' + 57: 1, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 1, # 'Я' + 1: 1, # 'а' + 18: 2, # 'б' + 9: 2, # 'в' + 20: 2, # 'г' + 11: 1, # 'д' + 3: 1, # 'е' + 23: 1, # 'ж' + 15: 1, # 'з' + 2: 0, # 'и' + 26: 1, # 'й' + 12: 2, # 'к' + 10: 2, # 'л' + 14: 1, # 'м' + 6: 1, # 'н' + 4: 0, # 'о' + 13: 2, # 'п' + 7: 2, # 'р' + 8: 2, # 'с' + 5: 3, # 'т' + 19: 1, # 'у' + 29: 1, # 'ф' + 25: 1, # 'х' + 22: 1, # 'ц' + 21: 2, # 'ч' + 27: 0, # 'ш' + 24: 2, # 'щ' + 17: 0, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 30: { # 'П' + 63: 0, # 'e' + 45: 1, # '\xad' + 31: 2, # 'А' + 32: 1, # 'Б' + 35: 1, # 'В' + 43: 1, # 'Г' + 37: 1, # 'Д' + 44: 1, # 'Е' + 55: 0, # 'Ж' + 47: 1, # 'З' + 40: 2, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 1, # 'Л' + 38: 1, # 'М' + 36: 1, # 'Н' + 41: 2, # 'О' + 30: 2, # 'П' + 39: 2, # 'Р' + 28: 2, # 'С' + 34: 1, # 'Т' + 51: 2, # 'У' + 48: 1, # 'Ф' + 49: 0, # 'Х' + 53: 1, # 'Ц' + 50: 1, # 'Ч' + 54: 1, # 'Ш' + 57: 0, # 'Щ' + 61: 1, # 'Ъ' + 60: 1, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 0, # 'б' + 9: 0, # 'в' + 20: 0, # 'г' + 11: 2, # 'д' + 3: 3, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 2, # 'и' + 26: 0, # 'й' + 12: 1, # 'к' + 10: 3, # 'л' + 14: 0, # 'м' + 6: 1, # 'н' + 4: 3, # 'о' + 13: 0, # 'п' + 7: 3, # 'р' + 8: 1, # 'с' + 5: 1, # 'т' + 19: 2, # 'у' + 29: 1, # 'ф' + 25: 1, # 'х' + 22: 0, # 'ц' + 21: 1, # 'ч' + 27: 1, # 'ш' + 24: 0, # 'щ' + 17: 2, # 'ъ' + 52: 1, # 'ь' + 42: 1, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 39: { # 'Р' + 63: 0, # 'e' + 45: 1, # '\xad' + 31: 2, # 'А' + 32: 1, # 'Б' + 35: 1, # 'В' + 43: 2, # 'Г' + 37: 2, # 'Д' + 44: 2, # 'Е' + 55: 0, # 'Ж' + 47: 1, # 'З' + 40: 2, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 0, # 'Л' + 38: 1, # 'М' + 36: 1, # 'Н' + 41: 2, # 'О' + 30: 2, # 'П' + 39: 1, # 'Р' + 28: 1, # 'С' + 34: 1, # 'Т' + 51: 1, # 'У' + 48: 1, # 'Ф' + 49: 1, # 'Х' + 53: 1, # 'Ц' + 50: 1, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 1, # 'Ъ' + 60: 1, # 'Ю' + 56: 1, # 'Я' + 1: 3, # 'а' + 18: 0, # 'б' + 9: 0, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 2, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 2, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 0, # 'л' + 14: 0, # 'м' + 6: 1, # 'н' + 4: 3, # 'о' + 13: 0, # 'п' + 7: 0, # 'р' + 8: 1, # 'с' + 5: 0, # 'т' + 19: 3, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 1, # 'ъ' + 52: 0, # 'ь' + 42: 1, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 28: { # 'С' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 3, # 'А' + 32: 2, # 'Б' + 35: 2, # 'В' + 43: 1, # 'Г' + 37: 2, # 'Д' + 44: 2, # 'Е' + 55: 1, # 'Ж' + 47: 1, # 'З' + 40: 2, # 'И' + 59: 0, # 'Й' + 33: 2, # 'К' + 46: 1, # 'Л' + 38: 1, # 'М' + 36: 1, # 'Н' + 41: 2, # 'О' + 30: 2, # 'П' + 39: 1, # 'Р' + 28: 2, # 'С' + 34: 2, # 'Т' + 51: 1, # 'У' + 48: 1, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 1, # 'Ъ' + 60: 1, # 'Ю' + 56: 1, # 'Я' + 1: 3, # 'а' + 18: 1, # 'б' + 9: 2, # 'в' + 20: 1, # 'г' + 11: 1, # 'д' + 3: 3, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 2, # 'к' + 10: 3, # 'л' + 14: 2, # 'м' + 6: 1, # 'н' + 4: 3, # 'о' + 13: 3, # 'п' + 7: 2, # 'р' + 8: 0, # 'с' + 5: 3, # 'т' + 19: 2, # 'у' + 29: 2, # 'ф' + 25: 1, # 'х' + 22: 1, # 'ц' + 21: 1, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 3, # 'ъ' + 52: 1, # 'ь' + 42: 1, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 34: { # 'Т' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 2, # 'А' + 32: 2, # 'Б' + 35: 1, # 'В' + 43: 0, # 'Г' + 37: 1, # 'Д' + 44: 2, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 2, # 'И' + 59: 0, # 'Й' + 33: 2, # 'К' + 46: 1, # 'Л' + 38: 1, # 'М' + 36: 1, # 'Н' + 41: 2, # 'О' + 30: 1, # 'П' + 39: 2, # 'Р' + 28: 2, # 'С' + 34: 1, # 'Т' + 51: 1, # 'У' + 48: 1, # 'Ф' + 49: 0, # 'Х' + 53: 1, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 1, # 'Ъ' + 60: 0, # 'Ю' + 56: 1, # 'Я' + 1: 3, # 'а' + 18: 1, # 'б' + 9: 1, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 3, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 2, # 'и' + 26: 0, # 'й' + 12: 1, # 'к' + 10: 1, # 'л' + 14: 0, # 'м' + 6: 0, # 'н' + 4: 3, # 'о' + 13: 0, # 'п' + 7: 3, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 2, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 2, # 'ъ' + 52: 0, # 'ь' + 42: 1, # 'ю' + 16: 2, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 51: { # 'У' + 63: 0, # 'e' + 45: 1, # '\xad' + 31: 1, # 'А' + 32: 1, # 'Б' + 35: 1, # 'В' + 43: 1, # 'Г' + 37: 1, # 'Д' + 44: 2, # 'Е' + 55: 1, # 'Ж' + 47: 1, # 'З' + 40: 1, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 1, # 'Л' + 38: 1, # 'М' + 36: 1, # 'Н' + 41: 0, # 'О' + 30: 1, # 'П' + 39: 1, # 'Р' + 28: 1, # 'С' + 34: 2, # 'Т' + 51: 0, # 'У' + 48: 1, # 'Ф' + 49: 1, # 'Х' + 53: 1, # 'Ц' + 50: 1, # 'Ч' + 54: 1, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 1, # 'а' + 18: 1, # 'б' + 9: 2, # 'в' + 20: 1, # 'г' + 11: 1, # 'д' + 3: 2, # 'е' + 23: 1, # 'ж' + 15: 1, # 'з' + 2: 2, # 'и' + 26: 1, # 'й' + 12: 2, # 'к' + 10: 1, # 'л' + 14: 1, # 'м' + 6: 2, # 'н' + 4: 2, # 'о' + 13: 1, # 'п' + 7: 1, # 'р' + 8: 2, # 'с' + 5: 1, # 'т' + 19: 1, # 'у' + 29: 0, # 'ф' + 25: 1, # 'х' + 22: 0, # 'ц' + 21: 2, # 'ч' + 27: 1, # 'ш' + 24: 0, # 'щ' + 17: 1, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 48: { # 'Ф' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 2, # 'А' + 32: 1, # 'Б' + 35: 1, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 1, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 2, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 1, # 'Л' + 38: 0, # 'М' + 36: 1, # 'Н' + 41: 1, # 'О' + 30: 2, # 'П' + 39: 1, # 'Р' + 28: 2, # 'С' + 34: 1, # 'Т' + 51: 1, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 2, # 'а' + 18: 0, # 'б' + 9: 0, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 2, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 2, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 2, # 'л' + 14: 0, # 'м' + 6: 0, # 'н' + 4: 2, # 'о' + 13: 0, # 'п' + 7: 2, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 1, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 1, # 'ъ' + 52: 1, # 'ь' + 42: 1, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 49: { # 'Х' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 1, # 'А' + 32: 0, # 'Б' + 35: 1, # 'В' + 43: 1, # 'Г' + 37: 1, # 'Д' + 44: 1, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 1, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 1, # 'Л' + 38: 1, # 'М' + 36: 1, # 'Н' + 41: 1, # 'О' + 30: 1, # 'П' + 39: 1, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 1, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 2, # 'а' + 18: 0, # 'б' + 9: 1, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 2, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 2, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 1, # 'л' + 14: 1, # 'м' + 6: 0, # 'н' + 4: 2, # 'о' + 13: 0, # 'п' + 7: 2, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 2, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 2, # 'ъ' + 52: 1, # 'ь' + 42: 1, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 53: { # 'Ц' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 1, # 'А' + 32: 0, # 'Б' + 35: 1, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 1, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 2, # 'И' + 59: 0, # 'Й' + 33: 2, # 'К' + 46: 1, # 'Л' + 38: 1, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 1, # 'Р' + 28: 2, # 'С' + 34: 0, # 'Т' + 51: 1, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 2, # 'а' + 18: 0, # 'б' + 9: 2, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 2, # 'е' + 23: 0, # 'ж' + 15: 1, # 'з' + 2: 2, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 0, # 'л' + 14: 0, # 'м' + 6: 0, # 'н' + 4: 1, # 'о' + 13: 0, # 'п' + 7: 1, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 1, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 1, # 'ъ' + 52: 0, # 'ь' + 42: 1, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 50: { # 'Ч' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 2, # 'А' + 32: 1, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 1, # 'Е' + 55: 0, # 'Ж' + 47: 1, # 'З' + 40: 1, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 1, # 'Л' + 38: 0, # 'М' + 36: 1, # 'Н' + 41: 1, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 1, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 2, # 'а' + 18: 0, # 'б' + 9: 0, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 3, # 'е' + 23: 1, # 'ж' + 15: 0, # 'з' + 2: 2, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 1, # 'л' + 14: 0, # 'м' + 6: 0, # 'н' + 4: 2, # 'о' + 13: 0, # 'п' + 7: 1, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 2, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 1, # 'ъ' + 52: 1, # 'ь' + 42: 0, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 54: { # 'Ш' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 1, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 1, # 'Е' + 55: 0, # 'Ж' + 47: 1, # 'З' + 40: 1, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 1, # 'Н' + 41: 1, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 1, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 2, # 'а' + 18: 0, # 'б' + 9: 2, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 2, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 2, # 'и' + 26: 0, # 'й' + 12: 1, # 'к' + 10: 1, # 'л' + 14: 1, # 'м' + 6: 1, # 'н' + 4: 2, # 'о' + 13: 1, # 'п' + 7: 1, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 2, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 1, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 1, # 'ъ' + 52: 1, # 'ь' + 42: 0, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 57: { # 'Щ' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 1, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 1, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 1, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 1, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 2, # 'а' + 18: 0, # 'б' + 9: 0, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 2, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 1, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 0, # 'л' + 14: 0, # 'м' + 6: 0, # 'н' + 4: 1, # 'о' + 13: 0, # 'п' + 7: 1, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 1, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 1, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 61: { # 'Ъ' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 1, # 'Б' + 35: 1, # 'В' + 43: 0, # 'Г' + 37: 1, # 'Д' + 44: 0, # 'Е' + 55: 1, # 'Ж' + 47: 1, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 2, # 'Л' + 38: 1, # 'М' + 36: 1, # 'Н' + 41: 0, # 'О' + 30: 1, # 'П' + 39: 2, # 'Р' + 28: 1, # 'С' + 34: 1, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 1, # 'Х' + 53: 1, # 'Ц' + 50: 1, # 'Ч' + 54: 1, # 'Ш' + 57: 1, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 0, # 'а' + 18: 0, # 'б' + 9: 0, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 0, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 0, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 1, # 'л' + 14: 0, # 'м' + 6: 1, # 'н' + 4: 0, # 'о' + 13: 0, # 'п' + 7: 1, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 0, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 0, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 60: { # 'Ю' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 1, # 'А' + 32: 1, # 'Б' + 35: 0, # 'В' + 43: 1, # 'Г' + 37: 1, # 'Д' + 44: 0, # 'Е' + 55: 1, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 1, # 'Л' + 38: 0, # 'М' + 36: 1, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 1, # 'Р' + 28: 1, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 0, # 'а' + 18: 1, # 'б' + 9: 1, # 'в' + 20: 2, # 'г' + 11: 1, # 'д' + 3: 0, # 'е' + 23: 2, # 'ж' + 15: 1, # 'з' + 2: 1, # 'и' + 26: 0, # 'й' + 12: 1, # 'к' + 10: 1, # 'л' + 14: 1, # 'м' + 6: 1, # 'н' + 4: 0, # 'о' + 13: 1, # 'п' + 7: 1, # 'р' + 8: 1, # 'с' + 5: 1, # 'т' + 19: 0, # 'у' + 29: 0, # 'ф' + 25: 1, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 0, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 56: { # 'Я' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 1, # 'Б' + 35: 1, # 'В' + 43: 1, # 'Г' + 37: 1, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 1, # 'Л' + 38: 1, # 'М' + 36: 1, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 1, # 'С' + 34: 2, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 0, # 'а' + 18: 1, # 'б' + 9: 1, # 'в' + 20: 1, # 'г' + 11: 1, # 'д' + 3: 0, # 'е' + 23: 0, # 'ж' + 15: 1, # 'з' + 2: 1, # 'и' + 26: 1, # 'й' + 12: 1, # 'к' + 10: 1, # 'л' + 14: 2, # 'м' + 6: 2, # 'н' + 4: 0, # 'о' + 13: 2, # 'п' + 7: 1, # 'р' + 8: 1, # 'с' + 5: 1, # 'т' + 19: 0, # 'у' + 29: 0, # 'ф' + 25: 1, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 1, # 'ш' + 24: 0, # 'щ' + 17: 0, # 'ъ' + 52: 0, # 'ь' + 42: 1, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 1: { # 'а' + 63: 1, # 'e' + 45: 1, # '\xad' + 31: 1, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 1, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 1, # 'а' + 18: 3, # 'б' + 9: 3, # 'в' + 20: 3, # 'г' + 11: 3, # 'д' + 3: 3, # 'е' + 23: 3, # 'ж' + 15: 3, # 'з' + 2: 3, # 'и' + 26: 3, # 'й' + 12: 3, # 'к' + 10: 3, # 'л' + 14: 3, # 'м' + 6: 3, # 'н' + 4: 2, # 'о' + 13: 3, # 'п' + 7: 3, # 'р' + 8: 3, # 'с' + 5: 3, # 'т' + 19: 3, # 'у' + 29: 3, # 'ф' + 25: 3, # 'х' + 22: 3, # 'ц' + 21: 3, # 'ч' + 27: 3, # 'ш' + 24: 3, # 'щ' + 17: 0, # 'ъ' + 52: 0, # 'ь' + 42: 1, # 'ю' + 16: 3, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 18: { # 'б' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 0, # 'б' + 9: 3, # 'в' + 20: 1, # 'г' + 11: 2, # 'д' + 3: 3, # 'е' + 23: 1, # 'ж' + 15: 1, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 1, # 'к' + 10: 3, # 'л' + 14: 2, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 1, # 'п' + 7: 3, # 'р' + 8: 3, # 'с' + 5: 0, # 'т' + 19: 3, # 'у' + 29: 0, # 'ф' + 25: 2, # 'х' + 22: 1, # 'ц' + 21: 1, # 'ч' + 27: 1, # 'ш' + 24: 3, # 'щ' + 17: 3, # 'ъ' + 52: 1, # 'ь' + 42: 2, # 'ю' + 16: 3, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 9: { # 'в' + 63: 1, # 'e' + 45: 1, # '\xad' + 31: 0, # 'А' + 32: 1, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 1, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 1, # 'б' + 9: 0, # 'в' + 20: 2, # 'г' + 11: 3, # 'д' + 3: 3, # 'е' + 23: 1, # 'ж' + 15: 3, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 3, # 'к' + 10: 3, # 'л' + 14: 2, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 2, # 'п' + 7: 3, # 'р' + 8: 3, # 'с' + 5: 3, # 'т' + 19: 2, # 'у' + 29: 0, # 'ф' + 25: 2, # 'х' + 22: 2, # 'ц' + 21: 3, # 'ч' + 27: 2, # 'ш' + 24: 1, # 'щ' + 17: 3, # 'ъ' + 52: 1, # 'ь' + 42: 2, # 'ю' + 16: 3, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 20: { # 'г' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 1, # 'б' + 9: 2, # 'в' + 20: 1, # 'г' + 11: 2, # 'д' + 3: 3, # 'е' + 23: 0, # 'ж' + 15: 1, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 1, # 'к' + 10: 3, # 'л' + 14: 1, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 1, # 'п' + 7: 3, # 'р' + 8: 2, # 'с' + 5: 2, # 'т' + 19: 3, # 'у' + 29: 1, # 'ф' + 25: 1, # 'х' + 22: 0, # 'ц' + 21: 1, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 3, # 'ъ' + 52: 1, # 'ь' + 42: 1, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 11: { # 'д' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 2, # 'б' + 9: 3, # 'в' + 20: 2, # 'г' + 11: 2, # 'д' + 3: 3, # 'е' + 23: 3, # 'ж' + 15: 2, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 3, # 'к' + 10: 3, # 'л' + 14: 3, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 3, # 'п' + 7: 3, # 'р' + 8: 3, # 'с' + 5: 1, # 'т' + 19: 3, # 'у' + 29: 1, # 'ф' + 25: 2, # 'х' + 22: 2, # 'ц' + 21: 2, # 'ч' + 27: 1, # 'ш' + 24: 1, # 'щ' + 17: 3, # 'ъ' + 52: 1, # 'ь' + 42: 1, # 'ю' + 16: 3, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 3: { # 'е' + 63: 0, # 'e' + 45: 1, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 2, # 'а' + 18: 3, # 'б' + 9: 3, # 'в' + 20: 3, # 'г' + 11: 3, # 'д' + 3: 2, # 'е' + 23: 3, # 'ж' + 15: 3, # 'з' + 2: 2, # 'и' + 26: 3, # 'й' + 12: 3, # 'к' + 10: 3, # 'л' + 14: 3, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 3, # 'п' + 7: 3, # 'р' + 8: 3, # 'с' + 5: 3, # 'т' + 19: 2, # 'у' + 29: 3, # 'ф' + 25: 3, # 'х' + 22: 3, # 'ц' + 21: 3, # 'ч' + 27: 3, # 'ш' + 24: 3, # 'щ' + 17: 1, # 'ъ' + 52: 0, # 'ь' + 42: 1, # 'ю' + 16: 3, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 23: { # 'ж' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 3, # 'б' + 9: 2, # 'в' + 20: 1, # 'г' + 11: 3, # 'д' + 3: 3, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 2, # 'к' + 10: 1, # 'л' + 14: 1, # 'м' + 6: 3, # 'н' + 4: 2, # 'о' + 13: 1, # 'п' + 7: 1, # 'р' + 8: 1, # 'с' + 5: 1, # 'т' + 19: 2, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 1, # 'ц' + 21: 1, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 2, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 15: { # 'з' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 3, # 'б' + 9: 3, # 'в' + 20: 3, # 'г' + 11: 3, # 'д' + 3: 3, # 'е' + 23: 1, # 'ж' + 15: 1, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 3, # 'к' + 10: 3, # 'л' + 14: 3, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 3, # 'п' + 7: 3, # 'р' + 8: 3, # 'с' + 5: 3, # 'т' + 19: 3, # 'у' + 29: 1, # 'ф' + 25: 2, # 'х' + 22: 2, # 'ц' + 21: 2, # 'ч' + 27: 2, # 'ш' + 24: 1, # 'щ' + 17: 2, # 'ъ' + 52: 1, # 'ь' + 42: 1, # 'ю' + 16: 2, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 2: { # 'и' + 63: 1, # 'e' + 45: 1, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 1, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 1, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 1, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 3, # 'б' + 9: 3, # 'в' + 20: 3, # 'г' + 11: 3, # 'д' + 3: 3, # 'е' + 23: 3, # 'ж' + 15: 3, # 'з' + 2: 3, # 'и' + 26: 3, # 'й' + 12: 3, # 'к' + 10: 3, # 'л' + 14: 3, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 3, # 'п' + 7: 3, # 'р' + 8: 3, # 'с' + 5: 3, # 'т' + 19: 2, # 'у' + 29: 3, # 'ф' + 25: 3, # 'х' + 22: 3, # 'ц' + 21: 3, # 'ч' + 27: 3, # 'ш' + 24: 3, # 'щ' + 17: 2, # 'ъ' + 52: 0, # 'ь' + 42: 1, # 'ю' + 16: 3, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 26: { # 'й' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 1, # 'а' + 18: 2, # 'б' + 9: 2, # 'в' + 20: 1, # 'г' + 11: 2, # 'д' + 3: 2, # 'е' + 23: 0, # 'ж' + 15: 2, # 'з' + 2: 1, # 'и' + 26: 0, # 'й' + 12: 3, # 'к' + 10: 2, # 'л' + 14: 2, # 'м' + 6: 3, # 'н' + 4: 2, # 'о' + 13: 1, # 'п' + 7: 2, # 'р' + 8: 3, # 'с' + 5: 3, # 'т' + 19: 1, # 'у' + 29: 2, # 'ф' + 25: 1, # 'х' + 22: 2, # 'ц' + 21: 2, # 'ч' + 27: 1, # 'ш' + 24: 1, # 'щ' + 17: 1, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 12: { # 'к' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 1, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 1, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 1, # 'б' + 9: 3, # 'в' + 20: 2, # 'г' + 11: 1, # 'д' + 3: 3, # 'е' + 23: 0, # 'ж' + 15: 2, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 1, # 'к' + 10: 3, # 'л' + 14: 2, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 1, # 'п' + 7: 3, # 'р' + 8: 3, # 'с' + 5: 3, # 'т' + 19: 3, # 'у' + 29: 1, # 'ф' + 25: 1, # 'х' + 22: 3, # 'ц' + 21: 2, # 'ч' + 27: 1, # 'ш' + 24: 0, # 'щ' + 17: 3, # 'ъ' + 52: 1, # 'ь' + 42: 2, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 10: { # 'л' + 63: 1, # 'e' + 45: 1, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 1, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 3, # 'б' + 9: 3, # 'в' + 20: 3, # 'г' + 11: 2, # 'д' + 3: 3, # 'е' + 23: 3, # 'ж' + 15: 2, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 3, # 'к' + 10: 1, # 'л' + 14: 2, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 2, # 'п' + 7: 2, # 'р' + 8: 3, # 'с' + 5: 3, # 'т' + 19: 3, # 'у' + 29: 2, # 'ф' + 25: 2, # 'х' + 22: 2, # 'ц' + 21: 2, # 'ч' + 27: 2, # 'ш' + 24: 1, # 'щ' + 17: 3, # 'ъ' + 52: 2, # 'ь' + 42: 3, # 'ю' + 16: 3, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 14: { # 'м' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 1, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 3, # 'б' + 9: 3, # 'в' + 20: 1, # 'г' + 11: 1, # 'д' + 3: 3, # 'е' + 23: 1, # 'ж' + 15: 1, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 2, # 'к' + 10: 3, # 'л' + 14: 1, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 3, # 'п' + 7: 2, # 'р' + 8: 2, # 'с' + 5: 1, # 'т' + 19: 3, # 'у' + 29: 2, # 'ф' + 25: 1, # 'х' + 22: 2, # 'ц' + 21: 2, # 'ч' + 27: 2, # 'ш' + 24: 1, # 'щ' + 17: 3, # 'ъ' + 52: 1, # 'ь' + 42: 2, # 'ю' + 16: 3, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 6: { # 'н' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 1, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 2, # 'б' + 9: 2, # 'в' + 20: 3, # 'г' + 11: 3, # 'д' + 3: 3, # 'е' + 23: 2, # 'ж' + 15: 2, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 3, # 'к' + 10: 2, # 'л' + 14: 1, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 1, # 'п' + 7: 2, # 'р' + 8: 3, # 'с' + 5: 3, # 'т' + 19: 3, # 'у' + 29: 3, # 'ф' + 25: 2, # 'х' + 22: 3, # 'ц' + 21: 3, # 'ч' + 27: 2, # 'ш' + 24: 1, # 'щ' + 17: 3, # 'ъ' + 52: 2, # 'ь' + 42: 2, # 'ю' + 16: 3, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 4: { # 'о' + 63: 0, # 'e' + 45: 1, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 2, # 'а' + 18: 3, # 'б' + 9: 3, # 'в' + 20: 3, # 'г' + 11: 3, # 'д' + 3: 3, # 'е' + 23: 3, # 'ж' + 15: 3, # 'з' + 2: 3, # 'и' + 26: 3, # 'й' + 12: 3, # 'к' + 10: 3, # 'л' + 14: 3, # 'м' + 6: 3, # 'н' + 4: 2, # 'о' + 13: 3, # 'п' + 7: 3, # 'р' + 8: 3, # 'с' + 5: 3, # 'т' + 19: 2, # 'у' + 29: 3, # 'ф' + 25: 3, # 'х' + 22: 3, # 'ц' + 21: 3, # 'ч' + 27: 3, # 'ш' + 24: 3, # 'щ' + 17: 1, # 'ъ' + 52: 0, # 'ь' + 42: 1, # 'ю' + 16: 3, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 13: { # 'п' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 1, # 'б' + 9: 2, # 'в' + 20: 1, # 'г' + 11: 1, # 'д' + 3: 3, # 'е' + 23: 0, # 'ж' + 15: 1, # 'з' + 2: 3, # 'и' + 26: 1, # 'й' + 12: 2, # 'к' + 10: 3, # 'л' + 14: 1, # 'м' + 6: 2, # 'н' + 4: 3, # 'о' + 13: 1, # 'п' + 7: 3, # 'р' + 8: 2, # 'с' + 5: 2, # 'т' + 19: 3, # 'у' + 29: 1, # 'ф' + 25: 1, # 'х' + 22: 2, # 'ц' + 21: 2, # 'ч' + 27: 1, # 'ш' + 24: 1, # 'щ' + 17: 3, # 'ъ' + 52: 1, # 'ь' + 42: 2, # 'ю' + 16: 2, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 7: { # 'р' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 3, # 'б' + 9: 3, # 'в' + 20: 3, # 'г' + 11: 3, # 'д' + 3: 3, # 'е' + 23: 3, # 'ж' + 15: 2, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 3, # 'к' + 10: 3, # 'л' + 14: 3, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 2, # 'п' + 7: 1, # 'р' + 8: 3, # 'с' + 5: 3, # 'т' + 19: 3, # 'у' + 29: 2, # 'ф' + 25: 3, # 'х' + 22: 3, # 'ц' + 21: 2, # 'ч' + 27: 3, # 'ш' + 24: 1, # 'щ' + 17: 3, # 'ъ' + 52: 1, # 'ь' + 42: 2, # 'ю' + 16: 3, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 8: { # 'с' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 2, # 'б' + 9: 3, # 'в' + 20: 2, # 'г' + 11: 2, # 'д' + 3: 3, # 'е' + 23: 0, # 'ж' + 15: 1, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 3, # 'к' + 10: 3, # 'л' + 14: 3, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 3, # 'п' + 7: 3, # 'р' + 8: 1, # 'с' + 5: 3, # 'т' + 19: 3, # 'у' + 29: 2, # 'ф' + 25: 2, # 'х' + 22: 2, # 'ц' + 21: 2, # 'ч' + 27: 2, # 'ш' + 24: 0, # 'щ' + 17: 3, # 'ъ' + 52: 2, # 'ь' + 42: 2, # 'ю' + 16: 3, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 5: { # 'т' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 3, # 'б' + 9: 3, # 'в' + 20: 2, # 'г' + 11: 2, # 'д' + 3: 3, # 'е' + 23: 1, # 'ж' + 15: 1, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 3, # 'к' + 10: 3, # 'л' + 14: 2, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 2, # 'п' + 7: 3, # 'р' + 8: 3, # 'с' + 5: 3, # 'т' + 19: 3, # 'у' + 29: 1, # 'ф' + 25: 2, # 'х' + 22: 2, # 'ц' + 21: 2, # 'ч' + 27: 1, # 'ш' + 24: 1, # 'щ' + 17: 3, # 'ъ' + 52: 2, # 'ь' + 42: 2, # 'ю' + 16: 3, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 19: { # 'у' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 3, # 'б' + 9: 3, # 'в' + 20: 3, # 'г' + 11: 3, # 'д' + 3: 2, # 'е' + 23: 3, # 'ж' + 15: 3, # 'з' + 2: 2, # 'и' + 26: 2, # 'й' + 12: 3, # 'к' + 10: 3, # 'л' + 14: 3, # 'м' + 6: 3, # 'н' + 4: 2, # 'о' + 13: 3, # 'п' + 7: 3, # 'р' + 8: 3, # 'с' + 5: 3, # 'т' + 19: 1, # 'у' + 29: 2, # 'ф' + 25: 2, # 'х' + 22: 2, # 'ц' + 21: 3, # 'ч' + 27: 3, # 'ш' + 24: 2, # 'щ' + 17: 1, # 'ъ' + 52: 0, # 'ь' + 42: 1, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 29: { # 'ф' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 1, # 'б' + 9: 1, # 'в' + 20: 1, # 'г' + 11: 0, # 'д' + 3: 3, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 2, # 'к' + 10: 2, # 'л' + 14: 1, # 'м' + 6: 1, # 'н' + 4: 3, # 'о' + 13: 0, # 'п' + 7: 2, # 'р' + 8: 2, # 'с' + 5: 2, # 'т' + 19: 2, # 'у' + 29: 0, # 'ф' + 25: 1, # 'х' + 22: 0, # 'ц' + 21: 1, # 'ч' + 27: 1, # 'ш' + 24: 0, # 'щ' + 17: 2, # 'ъ' + 52: 2, # 'ь' + 42: 1, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 25: { # 'х' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 1, # 'б' + 9: 3, # 'в' + 20: 0, # 'г' + 11: 1, # 'д' + 3: 2, # 'е' + 23: 0, # 'ж' + 15: 1, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 1, # 'к' + 10: 2, # 'л' + 14: 2, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 1, # 'п' + 7: 3, # 'р' + 8: 1, # 'с' + 5: 2, # 'т' + 19: 3, # 'у' + 29: 0, # 'ф' + 25: 1, # 'х' + 22: 0, # 'ц' + 21: 1, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 2, # 'ъ' + 52: 0, # 'ь' + 42: 1, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 22: { # 'ц' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 1, # 'б' + 9: 2, # 'в' + 20: 1, # 'г' + 11: 1, # 'д' + 3: 3, # 'е' + 23: 0, # 'ж' + 15: 1, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 2, # 'к' + 10: 1, # 'л' + 14: 1, # 'м' + 6: 1, # 'н' + 4: 2, # 'о' + 13: 1, # 'п' + 7: 1, # 'р' + 8: 1, # 'с' + 5: 1, # 'т' + 19: 2, # 'у' + 29: 1, # 'ф' + 25: 1, # 'х' + 22: 1, # 'ц' + 21: 1, # 'ч' + 27: 1, # 'ш' + 24: 1, # 'щ' + 17: 2, # 'ъ' + 52: 1, # 'ь' + 42: 0, # 'ю' + 16: 2, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 21: { # 'ч' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 1, # 'б' + 9: 3, # 'в' + 20: 1, # 'г' + 11: 0, # 'д' + 3: 3, # 'е' + 23: 1, # 'ж' + 15: 0, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 3, # 'к' + 10: 2, # 'л' + 14: 2, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 0, # 'п' + 7: 2, # 'р' + 8: 0, # 'с' + 5: 2, # 'т' + 19: 3, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 1, # 'ш' + 24: 0, # 'щ' + 17: 2, # 'ъ' + 52: 0, # 'ь' + 42: 1, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 27: { # 'ш' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 0, # 'б' + 9: 2, # 'в' + 20: 0, # 'г' + 11: 1, # 'д' + 3: 3, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 3, # 'к' + 10: 2, # 'л' + 14: 1, # 'м' + 6: 3, # 'н' + 4: 2, # 'о' + 13: 2, # 'п' + 7: 1, # 'р' + 8: 0, # 'с' + 5: 1, # 'т' + 19: 2, # 'у' + 29: 1, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 1, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 2, # 'ъ' + 52: 1, # 'ь' + 42: 1, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 24: { # 'щ' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 0, # 'б' + 9: 1, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 3, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 1, # 'к' + 10: 0, # 'л' + 14: 0, # 'м' + 6: 2, # 'н' + 4: 3, # 'о' + 13: 0, # 'п' + 7: 1, # 'р' + 8: 0, # 'с' + 5: 2, # 'т' + 19: 3, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 1, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 1, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 2, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 17: { # 'ъ' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 1, # 'а' + 18: 3, # 'б' + 9: 3, # 'в' + 20: 3, # 'г' + 11: 3, # 'д' + 3: 2, # 'е' + 23: 3, # 'ж' + 15: 3, # 'з' + 2: 1, # 'и' + 26: 2, # 'й' + 12: 3, # 'к' + 10: 3, # 'л' + 14: 3, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 3, # 'п' + 7: 3, # 'р' + 8: 3, # 'с' + 5: 3, # 'т' + 19: 1, # 'у' + 29: 1, # 'ф' + 25: 2, # 'х' + 22: 2, # 'ц' + 21: 3, # 'ч' + 27: 2, # 'ш' + 24: 3, # 'щ' + 17: 0, # 'ъ' + 52: 0, # 'ь' + 42: 2, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 52: { # 'ь' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 0, # 'а' + 18: 0, # 'б' + 9: 0, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 1, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 0, # 'и' + 26: 0, # 'й' + 12: 1, # 'к' + 10: 0, # 'л' + 14: 0, # 'м' + 6: 1, # 'н' + 4: 3, # 'о' + 13: 0, # 'п' + 7: 0, # 'р' + 8: 0, # 'с' + 5: 1, # 'т' + 19: 0, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 1, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 0, # 'ъ' + 52: 0, # 'ь' + 42: 1, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 42: { # 'ю' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 1, # 'а' + 18: 2, # 'б' + 9: 1, # 'в' + 20: 2, # 'г' + 11: 2, # 'д' + 3: 1, # 'е' + 23: 2, # 'ж' + 15: 2, # 'з' + 2: 1, # 'и' + 26: 1, # 'й' + 12: 2, # 'к' + 10: 2, # 'л' + 14: 2, # 'м' + 6: 2, # 'н' + 4: 1, # 'о' + 13: 1, # 'п' + 7: 2, # 'р' + 8: 2, # 'с' + 5: 2, # 'т' + 19: 1, # 'у' + 29: 1, # 'ф' + 25: 1, # 'х' + 22: 2, # 'ц' + 21: 3, # 'ч' + 27: 1, # 'ш' + 24: 1, # 'щ' + 17: 1, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 16: { # 'я' + 63: 0, # 'e' + 45: 1, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 0, # 'а' + 18: 3, # 'б' + 9: 3, # 'в' + 20: 2, # 'г' + 11: 3, # 'д' + 3: 2, # 'е' + 23: 1, # 'ж' + 15: 2, # 'з' + 2: 1, # 'и' + 26: 2, # 'й' + 12: 3, # 'к' + 10: 3, # 'л' + 14: 3, # 'м' + 6: 3, # 'н' + 4: 1, # 'о' + 13: 2, # 'п' + 7: 2, # 'р' + 8: 3, # 'с' + 5: 3, # 'т' + 19: 1, # 'у' + 29: 1, # 'ф' + 25: 3, # 'х' + 22: 2, # 'ц' + 21: 1, # 'ч' + 27: 1, # 'ш' + 24: 2, # 'щ' + 17: 0, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 58: { # 'є' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 0, # 'а' + 18: 0, # 'б' + 9: 0, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 0, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 0, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 0, # 'л' + 14: 0, # 'м' + 6: 0, # 'н' + 4: 0, # 'о' + 13: 0, # 'п' + 7: 0, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 0, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 0, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 62: { # '№' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 0, # 'а' + 18: 0, # 'б' + 9: 0, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 0, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 0, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 0, # 'л' + 14: 0, # 'м' + 6: 0, # 'н' + 4: 0, # 'о' + 13: 0, # 'п' + 7: 0, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 0, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 0, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, +} + +# 255: Undefined characters that did not exist in training text +# 254: Carriage/Return +# 253: symbol (punctuation) that does not belong to word +# 252: 0 - 9 +# 251: Control characters + +# Character Mapping Table(s): +ISO_8859_5_BULGARIAN_CHAR_TO_ORDER = { + 0: 255, # '\x00' + 1: 255, # '\x01' + 2: 255, # '\x02' + 3: 255, # '\x03' + 4: 255, # '\x04' + 5: 255, # '\x05' + 6: 255, # '\x06' + 7: 255, # '\x07' + 8: 255, # '\x08' + 9: 255, # '\t' + 10: 254, # '\n' + 11: 255, # '\x0b' + 12: 255, # '\x0c' + 13: 254, # '\r' + 14: 255, # '\x0e' + 15: 255, # '\x0f' + 16: 255, # '\x10' + 17: 255, # '\x11' + 18: 255, # '\x12' + 19: 255, # '\x13' + 20: 255, # '\x14' + 21: 255, # '\x15' + 22: 255, # '\x16' + 23: 255, # '\x17' + 24: 255, # '\x18' + 25: 255, # '\x19' + 26: 255, # '\x1a' + 27: 255, # '\x1b' + 28: 255, # '\x1c' + 29: 255, # '\x1d' + 30: 255, # '\x1e' + 31: 255, # '\x1f' + 32: 253, # ' ' + 33: 253, # '!' + 34: 253, # '"' + 35: 253, # '#' + 36: 253, # '$' + 37: 253, # '%' + 38: 253, # '&' + 39: 253, # "'" + 40: 253, # '(' + 41: 253, # ')' + 42: 253, # '*' + 43: 253, # '+' + 44: 253, # ',' + 45: 253, # '-' + 46: 253, # '.' + 47: 253, # '/' + 48: 252, # '0' + 49: 252, # '1' + 50: 252, # '2' + 51: 252, # '3' + 52: 252, # '4' + 53: 252, # '5' + 54: 252, # '6' + 55: 252, # '7' + 56: 252, # '8' + 57: 252, # '9' + 58: 253, # ':' + 59: 253, # ';' + 60: 253, # '<' + 61: 253, # '=' + 62: 253, # '>' + 63: 253, # '?' + 64: 253, # '@' + 65: 77, # 'A' + 66: 90, # 'B' + 67: 99, # 'C' + 68: 100, # 'D' + 69: 72, # 'E' + 70: 109, # 'F' + 71: 107, # 'G' + 72: 101, # 'H' + 73: 79, # 'I' + 74: 185, # 'J' + 75: 81, # 'K' + 76: 102, # 'L' + 77: 76, # 'M' + 78: 94, # 'N' + 79: 82, # 'O' + 80: 110, # 'P' + 81: 186, # 'Q' + 82: 108, # 'R' + 83: 91, # 'S' + 84: 74, # 'T' + 85: 119, # 'U' + 86: 84, # 'V' + 87: 96, # 'W' + 88: 111, # 'X' + 89: 187, # 'Y' + 90: 115, # 'Z' + 91: 253, # '[' + 92: 253, # '\\' + 93: 253, # ']' + 94: 253, # '^' + 95: 253, # '_' + 96: 253, # '`' + 97: 65, # 'a' + 98: 69, # 'b' + 99: 70, # 'c' + 100: 66, # 'd' + 101: 63, # 'e' + 102: 68, # 'f' + 103: 112, # 'g' + 104: 103, # 'h' + 105: 92, # 'i' + 106: 194, # 'j' + 107: 104, # 'k' + 108: 95, # 'l' + 109: 86, # 'm' + 110: 87, # 'n' + 111: 71, # 'o' + 112: 116, # 'p' + 113: 195, # 'q' + 114: 85, # 'r' + 115: 93, # 's' + 116: 97, # 't' + 117: 113, # 'u' + 118: 196, # 'v' + 119: 197, # 'w' + 120: 198, # 'x' + 121: 199, # 'y' + 122: 200, # 'z' + 123: 253, # '{' + 124: 253, # '|' + 125: 253, # '}' + 126: 253, # '~' + 127: 253, # '\x7f' + 128: 194, # '\x80' + 129: 195, # '\x81' + 130: 196, # '\x82' + 131: 197, # '\x83' + 132: 198, # '\x84' + 133: 199, # '\x85' + 134: 200, # '\x86' + 135: 201, # '\x87' + 136: 202, # '\x88' + 137: 203, # '\x89' + 138: 204, # '\x8a' + 139: 205, # '\x8b' + 140: 206, # '\x8c' + 141: 207, # '\x8d' + 142: 208, # '\x8e' + 143: 209, # '\x8f' + 144: 210, # '\x90' + 145: 211, # '\x91' + 146: 212, # '\x92' + 147: 213, # '\x93' + 148: 214, # '\x94' + 149: 215, # '\x95' + 150: 216, # '\x96' + 151: 217, # '\x97' + 152: 218, # '\x98' + 153: 219, # '\x99' + 154: 220, # '\x9a' + 155: 221, # '\x9b' + 156: 222, # '\x9c' + 157: 223, # '\x9d' + 158: 224, # '\x9e' + 159: 225, # '\x9f' + 160: 81, # '\xa0' + 161: 226, # 'Ё' + 162: 227, # 'Ђ' + 163: 228, # 'Ѓ' + 164: 229, # 'Є' + 165: 230, # 'Ѕ' + 166: 105, # 'І' + 167: 231, # 'Ї' + 168: 232, # 'Ј' + 169: 233, # 'Љ' + 170: 234, # 'Њ' + 171: 235, # 'Ћ' + 172: 236, # 'Ќ' + 173: 45, # '\xad' + 174: 237, # 'Ў' + 175: 238, # 'Џ' + 176: 31, # 'А' + 177: 32, # 'Б' + 178: 35, # 'В' + 179: 43, # 'Г' + 180: 37, # 'Д' + 181: 44, # 'Е' + 182: 55, # 'Ж' + 183: 47, # 'З' + 184: 40, # 'И' + 185: 59, # 'Й' + 186: 33, # 'К' + 187: 46, # 'Л' + 188: 38, # 'М' + 189: 36, # 'Н' + 190: 41, # 'О' + 191: 30, # 'П' + 192: 39, # 'Р' + 193: 28, # 'С' + 194: 34, # 'Т' + 195: 51, # 'У' + 196: 48, # 'Ф' + 197: 49, # 'Х' + 198: 53, # 'Ц' + 199: 50, # 'Ч' + 200: 54, # 'Ш' + 201: 57, # 'Щ' + 202: 61, # 'Ъ' + 203: 239, # 'Ы' + 204: 67, # 'Ь' + 205: 240, # 'Э' + 206: 60, # 'Ю' + 207: 56, # 'Я' + 208: 1, # 'а' + 209: 18, # 'б' + 210: 9, # 'в' + 211: 20, # 'г' + 212: 11, # 'д' + 213: 3, # 'е' + 214: 23, # 'ж' + 215: 15, # 'з' + 216: 2, # 'и' + 217: 26, # 'й' + 218: 12, # 'к' + 219: 10, # 'л' + 220: 14, # 'м' + 221: 6, # 'н' + 222: 4, # 'о' + 223: 13, # 'п' + 224: 7, # 'р' + 225: 8, # 'с' + 226: 5, # 'т' + 227: 19, # 'у' + 228: 29, # 'ф' + 229: 25, # 'х' + 230: 22, # 'ц' + 231: 21, # 'ч' + 232: 27, # 'ш' + 233: 24, # 'щ' + 234: 17, # 'ъ' + 235: 75, # 'ы' + 236: 52, # 'ь' + 237: 241, # 'э' + 238: 42, # 'ю' + 239: 16, # 'я' + 240: 62, # '№' + 241: 242, # 'ё' + 242: 243, # 'ђ' + 243: 244, # 'ѓ' + 244: 58, # 'є' + 245: 245, # 'ѕ' + 246: 98, # 'і' + 247: 246, # 'ї' + 248: 247, # 'ј' + 249: 248, # 'љ' + 250: 249, # 'њ' + 251: 250, # 'ћ' + 252: 251, # 'ќ' + 253: 91, # '§' + 254: 252, # 'ў' + 255: 253, # 'џ' +} + +ISO_8859_5_BULGARIAN_MODEL = SingleByteCharSetModel( + charset_name="ISO-8859-5", + language="Bulgarian", + char_to_order_map=ISO_8859_5_BULGARIAN_CHAR_TO_ORDER, + language_model=BULGARIAN_LANG_MODEL, + typical_positive_ratio=0.969392, + keep_ascii_letters=False, + alphabet="АБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЬЮЯабвгдежзийклмнопрстуфхцчшщъьюя", +) + +WINDOWS_1251_BULGARIAN_CHAR_TO_ORDER = { + 0: 255, # '\x00' + 1: 255, # '\x01' + 2: 255, # '\x02' + 3: 255, # '\x03' + 4: 255, # '\x04' + 5: 255, # '\x05' + 6: 255, # '\x06' + 7: 255, # '\x07' + 8: 255, # '\x08' + 9: 255, # '\t' + 10: 254, # '\n' + 11: 255, # '\x0b' + 12: 255, # '\x0c' + 13: 254, # '\r' + 14: 255, # '\x0e' + 15: 255, # '\x0f' + 16: 255, # '\x10' + 17: 255, # '\x11' + 18: 255, # '\x12' + 19: 255, # '\x13' + 20: 255, # '\x14' + 21: 255, # '\x15' + 22: 255, # '\x16' + 23: 255, # '\x17' + 24: 255, # '\x18' + 25: 255, # '\x19' + 26: 255, # '\x1a' + 27: 255, # '\x1b' + 28: 255, # '\x1c' + 29: 255, # '\x1d' + 30: 255, # '\x1e' + 31: 255, # '\x1f' + 32: 253, # ' ' + 33: 253, # '!' + 34: 253, # '"' + 35: 253, # '#' + 36: 253, # '$' + 37: 253, # '%' + 38: 253, # '&' + 39: 253, # "'" + 40: 253, # '(' + 41: 253, # ')' + 42: 253, # '*' + 43: 253, # '+' + 44: 253, # ',' + 45: 253, # '-' + 46: 253, # '.' + 47: 253, # '/' + 48: 252, # '0' + 49: 252, # '1' + 50: 252, # '2' + 51: 252, # '3' + 52: 252, # '4' + 53: 252, # '5' + 54: 252, # '6' + 55: 252, # '7' + 56: 252, # '8' + 57: 252, # '9' + 58: 253, # ':' + 59: 253, # ';' + 60: 253, # '<' + 61: 253, # '=' + 62: 253, # '>' + 63: 253, # '?' + 64: 253, # '@' + 65: 77, # 'A' + 66: 90, # 'B' + 67: 99, # 'C' + 68: 100, # 'D' + 69: 72, # 'E' + 70: 109, # 'F' + 71: 107, # 'G' + 72: 101, # 'H' + 73: 79, # 'I' + 74: 185, # 'J' + 75: 81, # 'K' + 76: 102, # 'L' + 77: 76, # 'M' + 78: 94, # 'N' + 79: 82, # 'O' + 80: 110, # 'P' + 81: 186, # 'Q' + 82: 108, # 'R' + 83: 91, # 'S' + 84: 74, # 'T' + 85: 119, # 'U' + 86: 84, # 'V' + 87: 96, # 'W' + 88: 111, # 'X' + 89: 187, # 'Y' + 90: 115, # 'Z' + 91: 253, # '[' + 92: 253, # '\\' + 93: 253, # ']' + 94: 253, # '^' + 95: 253, # '_' + 96: 253, # '`' + 97: 65, # 'a' + 98: 69, # 'b' + 99: 70, # 'c' + 100: 66, # 'd' + 101: 63, # 'e' + 102: 68, # 'f' + 103: 112, # 'g' + 104: 103, # 'h' + 105: 92, # 'i' + 106: 194, # 'j' + 107: 104, # 'k' + 108: 95, # 'l' + 109: 86, # 'm' + 110: 87, # 'n' + 111: 71, # 'o' + 112: 116, # 'p' + 113: 195, # 'q' + 114: 85, # 'r' + 115: 93, # 's' + 116: 97, # 't' + 117: 113, # 'u' + 118: 196, # 'v' + 119: 197, # 'w' + 120: 198, # 'x' + 121: 199, # 'y' + 122: 200, # 'z' + 123: 253, # '{' + 124: 253, # '|' + 125: 253, # '}' + 126: 253, # '~' + 127: 253, # '\x7f' + 128: 206, # 'Ђ' + 129: 207, # 'Ѓ' + 130: 208, # '‚' + 131: 209, # 'ѓ' + 132: 210, # '„' + 133: 211, # '…' + 134: 212, # '†' + 135: 213, # '‡' + 136: 120, # '€' + 137: 214, # '‰' + 138: 215, # 'Љ' + 139: 216, # '‹' + 140: 217, # 'Њ' + 141: 218, # 'Ќ' + 142: 219, # 'Ћ' + 143: 220, # 'Џ' + 144: 221, # 'ђ' + 145: 78, # '‘' + 146: 64, # '’' + 147: 83, # '“' + 148: 121, # '”' + 149: 98, # '•' + 150: 117, # '–' + 151: 105, # '—' + 152: 222, # None + 153: 223, # '™' + 154: 224, # 'љ' + 155: 225, # '›' + 156: 226, # 'њ' + 157: 227, # 'ќ' + 158: 228, # 'ћ' + 159: 229, # 'џ' + 160: 88, # '\xa0' + 161: 230, # 'Ў' + 162: 231, # 'ў' + 163: 232, # 'Ј' + 164: 233, # '¤' + 165: 122, # 'Ґ' + 166: 89, # '¦' + 167: 106, # '§' + 168: 234, # 'Ё' + 169: 235, # '©' + 170: 236, # 'Є' + 171: 237, # '«' + 172: 238, # '¬' + 173: 45, # '\xad' + 174: 239, # '®' + 175: 240, # 'Ї' + 176: 73, # '°' + 177: 80, # '±' + 178: 118, # 'І' + 179: 114, # 'і' + 180: 241, # 'ґ' + 181: 242, # 'µ' + 182: 243, # '¶' + 183: 244, # '·' + 184: 245, # 'ё' + 185: 62, # '№' + 186: 58, # 'є' + 187: 246, # '»' + 188: 247, # 'ј' + 189: 248, # 'Ѕ' + 190: 249, # 'ѕ' + 191: 250, # 'ї' + 192: 31, # 'А' + 193: 32, # 'Б' + 194: 35, # 'В' + 195: 43, # 'Г' + 196: 37, # 'Д' + 197: 44, # 'Е' + 198: 55, # 'Ж' + 199: 47, # 'З' + 200: 40, # 'И' + 201: 59, # 'Й' + 202: 33, # 'К' + 203: 46, # 'Л' + 204: 38, # 'М' + 205: 36, # 'Н' + 206: 41, # 'О' + 207: 30, # 'П' + 208: 39, # 'Р' + 209: 28, # 'С' + 210: 34, # 'Т' + 211: 51, # 'У' + 212: 48, # 'Ф' + 213: 49, # 'Х' + 214: 53, # 'Ц' + 215: 50, # 'Ч' + 216: 54, # 'Ш' + 217: 57, # 'Щ' + 218: 61, # 'Ъ' + 219: 251, # 'Ы' + 220: 67, # 'Ь' + 221: 252, # 'Э' + 222: 60, # 'Ю' + 223: 56, # 'Я' + 224: 1, # 'а' + 225: 18, # 'б' + 226: 9, # 'в' + 227: 20, # 'г' + 228: 11, # 'д' + 229: 3, # 'е' + 230: 23, # 'ж' + 231: 15, # 'з' + 232: 2, # 'и' + 233: 26, # 'й' + 234: 12, # 'к' + 235: 10, # 'л' + 236: 14, # 'м' + 237: 6, # 'н' + 238: 4, # 'о' + 239: 13, # 'п' + 240: 7, # 'р' + 241: 8, # 'с' + 242: 5, # 'т' + 243: 19, # 'у' + 244: 29, # 'ф' + 245: 25, # 'х' + 246: 22, # 'ц' + 247: 21, # 'ч' + 248: 27, # 'ш' + 249: 24, # 'щ' + 250: 17, # 'ъ' + 251: 75, # 'ы' + 252: 52, # 'ь' + 253: 253, # 'э' + 254: 42, # 'ю' + 255: 16, # 'я' +} + +WINDOWS_1251_BULGARIAN_MODEL = SingleByteCharSetModel( + charset_name="windows-1251", + language="Bulgarian", + char_to_order_map=WINDOWS_1251_BULGARIAN_CHAR_TO_ORDER, + language_model=BULGARIAN_LANG_MODEL, + typical_positive_ratio=0.969392, + keep_ascii_letters=False, + alphabet="АБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЬЮЯабвгдежзийклмнопрстуфхцчшщъьюя", +) diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/langgreekmodel.py b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/langgreekmodel.py new file mode 100644 index 0000000..cfb8639 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/langgreekmodel.py @@ -0,0 +1,4397 @@ +from pip._vendor.chardet.sbcharsetprober import SingleByteCharSetModel + +# 3: Positive +# 2: Likely +# 1: Unlikely +# 0: Negative + +GREEK_LANG_MODEL = { + 60: { # 'e' + 60: 2, # 'e' + 55: 1, # 'o' + 58: 2, # 't' + 36: 1, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 1, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 0, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 0, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 55: { # 'o' + 60: 0, # 'e' + 55: 2, # 'o' + 58: 2, # 't' + 36: 1, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 1, # 'ν' + 30: 0, # 'ξ' + 4: 0, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 1, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 58: { # 't' + 60: 2, # 'e' + 55: 1, # 'o' + 58: 1, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 2, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 1, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 0, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 36: { # '·' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 0, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 0, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 61: { # 'Ά' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 1, # 'γ' + 21: 2, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 0, # 'κ' + 16: 2, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 0, # 'ο' + 9: 1, # 'π' + 8: 2, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 0, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 46: { # 'Έ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 2, # 'β' + 20: 2, # 'γ' + 21: 0, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 2, # 'κ' + 16: 2, # 'λ' + 10: 0, # 'μ' + 6: 3, # 'ν' + 30: 2, # 'ξ' + 4: 0, # 'ο' + 9: 2, # 'π' + 8: 2, # 'ρ' + 14: 0, # 'ς' + 7: 1, # 'σ' + 2: 2, # 'τ' + 12: 0, # 'υ' + 28: 2, # 'φ' + 23: 3, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 54: { # 'Ό' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 0, # 'κ' + 16: 2, # 'λ' + 10: 2, # 'μ' + 6: 2, # 'ν' + 30: 0, # 'ξ' + 4: 0, # 'ο' + 9: 2, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 2, # 'σ' + 2: 3, # 'τ' + 12: 0, # 'υ' + 28: 0, # 'φ' + 23: 2, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 31: { # 'Α' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 2, # 'Β' + 43: 2, # 'Γ' + 41: 1, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 2, # 'Θ' + 47: 2, # 'Ι' + 44: 2, # 'Κ' + 53: 2, # 'Λ' + 38: 2, # 'Μ' + 49: 2, # 'Ν' + 59: 1, # 'Ξ' + 39: 0, # 'Ο' + 35: 2, # 'Π' + 48: 2, # 'Ρ' + 37: 2, # 'Σ' + 33: 2, # 'Τ' + 45: 2, # 'Υ' + 56: 2, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 2, # 'γ' + 21: 0, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 1, # 'θ' + 5: 0, # 'ι' + 11: 2, # 'κ' + 16: 3, # 'λ' + 10: 2, # 'μ' + 6: 3, # 'ν' + 30: 2, # 'ξ' + 4: 0, # 'ο' + 9: 3, # 'π' + 8: 3, # 'ρ' + 14: 2, # 'ς' + 7: 2, # 'σ' + 2: 0, # 'τ' + 12: 3, # 'υ' + 28: 2, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 2, # 'ύ' + 27: 0, # 'ώ' + }, + 51: { # 'Β' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 2, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 1, # 'Ε' + 40: 1, # 'Η' + 52: 0, # 'Θ' + 47: 1, # 'Ι' + 44: 0, # 'Κ' + 53: 1, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 2, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 2, # 'ά' + 18: 2, # 'έ' + 22: 2, # 'ή' + 15: 0, # 'ί' + 1: 2, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 2, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 2, # 'ι' + 11: 0, # 'κ' + 16: 2, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 2, # 'ο' + 9: 0, # 'π' + 8: 2, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 0, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 43: { # 'Γ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 1, # 'Α' + 51: 0, # 'Β' + 43: 2, # 'Γ' + 41: 0, # 'Δ' + 34: 2, # 'Ε' + 40: 1, # 'Η' + 52: 0, # 'Θ' + 47: 2, # 'Ι' + 44: 1, # 'Κ' + 53: 1, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 1, # 'Ο' + 35: 0, # 'Π' + 48: 2, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 2, # 'Υ' + 56: 0, # 'Φ' + 50: 1, # 'Χ' + 57: 2, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 2, # 'ί' + 1: 2, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 2, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 3, # 'ι' + 11: 0, # 'κ' + 16: 2, # 'λ' + 10: 0, # 'μ' + 6: 2, # 'ν' + 30: 0, # 'ξ' + 4: 0, # 'ο' + 9: 0, # 'π' + 8: 2, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 0, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 41: { # 'Δ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 2, # 'Ε' + 40: 2, # 'Η' + 52: 0, # 'Θ' + 47: 2, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 2, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 2, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 2, # 'ή' + 15: 2, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 2, # 'η' + 25: 0, # 'θ' + 5: 3, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 2, # 'ο' + 9: 0, # 'π' + 8: 2, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 2, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 2, # 'ω' + 19: 1, # 'ό' + 26: 2, # 'ύ' + 27: 2, # 'ώ' + }, + 34: { # 'Ε' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 2, # 'Α' + 51: 0, # 'Β' + 43: 2, # 'Γ' + 41: 2, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 2, # 'Ι' + 44: 2, # 'Κ' + 53: 2, # 'Λ' + 38: 2, # 'Μ' + 49: 2, # 'Ν' + 59: 1, # 'Ξ' + 39: 0, # 'Ο' + 35: 2, # 'Π' + 48: 2, # 'Ρ' + 37: 2, # 'Σ' + 33: 2, # 'Τ' + 45: 2, # 'Υ' + 56: 0, # 'Φ' + 50: 2, # 'Χ' + 57: 2, # 'Ω' + 17: 3, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 3, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 3, # 'γ' + 21: 2, # 'δ' + 3: 1, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 1, # 'θ' + 5: 2, # 'ι' + 11: 3, # 'κ' + 16: 3, # 'λ' + 10: 2, # 'μ' + 6: 3, # 'ν' + 30: 2, # 'ξ' + 4: 0, # 'ο' + 9: 3, # 'π' + 8: 2, # 'ρ' + 14: 0, # 'ς' + 7: 2, # 'σ' + 2: 2, # 'τ' + 12: 2, # 'υ' + 28: 2, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 1, # 'ύ' + 27: 0, # 'ώ' + }, + 40: { # 'Η' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 1, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 2, # 'Θ' + 47: 0, # 'Ι' + 44: 2, # 'Κ' + 53: 0, # 'Λ' + 38: 2, # 'Μ' + 49: 2, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 2, # 'Π' + 48: 2, # 'Ρ' + 37: 2, # 'Σ' + 33: 2, # 'Τ' + 45: 1, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 0, # 'κ' + 16: 2, # 'λ' + 10: 0, # 'μ' + 6: 1, # 'ν' + 30: 0, # 'ξ' + 4: 0, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 0, # 'υ' + 28: 0, # 'φ' + 23: 1, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 52: { # 'Θ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 2, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 2, # 'Ε' + 40: 2, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 2, # 'Ο' + 35: 0, # 'Π' + 48: 1, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 1, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 2, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 3, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 2, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 0, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 2, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 2, # 'ύ' + 27: 0, # 'ώ' + }, + 47: { # 'Ι' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 2, # 'Α' + 51: 1, # 'Β' + 43: 1, # 'Γ' + 41: 2, # 'Δ' + 34: 2, # 'Ε' + 40: 2, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 2, # 'Κ' + 53: 2, # 'Λ' + 38: 2, # 'Μ' + 49: 2, # 'Ν' + 59: 0, # 'Ξ' + 39: 2, # 'Ο' + 35: 0, # 'Π' + 48: 2, # 'Ρ' + 37: 2, # 'Σ' + 33: 2, # 'Τ' + 45: 0, # 'Υ' + 56: 2, # 'Φ' + 50: 0, # 'Χ' + 57: 2, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 2, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 2, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 1, # 'ν' + 30: 0, # 'ξ' + 4: 2, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 2, # 'σ' + 2: 1, # 'τ' + 12: 0, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 1, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 44: { # 'Κ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 2, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 1, # 'Δ' + 34: 2, # 'Ε' + 40: 2, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 1, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 2, # 'Ο' + 35: 0, # 'Π' + 48: 2, # 'Ρ' + 37: 0, # 'Σ' + 33: 1, # 'Τ' + 45: 2, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 1, # 'Ω' + 17: 3, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 3, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 2, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 2, # 'ι' + 11: 0, # 'κ' + 16: 2, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 2, # 'ο' + 9: 0, # 'π' + 8: 2, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 2, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 2, # 'ό' + 26: 2, # 'ύ' + 27: 2, # 'ώ' + }, + 53: { # 'Λ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 2, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 2, # 'Ε' + 40: 2, # 'Η' + 52: 0, # 'Θ' + 47: 2, # 'Ι' + 44: 0, # 'Κ' + 53: 2, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 2, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 2, # 'Σ' + 33: 0, # 'Τ' + 45: 2, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 2, # 'Ω' + 17: 2, # 'ά' + 18: 2, # 'έ' + 22: 0, # 'ή' + 15: 2, # 'ί' + 1: 2, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 2, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 1, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 2, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 2, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 2, # 'ό' + 26: 2, # 'ύ' + 27: 0, # 'ώ' + }, + 38: { # 'Μ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 2, # 'Α' + 51: 2, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 2, # 'Ε' + 40: 2, # 'Η' + 52: 0, # 'Θ' + 47: 2, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 2, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 2, # 'Ο' + 35: 2, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 2, # 'ά' + 18: 2, # 'έ' + 22: 2, # 'ή' + 15: 2, # 'ί' + 1: 2, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 2, # 'η' + 25: 0, # 'θ' + 5: 3, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 2, # 'ο' + 9: 3, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 2, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 2, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 49: { # 'Ν' + 60: 2, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 2, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 2, # 'Ε' + 40: 2, # 'Η' + 52: 0, # 'Θ' + 47: 2, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 2, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 2, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 2, # 'Ω' + 17: 0, # 'ά' + 18: 2, # 'έ' + 22: 0, # 'ή' + 15: 2, # 'ί' + 1: 2, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 1, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 2, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 0, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 1, # 'ω' + 19: 2, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 59: { # 'Ξ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 1, # 'Ε' + 40: 1, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 1, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 2, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 2, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 2, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 0, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 0, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 39: { # 'Ο' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 1, # 'Β' + 43: 2, # 'Γ' + 41: 2, # 'Δ' + 34: 2, # 'Ε' + 40: 1, # 'Η' + 52: 2, # 'Θ' + 47: 2, # 'Ι' + 44: 2, # 'Κ' + 53: 2, # 'Λ' + 38: 2, # 'Μ' + 49: 2, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 2, # 'Π' + 48: 2, # 'Ρ' + 37: 2, # 'Σ' + 33: 2, # 'Τ' + 45: 2, # 'Υ' + 56: 2, # 'Φ' + 50: 2, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 2, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 3, # 'ι' + 11: 2, # 'κ' + 16: 2, # 'λ' + 10: 2, # 'μ' + 6: 2, # 'ν' + 30: 0, # 'ξ' + 4: 0, # 'ο' + 9: 2, # 'π' + 8: 2, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 2, # 'τ' + 12: 2, # 'υ' + 28: 1, # 'φ' + 23: 1, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 2, # 'ύ' + 27: 0, # 'ώ' + }, + 35: { # 'Π' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 2, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 2, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 2, # 'Ι' + 44: 0, # 'Κ' + 53: 2, # 'Λ' + 38: 1, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 2, # 'Ο' + 35: 0, # 'Π' + 48: 2, # 'Ρ' + 37: 0, # 'Σ' + 33: 1, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 1, # 'Χ' + 57: 2, # 'Ω' + 17: 2, # 'ά' + 18: 1, # 'έ' + 22: 1, # 'ή' + 15: 2, # 'ί' + 1: 3, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 2, # 'η' + 25: 0, # 'θ' + 5: 2, # 'ι' + 11: 0, # 'κ' + 16: 2, # 'λ' + 10: 0, # 'μ' + 6: 2, # 'ν' + 30: 0, # 'ξ' + 4: 3, # 'ο' + 9: 0, # 'π' + 8: 3, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 2, # 'υ' + 28: 0, # 'φ' + 23: 2, # 'χ' + 42: 0, # 'ψ' + 24: 2, # 'ω' + 19: 2, # 'ό' + 26: 0, # 'ύ' + 27: 3, # 'ώ' + }, + 48: { # 'Ρ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 2, # 'Α' + 51: 0, # 'Β' + 43: 1, # 'Γ' + 41: 1, # 'Δ' + 34: 2, # 'Ε' + 40: 2, # 'Η' + 52: 0, # 'Θ' + 47: 2, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 2, # 'Ν' + 59: 0, # 'Ξ' + 39: 2, # 'Ο' + 35: 0, # 'Π' + 48: 2, # 'Ρ' + 37: 0, # 'Σ' + 33: 1, # 'Τ' + 45: 1, # 'Υ' + 56: 0, # 'Φ' + 50: 1, # 'Χ' + 57: 1, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 2, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 1, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 3, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 2, # 'ω' + 19: 0, # 'ό' + 26: 2, # 'ύ' + 27: 0, # 'ώ' + }, + 37: { # 'Σ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 2, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 1, # 'Δ' + 34: 2, # 'Ε' + 40: 2, # 'Η' + 52: 0, # 'Θ' + 47: 2, # 'Ι' + 44: 2, # 'Κ' + 53: 0, # 'Λ' + 38: 2, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 2, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 2, # 'Σ' + 33: 2, # 'Τ' + 45: 2, # 'Υ' + 56: 0, # 'Φ' + 50: 2, # 'Χ' + 57: 2, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 2, # 'ή' + 15: 2, # 'ί' + 1: 2, # 'α' + 29: 2, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 3, # 'η' + 25: 0, # 'θ' + 5: 2, # 'ι' + 11: 2, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 2, # 'ο' + 9: 2, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 3, # 'τ' + 12: 3, # 'υ' + 28: 0, # 'φ' + 23: 2, # 'χ' + 42: 0, # 'ψ' + 24: 2, # 'ω' + 19: 0, # 'ό' + 26: 2, # 'ύ' + 27: 2, # 'ώ' + }, + 33: { # 'Τ' + 60: 0, # 'e' + 55: 1, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 2, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 2, # 'Ε' + 40: 2, # 'Η' + 52: 0, # 'Θ' + 47: 2, # 'Ι' + 44: 2, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 2, # 'Ο' + 35: 0, # 'Π' + 48: 2, # 'Ρ' + 37: 0, # 'Σ' + 33: 1, # 'Τ' + 45: 1, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 2, # 'Ω' + 17: 2, # 'ά' + 18: 2, # 'έ' + 22: 0, # 'ή' + 15: 2, # 'ί' + 1: 3, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 2, # 'ε' + 32: 0, # 'ζ' + 13: 2, # 'η' + 25: 0, # 'θ' + 5: 2, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 2, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 3, # 'ο' + 9: 0, # 'π' + 8: 2, # 'ρ' + 14: 0, # 'ς' + 7: 2, # 'σ' + 2: 0, # 'τ' + 12: 2, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 2, # 'ό' + 26: 2, # 'ύ' + 27: 3, # 'ώ' + }, + 45: { # 'Υ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 2, # 'Γ' + 41: 0, # 'Δ' + 34: 1, # 'Ε' + 40: 2, # 'Η' + 52: 2, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 1, # 'Λ' + 38: 2, # 'Μ' + 49: 2, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 2, # 'Π' + 48: 1, # 'Ρ' + 37: 2, # 'Σ' + 33: 2, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 1, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 0, # 'κ' + 16: 2, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 0, # 'ο' + 9: 3, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 0, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 56: { # 'Φ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 1, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 1, # 'Η' + 52: 0, # 'Θ' + 47: 2, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 2, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 2, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 2, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 2, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 2, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 2, # 'τ' + 12: 2, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 1, # 'ύ' + 27: 1, # 'ώ' + }, + 50: { # 'Χ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 1, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 2, # 'Ε' + 40: 2, # 'Η' + 52: 0, # 'Θ' + 47: 2, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 1, # 'Ν' + 59: 0, # 'Ξ' + 39: 1, # 'Ο' + 35: 0, # 'Π' + 48: 2, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 1, # 'Χ' + 57: 1, # 'Ω' + 17: 2, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 2, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 2, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 2, # 'ο' + 9: 0, # 'π' + 8: 3, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 2, # 'τ' + 12: 0, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 2, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 57: { # 'Ω' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 1, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 1, # 'Λ' + 38: 0, # 'Μ' + 49: 2, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 2, # 'Ρ' + 37: 2, # 'Σ' + 33: 2, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 0, # 'ο' + 9: 0, # 'π' + 8: 2, # 'ρ' + 14: 2, # 'ς' + 7: 2, # 'σ' + 2: 0, # 'τ' + 12: 0, # 'υ' + 28: 0, # 'φ' + 23: 1, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 17: { # 'ά' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 2, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 3, # 'β' + 20: 3, # 'γ' + 21: 3, # 'δ' + 3: 3, # 'ε' + 32: 3, # 'ζ' + 13: 0, # 'η' + 25: 3, # 'θ' + 5: 2, # 'ι' + 11: 3, # 'κ' + 16: 3, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 3, # 'ξ' + 4: 0, # 'ο' + 9: 3, # 'π' + 8: 3, # 'ρ' + 14: 3, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 0, # 'υ' + 28: 3, # 'φ' + 23: 3, # 'χ' + 42: 3, # 'ψ' + 24: 2, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 18: { # 'έ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 3, # 'α' + 29: 2, # 'β' + 20: 3, # 'γ' + 21: 2, # 'δ' + 3: 3, # 'ε' + 32: 2, # 'ζ' + 13: 0, # 'η' + 25: 3, # 'θ' + 5: 0, # 'ι' + 11: 3, # 'κ' + 16: 3, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 3, # 'ξ' + 4: 3, # 'ο' + 9: 3, # 'π' + 8: 3, # 'ρ' + 14: 3, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 0, # 'υ' + 28: 3, # 'φ' + 23: 3, # 'χ' + 42: 3, # 'ψ' + 24: 2, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 22: { # 'ή' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 1, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 3, # 'γ' + 21: 3, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 3, # 'θ' + 5: 0, # 'ι' + 11: 3, # 'κ' + 16: 2, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 2, # 'ξ' + 4: 0, # 'ο' + 9: 3, # 'π' + 8: 3, # 'ρ' + 14: 3, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 0, # 'υ' + 28: 2, # 'φ' + 23: 3, # 'χ' + 42: 2, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 15: { # 'ί' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 3, # 'α' + 29: 2, # 'β' + 20: 3, # 'γ' + 21: 3, # 'δ' + 3: 3, # 'ε' + 32: 3, # 'ζ' + 13: 3, # 'η' + 25: 3, # 'θ' + 5: 0, # 'ι' + 11: 3, # 'κ' + 16: 3, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 3, # 'ξ' + 4: 3, # 'ο' + 9: 3, # 'π' + 8: 3, # 'ρ' + 14: 3, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 0, # 'υ' + 28: 1, # 'φ' + 23: 3, # 'χ' + 42: 2, # 'ψ' + 24: 3, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 1: { # 'α' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 2, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 2, # 'έ' + 22: 0, # 'ή' + 15: 3, # 'ί' + 1: 0, # 'α' + 29: 3, # 'β' + 20: 3, # 'γ' + 21: 3, # 'δ' + 3: 2, # 'ε' + 32: 3, # 'ζ' + 13: 1, # 'η' + 25: 3, # 'θ' + 5: 3, # 'ι' + 11: 3, # 'κ' + 16: 3, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 3, # 'ξ' + 4: 2, # 'ο' + 9: 3, # 'π' + 8: 3, # 'ρ' + 14: 3, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 3, # 'υ' + 28: 3, # 'φ' + 23: 3, # 'χ' + 42: 2, # 'ψ' + 24: 0, # 'ω' + 19: 2, # 'ό' + 26: 2, # 'ύ' + 27: 0, # 'ώ' + }, + 29: { # 'β' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 3, # 'ά' + 18: 2, # 'έ' + 22: 3, # 'ή' + 15: 2, # 'ί' + 1: 3, # 'α' + 29: 0, # 'β' + 20: 2, # 'γ' + 21: 2, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 2, # 'η' + 25: 0, # 'θ' + 5: 3, # 'ι' + 11: 0, # 'κ' + 16: 3, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 3, # 'ο' + 9: 0, # 'π' + 8: 3, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 0, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 2, # 'ω' + 19: 2, # 'ό' + 26: 2, # 'ύ' + 27: 2, # 'ώ' + }, + 20: { # 'γ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 3, # 'ά' + 18: 3, # 'έ' + 22: 3, # 'ή' + 15: 3, # 'ί' + 1: 3, # 'α' + 29: 0, # 'β' + 20: 3, # 'γ' + 21: 0, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 3, # 'η' + 25: 0, # 'θ' + 5: 3, # 'ι' + 11: 3, # 'κ' + 16: 3, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 3, # 'ξ' + 4: 3, # 'ο' + 9: 0, # 'π' + 8: 3, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 2, # 'υ' + 28: 0, # 'φ' + 23: 3, # 'χ' + 42: 0, # 'ψ' + 24: 3, # 'ω' + 19: 3, # 'ό' + 26: 2, # 'ύ' + 27: 3, # 'ώ' + }, + 21: { # 'δ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 2, # 'ά' + 18: 3, # 'έ' + 22: 3, # 'ή' + 15: 3, # 'ί' + 1: 3, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 3, # 'η' + 25: 0, # 'θ' + 5: 3, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 3, # 'ο' + 9: 0, # 'π' + 8: 3, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 3, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 3, # 'ω' + 19: 3, # 'ό' + 26: 3, # 'ύ' + 27: 3, # 'ώ' + }, + 3: { # 'ε' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 2, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 3, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 3, # 'ί' + 1: 2, # 'α' + 29: 3, # 'β' + 20: 3, # 'γ' + 21: 3, # 'δ' + 3: 2, # 'ε' + 32: 2, # 'ζ' + 13: 0, # 'η' + 25: 3, # 'θ' + 5: 3, # 'ι' + 11: 3, # 'κ' + 16: 3, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 3, # 'ξ' + 4: 2, # 'ο' + 9: 3, # 'π' + 8: 3, # 'ρ' + 14: 3, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 3, # 'υ' + 28: 3, # 'φ' + 23: 3, # 'χ' + 42: 2, # 'ψ' + 24: 3, # 'ω' + 19: 2, # 'ό' + 26: 3, # 'ύ' + 27: 2, # 'ώ' + }, + 32: { # 'ζ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 2, # 'ά' + 18: 2, # 'έ' + 22: 2, # 'ή' + 15: 2, # 'ί' + 1: 2, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 3, # 'η' + 25: 0, # 'θ' + 5: 2, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 3, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 1, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 3, # 'ω' + 19: 2, # 'ό' + 26: 0, # 'ύ' + 27: 2, # 'ώ' + }, + 13: { # 'η' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 2, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 3, # 'γ' + 21: 2, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 3, # 'θ' + 5: 0, # 'ι' + 11: 3, # 'κ' + 16: 3, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 2, # 'ξ' + 4: 0, # 'ο' + 9: 2, # 'π' + 8: 3, # 'ρ' + 14: 3, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 0, # 'υ' + 28: 2, # 'φ' + 23: 3, # 'χ' + 42: 2, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 25: { # 'θ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 2, # 'ά' + 18: 3, # 'έ' + 22: 3, # 'ή' + 15: 2, # 'ί' + 1: 3, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 3, # 'η' + 25: 0, # 'θ' + 5: 3, # 'ι' + 11: 0, # 'κ' + 16: 1, # 'λ' + 10: 3, # 'μ' + 6: 2, # 'ν' + 30: 0, # 'ξ' + 4: 3, # 'ο' + 9: 0, # 'π' + 8: 3, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 3, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 3, # 'ω' + 19: 3, # 'ό' + 26: 3, # 'ύ' + 27: 3, # 'ώ' + }, + 5: { # 'ι' + 60: 0, # 'e' + 55: 1, # 'o' + 58: 0, # 't' + 36: 2, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 1, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 3, # 'ά' + 18: 3, # 'έ' + 22: 3, # 'ή' + 15: 0, # 'ί' + 1: 3, # 'α' + 29: 3, # 'β' + 20: 3, # 'γ' + 21: 3, # 'δ' + 3: 3, # 'ε' + 32: 2, # 'ζ' + 13: 3, # 'η' + 25: 3, # 'θ' + 5: 0, # 'ι' + 11: 3, # 'κ' + 16: 3, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 3, # 'ξ' + 4: 3, # 'ο' + 9: 3, # 'π' + 8: 3, # 'ρ' + 14: 3, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 0, # 'υ' + 28: 2, # 'φ' + 23: 3, # 'χ' + 42: 2, # 'ψ' + 24: 3, # 'ω' + 19: 3, # 'ό' + 26: 0, # 'ύ' + 27: 3, # 'ώ' + }, + 11: { # 'κ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 3, # 'ά' + 18: 3, # 'έ' + 22: 3, # 'ή' + 15: 3, # 'ί' + 1: 3, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 3, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 3, # 'η' + 25: 2, # 'θ' + 5: 3, # 'ι' + 11: 3, # 'κ' + 16: 3, # 'λ' + 10: 3, # 'μ' + 6: 2, # 'ν' + 30: 0, # 'ξ' + 4: 3, # 'ο' + 9: 2, # 'π' + 8: 3, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 3, # 'τ' + 12: 3, # 'υ' + 28: 2, # 'φ' + 23: 2, # 'χ' + 42: 0, # 'ψ' + 24: 3, # 'ω' + 19: 3, # 'ό' + 26: 3, # 'ύ' + 27: 3, # 'ώ' + }, + 16: { # 'λ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 3, # 'ά' + 18: 3, # 'έ' + 22: 3, # 'ή' + 15: 3, # 'ί' + 1: 3, # 'α' + 29: 1, # 'β' + 20: 2, # 'γ' + 21: 1, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 3, # 'η' + 25: 2, # 'θ' + 5: 3, # 'ι' + 11: 2, # 'κ' + 16: 3, # 'λ' + 10: 2, # 'μ' + 6: 2, # 'ν' + 30: 0, # 'ξ' + 4: 3, # 'ο' + 9: 3, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 3, # 'τ' + 12: 3, # 'υ' + 28: 2, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 3, # 'ω' + 19: 3, # 'ό' + 26: 3, # 'ύ' + 27: 3, # 'ώ' + }, + 10: { # 'μ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 1, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 3, # 'ά' + 18: 3, # 'έ' + 22: 3, # 'ή' + 15: 3, # 'ί' + 1: 3, # 'α' + 29: 3, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 3, # 'η' + 25: 0, # 'θ' + 5: 3, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 0, # 'ξ' + 4: 3, # 'ο' + 9: 3, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 2, # 'υ' + 28: 3, # 'φ' + 23: 0, # 'χ' + 42: 2, # 'ψ' + 24: 3, # 'ω' + 19: 3, # 'ό' + 26: 2, # 'ύ' + 27: 2, # 'ώ' + }, + 6: { # 'ν' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 2, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 3, # 'ά' + 18: 3, # 'έ' + 22: 3, # 'ή' + 15: 3, # 'ί' + 1: 3, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 3, # 'δ' + 3: 3, # 'ε' + 32: 2, # 'ζ' + 13: 3, # 'η' + 25: 3, # 'θ' + 5: 3, # 'ι' + 11: 0, # 'κ' + 16: 1, # 'λ' + 10: 0, # 'μ' + 6: 2, # 'ν' + 30: 0, # 'ξ' + 4: 3, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 3, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 3, # 'ω' + 19: 3, # 'ό' + 26: 3, # 'ύ' + 27: 3, # 'ώ' + }, + 30: { # 'ξ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 2, # 'ά' + 18: 3, # 'έ' + 22: 3, # 'ή' + 15: 2, # 'ί' + 1: 3, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 3, # 'η' + 25: 0, # 'θ' + 5: 2, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 3, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 3, # 'τ' + 12: 2, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 3, # 'ω' + 19: 2, # 'ό' + 26: 3, # 'ύ' + 27: 1, # 'ώ' + }, + 4: { # 'ο' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 2, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 2, # 'έ' + 22: 3, # 'ή' + 15: 3, # 'ί' + 1: 2, # 'α' + 29: 3, # 'β' + 20: 3, # 'γ' + 21: 3, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 3, # 'η' + 25: 3, # 'θ' + 5: 3, # 'ι' + 11: 3, # 'κ' + 16: 3, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 2, # 'ξ' + 4: 2, # 'ο' + 9: 3, # 'π' + 8: 3, # 'ρ' + 14: 3, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 3, # 'υ' + 28: 3, # 'φ' + 23: 3, # 'χ' + 42: 2, # 'ψ' + 24: 2, # 'ω' + 19: 1, # 'ό' + 26: 3, # 'ύ' + 27: 2, # 'ώ' + }, + 9: { # 'π' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 3, # 'ά' + 18: 3, # 'έ' + 22: 3, # 'ή' + 15: 3, # 'ί' + 1: 3, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 3, # 'η' + 25: 0, # 'θ' + 5: 3, # 'ι' + 11: 0, # 'κ' + 16: 3, # 'λ' + 10: 0, # 'μ' + 6: 2, # 'ν' + 30: 0, # 'ξ' + 4: 3, # 'ο' + 9: 0, # 'π' + 8: 3, # 'ρ' + 14: 2, # 'ς' + 7: 0, # 'σ' + 2: 3, # 'τ' + 12: 3, # 'υ' + 28: 0, # 'φ' + 23: 2, # 'χ' + 42: 0, # 'ψ' + 24: 3, # 'ω' + 19: 3, # 'ό' + 26: 2, # 'ύ' + 27: 3, # 'ώ' + }, + 8: { # 'ρ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 3, # 'ά' + 18: 3, # 'έ' + 22: 3, # 'ή' + 15: 3, # 'ί' + 1: 3, # 'α' + 29: 2, # 'β' + 20: 3, # 'γ' + 21: 2, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 3, # 'η' + 25: 3, # 'θ' + 5: 3, # 'ι' + 11: 3, # 'κ' + 16: 1, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 2, # 'ξ' + 4: 3, # 'ο' + 9: 2, # 'π' + 8: 2, # 'ρ' + 14: 0, # 'ς' + 7: 2, # 'σ' + 2: 3, # 'τ' + 12: 3, # 'υ' + 28: 3, # 'φ' + 23: 3, # 'χ' + 42: 0, # 'ψ' + 24: 3, # 'ω' + 19: 3, # 'ό' + 26: 3, # 'ύ' + 27: 3, # 'ώ' + }, + 14: { # 'ς' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 2, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 0, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 0, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 7: { # 'σ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 2, # 'ά' + 18: 2, # 'έ' + 22: 3, # 'ή' + 15: 3, # 'ί' + 1: 3, # 'α' + 29: 3, # 'β' + 20: 0, # 'γ' + 21: 2, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 3, # 'η' + 25: 3, # 'θ' + 5: 3, # 'ι' + 11: 3, # 'κ' + 16: 2, # 'λ' + 10: 3, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 3, # 'ο' + 9: 3, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 3, # 'υ' + 28: 3, # 'φ' + 23: 3, # 'χ' + 42: 0, # 'ψ' + 24: 3, # 'ω' + 19: 3, # 'ό' + 26: 3, # 'ύ' + 27: 2, # 'ώ' + }, + 2: { # 'τ' + 60: 0, # 'e' + 55: 2, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 3, # 'ά' + 18: 3, # 'έ' + 22: 3, # 'ή' + 15: 3, # 'ί' + 1: 3, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 3, # 'ε' + 32: 2, # 'ζ' + 13: 3, # 'η' + 25: 0, # 'θ' + 5: 3, # 'ι' + 11: 2, # 'κ' + 16: 2, # 'λ' + 10: 3, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 3, # 'ο' + 9: 0, # 'π' + 8: 3, # 'ρ' + 14: 0, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 3, # 'υ' + 28: 2, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 3, # 'ω' + 19: 3, # 'ό' + 26: 3, # 'ύ' + 27: 3, # 'ώ' + }, + 12: { # 'υ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 2, # 'ά' + 18: 2, # 'έ' + 22: 3, # 'ή' + 15: 2, # 'ί' + 1: 3, # 'α' + 29: 2, # 'β' + 20: 3, # 'γ' + 21: 2, # 'δ' + 3: 2, # 'ε' + 32: 2, # 'ζ' + 13: 2, # 'η' + 25: 3, # 'θ' + 5: 2, # 'ι' + 11: 3, # 'κ' + 16: 3, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 3, # 'ξ' + 4: 3, # 'ο' + 9: 3, # 'π' + 8: 3, # 'ρ' + 14: 3, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 0, # 'υ' + 28: 2, # 'φ' + 23: 3, # 'χ' + 42: 2, # 'ψ' + 24: 2, # 'ω' + 19: 2, # 'ό' + 26: 0, # 'ύ' + 27: 2, # 'ώ' + }, + 28: { # 'φ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 3, # 'ά' + 18: 3, # 'έ' + 22: 3, # 'ή' + 15: 3, # 'ί' + 1: 3, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 2, # 'η' + 25: 2, # 'θ' + 5: 3, # 'ι' + 11: 0, # 'κ' + 16: 2, # 'λ' + 10: 0, # 'μ' + 6: 1, # 'ν' + 30: 0, # 'ξ' + 4: 3, # 'ο' + 9: 0, # 'π' + 8: 3, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 3, # 'τ' + 12: 3, # 'υ' + 28: 1, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 3, # 'ω' + 19: 3, # 'ό' + 26: 2, # 'ύ' + 27: 2, # 'ώ' + }, + 23: { # 'χ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 3, # 'ά' + 18: 2, # 'έ' + 22: 3, # 'ή' + 15: 3, # 'ί' + 1: 3, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 2, # 'η' + 25: 2, # 'θ' + 5: 3, # 'ι' + 11: 0, # 'κ' + 16: 2, # 'λ' + 10: 2, # 'μ' + 6: 3, # 'ν' + 30: 0, # 'ξ' + 4: 3, # 'ο' + 9: 0, # 'π' + 8: 3, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 3, # 'τ' + 12: 3, # 'υ' + 28: 0, # 'φ' + 23: 2, # 'χ' + 42: 0, # 'ψ' + 24: 3, # 'ω' + 19: 3, # 'ό' + 26: 3, # 'ύ' + 27: 3, # 'ώ' + }, + 42: { # 'ψ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 2, # 'ά' + 18: 2, # 'έ' + 22: 1, # 'ή' + 15: 2, # 'ί' + 1: 2, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 3, # 'η' + 25: 0, # 'θ' + 5: 2, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 2, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 2, # 'τ' + 12: 1, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 2, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 24: { # 'ω' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 1, # 'ά' + 18: 0, # 'έ' + 22: 2, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 2, # 'β' + 20: 3, # 'γ' + 21: 2, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 3, # 'θ' + 5: 2, # 'ι' + 11: 0, # 'κ' + 16: 2, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 0, # 'ξ' + 4: 0, # 'ο' + 9: 3, # 'π' + 8: 3, # 'ρ' + 14: 3, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 0, # 'υ' + 28: 2, # 'φ' + 23: 2, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 19: { # 'ό' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 3, # 'β' + 20: 3, # 'γ' + 21: 3, # 'δ' + 3: 1, # 'ε' + 32: 2, # 'ζ' + 13: 2, # 'η' + 25: 2, # 'θ' + 5: 2, # 'ι' + 11: 3, # 'κ' + 16: 3, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 1, # 'ξ' + 4: 2, # 'ο' + 9: 3, # 'π' + 8: 3, # 'ρ' + 14: 3, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 0, # 'υ' + 28: 2, # 'φ' + 23: 3, # 'χ' + 42: 2, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 26: { # 'ύ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 2, # 'α' + 29: 2, # 'β' + 20: 2, # 'γ' + 21: 1, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 2, # 'η' + 25: 3, # 'θ' + 5: 0, # 'ι' + 11: 3, # 'κ' + 16: 3, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 2, # 'ξ' + 4: 3, # 'ο' + 9: 3, # 'π' + 8: 3, # 'ρ' + 14: 3, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 0, # 'υ' + 28: 2, # 'φ' + 23: 2, # 'χ' + 42: 2, # 'ψ' + 24: 2, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 27: { # 'ώ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 1, # 'β' + 20: 0, # 'γ' + 21: 3, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 1, # 'η' + 25: 2, # 'θ' + 5: 2, # 'ι' + 11: 0, # 'κ' + 16: 2, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 1, # 'ξ' + 4: 0, # 'ο' + 9: 2, # 'π' + 8: 3, # 'ρ' + 14: 3, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 0, # 'υ' + 28: 1, # 'φ' + 23: 1, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, +} + +# 255: Undefined characters that did not exist in training text +# 254: Carriage/Return +# 253: symbol (punctuation) that does not belong to word +# 252: 0 - 9 +# 251: Control characters + +# Character Mapping Table(s): +WINDOWS_1253_GREEK_CHAR_TO_ORDER = { + 0: 255, # '\x00' + 1: 255, # '\x01' + 2: 255, # '\x02' + 3: 255, # '\x03' + 4: 255, # '\x04' + 5: 255, # '\x05' + 6: 255, # '\x06' + 7: 255, # '\x07' + 8: 255, # '\x08' + 9: 255, # '\t' + 10: 254, # '\n' + 11: 255, # '\x0b' + 12: 255, # '\x0c' + 13: 254, # '\r' + 14: 255, # '\x0e' + 15: 255, # '\x0f' + 16: 255, # '\x10' + 17: 255, # '\x11' + 18: 255, # '\x12' + 19: 255, # '\x13' + 20: 255, # '\x14' + 21: 255, # '\x15' + 22: 255, # '\x16' + 23: 255, # '\x17' + 24: 255, # '\x18' + 25: 255, # '\x19' + 26: 255, # '\x1a' + 27: 255, # '\x1b' + 28: 255, # '\x1c' + 29: 255, # '\x1d' + 30: 255, # '\x1e' + 31: 255, # '\x1f' + 32: 253, # ' ' + 33: 253, # '!' + 34: 253, # '"' + 35: 253, # '#' + 36: 253, # '$' + 37: 253, # '%' + 38: 253, # '&' + 39: 253, # "'" + 40: 253, # '(' + 41: 253, # ')' + 42: 253, # '*' + 43: 253, # '+' + 44: 253, # ',' + 45: 253, # '-' + 46: 253, # '.' + 47: 253, # '/' + 48: 252, # '0' + 49: 252, # '1' + 50: 252, # '2' + 51: 252, # '3' + 52: 252, # '4' + 53: 252, # '5' + 54: 252, # '6' + 55: 252, # '7' + 56: 252, # '8' + 57: 252, # '9' + 58: 253, # ':' + 59: 253, # ';' + 60: 253, # '<' + 61: 253, # '=' + 62: 253, # '>' + 63: 253, # '?' + 64: 253, # '@' + 65: 82, # 'A' + 66: 100, # 'B' + 67: 104, # 'C' + 68: 94, # 'D' + 69: 98, # 'E' + 70: 101, # 'F' + 71: 116, # 'G' + 72: 102, # 'H' + 73: 111, # 'I' + 74: 187, # 'J' + 75: 117, # 'K' + 76: 92, # 'L' + 77: 88, # 'M' + 78: 113, # 'N' + 79: 85, # 'O' + 80: 79, # 'P' + 81: 118, # 'Q' + 82: 105, # 'R' + 83: 83, # 'S' + 84: 67, # 'T' + 85: 114, # 'U' + 86: 119, # 'V' + 87: 95, # 'W' + 88: 99, # 'X' + 89: 109, # 'Y' + 90: 188, # 'Z' + 91: 253, # '[' + 92: 253, # '\\' + 93: 253, # ']' + 94: 253, # '^' + 95: 253, # '_' + 96: 253, # '`' + 97: 72, # 'a' + 98: 70, # 'b' + 99: 80, # 'c' + 100: 81, # 'd' + 101: 60, # 'e' + 102: 96, # 'f' + 103: 93, # 'g' + 104: 89, # 'h' + 105: 68, # 'i' + 106: 120, # 'j' + 107: 97, # 'k' + 108: 77, # 'l' + 109: 86, # 'm' + 110: 69, # 'n' + 111: 55, # 'o' + 112: 78, # 'p' + 113: 115, # 'q' + 114: 65, # 'r' + 115: 66, # 's' + 116: 58, # 't' + 117: 76, # 'u' + 118: 106, # 'v' + 119: 103, # 'w' + 120: 87, # 'x' + 121: 107, # 'y' + 122: 112, # 'z' + 123: 253, # '{' + 124: 253, # '|' + 125: 253, # '}' + 126: 253, # '~' + 127: 253, # '\x7f' + 128: 255, # '€' + 129: 255, # None + 130: 255, # '‚' + 131: 255, # 'ƒ' + 132: 255, # '„' + 133: 255, # '…' + 134: 255, # '†' + 135: 255, # '‡' + 136: 255, # None + 137: 255, # '‰' + 138: 255, # None + 139: 255, # '‹' + 140: 255, # None + 141: 255, # None + 142: 255, # None + 143: 255, # None + 144: 255, # None + 145: 255, # '‘' + 146: 255, # '’' + 147: 255, # '“' + 148: 255, # '”' + 149: 255, # '•' + 150: 255, # '–' + 151: 255, # '—' + 152: 255, # None + 153: 255, # '™' + 154: 255, # None + 155: 255, # '›' + 156: 255, # None + 157: 255, # None + 158: 255, # None + 159: 255, # None + 160: 253, # '\xa0' + 161: 233, # '΅' + 162: 61, # 'Ά' + 163: 253, # '£' + 164: 253, # '¤' + 165: 253, # '¥' + 166: 253, # '¦' + 167: 253, # '§' + 168: 253, # '¨' + 169: 253, # '©' + 170: 253, # None + 171: 253, # '«' + 172: 253, # '¬' + 173: 74, # '\xad' + 174: 253, # '®' + 175: 253, # '―' + 176: 253, # '°' + 177: 253, # '±' + 178: 253, # '²' + 179: 253, # '³' + 180: 247, # '΄' + 181: 253, # 'µ' + 182: 253, # '¶' + 183: 36, # '·' + 184: 46, # 'Έ' + 185: 71, # 'Ή' + 186: 73, # 'Ί' + 187: 253, # '»' + 188: 54, # 'Ό' + 189: 253, # '½' + 190: 108, # 'Ύ' + 191: 123, # 'Ώ' + 192: 110, # 'ΐ' + 193: 31, # 'Α' + 194: 51, # 'Β' + 195: 43, # 'Γ' + 196: 41, # 'Δ' + 197: 34, # 'Ε' + 198: 91, # 'Ζ' + 199: 40, # 'Η' + 200: 52, # 'Θ' + 201: 47, # 'Ι' + 202: 44, # 'Κ' + 203: 53, # 'Λ' + 204: 38, # 'Μ' + 205: 49, # 'Ν' + 206: 59, # 'Ξ' + 207: 39, # 'Ο' + 208: 35, # 'Π' + 209: 48, # 'Ρ' + 210: 250, # None + 211: 37, # 'Σ' + 212: 33, # 'Τ' + 213: 45, # 'Υ' + 214: 56, # 'Φ' + 215: 50, # 'Χ' + 216: 84, # 'Ψ' + 217: 57, # 'Ω' + 218: 120, # 'Ϊ' + 219: 121, # 'Ϋ' + 220: 17, # 'ά' + 221: 18, # 'έ' + 222: 22, # 'ή' + 223: 15, # 'ί' + 224: 124, # 'ΰ' + 225: 1, # 'α' + 226: 29, # 'β' + 227: 20, # 'γ' + 228: 21, # 'δ' + 229: 3, # 'ε' + 230: 32, # 'ζ' + 231: 13, # 'η' + 232: 25, # 'θ' + 233: 5, # 'ι' + 234: 11, # 'κ' + 235: 16, # 'λ' + 236: 10, # 'μ' + 237: 6, # 'ν' + 238: 30, # 'ξ' + 239: 4, # 'ο' + 240: 9, # 'π' + 241: 8, # 'ρ' + 242: 14, # 'ς' + 243: 7, # 'σ' + 244: 2, # 'τ' + 245: 12, # 'υ' + 246: 28, # 'φ' + 247: 23, # 'χ' + 248: 42, # 'ψ' + 249: 24, # 'ω' + 250: 64, # 'ϊ' + 251: 75, # 'ϋ' + 252: 19, # 'ό' + 253: 26, # 'ύ' + 254: 27, # 'ώ' + 255: 253, # None +} + +WINDOWS_1253_GREEK_MODEL = SingleByteCharSetModel( + charset_name="windows-1253", + language="Greek", + char_to_order_map=WINDOWS_1253_GREEK_CHAR_TO_ORDER, + language_model=GREEK_LANG_MODEL, + typical_positive_ratio=0.982851, + keep_ascii_letters=False, + alphabet="ΆΈΉΊΌΎΏΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΤΥΦΧΨΩάέήίαβγδεζηθικλμνξοπρςστυφχψωόύώ", +) + +ISO_8859_7_GREEK_CHAR_TO_ORDER = { + 0: 255, # '\x00' + 1: 255, # '\x01' + 2: 255, # '\x02' + 3: 255, # '\x03' + 4: 255, # '\x04' + 5: 255, # '\x05' + 6: 255, # '\x06' + 7: 255, # '\x07' + 8: 255, # '\x08' + 9: 255, # '\t' + 10: 254, # '\n' + 11: 255, # '\x0b' + 12: 255, # '\x0c' + 13: 254, # '\r' + 14: 255, # '\x0e' + 15: 255, # '\x0f' + 16: 255, # '\x10' + 17: 255, # '\x11' + 18: 255, # '\x12' + 19: 255, # '\x13' + 20: 255, # '\x14' + 21: 255, # '\x15' + 22: 255, # '\x16' + 23: 255, # '\x17' + 24: 255, # '\x18' + 25: 255, # '\x19' + 26: 255, # '\x1a' + 27: 255, # '\x1b' + 28: 255, # '\x1c' + 29: 255, # '\x1d' + 30: 255, # '\x1e' + 31: 255, # '\x1f' + 32: 253, # ' ' + 33: 253, # '!' + 34: 253, # '"' + 35: 253, # '#' + 36: 253, # '$' + 37: 253, # '%' + 38: 253, # '&' + 39: 253, # "'" + 40: 253, # '(' + 41: 253, # ')' + 42: 253, # '*' + 43: 253, # '+' + 44: 253, # ',' + 45: 253, # '-' + 46: 253, # '.' + 47: 253, # '/' + 48: 252, # '0' + 49: 252, # '1' + 50: 252, # '2' + 51: 252, # '3' + 52: 252, # '4' + 53: 252, # '5' + 54: 252, # '6' + 55: 252, # '7' + 56: 252, # '8' + 57: 252, # '9' + 58: 253, # ':' + 59: 253, # ';' + 60: 253, # '<' + 61: 253, # '=' + 62: 253, # '>' + 63: 253, # '?' + 64: 253, # '@' + 65: 82, # 'A' + 66: 100, # 'B' + 67: 104, # 'C' + 68: 94, # 'D' + 69: 98, # 'E' + 70: 101, # 'F' + 71: 116, # 'G' + 72: 102, # 'H' + 73: 111, # 'I' + 74: 187, # 'J' + 75: 117, # 'K' + 76: 92, # 'L' + 77: 88, # 'M' + 78: 113, # 'N' + 79: 85, # 'O' + 80: 79, # 'P' + 81: 118, # 'Q' + 82: 105, # 'R' + 83: 83, # 'S' + 84: 67, # 'T' + 85: 114, # 'U' + 86: 119, # 'V' + 87: 95, # 'W' + 88: 99, # 'X' + 89: 109, # 'Y' + 90: 188, # 'Z' + 91: 253, # '[' + 92: 253, # '\\' + 93: 253, # ']' + 94: 253, # '^' + 95: 253, # '_' + 96: 253, # '`' + 97: 72, # 'a' + 98: 70, # 'b' + 99: 80, # 'c' + 100: 81, # 'd' + 101: 60, # 'e' + 102: 96, # 'f' + 103: 93, # 'g' + 104: 89, # 'h' + 105: 68, # 'i' + 106: 120, # 'j' + 107: 97, # 'k' + 108: 77, # 'l' + 109: 86, # 'm' + 110: 69, # 'n' + 111: 55, # 'o' + 112: 78, # 'p' + 113: 115, # 'q' + 114: 65, # 'r' + 115: 66, # 's' + 116: 58, # 't' + 117: 76, # 'u' + 118: 106, # 'v' + 119: 103, # 'w' + 120: 87, # 'x' + 121: 107, # 'y' + 122: 112, # 'z' + 123: 253, # '{' + 124: 253, # '|' + 125: 253, # '}' + 126: 253, # '~' + 127: 253, # '\x7f' + 128: 255, # '\x80' + 129: 255, # '\x81' + 130: 255, # '\x82' + 131: 255, # '\x83' + 132: 255, # '\x84' + 133: 255, # '\x85' + 134: 255, # '\x86' + 135: 255, # '\x87' + 136: 255, # '\x88' + 137: 255, # '\x89' + 138: 255, # '\x8a' + 139: 255, # '\x8b' + 140: 255, # '\x8c' + 141: 255, # '\x8d' + 142: 255, # '\x8e' + 143: 255, # '\x8f' + 144: 255, # '\x90' + 145: 255, # '\x91' + 146: 255, # '\x92' + 147: 255, # '\x93' + 148: 255, # '\x94' + 149: 255, # '\x95' + 150: 255, # '\x96' + 151: 255, # '\x97' + 152: 255, # '\x98' + 153: 255, # '\x99' + 154: 255, # '\x9a' + 155: 255, # '\x9b' + 156: 255, # '\x9c' + 157: 255, # '\x9d' + 158: 255, # '\x9e' + 159: 255, # '\x9f' + 160: 253, # '\xa0' + 161: 233, # '‘' + 162: 90, # '’' + 163: 253, # '£' + 164: 253, # '€' + 165: 253, # '₯' + 166: 253, # '¦' + 167: 253, # '§' + 168: 253, # '¨' + 169: 253, # '©' + 170: 253, # 'ͺ' + 171: 253, # '«' + 172: 253, # '¬' + 173: 74, # '\xad' + 174: 253, # None + 175: 253, # '―' + 176: 253, # '°' + 177: 253, # '±' + 178: 253, # '²' + 179: 253, # '³' + 180: 247, # '΄' + 181: 248, # '΅' + 182: 61, # 'Ά' + 183: 36, # '·' + 184: 46, # 'Έ' + 185: 71, # 'Ή' + 186: 73, # 'Ί' + 187: 253, # '»' + 188: 54, # 'Ό' + 189: 253, # '½' + 190: 108, # 'Ύ' + 191: 123, # 'Ώ' + 192: 110, # 'ΐ' + 193: 31, # 'Α' + 194: 51, # 'Β' + 195: 43, # 'Γ' + 196: 41, # 'Δ' + 197: 34, # 'Ε' + 198: 91, # 'Ζ' + 199: 40, # 'Η' + 200: 52, # 'Θ' + 201: 47, # 'Ι' + 202: 44, # 'Κ' + 203: 53, # 'Λ' + 204: 38, # 'Μ' + 205: 49, # 'Ν' + 206: 59, # 'Ξ' + 207: 39, # 'Ο' + 208: 35, # 'Π' + 209: 48, # 'Ρ' + 210: 250, # None + 211: 37, # 'Σ' + 212: 33, # 'Τ' + 213: 45, # 'Υ' + 214: 56, # 'Φ' + 215: 50, # 'Χ' + 216: 84, # 'Ψ' + 217: 57, # 'Ω' + 218: 120, # 'Ϊ' + 219: 121, # 'Ϋ' + 220: 17, # 'ά' + 221: 18, # 'έ' + 222: 22, # 'ή' + 223: 15, # 'ί' + 224: 124, # 'ΰ' + 225: 1, # 'α' + 226: 29, # 'β' + 227: 20, # 'γ' + 228: 21, # 'δ' + 229: 3, # 'ε' + 230: 32, # 'ζ' + 231: 13, # 'η' + 232: 25, # 'θ' + 233: 5, # 'ι' + 234: 11, # 'κ' + 235: 16, # 'λ' + 236: 10, # 'μ' + 237: 6, # 'ν' + 238: 30, # 'ξ' + 239: 4, # 'ο' + 240: 9, # 'π' + 241: 8, # 'ρ' + 242: 14, # 'ς' + 243: 7, # 'σ' + 244: 2, # 'τ' + 245: 12, # 'υ' + 246: 28, # 'φ' + 247: 23, # 'χ' + 248: 42, # 'ψ' + 249: 24, # 'ω' + 250: 64, # 'ϊ' + 251: 75, # 'ϋ' + 252: 19, # 'ό' + 253: 26, # 'ύ' + 254: 27, # 'ώ' + 255: 253, # None +} + +ISO_8859_7_GREEK_MODEL = SingleByteCharSetModel( + charset_name="ISO-8859-7", + language="Greek", + char_to_order_map=ISO_8859_7_GREEK_CHAR_TO_ORDER, + language_model=GREEK_LANG_MODEL, + typical_positive_ratio=0.982851, + keep_ascii_letters=False, + alphabet="ΆΈΉΊΌΎΏΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΤΥΦΧΨΩάέήίαβγδεζηθικλμνξοπρςστυφχψωόύώ", +) diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/langhebrewmodel.py b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/langhebrewmodel.py new file mode 100644 index 0000000..56d2975 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/langhebrewmodel.py @@ -0,0 +1,4380 @@ +from pip._vendor.chardet.sbcharsetprober import SingleByteCharSetModel + +# 3: Positive +# 2: Likely +# 1: Unlikely +# 0: Negative + +HEBREW_LANG_MODEL = { + 50: { # 'a' + 50: 0, # 'a' + 60: 1, # 'c' + 61: 1, # 'd' + 42: 1, # 'e' + 53: 1, # 'i' + 56: 2, # 'l' + 54: 2, # 'n' + 49: 0, # 'o' + 51: 2, # 'r' + 43: 1, # 's' + 44: 2, # 't' + 63: 1, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 1, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 0, # 'ם' + 6: 1, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 1, # 'ק' + 7: 0, # 'ר' + 10: 1, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 1, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 60: { # 'c' + 50: 1, # 'a' + 60: 1, # 'c' + 61: 0, # 'd' + 42: 1, # 'e' + 53: 1, # 'i' + 56: 1, # 'l' + 54: 0, # 'n' + 49: 1, # 'o' + 51: 1, # 'r' + 43: 1, # 's' + 44: 2, # 't' + 63: 1, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 1, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 1, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 0, # 'ם' + 6: 1, # 'מ' + 23: 0, # 'ן' + 12: 1, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 61: { # 'd' + 50: 1, # 'a' + 60: 0, # 'c' + 61: 1, # 'd' + 42: 1, # 'e' + 53: 1, # 'i' + 56: 1, # 'l' + 54: 1, # 'n' + 49: 2, # 'o' + 51: 1, # 'r' + 43: 1, # 's' + 44: 0, # 't' + 63: 1, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 1, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 0, # 'ם' + 6: 0, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 1, # '–' + 52: 1, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 42: { # 'e' + 50: 1, # 'a' + 60: 1, # 'c' + 61: 2, # 'd' + 42: 1, # 'e' + 53: 1, # 'i' + 56: 2, # 'l' + 54: 2, # 'n' + 49: 1, # 'o' + 51: 2, # 'r' + 43: 2, # 's' + 44: 2, # 't' + 63: 1, # 'u' + 34: 1, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 0, # 'ם' + 6: 0, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 1, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 1, # '–' + 52: 2, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 53: { # 'i' + 50: 1, # 'a' + 60: 2, # 'c' + 61: 1, # 'd' + 42: 1, # 'e' + 53: 0, # 'i' + 56: 1, # 'l' + 54: 2, # 'n' + 49: 2, # 'o' + 51: 1, # 'r' + 43: 2, # 's' + 44: 2, # 't' + 63: 1, # 'u' + 34: 0, # '\xa0' + 55: 1, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 0, # 'ם' + 6: 0, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 1, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 56: { # 'l' + 50: 1, # 'a' + 60: 1, # 'c' + 61: 1, # 'd' + 42: 2, # 'e' + 53: 2, # 'i' + 56: 2, # 'l' + 54: 1, # 'n' + 49: 1, # 'o' + 51: 0, # 'r' + 43: 1, # 's' + 44: 1, # 't' + 63: 1, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 0, # 'ם' + 6: 0, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 1, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 54: { # 'n' + 50: 1, # 'a' + 60: 1, # 'c' + 61: 1, # 'd' + 42: 1, # 'e' + 53: 1, # 'i' + 56: 1, # 'l' + 54: 1, # 'n' + 49: 1, # 'o' + 51: 0, # 'r' + 43: 1, # 's' + 44: 2, # 't' + 63: 1, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 1, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 0, # 'ם' + 6: 0, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 2, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 49: { # 'o' + 50: 1, # 'a' + 60: 1, # 'c' + 61: 1, # 'd' + 42: 1, # 'e' + 53: 1, # 'i' + 56: 1, # 'l' + 54: 2, # 'n' + 49: 1, # 'o' + 51: 2, # 'r' + 43: 1, # 's' + 44: 1, # 't' + 63: 1, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 0, # 'ם' + 6: 0, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 1, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 51: { # 'r' + 50: 2, # 'a' + 60: 1, # 'c' + 61: 1, # 'd' + 42: 2, # 'e' + 53: 1, # 'i' + 56: 1, # 'l' + 54: 1, # 'n' + 49: 2, # 'o' + 51: 1, # 'r' + 43: 1, # 's' + 44: 1, # 't' + 63: 1, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 0, # 'ם' + 6: 0, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 2, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 43: { # 's' + 50: 1, # 'a' + 60: 1, # 'c' + 61: 0, # 'd' + 42: 2, # 'e' + 53: 1, # 'i' + 56: 1, # 'l' + 54: 1, # 'n' + 49: 1, # 'o' + 51: 1, # 'r' + 43: 1, # 's' + 44: 2, # 't' + 63: 1, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 0, # 'ם' + 6: 0, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 1, # '’' + 47: 0, # '“' + 46: 2, # '”' + 58: 0, # '†' + 40: 2, # '…' + }, + 44: { # 't' + 50: 1, # 'a' + 60: 1, # 'c' + 61: 0, # 'd' + 42: 2, # 'e' + 53: 2, # 'i' + 56: 1, # 'l' + 54: 0, # 'n' + 49: 1, # 'o' + 51: 1, # 'r' + 43: 1, # 's' + 44: 1, # 't' + 63: 1, # 'u' + 34: 1, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 0, # 'ם' + 6: 0, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 2, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 63: { # 'u' + 50: 1, # 'a' + 60: 1, # 'c' + 61: 1, # 'd' + 42: 1, # 'e' + 53: 1, # 'i' + 56: 1, # 'l' + 54: 1, # 'n' + 49: 0, # 'o' + 51: 1, # 'r' + 43: 2, # 's' + 44: 1, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 0, # 'ם' + 6: 0, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 1, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 34: { # '\xa0' + 50: 1, # 'a' + 60: 0, # 'c' + 61: 1, # 'd' + 42: 0, # 'e' + 53: 1, # 'i' + 56: 0, # 'l' + 54: 1, # 'n' + 49: 1, # 'o' + 51: 0, # 'r' + 43: 1, # 's' + 44: 1, # 't' + 63: 0, # 'u' + 34: 2, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 2, # 'א' + 8: 1, # 'ב' + 20: 1, # 'ג' + 16: 1, # 'ד' + 3: 1, # 'ה' + 2: 1, # 'ו' + 24: 1, # 'ז' + 14: 1, # 'ח' + 22: 1, # 'ט' + 1: 2, # 'י' + 25: 0, # 'ך' + 15: 1, # 'כ' + 4: 1, # 'ל' + 11: 0, # 'ם' + 6: 2, # 'מ' + 23: 0, # 'ן' + 12: 1, # 'נ' + 19: 1, # 'ס' + 13: 1, # 'ע' + 26: 0, # 'ף' + 18: 1, # 'פ' + 27: 0, # 'ץ' + 21: 1, # 'צ' + 17: 1, # 'ק' + 7: 1, # 'ר' + 10: 1, # 'ש' + 5: 1, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 55: { # '´' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 1, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 1, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 1, # 'ה' + 2: 1, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 2, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 1, # 'ל' + 11: 0, # 'ם' + 6: 1, # 'מ' + 23: 1, # 'ן' + 12: 1, # 'נ' + 19: 1, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 1, # 'ר' + 10: 1, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 48: { # '¼' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 1, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 1, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 1, # 'כ' + 4: 1, # 'ל' + 11: 0, # 'ם' + 6: 1, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 39: { # '½' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 1, # 'כ' + 4: 1, # 'ל' + 11: 0, # 'ם' + 6: 0, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 1, # 'צ' + 17: 1, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 57: { # '¾' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 0, # 'ם' + 6: 0, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 30: { # 'ְ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 1, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 1, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 2, # 'א' + 8: 2, # 'ב' + 20: 2, # 'ג' + 16: 2, # 'ד' + 3: 2, # 'ה' + 2: 2, # 'ו' + 24: 2, # 'ז' + 14: 2, # 'ח' + 22: 2, # 'ט' + 1: 2, # 'י' + 25: 2, # 'ך' + 15: 2, # 'כ' + 4: 2, # 'ל' + 11: 1, # 'ם' + 6: 2, # 'מ' + 23: 0, # 'ן' + 12: 2, # 'נ' + 19: 2, # 'ס' + 13: 2, # 'ע' + 26: 0, # 'ף' + 18: 2, # 'פ' + 27: 0, # 'ץ' + 21: 2, # 'צ' + 17: 2, # 'ק' + 7: 2, # 'ר' + 10: 2, # 'ש' + 5: 2, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 59: { # 'ֱ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 1, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 1, # 'ב' + 20: 1, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 0, # 'ו' + 24: 1, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 1, # 'י' + 25: 0, # 'ך' + 15: 1, # 'כ' + 4: 2, # 'ל' + 11: 0, # 'ם' + 6: 2, # 'מ' + 23: 0, # 'ן' + 12: 1, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 1, # 'ר' + 10: 1, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 41: { # 'ֲ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 2, # 'ב' + 20: 1, # 'ג' + 16: 2, # 'ד' + 3: 1, # 'ה' + 2: 1, # 'ו' + 24: 1, # 'ז' + 14: 1, # 'ח' + 22: 1, # 'ט' + 1: 1, # 'י' + 25: 1, # 'ך' + 15: 1, # 'כ' + 4: 2, # 'ל' + 11: 0, # 'ם' + 6: 2, # 'מ' + 23: 0, # 'ן' + 12: 2, # 'נ' + 19: 1, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 1, # 'פ' + 27: 0, # 'ץ' + 21: 2, # 'צ' + 17: 1, # 'ק' + 7: 2, # 'ר' + 10: 2, # 'ש' + 5: 1, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 33: { # 'ִ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 1, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 1, # 'ִ' + 37: 0, # 'ֵ' + 36: 1, # 'ֶ' + 31: 0, # 'ַ' + 29: 1, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 1, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 1, # 'א' + 8: 2, # 'ב' + 20: 2, # 'ג' + 16: 2, # 'ד' + 3: 1, # 'ה' + 2: 1, # 'ו' + 24: 2, # 'ז' + 14: 1, # 'ח' + 22: 1, # 'ט' + 1: 3, # 'י' + 25: 1, # 'ך' + 15: 2, # 'כ' + 4: 2, # 'ל' + 11: 2, # 'ם' + 6: 2, # 'מ' + 23: 2, # 'ן' + 12: 2, # 'נ' + 19: 2, # 'ס' + 13: 1, # 'ע' + 26: 0, # 'ף' + 18: 2, # 'פ' + 27: 1, # 'ץ' + 21: 2, # 'צ' + 17: 2, # 'ק' + 7: 2, # 'ר' + 10: 2, # 'ש' + 5: 2, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 37: { # 'ֵ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 1, # 'ֶ' + 31: 1, # 'ַ' + 29: 1, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 2, # 'א' + 8: 2, # 'ב' + 20: 1, # 'ג' + 16: 2, # 'ד' + 3: 2, # 'ה' + 2: 1, # 'ו' + 24: 1, # 'ז' + 14: 2, # 'ח' + 22: 1, # 'ט' + 1: 3, # 'י' + 25: 2, # 'ך' + 15: 1, # 'כ' + 4: 2, # 'ל' + 11: 2, # 'ם' + 6: 1, # 'מ' + 23: 2, # 'ן' + 12: 2, # 'נ' + 19: 1, # 'ס' + 13: 2, # 'ע' + 26: 1, # 'ף' + 18: 1, # 'פ' + 27: 1, # 'ץ' + 21: 1, # 'צ' + 17: 1, # 'ק' + 7: 2, # 'ר' + 10: 2, # 'ש' + 5: 2, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 36: { # 'ֶ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 1, # 'ֶ' + 31: 1, # 'ַ' + 29: 1, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 2, # 'א' + 8: 2, # 'ב' + 20: 1, # 'ג' + 16: 2, # 'ד' + 3: 2, # 'ה' + 2: 1, # 'ו' + 24: 1, # 'ז' + 14: 2, # 'ח' + 22: 1, # 'ט' + 1: 2, # 'י' + 25: 2, # 'ך' + 15: 1, # 'כ' + 4: 2, # 'ל' + 11: 2, # 'ם' + 6: 2, # 'מ' + 23: 2, # 'ן' + 12: 2, # 'נ' + 19: 2, # 'ס' + 13: 1, # 'ע' + 26: 1, # 'ף' + 18: 1, # 'פ' + 27: 2, # 'ץ' + 21: 1, # 'צ' + 17: 1, # 'ק' + 7: 2, # 'ר' + 10: 2, # 'ש' + 5: 2, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 31: { # 'ַ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 1, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 1, # 'ֶ' + 31: 0, # 'ַ' + 29: 2, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 2, # 'א' + 8: 2, # 'ב' + 20: 2, # 'ג' + 16: 2, # 'ד' + 3: 2, # 'ה' + 2: 1, # 'ו' + 24: 2, # 'ז' + 14: 2, # 'ח' + 22: 2, # 'ט' + 1: 3, # 'י' + 25: 1, # 'ך' + 15: 2, # 'כ' + 4: 2, # 'ל' + 11: 2, # 'ם' + 6: 2, # 'מ' + 23: 2, # 'ן' + 12: 2, # 'נ' + 19: 2, # 'ס' + 13: 2, # 'ע' + 26: 2, # 'ף' + 18: 2, # 'פ' + 27: 1, # 'ץ' + 21: 2, # 'צ' + 17: 2, # 'ק' + 7: 2, # 'ר' + 10: 2, # 'ש' + 5: 2, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 29: { # 'ָ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 1, # 'ַ' + 29: 2, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 1, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 2, # 'א' + 8: 2, # 'ב' + 20: 2, # 'ג' + 16: 2, # 'ד' + 3: 3, # 'ה' + 2: 2, # 'ו' + 24: 2, # 'ז' + 14: 2, # 'ח' + 22: 1, # 'ט' + 1: 2, # 'י' + 25: 2, # 'ך' + 15: 2, # 'כ' + 4: 2, # 'ל' + 11: 2, # 'ם' + 6: 2, # 'מ' + 23: 2, # 'ן' + 12: 2, # 'נ' + 19: 1, # 'ס' + 13: 2, # 'ע' + 26: 1, # 'ף' + 18: 2, # 'פ' + 27: 1, # 'ץ' + 21: 2, # 'צ' + 17: 2, # 'ק' + 7: 2, # 'ר' + 10: 2, # 'ש' + 5: 2, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 35: { # 'ֹ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 1, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 2, # 'א' + 8: 2, # 'ב' + 20: 1, # 'ג' + 16: 2, # 'ד' + 3: 2, # 'ה' + 2: 1, # 'ו' + 24: 1, # 'ז' + 14: 1, # 'ח' + 22: 1, # 'ט' + 1: 1, # 'י' + 25: 1, # 'ך' + 15: 2, # 'כ' + 4: 2, # 'ל' + 11: 2, # 'ם' + 6: 2, # 'מ' + 23: 2, # 'ן' + 12: 2, # 'נ' + 19: 2, # 'ס' + 13: 2, # 'ע' + 26: 1, # 'ף' + 18: 2, # 'פ' + 27: 1, # 'ץ' + 21: 2, # 'צ' + 17: 2, # 'ק' + 7: 2, # 'ר' + 10: 2, # 'ש' + 5: 2, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 62: { # 'ֻ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 1, # 'ב' + 20: 1, # 'ג' + 16: 1, # 'ד' + 3: 1, # 'ה' + 2: 1, # 'ו' + 24: 1, # 'ז' + 14: 1, # 'ח' + 22: 0, # 'ט' + 1: 1, # 'י' + 25: 0, # 'ך' + 15: 1, # 'כ' + 4: 2, # 'ל' + 11: 1, # 'ם' + 6: 1, # 'מ' + 23: 1, # 'ן' + 12: 1, # 'נ' + 19: 1, # 'ס' + 13: 1, # 'ע' + 26: 0, # 'ף' + 18: 1, # 'פ' + 27: 0, # 'ץ' + 21: 1, # 'צ' + 17: 1, # 'ק' + 7: 1, # 'ר' + 10: 1, # 'ש' + 5: 1, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 28: { # 'ּ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 3, # 'ְ' + 59: 0, # 'ֱ' + 41: 1, # 'ֲ' + 33: 3, # 'ִ' + 37: 2, # 'ֵ' + 36: 2, # 'ֶ' + 31: 3, # 'ַ' + 29: 3, # 'ָ' + 35: 2, # 'ֹ' + 62: 1, # 'ֻ' + 28: 0, # 'ּ' + 38: 2, # 'ׁ' + 45: 1, # 'ׂ' + 9: 2, # 'א' + 8: 2, # 'ב' + 20: 1, # 'ג' + 16: 2, # 'ד' + 3: 1, # 'ה' + 2: 2, # 'ו' + 24: 1, # 'ז' + 14: 1, # 'ח' + 22: 1, # 'ט' + 1: 2, # 'י' + 25: 2, # 'ך' + 15: 2, # 'כ' + 4: 2, # 'ל' + 11: 1, # 'ם' + 6: 2, # 'מ' + 23: 1, # 'ן' + 12: 2, # 'נ' + 19: 1, # 'ס' + 13: 2, # 'ע' + 26: 1, # 'ף' + 18: 1, # 'פ' + 27: 1, # 'ץ' + 21: 1, # 'צ' + 17: 1, # 'ק' + 7: 2, # 'ר' + 10: 2, # 'ש' + 5: 2, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 38: { # 'ׁ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 2, # 'ִ' + 37: 2, # 'ֵ' + 36: 2, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 1, # 'ֹ' + 62: 1, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 2, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 1, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 0, # 'ם' + 6: 0, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 1, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 45: { # 'ׂ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 2, # 'ִ' + 37: 1, # 'ֵ' + 36: 2, # 'ֶ' + 31: 1, # 'ַ' + 29: 2, # 'ָ' + 35: 1, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 1, # 'א' + 8: 0, # 'ב' + 20: 1, # 'ג' + 16: 0, # 'ד' + 3: 1, # 'ה' + 2: 2, # 'ו' + 24: 0, # 'ז' + 14: 1, # 'ח' + 22: 0, # 'ט' + 1: 1, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 1, # 'ם' + 6: 1, # 'מ' + 23: 0, # 'ן' + 12: 1, # 'נ' + 19: 0, # 'ס' + 13: 1, # 'ע' + 26: 0, # 'ף' + 18: 1, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 1, # 'ר' + 10: 0, # 'ש' + 5: 1, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 9: { # 'א' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 1, # '\xa0' + 55: 1, # '´' + 48: 1, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 2, # 'ֱ' + 41: 2, # 'ֲ' + 33: 2, # 'ִ' + 37: 2, # 'ֵ' + 36: 2, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 2, # 'ֹ' + 62: 1, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 2, # 'א' + 8: 3, # 'ב' + 20: 3, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 3, # 'ז' + 14: 3, # 'ח' + 22: 3, # 'ט' + 1: 3, # 'י' + 25: 3, # 'ך' + 15: 3, # 'כ' + 4: 3, # 'ל' + 11: 3, # 'ם' + 6: 3, # 'מ' + 23: 3, # 'ן' + 12: 3, # 'נ' + 19: 3, # 'ס' + 13: 2, # 'ע' + 26: 3, # 'ף' + 18: 3, # 'פ' + 27: 1, # 'ץ' + 21: 3, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 8: { # 'ב' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 1, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 1, # '\xa0' + 55: 1, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 2, # 'ִ' + 37: 2, # 'ֵ' + 36: 2, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 2, # 'ֹ' + 62: 1, # 'ֻ' + 28: 3, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 3, # 'א' + 8: 3, # 'ב' + 20: 3, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 3, # 'ז' + 14: 3, # 'ח' + 22: 3, # 'ט' + 1: 3, # 'י' + 25: 2, # 'ך' + 15: 3, # 'כ' + 4: 3, # 'ל' + 11: 2, # 'ם' + 6: 3, # 'מ' + 23: 3, # 'ן' + 12: 3, # 'נ' + 19: 3, # 'ס' + 13: 3, # 'ע' + 26: 1, # 'ף' + 18: 3, # 'פ' + 27: 2, # 'ץ' + 21: 3, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 1, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 20: { # 'ג' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 1, # '\xa0' + 55: 2, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 1, # 'ִ' + 37: 1, # 'ֵ' + 36: 1, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 1, # 'ֹ' + 62: 0, # 'ֻ' + 28: 2, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 2, # 'א' + 8: 3, # 'ב' + 20: 2, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 3, # 'ז' + 14: 2, # 'ח' + 22: 2, # 'ט' + 1: 3, # 'י' + 25: 1, # 'ך' + 15: 1, # 'כ' + 4: 3, # 'ל' + 11: 3, # 'ם' + 6: 3, # 'מ' + 23: 3, # 'ן' + 12: 3, # 'נ' + 19: 2, # 'ס' + 13: 3, # 'ע' + 26: 2, # 'ף' + 18: 2, # 'פ' + 27: 1, # 'ץ' + 21: 1, # 'צ' + 17: 1, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 0, # '–' + 52: 1, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 16: { # 'ד' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 2, # 'ִ' + 37: 2, # 'ֵ' + 36: 2, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 2, # 'ֹ' + 62: 1, # 'ֻ' + 28: 2, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 3, # 'א' + 8: 3, # 'ב' + 20: 3, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 1, # 'ז' + 14: 2, # 'ח' + 22: 2, # 'ט' + 1: 3, # 'י' + 25: 2, # 'ך' + 15: 2, # 'כ' + 4: 3, # 'ל' + 11: 3, # 'ם' + 6: 3, # 'מ' + 23: 2, # 'ן' + 12: 3, # 'נ' + 19: 2, # 'ס' + 13: 3, # 'ע' + 26: 2, # 'ף' + 18: 3, # 'פ' + 27: 0, # 'ץ' + 21: 2, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 3: { # 'ה' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 1, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 1, # '\xa0' + 55: 0, # '´' + 48: 1, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 1, # 'ְ' + 59: 1, # 'ֱ' + 41: 2, # 'ֲ' + 33: 2, # 'ִ' + 37: 2, # 'ֵ' + 36: 2, # 'ֶ' + 31: 3, # 'ַ' + 29: 2, # 'ָ' + 35: 1, # 'ֹ' + 62: 1, # 'ֻ' + 28: 2, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 3, # 'א' + 8: 3, # 'ב' + 20: 3, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 3, # 'ז' + 14: 3, # 'ח' + 22: 3, # 'ט' + 1: 3, # 'י' + 25: 1, # 'ך' + 15: 3, # 'כ' + 4: 3, # 'ל' + 11: 3, # 'ם' + 6: 3, # 'מ' + 23: 3, # 'ן' + 12: 3, # 'נ' + 19: 3, # 'ס' + 13: 3, # 'ע' + 26: 0, # 'ף' + 18: 3, # 'פ' + 27: 1, # 'ץ' + 21: 3, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 1, # '–' + 52: 1, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 2, # '…' + }, + 2: { # 'ו' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 1, # 't' + 63: 0, # 'u' + 34: 1, # '\xa0' + 55: 1, # '´' + 48: 1, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 2, # 'ִ' + 37: 1, # 'ֵ' + 36: 1, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 3, # 'ֹ' + 62: 0, # 'ֻ' + 28: 3, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 3, # 'א' + 8: 3, # 'ב' + 20: 3, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 3, # 'ז' + 14: 3, # 'ח' + 22: 3, # 'ט' + 1: 3, # 'י' + 25: 3, # 'ך' + 15: 3, # 'כ' + 4: 3, # 'ל' + 11: 3, # 'ם' + 6: 3, # 'מ' + 23: 3, # 'ן' + 12: 3, # 'נ' + 19: 3, # 'ס' + 13: 3, # 'ע' + 26: 3, # 'ף' + 18: 3, # 'פ' + 27: 3, # 'ץ' + 21: 3, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 1, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 2, # '…' + }, + 24: { # 'ז' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 1, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 1, # 'ֲ' + 33: 1, # 'ִ' + 37: 2, # 'ֵ' + 36: 2, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 1, # 'ֹ' + 62: 1, # 'ֻ' + 28: 2, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 3, # 'א' + 8: 2, # 'ב' + 20: 2, # 'ג' + 16: 2, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 2, # 'ז' + 14: 2, # 'ח' + 22: 1, # 'ט' + 1: 3, # 'י' + 25: 1, # 'ך' + 15: 3, # 'כ' + 4: 3, # 'ל' + 11: 2, # 'ם' + 6: 3, # 'מ' + 23: 2, # 'ן' + 12: 2, # 'נ' + 19: 1, # 'ס' + 13: 2, # 'ע' + 26: 1, # 'ף' + 18: 1, # 'פ' + 27: 0, # 'ץ' + 21: 2, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 1, # 'ש' + 5: 2, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 14: { # 'ח' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 1, # '\xa0' + 55: 1, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 1, # 'ֱ' + 41: 2, # 'ֲ' + 33: 2, # 'ִ' + 37: 2, # 'ֵ' + 36: 2, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 2, # 'ֹ' + 62: 1, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 2, # 'א' + 8: 3, # 'ב' + 20: 2, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 3, # 'ז' + 14: 2, # 'ח' + 22: 2, # 'ט' + 1: 3, # 'י' + 25: 1, # 'ך' + 15: 2, # 'כ' + 4: 3, # 'ל' + 11: 3, # 'ם' + 6: 3, # 'מ' + 23: 2, # 'ן' + 12: 3, # 'נ' + 19: 3, # 'ס' + 13: 1, # 'ע' + 26: 2, # 'ף' + 18: 2, # 'פ' + 27: 2, # 'ץ' + 21: 3, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 0, # '–' + 52: 1, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 22: { # 'ט' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 1, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 2, # 'ִ' + 37: 1, # 'ֵ' + 36: 1, # 'ֶ' + 31: 2, # 'ַ' + 29: 1, # 'ָ' + 35: 1, # 'ֹ' + 62: 1, # 'ֻ' + 28: 1, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 3, # 'א' + 8: 3, # 'ב' + 20: 3, # 'ג' + 16: 1, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 2, # 'ז' + 14: 3, # 'ח' + 22: 2, # 'ט' + 1: 3, # 'י' + 25: 1, # 'ך' + 15: 2, # 'כ' + 4: 3, # 'ל' + 11: 2, # 'ם' + 6: 2, # 'מ' + 23: 2, # 'ן' + 12: 3, # 'נ' + 19: 2, # 'ס' + 13: 3, # 'ע' + 26: 2, # 'ף' + 18: 3, # 'פ' + 27: 1, # 'ץ' + 21: 2, # 'צ' + 17: 2, # 'ק' + 7: 3, # 'ר' + 10: 2, # 'ש' + 5: 3, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 1: { # 'י' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 1, # '\xa0' + 55: 1, # '´' + 48: 1, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 2, # 'ִ' + 37: 2, # 'ֵ' + 36: 1, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 2, # 'ֹ' + 62: 1, # 'ֻ' + 28: 2, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 3, # 'א' + 8: 3, # 'ב' + 20: 3, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 3, # 'ז' + 14: 3, # 'ח' + 22: 3, # 'ט' + 1: 3, # 'י' + 25: 3, # 'ך' + 15: 3, # 'כ' + 4: 3, # 'ל' + 11: 3, # 'ם' + 6: 3, # 'מ' + 23: 3, # 'ן' + 12: 3, # 'נ' + 19: 3, # 'ס' + 13: 3, # 'ע' + 26: 3, # 'ף' + 18: 3, # 'פ' + 27: 3, # 'ץ' + 21: 3, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 1, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 2, # '…' + }, + 25: { # 'ך' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 2, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 1, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 1, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 1, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 1, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 1, # 'ל' + 11: 0, # 'ם' + 6: 1, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 1, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 15: { # 'כ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 2, # 'ִ' + 37: 2, # 'ֵ' + 36: 2, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 1, # 'ֹ' + 62: 1, # 'ֻ' + 28: 3, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 3, # 'א' + 8: 3, # 'ב' + 20: 2, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 3, # 'ז' + 14: 3, # 'ח' + 22: 2, # 'ט' + 1: 3, # 'י' + 25: 3, # 'ך' + 15: 3, # 'כ' + 4: 3, # 'ל' + 11: 3, # 'ם' + 6: 3, # 'מ' + 23: 3, # 'ן' + 12: 3, # 'נ' + 19: 3, # 'ס' + 13: 2, # 'ע' + 26: 3, # 'ף' + 18: 3, # 'פ' + 27: 1, # 'ץ' + 21: 2, # 'צ' + 17: 2, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 4: { # 'ל' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 1, # '\xa0' + 55: 1, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 3, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 2, # 'ִ' + 37: 2, # 'ֵ' + 36: 2, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 2, # 'ֹ' + 62: 1, # 'ֻ' + 28: 2, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 3, # 'א' + 8: 3, # 'ב' + 20: 3, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 3, # 'ז' + 14: 3, # 'ח' + 22: 3, # 'ט' + 1: 3, # 'י' + 25: 3, # 'ך' + 15: 3, # 'כ' + 4: 3, # 'ל' + 11: 3, # 'ם' + 6: 3, # 'מ' + 23: 2, # 'ן' + 12: 3, # 'נ' + 19: 3, # 'ס' + 13: 3, # 'ע' + 26: 2, # 'ף' + 18: 3, # 'פ' + 27: 2, # 'ץ' + 21: 3, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 1, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 11: { # 'ם' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 1, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 1, # 'א' + 8: 1, # 'ב' + 20: 1, # 'ג' + 16: 0, # 'ד' + 3: 1, # 'ה' + 2: 1, # 'ו' + 24: 1, # 'ז' + 14: 1, # 'ח' + 22: 0, # 'ט' + 1: 1, # 'י' + 25: 0, # 'ך' + 15: 1, # 'כ' + 4: 1, # 'ל' + 11: 1, # 'ם' + 6: 1, # 'מ' + 23: 0, # 'ן' + 12: 1, # 'נ' + 19: 0, # 'ס' + 13: 1, # 'ע' + 26: 0, # 'ף' + 18: 1, # 'פ' + 27: 1, # 'ץ' + 21: 1, # 'צ' + 17: 1, # 'ק' + 7: 1, # 'ר' + 10: 1, # 'ש' + 5: 1, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 2, # '…' + }, + 6: { # 'מ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 1, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 2, # 'ִ' + 37: 2, # 'ֵ' + 36: 2, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 2, # 'ֹ' + 62: 1, # 'ֻ' + 28: 2, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 3, # 'א' + 8: 3, # 'ב' + 20: 3, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 3, # 'ז' + 14: 3, # 'ח' + 22: 3, # 'ט' + 1: 3, # 'י' + 25: 2, # 'ך' + 15: 3, # 'כ' + 4: 3, # 'ל' + 11: 3, # 'ם' + 6: 3, # 'מ' + 23: 3, # 'ן' + 12: 3, # 'נ' + 19: 3, # 'ס' + 13: 3, # 'ע' + 26: 0, # 'ף' + 18: 3, # 'פ' + 27: 2, # 'ץ' + 21: 3, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 23: { # 'ן' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 1, # '\xa0' + 55: 0, # '´' + 48: 1, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 1, # 'א' + 8: 1, # 'ב' + 20: 1, # 'ג' + 16: 1, # 'ד' + 3: 1, # 'ה' + 2: 1, # 'ו' + 24: 0, # 'ז' + 14: 1, # 'ח' + 22: 1, # 'ט' + 1: 1, # 'י' + 25: 0, # 'ך' + 15: 1, # 'כ' + 4: 1, # 'ל' + 11: 1, # 'ם' + 6: 1, # 'מ' + 23: 0, # 'ן' + 12: 1, # 'נ' + 19: 1, # 'ס' + 13: 1, # 'ע' + 26: 1, # 'ף' + 18: 1, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 1, # 'ק' + 7: 1, # 'ר' + 10: 1, # 'ש' + 5: 1, # 'ת' + 32: 1, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 2, # '…' + }, + 12: { # 'נ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 2, # 'ִ' + 37: 2, # 'ֵ' + 36: 2, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 1, # 'ֹ' + 62: 1, # 'ֻ' + 28: 2, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 3, # 'א' + 8: 3, # 'ב' + 20: 3, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 3, # 'ז' + 14: 3, # 'ח' + 22: 3, # 'ט' + 1: 3, # 'י' + 25: 2, # 'ך' + 15: 3, # 'כ' + 4: 3, # 'ל' + 11: 3, # 'ם' + 6: 3, # 'מ' + 23: 3, # 'ן' + 12: 3, # 'נ' + 19: 3, # 'ס' + 13: 3, # 'ע' + 26: 2, # 'ף' + 18: 3, # 'פ' + 27: 2, # 'ץ' + 21: 3, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 19: { # 'ס' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 1, # '\xa0' + 55: 1, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 2, # 'ִ' + 37: 1, # 'ֵ' + 36: 2, # 'ֶ' + 31: 2, # 'ַ' + 29: 1, # 'ָ' + 35: 1, # 'ֹ' + 62: 2, # 'ֻ' + 28: 2, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 2, # 'א' + 8: 3, # 'ב' + 20: 3, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 1, # 'ז' + 14: 3, # 'ח' + 22: 3, # 'ט' + 1: 3, # 'י' + 25: 2, # 'ך' + 15: 3, # 'כ' + 4: 3, # 'ל' + 11: 2, # 'ם' + 6: 3, # 'מ' + 23: 2, # 'ן' + 12: 3, # 'נ' + 19: 2, # 'ס' + 13: 3, # 'ע' + 26: 3, # 'ף' + 18: 3, # 'פ' + 27: 0, # 'ץ' + 21: 2, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 1, # 'ש' + 5: 3, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 13: { # 'ע' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 1, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 1, # 'ְ' + 59: 1, # 'ֱ' + 41: 2, # 'ֲ' + 33: 2, # 'ִ' + 37: 2, # 'ֵ' + 36: 2, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 2, # 'ֹ' + 62: 1, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 2, # 'א' + 8: 3, # 'ב' + 20: 3, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 3, # 'ז' + 14: 1, # 'ח' + 22: 3, # 'ט' + 1: 3, # 'י' + 25: 2, # 'ך' + 15: 2, # 'כ' + 4: 3, # 'ל' + 11: 3, # 'ם' + 6: 3, # 'מ' + 23: 2, # 'ן' + 12: 3, # 'נ' + 19: 3, # 'ס' + 13: 2, # 'ע' + 26: 1, # 'ף' + 18: 2, # 'פ' + 27: 2, # 'ץ' + 21: 3, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 26: { # 'ף' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 1, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 1, # 'ו' + 24: 0, # 'ז' + 14: 1, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 1, # 'כ' + 4: 1, # 'ל' + 11: 0, # 'ם' + 6: 1, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 1, # 'ס' + 13: 0, # 'ע' + 26: 1, # 'ף' + 18: 1, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 1, # 'ק' + 7: 1, # 'ר' + 10: 1, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 18: { # 'פ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 1, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 2, # 'ִ' + 37: 1, # 'ֵ' + 36: 2, # 'ֶ' + 31: 1, # 'ַ' + 29: 2, # 'ָ' + 35: 1, # 'ֹ' + 62: 1, # 'ֻ' + 28: 2, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 3, # 'א' + 8: 2, # 'ב' + 20: 3, # 'ג' + 16: 2, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 2, # 'ז' + 14: 3, # 'ח' + 22: 3, # 'ט' + 1: 3, # 'י' + 25: 2, # 'ך' + 15: 3, # 'כ' + 4: 3, # 'ל' + 11: 2, # 'ם' + 6: 2, # 'מ' + 23: 3, # 'ן' + 12: 3, # 'נ' + 19: 3, # 'ס' + 13: 3, # 'ע' + 26: 2, # 'ף' + 18: 2, # 'פ' + 27: 2, # 'ץ' + 21: 3, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 27: { # 'ץ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 1, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 1, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 1, # 'ל' + 11: 0, # 'ם' + 6: 0, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 1, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 1, # 'ר' + 10: 0, # 'ש' + 5: 1, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 21: { # 'צ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 1, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 2, # 'ִ' + 37: 2, # 'ֵ' + 36: 1, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 1, # 'ֹ' + 62: 1, # 'ֻ' + 28: 2, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 3, # 'א' + 8: 3, # 'ב' + 20: 2, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 1, # 'ז' + 14: 3, # 'ח' + 22: 2, # 'ט' + 1: 3, # 'י' + 25: 1, # 'ך' + 15: 1, # 'כ' + 4: 3, # 'ל' + 11: 2, # 'ם' + 6: 3, # 'מ' + 23: 2, # 'ן' + 12: 3, # 'נ' + 19: 1, # 'ס' + 13: 3, # 'ע' + 26: 2, # 'ף' + 18: 3, # 'פ' + 27: 2, # 'ץ' + 21: 2, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 0, # 'ש' + 5: 3, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 17: { # 'ק' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 1, # '\xa0' + 55: 1, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 2, # 'ִ' + 37: 2, # 'ֵ' + 36: 1, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 2, # 'ֹ' + 62: 1, # 'ֻ' + 28: 2, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 3, # 'א' + 8: 3, # 'ב' + 20: 2, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 2, # 'ז' + 14: 3, # 'ח' + 22: 3, # 'ט' + 1: 3, # 'י' + 25: 1, # 'ך' + 15: 1, # 'כ' + 4: 3, # 'ל' + 11: 2, # 'ם' + 6: 3, # 'מ' + 23: 2, # 'ן' + 12: 3, # 'נ' + 19: 3, # 'ס' + 13: 3, # 'ע' + 26: 2, # 'ף' + 18: 3, # 'פ' + 27: 2, # 'ץ' + 21: 3, # 'צ' + 17: 2, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 0, # '–' + 52: 1, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 7: { # 'ר' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 1, # '\xa0' + 55: 2, # '´' + 48: 1, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 1, # 'ֲ' + 33: 2, # 'ִ' + 37: 2, # 'ֵ' + 36: 2, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 2, # 'ֹ' + 62: 1, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 3, # 'א' + 8: 3, # 'ב' + 20: 3, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 3, # 'ז' + 14: 3, # 'ח' + 22: 3, # 'ט' + 1: 3, # 'י' + 25: 3, # 'ך' + 15: 3, # 'כ' + 4: 3, # 'ל' + 11: 3, # 'ם' + 6: 3, # 'מ' + 23: 3, # 'ן' + 12: 3, # 'נ' + 19: 3, # 'ס' + 13: 3, # 'ע' + 26: 2, # 'ף' + 18: 3, # 'פ' + 27: 3, # 'ץ' + 21: 3, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 2, # '…' + }, + 10: { # 'ש' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 1, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 1, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 1, # 'ִ' + 37: 1, # 'ֵ' + 36: 1, # 'ֶ' + 31: 1, # 'ַ' + 29: 1, # 'ָ' + 35: 1, # 'ֹ' + 62: 1, # 'ֻ' + 28: 2, # 'ּ' + 38: 3, # 'ׁ' + 45: 2, # 'ׂ' + 9: 3, # 'א' + 8: 3, # 'ב' + 20: 3, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 2, # 'ז' + 14: 3, # 'ח' + 22: 3, # 'ט' + 1: 3, # 'י' + 25: 3, # 'ך' + 15: 3, # 'כ' + 4: 3, # 'ל' + 11: 3, # 'ם' + 6: 3, # 'מ' + 23: 2, # 'ן' + 12: 3, # 'נ' + 19: 2, # 'ס' + 13: 3, # 'ע' + 26: 2, # 'ף' + 18: 3, # 'פ' + 27: 1, # 'ץ' + 21: 2, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 5: { # 'ת' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 1, # '\xa0' + 55: 0, # '´' + 48: 1, # '¼' + 39: 1, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 2, # 'ִ' + 37: 2, # 'ֵ' + 36: 2, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 1, # 'ֹ' + 62: 1, # 'ֻ' + 28: 2, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 3, # 'א' + 8: 3, # 'ב' + 20: 3, # 'ג' + 16: 2, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 2, # 'ז' + 14: 3, # 'ח' + 22: 2, # 'ט' + 1: 3, # 'י' + 25: 2, # 'ך' + 15: 3, # 'כ' + 4: 3, # 'ל' + 11: 3, # 'ם' + 6: 3, # 'מ' + 23: 3, # 'ן' + 12: 3, # 'נ' + 19: 2, # 'ס' + 13: 3, # 'ע' + 26: 2, # 'ף' + 18: 3, # 'פ' + 27: 1, # 'ץ' + 21: 2, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 1, # '–' + 52: 1, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 2, # '…' + }, + 32: { # '–' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 1, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 1, # 'א' + 8: 1, # 'ב' + 20: 1, # 'ג' + 16: 1, # 'ד' + 3: 1, # 'ה' + 2: 1, # 'ו' + 24: 0, # 'ז' + 14: 1, # 'ח' + 22: 0, # 'ט' + 1: 1, # 'י' + 25: 0, # 'ך' + 15: 1, # 'כ' + 4: 1, # 'ל' + 11: 0, # 'ם' + 6: 1, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 1, # 'ס' + 13: 1, # 'ע' + 26: 0, # 'ף' + 18: 1, # 'פ' + 27: 0, # 'ץ' + 21: 1, # 'צ' + 17: 0, # 'ק' + 7: 1, # 'ר' + 10: 1, # 'ש' + 5: 1, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 52: { # '’' + 50: 1, # 'a' + 60: 0, # 'c' + 61: 1, # 'd' + 42: 1, # 'e' + 53: 1, # 'i' + 56: 1, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 1, # 'r' + 43: 2, # 's' + 44: 2, # 't' + 63: 1, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 1, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 0, # 'ם' + 6: 1, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 1, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 47: { # '“' + 50: 1, # 'a' + 60: 1, # 'c' + 61: 1, # 'd' + 42: 1, # 'e' + 53: 1, # 'i' + 56: 1, # 'l' + 54: 1, # 'n' + 49: 1, # 'o' + 51: 1, # 'r' + 43: 1, # 's' + 44: 1, # 't' + 63: 1, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 2, # 'א' + 8: 1, # 'ב' + 20: 1, # 'ג' + 16: 1, # 'ד' + 3: 1, # 'ה' + 2: 1, # 'ו' + 24: 1, # 'ז' + 14: 1, # 'ח' + 22: 1, # 'ט' + 1: 1, # 'י' + 25: 0, # 'ך' + 15: 1, # 'כ' + 4: 1, # 'ל' + 11: 0, # 'ם' + 6: 1, # 'מ' + 23: 0, # 'ן' + 12: 1, # 'נ' + 19: 1, # 'ס' + 13: 1, # 'ע' + 26: 0, # 'ף' + 18: 1, # 'פ' + 27: 0, # 'ץ' + 21: 1, # 'צ' + 17: 1, # 'ק' + 7: 1, # 'ר' + 10: 1, # 'ש' + 5: 1, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 46: { # '”' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 1, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 1, # 'א' + 8: 1, # 'ב' + 20: 1, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 1, # 'י' + 25: 0, # 'ך' + 15: 1, # 'כ' + 4: 1, # 'ל' + 11: 0, # 'ם' + 6: 1, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 1, # 'צ' + 17: 0, # 'ק' + 7: 1, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 58: { # '†' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 0, # 'ם' + 6: 0, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 2, # '†' + 40: 0, # '…' + }, + 40: { # '…' + 50: 1, # 'a' + 60: 1, # 'c' + 61: 1, # 'd' + 42: 1, # 'e' + 53: 1, # 'i' + 56: 0, # 'l' + 54: 1, # 'n' + 49: 0, # 'o' + 51: 1, # 'r' + 43: 1, # 's' + 44: 1, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 1, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 1, # 'ה' + 2: 1, # 'ו' + 24: 1, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 1, # 'י' + 25: 0, # 'ך' + 15: 1, # 'כ' + 4: 1, # 'ל' + 11: 0, # 'ם' + 6: 1, # 'מ' + 23: 0, # 'ן' + 12: 1, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 1, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 1, # 'ר' + 10: 1, # 'ש' + 5: 1, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 2, # '…' + }, +} + +# 255: Undefined characters that did not exist in training text +# 254: Carriage/Return +# 253: symbol (punctuation) that does not belong to word +# 252: 0 - 9 +# 251: Control characters + +# Character Mapping Table(s): +WINDOWS_1255_HEBREW_CHAR_TO_ORDER = { + 0: 255, # '\x00' + 1: 255, # '\x01' + 2: 255, # '\x02' + 3: 255, # '\x03' + 4: 255, # '\x04' + 5: 255, # '\x05' + 6: 255, # '\x06' + 7: 255, # '\x07' + 8: 255, # '\x08' + 9: 255, # '\t' + 10: 254, # '\n' + 11: 255, # '\x0b' + 12: 255, # '\x0c' + 13: 254, # '\r' + 14: 255, # '\x0e' + 15: 255, # '\x0f' + 16: 255, # '\x10' + 17: 255, # '\x11' + 18: 255, # '\x12' + 19: 255, # '\x13' + 20: 255, # '\x14' + 21: 255, # '\x15' + 22: 255, # '\x16' + 23: 255, # '\x17' + 24: 255, # '\x18' + 25: 255, # '\x19' + 26: 255, # '\x1a' + 27: 255, # '\x1b' + 28: 255, # '\x1c' + 29: 255, # '\x1d' + 30: 255, # '\x1e' + 31: 255, # '\x1f' + 32: 253, # ' ' + 33: 253, # '!' + 34: 253, # '"' + 35: 253, # '#' + 36: 253, # '$' + 37: 253, # '%' + 38: 253, # '&' + 39: 253, # "'" + 40: 253, # '(' + 41: 253, # ')' + 42: 253, # '*' + 43: 253, # '+' + 44: 253, # ',' + 45: 253, # '-' + 46: 253, # '.' + 47: 253, # '/' + 48: 252, # '0' + 49: 252, # '1' + 50: 252, # '2' + 51: 252, # '3' + 52: 252, # '4' + 53: 252, # '5' + 54: 252, # '6' + 55: 252, # '7' + 56: 252, # '8' + 57: 252, # '9' + 58: 253, # ':' + 59: 253, # ';' + 60: 253, # '<' + 61: 253, # '=' + 62: 253, # '>' + 63: 253, # '?' + 64: 253, # '@' + 65: 69, # 'A' + 66: 91, # 'B' + 67: 79, # 'C' + 68: 80, # 'D' + 69: 92, # 'E' + 70: 89, # 'F' + 71: 97, # 'G' + 72: 90, # 'H' + 73: 68, # 'I' + 74: 111, # 'J' + 75: 112, # 'K' + 76: 82, # 'L' + 77: 73, # 'M' + 78: 95, # 'N' + 79: 85, # 'O' + 80: 78, # 'P' + 81: 121, # 'Q' + 82: 86, # 'R' + 83: 71, # 'S' + 84: 67, # 'T' + 85: 102, # 'U' + 86: 107, # 'V' + 87: 84, # 'W' + 88: 114, # 'X' + 89: 103, # 'Y' + 90: 115, # 'Z' + 91: 253, # '[' + 92: 253, # '\\' + 93: 253, # ']' + 94: 253, # '^' + 95: 253, # '_' + 96: 253, # '`' + 97: 50, # 'a' + 98: 74, # 'b' + 99: 60, # 'c' + 100: 61, # 'd' + 101: 42, # 'e' + 102: 76, # 'f' + 103: 70, # 'g' + 104: 64, # 'h' + 105: 53, # 'i' + 106: 105, # 'j' + 107: 93, # 'k' + 108: 56, # 'l' + 109: 65, # 'm' + 110: 54, # 'n' + 111: 49, # 'o' + 112: 66, # 'p' + 113: 110, # 'q' + 114: 51, # 'r' + 115: 43, # 's' + 116: 44, # 't' + 117: 63, # 'u' + 118: 81, # 'v' + 119: 77, # 'w' + 120: 98, # 'x' + 121: 75, # 'y' + 122: 108, # 'z' + 123: 253, # '{' + 124: 253, # '|' + 125: 253, # '}' + 126: 253, # '~' + 127: 253, # '\x7f' + 128: 124, # '€' + 129: 202, # None + 130: 203, # '‚' + 131: 204, # 'ƒ' + 132: 205, # '„' + 133: 40, # '…' + 134: 58, # '†' + 135: 206, # '‡' + 136: 207, # 'ˆ' + 137: 208, # '‰' + 138: 209, # None + 139: 210, # '‹' + 140: 211, # None + 141: 212, # None + 142: 213, # None + 143: 214, # None + 144: 215, # None + 145: 83, # '‘' + 146: 52, # '’' + 147: 47, # '“' + 148: 46, # '”' + 149: 72, # '•' + 150: 32, # '–' + 151: 94, # '—' + 152: 216, # '˜' + 153: 113, # '™' + 154: 217, # None + 155: 109, # '›' + 156: 218, # None + 157: 219, # None + 158: 220, # None + 159: 221, # None + 160: 34, # '\xa0' + 161: 116, # '¡' + 162: 222, # '¢' + 163: 118, # '£' + 164: 100, # '₪' + 165: 223, # '¥' + 166: 224, # '¦' + 167: 117, # '§' + 168: 119, # '¨' + 169: 104, # '©' + 170: 125, # '×' + 171: 225, # '«' + 172: 226, # '¬' + 173: 87, # '\xad' + 174: 99, # '®' + 175: 227, # '¯' + 176: 106, # '°' + 177: 122, # '±' + 178: 123, # '²' + 179: 228, # '³' + 180: 55, # '´' + 181: 229, # 'µ' + 182: 230, # '¶' + 183: 101, # '·' + 184: 231, # '¸' + 185: 232, # '¹' + 186: 120, # '÷' + 187: 233, # '»' + 188: 48, # '¼' + 189: 39, # '½' + 190: 57, # '¾' + 191: 234, # '¿' + 192: 30, # 'ְ' + 193: 59, # 'ֱ' + 194: 41, # 'ֲ' + 195: 88, # 'ֳ' + 196: 33, # 'ִ' + 197: 37, # 'ֵ' + 198: 36, # 'ֶ' + 199: 31, # 'ַ' + 200: 29, # 'ָ' + 201: 35, # 'ֹ' + 202: 235, # None + 203: 62, # 'ֻ' + 204: 28, # 'ּ' + 205: 236, # 'ֽ' + 206: 126, # '־' + 207: 237, # 'ֿ' + 208: 238, # '׀' + 209: 38, # 'ׁ' + 210: 45, # 'ׂ' + 211: 239, # '׃' + 212: 240, # 'װ' + 213: 241, # 'ױ' + 214: 242, # 'ײ' + 215: 243, # '׳' + 216: 127, # '״' + 217: 244, # None + 218: 245, # None + 219: 246, # None + 220: 247, # None + 221: 248, # None + 222: 249, # None + 223: 250, # None + 224: 9, # 'א' + 225: 8, # 'ב' + 226: 20, # 'ג' + 227: 16, # 'ד' + 228: 3, # 'ה' + 229: 2, # 'ו' + 230: 24, # 'ז' + 231: 14, # 'ח' + 232: 22, # 'ט' + 233: 1, # 'י' + 234: 25, # 'ך' + 235: 15, # 'כ' + 236: 4, # 'ל' + 237: 11, # 'ם' + 238: 6, # 'מ' + 239: 23, # 'ן' + 240: 12, # 'נ' + 241: 19, # 'ס' + 242: 13, # 'ע' + 243: 26, # 'ף' + 244: 18, # 'פ' + 245: 27, # 'ץ' + 246: 21, # 'צ' + 247: 17, # 'ק' + 248: 7, # 'ר' + 249: 10, # 'ש' + 250: 5, # 'ת' + 251: 251, # None + 252: 252, # None + 253: 128, # '\u200e' + 254: 96, # '\u200f' + 255: 253, # None +} + +WINDOWS_1255_HEBREW_MODEL = SingleByteCharSetModel( + charset_name="windows-1255", + language="Hebrew", + char_to_order_map=WINDOWS_1255_HEBREW_CHAR_TO_ORDER, + language_model=HEBREW_LANG_MODEL, + typical_positive_ratio=0.984004, + keep_ascii_letters=False, + alphabet="אבגדהוזחטיךכלםמןנסעףפץצקרשתװױײ", +) diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/langhungarianmodel.py b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/langhungarianmodel.py new file mode 100644 index 0000000..09a0d32 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/langhungarianmodel.py @@ -0,0 +1,4649 @@ +from pip._vendor.chardet.sbcharsetprober import SingleByteCharSetModel + +# 3: Positive +# 2: Likely +# 1: Unlikely +# 0: Negative + +HUNGARIAN_LANG_MODEL = { + 28: { # 'A' + 28: 0, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 2, # 'D' + 32: 1, # 'E' + 50: 1, # 'F' + 49: 2, # 'G' + 38: 1, # 'H' + 39: 2, # 'I' + 53: 1, # 'J' + 36: 2, # 'K' + 41: 2, # 'L' + 34: 1, # 'M' + 35: 2, # 'N' + 47: 1, # 'O' + 46: 2, # 'P' + 43: 2, # 'R' + 33: 2, # 'S' + 37: 2, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 1, # 'Y' + 52: 2, # 'Z' + 2: 0, # 'a' + 18: 1, # 'b' + 26: 1, # 'c' + 17: 2, # 'd' + 1: 1, # 'e' + 27: 1, # 'f' + 12: 1, # 'g' + 20: 1, # 'h' + 9: 1, # 'i' + 22: 1, # 'j' + 7: 2, # 'k' + 6: 2, # 'l' + 13: 2, # 'm' + 4: 2, # 'n' + 8: 0, # 'o' + 23: 2, # 'p' + 10: 2, # 'r' + 5: 1, # 's' + 3: 1, # 't' + 21: 1, # 'u' + 19: 1, # 'v' + 62: 1, # 'x' + 16: 0, # 'y' + 11: 3, # 'z' + 51: 1, # 'Á' + 44: 0, # 'É' + 61: 1, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 0, # 'á' + 15: 0, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 40: { # 'B' + 28: 2, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 2, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 1, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 0, # 'M' + 35: 1, # 'N' + 47: 2, # 'O' + 46: 0, # 'P' + 43: 1, # 'R' + 33: 1, # 'S' + 37: 1, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 2, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 3, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 0, # 'h' + 9: 2, # 'i' + 22: 1, # 'j' + 7: 0, # 'k' + 6: 1, # 'l' + 13: 0, # 'm' + 4: 0, # 'n' + 8: 2, # 'o' + 23: 1, # 'p' + 10: 2, # 'r' + 5: 0, # 's' + 3: 0, # 't' + 21: 3, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 0, # 'z' + 51: 1, # 'Á' + 44: 1, # 'É' + 61: 1, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 1, # 'Ú' + 63: 1, # 'Ü' + 14: 2, # 'á' + 15: 2, # 'é' + 30: 1, # 'í' + 25: 1, # 'ó' + 24: 1, # 'ö' + 31: 1, # 'ú' + 29: 1, # 'ü' + 42: 1, # 'ő' + 56: 1, # 'ű' + }, + 54: { # 'C' + 28: 1, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 1, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 1, # 'H' + 39: 2, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 0, # 'N' + 47: 1, # 'O' + 46: 1, # 'P' + 43: 1, # 'R' + 33: 2, # 'S' + 37: 1, # 'T' + 57: 1, # 'U' + 48: 0, # 'V' + 55: 1, # 'Y' + 52: 1, # 'Z' + 2: 2, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 1, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 1, # 'h' + 9: 1, # 'i' + 22: 0, # 'j' + 7: 0, # 'k' + 6: 1, # 'l' + 13: 0, # 'm' + 4: 0, # 'n' + 8: 2, # 'o' + 23: 0, # 'p' + 10: 1, # 'r' + 5: 3, # 's' + 3: 0, # 't' + 21: 1, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 1, # 'z' + 51: 1, # 'Á' + 44: 1, # 'É' + 61: 1, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 1, # 'á' + 15: 1, # 'é' + 30: 1, # 'í' + 25: 1, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 45: { # 'D' + 28: 2, # 'A' + 40: 1, # 'B' + 54: 0, # 'C' + 45: 1, # 'D' + 32: 2, # 'E' + 50: 1, # 'F' + 49: 1, # 'G' + 38: 1, # 'H' + 39: 2, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 0, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 2, # 'O' + 46: 0, # 'P' + 43: 1, # 'R' + 33: 1, # 'S' + 37: 1, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 1, # 'Y' + 52: 1, # 'Z' + 2: 2, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 3, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 0, # 'h' + 9: 1, # 'i' + 22: 0, # 'j' + 7: 0, # 'k' + 6: 0, # 'l' + 13: 0, # 'm' + 4: 0, # 'n' + 8: 1, # 'o' + 23: 0, # 'p' + 10: 2, # 'r' + 5: 0, # 's' + 3: 0, # 't' + 21: 2, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 1, # 'z' + 51: 1, # 'Á' + 44: 1, # 'É' + 61: 1, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 1, # 'Ú' + 63: 1, # 'Ü' + 14: 1, # 'á' + 15: 1, # 'é' + 30: 1, # 'í' + 25: 1, # 'ó' + 24: 1, # 'ö' + 31: 1, # 'ú' + 29: 1, # 'ü' + 42: 1, # 'ő' + 56: 0, # 'ű' + }, + 32: { # 'E' + 28: 1, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 1, # 'E' + 50: 1, # 'F' + 49: 2, # 'G' + 38: 1, # 'H' + 39: 1, # 'I' + 53: 1, # 'J' + 36: 2, # 'K' + 41: 2, # 'L' + 34: 2, # 'M' + 35: 2, # 'N' + 47: 1, # 'O' + 46: 1, # 'P' + 43: 2, # 'R' + 33: 2, # 'S' + 37: 2, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 1, # 'Y' + 52: 1, # 'Z' + 2: 1, # 'a' + 18: 1, # 'b' + 26: 1, # 'c' + 17: 2, # 'd' + 1: 1, # 'e' + 27: 1, # 'f' + 12: 3, # 'g' + 20: 1, # 'h' + 9: 1, # 'i' + 22: 1, # 'j' + 7: 1, # 'k' + 6: 2, # 'l' + 13: 2, # 'm' + 4: 2, # 'n' + 8: 0, # 'o' + 23: 1, # 'p' + 10: 2, # 'r' + 5: 2, # 's' + 3: 1, # 't' + 21: 2, # 'u' + 19: 1, # 'v' + 62: 1, # 'x' + 16: 0, # 'y' + 11: 3, # 'z' + 51: 1, # 'Á' + 44: 1, # 'É' + 61: 0, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 0, # 'Ú' + 63: 1, # 'Ü' + 14: 0, # 'á' + 15: 0, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 1, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 50: { # 'F' + 28: 1, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 1, # 'E' + 50: 1, # 'F' + 49: 0, # 'G' + 38: 1, # 'H' + 39: 1, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 1, # 'O' + 46: 0, # 'P' + 43: 1, # 'R' + 33: 0, # 'S' + 37: 1, # 'T' + 57: 1, # 'U' + 48: 0, # 'V' + 55: 1, # 'Y' + 52: 0, # 'Z' + 2: 2, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 2, # 'e' + 27: 1, # 'f' + 12: 0, # 'g' + 20: 0, # 'h' + 9: 2, # 'i' + 22: 1, # 'j' + 7: 0, # 'k' + 6: 1, # 'l' + 13: 0, # 'm' + 4: 0, # 'n' + 8: 2, # 'o' + 23: 0, # 'p' + 10: 2, # 'r' + 5: 0, # 's' + 3: 0, # 't' + 21: 1, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 0, # 'z' + 51: 1, # 'Á' + 44: 1, # 'É' + 61: 0, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 0, # 'Ú' + 63: 1, # 'Ü' + 14: 1, # 'á' + 15: 1, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 2, # 'ö' + 31: 1, # 'ú' + 29: 1, # 'ü' + 42: 1, # 'ő' + 56: 1, # 'ű' + }, + 49: { # 'G' + 28: 2, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 2, # 'E' + 50: 1, # 'F' + 49: 1, # 'G' + 38: 1, # 'H' + 39: 1, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 1, # 'O' + 46: 1, # 'P' + 43: 1, # 'R' + 33: 1, # 'S' + 37: 1, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 2, # 'Y' + 52: 1, # 'Z' + 2: 2, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 2, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 0, # 'h' + 9: 1, # 'i' + 22: 0, # 'j' + 7: 0, # 'k' + 6: 1, # 'l' + 13: 0, # 'm' + 4: 0, # 'n' + 8: 2, # 'o' + 23: 0, # 'p' + 10: 2, # 'r' + 5: 0, # 's' + 3: 0, # 't' + 21: 1, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 2, # 'y' + 11: 0, # 'z' + 51: 1, # 'Á' + 44: 1, # 'É' + 61: 1, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 1, # 'Ú' + 63: 1, # 'Ü' + 14: 1, # 'á' + 15: 1, # 'é' + 30: 0, # 'í' + 25: 1, # 'ó' + 24: 1, # 'ö' + 31: 1, # 'ú' + 29: 1, # 'ü' + 42: 1, # 'ő' + 56: 0, # 'ű' + }, + 38: { # 'H' + 28: 2, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 0, # 'D' + 32: 1, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 1, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 1, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 1, # 'O' + 46: 0, # 'P' + 43: 1, # 'R' + 33: 1, # 'S' + 37: 1, # 'T' + 57: 1, # 'U' + 48: 0, # 'V' + 55: 1, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 2, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 0, # 'h' + 9: 2, # 'i' + 22: 1, # 'j' + 7: 0, # 'k' + 6: 1, # 'l' + 13: 1, # 'm' + 4: 0, # 'n' + 8: 3, # 'o' + 23: 0, # 'p' + 10: 1, # 'r' + 5: 0, # 's' + 3: 0, # 't' + 21: 2, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 0, # 'z' + 51: 2, # 'Á' + 44: 2, # 'É' + 61: 1, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 1, # 'Ú' + 63: 1, # 'Ü' + 14: 2, # 'á' + 15: 1, # 'é' + 30: 2, # 'í' + 25: 1, # 'ó' + 24: 1, # 'ö' + 31: 1, # 'ú' + 29: 1, # 'ü' + 42: 1, # 'ő' + 56: 1, # 'ű' + }, + 39: { # 'I' + 28: 2, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 1, # 'E' + 50: 1, # 'F' + 49: 1, # 'G' + 38: 1, # 'H' + 39: 2, # 'I' + 53: 1, # 'J' + 36: 2, # 'K' + 41: 2, # 'L' + 34: 1, # 'M' + 35: 2, # 'N' + 47: 1, # 'O' + 46: 1, # 'P' + 43: 1, # 'R' + 33: 2, # 'S' + 37: 1, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 0, # 'Y' + 52: 2, # 'Z' + 2: 0, # 'a' + 18: 1, # 'b' + 26: 1, # 'c' + 17: 2, # 'd' + 1: 0, # 'e' + 27: 1, # 'f' + 12: 2, # 'g' + 20: 1, # 'h' + 9: 0, # 'i' + 22: 1, # 'j' + 7: 1, # 'k' + 6: 2, # 'l' + 13: 2, # 'm' + 4: 1, # 'n' + 8: 0, # 'o' + 23: 1, # 'p' + 10: 2, # 'r' + 5: 2, # 's' + 3: 2, # 't' + 21: 0, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 1, # 'z' + 51: 1, # 'Á' + 44: 1, # 'É' + 61: 0, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 1, # 'Ú' + 63: 1, # 'Ü' + 14: 0, # 'á' + 15: 0, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 53: { # 'J' + 28: 2, # 'A' + 40: 0, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 2, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 1, # 'H' + 39: 1, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 1, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 1, # 'S' + 37: 1, # 'T' + 57: 1, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 1, # 'Z' + 2: 2, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 2, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 0, # 'h' + 9: 1, # 'i' + 22: 0, # 'j' + 7: 0, # 'k' + 6: 0, # 'l' + 13: 0, # 'm' + 4: 0, # 'n' + 8: 1, # 'o' + 23: 0, # 'p' + 10: 0, # 'r' + 5: 0, # 's' + 3: 0, # 't' + 21: 2, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 0, # 'z' + 51: 1, # 'Á' + 44: 1, # 'É' + 61: 0, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 1, # 'Ú' + 63: 1, # 'Ü' + 14: 2, # 'á' + 15: 1, # 'é' + 30: 0, # 'í' + 25: 2, # 'ó' + 24: 2, # 'ö' + 31: 1, # 'ú' + 29: 0, # 'ü' + 42: 1, # 'ő' + 56: 0, # 'ű' + }, + 36: { # 'K' + 28: 2, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 2, # 'E' + 50: 1, # 'F' + 49: 0, # 'G' + 38: 1, # 'H' + 39: 2, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 2, # 'O' + 46: 0, # 'P' + 43: 1, # 'R' + 33: 1, # 'S' + 37: 1, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 1, # 'Y' + 52: 0, # 'Z' + 2: 2, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 2, # 'e' + 27: 1, # 'f' + 12: 0, # 'g' + 20: 1, # 'h' + 9: 3, # 'i' + 22: 0, # 'j' + 7: 0, # 'k' + 6: 1, # 'l' + 13: 1, # 'm' + 4: 1, # 'n' + 8: 2, # 'o' + 23: 0, # 'p' + 10: 2, # 'r' + 5: 0, # 's' + 3: 0, # 't' + 21: 1, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 0, # 'z' + 51: 1, # 'Á' + 44: 1, # 'É' + 61: 1, # 'Í' + 58: 1, # 'Ó' + 59: 2, # 'Ö' + 60: 1, # 'Ú' + 63: 1, # 'Ü' + 14: 2, # 'á' + 15: 2, # 'é' + 30: 1, # 'í' + 25: 1, # 'ó' + 24: 2, # 'ö' + 31: 1, # 'ú' + 29: 2, # 'ü' + 42: 1, # 'ő' + 56: 0, # 'ű' + }, + 41: { # 'L' + 28: 2, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 2, # 'E' + 50: 1, # 'F' + 49: 1, # 'G' + 38: 1, # 'H' + 39: 2, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 2, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 2, # 'O' + 46: 0, # 'P' + 43: 1, # 'R' + 33: 1, # 'S' + 37: 2, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 1, # 'Y' + 52: 1, # 'Z' + 2: 2, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 3, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 0, # 'h' + 9: 2, # 'i' + 22: 1, # 'j' + 7: 0, # 'k' + 6: 1, # 'l' + 13: 0, # 'm' + 4: 0, # 'n' + 8: 2, # 'o' + 23: 0, # 'p' + 10: 0, # 'r' + 5: 0, # 's' + 3: 0, # 't' + 21: 2, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 0, # 'z' + 51: 2, # 'Á' + 44: 1, # 'É' + 61: 1, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 1, # 'Ú' + 63: 1, # 'Ü' + 14: 2, # 'á' + 15: 1, # 'é' + 30: 1, # 'í' + 25: 1, # 'ó' + 24: 1, # 'ö' + 31: 0, # 'ú' + 29: 1, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 34: { # 'M' + 28: 2, # 'A' + 40: 1, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 2, # 'E' + 50: 1, # 'F' + 49: 0, # 'G' + 38: 1, # 'H' + 39: 2, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 1, # 'O' + 46: 1, # 'P' + 43: 1, # 'R' + 33: 1, # 'S' + 37: 1, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 1, # 'Y' + 52: 1, # 'Z' + 2: 3, # 'a' + 18: 0, # 'b' + 26: 1, # 'c' + 17: 0, # 'd' + 1: 3, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 0, # 'h' + 9: 3, # 'i' + 22: 0, # 'j' + 7: 0, # 'k' + 6: 0, # 'l' + 13: 1, # 'm' + 4: 1, # 'n' + 8: 3, # 'o' + 23: 0, # 'p' + 10: 1, # 'r' + 5: 0, # 's' + 3: 0, # 't' + 21: 2, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 0, # 'z' + 51: 2, # 'Á' + 44: 1, # 'É' + 61: 1, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 1, # 'Ú' + 63: 1, # 'Ü' + 14: 2, # 'á' + 15: 2, # 'é' + 30: 1, # 'í' + 25: 1, # 'ó' + 24: 1, # 'ö' + 31: 1, # 'ú' + 29: 1, # 'ü' + 42: 0, # 'ő' + 56: 1, # 'ű' + }, + 35: { # 'N' + 28: 2, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 2, # 'D' + 32: 2, # 'E' + 50: 1, # 'F' + 49: 1, # 'G' + 38: 1, # 'H' + 39: 1, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 1, # 'O' + 46: 1, # 'P' + 43: 1, # 'R' + 33: 1, # 'S' + 37: 2, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 2, # 'Y' + 52: 1, # 'Z' + 2: 3, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 3, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 0, # 'h' + 9: 2, # 'i' + 22: 0, # 'j' + 7: 0, # 'k' + 6: 0, # 'l' + 13: 0, # 'm' + 4: 1, # 'n' + 8: 2, # 'o' + 23: 0, # 'p' + 10: 0, # 'r' + 5: 0, # 's' + 3: 0, # 't' + 21: 1, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 2, # 'y' + 11: 0, # 'z' + 51: 1, # 'Á' + 44: 1, # 'É' + 61: 1, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 1, # 'Ú' + 63: 1, # 'Ü' + 14: 1, # 'á' + 15: 2, # 'é' + 30: 1, # 'í' + 25: 1, # 'ó' + 24: 1, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 1, # 'ő' + 56: 0, # 'ű' + }, + 47: { # 'O' + 28: 1, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 1, # 'E' + 50: 1, # 'F' + 49: 1, # 'G' + 38: 1, # 'H' + 39: 1, # 'I' + 53: 1, # 'J' + 36: 2, # 'K' + 41: 2, # 'L' + 34: 2, # 'M' + 35: 2, # 'N' + 47: 1, # 'O' + 46: 1, # 'P' + 43: 2, # 'R' + 33: 2, # 'S' + 37: 2, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 1, # 'Y' + 52: 1, # 'Z' + 2: 0, # 'a' + 18: 1, # 'b' + 26: 1, # 'c' + 17: 1, # 'd' + 1: 1, # 'e' + 27: 1, # 'f' + 12: 1, # 'g' + 20: 1, # 'h' + 9: 1, # 'i' + 22: 1, # 'j' + 7: 2, # 'k' + 6: 2, # 'l' + 13: 1, # 'm' + 4: 1, # 'n' + 8: 1, # 'o' + 23: 1, # 'p' + 10: 2, # 'r' + 5: 1, # 's' + 3: 2, # 't' + 21: 1, # 'u' + 19: 0, # 'v' + 62: 1, # 'x' + 16: 0, # 'y' + 11: 1, # 'z' + 51: 1, # 'Á' + 44: 1, # 'É' + 61: 0, # 'Í' + 58: 1, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 0, # 'á' + 15: 0, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 46: { # 'P' + 28: 1, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 1, # 'E' + 50: 1, # 'F' + 49: 1, # 'G' + 38: 1, # 'H' + 39: 1, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 0, # 'M' + 35: 1, # 'N' + 47: 1, # 'O' + 46: 1, # 'P' + 43: 2, # 'R' + 33: 1, # 'S' + 37: 1, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 0, # 'Y' + 52: 1, # 'Z' + 2: 2, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 2, # 'e' + 27: 1, # 'f' + 12: 0, # 'g' + 20: 1, # 'h' + 9: 2, # 'i' + 22: 0, # 'j' + 7: 0, # 'k' + 6: 1, # 'l' + 13: 0, # 'm' + 4: 1, # 'n' + 8: 2, # 'o' + 23: 0, # 'p' + 10: 2, # 'r' + 5: 1, # 's' + 3: 0, # 't' + 21: 1, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 0, # 'z' + 51: 2, # 'Á' + 44: 1, # 'É' + 61: 1, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 0, # 'Ú' + 63: 1, # 'Ü' + 14: 3, # 'á' + 15: 2, # 'é' + 30: 0, # 'í' + 25: 1, # 'ó' + 24: 1, # 'ö' + 31: 0, # 'ú' + 29: 1, # 'ü' + 42: 1, # 'ő' + 56: 0, # 'ű' + }, + 43: { # 'R' + 28: 2, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 2, # 'E' + 50: 1, # 'F' + 49: 1, # 'G' + 38: 1, # 'H' + 39: 2, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 2, # 'O' + 46: 1, # 'P' + 43: 1, # 'R' + 33: 2, # 'S' + 37: 2, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 1, # 'Y' + 52: 1, # 'Z' + 2: 2, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 2, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 1, # 'h' + 9: 2, # 'i' + 22: 0, # 'j' + 7: 0, # 'k' + 6: 0, # 'l' + 13: 0, # 'm' + 4: 0, # 'n' + 8: 2, # 'o' + 23: 0, # 'p' + 10: 0, # 'r' + 5: 0, # 's' + 3: 0, # 't' + 21: 1, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 0, # 'z' + 51: 2, # 'Á' + 44: 1, # 'É' + 61: 1, # 'Í' + 58: 2, # 'Ó' + 59: 1, # 'Ö' + 60: 1, # 'Ú' + 63: 1, # 'Ü' + 14: 2, # 'á' + 15: 2, # 'é' + 30: 1, # 'í' + 25: 2, # 'ó' + 24: 1, # 'ö' + 31: 1, # 'ú' + 29: 1, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 33: { # 'S' + 28: 2, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 2, # 'E' + 50: 1, # 'F' + 49: 1, # 'G' + 38: 1, # 'H' + 39: 2, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 2, # 'O' + 46: 1, # 'P' + 43: 1, # 'R' + 33: 2, # 'S' + 37: 2, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 1, # 'Y' + 52: 3, # 'Z' + 2: 2, # 'a' + 18: 0, # 'b' + 26: 1, # 'c' + 17: 0, # 'd' + 1: 2, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 1, # 'h' + 9: 2, # 'i' + 22: 0, # 'j' + 7: 1, # 'k' + 6: 1, # 'l' + 13: 1, # 'm' + 4: 0, # 'n' + 8: 2, # 'o' + 23: 1, # 'p' + 10: 0, # 'r' + 5: 0, # 's' + 3: 1, # 't' + 21: 1, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 3, # 'z' + 51: 2, # 'Á' + 44: 1, # 'É' + 61: 1, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 1, # 'Ú' + 63: 1, # 'Ü' + 14: 2, # 'á' + 15: 1, # 'é' + 30: 1, # 'í' + 25: 1, # 'ó' + 24: 1, # 'ö' + 31: 1, # 'ú' + 29: 1, # 'ü' + 42: 1, # 'ő' + 56: 1, # 'ű' + }, + 37: { # 'T' + 28: 2, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 2, # 'E' + 50: 1, # 'F' + 49: 1, # 'G' + 38: 1, # 'H' + 39: 2, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 2, # 'O' + 46: 1, # 'P' + 43: 2, # 'R' + 33: 1, # 'S' + 37: 2, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 1, # 'Y' + 52: 1, # 'Z' + 2: 2, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 2, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 1, # 'h' + 9: 2, # 'i' + 22: 0, # 'j' + 7: 0, # 'k' + 6: 0, # 'l' + 13: 0, # 'm' + 4: 0, # 'n' + 8: 2, # 'o' + 23: 0, # 'p' + 10: 1, # 'r' + 5: 1, # 's' + 3: 0, # 't' + 21: 2, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 1, # 'z' + 51: 2, # 'Á' + 44: 2, # 'É' + 61: 1, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 1, # 'Ú' + 63: 1, # 'Ü' + 14: 2, # 'á' + 15: 1, # 'é' + 30: 1, # 'í' + 25: 1, # 'ó' + 24: 2, # 'ö' + 31: 1, # 'ú' + 29: 1, # 'ü' + 42: 1, # 'ő' + 56: 1, # 'ű' + }, + 57: { # 'U' + 28: 1, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 1, # 'E' + 50: 1, # 'F' + 49: 1, # 'G' + 38: 1, # 'H' + 39: 1, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 1, # 'O' + 46: 1, # 'P' + 43: 1, # 'R' + 33: 2, # 'S' + 37: 1, # 'T' + 57: 0, # 'U' + 48: 1, # 'V' + 55: 0, # 'Y' + 52: 1, # 'Z' + 2: 0, # 'a' + 18: 1, # 'b' + 26: 1, # 'c' + 17: 1, # 'd' + 1: 1, # 'e' + 27: 0, # 'f' + 12: 2, # 'g' + 20: 0, # 'h' + 9: 0, # 'i' + 22: 1, # 'j' + 7: 1, # 'k' + 6: 1, # 'l' + 13: 1, # 'm' + 4: 1, # 'n' + 8: 0, # 'o' + 23: 1, # 'p' + 10: 1, # 'r' + 5: 1, # 's' + 3: 1, # 't' + 21: 0, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 1, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 1, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 0, # 'á' + 15: 0, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 48: { # 'V' + 28: 2, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 1, # 'D' + 32: 2, # 'E' + 50: 1, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 2, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 0, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 1, # 'O' + 46: 1, # 'P' + 43: 1, # 'R' + 33: 1, # 'S' + 37: 1, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 1, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 2, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 0, # 'h' + 9: 2, # 'i' + 22: 0, # 'j' + 7: 0, # 'k' + 6: 1, # 'l' + 13: 0, # 'm' + 4: 0, # 'n' + 8: 2, # 'o' + 23: 0, # 'p' + 10: 0, # 'r' + 5: 0, # 's' + 3: 0, # 't' + 21: 1, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 0, # 'z' + 51: 2, # 'Á' + 44: 2, # 'É' + 61: 1, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 0, # 'Ú' + 63: 1, # 'Ü' + 14: 2, # 'á' + 15: 2, # 'é' + 30: 1, # 'í' + 25: 0, # 'ó' + 24: 1, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 55: { # 'Y' + 28: 2, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 2, # 'E' + 50: 1, # 'F' + 49: 1, # 'G' + 38: 1, # 'H' + 39: 1, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 1, # 'O' + 46: 1, # 'P' + 43: 1, # 'R' + 33: 1, # 'S' + 37: 1, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 0, # 'Y' + 52: 2, # 'Z' + 2: 1, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 1, # 'd' + 1: 1, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 0, # 'h' + 9: 0, # 'i' + 22: 0, # 'j' + 7: 0, # 'k' + 6: 0, # 'l' + 13: 0, # 'm' + 4: 0, # 'n' + 8: 1, # 'o' + 23: 1, # 'p' + 10: 0, # 'r' + 5: 0, # 's' + 3: 0, # 't' + 21: 0, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 0, # 'z' + 51: 1, # 'Á' + 44: 1, # 'É' + 61: 1, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 1, # 'Ú' + 63: 1, # 'Ü' + 14: 0, # 'á' + 15: 0, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 52: { # 'Z' + 28: 2, # 'A' + 40: 1, # 'B' + 54: 0, # 'C' + 45: 1, # 'D' + 32: 2, # 'E' + 50: 1, # 'F' + 49: 1, # 'G' + 38: 1, # 'H' + 39: 2, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 2, # 'O' + 46: 1, # 'P' + 43: 1, # 'R' + 33: 2, # 'S' + 37: 1, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 1, # 'Y' + 52: 1, # 'Z' + 2: 1, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 1, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 0, # 'h' + 9: 1, # 'i' + 22: 0, # 'j' + 7: 0, # 'k' + 6: 0, # 'l' + 13: 0, # 'm' + 4: 1, # 'n' + 8: 1, # 'o' + 23: 0, # 'p' + 10: 1, # 'r' + 5: 2, # 's' + 3: 0, # 't' + 21: 1, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 0, # 'z' + 51: 2, # 'Á' + 44: 1, # 'É' + 61: 1, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 1, # 'Ú' + 63: 1, # 'Ü' + 14: 1, # 'á' + 15: 1, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 1, # 'ö' + 31: 1, # 'ú' + 29: 1, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 2: { # 'a' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 1, # 'a' + 18: 3, # 'b' + 26: 3, # 'c' + 17: 3, # 'd' + 1: 2, # 'e' + 27: 2, # 'f' + 12: 3, # 'g' + 20: 3, # 'h' + 9: 3, # 'i' + 22: 3, # 'j' + 7: 3, # 'k' + 6: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 8: 2, # 'o' + 23: 3, # 'p' + 10: 3, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 3, # 'u' + 19: 3, # 'v' + 62: 1, # 'x' + 16: 2, # 'y' + 11: 3, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 1, # 'á' + 15: 1, # 'é' + 30: 1, # 'í' + 25: 1, # 'ó' + 24: 1, # 'ö' + 31: 1, # 'ú' + 29: 1, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 18: { # 'b' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 3, # 'b' + 26: 1, # 'c' + 17: 1, # 'd' + 1: 3, # 'e' + 27: 1, # 'f' + 12: 1, # 'g' + 20: 1, # 'h' + 9: 3, # 'i' + 22: 2, # 'j' + 7: 2, # 'k' + 6: 2, # 'l' + 13: 1, # 'm' + 4: 2, # 'n' + 8: 3, # 'o' + 23: 1, # 'p' + 10: 3, # 'r' + 5: 2, # 's' + 3: 1, # 't' + 21: 3, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 1, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 2, # 'í' + 25: 3, # 'ó' + 24: 2, # 'ö' + 31: 2, # 'ú' + 29: 2, # 'ü' + 42: 2, # 'ő' + 56: 1, # 'ű' + }, + 26: { # 'c' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 1, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 1, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 2, # 'a' + 18: 1, # 'b' + 26: 2, # 'c' + 17: 1, # 'd' + 1: 3, # 'e' + 27: 1, # 'f' + 12: 1, # 'g' + 20: 3, # 'h' + 9: 3, # 'i' + 22: 1, # 'j' + 7: 2, # 'k' + 6: 1, # 'l' + 13: 1, # 'm' + 4: 1, # 'n' + 8: 3, # 'o' + 23: 1, # 'p' + 10: 2, # 'r' + 5: 3, # 's' + 3: 2, # 't' + 21: 2, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 2, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 2, # 'á' + 15: 2, # 'é' + 30: 2, # 'í' + 25: 1, # 'ó' + 24: 1, # 'ö' + 31: 1, # 'ú' + 29: 1, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 17: { # 'd' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 2, # 'b' + 26: 1, # 'c' + 17: 2, # 'd' + 1: 3, # 'e' + 27: 1, # 'f' + 12: 1, # 'g' + 20: 2, # 'h' + 9: 3, # 'i' + 22: 3, # 'j' + 7: 2, # 'k' + 6: 1, # 'l' + 13: 2, # 'm' + 4: 3, # 'n' + 8: 3, # 'o' + 23: 1, # 'p' + 10: 3, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 3, # 'u' + 19: 3, # 'v' + 62: 0, # 'x' + 16: 2, # 'y' + 11: 2, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 3, # 'í' + 25: 3, # 'ó' + 24: 3, # 'ö' + 31: 2, # 'ú' + 29: 2, # 'ü' + 42: 2, # 'ő' + 56: 1, # 'ű' + }, + 1: { # 'e' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 2, # 'a' + 18: 3, # 'b' + 26: 3, # 'c' + 17: 3, # 'd' + 1: 2, # 'e' + 27: 3, # 'f' + 12: 3, # 'g' + 20: 3, # 'h' + 9: 3, # 'i' + 22: 3, # 'j' + 7: 3, # 'k' + 6: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 8: 2, # 'o' + 23: 3, # 'p' + 10: 3, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 2, # 'u' + 19: 3, # 'v' + 62: 2, # 'x' + 16: 2, # 'y' + 11: 3, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 1, # 'é' + 30: 1, # 'í' + 25: 1, # 'ó' + 24: 1, # 'ö' + 31: 1, # 'ú' + 29: 1, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 27: { # 'f' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 1, # 'b' + 26: 1, # 'c' + 17: 1, # 'd' + 1: 3, # 'e' + 27: 2, # 'f' + 12: 1, # 'g' + 20: 1, # 'h' + 9: 3, # 'i' + 22: 2, # 'j' + 7: 1, # 'k' + 6: 1, # 'l' + 13: 1, # 'm' + 4: 1, # 'n' + 8: 3, # 'o' + 23: 0, # 'p' + 10: 3, # 'r' + 5: 1, # 's' + 3: 1, # 't' + 21: 2, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 0, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 1, # 'í' + 25: 1, # 'ó' + 24: 3, # 'ö' + 31: 1, # 'ú' + 29: 2, # 'ü' + 42: 1, # 'ő' + 56: 1, # 'ű' + }, + 12: { # 'g' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 3, # 'b' + 26: 2, # 'c' + 17: 2, # 'd' + 1: 3, # 'e' + 27: 2, # 'f' + 12: 3, # 'g' + 20: 3, # 'h' + 9: 3, # 'i' + 22: 3, # 'j' + 7: 2, # 'k' + 6: 3, # 'l' + 13: 2, # 'm' + 4: 3, # 'n' + 8: 3, # 'o' + 23: 1, # 'p' + 10: 3, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 3, # 'u' + 19: 3, # 'v' + 62: 0, # 'x' + 16: 3, # 'y' + 11: 2, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 2, # 'í' + 25: 3, # 'ó' + 24: 2, # 'ö' + 31: 2, # 'ú' + 29: 2, # 'ü' + 42: 2, # 'ő' + 56: 1, # 'ű' + }, + 20: { # 'h' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 1, # 'b' + 26: 1, # 'c' + 17: 0, # 'd' + 1: 3, # 'e' + 27: 0, # 'f' + 12: 1, # 'g' + 20: 2, # 'h' + 9: 3, # 'i' + 22: 1, # 'j' + 7: 1, # 'k' + 6: 1, # 'l' + 13: 1, # 'm' + 4: 1, # 'n' + 8: 3, # 'o' + 23: 0, # 'p' + 10: 1, # 'r' + 5: 2, # 's' + 3: 1, # 't' + 21: 3, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 2, # 'y' + 11: 0, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 3, # 'í' + 25: 2, # 'ó' + 24: 2, # 'ö' + 31: 2, # 'ú' + 29: 1, # 'ü' + 42: 1, # 'ő' + 56: 1, # 'ű' + }, + 9: { # 'i' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 3, # 'b' + 26: 3, # 'c' + 17: 3, # 'd' + 1: 3, # 'e' + 27: 3, # 'f' + 12: 3, # 'g' + 20: 3, # 'h' + 9: 2, # 'i' + 22: 2, # 'j' + 7: 3, # 'k' + 6: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 8: 2, # 'o' + 23: 2, # 'p' + 10: 3, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 3, # 'u' + 19: 3, # 'v' + 62: 1, # 'x' + 16: 1, # 'y' + 11: 3, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 2, # 'é' + 30: 1, # 'í' + 25: 3, # 'ó' + 24: 1, # 'ö' + 31: 2, # 'ú' + 29: 1, # 'ü' + 42: 0, # 'ő' + 56: 1, # 'ű' + }, + 22: { # 'j' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 2, # 'b' + 26: 1, # 'c' + 17: 3, # 'd' + 1: 3, # 'e' + 27: 1, # 'f' + 12: 1, # 'g' + 20: 2, # 'h' + 9: 1, # 'i' + 22: 2, # 'j' + 7: 2, # 'k' + 6: 2, # 'l' + 13: 1, # 'm' + 4: 2, # 'n' + 8: 3, # 'o' + 23: 1, # 'p' + 10: 2, # 'r' + 5: 2, # 's' + 3: 3, # 't' + 21: 3, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 2, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 1, # 'í' + 25: 3, # 'ó' + 24: 3, # 'ö' + 31: 3, # 'ú' + 29: 2, # 'ü' + 42: 1, # 'ő' + 56: 1, # 'ű' + }, + 7: { # 'k' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 3, # 'b' + 26: 2, # 'c' + 17: 1, # 'd' + 1: 3, # 'e' + 27: 1, # 'f' + 12: 1, # 'g' + 20: 2, # 'h' + 9: 3, # 'i' + 22: 2, # 'j' + 7: 3, # 'k' + 6: 3, # 'l' + 13: 1, # 'm' + 4: 3, # 'n' + 8: 3, # 'o' + 23: 1, # 'p' + 10: 3, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 3, # 'u' + 19: 2, # 'v' + 62: 0, # 'x' + 16: 2, # 'y' + 11: 1, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 3, # 'í' + 25: 2, # 'ó' + 24: 3, # 'ö' + 31: 1, # 'ú' + 29: 3, # 'ü' + 42: 1, # 'ő' + 56: 1, # 'ű' + }, + 6: { # 'l' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 1, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 1, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 2, # 'b' + 26: 3, # 'c' + 17: 3, # 'd' + 1: 3, # 'e' + 27: 3, # 'f' + 12: 3, # 'g' + 20: 3, # 'h' + 9: 3, # 'i' + 22: 3, # 'j' + 7: 3, # 'k' + 6: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 8: 3, # 'o' + 23: 2, # 'p' + 10: 2, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 3, # 'u' + 19: 3, # 'v' + 62: 0, # 'x' + 16: 3, # 'y' + 11: 2, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 3, # 'í' + 25: 3, # 'ó' + 24: 3, # 'ö' + 31: 2, # 'ú' + 29: 2, # 'ü' + 42: 3, # 'ő' + 56: 1, # 'ű' + }, + 13: { # 'm' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 3, # 'b' + 26: 2, # 'c' + 17: 1, # 'd' + 1: 3, # 'e' + 27: 1, # 'f' + 12: 1, # 'g' + 20: 2, # 'h' + 9: 3, # 'i' + 22: 2, # 'j' + 7: 1, # 'k' + 6: 3, # 'l' + 13: 3, # 'm' + 4: 2, # 'n' + 8: 3, # 'o' + 23: 3, # 'p' + 10: 2, # 'r' + 5: 2, # 's' + 3: 2, # 't' + 21: 3, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 2, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 2, # 'í' + 25: 2, # 'ó' + 24: 2, # 'ö' + 31: 2, # 'ú' + 29: 2, # 'ü' + 42: 1, # 'ő' + 56: 2, # 'ű' + }, + 4: { # 'n' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 3, # 'b' + 26: 3, # 'c' + 17: 3, # 'd' + 1: 3, # 'e' + 27: 2, # 'f' + 12: 3, # 'g' + 20: 3, # 'h' + 9: 3, # 'i' + 22: 2, # 'j' + 7: 3, # 'k' + 6: 2, # 'l' + 13: 2, # 'm' + 4: 3, # 'n' + 8: 3, # 'o' + 23: 2, # 'p' + 10: 2, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 3, # 'u' + 19: 2, # 'v' + 62: 1, # 'x' + 16: 3, # 'y' + 11: 3, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 2, # 'í' + 25: 2, # 'ó' + 24: 3, # 'ö' + 31: 2, # 'ú' + 29: 3, # 'ü' + 42: 2, # 'ő' + 56: 1, # 'ű' + }, + 8: { # 'o' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 1, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 2, # 'a' + 18: 3, # 'b' + 26: 3, # 'c' + 17: 3, # 'd' + 1: 2, # 'e' + 27: 2, # 'f' + 12: 3, # 'g' + 20: 3, # 'h' + 9: 2, # 'i' + 22: 2, # 'j' + 7: 3, # 'k' + 6: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 8: 1, # 'o' + 23: 3, # 'p' + 10: 3, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 2, # 'u' + 19: 3, # 'v' + 62: 1, # 'x' + 16: 1, # 'y' + 11: 3, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 1, # 'á' + 15: 2, # 'é' + 30: 1, # 'í' + 25: 1, # 'ó' + 24: 1, # 'ö' + 31: 1, # 'ú' + 29: 1, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 23: { # 'p' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 1, # 'b' + 26: 2, # 'c' + 17: 1, # 'd' + 1: 3, # 'e' + 27: 1, # 'f' + 12: 1, # 'g' + 20: 2, # 'h' + 9: 3, # 'i' + 22: 2, # 'j' + 7: 2, # 'k' + 6: 3, # 'l' + 13: 1, # 'm' + 4: 2, # 'n' + 8: 3, # 'o' + 23: 3, # 'p' + 10: 3, # 'r' + 5: 2, # 's' + 3: 2, # 't' + 21: 3, # 'u' + 19: 2, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 2, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 2, # 'í' + 25: 2, # 'ó' + 24: 2, # 'ö' + 31: 1, # 'ú' + 29: 2, # 'ü' + 42: 1, # 'ő' + 56: 1, # 'ű' + }, + 10: { # 'r' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 3, # 'b' + 26: 3, # 'c' + 17: 3, # 'd' + 1: 3, # 'e' + 27: 2, # 'f' + 12: 3, # 'g' + 20: 2, # 'h' + 9: 3, # 'i' + 22: 3, # 'j' + 7: 3, # 'k' + 6: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 8: 3, # 'o' + 23: 2, # 'p' + 10: 3, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 3, # 'u' + 19: 3, # 'v' + 62: 1, # 'x' + 16: 2, # 'y' + 11: 3, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 2, # 'í' + 25: 3, # 'ó' + 24: 3, # 'ö' + 31: 3, # 'ú' + 29: 3, # 'ü' + 42: 2, # 'ő' + 56: 2, # 'ű' + }, + 5: { # 's' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 3, # 'b' + 26: 2, # 'c' + 17: 2, # 'd' + 1: 3, # 'e' + 27: 2, # 'f' + 12: 2, # 'g' + 20: 2, # 'h' + 9: 3, # 'i' + 22: 1, # 'j' + 7: 3, # 'k' + 6: 2, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 8: 3, # 'o' + 23: 2, # 'p' + 10: 3, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 3, # 'u' + 19: 2, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 3, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 3, # 'í' + 25: 3, # 'ó' + 24: 3, # 'ö' + 31: 3, # 'ú' + 29: 3, # 'ü' + 42: 2, # 'ő' + 56: 1, # 'ű' + }, + 3: { # 't' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 3, # 'b' + 26: 2, # 'c' + 17: 1, # 'd' + 1: 3, # 'e' + 27: 2, # 'f' + 12: 1, # 'g' + 20: 3, # 'h' + 9: 3, # 'i' + 22: 3, # 'j' + 7: 3, # 'k' + 6: 3, # 'l' + 13: 2, # 'm' + 4: 3, # 'n' + 8: 3, # 'o' + 23: 1, # 'p' + 10: 3, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 3, # 'u' + 19: 3, # 'v' + 62: 0, # 'x' + 16: 3, # 'y' + 11: 1, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 2, # 'í' + 25: 3, # 'ó' + 24: 3, # 'ö' + 31: 3, # 'ú' + 29: 3, # 'ü' + 42: 3, # 'ő' + 56: 2, # 'ű' + }, + 21: { # 'u' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 1, # 'a' + 18: 2, # 'b' + 26: 2, # 'c' + 17: 3, # 'd' + 1: 2, # 'e' + 27: 1, # 'f' + 12: 3, # 'g' + 20: 2, # 'h' + 9: 2, # 'i' + 22: 2, # 'j' + 7: 3, # 'k' + 6: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 8: 1, # 'o' + 23: 2, # 'p' + 10: 3, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 1, # 'u' + 19: 3, # 'v' + 62: 1, # 'x' + 16: 1, # 'y' + 11: 2, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 2, # 'á' + 15: 1, # 'é' + 30: 1, # 'í' + 25: 1, # 'ó' + 24: 0, # 'ö' + 31: 1, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 19: { # 'v' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 2, # 'b' + 26: 1, # 'c' + 17: 1, # 'd' + 1: 3, # 'e' + 27: 1, # 'f' + 12: 1, # 'g' + 20: 1, # 'h' + 9: 3, # 'i' + 22: 1, # 'j' + 7: 1, # 'k' + 6: 1, # 'l' + 13: 1, # 'm' + 4: 1, # 'n' + 8: 3, # 'o' + 23: 1, # 'p' + 10: 1, # 'r' + 5: 2, # 's' + 3: 2, # 't' + 21: 2, # 'u' + 19: 2, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 1, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 2, # 'í' + 25: 2, # 'ó' + 24: 2, # 'ö' + 31: 1, # 'ú' + 29: 2, # 'ü' + 42: 1, # 'ő' + 56: 1, # 'ű' + }, + 62: { # 'x' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 1, # 'a' + 18: 1, # 'b' + 26: 1, # 'c' + 17: 0, # 'd' + 1: 1, # 'e' + 27: 1, # 'f' + 12: 0, # 'g' + 20: 0, # 'h' + 9: 1, # 'i' + 22: 0, # 'j' + 7: 1, # 'k' + 6: 1, # 'l' + 13: 1, # 'm' + 4: 1, # 'n' + 8: 1, # 'o' + 23: 1, # 'p' + 10: 1, # 'r' + 5: 1, # 's' + 3: 1, # 't' + 21: 1, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 0, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 1, # 'á' + 15: 1, # 'é' + 30: 1, # 'í' + 25: 1, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 16: { # 'y' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 2, # 'b' + 26: 1, # 'c' + 17: 1, # 'd' + 1: 3, # 'e' + 27: 2, # 'f' + 12: 2, # 'g' + 20: 2, # 'h' + 9: 3, # 'i' + 22: 2, # 'j' + 7: 2, # 'k' + 6: 2, # 'l' + 13: 2, # 'm' + 4: 3, # 'n' + 8: 3, # 'o' + 23: 2, # 'p' + 10: 2, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 3, # 'u' + 19: 3, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 2, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 2, # 'í' + 25: 2, # 'ó' + 24: 3, # 'ö' + 31: 2, # 'ú' + 29: 2, # 'ü' + 42: 1, # 'ő' + 56: 2, # 'ű' + }, + 11: { # 'z' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 2, # 'b' + 26: 1, # 'c' + 17: 3, # 'd' + 1: 3, # 'e' + 27: 1, # 'f' + 12: 2, # 'g' + 20: 2, # 'h' + 9: 3, # 'i' + 22: 1, # 'j' + 7: 3, # 'k' + 6: 2, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 8: 3, # 'o' + 23: 1, # 'p' + 10: 2, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 3, # 'u' + 19: 2, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 3, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 3, # 'í' + 25: 3, # 'ó' + 24: 3, # 'ö' + 31: 2, # 'ú' + 29: 3, # 'ü' + 42: 2, # 'ő' + 56: 1, # 'ű' + }, + 51: { # 'Á' + 28: 0, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 0, # 'E' + 50: 1, # 'F' + 49: 2, # 'G' + 38: 1, # 'H' + 39: 1, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 2, # 'L' + 34: 1, # 'M' + 35: 2, # 'N' + 47: 0, # 'O' + 46: 1, # 'P' + 43: 2, # 'R' + 33: 2, # 'S' + 37: 1, # 'T' + 57: 0, # 'U' + 48: 1, # 'V' + 55: 0, # 'Y' + 52: 1, # 'Z' + 2: 0, # 'a' + 18: 1, # 'b' + 26: 1, # 'c' + 17: 1, # 'd' + 1: 0, # 'e' + 27: 0, # 'f' + 12: 1, # 'g' + 20: 1, # 'h' + 9: 0, # 'i' + 22: 1, # 'j' + 7: 1, # 'k' + 6: 2, # 'l' + 13: 2, # 'm' + 4: 0, # 'n' + 8: 0, # 'o' + 23: 1, # 'p' + 10: 1, # 'r' + 5: 1, # 's' + 3: 1, # 't' + 21: 0, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 1, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 1, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 0, # 'á' + 15: 0, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 44: { # 'É' + 28: 0, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 1, # 'E' + 50: 0, # 'F' + 49: 2, # 'G' + 38: 1, # 'H' + 39: 1, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 2, # 'L' + 34: 1, # 'M' + 35: 2, # 'N' + 47: 0, # 'O' + 46: 1, # 'P' + 43: 2, # 'R' + 33: 2, # 'S' + 37: 2, # 'T' + 57: 0, # 'U' + 48: 1, # 'V' + 55: 0, # 'Y' + 52: 1, # 'Z' + 2: 0, # 'a' + 18: 1, # 'b' + 26: 1, # 'c' + 17: 1, # 'd' + 1: 0, # 'e' + 27: 0, # 'f' + 12: 1, # 'g' + 20: 1, # 'h' + 9: 0, # 'i' + 22: 1, # 'j' + 7: 1, # 'k' + 6: 2, # 'l' + 13: 1, # 'm' + 4: 2, # 'n' + 8: 0, # 'o' + 23: 1, # 'p' + 10: 2, # 'r' + 5: 3, # 's' + 3: 1, # 't' + 21: 0, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 0, # 'z' + 51: 0, # 'Á' + 44: 1, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 0, # 'á' + 15: 0, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 61: { # 'Í' + 28: 0, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 0, # 'E' + 50: 1, # 'F' + 49: 1, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 1, # 'J' + 36: 0, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 0, # 'O' + 46: 1, # 'P' + 43: 1, # 'R' + 33: 1, # 'S' + 37: 1, # 'T' + 57: 0, # 'U' + 48: 1, # 'V' + 55: 0, # 'Y' + 52: 1, # 'Z' + 2: 0, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 0, # 'e' + 27: 0, # 'f' + 12: 2, # 'g' + 20: 0, # 'h' + 9: 0, # 'i' + 22: 0, # 'j' + 7: 0, # 'k' + 6: 0, # 'l' + 13: 1, # 'm' + 4: 0, # 'n' + 8: 0, # 'o' + 23: 0, # 'p' + 10: 1, # 'r' + 5: 0, # 's' + 3: 1, # 't' + 21: 0, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 1, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 0, # 'á' + 15: 0, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 58: { # 'Ó' + 28: 1, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 0, # 'E' + 50: 1, # 'F' + 49: 1, # 'G' + 38: 1, # 'H' + 39: 1, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 2, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 0, # 'O' + 46: 1, # 'P' + 43: 1, # 'R' + 33: 1, # 'S' + 37: 1, # 'T' + 57: 0, # 'U' + 48: 1, # 'V' + 55: 0, # 'Y' + 52: 1, # 'Z' + 2: 0, # 'a' + 18: 1, # 'b' + 26: 1, # 'c' + 17: 1, # 'd' + 1: 0, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 2, # 'h' + 9: 0, # 'i' + 22: 0, # 'j' + 7: 1, # 'k' + 6: 1, # 'l' + 13: 0, # 'm' + 4: 1, # 'n' + 8: 0, # 'o' + 23: 1, # 'p' + 10: 1, # 'r' + 5: 1, # 's' + 3: 0, # 't' + 21: 0, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 1, # 'z' + 51: 0, # 'Á' + 44: 1, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 0, # 'á' + 15: 0, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 59: { # 'Ö' + 28: 0, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 1, # 'G' + 38: 1, # 'H' + 39: 0, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 0, # 'O' + 46: 1, # 'P' + 43: 1, # 'R' + 33: 1, # 'S' + 37: 1, # 'T' + 57: 0, # 'U' + 48: 1, # 'V' + 55: 0, # 'Y' + 52: 1, # 'Z' + 2: 0, # 'a' + 18: 0, # 'b' + 26: 1, # 'c' + 17: 1, # 'd' + 1: 0, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 0, # 'h' + 9: 0, # 'i' + 22: 0, # 'j' + 7: 1, # 'k' + 6: 1, # 'l' + 13: 1, # 'm' + 4: 1, # 'n' + 8: 0, # 'o' + 23: 0, # 'p' + 10: 2, # 'r' + 5: 1, # 's' + 3: 1, # 't' + 21: 0, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 1, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 0, # 'á' + 15: 0, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 60: { # 'Ú' + 28: 0, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 0, # 'E' + 50: 1, # 'F' + 49: 1, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 1, # 'R' + 33: 1, # 'S' + 37: 1, # 'T' + 57: 0, # 'U' + 48: 1, # 'V' + 55: 0, # 'Y' + 52: 1, # 'Z' + 2: 0, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 0, # 'e' + 27: 0, # 'f' + 12: 2, # 'g' + 20: 0, # 'h' + 9: 0, # 'i' + 22: 2, # 'j' + 7: 0, # 'k' + 6: 0, # 'l' + 13: 0, # 'm' + 4: 1, # 'n' + 8: 0, # 'o' + 23: 0, # 'p' + 10: 1, # 'r' + 5: 1, # 's' + 3: 1, # 't' + 21: 0, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 0, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 0, # 'á' + 15: 0, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 63: { # 'Ü' + 28: 0, # 'A' + 40: 1, # 'B' + 54: 0, # 'C' + 45: 1, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 1, # 'G' + 38: 1, # 'H' + 39: 0, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 1, # 'R' + 33: 1, # 'S' + 37: 1, # 'T' + 57: 0, # 'U' + 48: 1, # 'V' + 55: 0, # 'Y' + 52: 1, # 'Z' + 2: 0, # 'a' + 18: 1, # 'b' + 26: 0, # 'c' + 17: 1, # 'd' + 1: 0, # 'e' + 27: 0, # 'f' + 12: 1, # 'g' + 20: 0, # 'h' + 9: 0, # 'i' + 22: 0, # 'j' + 7: 0, # 'k' + 6: 1, # 'l' + 13: 0, # 'm' + 4: 1, # 'n' + 8: 0, # 'o' + 23: 0, # 'p' + 10: 1, # 'r' + 5: 1, # 's' + 3: 1, # 't' + 21: 0, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 1, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 0, # 'á' + 15: 0, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 14: { # 'á' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 1, # 'a' + 18: 3, # 'b' + 26: 3, # 'c' + 17: 3, # 'd' + 1: 1, # 'e' + 27: 2, # 'f' + 12: 3, # 'g' + 20: 2, # 'h' + 9: 2, # 'i' + 22: 3, # 'j' + 7: 3, # 'k' + 6: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 8: 1, # 'o' + 23: 2, # 'p' + 10: 3, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 2, # 'u' + 19: 3, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 3, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 1, # 'á' + 15: 2, # 'é' + 30: 1, # 'í' + 25: 0, # 'ó' + 24: 1, # 'ö' + 31: 0, # 'ú' + 29: 1, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 15: { # 'é' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 1, # 'a' + 18: 3, # 'b' + 26: 2, # 'c' + 17: 3, # 'd' + 1: 1, # 'e' + 27: 1, # 'f' + 12: 3, # 'g' + 20: 3, # 'h' + 9: 2, # 'i' + 22: 2, # 'j' + 7: 3, # 'k' + 6: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 8: 1, # 'o' + 23: 3, # 'p' + 10: 3, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 0, # 'u' + 19: 3, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 3, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 1, # 'á' + 15: 1, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 1, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 30: { # 'í' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 0, # 'a' + 18: 1, # 'b' + 26: 2, # 'c' + 17: 1, # 'd' + 1: 0, # 'e' + 27: 1, # 'f' + 12: 3, # 'g' + 20: 0, # 'h' + 9: 0, # 'i' + 22: 1, # 'j' + 7: 1, # 'k' + 6: 2, # 'l' + 13: 2, # 'm' + 4: 3, # 'n' + 8: 0, # 'o' + 23: 1, # 'p' + 10: 3, # 'r' + 5: 2, # 's' + 3: 3, # 't' + 21: 0, # 'u' + 19: 3, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 2, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 0, # 'á' + 15: 0, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 25: { # 'ó' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 2, # 'a' + 18: 3, # 'b' + 26: 2, # 'c' + 17: 3, # 'd' + 1: 1, # 'e' + 27: 2, # 'f' + 12: 2, # 'g' + 20: 2, # 'h' + 9: 2, # 'i' + 22: 2, # 'j' + 7: 3, # 'k' + 6: 3, # 'l' + 13: 2, # 'm' + 4: 3, # 'n' + 8: 1, # 'o' + 23: 2, # 'p' + 10: 3, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 1, # 'u' + 19: 2, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 3, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 1, # 'á' + 15: 1, # 'é' + 30: 1, # 'í' + 25: 0, # 'ó' + 24: 1, # 'ö' + 31: 1, # 'ú' + 29: 1, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 24: { # 'ö' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 0, # 'a' + 18: 3, # 'b' + 26: 1, # 'c' + 17: 2, # 'd' + 1: 0, # 'e' + 27: 1, # 'f' + 12: 2, # 'g' + 20: 1, # 'h' + 9: 0, # 'i' + 22: 1, # 'j' + 7: 3, # 'k' + 6: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 8: 0, # 'o' + 23: 2, # 'p' + 10: 3, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 0, # 'u' + 19: 3, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 3, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 0, # 'á' + 15: 0, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 31: { # 'ú' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 1, # 'a' + 18: 1, # 'b' + 26: 2, # 'c' + 17: 1, # 'd' + 1: 1, # 'e' + 27: 2, # 'f' + 12: 3, # 'g' + 20: 1, # 'h' + 9: 1, # 'i' + 22: 3, # 'j' + 7: 1, # 'k' + 6: 3, # 'l' + 13: 1, # 'm' + 4: 2, # 'n' + 8: 0, # 'o' + 23: 1, # 'p' + 10: 3, # 'r' + 5: 3, # 's' + 3: 2, # 't' + 21: 1, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 2, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 1, # 'á' + 15: 1, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 29: { # 'ü' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 1, # 'a' + 18: 1, # 'b' + 26: 1, # 'c' + 17: 2, # 'd' + 1: 1, # 'e' + 27: 1, # 'f' + 12: 3, # 'g' + 20: 2, # 'h' + 9: 1, # 'i' + 22: 1, # 'j' + 7: 3, # 'k' + 6: 3, # 'l' + 13: 1, # 'm' + 4: 3, # 'n' + 8: 0, # 'o' + 23: 1, # 'p' + 10: 2, # 'r' + 5: 2, # 's' + 3: 2, # 't' + 21: 0, # 'u' + 19: 2, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 2, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 0, # 'á' + 15: 1, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 42: { # 'ő' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 1, # 'a' + 18: 2, # 'b' + 26: 1, # 'c' + 17: 2, # 'd' + 1: 1, # 'e' + 27: 1, # 'f' + 12: 1, # 'g' + 20: 1, # 'h' + 9: 1, # 'i' + 22: 1, # 'j' + 7: 2, # 'k' + 6: 3, # 'l' + 13: 1, # 'm' + 4: 2, # 'n' + 8: 1, # 'o' + 23: 1, # 'p' + 10: 2, # 'r' + 5: 2, # 's' + 3: 2, # 't' + 21: 1, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 2, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 0, # 'á' + 15: 1, # 'é' + 30: 1, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 1, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 56: { # 'ű' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 1, # 'a' + 18: 1, # 'b' + 26: 0, # 'c' + 17: 1, # 'd' + 1: 1, # 'e' + 27: 1, # 'f' + 12: 1, # 'g' + 20: 1, # 'h' + 9: 1, # 'i' + 22: 1, # 'j' + 7: 1, # 'k' + 6: 1, # 'l' + 13: 0, # 'm' + 4: 2, # 'n' + 8: 0, # 'o' + 23: 0, # 'p' + 10: 1, # 'r' + 5: 1, # 's' + 3: 1, # 't' + 21: 0, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 2, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 0, # 'á' + 15: 0, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, +} + +# 255: Undefined characters that did not exist in training text +# 254: Carriage/Return +# 253: symbol (punctuation) that does not belong to word +# 252: 0 - 9 +# 251: Control characters + +# Character Mapping Table(s): +WINDOWS_1250_HUNGARIAN_CHAR_TO_ORDER = { + 0: 255, # '\x00' + 1: 255, # '\x01' + 2: 255, # '\x02' + 3: 255, # '\x03' + 4: 255, # '\x04' + 5: 255, # '\x05' + 6: 255, # '\x06' + 7: 255, # '\x07' + 8: 255, # '\x08' + 9: 255, # '\t' + 10: 254, # '\n' + 11: 255, # '\x0b' + 12: 255, # '\x0c' + 13: 254, # '\r' + 14: 255, # '\x0e' + 15: 255, # '\x0f' + 16: 255, # '\x10' + 17: 255, # '\x11' + 18: 255, # '\x12' + 19: 255, # '\x13' + 20: 255, # '\x14' + 21: 255, # '\x15' + 22: 255, # '\x16' + 23: 255, # '\x17' + 24: 255, # '\x18' + 25: 255, # '\x19' + 26: 255, # '\x1a' + 27: 255, # '\x1b' + 28: 255, # '\x1c' + 29: 255, # '\x1d' + 30: 255, # '\x1e' + 31: 255, # '\x1f' + 32: 253, # ' ' + 33: 253, # '!' + 34: 253, # '"' + 35: 253, # '#' + 36: 253, # '$' + 37: 253, # '%' + 38: 253, # '&' + 39: 253, # "'" + 40: 253, # '(' + 41: 253, # ')' + 42: 253, # '*' + 43: 253, # '+' + 44: 253, # ',' + 45: 253, # '-' + 46: 253, # '.' + 47: 253, # '/' + 48: 252, # '0' + 49: 252, # '1' + 50: 252, # '2' + 51: 252, # '3' + 52: 252, # '4' + 53: 252, # '5' + 54: 252, # '6' + 55: 252, # '7' + 56: 252, # '8' + 57: 252, # '9' + 58: 253, # ':' + 59: 253, # ';' + 60: 253, # '<' + 61: 253, # '=' + 62: 253, # '>' + 63: 253, # '?' + 64: 253, # '@' + 65: 28, # 'A' + 66: 40, # 'B' + 67: 54, # 'C' + 68: 45, # 'D' + 69: 32, # 'E' + 70: 50, # 'F' + 71: 49, # 'G' + 72: 38, # 'H' + 73: 39, # 'I' + 74: 53, # 'J' + 75: 36, # 'K' + 76: 41, # 'L' + 77: 34, # 'M' + 78: 35, # 'N' + 79: 47, # 'O' + 80: 46, # 'P' + 81: 72, # 'Q' + 82: 43, # 'R' + 83: 33, # 'S' + 84: 37, # 'T' + 85: 57, # 'U' + 86: 48, # 'V' + 87: 64, # 'W' + 88: 68, # 'X' + 89: 55, # 'Y' + 90: 52, # 'Z' + 91: 253, # '[' + 92: 253, # '\\' + 93: 253, # ']' + 94: 253, # '^' + 95: 253, # '_' + 96: 253, # '`' + 97: 2, # 'a' + 98: 18, # 'b' + 99: 26, # 'c' + 100: 17, # 'd' + 101: 1, # 'e' + 102: 27, # 'f' + 103: 12, # 'g' + 104: 20, # 'h' + 105: 9, # 'i' + 106: 22, # 'j' + 107: 7, # 'k' + 108: 6, # 'l' + 109: 13, # 'm' + 110: 4, # 'n' + 111: 8, # 'o' + 112: 23, # 'p' + 113: 67, # 'q' + 114: 10, # 'r' + 115: 5, # 's' + 116: 3, # 't' + 117: 21, # 'u' + 118: 19, # 'v' + 119: 65, # 'w' + 120: 62, # 'x' + 121: 16, # 'y' + 122: 11, # 'z' + 123: 253, # '{' + 124: 253, # '|' + 125: 253, # '}' + 126: 253, # '~' + 127: 253, # '\x7f' + 128: 161, # '€' + 129: 162, # None + 130: 163, # '‚' + 131: 164, # None + 132: 165, # '„' + 133: 166, # '…' + 134: 167, # '†' + 135: 168, # '‡' + 136: 169, # None + 137: 170, # '‰' + 138: 171, # 'Š' + 139: 172, # '‹' + 140: 173, # 'Ś' + 141: 174, # 'Ť' + 142: 175, # 'Ž' + 143: 176, # 'Ź' + 144: 177, # None + 145: 178, # '‘' + 146: 179, # '’' + 147: 180, # '“' + 148: 78, # '”' + 149: 181, # '•' + 150: 69, # '–' + 151: 182, # '—' + 152: 183, # None + 153: 184, # '™' + 154: 185, # 'š' + 155: 186, # '›' + 156: 187, # 'ś' + 157: 188, # 'ť' + 158: 189, # 'ž' + 159: 190, # 'ź' + 160: 191, # '\xa0' + 161: 192, # 'ˇ' + 162: 193, # '˘' + 163: 194, # 'Ł' + 164: 195, # '¤' + 165: 196, # 'Ą' + 166: 197, # '¦' + 167: 76, # '§' + 168: 198, # '¨' + 169: 199, # '©' + 170: 200, # 'Ş' + 171: 201, # '«' + 172: 202, # '¬' + 173: 203, # '\xad' + 174: 204, # '®' + 175: 205, # 'Ż' + 176: 81, # '°' + 177: 206, # '±' + 178: 207, # '˛' + 179: 208, # 'ł' + 180: 209, # '´' + 181: 210, # 'µ' + 182: 211, # '¶' + 183: 212, # '·' + 184: 213, # '¸' + 185: 214, # 'ą' + 186: 215, # 'ş' + 187: 216, # '»' + 188: 217, # 'Ľ' + 189: 218, # '˝' + 190: 219, # 'ľ' + 191: 220, # 'ż' + 192: 221, # 'Ŕ' + 193: 51, # 'Á' + 194: 83, # 'Â' + 195: 222, # 'Ă' + 196: 80, # 'Ä' + 197: 223, # 'Ĺ' + 198: 224, # 'Ć' + 199: 225, # 'Ç' + 200: 226, # 'Č' + 201: 44, # 'É' + 202: 227, # 'Ę' + 203: 228, # 'Ë' + 204: 229, # 'Ě' + 205: 61, # 'Í' + 206: 230, # 'Î' + 207: 231, # 'Ď' + 208: 232, # 'Đ' + 209: 233, # 'Ń' + 210: 234, # 'Ň' + 211: 58, # 'Ó' + 212: 235, # 'Ô' + 213: 66, # 'Ő' + 214: 59, # 'Ö' + 215: 236, # '×' + 216: 237, # 'Ř' + 217: 238, # 'Ů' + 218: 60, # 'Ú' + 219: 70, # 'Ű' + 220: 63, # 'Ü' + 221: 239, # 'Ý' + 222: 240, # 'Ţ' + 223: 241, # 'ß' + 224: 84, # 'ŕ' + 225: 14, # 'á' + 226: 75, # 'â' + 227: 242, # 'ă' + 228: 71, # 'ä' + 229: 82, # 'ĺ' + 230: 243, # 'ć' + 231: 73, # 'ç' + 232: 244, # 'č' + 233: 15, # 'é' + 234: 85, # 'ę' + 235: 79, # 'ë' + 236: 86, # 'ě' + 237: 30, # 'í' + 238: 77, # 'î' + 239: 87, # 'ď' + 240: 245, # 'đ' + 241: 246, # 'ń' + 242: 247, # 'ň' + 243: 25, # 'ó' + 244: 74, # 'ô' + 245: 42, # 'ő' + 246: 24, # 'ö' + 247: 248, # '÷' + 248: 249, # 'ř' + 249: 250, # 'ů' + 250: 31, # 'ú' + 251: 56, # 'ű' + 252: 29, # 'ü' + 253: 251, # 'ý' + 254: 252, # 'ţ' + 255: 253, # '˙' +} + +WINDOWS_1250_HUNGARIAN_MODEL = SingleByteCharSetModel( + charset_name="windows-1250", + language="Hungarian", + char_to_order_map=WINDOWS_1250_HUNGARIAN_CHAR_TO_ORDER, + language_model=HUNGARIAN_LANG_MODEL, + typical_positive_ratio=0.947368, + keep_ascii_letters=True, + alphabet="ABCDEFGHIJKLMNOPRSTUVZabcdefghijklmnoprstuvzÁÉÍÓÖÚÜáéíóöúüŐőŰű", +) + +ISO_8859_2_HUNGARIAN_CHAR_TO_ORDER = { + 0: 255, # '\x00' + 1: 255, # '\x01' + 2: 255, # '\x02' + 3: 255, # '\x03' + 4: 255, # '\x04' + 5: 255, # '\x05' + 6: 255, # '\x06' + 7: 255, # '\x07' + 8: 255, # '\x08' + 9: 255, # '\t' + 10: 254, # '\n' + 11: 255, # '\x0b' + 12: 255, # '\x0c' + 13: 254, # '\r' + 14: 255, # '\x0e' + 15: 255, # '\x0f' + 16: 255, # '\x10' + 17: 255, # '\x11' + 18: 255, # '\x12' + 19: 255, # '\x13' + 20: 255, # '\x14' + 21: 255, # '\x15' + 22: 255, # '\x16' + 23: 255, # '\x17' + 24: 255, # '\x18' + 25: 255, # '\x19' + 26: 255, # '\x1a' + 27: 255, # '\x1b' + 28: 255, # '\x1c' + 29: 255, # '\x1d' + 30: 255, # '\x1e' + 31: 255, # '\x1f' + 32: 253, # ' ' + 33: 253, # '!' + 34: 253, # '"' + 35: 253, # '#' + 36: 253, # '$' + 37: 253, # '%' + 38: 253, # '&' + 39: 253, # "'" + 40: 253, # '(' + 41: 253, # ')' + 42: 253, # '*' + 43: 253, # '+' + 44: 253, # ',' + 45: 253, # '-' + 46: 253, # '.' + 47: 253, # '/' + 48: 252, # '0' + 49: 252, # '1' + 50: 252, # '2' + 51: 252, # '3' + 52: 252, # '4' + 53: 252, # '5' + 54: 252, # '6' + 55: 252, # '7' + 56: 252, # '8' + 57: 252, # '9' + 58: 253, # ':' + 59: 253, # ';' + 60: 253, # '<' + 61: 253, # '=' + 62: 253, # '>' + 63: 253, # '?' + 64: 253, # '@' + 65: 28, # 'A' + 66: 40, # 'B' + 67: 54, # 'C' + 68: 45, # 'D' + 69: 32, # 'E' + 70: 50, # 'F' + 71: 49, # 'G' + 72: 38, # 'H' + 73: 39, # 'I' + 74: 53, # 'J' + 75: 36, # 'K' + 76: 41, # 'L' + 77: 34, # 'M' + 78: 35, # 'N' + 79: 47, # 'O' + 80: 46, # 'P' + 81: 71, # 'Q' + 82: 43, # 'R' + 83: 33, # 'S' + 84: 37, # 'T' + 85: 57, # 'U' + 86: 48, # 'V' + 87: 64, # 'W' + 88: 68, # 'X' + 89: 55, # 'Y' + 90: 52, # 'Z' + 91: 253, # '[' + 92: 253, # '\\' + 93: 253, # ']' + 94: 253, # '^' + 95: 253, # '_' + 96: 253, # '`' + 97: 2, # 'a' + 98: 18, # 'b' + 99: 26, # 'c' + 100: 17, # 'd' + 101: 1, # 'e' + 102: 27, # 'f' + 103: 12, # 'g' + 104: 20, # 'h' + 105: 9, # 'i' + 106: 22, # 'j' + 107: 7, # 'k' + 108: 6, # 'l' + 109: 13, # 'm' + 110: 4, # 'n' + 111: 8, # 'o' + 112: 23, # 'p' + 113: 67, # 'q' + 114: 10, # 'r' + 115: 5, # 's' + 116: 3, # 't' + 117: 21, # 'u' + 118: 19, # 'v' + 119: 65, # 'w' + 120: 62, # 'x' + 121: 16, # 'y' + 122: 11, # 'z' + 123: 253, # '{' + 124: 253, # '|' + 125: 253, # '}' + 126: 253, # '~' + 127: 253, # '\x7f' + 128: 159, # '\x80' + 129: 160, # '\x81' + 130: 161, # '\x82' + 131: 162, # '\x83' + 132: 163, # '\x84' + 133: 164, # '\x85' + 134: 165, # '\x86' + 135: 166, # '\x87' + 136: 167, # '\x88' + 137: 168, # '\x89' + 138: 169, # '\x8a' + 139: 170, # '\x8b' + 140: 171, # '\x8c' + 141: 172, # '\x8d' + 142: 173, # '\x8e' + 143: 174, # '\x8f' + 144: 175, # '\x90' + 145: 176, # '\x91' + 146: 177, # '\x92' + 147: 178, # '\x93' + 148: 179, # '\x94' + 149: 180, # '\x95' + 150: 181, # '\x96' + 151: 182, # '\x97' + 152: 183, # '\x98' + 153: 184, # '\x99' + 154: 185, # '\x9a' + 155: 186, # '\x9b' + 156: 187, # '\x9c' + 157: 188, # '\x9d' + 158: 189, # '\x9e' + 159: 190, # '\x9f' + 160: 191, # '\xa0' + 161: 192, # 'Ą' + 162: 193, # '˘' + 163: 194, # 'Ł' + 164: 195, # '¤' + 165: 196, # 'Ľ' + 166: 197, # 'Ś' + 167: 75, # '§' + 168: 198, # '¨' + 169: 199, # 'Š' + 170: 200, # 'Ş' + 171: 201, # 'Ť' + 172: 202, # 'Ź' + 173: 203, # '\xad' + 174: 204, # 'Ž' + 175: 205, # 'Ż' + 176: 79, # '°' + 177: 206, # 'ą' + 178: 207, # '˛' + 179: 208, # 'ł' + 180: 209, # '´' + 181: 210, # 'ľ' + 182: 211, # 'ś' + 183: 212, # 'ˇ' + 184: 213, # '¸' + 185: 214, # 'š' + 186: 215, # 'ş' + 187: 216, # 'ť' + 188: 217, # 'ź' + 189: 218, # '˝' + 190: 219, # 'ž' + 191: 220, # 'ż' + 192: 221, # 'Ŕ' + 193: 51, # 'Á' + 194: 81, # 'Â' + 195: 222, # 'Ă' + 196: 78, # 'Ä' + 197: 223, # 'Ĺ' + 198: 224, # 'Ć' + 199: 225, # 'Ç' + 200: 226, # 'Č' + 201: 44, # 'É' + 202: 227, # 'Ę' + 203: 228, # 'Ë' + 204: 229, # 'Ě' + 205: 61, # 'Í' + 206: 230, # 'Î' + 207: 231, # 'Ď' + 208: 232, # 'Đ' + 209: 233, # 'Ń' + 210: 234, # 'Ň' + 211: 58, # 'Ó' + 212: 235, # 'Ô' + 213: 66, # 'Ő' + 214: 59, # 'Ö' + 215: 236, # '×' + 216: 237, # 'Ř' + 217: 238, # 'Ů' + 218: 60, # 'Ú' + 219: 69, # 'Ű' + 220: 63, # 'Ü' + 221: 239, # 'Ý' + 222: 240, # 'Ţ' + 223: 241, # 'ß' + 224: 82, # 'ŕ' + 225: 14, # 'á' + 226: 74, # 'â' + 227: 242, # 'ă' + 228: 70, # 'ä' + 229: 80, # 'ĺ' + 230: 243, # 'ć' + 231: 72, # 'ç' + 232: 244, # 'č' + 233: 15, # 'é' + 234: 83, # 'ę' + 235: 77, # 'ë' + 236: 84, # 'ě' + 237: 30, # 'í' + 238: 76, # 'î' + 239: 85, # 'ď' + 240: 245, # 'đ' + 241: 246, # 'ń' + 242: 247, # 'ň' + 243: 25, # 'ó' + 244: 73, # 'ô' + 245: 42, # 'ő' + 246: 24, # 'ö' + 247: 248, # '÷' + 248: 249, # 'ř' + 249: 250, # 'ů' + 250: 31, # 'ú' + 251: 56, # 'ű' + 252: 29, # 'ü' + 253: 251, # 'ý' + 254: 252, # 'ţ' + 255: 253, # '˙' +} + +ISO_8859_2_HUNGARIAN_MODEL = SingleByteCharSetModel( + charset_name="ISO-8859-2", + language="Hungarian", + char_to_order_map=ISO_8859_2_HUNGARIAN_CHAR_TO_ORDER, + language_model=HUNGARIAN_LANG_MODEL, + typical_positive_ratio=0.947368, + keep_ascii_letters=True, + alphabet="ABCDEFGHIJKLMNOPRSTUVZabcdefghijklmnoprstuvzÁÉÍÓÖÚÜáéíóöúüŐőŰű", +) diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/langrussianmodel.py b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/langrussianmodel.py new file mode 100644 index 0000000..39a5388 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/langrussianmodel.py @@ -0,0 +1,5725 @@ +from pip._vendor.chardet.sbcharsetprober import SingleByteCharSetModel + +# 3: Positive +# 2: Likely +# 1: Unlikely +# 0: Negative + +RUSSIAN_LANG_MODEL = { + 37: { # 'А' + 37: 0, # 'А' + 44: 1, # 'Б' + 33: 1, # 'В' + 46: 1, # 'Г' + 41: 1, # 'Д' + 48: 1, # 'Е' + 56: 1, # 'Ж' + 51: 1, # 'З' + 42: 1, # 'И' + 60: 1, # 'Й' + 36: 1, # 'К' + 49: 1, # 'Л' + 38: 1, # 'М' + 31: 2, # 'Н' + 34: 1, # 'О' + 35: 1, # 'П' + 45: 1, # 'Р' + 32: 1, # 'С' + 40: 1, # 'Т' + 52: 1, # 'У' + 53: 1, # 'Ф' + 55: 1, # 'Х' + 58: 1, # 'Ц' + 50: 1, # 'Ч' + 57: 1, # 'Ш' + 63: 1, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 1, # 'Ю' + 43: 1, # 'Я' + 3: 1, # 'а' + 21: 2, # 'б' + 10: 2, # 'в' + 19: 2, # 'г' + 13: 2, # 'д' + 2: 0, # 'е' + 24: 1, # 'ж' + 20: 1, # 'з' + 4: 0, # 'и' + 23: 1, # 'й' + 11: 2, # 'к' + 8: 3, # 'л' + 12: 2, # 'м' + 5: 2, # 'н' + 1: 0, # 'о' + 15: 2, # 'п' + 9: 2, # 'р' + 7: 2, # 'с' + 6: 2, # 'т' + 14: 2, # 'у' + 39: 2, # 'ф' + 26: 2, # 'х' + 28: 0, # 'ц' + 22: 1, # 'ч' + 25: 2, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 1, # 'э' + 27: 0, # 'ю' + 16: 0, # 'я' + }, + 44: { # 'Б' + 37: 1, # 'А' + 44: 0, # 'Б' + 33: 1, # 'В' + 46: 1, # 'Г' + 41: 0, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 1, # 'Л' + 38: 1, # 'М' + 31: 1, # 'Н' + 34: 1, # 'О' + 35: 0, # 'П' + 45: 1, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 1, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 1, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 1, # 'Я' + 3: 2, # 'а' + 21: 0, # 'б' + 10: 0, # 'в' + 19: 0, # 'г' + 13: 1, # 'д' + 2: 3, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 2, # 'л' + 12: 0, # 'м' + 5: 0, # 'н' + 1: 3, # 'о' + 15: 0, # 'п' + 9: 2, # 'р' + 7: 0, # 'с' + 6: 0, # 'т' + 14: 2, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 2, # 'ы' + 17: 1, # 'ь' + 30: 2, # 'э' + 27: 1, # 'ю' + 16: 1, # 'я' + }, + 33: { # 'В' + 37: 2, # 'А' + 44: 0, # 'Б' + 33: 1, # 'В' + 46: 0, # 'Г' + 41: 1, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 1, # 'К' + 49: 1, # 'Л' + 38: 1, # 'М' + 31: 1, # 'Н' + 34: 1, # 'О' + 35: 1, # 'П' + 45: 1, # 'Р' + 32: 1, # 'С' + 40: 1, # 'Т' + 52: 1, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 1, # 'Ш' + 63: 0, # 'Щ' + 62: 1, # 'Ы' + 61: 1, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 1, # 'Я' + 3: 2, # 'а' + 21: 1, # 'б' + 10: 1, # 'в' + 19: 1, # 'г' + 13: 2, # 'д' + 2: 3, # 'е' + 24: 0, # 'ж' + 20: 2, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 1, # 'к' + 8: 2, # 'л' + 12: 2, # 'м' + 5: 2, # 'н' + 1: 3, # 'о' + 15: 2, # 'п' + 9: 2, # 'р' + 7: 3, # 'с' + 6: 2, # 'т' + 14: 2, # 'у' + 39: 0, # 'ф' + 26: 1, # 'х' + 28: 1, # 'ц' + 22: 2, # 'ч' + 25: 1, # 'ш' + 29: 0, # 'щ' + 54: 1, # 'ъ' + 18: 3, # 'ы' + 17: 1, # 'ь' + 30: 2, # 'э' + 27: 0, # 'ю' + 16: 1, # 'я' + }, + 46: { # 'Г' + 37: 1, # 'А' + 44: 1, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 1, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 1, # 'Л' + 38: 1, # 'М' + 31: 1, # 'Н' + 34: 1, # 'О' + 35: 1, # 'П' + 45: 1, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 1, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 2, # 'а' + 21: 0, # 'б' + 10: 1, # 'в' + 19: 0, # 'г' + 13: 2, # 'д' + 2: 2, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 2, # 'л' + 12: 1, # 'м' + 5: 1, # 'н' + 1: 3, # 'о' + 15: 0, # 'п' + 9: 2, # 'р' + 7: 0, # 'с' + 6: 0, # 'т' + 14: 2, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 1, # 'ь' + 30: 1, # 'э' + 27: 1, # 'ю' + 16: 0, # 'я' + }, + 41: { # 'Д' + 37: 1, # 'А' + 44: 0, # 'Б' + 33: 1, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 2, # 'Е' + 56: 1, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 1, # 'К' + 49: 1, # 'Л' + 38: 0, # 'М' + 31: 1, # 'Н' + 34: 1, # 'О' + 35: 0, # 'П' + 45: 1, # 'Р' + 32: 1, # 'С' + 40: 0, # 'Т' + 52: 1, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 1, # 'Ц' + 50: 1, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 1, # 'Ы' + 61: 1, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 1, # 'Я' + 3: 3, # 'а' + 21: 0, # 'б' + 10: 2, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 2, # 'е' + 24: 3, # 'ж' + 20: 1, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 2, # 'л' + 12: 1, # 'м' + 5: 1, # 'н' + 1: 3, # 'о' + 15: 0, # 'п' + 9: 2, # 'р' + 7: 0, # 'с' + 6: 0, # 'т' + 14: 2, # 'у' + 39: 0, # 'ф' + 26: 1, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 1, # 'ы' + 17: 1, # 'ь' + 30: 2, # 'э' + 27: 1, # 'ю' + 16: 1, # 'я' + }, + 48: { # 'Е' + 37: 1, # 'А' + 44: 1, # 'Б' + 33: 1, # 'В' + 46: 1, # 'Г' + 41: 1, # 'Д' + 48: 1, # 'Е' + 56: 1, # 'Ж' + 51: 1, # 'З' + 42: 1, # 'И' + 60: 1, # 'Й' + 36: 1, # 'К' + 49: 1, # 'Л' + 38: 1, # 'М' + 31: 2, # 'Н' + 34: 1, # 'О' + 35: 1, # 'П' + 45: 2, # 'Р' + 32: 2, # 'С' + 40: 1, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 1, # 'Х' + 58: 1, # 'Ц' + 50: 1, # 'Ч' + 57: 1, # 'Ш' + 63: 1, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 1, # 'Я' + 3: 0, # 'а' + 21: 0, # 'б' + 10: 2, # 'в' + 19: 2, # 'г' + 13: 2, # 'д' + 2: 2, # 'е' + 24: 1, # 'ж' + 20: 1, # 'з' + 4: 0, # 'и' + 23: 2, # 'й' + 11: 1, # 'к' + 8: 2, # 'л' + 12: 2, # 'м' + 5: 1, # 'н' + 1: 0, # 'о' + 15: 1, # 'п' + 9: 1, # 'р' + 7: 3, # 'с' + 6: 0, # 'т' + 14: 0, # 'у' + 39: 1, # 'ф' + 26: 1, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 1, # 'ш' + 29: 2, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 0, # 'э' + 27: 1, # 'ю' + 16: 0, # 'я' + }, + 56: { # 'Ж' + 37: 1, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 1, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 1, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 1, # 'Н' + 34: 1, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 1, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 2, # 'а' + 21: 1, # 'б' + 10: 0, # 'в' + 19: 1, # 'г' + 13: 1, # 'д' + 2: 2, # 'е' + 24: 1, # 'ж' + 20: 0, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 0, # 'л' + 12: 1, # 'м' + 5: 0, # 'н' + 1: 2, # 'о' + 15: 0, # 'п' + 9: 1, # 'р' + 7: 0, # 'с' + 6: 0, # 'т' + 14: 2, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 0, # 'э' + 27: 2, # 'ю' + 16: 0, # 'я' + }, + 51: { # 'З' + 37: 1, # 'А' + 44: 0, # 'Б' + 33: 1, # 'В' + 46: 1, # 'Г' + 41: 1, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 1, # 'Л' + 38: 1, # 'М' + 31: 1, # 'Н' + 34: 1, # 'О' + 35: 0, # 'П' + 45: 1, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 1, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 1, # 'Ы' + 61: 1, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 1, # 'б' + 10: 2, # 'в' + 19: 0, # 'г' + 13: 2, # 'д' + 2: 2, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 1, # 'л' + 12: 1, # 'м' + 5: 2, # 'н' + 1: 2, # 'о' + 15: 0, # 'п' + 9: 1, # 'р' + 7: 0, # 'с' + 6: 0, # 'т' + 14: 1, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 1, # 'ы' + 17: 0, # 'ь' + 30: 0, # 'э' + 27: 0, # 'ю' + 16: 1, # 'я' + }, + 42: { # 'И' + 37: 1, # 'А' + 44: 1, # 'Б' + 33: 1, # 'В' + 46: 1, # 'Г' + 41: 1, # 'Д' + 48: 2, # 'Е' + 56: 1, # 'Ж' + 51: 1, # 'З' + 42: 1, # 'И' + 60: 1, # 'Й' + 36: 1, # 'К' + 49: 1, # 'Л' + 38: 1, # 'М' + 31: 1, # 'Н' + 34: 1, # 'О' + 35: 1, # 'П' + 45: 1, # 'Р' + 32: 2, # 'С' + 40: 1, # 'Т' + 52: 0, # 'У' + 53: 1, # 'Ф' + 55: 1, # 'Х' + 58: 1, # 'Ц' + 50: 1, # 'Ч' + 57: 0, # 'Ш' + 63: 1, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 1, # 'Ю' + 43: 1, # 'Я' + 3: 1, # 'а' + 21: 2, # 'б' + 10: 2, # 'в' + 19: 2, # 'г' + 13: 2, # 'д' + 2: 2, # 'е' + 24: 0, # 'ж' + 20: 2, # 'з' + 4: 1, # 'и' + 23: 0, # 'й' + 11: 1, # 'к' + 8: 2, # 'л' + 12: 2, # 'м' + 5: 2, # 'н' + 1: 1, # 'о' + 15: 1, # 'п' + 9: 2, # 'р' + 7: 2, # 'с' + 6: 2, # 'т' + 14: 1, # 'у' + 39: 1, # 'ф' + 26: 2, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 1, # 'ш' + 29: 1, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 0, # 'э' + 27: 1, # 'ю' + 16: 0, # 'я' + }, + 60: { # 'Й' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 1, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 1, # 'К' + 49: 1, # 'Л' + 38: 0, # 'М' + 31: 1, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 1, # 'С' + 40: 1, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 1, # 'Х' + 58: 1, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 0, # 'а' + 21: 0, # 'б' + 10: 0, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 1, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 0, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 0, # 'л' + 12: 0, # 'м' + 5: 0, # 'н' + 1: 2, # 'о' + 15: 0, # 'п' + 9: 0, # 'р' + 7: 0, # 'с' + 6: 0, # 'т' + 14: 0, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 0, # 'э' + 27: 0, # 'ю' + 16: 0, # 'я' + }, + 36: { # 'К' + 37: 2, # 'А' + 44: 0, # 'Б' + 33: 1, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 1, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 1, # 'Л' + 38: 0, # 'М' + 31: 1, # 'Н' + 34: 2, # 'О' + 35: 1, # 'П' + 45: 1, # 'Р' + 32: 1, # 'С' + 40: 1, # 'Т' + 52: 1, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 1, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 0, # 'б' + 10: 1, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 2, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 2, # 'л' + 12: 0, # 'м' + 5: 1, # 'н' + 1: 3, # 'о' + 15: 0, # 'п' + 9: 2, # 'р' + 7: 2, # 'с' + 6: 2, # 'т' + 14: 2, # 'у' + 39: 0, # 'ф' + 26: 1, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 1, # 'ы' + 17: 1, # 'ь' + 30: 2, # 'э' + 27: 1, # 'ю' + 16: 0, # 'я' + }, + 49: { # 'Л' + 37: 2, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 1, # 'Г' + 41: 0, # 'Д' + 48: 1, # 'Е' + 56: 1, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 1, # 'К' + 49: 1, # 'Л' + 38: 1, # 'М' + 31: 0, # 'Н' + 34: 1, # 'О' + 35: 1, # 'П' + 45: 0, # 'Р' + 32: 1, # 'С' + 40: 1, # 'Т' + 52: 1, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 1, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 1, # 'Ы' + 61: 1, # 'Ь' + 47: 0, # 'Э' + 59: 1, # 'Ю' + 43: 1, # 'Я' + 3: 2, # 'а' + 21: 0, # 'б' + 10: 0, # 'в' + 19: 1, # 'г' + 13: 0, # 'д' + 2: 2, # 'е' + 24: 1, # 'ж' + 20: 0, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 1, # 'л' + 12: 0, # 'м' + 5: 1, # 'н' + 1: 2, # 'о' + 15: 0, # 'п' + 9: 0, # 'р' + 7: 0, # 'с' + 6: 0, # 'т' + 14: 2, # 'у' + 39: 0, # 'ф' + 26: 1, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 1, # 'ы' + 17: 1, # 'ь' + 30: 2, # 'э' + 27: 2, # 'ю' + 16: 1, # 'я' + }, + 38: { # 'М' + 37: 1, # 'А' + 44: 1, # 'Б' + 33: 1, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 1, # 'К' + 49: 1, # 'Л' + 38: 1, # 'М' + 31: 1, # 'Н' + 34: 1, # 'О' + 35: 1, # 'П' + 45: 1, # 'Р' + 32: 1, # 'С' + 40: 1, # 'Т' + 52: 1, # 'У' + 53: 1, # 'Ф' + 55: 1, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 1, # 'Ы' + 61: 0, # 'Ь' + 47: 1, # 'Э' + 59: 0, # 'Ю' + 43: 1, # 'Я' + 3: 3, # 'а' + 21: 0, # 'б' + 10: 0, # 'в' + 19: 1, # 'г' + 13: 0, # 'д' + 2: 2, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 1, # 'л' + 12: 1, # 'м' + 5: 2, # 'н' + 1: 3, # 'о' + 15: 0, # 'п' + 9: 1, # 'р' + 7: 1, # 'с' + 6: 0, # 'т' + 14: 2, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 3, # 'ы' + 17: 1, # 'ь' + 30: 2, # 'э' + 27: 1, # 'ю' + 16: 1, # 'я' + }, + 31: { # 'Н' + 37: 2, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 1, # 'Г' + 41: 1, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 1, # 'З' + 42: 2, # 'И' + 60: 0, # 'Й' + 36: 1, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 1, # 'Н' + 34: 1, # 'О' + 35: 0, # 'П' + 45: 1, # 'Р' + 32: 1, # 'С' + 40: 1, # 'Т' + 52: 1, # 'У' + 53: 1, # 'Ф' + 55: 1, # 'Х' + 58: 1, # 'Ц' + 50: 1, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 1, # 'Ы' + 61: 1, # 'Ь' + 47: 1, # 'Э' + 59: 0, # 'Ю' + 43: 1, # 'Я' + 3: 3, # 'а' + 21: 0, # 'б' + 10: 0, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 3, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 0, # 'л' + 12: 0, # 'м' + 5: 0, # 'н' + 1: 3, # 'о' + 15: 0, # 'п' + 9: 1, # 'р' + 7: 0, # 'с' + 6: 0, # 'т' + 14: 3, # 'у' + 39: 0, # 'ф' + 26: 1, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 1, # 'ы' + 17: 2, # 'ь' + 30: 1, # 'э' + 27: 1, # 'ю' + 16: 1, # 'я' + }, + 34: { # 'О' + 37: 0, # 'А' + 44: 1, # 'Б' + 33: 1, # 'В' + 46: 1, # 'Г' + 41: 2, # 'Д' + 48: 1, # 'Е' + 56: 1, # 'Ж' + 51: 1, # 'З' + 42: 1, # 'И' + 60: 1, # 'Й' + 36: 1, # 'К' + 49: 2, # 'Л' + 38: 1, # 'М' + 31: 2, # 'Н' + 34: 1, # 'О' + 35: 1, # 'П' + 45: 2, # 'Р' + 32: 1, # 'С' + 40: 1, # 'Т' + 52: 1, # 'У' + 53: 1, # 'Ф' + 55: 1, # 'Х' + 58: 0, # 'Ц' + 50: 1, # 'Ч' + 57: 1, # 'Ш' + 63: 1, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 1, # 'Я' + 3: 1, # 'а' + 21: 2, # 'б' + 10: 1, # 'в' + 19: 2, # 'г' + 13: 2, # 'д' + 2: 0, # 'е' + 24: 1, # 'ж' + 20: 1, # 'з' + 4: 0, # 'и' + 23: 1, # 'й' + 11: 2, # 'к' + 8: 2, # 'л' + 12: 1, # 'м' + 5: 3, # 'н' + 1: 0, # 'о' + 15: 2, # 'п' + 9: 2, # 'р' + 7: 2, # 'с' + 6: 2, # 'т' + 14: 1, # 'у' + 39: 1, # 'ф' + 26: 2, # 'х' + 28: 1, # 'ц' + 22: 2, # 'ч' + 25: 2, # 'ш' + 29: 1, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 0, # 'э' + 27: 0, # 'ю' + 16: 0, # 'я' + }, + 35: { # 'П' + 37: 1, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 1, # 'Л' + 38: 0, # 'М' + 31: 1, # 'Н' + 34: 1, # 'О' + 35: 1, # 'П' + 45: 2, # 'Р' + 32: 1, # 'С' + 40: 1, # 'Т' + 52: 1, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 1, # 'Ы' + 61: 1, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 1, # 'Я' + 3: 2, # 'а' + 21: 0, # 'б' + 10: 0, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 2, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 2, # 'л' + 12: 0, # 'м' + 5: 1, # 'н' + 1: 3, # 'о' + 15: 0, # 'п' + 9: 3, # 'р' + 7: 1, # 'с' + 6: 1, # 'т' + 14: 2, # 'у' + 39: 1, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 1, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 1, # 'ы' + 17: 2, # 'ь' + 30: 1, # 'э' + 27: 0, # 'ю' + 16: 2, # 'я' + }, + 45: { # 'Р' + 37: 2, # 'А' + 44: 1, # 'Б' + 33: 1, # 'В' + 46: 1, # 'Г' + 41: 1, # 'Д' + 48: 2, # 'Е' + 56: 1, # 'Ж' + 51: 0, # 'З' + 42: 2, # 'И' + 60: 0, # 'Й' + 36: 1, # 'К' + 49: 1, # 'Л' + 38: 1, # 'М' + 31: 1, # 'Н' + 34: 2, # 'О' + 35: 0, # 'П' + 45: 1, # 'Р' + 32: 1, # 'С' + 40: 1, # 'Т' + 52: 1, # 'У' + 53: 0, # 'Ф' + 55: 1, # 'Х' + 58: 1, # 'Ц' + 50: 1, # 'Ч' + 57: 1, # 'Ш' + 63: 0, # 'Щ' + 62: 1, # 'Ы' + 61: 1, # 'Ь' + 47: 1, # 'Э' + 59: 1, # 'Ю' + 43: 1, # 'Я' + 3: 3, # 'а' + 21: 0, # 'б' + 10: 1, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 2, # 'е' + 24: 1, # 'ж' + 20: 0, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 0, # 'л' + 12: 0, # 'м' + 5: 0, # 'н' + 1: 3, # 'о' + 15: 0, # 'п' + 9: 1, # 'р' + 7: 0, # 'с' + 6: 0, # 'т' + 14: 2, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 2, # 'ы' + 17: 0, # 'ь' + 30: 1, # 'э' + 27: 1, # 'ю' + 16: 2, # 'я' + }, + 32: { # 'С' + 37: 1, # 'А' + 44: 1, # 'Б' + 33: 1, # 'В' + 46: 1, # 'Г' + 41: 1, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 1, # 'К' + 49: 1, # 'Л' + 38: 1, # 'М' + 31: 1, # 'Н' + 34: 1, # 'О' + 35: 1, # 'П' + 45: 1, # 'Р' + 32: 1, # 'С' + 40: 2, # 'Т' + 52: 1, # 'У' + 53: 0, # 'Ф' + 55: 1, # 'Х' + 58: 1, # 'Ц' + 50: 1, # 'Ч' + 57: 1, # 'Ш' + 63: 0, # 'Щ' + 62: 1, # 'Ы' + 61: 1, # 'Ь' + 47: 1, # 'Э' + 59: 1, # 'Ю' + 43: 1, # 'Я' + 3: 2, # 'а' + 21: 1, # 'б' + 10: 2, # 'в' + 19: 1, # 'г' + 13: 2, # 'д' + 2: 3, # 'е' + 24: 1, # 'ж' + 20: 1, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 2, # 'к' + 8: 2, # 'л' + 12: 2, # 'м' + 5: 2, # 'н' + 1: 2, # 'о' + 15: 2, # 'п' + 9: 2, # 'р' + 7: 1, # 'с' + 6: 3, # 'т' + 14: 2, # 'у' + 39: 1, # 'ф' + 26: 1, # 'х' + 28: 1, # 'ц' + 22: 1, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 1, # 'ъ' + 18: 1, # 'ы' + 17: 1, # 'ь' + 30: 2, # 'э' + 27: 1, # 'ю' + 16: 1, # 'я' + }, + 40: { # 'Т' + 37: 1, # 'А' + 44: 0, # 'Б' + 33: 1, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 1, # 'К' + 49: 1, # 'Л' + 38: 1, # 'М' + 31: 1, # 'Н' + 34: 2, # 'О' + 35: 0, # 'П' + 45: 1, # 'Р' + 32: 1, # 'С' + 40: 1, # 'Т' + 52: 1, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 1, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 1, # 'Ы' + 61: 1, # 'Ь' + 47: 1, # 'Э' + 59: 1, # 'Ю' + 43: 1, # 'Я' + 3: 3, # 'а' + 21: 1, # 'б' + 10: 2, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 3, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 1, # 'к' + 8: 1, # 'л' + 12: 0, # 'м' + 5: 0, # 'н' + 1: 3, # 'о' + 15: 0, # 'п' + 9: 2, # 'р' + 7: 1, # 'с' + 6: 0, # 'т' + 14: 2, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 1, # 'щ' + 54: 0, # 'ъ' + 18: 3, # 'ы' + 17: 1, # 'ь' + 30: 2, # 'э' + 27: 1, # 'ю' + 16: 1, # 'я' + }, + 52: { # 'У' + 37: 1, # 'А' + 44: 1, # 'Б' + 33: 1, # 'В' + 46: 1, # 'Г' + 41: 1, # 'Д' + 48: 1, # 'Е' + 56: 1, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 1, # 'Й' + 36: 1, # 'К' + 49: 1, # 'Л' + 38: 1, # 'М' + 31: 1, # 'Н' + 34: 1, # 'О' + 35: 1, # 'П' + 45: 1, # 'Р' + 32: 1, # 'С' + 40: 1, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 1, # 'Х' + 58: 0, # 'Ц' + 50: 1, # 'Ч' + 57: 1, # 'Ш' + 63: 1, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 1, # 'Ю' + 43: 0, # 'Я' + 3: 1, # 'а' + 21: 2, # 'б' + 10: 2, # 'в' + 19: 1, # 'г' + 13: 2, # 'д' + 2: 1, # 'е' + 24: 2, # 'ж' + 20: 2, # 'з' + 4: 2, # 'и' + 23: 1, # 'й' + 11: 1, # 'к' + 8: 2, # 'л' + 12: 2, # 'м' + 5: 1, # 'н' + 1: 2, # 'о' + 15: 1, # 'п' + 9: 2, # 'р' + 7: 2, # 'с' + 6: 2, # 'т' + 14: 0, # 'у' + 39: 1, # 'ф' + 26: 1, # 'х' + 28: 1, # 'ц' + 22: 2, # 'ч' + 25: 1, # 'ш' + 29: 1, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 2, # 'э' + 27: 1, # 'ю' + 16: 0, # 'я' + }, + 53: { # 'Ф' + 37: 1, # 'А' + 44: 1, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 1, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 1, # 'О' + 35: 0, # 'П' + 45: 1, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 1, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 2, # 'а' + 21: 0, # 'б' + 10: 0, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 2, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 2, # 'л' + 12: 0, # 'м' + 5: 0, # 'н' + 1: 2, # 'о' + 15: 0, # 'п' + 9: 2, # 'р' + 7: 0, # 'с' + 6: 1, # 'т' + 14: 2, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 1, # 'ь' + 30: 2, # 'э' + 27: 0, # 'ю' + 16: 0, # 'я' + }, + 55: { # 'Х' + 37: 1, # 'А' + 44: 0, # 'Б' + 33: 1, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 1, # 'Л' + 38: 1, # 'М' + 31: 1, # 'Н' + 34: 1, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 2, # 'а' + 21: 0, # 'б' + 10: 2, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 2, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 2, # 'л' + 12: 1, # 'м' + 5: 0, # 'н' + 1: 2, # 'о' + 15: 0, # 'п' + 9: 2, # 'р' + 7: 0, # 'с' + 6: 0, # 'т' + 14: 1, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 1, # 'ь' + 30: 1, # 'э' + 27: 0, # 'ю' + 16: 0, # 'я' + }, + 58: { # 'Ц' + 37: 1, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 1, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 1, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 1, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 1, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 1, # 'а' + 21: 0, # 'б' + 10: 1, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 2, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 0, # 'л' + 12: 0, # 'м' + 5: 0, # 'н' + 1: 0, # 'о' + 15: 0, # 'п' + 9: 0, # 'р' + 7: 0, # 'с' + 6: 0, # 'т' + 14: 1, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 1, # 'ы' + 17: 0, # 'ь' + 30: 0, # 'э' + 27: 1, # 'ю' + 16: 0, # 'я' + }, + 50: { # 'Ч' + 37: 1, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 1, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 1, # 'Н' + 34: 0, # 'О' + 35: 1, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 1, # 'Т' + 52: 1, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 1, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 2, # 'а' + 21: 0, # 'б' + 10: 0, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 2, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 1, # 'л' + 12: 0, # 'м' + 5: 0, # 'н' + 1: 1, # 'о' + 15: 0, # 'п' + 9: 1, # 'р' + 7: 0, # 'с' + 6: 3, # 'т' + 14: 2, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 1, # 'ь' + 30: 0, # 'э' + 27: 0, # 'ю' + 16: 0, # 'я' + }, + 57: { # 'Ш' + 37: 1, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 1, # 'К' + 49: 1, # 'Л' + 38: 0, # 'М' + 31: 1, # 'Н' + 34: 1, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 1, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 2, # 'а' + 21: 0, # 'б' + 10: 1, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 2, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 1, # 'и' + 23: 0, # 'й' + 11: 1, # 'к' + 8: 2, # 'л' + 12: 1, # 'м' + 5: 1, # 'н' + 1: 2, # 'о' + 15: 2, # 'п' + 9: 1, # 'р' + 7: 0, # 'с' + 6: 2, # 'т' + 14: 2, # 'у' + 39: 0, # 'ф' + 26: 1, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 1, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 1, # 'э' + 27: 0, # 'ю' + 16: 0, # 'я' + }, + 63: { # 'Щ' + 37: 1, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 1, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 1, # 'а' + 21: 0, # 'б' + 10: 0, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 1, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 1, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 0, # 'л' + 12: 0, # 'м' + 5: 0, # 'н' + 1: 1, # 'о' + 15: 0, # 'п' + 9: 0, # 'р' + 7: 0, # 'с' + 6: 0, # 'т' + 14: 1, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 0, # 'э' + 27: 0, # 'ю' + 16: 0, # 'я' + }, + 62: { # 'Ы' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 1, # 'В' + 46: 1, # 'Г' + 41: 0, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 1, # 'Й' + 36: 1, # 'К' + 49: 1, # 'Л' + 38: 1, # 'М' + 31: 1, # 'Н' + 34: 0, # 'О' + 35: 1, # 'П' + 45: 1, # 'Р' + 32: 1, # 'С' + 40: 1, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 1, # 'Х' + 58: 1, # 'Ц' + 50: 0, # 'Ч' + 57: 1, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 0, # 'а' + 21: 0, # 'б' + 10: 0, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 0, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 0, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 0, # 'л' + 12: 0, # 'м' + 5: 0, # 'н' + 1: 0, # 'о' + 15: 0, # 'п' + 9: 0, # 'р' + 7: 0, # 'с' + 6: 0, # 'т' + 14: 0, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 0, # 'э' + 27: 0, # 'ю' + 16: 0, # 'я' + }, + 61: { # 'Ь' + 37: 0, # 'А' + 44: 1, # 'Б' + 33: 1, # 'В' + 46: 0, # 'Г' + 41: 1, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 1, # 'К' + 49: 0, # 'Л' + 38: 1, # 'М' + 31: 1, # 'Н' + 34: 1, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 1, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 1, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 1, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 1, # 'Ю' + 43: 1, # 'Я' + 3: 0, # 'а' + 21: 0, # 'б' + 10: 0, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 0, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 0, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 0, # 'л' + 12: 0, # 'м' + 5: 0, # 'н' + 1: 0, # 'о' + 15: 0, # 'п' + 9: 0, # 'р' + 7: 0, # 'с' + 6: 0, # 'т' + 14: 0, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 0, # 'э' + 27: 0, # 'ю' + 16: 0, # 'я' + }, + 47: { # 'Э' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 1, # 'В' + 46: 0, # 'Г' + 41: 1, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 1, # 'Й' + 36: 1, # 'К' + 49: 1, # 'Л' + 38: 1, # 'М' + 31: 1, # 'Н' + 34: 0, # 'О' + 35: 1, # 'П' + 45: 1, # 'Р' + 32: 1, # 'С' + 40: 1, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 1, # 'а' + 21: 1, # 'б' + 10: 2, # 'в' + 19: 1, # 'г' + 13: 2, # 'д' + 2: 0, # 'е' + 24: 1, # 'ж' + 20: 0, # 'з' + 4: 0, # 'и' + 23: 2, # 'й' + 11: 2, # 'к' + 8: 2, # 'л' + 12: 2, # 'м' + 5: 2, # 'н' + 1: 0, # 'о' + 15: 1, # 'п' + 9: 2, # 'р' + 7: 1, # 'с' + 6: 3, # 'т' + 14: 1, # 'у' + 39: 1, # 'ф' + 26: 1, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 1, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 0, # 'э' + 27: 0, # 'ю' + 16: 0, # 'я' + }, + 59: { # 'Ю' + 37: 1, # 'А' + 44: 1, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 1, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 1, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 1, # 'Р' + 32: 0, # 'С' + 40: 1, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 1, # 'Ч' + 57: 0, # 'Ш' + 63: 1, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 0, # 'а' + 21: 1, # 'б' + 10: 0, # 'в' + 19: 1, # 'г' + 13: 1, # 'д' + 2: 0, # 'е' + 24: 1, # 'ж' + 20: 0, # 'з' + 4: 0, # 'и' + 23: 0, # 'й' + 11: 1, # 'к' + 8: 2, # 'л' + 12: 1, # 'м' + 5: 2, # 'н' + 1: 0, # 'о' + 15: 1, # 'п' + 9: 1, # 'р' + 7: 1, # 'с' + 6: 0, # 'т' + 14: 0, # 'у' + 39: 0, # 'ф' + 26: 1, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 0, # 'э' + 27: 0, # 'ю' + 16: 0, # 'я' + }, + 43: { # 'Я' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 1, # 'В' + 46: 1, # 'Г' + 41: 0, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 1, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 1, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 1, # 'С' + 40: 1, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 1, # 'Х' + 58: 0, # 'Ц' + 50: 1, # 'Ч' + 57: 0, # 'Ш' + 63: 1, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 1, # 'Ю' + 43: 1, # 'Я' + 3: 0, # 'а' + 21: 1, # 'б' + 10: 1, # 'в' + 19: 1, # 'г' + 13: 1, # 'д' + 2: 0, # 'е' + 24: 0, # 'ж' + 20: 1, # 'з' + 4: 0, # 'и' + 23: 1, # 'й' + 11: 1, # 'к' + 8: 1, # 'л' + 12: 1, # 'м' + 5: 2, # 'н' + 1: 0, # 'о' + 15: 1, # 'п' + 9: 1, # 'р' + 7: 1, # 'с' + 6: 0, # 'т' + 14: 0, # 'у' + 39: 0, # 'ф' + 26: 1, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 1, # 'ш' + 29: 1, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 0, # 'э' + 27: 0, # 'ю' + 16: 0, # 'я' + }, + 3: { # 'а' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 1, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 2, # 'а' + 21: 3, # 'б' + 10: 3, # 'в' + 19: 3, # 'г' + 13: 3, # 'д' + 2: 3, # 'е' + 24: 3, # 'ж' + 20: 3, # 'з' + 4: 3, # 'и' + 23: 3, # 'й' + 11: 3, # 'к' + 8: 3, # 'л' + 12: 3, # 'м' + 5: 3, # 'н' + 1: 2, # 'о' + 15: 3, # 'п' + 9: 3, # 'р' + 7: 3, # 'с' + 6: 3, # 'т' + 14: 3, # 'у' + 39: 2, # 'ф' + 26: 3, # 'х' + 28: 3, # 'ц' + 22: 3, # 'ч' + 25: 3, # 'ш' + 29: 3, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 2, # 'э' + 27: 3, # 'ю' + 16: 3, # 'я' + }, + 21: { # 'б' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 1, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 2, # 'б' + 10: 2, # 'в' + 19: 1, # 'г' + 13: 2, # 'д' + 2: 3, # 'е' + 24: 2, # 'ж' + 20: 1, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 2, # 'к' + 8: 3, # 'л' + 12: 2, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 1, # 'п' + 9: 3, # 'р' + 7: 3, # 'с' + 6: 2, # 'т' + 14: 3, # 'у' + 39: 0, # 'ф' + 26: 2, # 'х' + 28: 1, # 'ц' + 22: 1, # 'ч' + 25: 2, # 'ш' + 29: 3, # 'щ' + 54: 2, # 'ъ' + 18: 3, # 'ы' + 17: 2, # 'ь' + 30: 1, # 'э' + 27: 2, # 'ю' + 16: 3, # 'я' + }, + 10: { # 'в' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 2, # 'б' + 10: 2, # 'в' + 19: 2, # 'г' + 13: 3, # 'д' + 2: 3, # 'е' + 24: 1, # 'ж' + 20: 3, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 3, # 'к' + 8: 3, # 'л' + 12: 2, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 3, # 'п' + 9: 3, # 'р' + 7: 3, # 'с' + 6: 3, # 'т' + 14: 3, # 'у' + 39: 1, # 'ф' + 26: 2, # 'х' + 28: 2, # 'ц' + 22: 2, # 'ч' + 25: 3, # 'ш' + 29: 2, # 'щ' + 54: 2, # 'ъ' + 18: 3, # 'ы' + 17: 3, # 'ь' + 30: 1, # 'э' + 27: 1, # 'ю' + 16: 3, # 'я' + }, + 19: { # 'г' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 1, # 'б' + 10: 2, # 'в' + 19: 1, # 'г' + 13: 3, # 'д' + 2: 3, # 'е' + 24: 0, # 'ж' + 20: 1, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 2, # 'к' + 8: 3, # 'л' + 12: 2, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 0, # 'п' + 9: 3, # 'р' + 7: 2, # 'с' + 6: 2, # 'т' + 14: 3, # 'у' + 39: 1, # 'ф' + 26: 1, # 'х' + 28: 1, # 'ц' + 22: 2, # 'ч' + 25: 1, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 1, # 'ы' + 17: 1, # 'ь' + 30: 1, # 'э' + 27: 1, # 'ю' + 16: 0, # 'я' + }, + 13: { # 'д' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 2, # 'б' + 10: 3, # 'в' + 19: 2, # 'г' + 13: 2, # 'д' + 2: 3, # 'е' + 24: 2, # 'ж' + 20: 2, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 3, # 'к' + 8: 3, # 'л' + 12: 2, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 2, # 'п' + 9: 3, # 'р' + 7: 3, # 'с' + 6: 3, # 'т' + 14: 3, # 'у' + 39: 1, # 'ф' + 26: 2, # 'х' + 28: 3, # 'ц' + 22: 2, # 'ч' + 25: 2, # 'ш' + 29: 1, # 'щ' + 54: 2, # 'ъ' + 18: 3, # 'ы' + 17: 3, # 'ь' + 30: 1, # 'э' + 27: 2, # 'ю' + 16: 3, # 'я' + }, + 2: { # 'е' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 2, # 'а' + 21: 3, # 'б' + 10: 3, # 'в' + 19: 3, # 'г' + 13: 3, # 'д' + 2: 3, # 'е' + 24: 3, # 'ж' + 20: 3, # 'з' + 4: 2, # 'и' + 23: 3, # 'й' + 11: 3, # 'к' + 8: 3, # 'л' + 12: 3, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 3, # 'п' + 9: 3, # 'р' + 7: 3, # 'с' + 6: 3, # 'т' + 14: 2, # 'у' + 39: 2, # 'ф' + 26: 3, # 'х' + 28: 3, # 'ц' + 22: 3, # 'ч' + 25: 3, # 'ш' + 29: 3, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 1, # 'э' + 27: 2, # 'ю' + 16: 3, # 'я' + }, + 24: { # 'ж' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 2, # 'б' + 10: 1, # 'в' + 19: 2, # 'г' + 13: 3, # 'д' + 2: 3, # 'е' + 24: 2, # 'ж' + 20: 1, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 2, # 'к' + 8: 2, # 'л' + 12: 1, # 'м' + 5: 3, # 'н' + 1: 2, # 'о' + 15: 1, # 'п' + 9: 2, # 'р' + 7: 2, # 'с' + 6: 1, # 'т' + 14: 3, # 'у' + 39: 1, # 'ф' + 26: 0, # 'х' + 28: 1, # 'ц' + 22: 2, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 1, # 'ы' + 17: 2, # 'ь' + 30: 1, # 'э' + 27: 1, # 'ю' + 16: 1, # 'я' + }, + 20: { # 'з' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 3, # 'б' + 10: 3, # 'в' + 19: 3, # 'г' + 13: 3, # 'д' + 2: 3, # 'е' + 24: 2, # 'ж' + 20: 2, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 3, # 'к' + 8: 3, # 'л' + 12: 3, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 0, # 'п' + 9: 3, # 'р' + 7: 2, # 'с' + 6: 2, # 'т' + 14: 3, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 1, # 'ц' + 22: 2, # 'ч' + 25: 1, # 'ш' + 29: 0, # 'щ' + 54: 2, # 'ъ' + 18: 3, # 'ы' + 17: 2, # 'ь' + 30: 1, # 'э' + 27: 1, # 'ю' + 16: 3, # 'я' + }, + 4: { # 'и' + 37: 1, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 1, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 3, # 'б' + 10: 3, # 'в' + 19: 3, # 'г' + 13: 3, # 'д' + 2: 3, # 'е' + 24: 3, # 'ж' + 20: 3, # 'з' + 4: 3, # 'и' + 23: 3, # 'й' + 11: 3, # 'к' + 8: 3, # 'л' + 12: 3, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 3, # 'п' + 9: 3, # 'р' + 7: 3, # 'с' + 6: 3, # 'т' + 14: 2, # 'у' + 39: 2, # 'ф' + 26: 3, # 'х' + 28: 3, # 'ц' + 22: 3, # 'ч' + 25: 3, # 'ш' + 29: 3, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 2, # 'э' + 27: 3, # 'ю' + 16: 3, # 'я' + }, + 23: { # 'й' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 1, # 'а' + 21: 1, # 'б' + 10: 1, # 'в' + 19: 2, # 'г' + 13: 3, # 'д' + 2: 2, # 'е' + 24: 0, # 'ж' + 20: 2, # 'з' + 4: 1, # 'и' + 23: 0, # 'й' + 11: 2, # 'к' + 8: 2, # 'л' + 12: 2, # 'м' + 5: 3, # 'н' + 1: 2, # 'о' + 15: 1, # 'п' + 9: 2, # 'р' + 7: 3, # 'с' + 6: 3, # 'т' + 14: 1, # 'у' + 39: 2, # 'ф' + 26: 1, # 'х' + 28: 2, # 'ц' + 22: 3, # 'ч' + 25: 2, # 'ш' + 29: 1, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 1, # 'э' + 27: 1, # 'ю' + 16: 2, # 'я' + }, + 11: { # 'к' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 1, # 'б' + 10: 3, # 'в' + 19: 1, # 'г' + 13: 1, # 'д' + 2: 3, # 'е' + 24: 2, # 'ж' + 20: 2, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 2, # 'к' + 8: 3, # 'л' + 12: 1, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 0, # 'п' + 9: 3, # 'р' + 7: 3, # 'с' + 6: 3, # 'т' + 14: 3, # 'у' + 39: 1, # 'ф' + 26: 2, # 'х' + 28: 2, # 'ц' + 22: 1, # 'ч' + 25: 2, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 1, # 'ы' + 17: 1, # 'ь' + 30: 1, # 'э' + 27: 1, # 'ю' + 16: 1, # 'я' + }, + 8: { # 'л' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 2, # 'б' + 10: 2, # 'в' + 19: 3, # 'г' + 13: 2, # 'д' + 2: 3, # 'е' + 24: 3, # 'ж' + 20: 2, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 3, # 'к' + 8: 3, # 'л' + 12: 2, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 2, # 'п' + 9: 1, # 'р' + 7: 3, # 'с' + 6: 2, # 'т' + 14: 3, # 'у' + 39: 2, # 'ф' + 26: 2, # 'х' + 28: 1, # 'ц' + 22: 3, # 'ч' + 25: 2, # 'ш' + 29: 1, # 'щ' + 54: 0, # 'ъ' + 18: 3, # 'ы' + 17: 3, # 'ь' + 30: 1, # 'э' + 27: 3, # 'ю' + 16: 3, # 'я' + }, + 12: { # 'м' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 2, # 'б' + 10: 2, # 'в' + 19: 2, # 'г' + 13: 1, # 'д' + 2: 3, # 'е' + 24: 1, # 'ж' + 20: 1, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 2, # 'к' + 8: 3, # 'л' + 12: 2, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 2, # 'п' + 9: 2, # 'р' + 7: 3, # 'с' + 6: 2, # 'т' + 14: 3, # 'у' + 39: 2, # 'ф' + 26: 2, # 'х' + 28: 2, # 'ц' + 22: 2, # 'ч' + 25: 1, # 'ш' + 29: 1, # 'щ' + 54: 0, # 'ъ' + 18: 3, # 'ы' + 17: 2, # 'ь' + 30: 2, # 'э' + 27: 1, # 'ю' + 16: 3, # 'я' + }, + 5: { # 'н' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 2, # 'б' + 10: 2, # 'в' + 19: 3, # 'г' + 13: 3, # 'д' + 2: 3, # 'е' + 24: 2, # 'ж' + 20: 2, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 3, # 'к' + 8: 2, # 'л' + 12: 1, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 1, # 'п' + 9: 2, # 'р' + 7: 3, # 'с' + 6: 3, # 'т' + 14: 3, # 'у' + 39: 2, # 'ф' + 26: 2, # 'х' + 28: 3, # 'ц' + 22: 3, # 'ч' + 25: 2, # 'ш' + 29: 2, # 'щ' + 54: 1, # 'ъ' + 18: 3, # 'ы' + 17: 3, # 'ь' + 30: 1, # 'э' + 27: 3, # 'ю' + 16: 3, # 'я' + }, + 1: { # 'о' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 2, # 'а' + 21: 3, # 'б' + 10: 3, # 'в' + 19: 3, # 'г' + 13: 3, # 'д' + 2: 3, # 'е' + 24: 3, # 'ж' + 20: 3, # 'з' + 4: 3, # 'и' + 23: 3, # 'й' + 11: 3, # 'к' + 8: 3, # 'л' + 12: 3, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 3, # 'п' + 9: 3, # 'р' + 7: 3, # 'с' + 6: 3, # 'т' + 14: 2, # 'у' + 39: 2, # 'ф' + 26: 3, # 'х' + 28: 2, # 'ц' + 22: 3, # 'ч' + 25: 3, # 'ш' + 29: 3, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 2, # 'э' + 27: 3, # 'ю' + 16: 3, # 'я' + }, + 15: { # 'п' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 1, # 'б' + 10: 0, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 3, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 2, # 'к' + 8: 3, # 'л' + 12: 1, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 2, # 'п' + 9: 3, # 'р' + 7: 2, # 'с' + 6: 2, # 'т' + 14: 3, # 'у' + 39: 1, # 'ф' + 26: 0, # 'х' + 28: 2, # 'ц' + 22: 2, # 'ч' + 25: 1, # 'ш' + 29: 1, # 'щ' + 54: 0, # 'ъ' + 18: 3, # 'ы' + 17: 2, # 'ь' + 30: 1, # 'э' + 27: 1, # 'ю' + 16: 3, # 'я' + }, + 9: { # 'р' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 2, # 'б' + 10: 3, # 'в' + 19: 3, # 'г' + 13: 3, # 'д' + 2: 3, # 'е' + 24: 3, # 'ж' + 20: 2, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 3, # 'к' + 8: 2, # 'л' + 12: 3, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 2, # 'п' + 9: 2, # 'р' + 7: 3, # 'с' + 6: 3, # 'т' + 14: 3, # 'у' + 39: 2, # 'ф' + 26: 3, # 'х' + 28: 2, # 'ц' + 22: 2, # 'ч' + 25: 3, # 'ш' + 29: 2, # 'щ' + 54: 0, # 'ъ' + 18: 3, # 'ы' + 17: 3, # 'ь' + 30: 2, # 'э' + 27: 2, # 'ю' + 16: 3, # 'я' + }, + 7: { # 'с' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 1, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 2, # 'б' + 10: 3, # 'в' + 19: 2, # 'г' + 13: 3, # 'д' + 2: 3, # 'е' + 24: 2, # 'ж' + 20: 2, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 3, # 'к' + 8: 3, # 'л' + 12: 3, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 3, # 'п' + 9: 3, # 'р' + 7: 3, # 'с' + 6: 3, # 'т' + 14: 3, # 'у' + 39: 2, # 'ф' + 26: 3, # 'х' + 28: 2, # 'ц' + 22: 3, # 'ч' + 25: 2, # 'ш' + 29: 1, # 'щ' + 54: 2, # 'ъ' + 18: 3, # 'ы' + 17: 3, # 'ь' + 30: 2, # 'э' + 27: 3, # 'ю' + 16: 3, # 'я' + }, + 6: { # 'т' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 2, # 'б' + 10: 3, # 'в' + 19: 2, # 'г' + 13: 2, # 'д' + 2: 3, # 'е' + 24: 1, # 'ж' + 20: 1, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 3, # 'к' + 8: 3, # 'л' + 12: 2, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 2, # 'п' + 9: 3, # 'р' + 7: 3, # 'с' + 6: 2, # 'т' + 14: 3, # 'у' + 39: 2, # 'ф' + 26: 2, # 'х' + 28: 2, # 'ц' + 22: 2, # 'ч' + 25: 2, # 'ш' + 29: 2, # 'щ' + 54: 2, # 'ъ' + 18: 3, # 'ы' + 17: 3, # 'ь' + 30: 2, # 'э' + 27: 2, # 'ю' + 16: 3, # 'я' + }, + 14: { # 'у' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 2, # 'а' + 21: 3, # 'б' + 10: 3, # 'в' + 19: 3, # 'г' + 13: 3, # 'д' + 2: 3, # 'е' + 24: 3, # 'ж' + 20: 3, # 'з' + 4: 2, # 'и' + 23: 2, # 'й' + 11: 3, # 'к' + 8: 3, # 'л' + 12: 3, # 'м' + 5: 3, # 'н' + 1: 2, # 'о' + 15: 3, # 'п' + 9: 3, # 'р' + 7: 3, # 'с' + 6: 3, # 'т' + 14: 1, # 'у' + 39: 2, # 'ф' + 26: 3, # 'х' + 28: 2, # 'ц' + 22: 3, # 'ч' + 25: 3, # 'ш' + 29: 3, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 2, # 'э' + 27: 3, # 'ю' + 16: 2, # 'я' + }, + 39: { # 'ф' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 1, # 'б' + 10: 0, # 'в' + 19: 1, # 'г' + 13: 0, # 'д' + 2: 3, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 1, # 'к' + 8: 2, # 'л' + 12: 1, # 'м' + 5: 1, # 'н' + 1: 3, # 'о' + 15: 1, # 'п' + 9: 2, # 'р' + 7: 2, # 'с' + 6: 2, # 'т' + 14: 2, # 'у' + 39: 2, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 1, # 'ч' + 25: 1, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 2, # 'ы' + 17: 1, # 'ь' + 30: 2, # 'э' + 27: 1, # 'ю' + 16: 1, # 'я' + }, + 26: { # 'х' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 0, # 'б' + 10: 3, # 'в' + 19: 1, # 'г' + 13: 1, # 'д' + 2: 2, # 'е' + 24: 0, # 'ж' + 20: 1, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 1, # 'к' + 8: 2, # 'л' + 12: 2, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 1, # 'п' + 9: 3, # 'р' + 7: 2, # 'с' + 6: 2, # 'т' + 14: 2, # 'у' + 39: 1, # 'ф' + 26: 1, # 'х' + 28: 1, # 'ц' + 22: 1, # 'ч' + 25: 2, # 'ш' + 29: 0, # 'щ' + 54: 1, # 'ъ' + 18: 0, # 'ы' + 17: 1, # 'ь' + 30: 1, # 'э' + 27: 1, # 'ю' + 16: 0, # 'я' + }, + 28: { # 'ц' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 1, # 'б' + 10: 2, # 'в' + 19: 1, # 'г' + 13: 1, # 'д' + 2: 3, # 'е' + 24: 0, # 'ж' + 20: 1, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 2, # 'к' + 8: 1, # 'л' + 12: 1, # 'м' + 5: 1, # 'н' + 1: 3, # 'о' + 15: 0, # 'п' + 9: 1, # 'р' + 7: 0, # 'с' + 6: 1, # 'т' + 14: 3, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 1, # 'ц' + 22: 0, # 'ч' + 25: 1, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 3, # 'ы' + 17: 1, # 'ь' + 30: 0, # 'э' + 27: 1, # 'ю' + 16: 0, # 'я' + }, + 22: { # 'ч' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 1, # 'б' + 10: 1, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 3, # 'е' + 24: 1, # 'ж' + 20: 0, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 3, # 'к' + 8: 2, # 'л' + 12: 1, # 'м' + 5: 3, # 'н' + 1: 2, # 'о' + 15: 0, # 'п' + 9: 2, # 'р' + 7: 1, # 'с' + 6: 3, # 'т' + 14: 3, # 'у' + 39: 1, # 'ф' + 26: 1, # 'х' + 28: 0, # 'ц' + 22: 1, # 'ч' + 25: 2, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 3, # 'ь' + 30: 0, # 'э' + 27: 0, # 'ю' + 16: 0, # 'я' + }, + 25: { # 'ш' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 1, # 'б' + 10: 2, # 'в' + 19: 1, # 'г' + 13: 0, # 'д' + 2: 3, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 3, # 'к' + 8: 3, # 'л' + 12: 2, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 2, # 'п' + 9: 2, # 'р' + 7: 1, # 'с' + 6: 2, # 'т' + 14: 3, # 'у' + 39: 2, # 'ф' + 26: 1, # 'х' + 28: 1, # 'ц' + 22: 1, # 'ч' + 25: 1, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 3, # 'ь' + 30: 1, # 'э' + 27: 1, # 'ю' + 16: 0, # 'я' + }, + 29: { # 'щ' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 0, # 'б' + 10: 1, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 3, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 0, # 'л' + 12: 1, # 'м' + 5: 2, # 'н' + 1: 1, # 'о' + 15: 0, # 'п' + 9: 2, # 'р' + 7: 0, # 'с' + 6: 0, # 'т' + 14: 2, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 2, # 'ь' + 30: 0, # 'э' + 27: 0, # 'ю' + 16: 0, # 'я' + }, + 54: { # 'ъ' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 0, # 'а' + 21: 0, # 'б' + 10: 0, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 2, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 0, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 0, # 'л' + 12: 0, # 'м' + 5: 0, # 'н' + 1: 0, # 'о' + 15: 0, # 'п' + 9: 0, # 'р' + 7: 0, # 'с' + 6: 0, # 'т' + 14: 0, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 0, # 'э' + 27: 1, # 'ю' + 16: 2, # 'я' + }, + 18: { # 'ы' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 0, # 'а' + 21: 3, # 'б' + 10: 3, # 'в' + 19: 2, # 'г' + 13: 2, # 'д' + 2: 3, # 'е' + 24: 2, # 'ж' + 20: 2, # 'з' + 4: 2, # 'и' + 23: 3, # 'й' + 11: 3, # 'к' + 8: 3, # 'л' + 12: 3, # 'м' + 5: 3, # 'н' + 1: 1, # 'о' + 15: 3, # 'п' + 9: 3, # 'р' + 7: 3, # 'с' + 6: 3, # 'т' + 14: 1, # 'у' + 39: 0, # 'ф' + 26: 3, # 'х' + 28: 2, # 'ц' + 22: 3, # 'ч' + 25: 3, # 'ш' + 29: 2, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 0, # 'э' + 27: 0, # 'ю' + 16: 2, # 'я' + }, + 17: { # 'ь' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 0, # 'а' + 21: 2, # 'б' + 10: 2, # 'в' + 19: 2, # 'г' + 13: 2, # 'д' + 2: 3, # 'е' + 24: 1, # 'ж' + 20: 3, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 3, # 'к' + 8: 0, # 'л' + 12: 3, # 'м' + 5: 3, # 'н' + 1: 2, # 'о' + 15: 2, # 'п' + 9: 1, # 'р' + 7: 3, # 'с' + 6: 2, # 'т' + 14: 0, # 'у' + 39: 2, # 'ф' + 26: 1, # 'х' + 28: 2, # 'ц' + 22: 2, # 'ч' + 25: 3, # 'ш' + 29: 2, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 1, # 'э' + 27: 3, # 'ю' + 16: 3, # 'я' + }, + 30: { # 'э' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 1, # 'М' + 31: 1, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 1, # 'Р' + 32: 1, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 1, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 0, # 'а' + 21: 1, # 'б' + 10: 1, # 'в' + 19: 1, # 'г' + 13: 2, # 'д' + 2: 1, # 'е' + 24: 0, # 'ж' + 20: 1, # 'з' + 4: 0, # 'и' + 23: 2, # 'й' + 11: 2, # 'к' + 8: 2, # 'л' + 12: 2, # 'м' + 5: 2, # 'н' + 1: 0, # 'о' + 15: 2, # 'п' + 9: 2, # 'р' + 7: 2, # 'с' + 6: 3, # 'т' + 14: 1, # 'у' + 39: 2, # 'ф' + 26: 1, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 1, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 1, # 'э' + 27: 1, # 'ю' + 16: 1, # 'я' + }, + 27: { # 'ю' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 2, # 'а' + 21: 3, # 'б' + 10: 1, # 'в' + 19: 2, # 'г' + 13: 3, # 'д' + 2: 1, # 'е' + 24: 2, # 'ж' + 20: 2, # 'з' + 4: 1, # 'и' + 23: 1, # 'й' + 11: 2, # 'к' + 8: 2, # 'л' + 12: 2, # 'м' + 5: 2, # 'н' + 1: 1, # 'о' + 15: 2, # 'п' + 9: 2, # 'р' + 7: 3, # 'с' + 6: 3, # 'т' + 14: 0, # 'у' + 39: 1, # 'ф' + 26: 2, # 'х' + 28: 2, # 'ц' + 22: 2, # 'ч' + 25: 2, # 'ш' + 29: 3, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 1, # 'э' + 27: 2, # 'ю' + 16: 1, # 'я' + }, + 16: { # 'я' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 0, # 'а' + 21: 2, # 'б' + 10: 3, # 'в' + 19: 2, # 'г' + 13: 3, # 'д' + 2: 3, # 'е' + 24: 3, # 'ж' + 20: 3, # 'з' + 4: 2, # 'и' + 23: 2, # 'й' + 11: 3, # 'к' + 8: 3, # 'л' + 12: 3, # 'м' + 5: 3, # 'н' + 1: 0, # 'о' + 15: 2, # 'п' + 9: 2, # 'р' + 7: 3, # 'с' + 6: 3, # 'т' + 14: 1, # 'у' + 39: 1, # 'ф' + 26: 3, # 'х' + 28: 2, # 'ц' + 22: 2, # 'ч' + 25: 2, # 'ш' + 29: 3, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 0, # 'э' + 27: 2, # 'ю' + 16: 2, # 'я' + }, +} + +# 255: Undefined characters that did not exist in training text +# 254: Carriage/Return +# 253: symbol (punctuation) that does not belong to word +# 252: 0 - 9 +# 251: Control characters + +# Character Mapping Table(s): +IBM866_RUSSIAN_CHAR_TO_ORDER = { + 0: 255, # '\x00' + 1: 255, # '\x01' + 2: 255, # '\x02' + 3: 255, # '\x03' + 4: 255, # '\x04' + 5: 255, # '\x05' + 6: 255, # '\x06' + 7: 255, # '\x07' + 8: 255, # '\x08' + 9: 255, # '\t' + 10: 254, # '\n' + 11: 255, # '\x0b' + 12: 255, # '\x0c' + 13: 254, # '\r' + 14: 255, # '\x0e' + 15: 255, # '\x0f' + 16: 255, # '\x10' + 17: 255, # '\x11' + 18: 255, # '\x12' + 19: 255, # '\x13' + 20: 255, # '\x14' + 21: 255, # '\x15' + 22: 255, # '\x16' + 23: 255, # '\x17' + 24: 255, # '\x18' + 25: 255, # '\x19' + 26: 255, # '\x1a' + 27: 255, # '\x1b' + 28: 255, # '\x1c' + 29: 255, # '\x1d' + 30: 255, # '\x1e' + 31: 255, # '\x1f' + 32: 253, # ' ' + 33: 253, # '!' + 34: 253, # '"' + 35: 253, # '#' + 36: 253, # '$' + 37: 253, # '%' + 38: 253, # '&' + 39: 253, # "'" + 40: 253, # '(' + 41: 253, # ')' + 42: 253, # '*' + 43: 253, # '+' + 44: 253, # ',' + 45: 253, # '-' + 46: 253, # '.' + 47: 253, # '/' + 48: 252, # '0' + 49: 252, # '1' + 50: 252, # '2' + 51: 252, # '3' + 52: 252, # '4' + 53: 252, # '5' + 54: 252, # '6' + 55: 252, # '7' + 56: 252, # '8' + 57: 252, # '9' + 58: 253, # ':' + 59: 253, # ';' + 60: 253, # '<' + 61: 253, # '=' + 62: 253, # '>' + 63: 253, # '?' + 64: 253, # '@' + 65: 142, # 'A' + 66: 143, # 'B' + 67: 144, # 'C' + 68: 145, # 'D' + 69: 146, # 'E' + 70: 147, # 'F' + 71: 148, # 'G' + 72: 149, # 'H' + 73: 150, # 'I' + 74: 151, # 'J' + 75: 152, # 'K' + 76: 74, # 'L' + 77: 153, # 'M' + 78: 75, # 'N' + 79: 154, # 'O' + 80: 155, # 'P' + 81: 156, # 'Q' + 82: 157, # 'R' + 83: 158, # 'S' + 84: 159, # 'T' + 85: 160, # 'U' + 86: 161, # 'V' + 87: 162, # 'W' + 88: 163, # 'X' + 89: 164, # 'Y' + 90: 165, # 'Z' + 91: 253, # '[' + 92: 253, # '\\' + 93: 253, # ']' + 94: 253, # '^' + 95: 253, # '_' + 96: 253, # '`' + 97: 71, # 'a' + 98: 172, # 'b' + 99: 66, # 'c' + 100: 173, # 'd' + 101: 65, # 'e' + 102: 174, # 'f' + 103: 76, # 'g' + 104: 175, # 'h' + 105: 64, # 'i' + 106: 176, # 'j' + 107: 177, # 'k' + 108: 77, # 'l' + 109: 72, # 'm' + 110: 178, # 'n' + 111: 69, # 'o' + 112: 67, # 'p' + 113: 179, # 'q' + 114: 78, # 'r' + 115: 73, # 's' + 116: 180, # 't' + 117: 181, # 'u' + 118: 79, # 'v' + 119: 182, # 'w' + 120: 183, # 'x' + 121: 184, # 'y' + 122: 185, # 'z' + 123: 253, # '{' + 124: 253, # '|' + 125: 253, # '}' + 126: 253, # '~' + 127: 253, # '\x7f' + 128: 37, # 'А' + 129: 44, # 'Б' + 130: 33, # 'В' + 131: 46, # 'Г' + 132: 41, # 'Д' + 133: 48, # 'Е' + 134: 56, # 'Ж' + 135: 51, # 'З' + 136: 42, # 'И' + 137: 60, # 'Й' + 138: 36, # 'К' + 139: 49, # 'Л' + 140: 38, # 'М' + 141: 31, # 'Н' + 142: 34, # 'О' + 143: 35, # 'П' + 144: 45, # 'Р' + 145: 32, # 'С' + 146: 40, # 'Т' + 147: 52, # 'У' + 148: 53, # 'Ф' + 149: 55, # 'Х' + 150: 58, # 'Ц' + 151: 50, # 'Ч' + 152: 57, # 'Ш' + 153: 63, # 'Щ' + 154: 70, # 'Ъ' + 155: 62, # 'Ы' + 156: 61, # 'Ь' + 157: 47, # 'Э' + 158: 59, # 'Ю' + 159: 43, # 'Я' + 160: 3, # 'а' + 161: 21, # 'б' + 162: 10, # 'в' + 163: 19, # 'г' + 164: 13, # 'д' + 165: 2, # 'е' + 166: 24, # 'ж' + 167: 20, # 'з' + 168: 4, # 'и' + 169: 23, # 'й' + 170: 11, # 'к' + 171: 8, # 'л' + 172: 12, # 'м' + 173: 5, # 'н' + 174: 1, # 'о' + 175: 15, # 'п' + 176: 191, # '░' + 177: 192, # '▒' + 178: 193, # '▓' + 179: 194, # '│' + 180: 195, # '┤' + 181: 196, # '╡' + 182: 197, # '╢' + 183: 198, # '╖' + 184: 199, # '╕' + 185: 200, # '╣' + 186: 201, # '║' + 187: 202, # '╗' + 188: 203, # '╝' + 189: 204, # '╜' + 190: 205, # '╛' + 191: 206, # '┐' + 192: 207, # '└' + 193: 208, # '┴' + 194: 209, # '┬' + 195: 210, # '├' + 196: 211, # '─' + 197: 212, # '┼' + 198: 213, # '╞' + 199: 214, # '╟' + 200: 215, # '╚' + 201: 216, # '╔' + 202: 217, # '╩' + 203: 218, # '╦' + 204: 219, # '╠' + 205: 220, # '═' + 206: 221, # '╬' + 207: 222, # '╧' + 208: 223, # '╨' + 209: 224, # '╤' + 210: 225, # '╥' + 211: 226, # '╙' + 212: 227, # '╘' + 213: 228, # '╒' + 214: 229, # '╓' + 215: 230, # '╫' + 216: 231, # '╪' + 217: 232, # '┘' + 218: 233, # '┌' + 219: 234, # '█' + 220: 235, # '▄' + 221: 236, # '▌' + 222: 237, # '▐' + 223: 238, # '▀' + 224: 9, # 'р' + 225: 7, # 'с' + 226: 6, # 'т' + 227: 14, # 'у' + 228: 39, # 'ф' + 229: 26, # 'х' + 230: 28, # 'ц' + 231: 22, # 'ч' + 232: 25, # 'ш' + 233: 29, # 'щ' + 234: 54, # 'ъ' + 235: 18, # 'ы' + 236: 17, # 'ь' + 237: 30, # 'э' + 238: 27, # 'ю' + 239: 16, # 'я' + 240: 239, # 'Ё' + 241: 68, # 'ё' + 242: 240, # 'Є' + 243: 241, # 'є' + 244: 242, # 'Ї' + 245: 243, # 'ї' + 246: 244, # 'Ў' + 247: 245, # 'ў' + 248: 246, # '°' + 249: 247, # '∙' + 250: 248, # '·' + 251: 249, # '√' + 252: 250, # '№' + 253: 251, # '¤' + 254: 252, # '■' + 255: 255, # '\xa0' +} + +IBM866_RUSSIAN_MODEL = SingleByteCharSetModel( + charset_name="IBM866", + language="Russian", + char_to_order_map=IBM866_RUSSIAN_CHAR_TO_ORDER, + language_model=RUSSIAN_LANG_MODEL, + typical_positive_ratio=0.976601, + keep_ascii_letters=False, + alphabet="ЁАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюяё", +) + +WINDOWS_1251_RUSSIAN_CHAR_TO_ORDER = { + 0: 255, # '\x00' + 1: 255, # '\x01' + 2: 255, # '\x02' + 3: 255, # '\x03' + 4: 255, # '\x04' + 5: 255, # '\x05' + 6: 255, # '\x06' + 7: 255, # '\x07' + 8: 255, # '\x08' + 9: 255, # '\t' + 10: 254, # '\n' + 11: 255, # '\x0b' + 12: 255, # '\x0c' + 13: 254, # '\r' + 14: 255, # '\x0e' + 15: 255, # '\x0f' + 16: 255, # '\x10' + 17: 255, # '\x11' + 18: 255, # '\x12' + 19: 255, # '\x13' + 20: 255, # '\x14' + 21: 255, # '\x15' + 22: 255, # '\x16' + 23: 255, # '\x17' + 24: 255, # '\x18' + 25: 255, # '\x19' + 26: 255, # '\x1a' + 27: 255, # '\x1b' + 28: 255, # '\x1c' + 29: 255, # '\x1d' + 30: 255, # '\x1e' + 31: 255, # '\x1f' + 32: 253, # ' ' + 33: 253, # '!' + 34: 253, # '"' + 35: 253, # '#' + 36: 253, # '$' + 37: 253, # '%' + 38: 253, # '&' + 39: 253, # "'" + 40: 253, # '(' + 41: 253, # ')' + 42: 253, # '*' + 43: 253, # '+' + 44: 253, # ',' + 45: 253, # '-' + 46: 253, # '.' + 47: 253, # '/' + 48: 252, # '0' + 49: 252, # '1' + 50: 252, # '2' + 51: 252, # '3' + 52: 252, # '4' + 53: 252, # '5' + 54: 252, # '6' + 55: 252, # '7' + 56: 252, # '8' + 57: 252, # '9' + 58: 253, # ':' + 59: 253, # ';' + 60: 253, # '<' + 61: 253, # '=' + 62: 253, # '>' + 63: 253, # '?' + 64: 253, # '@' + 65: 142, # 'A' + 66: 143, # 'B' + 67: 144, # 'C' + 68: 145, # 'D' + 69: 146, # 'E' + 70: 147, # 'F' + 71: 148, # 'G' + 72: 149, # 'H' + 73: 150, # 'I' + 74: 151, # 'J' + 75: 152, # 'K' + 76: 74, # 'L' + 77: 153, # 'M' + 78: 75, # 'N' + 79: 154, # 'O' + 80: 155, # 'P' + 81: 156, # 'Q' + 82: 157, # 'R' + 83: 158, # 'S' + 84: 159, # 'T' + 85: 160, # 'U' + 86: 161, # 'V' + 87: 162, # 'W' + 88: 163, # 'X' + 89: 164, # 'Y' + 90: 165, # 'Z' + 91: 253, # '[' + 92: 253, # '\\' + 93: 253, # ']' + 94: 253, # '^' + 95: 253, # '_' + 96: 253, # '`' + 97: 71, # 'a' + 98: 172, # 'b' + 99: 66, # 'c' + 100: 173, # 'd' + 101: 65, # 'e' + 102: 174, # 'f' + 103: 76, # 'g' + 104: 175, # 'h' + 105: 64, # 'i' + 106: 176, # 'j' + 107: 177, # 'k' + 108: 77, # 'l' + 109: 72, # 'm' + 110: 178, # 'n' + 111: 69, # 'o' + 112: 67, # 'p' + 113: 179, # 'q' + 114: 78, # 'r' + 115: 73, # 's' + 116: 180, # 't' + 117: 181, # 'u' + 118: 79, # 'v' + 119: 182, # 'w' + 120: 183, # 'x' + 121: 184, # 'y' + 122: 185, # 'z' + 123: 253, # '{' + 124: 253, # '|' + 125: 253, # '}' + 126: 253, # '~' + 127: 253, # '\x7f' + 128: 191, # 'Ђ' + 129: 192, # 'Ѓ' + 130: 193, # '‚' + 131: 194, # 'ѓ' + 132: 195, # '„' + 133: 196, # '…' + 134: 197, # '†' + 135: 198, # '‡' + 136: 199, # '€' + 137: 200, # '‰' + 138: 201, # 'Љ' + 139: 202, # '‹' + 140: 203, # 'Њ' + 141: 204, # 'Ќ' + 142: 205, # 'Ћ' + 143: 206, # 'Џ' + 144: 207, # 'ђ' + 145: 208, # '‘' + 146: 209, # '’' + 147: 210, # '“' + 148: 211, # '”' + 149: 212, # '•' + 150: 213, # '–' + 151: 214, # '—' + 152: 215, # None + 153: 216, # '™' + 154: 217, # 'љ' + 155: 218, # '›' + 156: 219, # 'њ' + 157: 220, # 'ќ' + 158: 221, # 'ћ' + 159: 222, # 'џ' + 160: 223, # '\xa0' + 161: 224, # 'Ў' + 162: 225, # 'ў' + 163: 226, # 'Ј' + 164: 227, # '¤' + 165: 228, # 'Ґ' + 166: 229, # '¦' + 167: 230, # '§' + 168: 231, # 'Ё' + 169: 232, # '©' + 170: 233, # 'Є' + 171: 234, # '«' + 172: 235, # '¬' + 173: 236, # '\xad' + 174: 237, # '®' + 175: 238, # 'Ї' + 176: 239, # '°' + 177: 240, # '±' + 178: 241, # 'І' + 179: 242, # 'і' + 180: 243, # 'ґ' + 181: 244, # 'µ' + 182: 245, # '¶' + 183: 246, # '·' + 184: 68, # 'ё' + 185: 247, # '№' + 186: 248, # 'є' + 187: 249, # '»' + 188: 250, # 'ј' + 189: 251, # 'Ѕ' + 190: 252, # 'ѕ' + 191: 253, # 'ї' + 192: 37, # 'А' + 193: 44, # 'Б' + 194: 33, # 'В' + 195: 46, # 'Г' + 196: 41, # 'Д' + 197: 48, # 'Е' + 198: 56, # 'Ж' + 199: 51, # 'З' + 200: 42, # 'И' + 201: 60, # 'Й' + 202: 36, # 'К' + 203: 49, # 'Л' + 204: 38, # 'М' + 205: 31, # 'Н' + 206: 34, # 'О' + 207: 35, # 'П' + 208: 45, # 'Р' + 209: 32, # 'С' + 210: 40, # 'Т' + 211: 52, # 'У' + 212: 53, # 'Ф' + 213: 55, # 'Х' + 214: 58, # 'Ц' + 215: 50, # 'Ч' + 216: 57, # 'Ш' + 217: 63, # 'Щ' + 218: 70, # 'Ъ' + 219: 62, # 'Ы' + 220: 61, # 'Ь' + 221: 47, # 'Э' + 222: 59, # 'Ю' + 223: 43, # 'Я' + 224: 3, # 'а' + 225: 21, # 'б' + 226: 10, # 'в' + 227: 19, # 'г' + 228: 13, # 'д' + 229: 2, # 'е' + 230: 24, # 'ж' + 231: 20, # 'з' + 232: 4, # 'и' + 233: 23, # 'й' + 234: 11, # 'к' + 235: 8, # 'л' + 236: 12, # 'м' + 237: 5, # 'н' + 238: 1, # 'о' + 239: 15, # 'п' + 240: 9, # 'р' + 241: 7, # 'с' + 242: 6, # 'т' + 243: 14, # 'у' + 244: 39, # 'ф' + 245: 26, # 'х' + 246: 28, # 'ц' + 247: 22, # 'ч' + 248: 25, # 'ш' + 249: 29, # 'щ' + 250: 54, # 'ъ' + 251: 18, # 'ы' + 252: 17, # 'ь' + 253: 30, # 'э' + 254: 27, # 'ю' + 255: 16, # 'я' +} + +WINDOWS_1251_RUSSIAN_MODEL = SingleByteCharSetModel( + charset_name="windows-1251", + language="Russian", + char_to_order_map=WINDOWS_1251_RUSSIAN_CHAR_TO_ORDER, + language_model=RUSSIAN_LANG_MODEL, + typical_positive_ratio=0.976601, + keep_ascii_letters=False, + alphabet="ЁАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюяё", +) + +IBM855_RUSSIAN_CHAR_TO_ORDER = { + 0: 255, # '\x00' + 1: 255, # '\x01' + 2: 255, # '\x02' + 3: 255, # '\x03' + 4: 255, # '\x04' + 5: 255, # '\x05' + 6: 255, # '\x06' + 7: 255, # '\x07' + 8: 255, # '\x08' + 9: 255, # '\t' + 10: 254, # '\n' + 11: 255, # '\x0b' + 12: 255, # '\x0c' + 13: 254, # '\r' + 14: 255, # '\x0e' + 15: 255, # '\x0f' + 16: 255, # '\x10' + 17: 255, # '\x11' + 18: 255, # '\x12' + 19: 255, # '\x13' + 20: 255, # '\x14' + 21: 255, # '\x15' + 22: 255, # '\x16' + 23: 255, # '\x17' + 24: 255, # '\x18' + 25: 255, # '\x19' + 26: 255, # '\x1a' + 27: 255, # '\x1b' + 28: 255, # '\x1c' + 29: 255, # '\x1d' + 30: 255, # '\x1e' + 31: 255, # '\x1f' + 32: 253, # ' ' + 33: 253, # '!' + 34: 253, # '"' + 35: 253, # '#' + 36: 253, # '$' + 37: 253, # '%' + 38: 253, # '&' + 39: 253, # "'" + 40: 253, # '(' + 41: 253, # ')' + 42: 253, # '*' + 43: 253, # '+' + 44: 253, # ',' + 45: 253, # '-' + 46: 253, # '.' + 47: 253, # '/' + 48: 252, # '0' + 49: 252, # '1' + 50: 252, # '2' + 51: 252, # '3' + 52: 252, # '4' + 53: 252, # '5' + 54: 252, # '6' + 55: 252, # '7' + 56: 252, # '8' + 57: 252, # '9' + 58: 253, # ':' + 59: 253, # ';' + 60: 253, # '<' + 61: 253, # '=' + 62: 253, # '>' + 63: 253, # '?' + 64: 253, # '@' + 65: 142, # 'A' + 66: 143, # 'B' + 67: 144, # 'C' + 68: 145, # 'D' + 69: 146, # 'E' + 70: 147, # 'F' + 71: 148, # 'G' + 72: 149, # 'H' + 73: 150, # 'I' + 74: 151, # 'J' + 75: 152, # 'K' + 76: 74, # 'L' + 77: 153, # 'M' + 78: 75, # 'N' + 79: 154, # 'O' + 80: 155, # 'P' + 81: 156, # 'Q' + 82: 157, # 'R' + 83: 158, # 'S' + 84: 159, # 'T' + 85: 160, # 'U' + 86: 161, # 'V' + 87: 162, # 'W' + 88: 163, # 'X' + 89: 164, # 'Y' + 90: 165, # 'Z' + 91: 253, # '[' + 92: 253, # '\\' + 93: 253, # ']' + 94: 253, # '^' + 95: 253, # '_' + 96: 253, # '`' + 97: 71, # 'a' + 98: 172, # 'b' + 99: 66, # 'c' + 100: 173, # 'd' + 101: 65, # 'e' + 102: 174, # 'f' + 103: 76, # 'g' + 104: 175, # 'h' + 105: 64, # 'i' + 106: 176, # 'j' + 107: 177, # 'k' + 108: 77, # 'l' + 109: 72, # 'm' + 110: 178, # 'n' + 111: 69, # 'o' + 112: 67, # 'p' + 113: 179, # 'q' + 114: 78, # 'r' + 115: 73, # 's' + 116: 180, # 't' + 117: 181, # 'u' + 118: 79, # 'v' + 119: 182, # 'w' + 120: 183, # 'x' + 121: 184, # 'y' + 122: 185, # 'z' + 123: 253, # '{' + 124: 253, # '|' + 125: 253, # '}' + 126: 253, # '~' + 127: 253, # '\x7f' + 128: 191, # 'ђ' + 129: 192, # 'Ђ' + 130: 193, # 'ѓ' + 131: 194, # 'Ѓ' + 132: 68, # 'ё' + 133: 195, # 'Ё' + 134: 196, # 'є' + 135: 197, # 'Є' + 136: 198, # 'ѕ' + 137: 199, # 'Ѕ' + 138: 200, # 'і' + 139: 201, # 'І' + 140: 202, # 'ї' + 141: 203, # 'Ї' + 142: 204, # 'ј' + 143: 205, # 'Ј' + 144: 206, # 'љ' + 145: 207, # 'Љ' + 146: 208, # 'њ' + 147: 209, # 'Њ' + 148: 210, # 'ћ' + 149: 211, # 'Ћ' + 150: 212, # 'ќ' + 151: 213, # 'Ќ' + 152: 214, # 'ў' + 153: 215, # 'Ў' + 154: 216, # 'џ' + 155: 217, # 'Џ' + 156: 27, # 'ю' + 157: 59, # 'Ю' + 158: 54, # 'ъ' + 159: 70, # 'Ъ' + 160: 3, # 'а' + 161: 37, # 'А' + 162: 21, # 'б' + 163: 44, # 'Б' + 164: 28, # 'ц' + 165: 58, # 'Ц' + 166: 13, # 'д' + 167: 41, # 'Д' + 168: 2, # 'е' + 169: 48, # 'Е' + 170: 39, # 'ф' + 171: 53, # 'Ф' + 172: 19, # 'г' + 173: 46, # 'Г' + 174: 218, # '«' + 175: 219, # '»' + 176: 220, # '░' + 177: 221, # '▒' + 178: 222, # '▓' + 179: 223, # '│' + 180: 224, # '┤' + 181: 26, # 'х' + 182: 55, # 'Х' + 183: 4, # 'и' + 184: 42, # 'И' + 185: 225, # '╣' + 186: 226, # '║' + 187: 227, # '╗' + 188: 228, # '╝' + 189: 23, # 'й' + 190: 60, # 'Й' + 191: 229, # '┐' + 192: 230, # '└' + 193: 231, # '┴' + 194: 232, # '┬' + 195: 233, # '├' + 196: 234, # '─' + 197: 235, # '┼' + 198: 11, # 'к' + 199: 36, # 'К' + 200: 236, # '╚' + 201: 237, # '╔' + 202: 238, # '╩' + 203: 239, # '╦' + 204: 240, # '╠' + 205: 241, # '═' + 206: 242, # '╬' + 207: 243, # '¤' + 208: 8, # 'л' + 209: 49, # 'Л' + 210: 12, # 'м' + 211: 38, # 'М' + 212: 5, # 'н' + 213: 31, # 'Н' + 214: 1, # 'о' + 215: 34, # 'О' + 216: 15, # 'п' + 217: 244, # '┘' + 218: 245, # '┌' + 219: 246, # '█' + 220: 247, # '▄' + 221: 35, # 'П' + 222: 16, # 'я' + 223: 248, # '▀' + 224: 43, # 'Я' + 225: 9, # 'р' + 226: 45, # 'Р' + 227: 7, # 'с' + 228: 32, # 'С' + 229: 6, # 'т' + 230: 40, # 'Т' + 231: 14, # 'у' + 232: 52, # 'У' + 233: 24, # 'ж' + 234: 56, # 'Ж' + 235: 10, # 'в' + 236: 33, # 'В' + 237: 17, # 'ь' + 238: 61, # 'Ь' + 239: 249, # '№' + 240: 250, # '\xad' + 241: 18, # 'ы' + 242: 62, # 'Ы' + 243: 20, # 'з' + 244: 51, # 'З' + 245: 25, # 'ш' + 246: 57, # 'Ш' + 247: 30, # 'э' + 248: 47, # 'Э' + 249: 29, # 'щ' + 250: 63, # 'Щ' + 251: 22, # 'ч' + 252: 50, # 'Ч' + 253: 251, # '§' + 254: 252, # '■' + 255: 255, # '\xa0' +} + +IBM855_RUSSIAN_MODEL = SingleByteCharSetModel( + charset_name="IBM855", + language="Russian", + char_to_order_map=IBM855_RUSSIAN_CHAR_TO_ORDER, + language_model=RUSSIAN_LANG_MODEL, + typical_positive_ratio=0.976601, + keep_ascii_letters=False, + alphabet="ЁАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюяё", +) + +KOI8_R_RUSSIAN_CHAR_TO_ORDER = { + 0: 255, # '\x00' + 1: 255, # '\x01' + 2: 255, # '\x02' + 3: 255, # '\x03' + 4: 255, # '\x04' + 5: 255, # '\x05' + 6: 255, # '\x06' + 7: 255, # '\x07' + 8: 255, # '\x08' + 9: 255, # '\t' + 10: 254, # '\n' + 11: 255, # '\x0b' + 12: 255, # '\x0c' + 13: 254, # '\r' + 14: 255, # '\x0e' + 15: 255, # '\x0f' + 16: 255, # '\x10' + 17: 255, # '\x11' + 18: 255, # '\x12' + 19: 255, # '\x13' + 20: 255, # '\x14' + 21: 255, # '\x15' + 22: 255, # '\x16' + 23: 255, # '\x17' + 24: 255, # '\x18' + 25: 255, # '\x19' + 26: 255, # '\x1a' + 27: 255, # '\x1b' + 28: 255, # '\x1c' + 29: 255, # '\x1d' + 30: 255, # '\x1e' + 31: 255, # '\x1f' + 32: 253, # ' ' + 33: 253, # '!' + 34: 253, # '"' + 35: 253, # '#' + 36: 253, # '$' + 37: 253, # '%' + 38: 253, # '&' + 39: 253, # "'" + 40: 253, # '(' + 41: 253, # ')' + 42: 253, # '*' + 43: 253, # '+' + 44: 253, # ',' + 45: 253, # '-' + 46: 253, # '.' + 47: 253, # '/' + 48: 252, # '0' + 49: 252, # '1' + 50: 252, # '2' + 51: 252, # '3' + 52: 252, # '4' + 53: 252, # '5' + 54: 252, # '6' + 55: 252, # '7' + 56: 252, # '8' + 57: 252, # '9' + 58: 253, # ':' + 59: 253, # ';' + 60: 253, # '<' + 61: 253, # '=' + 62: 253, # '>' + 63: 253, # '?' + 64: 253, # '@' + 65: 142, # 'A' + 66: 143, # 'B' + 67: 144, # 'C' + 68: 145, # 'D' + 69: 146, # 'E' + 70: 147, # 'F' + 71: 148, # 'G' + 72: 149, # 'H' + 73: 150, # 'I' + 74: 151, # 'J' + 75: 152, # 'K' + 76: 74, # 'L' + 77: 153, # 'M' + 78: 75, # 'N' + 79: 154, # 'O' + 80: 155, # 'P' + 81: 156, # 'Q' + 82: 157, # 'R' + 83: 158, # 'S' + 84: 159, # 'T' + 85: 160, # 'U' + 86: 161, # 'V' + 87: 162, # 'W' + 88: 163, # 'X' + 89: 164, # 'Y' + 90: 165, # 'Z' + 91: 253, # '[' + 92: 253, # '\\' + 93: 253, # ']' + 94: 253, # '^' + 95: 253, # '_' + 96: 253, # '`' + 97: 71, # 'a' + 98: 172, # 'b' + 99: 66, # 'c' + 100: 173, # 'd' + 101: 65, # 'e' + 102: 174, # 'f' + 103: 76, # 'g' + 104: 175, # 'h' + 105: 64, # 'i' + 106: 176, # 'j' + 107: 177, # 'k' + 108: 77, # 'l' + 109: 72, # 'm' + 110: 178, # 'n' + 111: 69, # 'o' + 112: 67, # 'p' + 113: 179, # 'q' + 114: 78, # 'r' + 115: 73, # 's' + 116: 180, # 't' + 117: 181, # 'u' + 118: 79, # 'v' + 119: 182, # 'w' + 120: 183, # 'x' + 121: 184, # 'y' + 122: 185, # 'z' + 123: 253, # '{' + 124: 253, # '|' + 125: 253, # '}' + 126: 253, # '~' + 127: 253, # '\x7f' + 128: 191, # '─' + 129: 192, # '│' + 130: 193, # '┌' + 131: 194, # '┐' + 132: 195, # '└' + 133: 196, # '┘' + 134: 197, # '├' + 135: 198, # '┤' + 136: 199, # '┬' + 137: 200, # '┴' + 138: 201, # '┼' + 139: 202, # '▀' + 140: 203, # '▄' + 141: 204, # '█' + 142: 205, # '▌' + 143: 206, # '▐' + 144: 207, # '░' + 145: 208, # '▒' + 146: 209, # '▓' + 147: 210, # '⌠' + 148: 211, # '■' + 149: 212, # '∙' + 150: 213, # '√' + 151: 214, # '≈' + 152: 215, # '≤' + 153: 216, # '≥' + 154: 217, # '\xa0' + 155: 218, # '⌡' + 156: 219, # '°' + 157: 220, # '²' + 158: 221, # '·' + 159: 222, # '÷' + 160: 223, # '═' + 161: 224, # '║' + 162: 225, # '╒' + 163: 68, # 'ё' + 164: 226, # '╓' + 165: 227, # '╔' + 166: 228, # '╕' + 167: 229, # '╖' + 168: 230, # '╗' + 169: 231, # '╘' + 170: 232, # '╙' + 171: 233, # '╚' + 172: 234, # '╛' + 173: 235, # '╜' + 174: 236, # '╝' + 175: 237, # '╞' + 176: 238, # '╟' + 177: 239, # '╠' + 178: 240, # '╡' + 179: 241, # 'Ё' + 180: 242, # '╢' + 181: 243, # '╣' + 182: 244, # '╤' + 183: 245, # '╥' + 184: 246, # '╦' + 185: 247, # '╧' + 186: 248, # '╨' + 187: 249, # '╩' + 188: 250, # '╪' + 189: 251, # '╫' + 190: 252, # '╬' + 191: 253, # '©' + 192: 27, # 'ю' + 193: 3, # 'а' + 194: 21, # 'б' + 195: 28, # 'ц' + 196: 13, # 'д' + 197: 2, # 'е' + 198: 39, # 'ф' + 199: 19, # 'г' + 200: 26, # 'х' + 201: 4, # 'и' + 202: 23, # 'й' + 203: 11, # 'к' + 204: 8, # 'л' + 205: 12, # 'м' + 206: 5, # 'н' + 207: 1, # 'о' + 208: 15, # 'п' + 209: 16, # 'я' + 210: 9, # 'р' + 211: 7, # 'с' + 212: 6, # 'т' + 213: 14, # 'у' + 214: 24, # 'ж' + 215: 10, # 'в' + 216: 17, # 'ь' + 217: 18, # 'ы' + 218: 20, # 'з' + 219: 25, # 'ш' + 220: 30, # 'э' + 221: 29, # 'щ' + 222: 22, # 'ч' + 223: 54, # 'ъ' + 224: 59, # 'Ю' + 225: 37, # 'А' + 226: 44, # 'Б' + 227: 58, # 'Ц' + 228: 41, # 'Д' + 229: 48, # 'Е' + 230: 53, # 'Ф' + 231: 46, # 'Г' + 232: 55, # 'Х' + 233: 42, # 'И' + 234: 60, # 'Й' + 235: 36, # 'К' + 236: 49, # 'Л' + 237: 38, # 'М' + 238: 31, # 'Н' + 239: 34, # 'О' + 240: 35, # 'П' + 241: 43, # 'Я' + 242: 45, # 'Р' + 243: 32, # 'С' + 244: 40, # 'Т' + 245: 52, # 'У' + 246: 56, # 'Ж' + 247: 33, # 'В' + 248: 61, # 'Ь' + 249: 62, # 'Ы' + 250: 51, # 'З' + 251: 57, # 'Ш' + 252: 47, # 'Э' + 253: 63, # 'Щ' + 254: 50, # 'Ч' + 255: 70, # 'Ъ' +} + +KOI8_R_RUSSIAN_MODEL = SingleByteCharSetModel( + charset_name="KOI8-R", + language="Russian", + char_to_order_map=KOI8_R_RUSSIAN_CHAR_TO_ORDER, + language_model=RUSSIAN_LANG_MODEL, + typical_positive_ratio=0.976601, + keep_ascii_letters=False, + alphabet="ЁАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюяё", +) + +MACCYRILLIC_RUSSIAN_CHAR_TO_ORDER = { + 0: 255, # '\x00' + 1: 255, # '\x01' + 2: 255, # '\x02' + 3: 255, # '\x03' + 4: 255, # '\x04' + 5: 255, # '\x05' + 6: 255, # '\x06' + 7: 255, # '\x07' + 8: 255, # '\x08' + 9: 255, # '\t' + 10: 254, # '\n' + 11: 255, # '\x0b' + 12: 255, # '\x0c' + 13: 254, # '\r' + 14: 255, # '\x0e' + 15: 255, # '\x0f' + 16: 255, # '\x10' + 17: 255, # '\x11' + 18: 255, # '\x12' + 19: 255, # '\x13' + 20: 255, # '\x14' + 21: 255, # '\x15' + 22: 255, # '\x16' + 23: 255, # '\x17' + 24: 255, # '\x18' + 25: 255, # '\x19' + 26: 255, # '\x1a' + 27: 255, # '\x1b' + 28: 255, # '\x1c' + 29: 255, # '\x1d' + 30: 255, # '\x1e' + 31: 255, # '\x1f' + 32: 253, # ' ' + 33: 253, # '!' + 34: 253, # '"' + 35: 253, # '#' + 36: 253, # '$' + 37: 253, # '%' + 38: 253, # '&' + 39: 253, # "'" + 40: 253, # '(' + 41: 253, # ')' + 42: 253, # '*' + 43: 253, # '+' + 44: 253, # ',' + 45: 253, # '-' + 46: 253, # '.' + 47: 253, # '/' + 48: 252, # '0' + 49: 252, # '1' + 50: 252, # '2' + 51: 252, # '3' + 52: 252, # '4' + 53: 252, # '5' + 54: 252, # '6' + 55: 252, # '7' + 56: 252, # '8' + 57: 252, # '9' + 58: 253, # ':' + 59: 253, # ';' + 60: 253, # '<' + 61: 253, # '=' + 62: 253, # '>' + 63: 253, # '?' + 64: 253, # '@' + 65: 142, # 'A' + 66: 143, # 'B' + 67: 144, # 'C' + 68: 145, # 'D' + 69: 146, # 'E' + 70: 147, # 'F' + 71: 148, # 'G' + 72: 149, # 'H' + 73: 150, # 'I' + 74: 151, # 'J' + 75: 152, # 'K' + 76: 74, # 'L' + 77: 153, # 'M' + 78: 75, # 'N' + 79: 154, # 'O' + 80: 155, # 'P' + 81: 156, # 'Q' + 82: 157, # 'R' + 83: 158, # 'S' + 84: 159, # 'T' + 85: 160, # 'U' + 86: 161, # 'V' + 87: 162, # 'W' + 88: 163, # 'X' + 89: 164, # 'Y' + 90: 165, # 'Z' + 91: 253, # '[' + 92: 253, # '\\' + 93: 253, # ']' + 94: 253, # '^' + 95: 253, # '_' + 96: 253, # '`' + 97: 71, # 'a' + 98: 172, # 'b' + 99: 66, # 'c' + 100: 173, # 'd' + 101: 65, # 'e' + 102: 174, # 'f' + 103: 76, # 'g' + 104: 175, # 'h' + 105: 64, # 'i' + 106: 176, # 'j' + 107: 177, # 'k' + 108: 77, # 'l' + 109: 72, # 'm' + 110: 178, # 'n' + 111: 69, # 'o' + 112: 67, # 'p' + 113: 179, # 'q' + 114: 78, # 'r' + 115: 73, # 's' + 116: 180, # 't' + 117: 181, # 'u' + 118: 79, # 'v' + 119: 182, # 'w' + 120: 183, # 'x' + 121: 184, # 'y' + 122: 185, # 'z' + 123: 253, # '{' + 124: 253, # '|' + 125: 253, # '}' + 126: 253, # '~' + 127: 253, # '\x7f' + 128: 37, # 'А' + 129: 44, # 'Б' + 130: 33, # 'В' + 131: 46, # 'Г' + 132: 41, # 'Д' + 133: 48, # 'Е' + 134: 56, # 'Ж' + 135: 51, # 'З' + 136: 42, # 'И' + 137: 60, # 'Й' + 138: 36, # 'К' + 139: 49, # 'Л' + 140: 38, # 'М' + 141: 31, # 'Н' + 142: 34, # 'О' + 143: 35, # 'П' + 144: 45, # 'Р' + 145: 32, # 'С' + 146: 40, # 'Т' + 147: 52, # 'У' + 148: 53, # 'Ф' + 149: 55, # 'Х' + 150: 58, # 'Ц' + 151: 50, # 'Ч' + 152: 57, # 'Ш' + 153: 63, # 'Щ' + 154: 70, # 'Ъ' + 155: 62, # 'Ы' + 156: 61, # 'Ь' + 157: 47, # 'Э' + 158: 59, # 'Ю' + 159: 43, # 'Я' + 160: 191, # '†' + 161: 192, # '°' + 162: 193, # 'Ґ' + 163: 194, # '£' + 164: 195, # '§' + 165: 196, # '•' + 166: 197, # '¶' + 167: 198, # 'І' + 168: 199, # '®' + 169: 200, # '©' + 170: 201, # '™' + 171: 202, # 'Ђ' + 172: 203, # 'ђ' + 173: 204, # '≠' + 174: 205, # 'Ѓ' + 175: 206, # 'ѓ' + 176: 207, # '∞' + 177: 208, # '±' + 178: 209, # '≤' + 179: 210, # '≥' + 180: 211, # 'і' + 181: 212, # 'µ' + 182: 213, # 'ґ' + 183: 214, # 'Ј' + 184: 215, # 'Є' + 185: 216, # 'є' + 186: 217, # 'Ї' + 187: 218, # 'ї' + 188: 219, # 'Љ' + 189: 220, # 'љ' + 190: 221, # 'Њ' + 191: 222, # 'њ' + 192: 223, # 'ј' + 193: 224, # 'Ѕ' + 194: 225, # '¬' + 195: 226, # '√' + 196: 227, # 'ƒ' + 197: 228, # '≈' + 198: 229, # '∆' + 199: 230, # '«' + 200: 231, # '»' + 201: 232, # '…' + 202: 233, # '\xa0' + 203: 234, # 'Ћ' + 204: 235, # 'ћ' + 205: 236, # 'Ќ' + 206: 237, # 'ќ' + 207: 238, # 'ѕ' + 208: 239, # '–' + 209: 240, # '—' + 210: 241, # '“' + 211: 242, # '”' + 212: 243, # '‘' + 213: 244, # '’' + 214: 245, # '÷' + 215: 246, # '„' + 216: 247, # 'Ў' + 217: 248, # 'ў' + 218: 249, # 'Џ' + 219: 250, # 'џ' + 220: 251, # '№' + 221: 252, # 'Ё' + 222: 68, # 'ё' + 223: 16, # 'я' + 224: 3, # 'а' + 225: 21, # 'б' + 226: 10, # 'в' + 227: 19, # 'г' + 228: 13, # 'д' + 229: 2, # 'е' + 230: 24, # 'ж' + 231: 20, # 'з' + 232: 4, # 'и' + 233: 23, # 'й' + 234: 11, # 'к' + 235: 8, # 'л' + 236: 12, # 'м' + 237: 5, # 'н' + 238: 1, # 'о' + 239: 15, # 'п' + 240: 9, # 'р' + 241: 7, # 'с' + 242: 6, # 'т' + 243: 14, # 'у' + 244: 39, # 'ф' + 245: 26, # 'х' + 246: 28, # 'ц' + 247: 22, # 'ч' + 248: 25, # 'ш' + 249: 29, # 'щ' + 250: 54, # 'ъ' + 251: 18, # 'ы' + 252: 17, # 'ь' + 253: 30, # 'э' + 254: 27, # 'ю' + 255: 255, # '€' +} + +MACCYRILLIC_RUSSIAN_MODEL = SingleByteCharSetModel( + charset_name="MacCyrillic", + language="Russian", + char_to_order_map=MACCYRILLIC_RUSSIAN_CHAR_TO_ORDER, + language_model=RUSSIAN_LANG_MODEL, + typical_positive_ratio=0.976601, + keep_ascii_letters=False, + alphabet="ЁАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюяё", +) + +ISO_8859_5_RUSSIAN_CHAR_TO_ORDER = { + 0: 255, # '\x00' + 1: 255, # '\x01' + 2: 255, # '\x02' + 3: 255, # '\x03' + 4: 255, # '\x04' + 5: 255, # '\x05' + 6: 255, # '\x06' + 7: 255, # '\x07' + 8: 255, # '\x08' + 9: 255, # '\t' + 10: 254, # '\n' + 11: 255, # '\x0b' + 12: 255, # '\x0c' + 13: 254, # '\r' + 14: 255, # '\x0e' + 15: 255, # '\x0f' + 16: 255, # '\x10' + 17: 255, # '\x11' + 18: 255, # '\x12' + 19: 255, # '\x13' + 20: 255, # '\x14' + 21: 255, # '\x15' + 22: 255, # '\x16' + 23: 255, # '\x17' + 24: 255, # '\x18' + 25: 255, # '\x19' + 26: 255, # '\x1a' + 27: 255, # '\x1b' + 28: 255, # '\x1c' + 29: 255, # '\x1d' + 30: 255, # '\x1e' + 31: 255, # '\x1f' + 32: 253, # ' ' + 33: 253, # '!' + 34: 253, # '"' + 35: 253, # '#' + 36: 253, # '$' + 37: 253, # '%' + 38: 253, # '&' + 39: 253, # "'" + 40: 253, # '(' + 41: 253, # ')' + 42: 253, # '*' + 43: 253, # '+' + 44: 253, # ',' + 45: 253, # '-' + 46: 253, # '.' + 47: 253, # '/' + 48: 252, # '0' + 49: 252, # '1' + 50: 252, # '2' + 51: 252, # '3' + 52: 252, # '4' + 53: 252, # '5' + 54: 252, # '6' + 55: 252, # '7' + 56: 252, # '8' + 57: 252, # '9' + 58: 253, # ':' + 59: 253, # ';' + 60: 253, # '<' + 61: 253, # '=' + 62: 253, # '>' + 63: 253, # '?' + 64: 253, # '@' + 65: 142, # 'A' + 66: 143, # 'B' + 67: 144, # 'C' + 68: 145, # 'D' + 69: 146, # 'E' + 70: 147, # 'F' + 71: 148, # 'G' + 72: 149, # 'H' + 73: 150, # 'I' + 74: 151, # 'J' + 75: 152, # 'K' + 76: 74, # 'L' + 77: 153, # 'M' + 78: 75, # 'N' + 79: 154, # 'O' + 80: 155, # 'P' + 81: 156, # 'Q' + 82: 157, # 'R' + 83: 158, # 'S' + 84: 159, # 'T' + 85: 160, # 'U' + 86: 161, # 'V' + 87: 162, # 'W' + 88: 163, # 'X' + 89: 164, # 'Y' + 90: 165, # 'Z' + 91: 253, # '[' + 92: 253, # '\\' + 93: 253, # ']' + 94: 253, # '^' + 95: 253, # '_' + 96: 253, # '`' + 97: 71, # 'a' + 98: 172, # 'b' + 99: 66, # 'c' + 100: 173, # 'd' + 101: 65, # 'e' + 102: 174, # 'f' + 103: 76, # 'g' + 104: 175, # 'h' + 105: 64, # 'i' + 106: 176, # 'j' + 107: 177, # 'k' + 108: 77, # 'l' + 109: 72, # 'm' + 110: 178, # 'n' + 111: 69, # 'o' + 112: 67, # 'p' + 113: 179, # 'q' + 114: 78, # 'r' + 115: 73, # 's' + 116: 180, # 't' + 117: 181, # 'u' + 118: 79, # 'v' + 119: 182, # 'w' + 120: 183, # 'x' + 121: 184, # 'y' + 122: 185, # 'z' + 123: 253, # '{' + 124: 253, # '|' + 125: 253, # '}' + 126: 253, # '~' + 127: 253, # '\x7f' + 128: 191, # '\x80' + 129: 192, # '\x81' + 130: 193, # '\x82' + 131: 194, # '\x83' + 132: 195, # '\x84' + 133: 196, # '\x85' + 134: 197, # '\x86' + 135: 198, # '\x87' + 136: 199, # '\x88' + 137: 200, # '\x89' + 138: 201, # '\x8a' + 139: 202, # '\x8b' + 140: 203, # '\x8c' + 141: 204, # '\x8d' + 142: 205, # '\x8e' + 143: 206, # '\x8f' + 144: 207, # '\x90' + 145: 208, # '\x91' + 146: 209, # '\x92' + 147: 210, # '\x93' + 148: 211, # '\x94' + 149: 212, # '\x95' + 150: 213, # '\x96' + 151: 214, # '\x97' + 152: 215, # '\x98' + 153: 216, # '\x99' + 154: 217, # '\x9a' + 155: 218, # '\x9b' + 156: 219, # '\x9c' + 157: 220, # '\x9d' + 158: 221, # '\x9e' + 159: 222, # '\x9f' + 160: 223, # '\xa0' + 161: 224, # 'Ё' + 162: 225, # 'Ђ' + 163: 226, # 'Ѓ' + 164: 227, # 'Є' + 165: 228, # 'Ѕ' + 166: 229, # 'І' + 167: 230, # 'Ї' + 168: 231, # 'Ј' + 169: 232, # 'Љ' + 170: 233, # 'Њ' + 171: 234, # 'Ћ' + 172: 235, # 'Ќ' + 173: 236, # '\xad' + 174: 237, # 'Ў' + 175: 238, # 'Џ' + 176: 37, # 'А' + 177: 44, # 'Б' + 178: 33, # 'В' + 179: 46, # 'Г' + 180: 41, # 'Д' + 181: 48, # 'Е' + 182: 56, # 'Ж' + 183: 51, # 'З' + 184: 42, # 'И' + 185: 60, # 'Й' + 186: 36, # 'К' + 187: 49, # 'Л' + 188: 38, # 'М' + 189: 31, # 'Н' + 190: 34, # 'О' + 191: 35, # 'П' + 192: 45, # 'Р' + 193: 32, # 'С' + 194: 40, # 'Т' + 195: 52, # 'У' + 196: 53, # 'Ф' + 197: 55, # 'Х' + 198: 58, # 'Ц' + 199: 50, # 'Ч' + 200: 57, # 'Ш' + 201: 63, # 'Щ' + 202: 70, # 'Ъ' + 203: 62, # 'Ы' + 204: 61, # 'Ь' + 205: 47, # 'Э' + 206: 59, # 'Ю' + 207: 43, # 'Я' + 208: 3, # 'а' + 209: 21, # 'б' + 210: 10, # 'в' + 211: 19, # 'г' + 212: 13, # 'д' + 213: 2, # 'е' + 214: 24, # 'ж' + 215: 20, # 'з' + 216: 4, # 'и' + 217: 23, # 'й' + 218: 11, # 'к' + 219: 8, # 'л' + 220: 12, # 'м' + 221: 5, # 'н' + 222: 1, # 'о' + 223: 15, # 'п' + 224: 9, # 'р' + 225: 7, # 'с' + 226: 6, # 'т' + 227: 14, # 'у' + 228: 39, # 'ф' + 229: 26, # 'х' + 230: 28, # 'ц' + 231: 22, # 'ч' + 232: 25, # 'ш' + 233: 29, # 'щ' + 234: 54, # 'ъ' + 235: 18, # 'ы' + 236: 17, # 'ь' + 237: 30, # 'э' + 238: 27, # 'ю' + 239: 16, # 'я' + 240: 239, # '№' + 241: 68, # 'ё' + 242: 240, # 'ђ' + 243: 241, # 'ѓ' + 244: 242, # 'є' + 245: 243, # 'ѕ' + 246: 244, # 'і' + 247: 245, # 'ї' + 248: 246, # 'ј' + 249: 247, # 'љ' + 250: 248, # 'њ' + 251: 249, # 'ћ' + 252: 250, # 'ќ' + 253: 251, # '§' + 254: 252, # 'ў' + 255: 255, # 'џ' +} + +ISO_8859_5_RUSSIAN_MODEL = SingleByteCharSetModel( + charset_name="ISO-8859-5", + language="Russian", + char_to_order_map=ISO_8859_5_RUSSIAN_CHAR_TO_ORDER, + language_model=RUSSIAN_LANG_MODEL, + typical_positive_ratio=0.976601, + keep_ascii_letters=False, + alphabet="ЁАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюяё", +) diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/langthaimodel.py b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/langthaimodel.py new file mode 100644 index 0000000..489cad9 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/langthaimodel.py @@ -0,0 +1,4380 @@ +from pip._vendor.chardet.sbcharsetprober import SingleByteCharSetModel + +# 3: Positive +# 2: Likely +# 1: Unlikely +# 0: Negative + +THAI_LANG_MODEL = { + 5: { # 'ก' + 5: 2, # 'ก' + 30: 2, # 'ข' + 24: 2, # 'ค' + 8: 2, # 'ง' + 26: 2, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 1, # 'ซ' + 47: 0, # 'ญ' + 58: 3, # 'ฎ' + 57: 2, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 2, # 'ณ' + 20: 2, # 'ด' + 19: 3, # 'ต' + 44: 0, # 'ถ' + 14: 2, # 'ท' + 48: 0, # 'ธ' + 3: 2, # 'น' + 17: 1, # 'บ' + 25: 2, # 'ป' + 39: 1, # 'ผ' + 62: 1, # 'ฝ' + 31: 1, # 'พ' + 54: 0, # 'ฟ' + 45: 1, # 'ภ' + 9: 2, # 'ม' + 16: 1, # 'ย' + 2: 3, # 'ร' + 61: 2, # 'ฤ' + 15: 3, # 'ล' + 12: 3, # 'ว' + 42: 2, # 'ศ' + 46: 3, # 'ษ' + 18: 2, # 'ส' + 21: 2, # 'ห' + 4: 3, # 'อ' + 63: 1, # 'ฯ' + 22: 2, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 3, # 'ำ' + 23: 3, # 'ิ' + 13: 3, # 'ี' + 40: 0, # 'ึ' + 27: 2, # 'ื' + 32: 2, # 'ุ' + 35: 1, # 'ู' + 11: 2, # 'เ' + 28: 2, # 'แ' + 41: 1, # 'โ' + 29: 1, # 'ใ' + 33: 2, # 'ไ' + 50: 1, # 'ๆ' + 37: 3, # '็' + 6: 3, # '่' + 7: 3, # '้' + 38: 2, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 30: { # 'ข' + 5: 1, # 'ก' + 30: 0, # 'ข' + 24: 1, # 'ค' + 8: 1, # 'ง' + 26: 1, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 2, # 'ณ' + 20: 0, # 'ด' + 19: 2, # 'ต' + 44: 0, # 'ถ' + 14: 1, # 'ท' + 48: 0, # 'ธ' + 3: 2, # 'น' + 17: 1, # 'บ' + 25: 1, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 2, # 'ย' + 2: 1, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 2, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 1, # 'ส' + 21: 1, # 'ห' + 4: 3, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 2, # 'ี' + 40: 3, # 'ึ' + 27: 1, # 'ื' + 32: 1, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 1, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 1, # '็' + 6: 2, # '่' + 7: 3, # '้' + 38: 1, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 24: { # 'ค' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 2, # 'ค' + 8: 2, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 2, # 'ณ' + 20: 2, # 'ด' + 19: 2, # 'ต' + 44: 0, # 'ถ' + 14: 1, # 'ท' + 48: 0, # 'ธ' + 3: 3, # 'น' + 17: 0, # 'บ' + 25: 1, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 2, # 'ม' + 16: 2, # 'ย' + 2: 3, # 'ร' + 61: 0, # 'ฤ' + 15: 3, # 'ล' + 12: 3, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 1, # 'ส' + 21: 0, # 'ห' + 4: 2, # 'อ' + 63: 0, # 'ฯ' + 22: 2, # 'ะ' + 10: 3, # 'ั' + 1: 2, # 'า' + 36: 3, # 'ำ' + 23: 3, # 'ิ' + 13: 2, # 'ี' + 40: 0, # 'ึ' + 27: 3, # 'ื' + 32: 3, # 'ุ' + 35: 2, # 'ู' + 11: 1, # 'เ' + 28: 0, # 'แ' + 41: 3, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 1, # '็' + 6: 3, # '่' + 7: 3, # '้' + 38: 3, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 8: { # 'ง' + 5: 3, # 'ก' + 30: 2, # 'ข' + 24: 3, # 'ค' + 8: 2, # 'ง' + 26: 2, # 'จ' + 52: 1, # 'ฉ' + 34: 2, # 'ช' + 51: 1, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 2, # 'ด' + 19: 2, # 'ต' + 44: 1, # 'ถ' + 14: 3, # 'ท' + 48: 1, # 'ธ' + 3: 3, # 'น' + 17: 2, # 'บ' + 25: 2, # 'ป' + 39: 2, # 'ผ' + 62: 1, # 'ฝ' + 31: 2, # 'พ' + 54: 0, # 'ฟ' + 45: 1, # 'ภ' + 9: 2, # 'ม' + 16: 1, # 'ย' + 2: 2, # 'ร' + 61: 0, # 'ฤ' + 15: 2, # 'ล' + 12: 2, # 'ว' + 42: 2, # 'ศ' + 46: 1, # 'ษ' + 18: 3, # 'ส' + 21: 3, # 'ห' + 4: 2, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 1, # 'ั' + 1: 3, # 'า' + 36: 0, # 'ำ' + 23: 2, # 'ิ' + 13: 1, # 'ี' + 40: 0, # 'ึ' + 27: 1, # 'ื' + 32: 1, # 'ุ' + 35: 0, # 'ู' + 11: 3, # 'เ' + 28: 2, # 'แ' + 41: 1, # 'โ' + 29: 2, # 'ใ' + 33: 2, # 'ไ' + 50: 3, # 'ๆ' + 37: 0, # '็' + 6: 2, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 26: { # 'จ' + 5: 2, # 'ก' + 30: 1, # 'ข' + 24: 0, # 'ค' + 8: 2, # 'ง' + 26: 3, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 2, # 'ด' + 19: 1, # 'ต' + 44: 1, # 'ถ' + 14: 2, # 'ท' + 48: 0, # 'ธ' + 3: 3, # 'น' + 17: 1, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 1, # 'ม' + 16: 1, # 'ย' + 2: 3, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 1, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 2, # 'ส' + 21: 1, # 'ห' + 4: 2, # 'อ' + 63: 0, # 'ฯ' + 22: 3, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 3, # 'ำ' + 23: 2, # 'ิ' + 13: 1, # 'ี' + 40: 3, # 'ึ' + 27: 1, # 'ื' + 32: 3, # 'ุ' + 35: 2, # 'ู' + 11: 1, # 'เ' + 28: 1, # 'แ' + 41: 0, # 'โ' + 29: 1, # 'ใ' + 33: 1, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 2, # '่' + 7: 2, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 52: { # 'ฉ' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 3, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 3, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 1, # 'ม' + 16: 1, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 2, # 'ล' + 12: 1, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 1, # 'ะ' + 10: 1, # 'ั' + 1: 1, # 'า' + 36: 0, # 'ำ' + 23: 1, # 'ิ' + 13: 1, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 1, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 34: { # 'ช' + 5: 1, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 1, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 1, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 1, # 'ท' + 48: 0, # 'ธ' + 3: 3, # 'น' + 17: 2, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 2, # 'ม' + 16: 1, # 'ย' + 2: 1, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 1, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 2, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 2, # 'ั' + 1: 3, # 'า' + 36: 1, # 'ำ' + 23: 3, # 'ิ' + 13: 2, # 'ี' + 40: 0, # 'ึ' + 27: 3, # 'ื' + 32: 3, # 'ุ' + 35: 1, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 1, # '็' + 6: 3, # '่' + 7: 3, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 51: { # 'ซ' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 1, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 1, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 1, # 'ส' + 21: 0, # 'ห' + 4: 2, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 1, # 'ั' + 1: 1, # 'า' + 36: 0, # 'ำ' + 23: 1, # 'ิ' + 13: 2, # 'ี' + 40: 3, # 'ึ' + 27: 2, # 'ื' + 32: 1, # 'ุ' + 35: 1, # 'ู' + 11: 1, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 1, # '็' + 6: 1, # '่' + 7: 2, # '้' + 38: 1, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 47: { # 'ญ' + 5: 1, # 'ก' + 30: 1, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 0, # 'ซ' + 47: 3, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 1, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 1, # 'บ' + 25: 1, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 1, # 'ม' + 16: 0, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 1, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 1, # 'ส' + 21: 2, # 'ห' + 4: 1, # 'อ' + 63: 0, # 'ฯ' + 22: 1, # 'ะ' + 10: 2, # 'ั' + 1: 3, # 'า' + 36: 0, # 'ำ' + 23: 1, # 'ิ' + 13: 1, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 1, # 'เ' + 28: 1, # 'แ' + 41: 0, # 'โ' + 29: 1, # 'ใ' + 33: 0, # 'ไ' + 50: 1, # 'ๆ' + 37: 0, # '็' + 6: 2, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 58: { # 'ฎ' + 5: 2, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 1, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 1, # 'ิ' + 13: 2, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 57: { # 'ฏ' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 3, # 'ิ' + 13: 1, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 49: { # 'ฐ' + 5: 1, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 2, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 2, # 'ม' + 16: 0, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 1, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 1, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 3, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 1, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 53: { # 'ฑ' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 2, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 3, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 55: { # 'ฒ' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 3, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 1, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 43: { # 'ณ' + 5: 1, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 3, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 3, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 1, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 1, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 1, # 'ส' + 21: 1, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 3, # 'ะ' + 10: 0, # 'ั' + 1: 3, # 'า' + 36: 0, # 'ำ' + 23: 1, # 'ิ' + 13: 2, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 1, # 'เ' + 28: 1, # 'แ' + 41: 0, # 'โ' + 29: 1, # 'ใ' + 33: 1, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 3, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 20: { # 'ด' + 5: 2, # 'ก' + 30: 2, # 'ข' + 24: 2, # 'ค' + 8: 3, # 'ง' + 26: 2, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 1, # 'ด' + 19: 2, # 'ต' + 44: 1, # 'ถ' + 14: 2, # 'ท' + 48: 0, # 'ธ' + 3: 1, # 'น' + 17: 1, # 'บ' + 25: 1, # 'ป' + 39: 1, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 0, # 'ฟ' + 45: 1, # 'ภ' + 9: 2, # 'ม' + 16: 3, # 'ย' + 2: 2, # 'ร' + 61: 0, # 'ฤ' + 15: 2, # 'ล' + 12: 2, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 2, # 'ส' + 21: 2, # 'ห' + 4: 1, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 3, # 'ั' + 1: 2, # 'า' + 36: 2, # 'ำ' + 23: 3, # 'ิ' + 13: 3, # 'ี' + 40: 1, # 'ึ' + 27: 2, # 'ื' + 32: 3, # 'ุ' + 35: 2, # 'ู' + 11: 2, # 'เ' + 28: 2, # 'แ' + 41: 1, # 'โ' + 29: 2, # 'ใ' + 33: 2, # 'ไ' + 50: 2, # 'ๆ' + 37: 2, # '็' + 6: 1, # '่' + 7: 3, # '้' + 38: 1, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 19: { # 'ต' + 5: 2, # 'ก' + 30: 1, # 'ข' + 24: 1, # 'ค' + 8: 0, # 'ง' + 26: 1, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 1, # 'ด' + 19: 1, # 'ต' + 44: 2, # 'ถ' + 14: 1, # 'ท' + 48: 0, # 'ธ' + 3: 2, # 'น' + 17: 1, # 'บ' + 25: 1, # 'ป' + 39: 1, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 0, # 'ฟ' + 45: 2, # 'ภ' + 9: 1, # 'ม' + 16: 1, # 'ย' + 2: 3, # 'ร' + 61: 0, # 'ฤ' + 15: 2, # 'ล' + 12: 1, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 3, # 'ส' + 21: 0, # 'ห' + 4: 3, # 'อ' + 63: 1, # 'ฯ' + 22: 2, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 2, # 'ำ' + 23: 3, # 'ิ' + 13: 2, # 'ี' + 40: 1, # 'ึ' + 27: 1, # 'ื' + 32: 3, # 'ุ' + 35: 2, # 'ู' + 11: 1, # 'เ' + 28: 1, # 'แ' + 41: 1, # 'โ' + 29: 1, # 'ใ' + 33: 1, # 'ไ' + 50: 0, # 'ๆ' + 37: 2, # '็' + 6: 3, # '่' + 7: 3, # '้' + 38: 2, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 44: { # 'ถ' + 5: 1, # 'ก' + 30: 0, # 'ข' + 24: 1, # 'ค' + 8: 0, # 'ง' + 26: 1, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 1, # 'ต' + 44: 0, # 'ถ' + 14: 1, # 'ท' + 48: 0, # 'ธ' + 3: 1, # 'น' + 17: 2, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 1, # 'ร' + 61: 0, # 'ฤ' + 15: 1, # 'ล' + 12: 1, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 1, # 'ส' + 21: 0, # 'ห' + 4: 1, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 2, # 'ั' + 1: 3, # 'า' + 36: 0, # 'ำ' + 23: 2, # 'ิ' + 13: 1, # 'ี' + 40: 3, # 'ึ' + 27: 2, # 'ื' + 32: 2, # 'ุ' + 35: 3, # 'ู' + 11: 1, # 'เ' + 28: 1, # 'แ' + 41: 0, # 'โ' + 29: 1, # 'ใ' + 33: 1, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 2, # '่' + 7: 3, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 14: { # 'ท' + 5: 1, # 'ก' + 30: 1, # 'ข' + 24: 3, # 'ค' + 8: 1, # 'ง' + 26: 1, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 2, # 'ด' + 19: 1, # 'ต' + 44: 0, # 'ถ' + 14: 1, # 'ท' + 48: 3, # 'ธ' + 3: 3, # 'น' + 17: 2, # 'บ' + 25: 2, # 'ป' + 39: 1, # 'ผ' + 62: 0, # 'ฝ' + 31: 2, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 1, # 'ม' + 16: 3, # 'ย' + 2: 3, # 'ร' + 61: 1, # 'ฤ' + 15: 1, # 'ล' + 12: 2, # 'ว' + 42: 3, # 'ศ' + 46: 1, # 'ษ' + 18: 1, # 'ส' + 21: 0, # 'ห' + 4: 2, # 'อ' + 63: 0, # 'ฯ' + 22: 2, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 3, # 'ำ' + 23: 2, # 'ิ' + 13: 3, # 'ี' + 40: 2, # 'ึ' + 27: 1, # 'ื' + 32: 3, # 'ุ' + 35: 1, # 'ู' + 11: 0, # 'เ' + 28: 1, # 'แ' + 41: 0, # 'โ' + 29: 1, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 1, # '็' + 6: 3, # '่' + 7: 3, # '้' + 38: 2, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 48: { # 'ธ' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 1, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 1, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 2, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 2, # 'า' + 36: 0, # 'ำ' + 23: 3, # 'ิ' + 13: 3, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 2, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 3, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 3: { # 'น' + 5: 3, # 'ก' + 30: 2, # 'ข' + 24: 3, # 'ค' + 8: 1, # 'ง' + 26: 2, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 1, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 1, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 3, # 'ด' + 19: 3, # 'ต' + 44: 2, # 'ถ' + 14: 3, # 'ท' + 48: 3, # 'ธ' + 3: 2, # 'น' + 17: 2, # 'บ' + 25: 2, # 'ป' + 39: 2, # 'ผ' + 62: 0, # 'ฝ' + 31: 2, # 'พ' + 54: 1, # 'ฟ' + 45: 1, # 'ภ' + 9: 2, # 'ม' + 16: 2, # 'ย' + 2: 2, # 'ร' + 61: 1, # 'ฤ' + 15: 2, # 'ล' + 12: 3, # 'ว' + 42: 1, # 'ศ' + 46: 0, # 'ษ' + 18: 2, # 'ส' + 21: 2, # 'ห' + 4: 3, # 'อ' + 63: 1, # 'ฯ' + 22: 2, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 3, # 'ำ' + 23: 3, # 'ิ' + 13: 3, # 'ี' + 40: 3, # 'ึ' + 27: 3, # 'ื' + 32: 3, # 'ุ' + 35: 2, # 'ู' + 11: 3, # 'เ' + 28: 2, # 'แ' + 41: 3, # 'โ' + 29: 3, # 'ใ' + 33: 3, # 'ไ' + 50: 2, # 'ๆ' + 37: 1, # '็' + 6: 3, # '่' + 7: 3, # '้' + 38: 2, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 17: { # 'บ' + 5: 3, # 'ก' + 30: 2, # 'ข' + 24: 2, # 'ค' + 8: 1, # 'ง' + 26: 1, # 'จ' + 52: 1, # 'ฉ' + 34: 1, # 'ช' + 51: 1, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 1, # 'ด' + 19: 2, # 'ต' + 44: 1, # 'ถ' + 14: 3, # 'ท' + 48: 0, # 'ธ' + 3: 3, # 'น' + 17: 3, # 'บ' + 25: 2, # 'ป' + 39: 2, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 1, # 'ฟ' + 45: 1, # 'ภ' + 9: 1, # 'ม' + 16: 0, # 'ย' + 2: 3, # 'ร' + 61: 0, # 'ฤ' + 15: 2, # 'ล' + 12: 3, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 2, # 'ส' + 21: 2, # 'ห' + 4: 2, # 'อ' + 63: 1, # 'ฯ' + 22: 0, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 2, # 'ำ' + 23: 2, # 'ิ' + 13: 2, # 'ี' + 40: 0, # 'ึ' + 27: 2, # 'ื' + 32: 3, # 'ุ' + 35: 2, # 'ู' + 11: 2, # 'เ' + 28: 2, # 'แ' + 41: 1, # 'โ' + 29: 2, # 'ใ' + 33: 2, # 'ไ' + 50: 0, # 'ๆ' + 37: 1, # '็' + 6: 2, # '่' + 7: 2, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 25: { # 'ป' + 5: 2, # 'ก' + 30: 0, # 'ข' + 24: 1, # 'ค' + 8: 0, # 'ง' + 26: 1, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 1, # 'ซ' + 47: 0, # 'ญ' + 58: 1, # 'ฎ' + 57: 3, # 'ฏ' + 49: 1, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 1, # 'ด' + 19: 1, # 'ต' + 44: 1, # 'ถ' + 14: 1, # 'ท' + 48: 0, # 'ธ' + 3: 2, # 'น' + 17: 0, # 'บ' + 25: 1, # 'ป' + 39: 1, # 'ผ' + 62: 1, # 'ฝ' + 31: 1, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 1, # 'ม' + 16: 0, # 'ย' + 2: 3, # 'ร' + 61: 0, # 'ฤ' + 15: 3, # 'ล' + 12: 1, # 'ว' + 42: 0, # 'ศ' + 46: 1, # 'ษ' + 18: 2, # 'ส' + 21: 1, # 'ห' + 4: 2, # 'อ' + 63: 0, # 'ฯ' + 22: 1, # 'ะ' + 10: 3, # 'ั' + 1: 1, # 'า' + 36: 0, # 'ำ' + 23: 2, # 'ิ' + 13: 3, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 1, # 'ุ' + 35: 0, # 'ู' + 11: 1, # 'เ' + 28: 2, # 'แ' + 41: 0, # 'โ' + 29: 1, # 'ใ' + 33: 2, # 'ไ' + 50: 0, # 'ๆ' + 37: 3, # '็' + 6: 1, # '่' + 7: 2, # '้' + 38: 1, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 39: { # 'ผ' + 5: 1, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 1, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 2, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 1, # 'ม' + 16: 2, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 3, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 1, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 1, # 'ะ' + 10: 1, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 2, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 1, # 'ื' + 32: 0, # 'ุ' + 35: 3, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 3, # '่' + 7: 1, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 62: { # 'ฝ' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 1, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 1, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 1, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 1, # 'ี' + 40: 2, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 2, # '่' + 7: 1, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 31: { # 'พ' + 5: 1, # 'ก' + 30: 1, # 'ข' + 24: 1, # 'ค' + 8: 1, # 'ง' + 26: 1, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 1, # 'ณ' + 20: 1, # 'ด' + 19: 1, # 'ต' + 44: 0, # 'ถ' + 14: 2, # 'ท' + 48: 1, # 'ธ' + 3: 3, # 'น' + 17: 2, # 'บ' + 25: 0, # 'ป' + 39: 1, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 1, # 'ม' + 16: 2, # 'ย' + 2: 3, # 'ร' + 61: 2, # 'ฤ' + 15: 2, # 'ล' + 12: 2, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 1, # 'ส' + 21: 1, # 'ห' + 4: 2, # 'อ' + 63: 1, # 'ฯ' + 22: 0, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 0, # 'ำ' + 23: 3, # 'ิ' + 13: 2, # 'ี' + 40: 1, # 'ึ' + 27: 3, # 'ื' + 32: 1, # 'ุ' + 35: 2, # 'ู' + 11: 1, # 'เ' + 28: 1, # 'แ' + 41: 0, # 'โ' + 29: 1, # 'ใ' + 33: 1, # 'ไ' + 50: 0, # 'ๆ' + 37: 1, # '็' + 6: 0, # '่' + 7: 1, # '้' + 38: 3, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 54: { # 'ฟ' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 1, # 'ต' + 44: 0, # 'ถ' + 14: 1, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 2, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 1, # 'ร' + 61: 0, # 'ฤ' + 15: 2, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 1, # 'ส' + 21: 0, # 'ห' + 4: 1, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 2, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 1, # 'ิ' + 13: 1, # 'ี' + 40: 0, # 'ึ' + 27: 1, # 'ื' + 32: 1, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 1, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 2, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 45: { # 'ภ' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 1, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 3, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 1, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 0, # 'ำ' + 23: 1, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 2, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 1, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 9: { # 'ม' + 5: 2, # 'ก' + 30: 2, # 'ข' + 24: 2, # 'ค' + 8: 2, # 'ง' + 26: 2, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 1, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 1, # 'ณ' + 20: 2, # 'ด' + 19: 2, # 'ต' + 44: 1, # 'ถ' + 14: 2, # 'ท' + 48: 1, # 'ธ' + 3: 3, # 'น' + 17: 2, # 'บ' + 25: 2, # 'ป' + 39: 1, # 'ผ' + 62: 0, # 'ฝ' + 31: 3, # 'พ' + 54: 0, # 'ฟ' + 45: 1, # 'ภ' + 9: 2, # 'ม' + 16: 1, # 'ย' + 2: 2, # 'ร' + 61: 2, # 'ฤ' + 15: 2, # 'ล' + 12: 2, # 'ว' + 42: 1, # 'ศ' + 46: 1, # 'ษ' + 18: 3, # 'ส' + 21: 3, # 'ห' + 4: 3, # 'อ' + 63: 0, # 'ฯ' + 22: 1, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 0, # 'ำ' + 23: 3, # 'ิ' + 13: 3, # 'ี' + 40: 0, # 'ึ' + 27: 3, # 'ื' + 32: 3, # 'ุ' + 35: 3, # 'ู' + 11: 2, # 'เ' + 28: 2, # 'แ' + 41: 2, # 'โ' + 29: 2, # 'ใ' + 33: 2, # 'ไ' + 50: 1, # 'ๆ' + 37: 1, # '็' + 6: 3, # '่' + 7: 2, # '้' + 38: 1, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 16: { # 'ย' + 5: 3, # 'ก' + 30: 1, # 'ข' + 24: 2, # 'ค' + 8: 3, # 'ง' + 26: 2, # 'จ' + 52: 0, # 'ฉ' + 34: 2, # 'ช' + 51: 0, # 'ซ' + 47: 2, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 2, # 'ด' + 19: 2, # 'ต' + 44: 1, # 'ถ' + 14: 2, # 'ท' + 48: 1, # 'ธ' + 3: 3, # 'น' + 17: 3, # 'บ' + 25: 1, # 'ป' + 39: 1, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 0, # 'ฟ' + 45: 1, # 'ภ' + 9: 2, # 'ม' + 16: 0, # 'ย' + 2: 2, # 'ร' + 61: 0, # 'ฤ' + 15: 1, # 'ล' + 12: 3, # 'ว' + 42: 1, # 'ศ' + 46: 0, # 'ษ' + 18: 2, # 'ส' + 21: 1, # 'ห' + 4: 2, # 'อ' + 63: 0, # 'ฯ' + 22: 2, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 0, # 'ำ' + 23: 2, # 'ิ' + 13: 3, # 'ี' + 40: 1, # 'ึ' + 27: 2, # 'ื' + 32: 2, # 'ุ' + 35: 3, # 'ู' + 11: 2, # 'เ' + 28: 1, # 'แ' + 41: 1, # 'โ' + 29: 2, # 'ใ' + 33: 2, # 'ไ' + 50: 2, # 'ๆ' + 37: 1, # '็' + 6: 3, # '่' + 7: 2, # '้' + 38: 3, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 2: { # 'ร' + 5: 3, # 'ก' + 30: 2, # 'ข' + 24: 2, # 'ค' + 8: 3, # 'ง' + 26: 2, # 'จ' + 52: 0, # 'ฉ' + 34: 2, # 'ช' + 51: 1, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 3, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 3, # 'ณ' + 20: 2, # 'ด' + 19: 2, # 'ต' + 44: 3, # 'ถ' + 14: 3, # 'ท' + 48: 1, # 'ธ' + 3: 2, # 'น' + 17: 2, # 'บ' + 25: 3, # 'ป' + 39: 2, # 'ผ' + 62: 1, # 'ฝ' + 31: 2, # 'พ' + 54: 1, # 'ฟ' + 45: 1, # 'ภ' + 9: 3, # 'ม' + 16: 2, # 'ย' + 2: 3, # 'ร' + 61: 0, # 'ฤ' + 15: 2, # 'ล' + 12: 3, # 'ว' + 42: 2, # 'ศ' + 46: 2, # 'ษ' + 18: 2, # 'ส' + 21: 2, # 'ห' + 4: 3, # 'อ' + 63: 1, # 'ฯ' + 22: 3, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 0, # 'ำ' + 23: 3, # 'ิ' + 13: 3, # 'ี' + 40: 2, # 'ึ' + 27: 3, # 'ื' + 32: 3, # 'ุ' + 35: 3, # 'ู' + 11: 3, # 'เ' + 28: 3, # 'แ' + 41: 1, # 'โ' + 29: 2, # 'ใ' + 33: 1, # 'ไ' + 50: 0, # 'ๆ' + 37: 3, # '็' + 6: 3, # '่' + 7: 3, # '้' + 38: 3, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 61: { # 'ฤ' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 2, # 'ต' + 44: 0, # 'ถ' + 14: 2, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 1, # 'ม' + 16: 0, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 2, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 15: { # 'ล' + 5: 2, # 'ก' + 30: 3, # 'ข' + 24: 1, # 'ค' + 8: 3, # 'ง' + 26: 1, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 2, # 'ด' + 19: 2, # 'ต' + 44: 1, # 'ถ' + 14: 2, # 'ท' + 48: 0, # 'ธ' + 3: 1, # 'น' + 17: 2, # 'บ' + 25: 2, # 'ป' + 39: 1, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 1, # 'ภ' + 9: 1, # 'ม' + 16: 3, # 'ย' + 2: 1, # 'ร' + 61: 0, # 'ฤ' + 15: 1, # 'ล' + 12: 1, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 2, # 'ส' + 21: 1, # 'ห' + 4: 3, # 'อ' + 63: 2, # 'ฯ' + 22: 3, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 2, # 'ำ' + 23: 3, # 'ิ' + 13: 3, # 'ี' + 40: 2, # 'ึ' + 27: 3, # 'ื' + 32: 2, # 'ุ' + 35: 3, # 'ู' + 11: 2, # 'เ' + 28: 1, # 'แ' + 41: 1, # 'โ' + 29: 2, # 'ใ' + 33: 1, # 'ไ' + 50: 0, # 'ๆ' + 37: 2, # '็' + 6: 3, # '่' + 7: 3, # '้' + 38: 2, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 12: { # 'ว' + 5: 3, # 'ก' + 30: 2, # 'ข' + 24: 1, # 'ค' + 8: 3, # 'ง' + 26: 2, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 1, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 1, # 'ณ' + 20: 2, # 'ด' + 19: 1, # 'ต' + 44: 1, # 'ถ' + 14: 1, # 'ท' + 48: 0, # 'ธ' + 3: 3, # 'น' + 17: 2, # 'บ' + 25: 1, # 'ป' + 39: 1, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 1, # 'ฟ' + 45: 0, # 'ภ' + 9: 3, # 'ม' + 16: 3, # 'ย' + 2: 3, # 'ร' + 61: 0, # 'ฤ' + 15: 3, # 'ล' + 12: 1, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 2, # 'ส' + 21: 2, # 'ห' + 4: 2, # 'อ' + 63: 0, # 'ฯ' + 22: 2, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 0, # 'ำ' + 23: 3, # 'ิ' + 13: 2, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 2, # 'ุ' + 35: 0, # 'ู' + 11: 3, # 'เ' + 28: 2, # 'แ' + 41: 1, # 'โ' + 29: 1, # 'ใ' + 33: 2, # 'ไ' + 50: 1, # 'ๆ' + 37: 0, # '็' + 6: 3, # '่' + 7: 3, # '้' + 38: 1, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 42: { # 'ศ' + 5: 1, # 'ก' + 30: 0, # 'ข' + 24: 1, # 'ค' + 8: 0, # 'ง' + 26: 1, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 1, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 1, # 'ต' + 44: 0, # 'ถ' + 14: 1, # 'ท' + 48: 0, # 'ธ' + 3: 2, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 2, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 2, # 'ว' + 42: 1, # 'ศ' + 46: 2, # 'ษ' + 18: 1, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 2, # 'ั' + 1: 3, # 'า' + 36: 0, # 'ำ' + 23: 2, # 'ิ' + 13: 0, # 'ี' + 40: 3, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 2, # 'ู' + 11: 0, # 'เ' + 28: 1, # 'แ' + 41: 0, # 'โ' + 29: 1, # 'ใ' + 33: 1, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 1, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 46: { # 'ษ' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 2, # 'ฎ' + 57: 1, # 'ฏ' + 49: 2, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 3, # 'ณ' + 20: 0, # 'ด' + 19: 1, # 'ต' + 44: 0, # 'ถ' + 14: 1, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 1, # 'ภ' + 9: 1, # 'ม' + 16: 2, # 'ย' + 2: 2, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 1, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 2, # 'ะ' + 10: 2, # 'ั' + 1: 3, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 1, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 1, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 2, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 18: { # 'ส' + 5: 2, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 2, # 'ง' + 26: 1, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 3, # 'ด' + 19: 3, # 'ต' + 44: 3, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 3, # 'น' + 17: 2, # 'บ' + 25: 1, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 2, # 'ภ' + 9: 3, # 'ม' + 16: 1, # 'ย' + 2: 3, # 'ร' + 61: 0, # 'ฤ' + 15: 1, # 'ล' + 12: 2, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 2, # 'ห' + 4: 3, # 'อ' + 63: 0, # 'ฯ' + 22: 2, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 3, # 'ำ' + 23: 3, # 'ิ' + 13: 3, # 'ี' + 40: 2, # 'ึ' + 27: 3, # 'ื' + 32: 3, # 'ุ' + 35: 3, # 'ู' + 11: 2, # 'เ' + 28: 0, # 'แ' + 41: 1, # 'โ' + 29: 0, # 'ใ' + 33: 1, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 3, # '่' + 7: 1, # '้' + 38: 2, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 21: { # 'ห' + 5: 3, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 1, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 2, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 1, # 'ด' + 19: 3, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 3, # 'น' + 17: 0, # 'บ' + 25: 1, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 3, # 'ม' + 16: 2, # 'ย' + 2: 3, # 'ร' + 61: 0, # 'ฤ' + 15: 3, # 'ล' + 12: 2, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 3, # 'อ' + 63: 0, # 'ฯ' + 22: 1, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 0, # 'ำ' + 23: 1, # 'ิ' + 13: 1, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 1, # 'ุ' + 35: 1, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 3, # '็' + 6: 3, # '่' + 7: 3, # '้' + 38: 2, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 4: { # 'อ' + 5: 3, # 'ก' + 30: 1, # 'ข' + 24: 2, # 'ค' + 8: 3, # 'ง' + 26: 1, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 3, # 'ด' + 19: 2, # 'ต' + 44: 1, # 'ถ' + 14: 2, # 'ท' + 48: 1, # 'ธ' + 3: 3, # 'น' + 17: 3, # 'บ' + 25: 1, # 'ป' + 39: 1, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 1, # 'ฟ' + 45: 1, # 'ภ' + 9: 3, # 'ม' + 16: 3, # 'ย' + 2: 3, # 'ร' + 61: 0, # 'ฤ' + 15: 2, # 'ล' + 12: 2, # 'ว' + 42: 1, # 'ศ' + 46: 0, # 'ษ' + 18: 2, # 'ส' + 21: 2, # 'ห' + 4: 3, # 'อ' + 63: 0, # 'ฯ' + 22: 2, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 2, # 'ำ' + 23: 2, # 'ิ' + 13: 3, # 'ี' + 40: 0, # 'ึ' + 27: 3, # 'ื' + 32: 3, # 'ุ' + 35: 0, # 'ู' + 11: 3, # 'เ' + 28: 1, # 'แ' + 41: 1, # 'โ' + 29: 2, # 'ใ' + 33: 2, # 'ไ' + 50: 1, # 'ๆ' + 37: 1, # '็' + 6: 2, # '่' + 7: 2, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 63: { # 'ฯ' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 2, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 22: { # 'ะ' + 5: 3, # 'ก' + 30: 1, # 'ข' + 24: 2, # 'ค' + 8: 1, # 'ง' + 26: 2, # 'จ' + 52: 0, # 'ฉ' + 34: 3, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 3, # 'ด' + 19: 3, # 'ต' + 44: 1, # 'ถ' + 14: 3, # 'ท' + 48: 1, # 'ธ' + 3: 2, # 'น' + 17: 3, # 'บ' + 25: 2, # 'ป' + 39: 1, # 'ผ' + 62: 0, # 'ฝ' + 31: 2, # 'พ' + 54: 0, # 'ฟ' + 45: 1, # 'ภ' + 9: 3, # 'ม' + 16: 2, # 'ย' + 2: 2, # 'ร' + 61: 0, # 'ฤ' + 15: 2, # 'ล' + 12: 2, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 3, # 'ส' + 21: 3, # 'ห' + 4: 2, # 'อ' + 63: 1, # 'ฯ' + 22: 1, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 3, # 'เ' + 28: 2, # 'แ' + 41: 1, # 'โ' + 29: 2, # 'ใ' + 33: 2, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 10: { # 'ั' + 5: 3, # 'ก' + 30: 0, # 'ข' + 24: 1, # 'ค' + 8: 3, # 'ง' + 26: 3, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 0, # 'ซ' + 47: 3, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 2, # 'ฐ' + 53: 0, # 'ฑ' + 55: 3, # 'ฒ' + 43: 3, # 'ณ' + 20: 3, # 'ด' + 19: 3, # 'ต' + 44: 0, # 'ถ' + 14: 2, # 'ท' + 48: 0, # 'ธ' + 3: 3, # 'น' + 17: 3, # 'บ' + 25: 1, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 2, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 3, # 'ม' + 16: 3, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 2, # 'ล' + 12: 3, # 'ว' + 42: 2, # 'ศ' + 46: 0, # 'ษ' + 18: 3, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 3, # '่' + 7: 3, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 1: { # 'า' + 5: 3, # 'ก' + 30: 2, # 'ข' + 24: 3, # 'ค' + 8: 3, # 'ง' + 26: 3, # 'จ' + 52: 0, # 'ฉ' + 34: 3, # 'ช' + 51: 1, # 'ซ' + 47: 2, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 3, # 'ณ' + 20: 3, # 'ด' + 19: 3, # 'ต' + 44: 1, # 'ถ' + 14: 3, # 'ท' + 48: 2, # 'ธ' + 3: 3, # 'น' + 17: 3, # 'บ' + 25: 2, # 'ป' + 39: 1, # 'ผ' + 62: 1, # 'ฝ' + 31: 3, # 'พ' + 54: 1, # 'ฟ' + 45: 1, # 'ภ' + 9: 3, # 'ม' + 16: 3, # 'ย' + 2: 3, # 'ร' + 61: 0, # 'ฤ' + 15: 3, # 'ล' + 12: 3, # 'ว' + 42: 2, # 'ศ' + 46: 3, # 'ษ' + 18: 3, # 'ส' + 21: 3, # 'ห' + 4: 2, # 'อ' + 63: 1, # 'ฯ' + 22: 3, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 3, # 'เ' + 28: 2, # 'แ' + 41: 1, # 'โ' + 29: 2, # 'ใ' + 33: 2, # 'ไ' + 50: 1, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 36: { # 'ำ' + 5: 2, # 'ก' + 30: 1, # 'ข' + 24: 3, # 'ค' + 8: 2, # 'ง' + 26: 1, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 1, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 1, # 'ด' + 19: 1, # 'ต' + 44: 1, # 'ถ' + 14: 1, # 'ท' + 48: 0, # 'ธ' + 3: 3, # 'น' + 17: 1, # 'บ' + 25: 1, # 'ป' + 39: 1, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 0, # 'ฟ' + 45: 1, # 'ภ' + 9: 1, # 'ม' + 16: 0, # 'ย' + 2: 2, # 'ร' + 61: 0, # 'ฤ' + 15: 2, # 'ล' + 12: 1, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 1, # 'ส' + 21: 3, # 'ห' + 4: 1, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 3, # 'เ' + 28: 2, # 'แ' + 41: 1, # 'โ' + 29: 2, # 'ใ' + 33: 2, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 23: { # 'ิ' + 5: 3, # 'ก' + 30: 1, # 'ข' + 24: 2, # 'ค' + 8: 3, # 'ง' + 26: 3, # 'จ' + 52: 0, # 'ฉ' + 34: 3, # 'ช' + 51: 0, # 'ซ' + 47: 2, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 3, # 'ด' + 19: 3, # 'ต' + 44: 1, # 'ถ' + 14: 3, # 'ท' + 48: 3, # 'ธ' + 3: 3, # 'น' + 17: 3, # 'บ' + 25: 2, # 'ป' + 39: 2, # 'ผ' + 62: 0, # 'ฝ' + 31: 3, # 'พ' + 54: 1, # 'ฟ' + 45: 2, # 'ภ' + 9: 3, # 'ม' + 16: 2, # 'ย' + 2: 2, # 'ร' + 61: 0, # 'ฤ' + 15: 2, # 'ล' + 12: 3, # 'ว' + 42: 3, # 'ศ' + 46: 2, # 'ษ' + 18: 2, # 'ส' + 21: 3, # 'ห' + 4: 1, # 'อ' + 63: 1, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 3, # 'เ' + 28: 1, # 'แ' + 41: 1, # 'โ' + 29: 1, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 3, # '่' + 7: 2, # '้' + 38: 2, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 13: { # 'ี' + 5: 3, # 'ก' + 30: 2, # 'ข' + 24: 2, # 'ค' + 8: 0, # 'ง' + 26: 1, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 2, # 'ด' + 19: 1, # 'ต' + 44: 0, # 'ถ' + 14: 2, # 'ท' + 48: 0, # 'ธ' + 3: 1, # 'น' + 17: 2, # 'บ' + 25: 2, # 'ป' + 39: 1, # 'ผ' + 62: 0, # 'ฝ' + 31: 2, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 2, # 'ม' + 16: 3, # 'ย' + 2: 2, # 'ร' + 61: 0, # 'ฤ' + 15: 1, # 'ล' + 12: 2, # 'ว' + 42: 1, # 'ศ' + 46: 0, # 'ษ' + 18: 2, # 'ส' + 21: 1, # 'ห' + 4: 2, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 2, # 'เ' + 28: 2, # 'แ' + 41: 1, # 'โ' + 29: 1, # 'ใ' + 33: 1, # 'ไ' + 50: 1, # 'ๆ' + 37: 0, # '็' + 6: 3, # '่' + 7: 3, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 40: { # 'ึ' + 5: 3, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 3, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 1, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 1, # 'ม' + 16: 0, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 3, # '่' + 7: 3, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 27: { # 'ื' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 1, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 2, # 'น' + 17: 3, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 2, # 'ม' + 16: 0, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 3, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 3, # '่' + 7: 3, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 32: { # 'ุ' + 5: 3, # 'ก' + 30: 2, # 'ข' + 24: 3, # 'ค' + 8: 3, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 2, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 1, # 'ฒ' + 43: 3, # 'ณ' + 20: 3, # 'ด' + 19: 3, # 'ต' + 44: 1, # 'ถ' + 14: 2, # 'ท' + 48: 1, # 'ธ' + 3: 2, # 'น' + 17: 2, # 'บ' + 25: 2, # 'ป' + 39: 2, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 0, # 'ฟ' + 45: 1, # 'ภ' + 9: 3, # 'ม' + 16: 1, # 'ย' + 2: 2, # 'ร' + 61: 0, # 'ฤ' + 15: 2, # 'ล' + 12: 1, # 'ว' + 42: 1, # 'ศ' + 46: 2, # 'ษ' + 18: 1, # 'ส' + 21: 1, # 'ห' + 4: 1, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 1, # 'เ' + 28: 0, # 'แ' + 41: 1, # 'โ' + 29: 0, # 'ใ' + 33: 1, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 3, # '่' + 7: 2, # '้' + 38: 1, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 35: { # 'ู' + 5: 3, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 2, # 'ง' + 26: 1, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 2, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 1, # 'ณ' + 20: 2, # 'ด' + 19: 2, # 'ต' + 44: 0, # 'ถ' + 14: 1, # 'ท' + 48: 0, # 'ธ' + 3: 2, # 'น' + 17: 0, # 'บ' + 25: 3, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 2, # 'ม' + 16: 0, # 'ย' + 2: 1, # 'ร' + 61: 0, # 'ฤ' + 15: 3, # 'ล' + 12: 1, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 1, # 'เ' + 28: 1, # 'แ' + 41: 1, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 3, # '่' + 7: 3, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 11: { # 'เ' + 5: 3, # 'ก' + 30: 3, # 'ข' + 24: 3, # 'ค' + 8: 2, # 'ง' + 26: 3, # 'จ' + 52: 3, # 'ฉ' + 34: 3, # 'ช' + 51: 2, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 1, # 'ณ' + 20: 3, # 'ด' + 19: 3, # 'ต' + 44: 1, # 'ถ' + 14: 3, # 'ท' + 48: 1, # 'ธ' + 3: 3, # 'น' + 17: 3, # 'บ' + 25: 3, # 'ป' + 39: 2, # 'ผ' + 62: 1, # 'ฝ' + 31: 3, # 'พ' + 54: 1, # 'ฟ' + 45: 3, # 'ภ' + 9: 3, # 'ม' + 16: 2, # 'ย' + 2: 3, # 'ร' + 61: 0, # 'ฤ' + 15: 3, # 'ล' + 12: 3, # 'ว' + 42: 2, # 'ศ' + 46: 0, # 'ษ' + 18: 3, # 'ส' + 21: 3, # 'ห' + 4: 3, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 28: { # 'แ' + 5: 3, # 'ก' + 30: 2, # 'ข' + 24: 2, # 'ค' + 8: 1, # 'ง' + 26: 2, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 2, # 'ด' + 19: 3, # 'ต' + 44: 2, # 'ถ' + 14: 3, # 'ท' + 48: 0, # 'ธ' + 3: 3, # 'น' + 17: 3, # 'บ' + 25: 2, # 'ป' + 39: 3, # 'ผ' + 62: 0, # 'ฝ' + 31: 2, # 'พ' + 54: 2, # 'ฟ' + 45: 0, # 'ภ' + 9: 2, # 'ม' + 16: 2, # 'ย' + 2: 2, # 'ร' + 61: 0, # 'ฤ' + 15: 3, # 'ล' + 12: 2, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 3, # 'ส' + 21: 3, # 'ห' + 4: 1, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 41: { # 'โ' + 5: 2, # 'ก' + 30: 1, # 'ข' + 24: 2, # 'ค' + 8: 0, # 'ง' + 26: 1, # 'จ' + 52: 1, # 'ฉ' + 34: 1, # 'ช' + 51: 1, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 3, # 'ด' + 19: 2, # 'ต' + 44: 0, # 'ถ' + 14: 2, # 'ท' + 48: 0, # 'ธ' + 3: 3, # 'น' + 17: 1, # 'บ' + 25: 3, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 1, # 'ฟ' + 45: 1, # 'ภ' + 9: 1, # 'ม' + 16: 2, # 'ย' + 2: 2, # 'ร' + 61: 0, # 'ฤ' + 15: 3, # 'ล' + 12: 0, # 'ว' + 42: 1, # 'ศ' + 46: 0, # 'ษ' + 18: 2, # 'ส' + 21: 0, # 'ห' + 4: 2, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 29: { # 'ใ' + 5: 2, # 'ก' + 30: 0, # 'ข' + 24: 1, # 'ค' + 8: 0, # 'ง' + 26: 3, # 'จ' + 52: 0, # 'ฉ' + 34: 3, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 3, # 'ด' + 19: 1, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 3, # 'น' + 17: 2, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 1, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 3, # 'ส' + 21: 3, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 33: { # 'ไ' + 5: 1, # 'ก' + 30: 2, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 1, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 3, # 'ด' + 19: 1, # 'ต' + 44: 0, # 'ถ' + 14: 3, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 1, # 'บ' + 25: 3, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 2, # 'ฟ' + 45: 0, # 'ภ' + 9: 3, # 'ม' + 16: 0, # 'ย' + 2: 3, # 'ร' + 61: 0, # 'ฤ' + 15: 1, # 'ล' + 12: 3, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 1, # 'ส' + 21: 2, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 50: { # 'ๆ' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 37: { # '็' + 5: 2, # 'ก' + 30: 1, # 'ข' + 24: 2, # 'ค' + 8: 2, # 'ง' + 26: 3, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 1, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 1, # 'ด' + 19: 2, # 'ต' + 44: 0, # 'ถ' + 14: 1, # 'ท' + 48: 0, # 'ธ' + 3: 3, # 'น' + 17: 3, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 2, # 'ม' + 16: 1, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 2, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 1, # 'ส' + 21: 0, # 'ห' + 4: 1, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 1, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 1, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 6: { # '่' + 5: 2, # 'ก' + 30: 1, # 'ข' + 24: 2, # 'ค' + 8: 3, # 'ง' + 26: 2, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 1, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 1, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 1, # 'ด' + 19: 2, # 'ต' + 44: 1, # 'ถ' + 14: 2, # 'ท' + 48: 1, # 'ธ' + 3: 3, # 'น' + 17: 1, # 'บ' + 25: 2, # 'ป' + 39: 2, # 'ผ' + 62: 1, # 'ฝ' + 31: 1, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 3, # 'ม' + 16: 3, # 'ย' + 2: 2, # 'ร' + 61: 0, # 'ฤ' + 15: 2, # 'ล' + 12: 3, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 2, # 'ส' + 21: 1, # 'ห' + 4: 3, # 'อ' + 63: 0, # 'ฯ' + 22: 1, # 'ะ' + 10: 0, # 'ั' + 1: 3, # 'า' + 36: 2, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 3, # 'เ' + 28: 2, # 'แ' + 41: 1, # 'โ' + 29: 2, # 'ใ' + 33: 2, # 'ไ' + 50: 1, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 7: { # '้' + 5: 2, # 'ก' + 30: 1, # 'ข' + 24: 2, # 'ค' + 8: 3, # 'ง' + 26: 2, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 1, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 1, # 'ด' + 19: 2, # 'ต' + 44: 1, # 'ถ' + 14: 2, # 'ท' + 48: 0, # 'ธ' + 3: 3, # 'น' + 17: 2, # 'บ' + 25: 2, # 'ป' + 39: 2, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 1, # 'ฟ' + 45: 0, # 'ภ' + 9: 3, # 'ม' + 16: 2, # 'ย' + 2: 2, # 'ร' + 61: 0, # 'ฤ' + 15: 1, # 'ล' + 12: 3, # 'ว' + 42: 1, # 'ศ' + 46: 0, # 'ษ' + 18: 2, # 'ส' + 21: 2, # 'ห' + 4: 3, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 3, # 'า' + 36: 2, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 2, # 'เ' + 28: 2, # 'แ' + 41: 1, # 'โ' + 29: 2, # 'ใ' + 33: 2, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 38: { # '์' + 5: 2, # 'ก' + 30: 1, # 'ข' + 24: 1, # 'ค' + 8: 0, # 'ง' + 26: 1, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 2, # 'ด' + 19: 1, # 'ต' + 44: 1, # 'ถ' + 14: 1, # 'ท' + 48: 0, # 'ธ' + 3: 1, # 'น' + 17: 1, # 'บ' + 25: 1, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 1, # 'ฟ' + 45: 0, # 'ภ' + 9: 2, # 'ม' + 16: 0, # 'ย' + 2: 1, # 'ร' + 61: 1, # 'ฤ' + 15: 1, # 'ล' + 12: 1, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 1, # 'ส' + 21: 1, # 'ห' + 4: 2, # 'อ' + 63: 1, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 2, # 'เ' + 28: 2, # 'แ' + 41: 1, # 'โ' + 29: 1, # 'ใ' + 33: 1, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 56: { # '๑' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 2, # '๑' + 59: 1, # '๒' + 60: 1, # '๕' + }, + 59: { # '๒' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 1, # '๑' + 59: 1, # '๒' + 60: 3, # '๕' + }, + 60: { # '๕' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 2, # '๑' + 59: 1, # '๒' + 60: 0, # '๕' + }, +} + +# 255: Undefined characters that did not exist in training text +# 254: Carriage/Return +# 253: symbol (punctuation) that does not belong to word +# 252: 0 - 9 +# 251: Control characters + +# Character Mapping Table(s): +TIS_620_THAI_CHAR_TO_ORDER = { + 0: 255, # '\x00' + 1: 255, # '\x01' + 2: 255, # '\x02' + 3: 255, # '\x03' + 4: 255, # '\x04' + 5: 255, # '\x05' + 6: 255, # '\x06' + 7: 255, # '\x07' + 8: 255, # '\x08' + 9: 255, # '\t' + 10: 254, # '\n' + 11: 255, # '\x0b' + 12: 255, # '\x0c' + 13: 254, # '\r' + 14: 255, # '\x0e' + 15: 255, # '\x0f' + 16: 255, # '\x10' + 17: 255, # '\x11' + 18: 255, # '\x12' + 19: 255, # '\x13' + 20: 255, # '\x14' + 21: 255, # '\x15' + 22: 255, # '\x16' + 23: 255, # '\x17' + 24: 255, # '\x18' + 25: 255, # '\x19' + 26: 255, # '\x1a' + 27: 255, # '\x1b' + 28: 255, # '\x1c' + 29: 255, # '\x1d' + 30: 255, # '\x1e' + 31: 255, # '\x1f' + 32: 253, # ' ' + 33: 253, # '!' + 34: 253, # '"' + 35: 253, # '#' + 36: 253, # '$' + 37: 253, # '%' + 38: 253, # '&' + 39: 253, # "'" + 40: 253, # '(' + 41: 253, # ')' + 42: 253, # '*' + 43: 253, # '+' + 44: 253, # ',' + 45: 253, # '-' + 46: 253, # '.' + 47: 253, # '/' + 48: 252, # '0' + 49: 252, # '1' + 50: 252, # '2' + 51: 252, # '3' + 52: 252, # '4' + 53: 252, # '5' + 54: 252, # '6' + 55: 252, # '7' + 56: 252, # '8' + 57: 252, # '9' + 58: 253, # ':' + 59: 253, # ';' + 60: 253, # '<' + 61: 253, # '=' + 62: 253, # '>' + 63: 253, # '?' + 64: 253, # '@' + 65: 182, # 'A' + 66: 106, # 'B' + 67: 107, # 'C' + 68: 100, # 'D' + 69: 183, # 'E' + 70: 184, # 'F' + 71: 185, # 'G' + 72: 101, # 'H' + 73: 94, # 'I' + 74: 186, # 'J' + 75: 187, # 'K' + 76: 108, # 'L' + 77: 109, # 'M' + 78: 110, # 'N' + 79: 111, # 'O' + 80: 188, # 'P' + 81: 189, # 'Q' + 82: 190, # 'R' + 83: 89, # 'S' + 84: 95, # 'T' + 85: 112, # 'U' + 86: 113, # 'V' + 87: 191, # 'W' + 88: 192, # 'X' + 89: 193, # 'Y' + 90: 194, # 'Z' + 91: 253, # '[' + 92: 253, # '\\' + 93: 253, # ']' + 94: 253, # '^' + 95: 253, # '_' + 96: 253, # '`' + 97: 64, # 'a' + 98: 72, # 'b' + 99: 73, # 'c' + 100: 114, # 'd' + 101: 74, # 'e' + 102: 115, # 'f' + 103: 116, # 'g' + 104: 102, # 'h' + 105: 81, # 'i' + 106: 201, # 'j' + 107: 117, # 'k' + 108: 90, # 'l' + 109: 103, # 'm' + 110: 78, # 'n' + 111: 82, # 'o' + 112: 96, # 'p' + 113: 202, # 'q' + 114: 91, # 'r' + 115: 79, # 's' + 116: 84, # 't' + 117: 104, # 'u' + 118: 105, # 'v' + 119: 97, # 'w' + 120: 98, # 'x' + 121: 92, # 'y' + 122: 203, # 'z' + 123: 253, # '{' + 124: 253, # '|' + 125: 253, # '}' + 126: 253, # '~' + 127: 253, # '\x7f' + 128: 209, # '\x80' + 129: 210, # '\x81' + 130: 211, # '\x82' + 131: 212, # '\x83' + 132: 213, # '\x84' + 133: 88, # '\x85' + 134: 214, # '\x86' + 135: 215, # '\x87' + 136: 216, # '\x88' + 137: 217, # '\x89' + 138: 218, # '\x8a' + 139: 219, # '\x8b' + 140: 220, # '\x8c' + 141: 118, # '\x8d' + 142: 221, # '\x8e' + 143: 222, # '\x8f' + 144: 223, # '\x90' + 145: 224, # '\x91' + 146: 99, # '\x92' + 147: 85, # '\x93' + 148: 83, # '\x94' + 149: 225, # '\x95' + 150: 226, # '\x96' + 151: 227, # '\x97' + 152: 228, # '\x98' + 153: 229, # '\x99' + 154: 230, # '\x9a' + 155: 231, # '\x9b' + 156: 232, # '\x9c' + 157: 233, # '\x9d' + 158: 234, # '\x9e' + 159: 235, # '\x9f' + 160: 236, # None + 161: 5, # 'ก' + 162: 30, # 'ข' + 163: 237, # 'ฃ' + 164: 24, # 'ค' + 165: 238, # 'ฅ' + 166: 75, # 'ฆ' + 167: 8, # 'ง' + 168: 26, # 'จ' + 169: 52, # 'ฉ' + 170: 34, # 'ช' + 171: 51, # 'ซ' + 172: 119, # 'ฌ' + 173: 47, # 'ญ' + 174: 58, # 'ฎ' + 175: 57, # 'ฏ' + 176: 49, # 'ฐ' + 177: 53, # 'ฑ' + 178: 55, # 'ฒ' + 179: 43, # 'ณ' + 180: 20, # 'ด' + 181: 19, # 'ต' + 182: 44, # 'ถ' + 183: 14, # 'ท' + 184: 48, # 'ธ' + 185: 3, # 'น' + 186: 17, # 'บ' + 187: 25, # 'ป' + 188: 39, # 'ผ' + 189: 62, # 'ฝ' + 190: 31, # 'พ' + 191: 54, # 'ฟ' + 192: 45, # 'ภ' + 193: 9, # 'ม' + 194: 16, # 'ย' + 195: 2, # 'ร' + 196: 61, # 'ฤ' + 197: 15, # 'ล' + 198: 239, # 'ฦ' + 199: 12, # 'ว' + 200: 42, # 'ศ' + 201: 46, # 'ษ' + 202: 18, # 'ส' + 203: 21, # 'ห' + 204: 76, # 'ฬ' + 205: 4, # 'อ' + 206: 66, # 'ฮ' + 207: 63, # 'ฯ' + 208: 22, # 'ะ' + 209: 10, # 'ั' + 210: 1, # 'า' + 211: 36, # 'ำ' + 212: 23, # 'ิ' + 213: 13, # 'ี' + 214: 40, # 'ึ' + 215: 27, # 'ื' + 216: 32, # 'ุ' + 217: 35, # 'ู' + 218: 86, # 'ฺ' + 219: 240, # None + 220: 241, # None + 221: 242, # None + 222: 243, # None + 223: 244, # '฿' + 224: 11, # 'เ' + 225: 28, # 'แ' + 226: 41, # 'โ' + 227: 29, # 'ใ' + 228: 33, # 'ไ' + 229: 245, # 'ๅ' + 230: 50, # 'ๆ' + 231: 37, # '็' + 232: 6, # '่' + 233: 7, # '้' + 234: 67, # '๊' + 235: 77, # '๋' + 236: 38, # '์' + 237: 93, # 'ํ' + 238: 246, # '๎' + 239: 247, # '๏' + 240: 68, # '๐' + 241: 56, # '๑' + 242: 59, # '๒' + 243: 65, # '๓' + 244: 69, # '๔' + 245: 60, # '๕' + 246: 70, # '๖' + 247: 80, # '๗' + 248: 71, # '๘' + 249: 87, # '๙' + 250: 248, # '๚' + 251: 249, # '๛' + 252: 250, # None + 253: 251, # None + 254: 252, # None + 255: 253, # None +} + +TIS_620_THAI_MODEL = SingleByteCharSetModel( + charset_name="TIS-620", + language="Thai", + char_to_order_map=TIS_620_THAI_CHAR_TO_ORDER, + language_model=THAI_LANG_MODEL, + typical_positive_ratio=0.926386, + keep_ascii_letters=False, + alphabet="กขฃคฅฆงจฉชซฌญฎฏฐฑฒณดตถทธนบปผฝพฟภมยรฤลฦวศษสหฬอฮฯะัาำิีึืฺุู฿เแโใไๅๆ็่้๊๋์ํ๎๏๐๑๒๓๔๕๖๗๘๙๚๛", +) diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/langturkishmodel.py b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/langturkishmodel.py new file mode 100644 index 0000000..291857c --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/langturkishmodel.py @@ -0,0 +1,4380 @@ +from pip._vendor.chardet.sbcharsetprober import SingleByteCharSetModel + +# 3: Positive +# 2: Likely +# 1: Unlikely +# 0: Negative + +TURKISH_LANG_MODEL = { + 23: { # 'A' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 0, # 'b' + 28: 0, # 'c' + 12: 2, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 1, # 'g' + 25: 1, # 'h' + 3: 1, # 'i' + 24: 0, # 'j' + 10: 2, # 'k' + 5: 1, # 'l' + 13: 1, # 'm' + 4: 1, # 'n' + 15: 0, # 'o' + 26: 0, # 'p' + 7: 1, # 'r' + 8: 1, # 's' + 9: 1, # 't' + 14: 1, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 3, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 1, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 0, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 37: { # 'B' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 2, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 2, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 1, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 1, # 'P' + 44: 0, # 'R' + 35: 1, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 1, # 'Y' + 56: 0, # 'Z' + 1: 2, # 'a' + 21: 0, # 'b' + 28: 2, # 'c' + 12: 0, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 0, # 'j' + 10: 0, # 'k' + 5: 0, # 'l' + 13: 1, # 'm' + 4: 1, # 'n' + 15: 0, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 2, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 1, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 1, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 0, # 'ı' + 40: 1, # 'Ş' + 19: 1, # 'ş' + }, + 47: { # 'C' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 1, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 1, # 'L' + 20: 0, # 'M' + 46: 1, # 'N' + 42: 0, # 'O' + 48: 1, # 'P' + 44: 1, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 1, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 0, # 'b' + 28: 2, # 'c' + 12: 0, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 2, # 'j' + 10: 1, # 'k' + 5: 2, # 'l' + 13: 2, # 'm' + 4: 2, # 'n' + 15: 1, # 'o' + 26: 0, # 'p' + 7: 2, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 3, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 2, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 1, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 1, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 1, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 39: { # 'D' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 1, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 1, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 1, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 2, # 'a' + 21: 0, # 'b' + 28: 2, # 'c' + 12: 0, # 'd' + 2: 2, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 0, # 'j' + 10: 0, # 'k' + 5: 1, # 'l' + 13: 3, # 'm' + 4: 0, # 'n' + 15: 1, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 1, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 1, # 'z' + 63: 0, # '·' + 54: 1, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 1, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 0, # 'ü' + 30: 1, # 'ğ' + 41: 0, # 'İ' + 6: 1, # 'ı' + 40: 1, # 'Ş' + 19: 0, # 'ş' + }, + 29: { # 'E' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 1, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 1, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 0, # 'b' + 28: 0, # 'c' + 12: 2, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 1, # 'g' + 25: 0, # 'h' + 3: 1, # 'i' + 24: 1, # 'j' + 10: 0, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 1, # 's' + 9: 1, # 't' + 14: 1, # 'u' + 32: 1, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 2, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 52: { # 'F' + 23: 0, # 'A' + 37: 1, # 'B' + 47: 1, # 'C' + 39: 1, # 'D' + 29: 1, # 'E' + 52: 2, # 'F' + 36: 0, # 'G' + 45: 2, # 'H' + 53: 1, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 1, # 'M' + 46: 1, # 'N' + 42: 1, # 'O' + 48: 2, # 'P' + 44: 1, # 'R' + 35: 1, # 'S' + 31: 1, # 'T' + 51: 1, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 2, # 'Y' + 56: 0, # 'Z' + 1: 0, # 'a' + 21: 1, # 'b' + 28: 1, # 'c' + 12: 1, # 'd' + 2: 0, # 'e' + 18: 1, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 2, # 'i' + 24: 1, # 'j' + 10: 0, # 'k' + 5: 0, # 'l' + 13: 1, # 'm' + 4: 2, # 'n' + 15: 1, # 'o' + 26: 0, # 'p' + 7: 2, # 'r' + 8: 1, # 's' + 9: 1, # 't' + 14: 1, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 1, # 'y' + 22: 1, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 1, # 'Ö' + 55: 2, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 2, # 'ö' + 17: 0, # 'ü' + 30: 1, # 'ğ' + 41: 1, # 'İ' + 6: 2, # 'ı' + 40: 0, # 'Ş' + 19: 2, # 'ş' + }, + 36: { # 'G' + 23: 1, # 'A' + 37: 0, # 'B' + 47: 1, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 1, # 'F' + 36: 2, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 2, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 2, # 'N' + 42: 1, # 'O' + 48: 1, # 'P' + 44: 1, # 'R' + 35: 1, # 'S' + 31: 0, # 'T' + 51: 1, # 'U' + 38: 2, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 0, # 'b' + 28: 1, # 'c' + 12: 0, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 1, # 'j' + 10: 1, # 'k' + 5: 0, # 'l' + 13: 3, # 'm' + 4: 2, # 'n' + 15: 0, # 'o' + 26: 1, # 'p' + 7: 0, # 'r' + 8: 1, # 's' + 9: 1, # 't' + 14: 3, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 1, # 'x' + 11: 0, # 'y' + 22: 2, # 'z' + 63: 0, # '·' + 54: 1, # 'Ç' + 50: 2, # 'Ö' + 55: 0, # 'Ü' + 59: 1, # 'â' + 33: 2, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 0, # 'ü' + 30: 1, # 'ğ' + 41: 1, # 'İ' + 6: 2, # 'ı' + 40: 2, # 'Ş' + 19: 1, # 'ş' + }, + 45: { # 'H' + 23: 0, # 'A' + 37: 1, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 2, # 'F' + 36: 2, # 'G' + 45: 1, # 'H' + 53: 1, # 'I' + 60: 0, # 'J' + 16: 2, # 'K' + 49: 1, # 'L' + 20: 0, # 'M' + 46: 1, # 'N' + 42: 1, # 'O' + 48: 1, # 'P' + 44: 0, # 'R' + 35: 2, # 'S' + 31: 0, # 'T' + 51: 1, # 'U' + 38: 2, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 0, # 'b' + 28: 2, # 'c' + 12: 0, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 2, # 'i' + 24: 0, # 'j' + 10: 1, # 'k' + 5: 0, # 'l' + 13: 2, # 'm' + 4: 0, # 'n' + 15: 1, # 'o' + 26: 1, # 'p' + 7: 1, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 3, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 2, # 'z' + 63: 0, # '·' + 54: 1, # 'Ç' + 50: 1, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 1, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 0, # 'ü' + 30: 2, # 'ğ' + 41: 1, # 'İ' + 6: 0, # 'ı' + 40: 2, # 'Ş' + 19: 1, # 'ş' + }, + 53: { # 'I' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 1, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 2, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 1, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 2, # 'a' + 21: 0, # 'b' + 28: 2, # 'c' + 12: 0, # 'd' + 2: 2, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 0, # 'j' + 10: 0, # 'k' + 5: 2, # 'l' + 13: 2, # 'm' + 4: 0, # 'n' + 15: 0, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 2, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 2, # 'z' + 63: 0, # '·' + 54: 1, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 2, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 0, # 'ı' + 40: 1, # 'Ş' + 19: 1, # 'ş' + }, + 60: { # 'J' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 1, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 0, # 'a' + 21: 1, # 'b' + 28: 0, # 'c' + 12: 1, # 'd' + 2: 0, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 1, # 'i' + 24: 0, # 'j' + 10: 0, # 'k' + 5: 0, # 'l' + 13: 0, # 'm' + 4: 1, # 'n' + 15: 0, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 1, # 's' + 9: 0, # 't' + 14: 0, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 0, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 16: { # 'K' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 3, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 2, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 2, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 2, # 'a' + 21: 3, # 'b' + 28: 0, # 'c' + 12: 3, # 'd' + 2: 1, # 'e' + 18: 3, # 'f' + 27: 3, # 'g' + 25: 3, # 'h' + 3: 3, # 'i' + 24: 2, # 'j' + 10: 3, # 'k' + 5: 0, # 'l' + 13: 0, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 1, # 'p' + 7: 3, # 'r' + 8: 3, # 's' + 9: 3, # 't' + 14: 0, # 'u' + 32: 3, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 2, # 'y' + 22: 1, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 2, # 'ü' + 30: 0, # 'ğ' + 41: 1, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 49: { # 'L' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 2, # 'E' + 52: 0, # 'F' + 36: 1, # 'G' + 45: 1, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 1, # 'M' + 46: 0, # 'N' + 42: 2, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 1, # 'Y' + 56: 0, # 'Z' + 1: 0, # 'a' + 21: 3, # 'b' + 28: 0, # 'c' + 12: 2, # 'd' + 2: 0, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 2, # 'i' + 24: 0, # 'j' + 10: 1, # 'k' + 5: 0, # 'l' + 13: 0, # 'm' + 4: 2, # 'n' + 15: 1, # 'o' + 26: 1, # 'p' + 7: 1, # 'r' + 8: 1, # 's' + 9: 1, # 't' + 14: 0, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 2, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 2, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 1, # 'ü' + 30: 1, # 'ğ' + 41: 0, # 'İ' + 6: 2, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 20: { # 'M' + 23: 1, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 1, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 2, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 1, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 2, # 'b' + 28: 0, # 'c' + 12: 3, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 1, # 'g' + 25: 1, # 'h' + 3: 2, # 'i' + 24: 2, # 'j' + 10: 2, # 'k' + 5: 2, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 1, # 'p' + 7: 3, # 'r' + 8: 0, # 's' + 9: 2, # 't' + 14: 3, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 2, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 3, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 46: { # 'N' + 23: 0, # 'A' + 37: 1, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 1, # 'F' + 36: 1, # 'G' + 45: 1, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 2, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 1, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 1, # 'R' + 35: 1, # 'S' + 31: 0, # 'T' + 51: 1, # 'U' + 38: 2, # 'V' + 62: 0, # 'W' + 43: 1, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 0, # 'b' + 28: 2, # 'c' + 12: 0, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 1, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 2, # 'j' + 10: 1, # 'k' + 5: 1, # 'l' + 13: 3, # 'm' + 4: 2, # 'n' + 15: 1, # 'o' + 26: 1, # 'p' + 7: 1, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 3, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 1, # 'x' + 11: 1, # 'y' + 22: 2, # 'z' + 63: 0, # '·' + 54: 1, # 'Ç' + 50: 1, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 1, # 'İ' + 6: 2, # 'ı' + 40: 1, # 'Ş' + 19: 1, # 'ş' + }, + 42: { # 'O' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 1, # 'F' + 36: 0, # 'G' + 45: 1, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 2, # 'K' + 49: 1, # 'L' + 20: 0, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 2, # 'P' + 44: 1, # 'R' + 35: 1, # 'S' + 31: 0, # 'T' + 51: 1, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 0, # 'b' + 28: 2, # 'c' + 12: 0, # 'd' + 2: 2, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 0, # 'j' + 10: 0, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 0, # 'n' + 15: 1, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 2, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 2, # 'z' + 63: 0, # '·' + 54: 2, # 'Ç' + 50: 1, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 2, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 0, # 'ü' + 30: 1, # 'ğ' + 41: 2, # 'İ' + 6: 1, # 'ı' + 40: 1, # 'Ş' + 19: 1, # 'ş' + }, + 48: { # 'P' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 2, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 2, # 'F' + 36: 1, # 'G' + 45: 1, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 2, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 1, # 'N' + 42: 1, # 'O' + 48: 1, # 'P' + 44: 0, # 'R' + 35: 1, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 2, # 'a' + 21: 0, # 'b' + 28: 2, # 'c' + 12: 0, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 0, # 'j' + 10: 1, # 'k' + 5: 0, # 'l' + 13: 2, # 'm' + 4: 0, # 'n' + 15: 2, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 2, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 2, # 'x' + 11: 0, # 'y' + 22: 2, # 'z' + 63: 0, # '·' + 54: 1, # 'Ç' + 50: 2, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 2, # 'ö' + 17: 0, # 'ü' + 30: 1, # 'ğ' + 41: 1, # 'İ' + 6: 0, # 'ı' + 40: 2, # 'Ş' + 19: 1, # 'ş' + }, + 44: { # 'R' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 1, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 1, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 1, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 1, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 1, # 'b' + 28: 1, # 'c' + 12: 0, # 'd' + 2: 2, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 0, # 'j' + 10: 1, # 'k' + 5: 2, # 'l' + 13: 2, # 'm' + 4: 0, # 'n' + 15: 1, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 2, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 1, # 'y' + 22: 2, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 1, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 1, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 1, # 'ü' + 30: 1, # 'ğ' + 41: 0, # 'İ' + 6: 2, # 'ı' + 40: 1, # 'Ş' + 19: 1, # 'ş' + }, + 35: { # 'S' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 1, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 1, # 'F' + 36: 1, # 'G' + 45: 1, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 3, # 'K' + 49: 1, # 'L' + 20: 1, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 1, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 1, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 1, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 0, # 'b' + 28: 2, # 'c' + 12: 0, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 0, # 'j' + 10: 1, # 'k' + 5: 1, # 'l' + 13: 2, # 'm' + 4: 1, # 'n' + 15: 0, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 0, # 's' + 9: 1, # 't' + 14: 2, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 1, # 'z' + 63: 0, # '·' + 54: 2, # 'Ç' + 50: 2, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 3, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 2, # 'Ş' + 19: 1, # 'ş' + }, + 31: { # 'T' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 1, # 'J' + 16: 2, # 'K' + 49: 0, # 'L' + 20: 1, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 2, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 2, # 'b' + 28: 0, # 'c' + 12: 1, # 'd' + 2: 3, # 'e' + 18: 2, # 'f' + 27: 2, # 'g' + 25: 0, # 'h' + 3: 1, # 'i' + 24: 1, # 'j' + 10: 2, # 'k' + 5: 2, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 2, # 'p' + 7: 2, # 'r' + 8: 0, # 's' + 9: 2, # 't' + 14: 2, # 'u' + 32: 1, # 'v' + 57: 1, # 'w' + 58: 1, # 'x' + 11: 2, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 1, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 51: { # 'U' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 1, # 'F' + 36: 1, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 1, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 1, # 'N' + 42: 0, # 'O' + 48: 1, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 1, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 0, # 'b' + 28: 1, # 'c' + 12: 0, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 2, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 0, # 'j' + 10: 1, # 'k' + 5: 1, # 'l' + 13: 3, # 'm' + 4: 2, # 'n' + 15: 0, # 'o' + 26: 1, # 'p' + 7: 0, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 2, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 2, # 'z' + 63: 0, # '·' + 54: 1, # 'Ç' + 50: 1, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 0, # 'ü' + 30: 1, # 'ğ' + 41: 1, # 'İ' + 6: 2, # 'ı' + 40: 0, # 'Ş' + 19: 1, # 'ş' + }, + 38: { # 'V' + 23: 1, # 'A' + 37: 1, # 'B' + 47: 1, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 2, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 3, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 1, # 'P' + 44: 1, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 1, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 0, # 'b' + 28: 2, # 'c' + 12: 0, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 0, # 'j' + 10: 0, # 'k' + 5: 2, # 'l' + 13: 2, # 'm' + 4: 0, # 'n' + 15: 2, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 0, # 's' + 9: 1, # 't' + 14: 3, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 1, # 'y' + 22: 2, # 'z' + 63: 0, # '·' + 54: 1, # 'Ç' + 50: 1, # 'Ö' + 55: 0, # 'Ü' + 59: 1, # 'â' + 33: 2, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 0, # 'ü' + 30: 1, # 'ğ' + 41: 1, # 'İ' + 6: 3, # 'ı' + 40: 2, # 'Ş' + 19: 1, # 'ş' + }, + 62: { # 'W' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 0, # 'a' + 21: 0, # 'b' + 28: 0, # 'c' + 12: 0, # 'd' + 2: 0, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 0, # 'j' + 10: 0, # 'k' + 5: 0, # 'l' + 13: 0, # 'm' + 4: 0, # 'n' + 15: 0, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 0, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 0, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 43: { # 'Y' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 1, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 2, # 'F' + 36: 0, # 'G' + 45: 1, # 'H' + 53: 1, # 'I' + 60: 0, # 'J' + 16: 2, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 2, # 'N' + 42: 0, # 'O' + 48: 2, # 'P' + 44: 1, # 'R' + 35: 1, # 'S' + 31: 0, # 'T' + 51: 1, # 'U' + 38: 2, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 0, # 'b' + 28: 2, # 'c' + 12: 0, # 'd' + 2: 2, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 1, # 'j' + 10: 1, # 'k' + 5: 1, # 'l' + 13: 3, # 'm' + 4: 0, # 'n' + 15: 2, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 3, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 1, # 'x' + 11: 0, # 'y' + 22: 2, # 'z' + 63: 0, # '·' + 54: 1, # 'Ç' + 50: 2, # 'Ö' + 55: 1, # 'Ü' + 59: 1, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 0, # 'ü' + 30: 1, # 'ğ' + 41: 1, # 'İ' + 6: 0, # 'ı' + 40: 2, # 'Ş' + 19: 1, # 'ş' + }, + 56: { # 'Z' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 2, # 'Z' + 1: 2, # 'a' + 21: 1, # 'b' + 28: 0, # 'c' + 12: 0, # 'd' + 2: 2, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 2, # 'i' + 24: 1, # 'j' + 10: 0, # 'k' + 5: 0, # 'l' + 13: 1, # 'm' + 4: 1, # 'n' + 15: 0, # 'o' + 26: 0, # 'p' + 7: 1, # 'r' + 8: 1, # 's' + 9: 0, # 't' + 14: 2, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 1, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 1, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 1: { # 'a' + 23: 3, # 'A' + 37: 0, # 'B' + 47: 1, # 'C' + 39: 0, # 'D' + 29: 3, # 'E' + 52: 0, # 'F' + 36: 1, # 'G' + 45: 1, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 3, # 'M' + 46: 1, # 'N' + 42: 0, # 'O' + 48: 1, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 3, # 'T' + 51: 0, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 2, # 'Z' + 1: 2, # 'a' + 21: 3, # 'b' + 28: 0, # 'c' + 12: 3, # 'd' + 2: 2, # 'e' + 18: 3, # 'f' + 27: 3, # 'g' + 25: 3, # 'h' + 3: 3, # 'i' + 24: 3, # 'j' + 10: 3, # 'k' + 5: 0, # 'l' + 13: 2, # 'm' + 4: 3, # 'n' + 15: 1, # 'o' + 26: 3, # 'p' + 7: 3, # 'r' + 8: 3, # 's' + 9: 3, # 't' + 14: 3, # 'u' + 32: 3, # 'v' + 57: 2, # 'w' + 58: 0, # 'x' + 11: 3, # 'y' + 22: 0, # 'z' + 63: 1, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 1, # 'ç' + 61: 1, # 'î' + 34: 1, # 'ö' + 17: 3, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 1, # 'ş' + }, + 21: { # 'b' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 1, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 1, # 'J' + 16: 2, # 'K' + 49: 0, # 'L' + 20: 2, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 1, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 1, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 2, # 'b' + 28: 0, # 'c' + 12: 3, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 3, # 'g' + 25: 1, # 'h' + 3: 3, # 'i' + 24: 2, # 'j' + 10: 3, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 3, # 'p' + 7: 1, # 'r' + 8: 2, # 's' + 9: 2, # 't' + 14: 2, # 'u' + 32: 1, # 'v' + 57: 0, # 'w' + 58: 1, # 'x' + 11: 3, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 1, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 0, # 'ü' + 30: 1, # 'ğ' + 41: 0, # 'İ' + 6: 2, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 28: { # 'c' + 23: 0, # 'A' + 37: 1, # 'B' + 47: 1, # 'C' + 39: 1, # 'D' + 29: 2, # 'E' + 52: 0, # 'F' + 36: 2, # 'G' + 45: 2, # 'H' + 53: 1, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 2, # 'M' + 46: 1, # 'N' + 42: 1, # 'O' + 48: 2, # 'P' + 44: 1, # 'R' + 35: 1, # 'S' + 31: 2, # 'T' + 51: 2, # 'U' + 38: 2, # 'V' + 62: 0, # 'W' + 43: 3, # 'Y' + 56: 0, # 'Z' + 1: 1, # 'a' + 21: 1, # 'b' + 28: 2, # 'c' + 12: 2, # 'd' + 2: 1, # 'e' + 18: 1, # 'f' + 27: 2, # 'g' + 25: 2, # 'h' + 3: 3, # 'i' + 24: 1, # 'j' + 10: 3, # 'k' + 5: 0, # 'l' + 13: 2, # 'm' + 4: 3, # 'n' + 15: 2, # 'o' + 26: 2, # 'p' + 7: 3, # 'r' + 8: 3, # 's' + 9: 3, # 't' + 14: 1, # 'u' + 32: 0, # 'v' + 57: 1, # 'w' + 58: 0, # 'x' + 11: 2, # 'y' + 22: 1, # 'z' + 63: 1, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 1, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 1, # 'î' + 34: 2, # 'ö' + 17: 2, # 'ü' + 30: 2, # 'ğ' + 41: 1, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 2, # 'ş' + }, + 12: { # 'd' + 23: 1, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 2, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 3, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 1, # 'S' + 31: 1, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 2, # 'b' + 28: 1, # 'c' + 12: 3, # 'd' + 2: 3, # 'e' + 18: 1, # 'f' + 27: 3, # 'g' + 25: 3, # 'h' + 3: 2, # 'i' + 24: 3, # 'j' + 10: 2, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 15: 1, # 'o' + 26: 2, # 'p' + 7: 3, # 'r' + 8: 2, # 's' + 9: 2, # 't' + 14: 3, # 'u' + 32: 1, # 'v' + 57: 0, # 'w' + 58: 1, # 'x' + 11: 3, # 'y' + 22: 1, # 'z' + 63: 1, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 1, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 2, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 2: { # 'e' + 23: 2, # 'A' + 37: 0, # 'B' + 47: 2, # 'C' + 39: 0, # 'D' + 29: 3, # 'E' + 52: 1, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 1, # 'K' + 49: 0, # 'L' + 20: 3, # 'M' + 46: 1, # 'N' + 42: 0, # 'O' + 48: 1, # 'P' + 44: 1, # 'R' + 35: 0, # 'S' + 31: 3, # 'T' + 51: 0, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 1, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 3, # 'b' + 28: 0, # 'c' + 12: 3, # 'd' + 2: 2, # 'e' + 18: 3, # 'f' + 27: 3, # 'g' + 25: 3, # 'h' + 3: 3, # 'i' + 24: 3, # 'j' + 10: 3, # 'k' + 5: 0, # 'l' + 13: 2, # 'm' + 4: 3, # 'n' + 15: 1, # 'o' + 26: 3, # 'p' + 7: 3, # 'r' + 8: 3, # 's' + 9: 3, # 't' + 14: 3, # 'u' + 32: 3, # 'v' + 57: 2, # 'w' + 58: 0, # 'x' + 11: 3, # 'y' + 22: 1, # 'z' + 63: 1, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 1, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 3, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 18: { # 'f' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 2, # 'K' + 49: 0, # 'L' + 20: 2, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 2, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 1, # 'b' + 28: 0, # 'c' + 12: 3, # 'd' + 2: 3, # 'e' + 18: 2, # 'f' + 27: 1, # 'g' + 25: 1, # 'h' + 3: 1, # 'i' + 24: 1, # 'j' + 10: 1, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 2, # 'p' + 7: 1, # 'r' + 8: 3, # 's' + 9: 3, # 't' + 14: 1, # 'u' + 32: 2, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 1, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 1, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 1, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 1, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 27: { # 'g' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 1, # 'S' + 31: 1, # 'T' + 51: 0, # 'U' + 38: 2, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 1, # 'b' + 28: 0, # 'c' + 12: 1, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 2, # 'g' + 25: 1, # 'h' + 3: 2, # 'i' + 24: 3, # 'j' + 10: 2, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 2, # 'n' + 15: 0, # 'o' + 26: 1, # 'p' + 7: 2, # 'r' + 8: 2, # 's' + 9: 3, # 't' + 14: 3, # 'u' + 32: 1, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 1, # 'y' + 22: 0, # 'z' + 63: 1, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 2, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 25: { # 'h' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 2, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 0, # 'b' + 28: 0, # 'c' + 12: 2, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 1, # 'g' + 25: 2, # 'h' + 3: 2, # 'i' + 24: 3, # 'j' + 10: 3, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 15: 1, # 'o' + 26: 1, # 'p' + 7: 3, # 'r' + 8: 3, # 's' + 9: 2, # 't' + 14: 3, # 'u' + 32: 2, # 'v' + 57: 1, # 'w' + 58: 0, # 'x' + 11: 1, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 3: { # 'i' + 23: 2, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 1, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 3, # 'M' + 46: 0, # 'N' + 42: 1, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 1, # 'S' + 31: 2, # 'T' + 51: 0, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 2, # 'b' + 28: 0, # 'c' + 12: 3, # 'd' + 2: 3, # 'e' + 18: 2, # 'f' + 27: 3, # 'g' + 25: 1, # 'h' + 3: 3, # 'i' + 24: 2, # 'j' + 10: 3, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 15: 1, # 'o' + 26: 3, # 'p' + 7: 3, # 'r' + 8: 3, # 's' + 9: 3, # 't' + 14: 3, # 'u' + 32: 2, # 'v' + 57: 1, # 'w' + 58: 1, # 'x' + 11: 3, # 'y' + 22: 1, # 'z' + 63: 1, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 1, # 'Ü' + 59: 0, # 'â' + 33: 2, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 3, # 'ü' + 30: 0, # 'ğ' + 41: 1, # 'İ' + 6: 2, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 24: { # 'j' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 1, # 'J' + 16: 2, # 'K' + 49: 0, # 'L' + 20: 2, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 1, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 1, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 1, # 'Z' + 1: 3, # 'a' + 21: 1, # 'b' + 28: 1, # 'c' + 12: 3, # 'd' + 2: 3, # 'e' + 18: 2, # 'f' + 27: 1, # 'g' + 25: 1, # 'h' + 3: 2, # 'i' + 24: 1, # 'j' + 10: 2, # 'k' + 5: 2, # 'l' + 13: 3, # 'm' + 4: 2, # 'n' + 15: 0, # 'o' + 26: 1, # 'p' + 7: 2, # 'r' + 8: 3, # 's' + 9: 2, # 't' + 14: 3, # 'u' + 32: 2, # 'v' + 57: 0, # 'w' + 58: 2, # 'x' + 11: 1, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 1, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 1, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 10: { # 'k' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 2, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 3, # 'T' + 51: 0, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 1, # 'Z' + 1: 3, # 'a' + 21: 2, # 'b' + 28: 0, # 'c' + 12: 2, # 'd' + 2: 3, # 'e' + 18: 1, # 'f' + 27: 2, # 'g' + 25: 2, # 'h' + 3: 3, # 'i' + 24: 2, # 'j' + 10: 2, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 3, # 'p' + 7: 2, # 'r' + 8: 2, # 's' + 9: 2, # 't' + 14: 3, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 1, # 'x' + 11: 3, # 'y' + 22: 0, # 'z' + 63: 1, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 3, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 3, # 'ü' + 30: 1, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 1, # 'ş' + }, + 5: { # 'l' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 3, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 2, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 1, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 0, # 'a' + 21: 3, # 'b' + 28: 0, # 'c' + 12: 3, # 'd' + 2: 1, # 'e' + 18: 3, # 'f' + 27: 3, # 'g' + 25: 2, # 'h' + 3: 3, # 'i' + 24: 2, # 'j' + 10: 3, # 'k' + 5: 1, # 'l' + 13: 1, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 2, # 'p' + 7: 3, # 'r' + 8: 3, # 's' + 9: 3, # 't' + 14: 2, # 'u' + 32: 2, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 3, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 1, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 2, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 13: { # 'm' + 23: 1, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 3, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 3, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 3, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 1, # 'Y' + 56: 0, # 'Z' + 1: 2, # 'a' + 21: 3, # 'b' + 28: 0, # 'c' + 12: 3, # 'd' + 2: 2, # 'e' + 18: 3, # 'f' + 27: 3, # 'g' + 25: 3, # 'h' + 3: 3, # 'i' + 24: 3, # 'j' + 10: 3, # 'k' + 5: 0, # 'l' + 13: 2, # 'm' + 4: 3, # 'n' + 15: 1, # 'o' + 26: 2, # 'p' + 7: 3, # 'r' + 8: 3, # 's' + 9: 3, # 't' + 14: 2, # 'u' + 32: 2, # 'v' + 57: 1, # 'w' + 58: 0, # 'x' + 11: 3, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 3, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 1, # 'ş' + }, + 4: { # 'n' + 23: 1, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 1, # 'H' + 53: 0, # 'I' + 60: 2, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 3, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 2, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 2, # 'b' + 28: 1, # 'c' + 12: 3, # 'd' + 2: 3, # 'e' + 18: 1, # 'f' + 27: 2, # 'g' + 25: 3, # 'h' + 3: 2, # 'i' + 24: 2, # 'j' + 10: 3, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 15: 1, # 'o' + 26: 3, # 'p' + 7: 2, # 'r' + 8: 3, # 's' + 9: 3, # 't' + 14: 3, # 'u' + 32: 2, # 'v' + 57: 0, # 'w' + 58: 2, # 'x' + 11: 3, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 1, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 2, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 1, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 15: { # 'o' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 1, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 2, # 'F' + 36: 1, # 'G' + 45: 1, # 'H' + 53: 1, # 'I' + 60: 0, # 'J' + 16: 3, # 'K' + 49: 2, # 'L' + 20: 0, # 'M' + 46: 2, # 'N' + 42: 1, # 'O' + 48: 2, # 'P' + 44: 1, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 0, # 'b' + 28: 2, # 'c' + 12: 0, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 1, # 'i' + 24: 2, # 'j' + 10: 1, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 2, # 'n' + 15: 2, # 'o' + 26: 0, # 'p' + 7: 1, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 3, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 2, # 'x' + 11: 0, # 'y' + 22: 2, # 'z' + 63: 0, # '·' + 54: 1, # 'Ç' + 50: 2, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 3, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 0, # 'ü' + 30: 2, # 'ğ' + 41: 2, # 'İ' + 6: 3, # 'ı' + 40: 2, # 'Ş' + 19: 2, # 'ş' + }, + 26: { # 'p' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 1, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 1, # 'b' + 28: 0, # 'c' + 12: 1, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 1, # 'g' + 25: 1, # 'h' + 3: 2, # 'i' + 24: 3, # 'j' + 10: 1, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 2, # 'n' + 15: 0, # 'o' + 26: 2, # 'p' + 7: 2, # 'r' + 8: 1, # 's' + 9: 1, # 't' + 14: 3, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 1, # 'x' + 11: 1, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 3, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 1, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 7: { # 'r' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 1, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 2, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 2, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 2, # 'T' + 51: 1, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 1, # 'Z' + 1: 3, # 'a' + 21: 1, # 'b' + 28: 0, # 'c' + 12: 3, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 2, # 'g' + 25: 3, # 'h' + 3: 2, # 'i' + 24: 2, # 'j' + 10: 3, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 2, # 'p' + 7: 3, # 'r' + 8: 3, # 's' + 9: 3, # 't' + 14: 3, # 'u' + 32: 2, # 'v' + 57: 0, # 'w' + 58: 1, # 'x' + 11: 2, # 'y' + 22: 0, # 'z' + 63: 1, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 2, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 3, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 2, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 8: { # 's' + 23: 1, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 1, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 3, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 2, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 1, # 'Z' + 1: 3, # 'a' + 21: 2, # 'b' + 28: 1, # 'c' + 12: 3, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 2, # 'g' + 25: 2, # 'h' + 3: 2, # 'i' + 24: 3, # 'j' + 10: 3, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 3, # 'p' + 7: 3, # 'r' + 8: 3, # 's' + 9: 3, # 't' + 14: 3, # 'u' + 32: 2, # 'v' + 57: 0, # 'w' + 58: 1, # 'x' + 11: 2, # 'y' + 22: 1, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 2, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 2, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 1, # 'ş' + }, + 9: { # 't' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 1, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 2, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 2, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 1, # 'Z' + 1: 3, # 'a' + 21: 3, # 'b' + 28: 0, # 'c' + 12: 3, # 'd' + 2: 3, # 'e' + 18: 2, # 'f' + 27: 2, # 'g' + 25: 2, # 'h' + 3: 2, # 'i' + 24: 2, # 'j' + 10: 3, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 2, # 'p' + 7: 3, # 'r' + 8: 3, # 's' + 9: 3, # 't' + 14: 3, # 'u' + 32: 3, # 'v' + 57: 0, # 'w' + 58: 2, # 'x' + 11: 2, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 3, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 2, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 14: { # 'u' + 23: 3, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 3, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 1, # 'H' + 53: 0, # 'I' + 60: 1, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 3, # 'M' + 46: 2, # 'N' + 42: 0, # 'O' + 48: 1, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 3, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 1, # 'Y' + 56: 2, # 'Z' + 1: 2, # 'a' + 21: 3, # 'b' + 28: 0, # 'c' + 12: 3, # 'd' + 2: 2, # 'e' + 18: 2, # 'f' + 27: 3, # 'g' + 25: 3, # 'h' + 3: 3, # 'i' + 24: 2, # 'j' + 10: 3, # 'k' + 5: 0, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 3, # 'p' + 7: 3, # 'r' + 8: 3, # 's' + 9: 3, # 't' + 14: 3, # 'u' + 32: 2, # 'v' + 57: 2, # 'w' + 58: 0, # 'x' + 11: 3, # 'y' + 22: 0, # 'z' + 63: 1, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 3, # 'ü' + 30: 1, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 32: { # 'v' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 1, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 0, # 'b' + 28: 0, # 'c' + 12: 3, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 1, # 'j' + 10: 1, # 'k' + 5: 3, # 'l' + 13: 2, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 1, # 'p' + 7: 1, # 'r' + 8: 2, # 's' + 9: 3, # 't' + 14: 3, # 'u' + 32: 1, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 2, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 1, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 57: { # 'w' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 1, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 1, # 'a' + 21: 0, # 'b' + 28: 0, # 'c' + 12: 0, # 'd' + 2: 2, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 1, # 'h' + 3: 0, # 'i' + 24: 0, # 'j' + 10: 1, # 'k' + 5: 0, # 'l' + 13: 0, # 'm' + 4: 1, # 'n' + 15: 0, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 1, # 's' + 9: 0, # 't' + 14: 1, # 'u' + 32: 0, # 'v' + 57: 2, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 0, # 'z' + 63: 1, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 1, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 0, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 58: { # 'x' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 1, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 1, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 1, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 0, # 'a' + 21: 1, # 'b' + 28: 0, # 'c' + 12: 2, # 'd' + 2: 1, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 2, # 'i' + 24: 2, # 'j' + 10: 1, # 'k' + 5: 0, # 'l' + 13: 0, # 'm' + 4: 2, # 'n' + 15: 0, # 'o' + 26: 0, # 'p' + 7: 1, # 'r' + 8: 2, # 's' + 9: 1, # 't' + 14: 0, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 2, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 1, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 2, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 11: { # 'y' + 23: 1, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 1, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 1, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 1, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 1, # 'Y' + 56: 1, # 'Z' + 1: 3, # 'a' + 21: 1, # 'b' + 28: 0, # 'c' + 12: 2, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 2, # 'g' + 25: 2, # 'h' + 3: 2, # 'i' + 24: 1, # 'j' + 10: 2, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 1, # 'p' + 7: 2, # 'r' + 8: 1, # 's' + 9: 2, # 't' + 14: 3, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 1, # 'x' + 11: 3, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 3, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 2, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 22: { # 'z' + 23: 2, # 'A' + 37: 2, # 'B' + 47: 1, # 'C' + 39: 2, # 'D' + 29: 3, # 'E' + 52: 1, # 'F' + 36: 2, # 'G' + 45: 2, # 'H' + 53: 1, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 3, # 'M' + 46: 2, # 'N' + 42: 2, # 'O' + 48: 2, # 'P' + 44: 1, # 'R' + 35: 1, # 'S' + 31: 3, # 'T' + 51: 2, # 'U' + 38: 2, # 'V' + 62: 0, # 'W' + 43: 2, # 'Y' + 56: 1, # 'Z' + 1: 1, # 'a' + 21: 2, # 'b' + 28: 1, # 'c' + 12: 2, # 'd' + 2: 2, # 'e' + 18: 3, # 'f' + 27: 2, # 'g' + 25: 2, # 'h' + 3: 3, # 'i' + 24: 2, # 'j' + 10: 3, # 'k' + 5: 0, # 'l' + 13: 2, # 'm' + 4: 3, # 'n' + 15: 2, # 'o' + 26: 2, # 'p' + 7: 3, # 'r' + 8: 3, # 's' + 9: 3, # 't' + 14: 0, # 'u' + 32: 2, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 3, # 'y' + 22: 2, # 'z' + 63: 1, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 2, # 'Ü' + 59: 1, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 2, # 'ö' + 17: 2, # 'ü' + 30: 2, # 'ğ' + 41: 1, # 'İ' + 6: 3, # 'ı' + 40: 1, # 'Ş' + 19: 2, # 'ş' + }, + 63: { # '·' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 0, # 'a' + 21: 0, # 'b' + 28: 0, # 'c' + 12: 0, # 'd' + 2: 1, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 0, # 'j' + 10: 0, # 'k' + 5: 0, # 'l' + 13: 2, # 'm' + 4: 0, # 'n' + 15: 0, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 2, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 0, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 54: { # 'Ç' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 1, # 'C' + 39: 1, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 1, # 'G' + 45: 1, # 'H' + 53: 1, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 0, # 'N' + 42: 1, # 'O' + 48: 1, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 1, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 2, # 'Y' + 56: 0, # 'Z' + 1: 0, # 'a' + 21: 1, # 'b' + 28: 0, # 'c' + 12: 1, # 'd' + 2: 0, # 'e' + 18: 0, # 'f' + 27: 1, # 'g' + 25: 0, # 'h' + 3: 3, # 'i' + 24: 0, # 'j' + 10: 1, # 'k' + 5: 0, # 'l' + 13: 0, # 'm' + 4: 2, # 'n' + 15: 1, # 'o' + 26: 0, # 'p' + 7: 2, # 'r' + 8: 0, # 's' + 9: 1, # 't' + 14: 0, # 'u' + 32: 2, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 2, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 2, # 'ı' + 40: 0, # 'Ş' + 19: 1, # 'ş' + }, + 50: { # 'Ö' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 1, # 'C' + 39: 1, # 'D' + 29: 2, # 'E' + 52: 0, # 'F' + 36: 1, # 'G' + 45: 2, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 1, # 'M' + 46: 1, # 'N' + 42: 2, # 'O' + 48: 2, # 'P' + 44: 1, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 1, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 2, # 'Y' + 56: 0, # 'Z' + 1: 0, # 'a' + 21: 2, # 'b' + 28: 1, # 'c' + 12: 2, # 'd' + 2: 0, # 'e' + 18: 1, # 'f' + 27: 1, # 'g' + 25: 1, # 'h' + 3: 2, # 'i' + 24: 0, # 'j' + 10: 2, # 'k' + 5: 0, # 'l' + 13: 0, # 'm' + 4: 3, # 'n' + 15: 2, # 'o' + 26: 2, # 'p' + 7: 3, # 'r' + 8: 1, # 's' + 9: 2, # 't' + 14: 0, # 'u' + 32: 1, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 1, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 2, # 'ö' + 17: 2, # 'ü' + 30: 1, # 'ğ' + 41: 0, # 'İ' + 6: 2, # 'ı' + 40: 0, # 'Ş' + 19: 1, # 'ş' + }, + 55: { # 'Ü' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 2, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 1, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 1, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 2, # 'a' + 21: 0, # 'b' + 28: 2, # 'c' + 12: 0, # 'd' + 2: 2, # 'e' + 18: 0, # 'f' + 27: 1, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 0, # 'j' + 10: 0, # 'k' + 5: 1, # 'l' + 13: 1, # 'm' + 4: 1, # 'n' + 15: 0, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 0, # 's' + 9: 1, # 't' + 14: 2, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 1, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 1, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 0, # 'ü' + 30: 1, # 'ğ' + 41: 1, # 'İ' + 6: 0, # 'ı' + 40: 0, # 'Ş' + 19: 1, # 'ş' + }, + 59: { # 'â' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 1, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 1, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 2, # 'a' + 21: 0, # 'b' + 28: 0, # 'c' + 12: 0, # 'd' + 2: 2, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 0, # 'j' + 10: 0, # 'k' + 5: 0, # 'l' + 13: 2, # 'm' + 4: 0, # 'n' + 15: 1, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 2, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 1, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 1, # 'ı' + 40: 1, # 'Ş' + 19: 0, # 'ş' + }, + 33: { # 'ç' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 3, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 1, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 2, # 'T' + 51: 0, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 0, # 'a' + 21: 3, # 'b' + 28: 0, # 'c' + 12: 2, # 'd' + 2: 0, # 'e' + 18: 2, # 'f' + 27: 1, # 'g' + 25: 3, # 'h' + 3: 3, # 'i' + 24: 0, # 'j' + 10: 3, # 'k' + 5: 0, # 'l' + 13: 0, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 1, # 'p' + 7: 3, # 'r' + 8: 2, # 's' + 9: 3, # 't' + 14: 0, # 'u' + 32: 2, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 2, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 1, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 61: { # 'î' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 1, # 'Z' + 1: 2, # 'a' + 21: 0, # 'b' + 28: 0, # 'c' + 12: 0, # 'd' + 2: 2, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 1, # 'j' + 10: 0, # 'k' + 5: 0, # 'l' + 13: 1, # 'm' + 4: 1, # 'n' + 15: 0, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 1, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 1, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 1, # 'î' + 34: 0, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 1, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 34: { # 'ö' + 23: 0, # 'A' + 37: 1, # 'B' + 47: 1, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 2, # 'F' + 36: 1, # 'G' + 45: 1, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 3, # 'K' + 49: 1, # 'L' + 20: 0, # 'M' + 46: 1, # 'N' + 42: 1, # 'O' + 48: 2, # 'P' + 44: 1, # 'R' + 35: 1, # 'S' + 31: 1, # 'T' + 51: 1, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 1, # 'Z' + 1: 3, # 'a' + 21: 1, # 'b' + 28: 2, # 'c' + 12: 1, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 2, # 'g' + 25: 2, # 'h' + 3: 1, # 'i' + 24: 2, # 'j' + 10: 1, # 'k' + 5: 2, # 'l' + 13: 3, # 'm' + 4: 2, # 'n' + 15: 2, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 3, # 's' + 9: 1, # 't' + 14: 3, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 1, # 'y' + 22: 2, # 'z' + 63: 0, # '·' + 54: 1, # 'Ç' + 50: 2, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 2, # 'ç' + 61: 0, # 'î' + 34: 2, # 'ö' + 17: 0, # 'ü' + 30: 2, # 'ğ' + 41: 1, # 'İ' + 6: 1, # 'ı' + 40: 2, # 'Ş' + 19: 1, # 'ş' + }, + 17: { # 'ü' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 1, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 1, # 'J' + 16: 1, # 'K' + 49: 0, # 'L' + 20: 1, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 1, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 1, # 'Z' + 1: 3, # 'a' + 21: 0, # 'b' + 28: 0, # 'c' + 12: 1, # 'd' + 2: 3, # 'e' + 18: 1, # 'f' + 27: 2, # 'g' + 25: 0, # 'h' + 3: 1, # 'i' + 24: 1, # 'j' + 10: 2, # 'k' + 5: 3, # 'l' + 13: 2, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 2, # 'p' + 7: 2, # 'r' + 8: 3, # 's' + 9: 2, # 't' + 14: 3, # 'u' + 32: 1, # 'v' + 57: 1, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 1, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 2, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 2, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 30: { # 'ğ' + 23: 0, # 'A' + 37: 2, # 'B' + 47: 1, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 2, # 'F' + 36: 1, # 'G' + 45: 0, # 'H' + 53: 1, # 'I' + 60: 0, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 1, # 'M' + 46: 2, # 'N' + 42: 2, # 'O' + 48: 1, # 'P' + 44: 1, # 'R' + 35: 0, # 'S' + 31: 1, # 'T' + 51: 0, # 'U' + 38: 2, # 'V' + 62: 0, # 'W' + 43: 2, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 0, # 'b' + 28: 2, # 'c' + 12: 0, # 'd' + 2: 2, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 3, # 'j' + 10: 1, # 'k' + 5: 2, # 'l' + 13: 3, # 'm' + 4: 0, # 'n' + 15: 1, # 'o' + 26: 0, # 'p' + 7: 1, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 3, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 2, # 'z' + 63: 0, # '·' + 54: 2, # 'Ç' + 50: 2, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 1, # 'ç' + 61: 0, # 'î' + 34: 2, # 'ö' + 17: 0, # 'ü' + 30: 1, # 'ğ' + 41: 2, # 'İ' + 6: 2, # 'ı' + 40: 2, # 'Ş' + 19: 1, # 'ş' + }, + 41: { # 'İ' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 1, # 'C' + 39: 1, # 'D' + 29: 1, # 'E' + 52: 0, # 'F' + 36: 2, # 'G' + 45: 2, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 2, # 'M' + 46: 1, # 'N' + 42: 1, # 'O' + 48: 2, # 'P' + 44: 0, # 'R' + 35: 1, # 'S' + 31: 1, # 'T' + 51: 1, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 2, # 'Y' + 56: 0, # 'Z' + 1: 1, # 'a' + 21: 2, # 'b' + 28: 1, # 'c' + 12: 2, # 'd' + 2: 1, # 'e' + 18: 0, # 'f' + 27: 3, # 'g' + 25: 2, # 'h' + 3: 2, # 'i' + 24: 2, # 'j' + 10: 2, # 'k' + 5: 0, # 'l' + 13: 1, # 'm' + 4: 3, # 'n' + 15: 1, # 'o' + 26: 1, # 'p' + 7: 3, # 'r' + 8: 3, # 's' + 9: 2, # 't' + 14: 0, # 'u' + 32: 0, # 'v' + 57: 1, # 'w' + 58: 0, # 'x' + 11: 2, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 1, # 'Ü' + 59: 1, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 1, # 'ü' + 30: 2, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 1, # 'ş' + }, + 6: { # 'ı' + 23: 2, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 1, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 2, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 3, # 'M' + 46: 1, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 2, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 2, # 'Y' + 56: 1, # 'Z' + 1: 3, # 'a' + 21: 2, # 'b' + 28: 1, # 'c' + 12: 3, # 'd' + 2: 3, # 'e' + 18: 3, # 'f' + 27: 3, # 'g' + 25: 2, # 'h' + 3: 3, # 'i' + 24: 3, # 'j' + 10: 3, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 3, # 'p' + 7: 3, # 'r' + 8: 3, # 's' + 9: 3, # 't' + 14: 3, # 'u' + 32: 3, # 'v' + 57: 1, # 'w' + 58: 1, # 'x' + 11: 3, # 'y' + 22: 0, # 'z' + 63: 1, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 2, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 3, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 40: { # 'Ş' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 1, # 'C' + 39: 1, # 'D' + 29: 1, # 'E' + 52: 0, # 'F' + 36: 1, # 'G' + 45: 2, # 'H' + 53: 1, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 2, # 'M' + 46: 1, # 'N' + 42: 1, # 'O' + 48: 2, # 'P' + 44: 2, # 'R' + 35: 1, # 'S' + 31: 1, # 'T' + 51: 0, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 2, # 'Y' + 56: 1, # 'Z' + 1: 0, # 'a' + 21: 2, # 'b' + 28: 0, # 'c' + 12: 2, # 'd' + 2: 0, # 'e' + 18: 3, # 'f' + 27: 0, # 'g' + 25: 2, # 'h' + 3: 3, # 'i' + 24: 2, # 'j' + 10: 1, # 'k' + 5: 0, # 'l' + 13: 1, # 'm' + 4: 3, # 'n' + 15: 2, # 'o' + 26: 0, # 'p' + 7: 3, # 'r' + 8: 2, # 's' + 9: 2, # 't' + 14: 1, # 'u' + 32: 3, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 2, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 1, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 2, # 'ö' + 17: 1, # 'ü' + 30: 2, # 'ğ' + 41: 0, # 'İ' + 6: 2, # 'ı' + 40: 1, # 'Ş' + 19: 2, # 'ş' + }, + 19: { # 'ş' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 1, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 2, # 'F' + 36: 1, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 3, # 'K' + 49: 2, # 'L' + 20: 0, # 'M' + 46: 1, # 'N' + 42: 1, # 'O' + 48: 1, # 'P' + 44: 1, # 'R' + 35: 1, # 'S' + 31: 0, # 'T' + 51: 1, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 1, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 1, # 'b' + 28: 2, # 'c' + 12: 0, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 2, # 'g' + 25: 1, # 'h' + 3: 1, # 'i' + 24: 0, # 'j' + 10: 2, # 'k' + 5: 2, # 'l' + 13: 3, # 'm' + 4: 0, # 'n' + 15: 0, # 'o' + 26: 1, # 'p' + 7: 3, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 3, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 2, # 'z' + 63: 0, # '·' + 54: 1, # 'Ç' + 50: 2, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 1, # 'ç' + 61: 1, # 'î' + 34: 2, # 'ö' + 17: 0, # 'ü' + 30: 1, # 'ğ' + 41: 1, # 'İ' + 6: 1, # 'ı' + 40: 1, # 'Ş' + 19: 1, # 'ş' + }, +} + +# 255: Undefined characters that did not exist in training text +# 254: Carriage/Return +# 253: symbol (punctuation) that does not belong to word +# 252: 0 - 9 +# 251: Control characters + +# Character Mapping Table(s): +ISO_8859_9_TURKISH_CHAR_TO_ORDER = { + 0: 255, # '\x00' + 1: 255, # '\x01' + 2: 255, # '\x02' + 3: 255, # '\x03' + 4: 255, # '\x04' + 5: 255, # '\x05' + 6: 255, # '\x06' + 7: 255, # '\x07' + 8: 255, # '\x08' + 9: 255, # '\t' + 10: 255, # '\n' + 11: 255, # '\x0b' + 12: 255, # '\x0c' + 13: 255, # '\r' + 14: 255, # '\x0e' + 15: 255, # '\x0f' + 16: 255, # '\x10' + 17: 255, # '\x11' + 18: 255, # '\x12' + 19: 255, # '\x13' + 20: 255, # '\x14' + 21: 255, # '\x15' + 22: 255, # '\x16' + 23: 255, # '\x17' + 24: 255, # '\x18' + 25: 255, # '\x19' + 26: 255, # '\x1a' + 27: 255, # '\x1b' + 28: 255, # '\x1c' + 29: 255, # '\x1d' + 30: 255, # '\x1e' + 31: 255, # '\x1f' + 32: 255, # ' ' + 33: 255, # '!' + 34: 255, # '"' + 35: 255, # '#' + 36: 255, # '$' + 37: 255, # '%' + 38: 255, # '&' + 39: 255, # "'" + 40: 255, # '(' + 41: 255, # ')' + 42: 255, # '*' + 43: 255, # '+' + 44: 255, # ',' + 45: 255, # '-' + 46: 255, # '.' + 47: 255, # '/' + 48: 255, # '0' + 49: 255, # '1' + 50: 255, # '2' + 51: 255, # '3' + 52: 255, # '4' + 53: 255, # '5' + 54: 255, # '6' + 55: 255, # '7' + 56: 255, # '8' + 57: 255, # '9' + 58: 255, # ':' + 59: 255, # ';' + 60: 255, # '<' + 61: 255, # '=' + 62: 255, # '>' + 63: 255, # '?' + 64: 255, # '@' + 65: 23, # 'A' + 66: 37, # 'B' + 67: 47, # 'C' + 68: 39, # 'D' + 69: 29, # 'E' + 70: 52, # 'F' + 71: 36, # 'G' + 72: 45, # 'H' + 73: 53, # 'I' + 74: 60, # 'J' + 75: 16, # 'K' + 76: 49, # 'L' + 77: 20, # 'M' + 78: 46, # 'N' + 79: 42, # 'O' + 80: 48, # 'P' + 81: 69, # 'Q' + 82: 44, # 'R' + 83: 35, # 'S' + 84: 31, # 'T' + 85: 51, # 'U' + 86: 38, # 'V' + 87: 62, # 'W' + 88: 65, # 'X' + 89: 43, # 'Y' + 90: 56, # 'Z' + 91: 255, # '[' + 92: 255, # '\\' + 93: 255, # ']' + 94: 255, # '^' + 95: 255, # '_' + 96: 255, # '`' + 97: 1, # 'a' + 98: 21, # 'b' + 99: 28, # 'c' + 100: 12, # 'd' + 101: 2, # 'e' + 102: 18, # 'f' + 103: 27, # 'g' + 104: 25, # 'h' + 105: 3, # 'i' + 106: 24, # 'j' + 107: 10, # 'k' + 108: 5, # 'l' + 109: 13, # 'm' + 110: 4, # 'n' + 111: 15, # 'o' + 112: 26, # 'p' + 113: 64, # 'q' + 114: 7, # 'r' + 115: 8, # 's' + 116: 9, # 't' + 117: 14, # 'u' + 118: 32, # 'v' + 119: 57, # 'w' + 120: 58, # 'x' + 121: 11, # 'y' + 122: 22, # 'z' + 123: 255, # '{' + 124: 255, # '|' + 125: 255, # '}' + 126: 255, # '~' + 127: 255, # '\x7f' + 128: 180, # '\x80' + 129: 179, # '\x81' + 130: 178, # '\x82' + 131: 177, # '\x83' + 132: 176, # '\x84' + 133: 175, # '\x85' + 134: 174, # '\x86' + 135: 173, # '\x87' + 136: 172, # '\x88' + 137: 171, # '\x89' + 138: 170, # '\x8a' + 139: 169, # '\x8b' + 140: 168, # '\x8c' + 141: 167, # '\x8d' + 142: 166, # '\x8e' + 143: 165, # '\x8f' + 144: 164, # '\x90' + 145: 163, # '\x91' + 146: 162, # '\x92' + 147: 161, # '\x93' + 148: 160, # '\x94' + 149: 159, # '\x95' + 150: 101, # '\x96' + 151: 158, # '\x97' + 152: 157, # '\x98' + 153: 156, # '\x99' + 154: 155, # '\x9a' + 155: 154, # '\x9b' + 156: 153, # '\x9c' + 157: 152, # '\x9d' + 158: 151, # '\x9e' + 159: 106, # '\x9f' + 160: 150, # '\xa0' + 161: 149, # '¡' + 162: 148, # '¢' + 163: 147, # '£' + 164: 146, # '¤' + 165: 145, # '¥' + 166: 144, # '¦' + 167: 100, # '§' + 168: 143, # '¨' + 169: 142, # '©' + 170: 141, # 'ª' + 171: 140, # '«' + 172: 139, # '¬' + 173: 138, # '\xad' + 174: 137, # '®' + 175: 136, # '¯' + 176: 94, # '°' + 177: 80, # '±' + 178: 93, # '²' + 179: 135, # '³' + 180: 105, # '´' + 181: 134, # 'µ' + 182: 133, # '¶' + 183: 63, # '·' + 184: 132, # '¸' + 185: 131, # '¹' + 186: 130, # 'º' + 187: 129, # '»' + 188: 128, # '¼' + 189: 127, # '½' + 190: 126, # '¾' + 191: 125, # '¿' + 192: 124, # 'À' + 193: 104, # 'Á' + 194: 73, # 'Â' + 195: 99, # 'Ã' + 196: 79, # 'Ä' + 197: 85, # 'Å' + 198: 123, # 'Æ' + 199: 54, # 'Ç' + 200: 122, # 'È' + 201: 98, # 'É' + 202: 92, # 'Ê' + 203: 121, # 'Ë' + 204: 120, # 'Ì' + 205: 91, # 'Í' + 206: 103, # 'Î' + 207: 119, # 'Ï' + 208: 68, # 'Ğ' + 209: 118, # 'Ñ' + 210: 117, # 'Ò' + 211: 97, # 'Ó' + 212: 116, # 'Ô' + 213: 115, # 'Õ' + 214: 50, # 'Ö' + 215: 90, # '×' + 216: 114, # 'Ø' + 217: 113, # 'Ù' + 218: 112, # 'Ú' + 219: 111, # 'Û' + 220: 55, # 'Ü' + 221: 41, # 'İ' + 222: 40, # 'Ş' + 223: 86, # 'ß' + 224: 89, # 'à' + 225: 70, # 'á' + 226: 59, # 'â' + 227: 78, # 'ã' + 228: 71, # 'ä' + 229: 82, # 'å' + 230: 88, # 'æ' + 231: 33, # 'ç' + 232: 77, # 'è' + 233: 66, # 'é' + 234: 84, # 'ê' + 235: 83, # 'ë' + 236: 110, # 'ì' + 237: 75, # 'í' + 238: 61, # 'î' + 239: 96, # 'ï' + 240: 30, # 'ğ' + 241: 67, # 'ñ' + 242: 109, # 'ò' + 243: 74, # 'ó' + 244: 87, # 'ô' + 245: 102, # 'õ' + 246: 34, # 'ö' + 247: 95, # '÷' + 248: 81, # 'ø' + 249: 108, # 'ù' + 250: 76, # 'ú' + 251: 72, # 'û' + 252: 17, # 'ü' + 253: 6, # 'ı' + 254: 19, # 'ş' + 255: 107, # 'ÿ' +} + +ISO_8859_9_TURKISH_MODEL = SingleByteCharSetModel( + charset_name="ISO-8859-9", + language="Turkish", + char_to_order_map=ISO_8859_9_TURKISH_CHAR_TO_ORDER, + language_model=TURKISH_LANG_MODEL, + typical_positive_ratio=0.97029, + keep_ascii_letters=True, + alphabet="ABCDEFGHIJKLMNOPRSTUVYZabcdefghijklmnoprstuvyzÂÇÎÖÛÜâçîöûüĞğİıŞş", +) diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/latin1prober.py b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/latin1prober.py new file mode 100644 index 0000000..59a01d9 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/latin1prober.py @@ -0,0 +1,147 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Universal charset detector code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 2001 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# Shy Shalom - original C code +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from typing import List, Union + +from .charsetprober import CharSetProber +from .enums import ProbingState + +FREQ_CAT_NUM = 4 + +UDF = 0 # undefined +OTH = 1 # other +ASC = 2 # ascii capital letter +ASS = 3 # ascii small letter +ACV = 4 # accent capital vowel +ACO = 5 # accent capital other +ASV = 6 # accent small vowel +ASO = 7 # accent small other +CLASS_NUM = 8 # total classes + +# fmt: off +Latin1_CharToClass = ( + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 00 - 07 + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 08 - 0F + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 10 - 17 + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 18 - 1F + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 20 - 27 + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 28 - 2F + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 30 - 37 + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 38 - 3F + OTH, ASC, ASC, ASC, ASC, ASC, ASC, ASC, # 40 - 47 + ASC, ASC, ASC, ASC, ASC, ASC, ASC, ASC, # 48 - 4F + ASC, ASC, ASC, ASC, ASC, ASC, ASC, ASC, # 50 - 57 + ASC, ASC, ASC, OTH, OTH, OTH, OTH, OTH, # 58 - 5F + OTH, ASS, ASS, ASS, ASS, ASS, ASS, ASS, # 60 - 67 + ASS, ASS, ASS, ASS, ASS, ASS, ASS, ASS, # 68 - 6F + ASS, ASS, ASS, ASS, ASS, ASS, ASS, ASS, # 70 - 77 + ASS, ASS, ASS, OTH, OTH, OTH, OTH, OTH, # 78 - 7F + OTH, UDF, OTH, ASO, OTH, OTH, OTH, OTH, # 80 - 87 + OTH, OTH, ACO, OTH, ACO, UDF, ACO, UDF, # 88 - 8F + UDF, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 90 - 97 + OTH, OTH, ASO, OTH, ASO, UDF, ASO, ACO, # 98 - 9F + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # A0 - A7 + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # A8 - AF + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # B0 - B7 + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # B8 - BF + ACV, ACV, ACV, ACV, ACV, ACV, ACO, ACO, # C0 - C7 + ACV, ACV, ACV, ACV, ACV, ACV, ACV, ACV, # C8 - CF + ACO, ACO, ACV, ACV, ACV, ACV, ACV, OTH, # D0 - D7 + ACV, ACV, ACV, ACV, ACV, ACO, ACO, ACO, # D8 - DF + ASV, ASV, ASV, ASV, ASV, ASV, ASO, ASO, # E0 - E7 + ASV, ASV, ASV, ASV, ASV, ASV, ASV, ASV, # E8 - EF + ASO, ASO, ASV, ASV, ASV, ASV, ASV, OTH, # F0 - F7 + ASV, ASV, ASV, ASV, ASV, ASO, ASO, ASO, # F8 - FF +) + +# 0 : illegal +# 1 : very unlikely +# 2 : normal +# 3 : very likely +Latin1ClassModel = ( +# UDF OTH ASC ASS ACV ACO ASV ASO + 0, 0, 0, 0, 0, 0, 0, 0, # UDF + 0, 3, 3, 3, 3, 3, 3, 3, # OTH + 0, 3, 3, 3, 3, 3, 3, 3, # ASC + 0, 3, 3, 3, 1, 1, 3, 3, # ASS + 0, 3, 3, 3, 1, 2, 1, 2, # ACV + 0, 3, 3, 3, 3, 3, 3, 3, # ACO + 0, 3, 1, 3, 1, 1, 1, 3, # ASV + 0, 3, 1, 3, 1, 1, 3, 3, # ASO +) +# fmt: on + + +class Latin1Prober(CharSetProber): + def __init__(self) -> None: + super().__init__() + self._last_char_class = OTH + self._freq_counter: List[int] = [] + self.reset() + + def reset(self) -> None: + self._last_char_class = OTH + self._freq_counter = [0] * FREQ_CAT_NUM + super().reset() + + @property + def charset_name(self) -> str: + return "ISO-8859-1" + + @property + def language(self) -> str: + return "" + + def feed(self, byte_str: Union[bytes, bytearray]) -> ProbingState: + byte_str = self.remove_xml_tags(byte_str) + for c in byte_str: + char_class = Latin1_CharToClass[c] + freq = Latin1ClassModel[(self._last_char_class * CLASS_NUM) + char_class] + if freq == 0: + self._state = ProbingState.NOT_ME + break + self._freq_counter[freq] += 1 + self._last_char_class = char_class + + return self.state + + def get_confidence(self) -> float: + if self.state == ProbingState.NOT_ME: + return 0.01 + + total = sum(self._freq_counter) + confidence = ( + 0.0 + if total < 0.01 + else (self._freq_counter[3] - self._freq_counter[1] * 20.0) / total + ) + confidence = max(confidence, 0.0) + # lower the confidence of latin1 so that other more accurate + # detector can take priority. + confidence *= 0.73 + return confidence diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/macromanprober.py b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/macromanprober.py new file mode 100644 index 0000000..1425d10 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/macromanprober.py @@ -0,0 +1,162 @@ +######################## BEGIN LICENSE BLOCK ######################## +# This code was modified from latin1prober.py by Rob Speer . +# The Original Code is Mozilla Universal charset detector code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 2001 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Rob Speer - adapt to MacRoman encoding +# Mark Pilgrim - port to Python +# Shy Shalom - original C code +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from typing import List, Union + +from .charsetprober import CharSetProber +from .enums import ProbingState + +FREQ_CAT_NUM = 4 + +UDF = 0 # undefined +OTH = 1 # other +ASC = 2 # ascii capital letter +ASS = 3 # ascii small letter +ACV = 4 # accent capital vowel +ACO = 5 # accent capital other +ASV = 6 # accent small vowel +ASO = 7 # accent small other +ODD = 8 # character that is unlikely to appear +CLASS_NUM = 9 # total classes + +# The change from Latin1 is that we explicitly look for extended characters +# that are infrequently-occurring symbols, and consider them to always be +# improbable. This should let MacRoman get out of the way of more likely +# encodings in most situations. + +# fmt: off +MacRoman_CharToClass = ( + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 00 - 07 + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 08 - 0F + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 10 - 17 + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 18 - 1F + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 20 - 27 + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 28 - 2F + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 30 - 37 + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 38 - 3F + OTH, ASC, ASC, ASC, ASC, ASC, ASC, ASC, # 40 - 47 + ASC, ASC, ASC, ASC, ASC, ASC, ASC, ASC, # 48 - 4F + ASC, ASC, ASC, ASC, ASC, ASC, ASC, ASC, # 50 - 57 + ASC, ASC, ASC, OTH, OTH, OTH, OTH, OTH, # 58 - 5F + OTH, ASS, ASS, ASS, ASS, ASS, ASS, ASS, # 60 - 67 + ASS, ASS, ASS, ASS, ASS, ASS, ASS, ASS, # 68 - 6F + ASS, ASS, ASS, ASS, ASS, ASS, ASS, ASS, # 70 - 77 + ASS, ASS, ASS, OTH, OTH, OTH, OTH, OTH, # 78 - 7F + ACV, ACV, ACO, ACV, ACO, ACV, ACV, ASV, # 80 - 87 + ASV, ASV, ASV, ASV, ASV, ASO, ASV, ASV, # 88 - 8F + ASV, ASV, ASV, ASV, ASV, ASV, ASO, ASV, # 90 - 97 + ASV, ASV, ASV, ASV, ASV, ASV, ASV, ASV, # 98 - 9F + OTH, OTH, OTH, OTH, OTH, OTH, OTH, ASO, # A0 - A7 + OTH, OTH, ODD, ODD, OTH, OTH, ACV, ACV, # A8 - AF + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # B0 - B7 + OTH, OTH, OTH, OTH, OTH, OTH, ASV, ASV, # B8 - BF + OTH, OTH, ODD, OTH, ODD, OTH, OTH, OTH, # C0 - C7 + OTH, OTH, OTH, ACV, ACV, ACV, ACV, ASV, # C8 - CF + OTH, OTH, OTH, OTH, OTH, OTH, OTH, ODD, # D0 - D7 + ASV, ACV, ODD, OTH, OTH, OTH, OTH, OTH, # D8 - DF + OTH, OTH, OTH, OTH, OTH, ACV, ACV, ACV, # E0 - E7 + ACV, ACV, ACV, ACV, ACV, ACV, ACV, ACV, # E8 - EF + ODD, ACV, ACV, ACV, ACV, ASV, ODD, ODD, # F0 - F7 + ODD, ODD, ODD, ODD, ODD, ODD, ODD, ODD, # F8 - FF +) + +# 0 : illegal +# 1 : very unlikely +# 2 : normal +# 3 : very likely +MacRomanClassModel = ( +# UDF OTH ASC ASS ACV ACO ASV ASO ODD + 0, 0, 0, 0, 0, 0, 0, 0, 0, # UDF + 0, 3, 3, 3, 3, 3, 3, 3, 1, # OTH + 0, 3, 3, 3, 3, 3, 3, 3, 1, # ASC + 0, 3, 3, 3, 1, 1, 3, 3, 1, # ASS + 0, 3, 3, 3, 1, 2, 1, 2, 1, # ACV + 0, 3, 3, 3, 3, 3, 3, 3, 1, # ACO + 0, 3, 1, 3, 1, 1, 1, 3, 1, # ASV + 0, 3, 1, 3, 1, 1, 3, 3, 1, # ASO + 0, 1, 1, 1, 1, 1, 1, 1, 1, # ODD +) +# fmt: on + + +class MacRomanProber(CharSetProber): + def __init__(self) -> None: + super().__init__() + self._last_char_class = OTH + self._freq_counter: List[int] = [] + self.reset() + + def reset(self) -> None: + self._last_char_class = OTH + self._freq_counter = [0] * FREQ_CAT_NUM + + # express the prior that MacRoman is a somewhat rare encoding; + # this can be done by starting out in a slightly improbable state + # that must be overcome + self._freq_counter[2] = 10 + + super().reset() + + @property + def charset_name(self) -> str: + return "MacRoman" + + @property + def language(self) -> str: + return "" + + def feed(self, byte_str: Union[bytes, bytearray]) -> ProbingState: + byte_str = self.remove_xml_tags(byte_str) + for c in byte_str: + char_class = MacRoman_CharToClass[c] + freq = MacRomanClassModel[(self._last_char_class * CLASS_NUM) + char_class] + if freq == 0: + self._state = ProbingState.NOT_ME + break + self._freq_counter[freq] += 1 + self._last_char_class = char_class + + return self.state + + def get_confidence(self) -> float: + if self.state == ProbingState.NOT_ME: + return 0.01 + + total = sum(self._freq_counter) + confidence = ( + 0.0 + if total < 0.01 + else (self._freq_counter[3] - self._freq_counter[1] * 20.0) / total + ) + confidence = max(confidence, 0.0) + # lower the confidence of MacRoman so that other more accurate + # detector can take priority. + confidence *= 0.73 + return confidence diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/mbcharsetprober.py b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/mbcharsetprober.py new file mode 100644 index 0000000..666307e --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/mbcharsetprober.py @@ -0,0 +1,95 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Universal charset detector code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 2001 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# Shy Shalom - original C code +# Proofpoint, Inc. +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from typing import Optional, Union + +from .chardistribution import CharDistributionAnalysis +from .charsetprober import CharSetProber +from .codingstatemachine import CodingStateMachine +from .enums import LanguageFilter, MachineState, ProbingState + + +class MultiByteCharSetProber(CharSetProber): + """ + MultiByteCharSetProber + """ + + def __init__(self, lang_filter: LanguageFilter = LanguageFilter.NONE) -> None: + super().__init__(lang_filter=lang_filter) + self.distribution_analyzer: Optional[CharDistributionAnalysis] = None + self.coding_sm: Optional[CodingStateMachine] = None + self._last_char = bytearray(b"\0\0") + + def reset(self) -> None: + super().reset() + if self.coding_sm: + self.coding_sm.reset() + if self.distribution_analyzer: + self.distribution_analyzer.reset() + self._last_char = bytearray(b"\0\0") + + def feed(self, byte_str: Union[bytes, bytearray]) -> ProbingState: + assert self.coding_sm is not None + assert self.distribution_analyzer is not None + + for i, byte in enumerate(byte_str): + coding_state = self.coding_sm.next_state(byte) + if coding_state == MachineState.ERROR: + self.logger.debug( + "%s %s prober hit error at byte %s", + self.charset_name, + self.language, + i, + ) + self._state = ProbingState.NOT_ME + break + if coding_state == MachineState.ITS_ME: + self._state = ProbingState.FOUND_IT + break + if coding_state == MachineState.START: + char_len = self.coding_sm.get_current_charlen() + if i == 0: + self._last_char[1] = byte + self.distribution_analyzer.feed(self._last_char, char_len) + else: + self.distribution_analyzer.feed(byte_str[i - 1 : i + 1], char_len) + + self._last_char[0] = byte_str[-1] + + if self.state == ProbingState.DETECTING: + if self.distribution_analyzer.got_enough_data() and ( + self.get_confidence() > self.SHORTCUT_THRESHOLD + ): + self._state = ProbingState.FOUND_IT + + return self.state + + def get_confidence(self) -> float: + assert self.distribution_analyzer is not None + return self.distribution_analyzer.get_confidence() diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/mbcsgroupprober.py b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/mbcsgroupprober.py new file mode 100644 index 0000000..6cb9cc7 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/mbcsgroupprober.py @@ -0,0 +1,57 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Universal charset detector code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 2001 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# Shy Shalom - original C code +# Proofpoint, Inc. +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from .big5prober import Big5Prober +from .charsetgroupprober import CharSetGroupProber +from .cp949prober import CP949Prober +from .enums import LanguageFilter +from .eucjpprober import EUCJPProber +from .euckrprober import EUCKRProber +from .euctwprober import EUCTWProber +from .gb2312prober import GB2312Prober +from .johabprober import JOHABProber +from .sjisprober import SJISProber +from .utf8prober import UTF8Prober + + +class MBCSGroupProber(CharSetGroupProber): + def __init__(self, lang_filter: LanguageFilter = LanguageFilter.NONE) -> None: + super().__init__(lang_filter=lang_filter) + self.probers = [ + UTF8Prober(), + SJISProber(), + EUCJPProber(), + GB2312Prober(), + EUCKRProber(), + CP949Prober(), + Big5Prober(), + EUCTWProber(), + JOHABProber(), + ] + self.reset() diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/mbcssm.py b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/mbcssm.py new file mode 100644 index 0000000..7bbe97e --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/mbcssm.py @@ -0,0 +1,661 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from .codingstatemachinedict import CodingStateMachineDict +from .enums import MachineState + +# BIG5 + +# fmt: off +BIG5_CLS = ( + 1, 1, 1, 1, 1, 1, 1, 1, # 00 - 07 #allow 0x00 as legal value + 1, 1, 1, 1, 1, 1, 0, 0, # 08 - 0f + 1, 1, 1, 1, 1, 1, 1, 1, # 10 - 17 + 1, 1, 1, 0, 1, 1, 1, 1, # 18 - 1f + 1, 1, 1, 1, 1, 1, 1, 1, # 20 - 27 + 1, 1, 1, 1, 1, 1, 1, 1, # 28 - 2f + 1, 1, 1, 1, 1, 1, 1, 1, # 30 - 37 + 1, 1, 1, 1, 1, 1, 1, 1, # 38 - 3f + 2, 2, 2, 2, 2, 2, 2, 2, # 40 - 47 + 2, 2, 2, 2, 2, 2, 2, 2, # 48 - 4f + 2, 2, 2, 2, 2, 2, 2, 2, # 50 - 57 + 2, 2, 2, 2, 2, 2, 2, 2, # 58 - 5f + 2, 2, 2, 2, 2, 2, 2, 2, # 60 - 67 + 2, 2, 2, 2, 2, 2, 2, 2, # 68 - 6f + 2, 2, 2, 2, 2, 2, 2, 2, # 70 - 77 + 2, 2, 2, 2, 2, 2, 2, 1, # 78 - 7f + 4, 4, 4, 4, 4, 4, 4, 4, # 80 - 87 + 4, 4, 4, 4, 4, 4, 4, 4, # 88 - 8f + 4, 4, 4, 4, 4, 4, 4, 4, # 90 - 97 + 4, 4, 4, 4, 4, 4, 4, 4, # 98 - 9f + 4, 3, 3, 3, 3, 3, 3, 3, # a0 - a7 + 3, 3, 3, 3, 3, 3, 3, 3, # a8 - af + 3, 3, 3, 3, 3, 3, 3, 3, # b0 - b7 + 3, 3, 3, 3, 3, 3, 3, 3, # b8 - bf + 3, 3, 3, 3, 3, 3, 3, 3, # c0 - c7 + 3, 3, 3, 3, 3, 3, 3, 3, # c8 - cf + 3, 3, 3, 3, 3, 3, 3, 3, # d0 - d7 + 3, 3, 3, 3, 3, 3, 3, 3, # d8 - df + 3, 3, 3, 3, 3, 3, 3, 3, # e0 - e7 + 3, 3, 3, 3, 3, 3, 3, 3, # e8 - ef + 3, 3, 3, 3, 3, 3, 3, 3, # f0 - f7 + 3, 3, 3, 3, 3, 3, 3, 0 # f8 - ff +) + +BIG5_ST = ( + MachineState.ERROR,MachineState.START,MachineState.START, 3,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#00-07 + MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ERROR,#08-0f + MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START#10-17 +) +# fmt: on + +BIG5_CHAR_LEN_TABLE = (0, 1, 1, 2, 0) + +BIG5_SM_MODEL: CodingStateMachineDict = { + "class_table": BIG5_CLS, + "class_factor": 5, + "state_table": BIG5_ST, + "char_len_table": BIG5_CHAR_LEN_TABLE, + "name": "Big5", +} + +# CP949 +# fmt: off +CP949_CLS = ( + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, # 00 - 0f + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, # 10 - 1f + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, # 20 - 2f + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, # 30 - 3f + 1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, # 40 - 4f + 4, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 1, 1, 1, 1, 1, # 50 - 5f + 1, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, # 60 - 6f + 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 1, 1, 1, 1, 1, # 70 - 7f + 0, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, # 80 - 8f + 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, # 90 - 9f + 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, # a0 - af + 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, # b0 - bf + 7, 7, 7, 7, 7, 7, 9, 2, 2, 3, 2, 2, 2, 2, 2, 2, # c0 - cf + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, # d0 - df + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, # e0 - ef + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, # f0 - ff +) + +CP949_ST = ( +#cls= 0 1 2 3 4 5 6 7 8 9 # previous state = + MachineState.ERROR,MachineState.START, 3,MachineState.ERROR,MachineState.START,MachineState.START, 4, 5,MachineState.ERROR, 6, # MachineState.START + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR, # MachineState.ERROR + MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME, # MachineState.ITS_ME + MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.START,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START, # 3 + MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START, # 4 + MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START, # 5 + MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START, # 6 +) +# fmt: on + +CP949_CHAR_LEN_TABLE = (0, 1, 2, 0, 1, 1, 2, 2, 0, 2) + +CP949_SM_MODEL: CodingStateMachineDict = { + "class_table": CP949_CLS, + "class_factor": 10, + "state_table": CP949_ST, + "char_len_table": CP949_CHAR_LEN_TABLE, + "name": "CP949", +} + +# EUC-JP +# fmt: off +EUCJP_CLS = ( + 4, 4, 4, 4, 4, 4, 4, 4, # 00 - 07 + 4, 4, 4, 4, 4, 4, 5, 5, # 08 - 0f + 4, 4, 4, 4, 4, 4, 4, 4, # 10 - 17 + 4, 4, 4, 5, 4, 4, 4, 4, # 18 - 1f + 4, 4, 4, 4, 4, 4, 4, 4, # 20 - 27 + 4, 4, 4, 4, 4, 4, 4, 4, # 28 - 2f + 4, 4, 4, 4, 4, 4, 4, 4, # 30 - 37 + 4, 4, 4, 4, 4, 4, 4, 4, # 38 - 3f + 4, 4, 4, 4, 4, 4, 4, 4, # 40 - 47 + 4, 4, 4, 4, 4, 4, 4, 4, # 48 - 4f + 4, 4, 4, 4, 4, 4, 4, 4, # 50 - 57 + 4, 4, 4, 4, 4, 4, 4, 4, # 58 - 5f + 4, 4, 4, 4, 4, 4, 4, 4, # 60 - 67 + 4, 4, 4, 4, 4, 4, 4, 4, # 68 - 6f + 4, 4, 4, 4, 4, 4, 4, 4, # 70 - 77 + 4, 4, 4, 4, 4, 4, 4, 4, # 78 - 7f + 5, 5, 5, 5, 5, 5, 5, 5, # 80 - 87 + 5, 5, 5, 5, 5, 5, 1, 3, # 88 - 8f + 5, 5, 5, 5, 5, 5, 5, 5, # 90 - 97 + 5, 5, 5, 5, 5, 5, 5, 5, # 98 - 9f + 5, 2, 2, 2, 2, 2, 2, 2, # a0 - a7 + 2, 2, 2, 2, 2, 2, 2, 2, # a8 - af + 2, 2, 2, 2, 2, 2, 2, 2, # b0 - b7 + 2, 2, 2, 2, 2, 2, 2, 2, # b8 - bf + 2, 2, 2, 2, 2, 2, 2, 2, # c0 - c7 + 2, 2, 2, 2, 2, 2, 2, 2, # c8 - cf + 2, 2, 2, 2, 2, 2, 2, 2, # d0 - d7 + 2, 2, 2, 2, 2, 2, 2, 2, # d8 - df + 0, 0, 0, 0, 0, 0, 0, 0, # e0 - e7 + 0, 0, 0, 0, 0, 0, 0, 0, # e8 - ef + 0, 0, 0, 0, 0, 0, 0, 0, # f0 - f7 + 0, 0, 0, 0, 0, 0, 0, 5 # f8 - ff +) + +EUCJP_ST = ( + 3, 4, 3, 5,MachineState.START,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#00-07 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,#08-0f + MachineState.ITS_ME,MachineState.ITS_ME,MachineState.START,MachineState.ERROR,MachineState.START,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#10-17 + MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR, 3,MachineState.ERROR,#18-1f + 3,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START,MachineState.START#20-27 +) +# fmt: on + +EUCJP_CHAR_LEN_TABLE = (2, 2, 2, 3, 1, 0) + +EUCJP_SM_MODEL: CodingStateMachineDict = { + "class_table": EUCJP_CLS, + "class_factor": 6, + "state_table": EUCJP_ST, + "char_len_table": EUCJP_CHAR_LEN_TABLE, + "name": "EUC-JP", +} + +# EUC-KR +# fmt: off +EUCKR_CLS = ( + 1, 1, 1, 1, 1, 1, 1, 1, # 00 - 07 + 1, 1, 1, 1, 1, 1, 0, 0, # 08 - 0f + 1, 1, 1, 1, 1, 1, 1, 1, # 10 - 17 + 1, 1, 1, 0, 1, 1, 1, 1, # 18 - 1f + 1, 1, 1, 1, 1, 1, 1, 1, # 20 - 27 + 1, 1, 1, 1, 1, 1, 1, 1, # 28 - 2f + 1, 1, 1, 1, 1, 1, 1, 1, # 30 - 37 + 1, 1, 1, 1, 1, 1, 1, 1, # 38 - 3f + 1, 1, 1, 1, 1, 1, 1, 1, # 40 - 47 + 1, 1, 1, 1, 1, 1, 1, 1, # 48 - 4f + 1, 1, 1, 1, 1, 1, 1, 1, # 50 - 57 + 1, 1, 1, 1, 1, 1, 1, 1, # 58 - 5f + 1, 1, 1, 1, 1, 1, 1, 1, # 60 - 67 + 1, 1, 1, 1, 1, 1, 1, 1, # 68 - 6f + 1, 1, 1, 1, 1, 1, 1, 1, # 70 - 77 + 1, 1, 1, 1, 1, 1, 1, 1, # 78 - 7f + 0, 0, 0, 0, 0, 0, 0, 0, # 80 - 87 + 0, 0, 0, 0, 0, 0, 0, 0, # 88 - 8f + 0, 0, 0, 0, 0, 0, 0, 0, # 90 - 97 + 0, 0, 0, 0, 0, 0, 0, 0, # 98 - 9f + 0, 2, 2, 2, 2, 2, 2, 2, # a0 - a7 + 2, 2, 2, 2, 2, 3, 3, 3, # a8 - af + 2, 2, 2, 2, 2, 2, 2, 2, # b0 - b7 + 2, 2, 2, 2, 2, 2, 2, 2, # b8 - bf + 2, 2, 2, 2, 2, 2, 2, 2, # c0 - c7 + 2, 3, 2, 2, 2, 2, 2, 2, # c8 - cf + 2, 2, 2, 2, 2, 2, 2, 2, # d0 - d7 + 2, 2, 2, 2, 2, 2, 2, 2, # d8 - df + 2, 2, 2, 2, 2, 2, 2, 2, # e0 - e7 + 2, 2, 2, 2, 2, 2, 2, 2, # e8 - ef + 2, 2, 2, 2, 2, 2, 2, 2, # f0 - f7 + 2, 2, 2, 2, 2, 2, 2, 0 # f8 - ff +) + +EUCKR_ST = ( + MachineState.ERROR,MachineState.START, 3,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#00-07 + MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.START #08-0f +) +# fmt: on + +EUCKR_CHAR_LEN_TABLE = (0, 1, 2, 0) + +EUCKR_SM_MODEL: CodingStateMachineDict = { + "class_table": EUCKR_CLS, + "class_factor": 4, + "state_table": EUCKR_ST, + "char_len_table": EUCKR_CHAR_LEN_TABLE, + "name": "EUC-KR", +} + +# JOHAB +# fmt: off +JOHAB_CLS = ( + 4,4,4,4,4,4,4,4, # 00 - 07 + 4,4,4,4,4,4,0,0, # 08 - 0f + 4,4,4,4,4,4,4,4, # 10 - 17 + 4,4,4,0,4,4,4,4, # 18 - 1f + 4,4,4,4,4,4,4,4, # 20 - 27 + 4,4,4,4,4,4,4,4, # 28 - 2f + 4,3,3,3,3,3,3,3, # 30 - 37 + 3,3,3,3,3,3,3,3, # 38 - 3f + 3,1,1,1,1,1,1,1, # 40 - 47 + 1,1,1,1,1,1,1,1, # 48 - 4f + 1,1,1,1,1,1,1,1, # 50 - 57 + 1,1,1,1,1,1,1,1, # 58 - 5f + 1,1,1,1,1,1,1,1, # 60 - 67 + 1,1,1,1,1,1,1,1, # 68 - 6f + 1,1,1,1,1,1,1,1, # 70 - 77 + 1,1,1,1,1,1,1,2, # 78 - 7f + 6,6,6,6,8,8,8,8, # 80 - 87 + 8,8,8,8,8,8,8,8, # 88 - 8f + 8,7,7,7,7,7,7,7, # 90 - 97 + 7,7,7,7,7,7,7,7, # 98 - 9f + 7,7,7,7,7,7,7,7, # a0 - a7 + 7,7,7,7,7,7,7,7, # a8 - af + 7,7,7,7,7,7,7,7, # b0 - b7 + 7,7,7,7,7,7,7,7, # b8 - bf + 7,7,7,7,7,7,7,7, # c0 - c7 + 7,7,7,7,7,7,7,7, # c8 - cf + 7,7,7,7,5,5,5,5, # d0 - d7 + 5,9,9,9,9,9,9,5, # d8 - df + 9,9,9,9,9,9,9,9, # e0 - e7 + 9,9,9,9,9,9,9,9, # e8 - ef + 9,9,9,9,9,9,9,9, # f0 - f7 + 9,9,5,5,5,5,5,0 # f8 - ff +) + +JOHAB_ST = ( +# cls = 0 1 2 3 4 5 6 7 8 9 + MachineState.ERROR ,MachineState.START ,MachineState.START ,MachineState.START ,MachineState.START ,MachineState.ERROR ,MachineState.ERROR ,3 ,3 ,4 , # MachineState.START + MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME, # MachineState.ITS_ME + MachineState.ERROR ,MachineState.ERROR ,MachineState.ERROR ,MachineState.ERROR ,MachineState.ERROR ,MachineState.ERROR ,MachineState.ERROR ,MachineState.ERROR ,MachineState.ERROR ,MachineState.ERROR , # MachineState.ERROR + MachineState.ERROR ,MachineState.START ,MachineState.START ,MachineState.ERROR ,MachineState.ERROR ,MachineState.START ,MachineState.START ,MachineState.START ,MachineState.START ,MachineState.START , # 3 + MachineState.ERROR ,MachineState.START ,MachineState.ERROR ,MachineState.START ,MachineState.ERROR ,MachineState.START ,MachineState.ERROR ,MachineState.START ,MachineState.ERROR ,MachineState.START , # 4 +) +# fmt: on + +JOHAB_CHAR_LEN_TABLE = (0, 1, 1, 1, 1, 0, 0, 2, 2, 2) + +JOHAB_SM_MODEL: CodingStateMachineDict = { + "class_table": JOHAB_CLS, + "class_factor": 10, + "state_table": JOHAB_ST, + "char_len_table": JOHAB_CHAR_LEN_TABLE, + "name": "Johab", +} + +# EUC-TW +# fmt: off +EUCTW_CLS = ( + 2, 2, 2, 2, 2, 2, 2, 2, # 00 - 07 + 2, 2, 2, 2, 2, 2, 0, 0, # 08 - 0f + 2, 2, 2, 2, 2, 2, 2, 2, # 10 - 17 + 2, 2, 2, 0, 2, 2, 2, 2, # 18 - 1f + 2, 2, 2, 2, 2, 2, 2, 2, # 20 - 27 + 2, 2, 2, 2, 2, 2, 2, 2, # 28 - 2f + 2, 2, 2, 2, 2, 2, 2, 2, # 30 - 37 + 2, 2, 2, 2, 2, 2, 2, 2, # 38 - 3f + 2, 2, 2, 2, 2, 2, 2, 2, # 40 - 47 + 2, 2, 2, 2, 2, 2, 2, 2, # 48 - 4f + 2, 2, 2, 2, 2, 2, 2, 2, # 50 - 57 + 2, 2, 2, 2, 2, 2, 2, 2, # 58 - 5f + 2, 2, 2, 2, 2, 2, 2, 2, # 60 - 67 + 2, 2, 2, 2, 2, 2, 2, 2, # 68 - 6f + 2, 2, 2, 2, 2, 2, 2, 2, # 70 - 77 + 2, 2, 2, 2, 2, 2, 2, 2, # 78 - 7f + 0, 0, 0, 0, 0, 0, 0, 0, # 80 - 87 + 0, 0, 0, 0, 0, 0, 6, 0, # 88 - 8f + 0, 0, 0, 0, 0, 0, 0, 0, # 90 - 97 + 0, 0, 0, 0, 0, 0, 0, 0, # 98 - 9f + 0, 3, 4, 4, 4, 4, 4, 4, # a0 - a7 + 5, 5, 1, 1, 1, 1, 1, 1, # a8 - af + 1, 1, 1, 1, 1, 1, 1, 1, # b0 - b7 + 1, 1, 1, 1, 1, 1, 1, 1, # b8 - bf + 1, 1, 3, 1, 3, 3, 3, 3, # c0 - c7 + 3, 3, 3, 3, 3, 3, 3, 3, # c8 - cf + 3, 3, 3, 3, 3, 3, 3, 3, # d0 - d7 + 3, 3, 3, 3, 3, 3, 3, 3, # d8 - df + 3, 3, 3, 3, 3, 3, 3, 3, # e0 - e7 + 3, 3, 3, 3, 3, 3, 3, 3, # e8 - ef + 3, 3, 3, 3, 3, 3, 3, 3, # f0 - f7 + 3, 3, 3, 3, 3, 3, 3, 0 # f8 - ff +) + +EUCTW_ST = ( + MachineState.ERROR,MachineState.ERROR,MachineState.START, 3, 3, 3, 4,MachineState.ERROR,#00-07 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ITS_ME,#08-0f + MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ERROR,MachineState.START,MachineState.ERROR,#10-17 + MachineState.START,MachineState.START,MachineState.START,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#18-1f + 5,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.ERROR,MachineState.START,MachineState.START,#20-27 + MachineState.START,MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START #28-2f +) +# fmt: on + +EUCTW_CHAR_LEN_TABLE = (0, 0, 1, 2, 2, 2, 3) + +EUCTW_SM_MODEL: CodingStateMachineDict = { + "class_table": EUCTW_CLS, + "class_factor": 7, + "state_table": EUCTW_ST, + "char_len_table": EUCTW_CHAR_LEN_TABLE, + "name": "x-euc-tw", +} + +# GB2312 +# fmt: off +GB2312_CLS = ( + 1, 1, 1, 1, 1, 1, 1, 1, # 00 - 07 + 1, 1, 1, 1, 1, 1, 0, 0, # 08 - 0f + 1, 1, 1, 1, 1, 1, 1, 1, # 10 - 17 + 1, 1, 1, 0, 1, 1, 1, 1, # 18 - 1f + 1, 1, 1, 1, 1, 1, 1, 1, # 20 - 27 + 1, 1, 1, 1, 1, 1, 1, 1, # 28 - 2f + 3, 3, 3, 3, 3, 3, 3, 3, # 30 - 37 + 3, 3, 1, 1, 1, 1, 1, 1, # 38 - 3f + 2, 2, 2, 2, 2, 2, 2, 2, # 40 - 47 + 2, 2, 2, 2, 2, 2, 2, 2, # 48 - 4f + 2, 2, 2, 2, 2, 2, 2, 2, # 50 - 57 + 2, 2, 2, 2, 2, 2, 2, 2, # 58 - 5f + 2, 2, 2, 2, 2, 2, 2, 2, # 60 - 67 + 2, 2, 2, 2, 2, 2, 2, 2, # 68 - 6f + 2, 2, 2, 2, 2, 2, 2, 2, # 70 - 77 + 2, 2, 2, 2, 2, 2, 2, 4, # 78 - 7f + 5, 6, 6, 6, 6, 6, 6, 6, # 80 - 87 + 6, 6, 6, 6, 6, 6, 6, 6, # 88 - 8f + 6, 6, 6, 6, 6, 6, 6, 6, # 90 - 97 + 6, 6, 6, 6, 6, 6, 6, 6, # 98 - 9f + 6, 6, 6, 6, 6, 6, 6, 6, # a0 - a7 + 6, 6, 6, 6, 6, 6, 6, 6, # a8 - af + 6, 6, 6, 6, 6, 6, 6, 6, # b0 - b7 + 6, 6, 6, 6, 6, 6, 6, 6, # b8 - bf + 6, 6, 6, 6, 6, 6, 6, 6, # c0 - c7 + 6, 6, 6, 6, 6, 6, 6, 6, # c8 - cf + 6, 6, 6, 6, 6, 6, 6, 6, # d0 - d7 + 6, 6, 6, 6, 6, 6, 6, 6, # d8 - df + 6, 6, 6, 6, 6, 6, 6, 6, # e0 - e7 + 6, 6, 6, 6, 6, 6, 6, 6, # e8 - ef + 6, 6, 6, 6, 6, 6, 6, 6, # f0 - f7 + 6, 6, 6, 6, 6, 6, 6, 0 # f8 - ff +) + +GB2312_ST = ( + MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START, 3,MachineState.ERROR,#00-07 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ITS_ME,#08-0f + MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ERROR,MachineState.ERROR,MachineState.START,#10-17 + 4,MachineState.ERROR,MachineState.START,MachineState.START,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#18-1f + MachineState.ERROR,MachineState.ERROR, 5,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ERROR,#20-27 + MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START #28-2f +) +# fmt: on + +# To be accurate, the length of class 6 can be either 2 or 4. +# But it is not necessary to discriminate between the two since +# it is used for frequency analysis only, and we are validating +# each code range there as well. So it is safe to set it to be +# 2 here. +GB2312_CHAR_LEN_TABLE = (0, 1, 1, 1, 1, 1, 2) + +GB2312_SM_MODEL: CodingStateMachineDict = { + "class_table": GB2312_CLS, + "class_factor": 7, + "state_table": GB2312_ST, + "char_len_table": GB2312_CHAR_LEN_TABLE, + "name": "GB2312", +} + +# Shift_JIS +# fmt: off +SJIS_CLS = ( + 1, 1, 1, 1, 1, 1, 1, 1, # 00 - 07 + 1, 1, 1, 1, 1, 1, 0, 0, # 08 - 0f + 1, 1, 1, 1, 1, 1, 1, 1, # 10 - 17 + 1, 1, 1, 0, 1, 1, 1, 1, # 18 - 1f + 1, 1, 1, 1, 1, 1, 1, 1, # 20 - 27 + 1, 1, 1, 1, 1, 1, 1, 1, # 28 - 2f + 1, 1, 1, 1, 1, 1, 1, 1, # 30 - 37 + 1, 1, 1, 1, 1, 1, 1, 1, # 38 - 3f + 2, 2, 2, 2, 2, 2, 2, 2, # 40 - 47 + 2, 2, 2, 2, 2, 2, 2, 2, # 48 - 4f + 2, 2, 2, 2, 2, 2, 2, 2, # 50 - 57 + 2, 2, 2, 2, 2, 2, 2, 2, # 58 - 5f + 2, 2, 2, 2, 2, 2, 2, 2, # 60 - 67 + 2, 2, 2, 2, 2, 2, 2, 2, # 68 - 6f + 2, 2, 2, 2, 2, 2, 2, 2, # 70 - 77 + 2, 2, 2, 2, 2, 2, 2, 1, # 78 - 7f + 3, 3, 3, 3, 3, 2, 2, 3, # 80 - 87 + 3, 3, 3, 3, 3, 3, 3, 3, # 88 - 8f + 3, 3, 3, 3, 3, 3, 3, 3, # 90 - 97 + 3, 3, 3, 3, 3, 3, 3, 3, # 98 - 9f + #0xa0 is illegal in sjis encoding, but some pages does + #contain such byte. We need to be more error forgiven. + 2, 2, 2, 2, 2, 2, 2, 2, # a0 - a7 + 2, 2, 2, 2, 2, 2, 2, 2, # a8 - af + 2, 2, 2, 2, 2, 2, 2, 2, # b0 - b7 + 2, 2, 2, 2, 2, 2, 2, 2, # b8 - bf + 2, 2, 2, 2, 2, 2, 2, 2, # c0 - c7 + 2, 2, 2, 2, 2, 2, 2, 2, # c8 - cf + 2, 2, 2, 2, 2, 2, 2, 2, # d0 - d7 + 2, 2, 2, 2, 2, 2, 2, 2, # d8 - df + 3, 3, 3, 3, 3, 3, 3, 3, # e0 - e7 + 3, 3, 3, 3, 3, 4, 4, 4, # e8 - ef + 3, 3, 3, 3, 3, 3, 3, 3, # f0 - f7 + 3, 3, 3, 3, 3, 0, 0, 0, # f8 - ff +) + +SJIS_ST = ( + MachineState.ERROR,MachineState.START,MachineState.START, 3,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#00-07 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,#08-0f + MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START,MachineState.START #10-17 +) +# fmt: on + +SJIS_CHAR_LEN_TABLE = (0, 1, 1, 2, 0, 0) + +SJIS_SM_MODEL: CodingStateMachineDict = { + "class_table": SJIS_CLS, + "class_factor": 6, + "state_table": SJIS_ST, + "char_len_table": SJIS_CHAR_LEN_TABLE, + "name": "Shift_JIS", +} + +# UCS2-BE +# fmt: off +UCS2BE_CLS = ( + 0, 0, 0, 0, 0, 0, 0, 0, # 00 - 07 + 0, 0, 1, 0, 0, 2, 0, 0, # 08 - 0f + 0, 0, 0, 0, 0, 0, 0, 0, # 10 - 17 + 0, 0, 0, 3, 0, 0, 0, 0, # 18 - 1f + 0, 0, 0, 0, 0, 0, 0, 0, # 20 - 27 + 0, 3, 3, 3, 3, 3, 0, 0, # 28 - 2f + 0, 0, 0, 0, 0, 0, 0, 0, # 30 - 37 + 0, 0, 0, 0, 0, 0, 0, 0, # 38 - 3f + 0, 0, 0, 0, 0, 0, 0, 0, # 40 - 47 + 0, 0, 0, 0, 0, 0, 0, 0, # 48 - 4f + 0, 0, 0, 0, 0, 0, 0, 0, # 50 - 57 + 0, 0, 0, 0, 0, 0, 0, 0, # 58 - 5f + 0, 0, 0, 0, 0, 0, 0, 0, # 60 - 67 + 0, 0, 0, 0, 0, 0, 0, 0, # 68 - 6f + 0, 0, 0, 0, 0, 0, 0, 0, # 70 - 77 + 0, 0, 0, 0, 0, 0, 0, 0, # 78 - 7f + 0, 0, 0, 0, 0, 0, 0, 0, # 80 - 87 + 0, 0, 0, 0, 0, 0, 0, 0, # 88 - 8f + 0, 0, 0, 0, 0, 0, 0, 0, # 90 - 97 + 0, 0, 0, 0, 0, 0, 0, 0, # 98 - 9f + 0, 0, 0, 0, 0, 0, 0, 0, # a0 - a7 + 0, 0, 0, 0, 0, 0, 0, 0, # a8 - af + 0, 0, 0, 0, 0, 0, 0, 0, # b0 - b7 + 0, 0, 0, 0, 0, 0, 0, 0, # b8 - bf + 0, 0, 0, 0, 0, 0, 0, 0, # c0 - c7 + 0, 0, 0, 0, 0, 0, 0, 0, # c8 - cf + 0, 0, 0, 0, 0, 0, 0, 0, # d0 - d7 + 0, 0, 0, 0, 0, 0, 0, 0, # d8 - df + 0, 0, 0, 0, 0, 0, 0, 0, # e0 - e7 + 0, 0, 0, 0, 0, 0, 0, 0, # e8 - ef + 0, 0, 0, 0, 0, 0, 0, 0, # f0 - f7 + 0, 0, 0, 0, 0, 0, 4, 5 # f8 - ff +) + +UCS2BE_ST = ( + 5, 7, 7,MachineState.ERROR, 4, 3,MachineState.ERROR,MachineState.ERROR,#00-07 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,#08-0f + MachineState.ITS_ME,MachineState.ITS_ME, 6, 6, 6, 6,MachineState.ERROR,MachineState.ERROR,#10-17 + 6, 6, 6, 6, 6,MachineState.ITS_ME, 6, 6,#18-1f + 6, 6, 6, 6, 5, 7, 7,MachineState.ERROR,#20-27 + 5, 8, 6, 6,MachineState.ERROR, 6, 6, 6,#28-2f + 6, 6, 6, 6,MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.START #30-37 +) +# fmt: on + +UCS2BE_CHAR_LEN_TABLE = (2, 2, 2, 0, 2, 2) + +UCS2BE_SM_MODEL: CodingStateMachineDict = { + "class_table": UCS2BE_CLS, + "class_factor": 6, + "state_table": UCS2BE_ST, + "char_len_table": UCS2BE_CHAR_LEN_TABLE, + "name": "UTF-16BE", +} + +# UCS2-LE +# fmt: off +UCS2LE_CLS = ( + 0, 0, 0, 0, 0, 0, 0, 0, # 00 - 07 + 0, 0, 1, 0, 0, 2, 0, 0, # 08 - 0f + 0, 0, 0, 0, 0, 0, 0, 0, # 10 - 17 + 0, 0, 0, 3, 0, 0, 0, 0, # 18 - 1f + 0, 0, 0, 0, 0, 0, 0, 0, # 20 - 27 + 0, 3, 3, 3, 3, 3, 0, 0, # 28 - 2f + 0, 0, 0, 0, 0, 0, 0, 0, # 30 - 37 + 0, 0, 0, 0, 0, 0, 0, 0, # 38 - 3f + 0, 0, 0, 0, 0, 0, 0, 0, # 40 - 47 + 0, 0, 0, 0, 0, 0, 0, 0, # 48 - 4f + 0, 0, 0, 0, 0, 0, 0, 0, # 50 - 57 + 0, 0, 0, 0, 0, 0, 0, 0, # 58 - 5f + 0, 0, 0, 0, 0, 0, 0, 0, # 60 - 67 + 0, 0, 0, 0, 0, 0, 0, 0, # 68 - 6f + 0, 0, 0, 0, 0, 0, 0, 0, # 70 - 77 + 0, 0, 0, 0, 0, 0, 0, 0, # 78 - 7f + 0, 0, 0, 0, 0, 0, 0, 0, # 80 - 87 + 0, 0, 0, 0, 0, 0, 0, 0, # 88 - 8f + 0, 0, 0, 0, 0, 0, 0, 0, # 90 - 97 + 0, 0, 0, 0, 0, 0, 0, 0, # 98 - 9f + 0, 0, 0, 0, 0, 0, 0, 0, # a0 - a7 + 0, 0, 0, 0, 0, 0, 0, 0, # a8 - af + 0, 0, 0, 0, 0, 0, 0, 0, # b0 - b7 + 0, 0, 0, 0, 0, 0, 0, 0, # b8 - bf + 0, 0, 0, 0, 0, 0, 0, 0, # c0 - c7 + 0, 0, 0, 0, 0, 0, 0, 0, # c8 - cf + 0, 0, 0, 0, 0, 0, 0, 0, # d0 - d7 + 0, 0, 0, 0, 0, 0, 0, 0, # d8 - df + 0, 0, 0, 0, 0, 0, 0, 0, # e0 - e7 + 0, 0, 0, 0, 0, 0, 0, 0, # e8 - ef + 0, 0, 0, 0, 0, 0, 0, 0, # f0 - f7 + 0, 0, 0, 0, 0, 0, 4, 5 # f8 - ff +) + +UCS2LE_ST = ( + 6, 6, 7, 6, 4, 3,MachineState.ERROR,MachineState.ERROR,#00-07 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,#08-0f + MachineState.ITS_ME,MachineState.ITS_ME, 5, 5, 5,MachineState.ERROR,MachineState.ITS_ME,MachineState.ERROR,#10-17 + 5, 5, 5,MachineState.ERROR, 5,MachineState.ERROR, 6, 6,#18-1f + 7, 6, 8, 8, 5, 5, 5,MachineState.ERROR,#20-27 + 5, 5, 5,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR, 5, 5,#28-2f + 5, 5, 5,MachineState.ERROR, 5,MachineState.ERROR,MachineState.START,MachineState.START #30-37 +) +# fmt: on + +UCS2LE_CHAR_LEN_TABLE = (2, 2, 2, 2, 2, 2) + +UCS2LE_SM_MODEL: CodingStateMachineDict = { + "class_table": UCS2LE_CLS, + "class_factor": 6, + "state_table": UCS2LE_ST, + "char_len_table": UCS2LE_CHAR_LEN_TABLE, + "name": "UTF-16LE", +} + +# UTF-8 +# fmt: off +UTF8_CLS = ( + 1, 1, 1, 1, 1, 1, 1, 1, # 00 - 07 #allow 0x00 as a legal value + 1, 1, 1, 1, 1, 1, 0, 0, # 08 - 0f + 1, 1, 1, 1, 1, 1, 1, 1, # 10 - 17 + 1, 1, 1, 0, 1, 1, 1, 1, # 18 - 1f + 1, 1, 1, 1, 1, 1, 1, 1, # 20 - 27 + 1, 1, 1, 1, 1, 1, 1, 1, # 28 - 2f + 1, 1, 1, 1, 1, 1, 1, 1, # 30 - 37 + 1, 1, 1, 1, 1, 1, 1, 1, # 38 - 3f + 1, 1, 1, 1, 1, 1, 1, 1, # 40 - 47 + 1, 1, 1, 1, 1, 1, 1, 1, # 48 - 4f + 1, 1, 1, 1, 1, 1, 1, 1, # 50 - 57 + 1, 1, 1, 1, 1, 1, 1, 1, # 58 - 5f + 1, 1, 1, 1, 1, 1, 1, 1, # 60 - 67 + 1, 1, 1, 1, 1, 1, 1, 1, # 68 - 6f + 1, 1, 1, 1, 1, 1, 1, 1, # 70 - 77 + 1, 1, 1, 1, 1, 1, 1, 1, # 78 - 7f + 2, 2, 2, 2, 3, 3, 3, 3, # 80 - 87 + 4, 4, 4, 4, 4, 4, 4, 4, # 88 - 8f + 4, 4, 4, 4, 4, 4, 4, 4, # 90 - 97 + 4, 4, 4, 4, 4, 4, 4, 4, # 98 - 9f + 5, 5, 5, 5, 5, 5, 5, 5, # a0 - a7 + 5, 5, 5, 5, 5, 5, 5, 5, # a8 - af + 5, 5, 5, 5, 5, 5, 5, 5, # b0 - b7 + 5, 5, 5, 5, 5, 5, 5, 5, # b8 - bf + 0, 0, 6, 6, 6, 6, 6, 6, # c0 - c7 + 6, 6, 6, 6, 6, 6, 6, 6, # c8 - cf + 6, 6, 6, 6, 6, 6, 6, 6, # d0 - d7 + 6, 6, 6, 6, 6, 6, 6, 6, # d8 - df + 7, 8, 8, 8, 8, 8, 8, 8, # e0 - e7 + 8, 8, 8, 8, 8, 9, 8, 8, # e8 - ef + 10, 11, 11, 11, 11, 11, 11, 11, # f0 - f7 + 12, 13, 13, 13, 14, 15, 0, 0 # f8 - ff +) + +UTF8_ST = ( + MachineState.ERROR,MachineState.START,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR, 12, 10,#00-07 + 9, 11, 8, 7, 6, 5, 4, 3,#08-0f + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#10-17 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#18-1f + MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,#20-27 + MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,#28-2f + MachineState.ERROR,MachineState.ERROR, 5, 5, 5, 5,MachineState.ERROR,MachineState.ERROR,#30-37 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#38-3f + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR, 5, 5, 5,MachineState.ERROR,MachineState.ERROR,#40-47 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#48-4f + MachineState.ERROR,MachineState.ERROR, 7, 7, 7, 7,MachineState.ERROR,MachineState.ERROR,#50-57 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#58-5f + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR, 7, 7,MachineState.ERROR,MachineState.ERROR,#60-67 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#68-6f + MachineState.ERROR,MachineState.ERROR, 9, 9, 9, 9,MachineState.ERROR,MachineState.ERROR,#70-77 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#78-7f + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR, 9,MachineState.ERROR,MachineState.ERROR,#80-87 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#88-8f + MachineState.ERROR,MachineState.ERROR, 12, 12, 12, 12,MachineState.ERROR,MachineState.ERROR,#90-97 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#98-9f + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR, 12,MachineState.ERROR,MachineState.ERROR,#a0-a7 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#a8-af + MachineState.ERROR,MachineState.ERROR, 12, 12, 12,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#b0-b7 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#b8-bf + MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.ERROR,MachineState.ERROR,#c0-c7 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR #c8-cf +) +# fmt: on + +UTF8_CHAR_LEN_TABLE = (0, 1, 0, 0, 0, 0, 2, 3, 3, 3, 4, 4, 5, 5, 6, 6) + +UTF8_SM_MODEL: CodingStateMachineDict = { + "class_table": UTF8_CLS, + "class_factor": 16, + "state_table": UTF8_ST, + "char_len_table": UTF8_CHAR_LEN_TABLE, + "name": "UTF-8", +} diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/metadata/__init__.py b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/metadata/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/metadata/__pycache__/__init__.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/metadata/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..122646f9ee556da9ad45a4ea305b42464bc79ea7 GIT binary patch literal 252 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 Zrs8k_d5uYEqnUu78lf#I_>U}|{|nYQ4jupi literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/metadata/languages.py b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/metadata/languages.py new file mode 100644 index 0000000..eb40c5f --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/metadata/languages.py @@ -0,0 +1,352 @@ +""" +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 string import ascii_letters +from typing import List, Optional + +# TODO: Add Ukrainian (KOI8-U) + + +class Language: + """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: Optional[str] = None, + iso_code: Optional[str] = None, + use_ascii: bool = True, + charsets: Optional[List[str]] = None, + alphabet: Optional[str] = None, + wiki_start_pages: Optional[List[str]] = None, + ) -> None: + super().__init__() + self.name = name + self.iso_code = iso_code + self.use_ascii = use_ascii + self.charsets = charsets + if self.use_ascii: + if alphabet: + alphabet += ascii_letters + else: + alphabet = ascii_letters + elif not alphabet: + raise ValueError("Must supply alphabet if use_ascii is False") + self.alphabet = "".join(sorted(set(alphabet))) if alphabet else None + self.wiki_start_pages = wiki_start_pages + + def __repr__(self) -> str: + param_str = ", ".join( + f"{k}={v!r}" for k, v in self.__dict__.items() if not k.startswith("_") + ) + return f"{self.__class__.__name__}({param_str})" + + +LANGUAGES = { + "Arabic": Language( + name="Arabic", + iso_code="ar", + use_ascii=False, + # We only support encodings that use isolated + # forms, because the current recommendation is + # that the rendering system handles presentation + # forms. This means we purposefully skip IBM864. + charsets=["ISO-8859-6", "WINDOWS-1256", "CP720", "CP864"], + alphabet="ءآأؤإئابةتثجحخدذرزسشصضطظعغػؼؽؾؿـفقكلمنهوىيًٌٍَُِّ", + wiki_start_pages=["الصفحة_الرئيسية"], + ), + "Belarusian": Language( + name="Belarusian", + iso_code="be", + use_ascii=False, + charsets=["ISO-8859-5", "WINDOWS-1251", "IBM866", "MacCyrillic"], + alphabet="АБВГДЕЁЖЗІЙКЛМНОПРСТУЎФХЦЧШЫЬЭЮЯабвгдеёжзійклмнопрстуўфхцчшыьэюяʼ", + wiki_start_pages=["Галоўная_старонка"], + ), + "Bulgarian": Language( + name="Bulgarian", + iso_code="bg", + use_ascii=False, + charsets=["ISO-8859-5", "WINDOWS-1251", "IBM855"], + alphabet="АБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЬЮЯабвгдежзийклмнопрстуфхцчшщъьюя", + wiki_start_pages=["Начална_страница"], + ), + "Czech": Language( + name="Czech", + iso_code="cz", + use_ascii=True, + charsets=["ISO-8859-2", "WINDOWS-1250"], + alphabet="áčďéěíňóřšťúůýžÁČĎÉĚÍŇÓŘŠŤÚŮÝŽ", + wiki_start_pages=["Hlavní_strana"], + ), + "Danish": Language( + name="Danish", + iso_code="da", + use_ascii=True, + charsets=["ISO-8859-1", "ISO-8859-15", "WINDOWS-1252", "MacRoman"], + alphabet="æøåÆØÅ", + wiki_start_pages=["Forside"], + ), + "German": Language( + name="German", + iso_code="de", + use_ascii=True, + charsets=["ISO-8859-1", "ISO-8859-15", "WINDOWS-1252", "MacRoman"], + alphabet="äöüßẞÄÖÜ", + wiki_start_pages=["Wikipedia:Hauptseite"], + ), + "Greek": Language( + name="Greek", + iso_code="el", + use_ascii=False, + charsets=["ISO-8859-7", "WINDOWS-1253"], + alphabet="αβγδεζηθικλμνξοπρσςτυφχψωάέήίόύώΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΣΤΥΦΧΨΩΆΈΉΊΌΎΏ", + wiki_start_pages=["Πύλη:Κύρια"], + ), + "English": Language( + name="English", + iso_code="en", + use_ascii=True, + charsets=["ISO-8859-1", "WINDOWS-1252", "MacRoman"], + wiki_start_pages=["Main_Page"], + ), + "Esperanto": Language( + name="Esperanto", + iso_code="eo", + # Q, W, X, and Y not used at all + use_ascii=False, + charsets=["ISO-8859-3"], + alphabet="abcĉdefgĝhĥijĵklmnoprsŝtuŭvzABCĈDEFGĜHĤIJĴKLMNOPRSŜTUŬVZ", + wiki_start_pages=["Vikipedio:Ĉefpaĝo"], + ), + "Spanish": Language( + name="Spanish", + iso_code="es", + use_ascii=True, + charsets=["ISO-8859-1", "ISO-8859-15", "WINDOWS-1252", "MacRoman"], + alphabet="ñáéíóúüÑÁÉÍÓÚÜ", + wiki_start_pages=["Wikipedia:Portada"], + ), + "Estonian": Language( + name="Estonian", + iso_code="et", + use_ascii=False, + charsets=["ISO-8859-4", "ISO-8859-13", "WINDOWS-1257"], + # C, F, Š, Q, W, X, Y, Z, Ž are only for + # loanwords + alphabet="ABDEGHIJKLMNOPRSTUVÕÄÖÜabdeghijklmnoprstuvõäöü", + wiki_start_pages=["Esileht"], + ), + "Finnish": Language( + name="Finnish", + iso_code="fi", + use_ascii=True, + charsets=["ISO-8859-1", "ISO-8859-15", "WINDOWS-1252", "MacRoman"], + alphabet="ÅÄÖŠŽåäöšž", + wiki_start_pages=["Wikipedia:Etusivu"], + ), + "French": Language( + name="French", + iso_code="fr", + use_ascii=True, + charsets=["ISO-8859-1", "ISO-8859-15", "WINDOWS-1252", "MacRoman"], + alphabet="œàâçèéîïùûêŒÀÂÇÈÉÎÏÙÛÊ", + wiki_start_pages=["Wikipédia:Accueil_principal", "Bœuf (animal)"], + ), + "Hebrew": Language( + name="Hebrew", + iso_code="he", + use_ascii=False, + charsets=["ISO-8859-8", "WINDOWS-1255"], + alphabet="אבגדהוזחטיךכלםמןנסעףפץצקרשתװױײ", + wiki_start_pages=["עמוד_ראשי"], + ), + "Croatian": Language( + name="Croatian", + iso_code="hr", + # Q, W, X, Y are only used for foreign words. + use_ascii=False, + charsets=["ISO-8859-2", "WINDOWS-1250"], + alphabet="abcčćdđefghijklmnoprsštuvzžABCČĆDĐEFGHIJKLMNOPRSŠTUVZŽ", + wiki_start_pages=["Glavna_stranica"], + ), + "Hungarian": Language( + name="Hungarian", + iso_code="hu", + # Q, W, X, Y are only used for foreign words. + use_ascii=False, + charsets=["ISO-8859-2", "WINDOWS-1250"], + alphabet="abcdefghijklmnoprstuvzáéíóöőúüűABCDEFGHIJKLMNOPRSTUVZÁÉÍÓÖŐÚÜŰ", + wiki_start_pages=["Kezdőlap"], + ), + "Italian": Language( + name="Italian", + iso_code="it", + use_ascii=True, + charsets=["ISO-8859-1", "ISO-8859-15", "WINDOWS-1252", "MacRoman"], + alphabet="ÀÈÉÌÒÓÙàèéìòóù", + wiki_start_pages=["Pagina_principale"], + ), + "Lithuanian": Language( + name="Lithuanian", + iso_code="lt", + use_ascii=False, + charsets=["ISO-8859-13", "WINDOWS-1257", "ISO-8859-4"], + # Q, W, and X not used at all + alphabet="AĄBCČDEĘĖFGHIĮYJKLMNOPRSŠTUŲŪVZŽaąbcčdeęėfghiįyjklmnoprsštuųūvzž", + wiki_start_pages=["Pagrindinis_puslapis"], + ), + "Latvian": Language( + name="Latvian", + iso_code="lv", + use_ascii=False, + charsets=["ISO-8859-13", "WINDOWS-1257", "ISO-8859-4"], + # Q, W, X, Y are only for loanwords + alphabet="AĀBCČDEĒFGĢHIĪJKĶLĻMNŅOPRSŠTUŪVZŽaābcčdeēfgģhiījkķlļmnņoprsštuūvzž", + wiki_start_pages=["Sākumlapa"], + ), + "Macedonian": Language( + name="Macedonian", + iso_code="mk", + use_ascii=False, + charsets=["ISO-8859-5", "WINDOWS-1251", "MacCyrillic", "IBM855"], + alphabet="АБВГДЃЕЖЗЅИЈКЛЉМНЊОПРСТЌУФХЦЧЏШабвгдѓежзѕијклљмнњопрстќуфхцчџш", + wiki_start_pages=["Главна_страница"], + ), + "Dutch": Language( + name="Dutch", + iso_code="nl", + use_ascii=True, + charsets=["ISO-8859-1", "WINDOWS-1252", "MacRoman"], + wiki_start_pages=["Hoofdpagina"], + ), + "Polish": Language( + name="Polish", + iso_code="pl", + # Q and X are only used for foreign words. + use_ascii=False, + charsets=["ISO-8859-2", "WINDOWS-1250"], + alphabet="AĄBCĆDEĘFGHIJKLŁMNŃOÓPRSŚTUWYZŹŻaąbcćdeęfghijklłmnńoóprsśtuwyzźż", + wiki_start_pages=["Wikipedia:Strona_główna"], + ), + "Portuguese": Language( + name="Portuguese", + iso_code="pt", + use_ascii=True, + charsets=["ISO-8859-1", "ISO-8859-15", "WINDOWS-1252", "MacRoman"], + alphabet="ÁÂÃÀÇÉÊÍÓÔÕÚáâãàçéêíóôõú", + wiki_start_pages=["Wikipédia:Página_principal"], + ), + "Romanian": Language( + name="Romanian", + iso_code="ro", + use_ascii=True, + charsets=["ISO-8859-2", "WINDOWS-1250"], + alphabet="ăâîșțĂÂÎȘȚ", + wiki_start_pages=["Pagina_principală"], + ), + "Russian": Language( + name="Russian", + iso_code="ru", + use_ascii=False, + charsets=[ + "ISO-8859-5", + "WINDOWS-1251", + "KOI8-R", + "MacCyrillic", + "IBM866", + "IBM855", + ], + alphabet="абвгдеёжзийклмнопрстуфхцчшщъыьэюяАБВГДЕЁЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯ", + wiki_start_pages=["Заглавная_страница"], + ), + "Slovak": Language( + name="Slovak", + iso_code="sk", + use_ascii=True, + charsets=["ISO-8859-2", "WINDOWS-1250"], + alphabet="áäčďéíĺľňóôŕšťúýžÁÄČĎÉÍĹĽŇÓÔŔŠŤÚÝŽ", + wiki_start_pages=["Hlavná_stránka"], + ), + "Slovene": Language( + name="Slovene", + iso_code="sl", + # Q, W, X, Y are only used for foreign words. + use_ascii=False, + charsets=["ISO-8859-2", "WINDOWS-1250"], + alphabet="abcčdefghijklmnoprsštuvzžABCČDEFGHIJKLMNOPRSŠTUVZŽ", + wiki_start_pages=["Glavna_stran"], + ), + # Serbian can be written in both Latin and Cyrillic, but there's no + # simple way to get the Latin alphabet pages from Wikipedia through + # the API, so for now we just support Cyrillic. + "Serbian": Language( + name="Serbian", + iso_code="sr", + alphabet="АБВГДЂЕЖЗИЈКЛЉМНЊОПРСТЋУФХЦЧЏШабвгдђежзијклљмнњопрстћуфхцчџш", + charsets=["ISO-8859-5", "WINDOWS-1251", "MacCyrillic", "IBM855"], + wiki_start_pages=["Главна_страна"], + ), + "Thai": Language( + name="Thai", + iso_code="th", + use_ascii=False, + charsets=["ISO-8859-11", "TIS-620", "CP874"], + alphabet="กขฃคฅฆงจฉชซฌญฎฏฐฑฒณดตถทธนบปผฝพฟภมยรฤลฦวศษสหฬอฮฯะัาำิีึืฺุู฿เแโใไๅๆ็่้๊๋์ํ๎๏๐๑๒๓๔๕๖๗๘๙๚๛", + wiki_start_pages=["หน้าหลัก"], + ), + "Turkish": Language( + name="Turkish", + iso_code="tr", + # Q, W, and X are not used by Turkish + use_ascii=False, + charsets=["ISO-8859-3", "ISO-8859-9", "WINDOWS-1254"], + alphabet="abcçdefgğhıijklmnoöprsştuüvyzâîûABCÇDEFGĞHIİJKLMNOÖPRSŞTUÜVYZÂÎÛ", + wiki_start_pages=["Ana_Sayfa"], + ), + "Vietnamese": Language( + name="Vietnamese", + iso_code="vi", + use_ascii=False, + # Windows-1258 is the only common 8-bit + # Vietnamese encoding supported by Python. + # From Wikipedia: + # For systems that lack support for Unicode, + # dozens of 8-bit Vietnamese code pages are + # available.[1] The most common are VISCII + # (TCVN 5712:1993), VPS, and Windows-1258.[3] + # Where ASCII is required, such as when + # ensuring readability in plain text e-mail, + # Vietnamese letters are often encoded + # according to Vietnamese Quoted-Readable + # (VIQR) or VSCII Mnemonic (VSCII-MNEM),[4] + # though usage of either variable-width + # scheme has declined dramatically following + # the adoption of Unicode on the World Wide + # Web. + charsets=["WINDOWS-1258"], + alphabet="aăâbcdđeêghiklmnoôơpqrstuưvxyAĂÂBCDĐEÊGHIKLMNOÔƠPQRSTUƯVXY", + wiki_start_pages=["Chữ_Quốc_ngữ"], + ), +} diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/py.typed b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/py.typed new file mode 100644 index 0000000..e69de29 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/resultdict.py b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/resultdict.py new file mode 100644 index 0000000..7d36e64 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/resultdict.py @@ -0,0 +1,16 @@ +from typing import TYPE_CHECKING, Optional + +if TYPE_CHECKING: + # TypedDict was introduced in Python 3.8. + # + # TODO: Remove the else block and TYPE_CHECKING check when dropping support + # for Python 3.7. + from typing import TypedDict + + class ResultDict(TypedDict): + encoding: Optional[str] + confidence: float + language: Optional[str] + +else: + ResultDict = dict diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/sbcharsetprober.py b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/sbcharsetprober.py new file mode 100644 index 0000000..0ffbcdd --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/sbcharsetprober.py @@ -0,0 +1,162 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Universal charset detector code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 2001 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# Shy Shalom - original C code +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from typing import Dict, List, NamedTuple, Optional, Union + +from .charsetprober import CharSetProber +from .enums import CharacterCategory, ProbingState, SequenceLikelihood + + +class SingleByteCharSetModel(NamedTuple): + charset_name: str + language: str + char_to_order_map: Dict[int, int] + language_model: Dict[int, Dict[int, int]] + typical_positive_ratio: float + keep_ascii_letters: bool + alphabet: str + + +class SingleByteCharSetProber(CharSetProber): + SAMPLE_SIZE = 64 + SB_ENOUGH_REL_THRESHOLD = 1024 # 0.25 * SAMPLE_SIZE^2 + POSITIVE_SHORTCUT_THRESHOLD = 0.95 + NEGATIVE_SHORTCUT_THRESHOLD = 0.05 + + def __init__( + self, + model: SingleByteCharSetModel, + is_reversed: bool = False, + name_prober: Optional[CharSetProber] = None, + ) -> None: + super().__init__() + self._model = model + # TRUE if we need to reverse every pair in the model lookup + self._reversed = is_reversed + # Optional auxiliary prober for name decision + self._name_prober = name_prober + self._last_order = 255 + self._seq_counters: List[int] = [] + self._total_seqs = 0 + self._total_char = 0 + self._control_char = 0 + self._freq_char = 0 + self.reset() + + def reset(self) -> None: + super().reset() + # char order of last character + self._last_order = 255 + self._seq_counters = [0] * SequenceLikelihood.get_num_categories() + self._total_seqs = 0 + self._total_char = 0 + self._control_char = 0 + # characters that fall in our sampling range + self._freq_char = 0 + + @property + def charset_name(self) -> Optional[str]: + if self._name_prober: + return self._name_prober.charset_name + return self._model.charset_name + + @property + def language(self) -> Optional[str]: + if self._name_prober: + return self._name_prober.language + return self._model.language + + def feed(self, byte_str: Union[bytes, bytearray]) -> ProbingState: + # TODO: Make filter_international_words keep things in self.alphabet + if not self._model.keep_ascii_letters: + byte_str = self.filter_international_words(byte_str) + else: + byte_str = self.remove_xml_tags(byte_str) + if not byte_str: + return self.state + char_to_order_map = self._model.char_to_order_map + language_model = self._model.language_model + for char in byte_str: + order = char_to_order_map.get(char, CharacterCategory.UNDEFINED) + # XXX: This was SYMBOL_CAT_ORDER before, with a value of 250, but + # CharacterCategory.SYMBOL is actually 253, so we use CONTROL + # to make it closer to the original intent. The only difference + # is whether or not we count digits and control characters for + # _total_char purposes. + if order < CharacterCategory.CONTROL: + self._total_char += 1 + if order < self.SAMPLE_SIZE: + self._freq_char += 1 + if self._last_order < self.SAMPLE_SIZE: + self._total_seqs += 1 + if not self._reversed: + lm_cat = language_model[self._last_order][order] + else: + lm_cat = language_model[order][self._last_order] + self._seq_counters[lm_cat] += 1 + self._last_order = order + + charset_name = self._model.charset_name + if self.state == ProbingState.DETECTING: + if self._total_seqs > self.SB_ENOUGH_REL_THRESHOLD: + confidence = self.get_confidence() + if confidence > self.POSITIVE_SHORTCUT_THRESHOLD: + self.logger.debug( + "%s confidence = %s, we have a winner", charset_name, confidence + ) + self._state = ProbingState.FOUND_IT + elif confidence < self.NEGATIVE_SHORTCUT_THRESHOLD: + self.logger.debug( + "%s confidence = %s, below negative shortcut threshold %s", + charset_name, + confidence, + self.NEGATIVE_SHORTCUT_THRESHOLD, + ) + self._state = ProbingState.NOT_ME + + return self.state + + def get_confidence(self) -> float: + r = 0.01 + if self._total_seqs > 0: + r = ( + ( + self._seq_counters[SequenceLikelihood.POSITIVE] + + 0.25 * self._seq_counters[SequenceLikelihood.LIKELY] + ) + / self._total_seqs + / self._model.typical_positive_ratio + ) + # The more control characters (proportionnaly to the size + # of the text), the less confident we become in the current + # charset. + r = r * (self._total_char - self._control_char) / self._total_char + r = r * self._freq_char / self._total_char + if r >= 1.0: + r = 0.99 + return r diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/sbcsgroupprober.py b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/sbcsgroupprober.py new file mode 100644 index 0000000..890ae84 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/sbcsgroupprober.py @@ -0,0 +1,88 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Universal charset detector code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 2001 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# Shy Shalom - original C code +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from .charsetgroupprober import CharSetGroupProber +from .hebrewprober import HebrewProber +from .langbulgarianmodel import ISO_8859_5_BULGARIAN_MODEL, WINDOWS_1251_BULGARIAN_MODEL +from .langgreekmodel import ISO_8859_7_GREEK_MODEL, WINDOWS_1253_GREEK_MODEL +from .langhebrewmodel import WINDOWS_1255_HEBREW_MODEL + +# from .langhungarianmodel import (ISO_8859_2_HUNGARIAN_MODEL, +# WINDOWS_1250_HUNGARIAN_MODEL) +from .langrussianmodel import ( + IBM855_RUSSIAN_MODEL, + IBM866_RUSSIAN_MODEL, + ISO_8859_5_RUSSIAN_MODEL, + KOI8_R_RUSSIAN_MODEL, + MACCYRILLIC_RUSSIAN_MODEL, + WINDOWS_1251_RUSSIAN_MODEL, +) +from .langthaimodel import TIS_620_THAI_MODEL +from .langturkishmodel import ISO_8859_9_TURKISH_MODEL +from .sbcharsetprober import SingleByteCharSetProber + + +class SBCSGroupProber(CharSetGroupProber): + def __init__(self) -> None: + super().__init__() + hebrew_prober = HebrewProber() + logical_hebrew_prober = SingleByteCharSetProber( + WINDOWS_1255_HEBREW_MODEL, is_reversed=False, name_prober=hebrew_prober + ) + # TODO: See if using ISO-8859-8 Hebrew model works better here, since + # it's actually the visual one + visual_hebrew_prober = SingleByteCharSetProber( + WINDOWS_1255_HEBREW_MODEL, is_reversed=True, name_prober=hebrew_prober + ) + hebrew_prober.set_model_probers(logical_hebrew_prober, visual_hebrew_prober) + # TODO: ORDER MATTERS HERE. I changed the order vs what was in master + # and several tests failed that did not before. Some thought + # should be put into the ordering, and we should consider making + # order not matter here, because that is very counter-intuitive. + self.probers = [ + SingleByteCharSetProber(WINDOWS_1251_RUSSIAN_MODEL), + SingleByteCharSetProber(KOI8_R_RUSSIAN_MODEL), + SingleByteCharSetProber(ISO_8859_5_RUSSIAN_MODEL), + SingleByteCharSetProber(MACCYRILLIC_RUSSIAN_MODEL), + SingleByteCharSetProber(IBM866_RUSSIAN_MODEL), + SingleByteCharSetProber(IBM855_RUSSIAN_MODEL), + SingleByteCharSetProber(ISO_8859_7_GREEK_MODEL), + SingleByteCharSetProber(WINDOWS_1253_GREEK_MODEL), + SingleByteCharSetProber(ISO_8859_5_BULGARIAN_MODEL), + SingleByteCharSetProber(WINDOWS_1251_BULGARIAN_MODEL), + # TODO: Restore Hungarian encodings (iso-8859-2 and windows-1250) + # after we retrain model. + # SingleByteCharSetProber(ISO_8859_2_HUNGARIAN_MODEL), + # SingleByteCharSetProber(WINDOWS_1250_HUNGARIAN_MODEL), + SingleByteCharSetProber(TIS_620_THAI_MODEL), + SingleByteCharSetProber(ISO_8859_9_TURKISH_MODEL), + hebrew_prober, + logical_hebrew_prober, + visual_hebrew_prober, + ] + self.reset() diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/sjisprober.py b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/sjisprober.py new file mode 100644 index 0000000..91df077 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/sjisprober.py @@ -0,0 +1,105 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from typing import Union + +from .chardistribution import SJISDistributionAnalysis +from .codingstatemachine import CodingStateMachine +from .enums import MachineState, ProbingState +from .jpcntx import SJISContextAnalysis +from .mbcharsetprober import MultiByteCharSetProber +from .mbcssm import SJIS_SM_MODEL + + +class SJISProber(MultiByteCharSetProber): + def __init__(self) -> None: + super().__init__() + self.coding_sm = CodingStateMachine(SJIS_SM_MODEL) + self.distribution_analyzer = SJISDistributionAnalysis() + self.context_analyzer = SJISContextAnalysis() + self.reset() + + def reset(self) -> None: + super().reset() + self.context_analyzer.reset() + + @property + def charset_name(self) -> str: + return self.context_analyzer.charset_name + + @property + def language(self) -> str: + return "Japanese" + + def feed(self, byte_str: Union[bytes, bytearray]) -> ProbingState: + assert self.coding_sm is not None + assert self.distribution_analyzer is not None + + for i, byte in enumerate(byte_str): + coding_state = self.coding_sm.next_state(byte) + if coding_state == MachineState.ERROR: + self.logger.debug( + "%s %s prober hit error at byte %s", + self.charset_name, + self.language, + i, + ) + self._state = ProbingState.NOT_ME + break + if coding_state == MachineState.ITS_ME: + self._state = ProbingState.FOUND_IT + break + if coding_state == MachineState.START: + char_len = self.coding_sm.get_current_charlen() + if i == 0: + self._last_char[1] = byte + self.context_analyzer.feed( + self._last_char[2 - char_len :], char_len + ) + self.distribution_analyzer.feed(self._last_char, char_len) + else: + self.context_analyzer.feed( + byte_str[i + 1 - char_len : i + 3 - char_len], char_len + ) + self.distribution_analyzer.feed(byte_str[i - 1 : i + 1], char_len) + + self._last_char[0] = byte_str[-1] + + if self.state == ProbingState.DETECTING: + if self.context_analyzer.got_enough_data() and ( + self.get_confidence() > self.SHORTCUT_THRESHOLD + ): + self._state = ProbingState.FOUND_IT + + return self.state + + def get_confidence(self) -> float: + assert self.distribution_analyzer is not None + + context_conf = self.context_analyzer.get_confidence() + distrib_conf = self.distribution_analyzer.get_confidence() + return max(context_conf, distrib_conf) diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/universaldetector.py b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/universaldetector.py new file mode 100644 index 0000000..30c441d --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/universaldetector.py @@ -0,0 +1,362 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Universal charset detector code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 2001 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# Shy Shalom - original C code +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### +""" +Module containing the UniversalDetector detector class, which is the primary +class a user of ``chardet`` should use. + +:author: Mark Pilgrim (initial port to Python) +:author: Shy Shalom (original C code) +:author: Dan Blanchard (major refactoring for 3.0) +:author: Ian Cordasco +""" + + +import codecs +import logging +import re +from typing import List, Optional, Union + +from .charsetgroupprober import CharSetGroupProber +from .charsetprober import CharSetProber +from .enums import InputState, LanguageFilter, ProbingState +from .escprober import EscCharSetProber +from .latin1prober import Latin1Prober +from .macromanprober import MacRomanProber +from .mbcsgroupprober import MBCSGroupProber +from .resultdict import ResultDict +from .sbcsgroupprober import SBCSGroupProber +from .utf1632prober import UTF1632Prober + + +class UniversalDetector: + """ + The ``UniversalDetector`` class underlies the ``chardet.detect`` function + and coordinates all of the different charset probers. + + To get a ``dict`` containing an encoding and its confidence, you can simply + run: + + .. code:: + + u = UniversalDetector() + u.feed(some_bytes) + u.close() + detected = u.result + + """ + + MINIMUM_THRESHOLD = 0.20 + HIGH_BYTE_DETECTOR = re.compile(b"[\x80-\xFF]") + ESC_DETECTOR = re.compile(b"(\033|~{)") + WIN_BYTE_DETECTOR = re.compile(b"[\x80-\x9F]") + ISO_WIN_MAP = { + "iso-8859-1": "Windows-1252", + "iso-8859-2": "Windows-1250", + "iso-8859-5": "Windows-1251", + "iso-8859-6": "Windows-1256", + "iso-8859-7": "Windows-1253", + "iso-8859-8": "Windows-1255", + "iso-8859-9": "Windows-1254", + "iso-8859-13": "Windows-1257", + } + # Based on https://encoding.spec.whatwg.org/#names-and-labels + # but altered to match Python names for encodings and remove mappings + # that break tests. + LEGACY_MAP = { + "ascii": "Windows-1252", + "iso-8859-1": "Windows-1252", + "tis-620": "ISO-8859-11", + "iso-8859-9": "Windows-1254", + "gb2312": "GB18030", + "euc-kr": "CP949", + "utf-16le": "UTF-16", + } + + def __init__( + self, + lang_filter: LanguageFilter = LanguageFilter.ALL, + should_rename_legacy: bool = False, + ) -> None: + self._esc_charset_prober: Optional[EscCharSetProber] = None + self._utf1632_prober: Optional[UTF1632Prober] = None + self._charset_probers: List[CharSetProber] = [] + self.result: ResultDict = { + "encoding": None, + "confidence": 0.0, + "language": None, + } + self.done = False + self._got_data = False + self._input_state = InputState.PURE_ASCII + self._last_char = b"" + self.lang_filter = lang_filter + self.logger = logging.getLogger(__name__) + self._has_win_bytes = False + self.should_rename_legacy = should_rename_legacy + self.reset() + + @property + def input_state(self) -> int: + return self._input_state + + @property + def has_win_bytes(self) -> bool: + return self._has_win_bytes + + @property + def charset_probers(self) -> List[CharSetProber]: + return self._charset_probers + + def reset(self) -> None: + """ + Reset the UniversalDetector and all of its probers back to their + initial states. This is called by ``__init__``, so you only need to + call this directly in between analyses of different documents. + """ + self.result = {"encoding": None, "confidence": 0.0, "language": None} + self.done = False + self._got_data = False + self._has_win_bytes = False + self._input_state = InputState.PURE_ASCII + self._last_char = b"" + if self._esc_charset_prober: + self._esc_charset_prober.reset() + if self._utf1632_prober: + self._utf1632_prober.reset() + for prober in self._charset_probers: + prober.reset() + + def feed(self, byte_str: Union[bytes, bytearray]) -> None: + """ + Takes a chunk of a document and feeds it through all of the relevant + charset probers. + + After calling ``feed``, you can check the value of the ``done`` + attribute to see if you need to continue feeding the + ``UniversalDetector`` more data, or if it has made a prediction + (in the ``result`` attribute). + + .. note:: + You should always call ``close`` when you're done feeding in your + document if ``done`` is not already ``True``. + """ + if self.done: + return + + if not byte_str: + return + + if not isinstance(byte_str, bytearray): + byte_str = bytearray(byte_str) + + # First check for known BOMs, since these are guaranteed to be correct + if not self._got_data: + # If the data starts with BOM, we know it is UTF + if byte_str.startswith(codecs.BOM_UTF8): + # EF BB BF UTF-8 with BOM + self.result = { + "encoding": "UTF-8-SIG", + "confidence": 1.0, + "language": "", + } + elif byte_str.startswith((codecs.BOM_UTF32_LE, codecs.BOM_UTF32_BE)): + # FF FE 00 00 UTF-32, little-endian BOM + # 00 00 FE FF UTF-32, big-endian BOM + self.result = {"encoding": "UTF-32", "confidence": 1.0, "language": ""} + elif byte_str.startswith(b"\xFE\xFF\x00\x00"): + # FE FF 00 00 UCS-4, unusual octet order BOM (3412) + self.result = { + # TODO: This encoding is not supported by Python. Should remove? + "encoding": "X-ISO-10646-UCS-4-3412", + "confidence": 1.0, + "language": "", + } + elif byte_str.startswith(b"\x00\x00\xFF\xFE"): + # 00 00 FF FE UCS-4, unusual octet order BOM (2143) + self.result = { + # TODO: This encoding is not supported by Python. Should remove? + "encoding": "X-ISO-10646-UCS-4-2143", + "confidence": 1.0, + "language": "", + } + elif byte_str.startswith((codecs.BOM_LE, codecs.BOM_BE)): + # FF FE UTF-16, little endian BOM + # FE FF UTF-16, big endian BOM + self.result = {"encoding": "UTF-16", "confidence": 1.0, "language": ""} + + self._got_data = True + if self.result["encoding"] is not None: + self.done = True + return + + # If none of those matched and we've only see ASCII so far, check + # for high bytes and escape sequences + if self._input_state == InputState.PURE_ASCII: + if self.HIGH_BYTE_DETECTOR.search(byte_str): + self._input_state = InputState.HIGH_BYTE + elif ( + self._input_state == InputState.PURE_ASCII + and self.ESC_DETECTOR.search(self._last_char + byte_str) + ): + self._input_state = InputState.ESC_ASCII + + self._last_char = byte_str[-1:] + + # next we will look to see if it is appears to be either a UTF-16 or + # UTF-32 encoding + if not self._utf1632_prober: + self._utf1632_prober = UTF1632Prober() + + if self._utf1632_prober.state == ProbingState.DETECTING: + if self._utf1632_prober.feed(byte_str) == ProbingState.FOUND_IT: + self.result = { + "encoding": self._utf1632_prober.charset_name, + "confidence": self._utf1632_prober.get_confidence(), + "language": "", + } + self.done = True + return + + # If we've seen escape sequences, use the EscCharSetProber, which + # uses a simple state machine to check for known escape sequences in + # HZ and ISO-2022 encodings, since those are the only encodings that + # use such sequences. + if self._input_state == InputState.ESC_ASCII: + if not self._esc_charset_prober: + self._esc_charset_prober = EscCharSetProber(self.lang_filter) + if self._esc_charset_prober.feed(byte_str) == ProbingState.FOUND_IT: + self.result = { + "encoding": self._esc_charset_prober.charset_name, + "confidence": self._esc_charset_prober.get_confidence(), + "language": self._esc_charset_prober.language, + } + self.done = True + # If we've seen high bytes (i.e., those with values greater than 127), + # we need to do more complicated checks using all our multi-byte and + # single-byte probers that are left. The single-byte probers + # use character bigram distributions to determine the encoding, whereas + # the multi-byte probers use a combination of character unigram and + # bigram distributions. + elif self._input_state == InputState.HIGH_BYTE: + if not self._charset_probers: + self._charset_probers = [MBCSGroupProber(self.lang_filter)] + # If we're checking non-CJK encodings, use single-byte prober + if self.lang_filter & LanguageFilter.NON_CJK: + self._charset_probers.append(SBCSGroupProber()) + self._charset_probers.append(Latin1Prober()) + self._charset_probers.append(MacRomanProber()) + for prober in self._charset_probers: + if prober.feed(byte_str) == ProbingState.FOUND_IT: + self.result = { + "encoding": prober.charset_name, + "confidence": prober.get_confidence(), + "language": prober.language, + } + self.done = True + break + if self.WIN_BYTE_DETECTOR.search(byte_str): + self._has_win_bytes = True + + def close(self) -> ResultDict: + """ + Stop analyzing the current document and come up with a final + prediction. + + :returns: The ``result`` attribute, a ``dict`` with the keys + `encoding`, `confidence`, and `language`. + """ + # Don't bother with checks if we're already done + if self.done: + return self.result + self.done = True + + if not self._got_data: + self.logger.debug("no data received!") + + # Default to ASCII if it is all we've seen so far + elif self._input_state == InputState.PURE_ASCII: + self.result = {"encoding": "ascii", "confidence": 1.0, "language": ""} + + # If we have seen non-ASCII, return the best that met MINIMUM_THRESHOLD + elif self._input_state == InputState.HIGH_BYTE: + prober_confidence = None + max_prober_confidence = 0.0 + max_prober = None + for prober in self._charset_probers: + if not prober: + continue + prober_confidence = prober.get_confidence() + if prober_confidence > max_prober_confidence: + max_prober_confidence = prober_confidence + max_prober = prober + if max_prober and (max_prober_confidence > self.MINIMUM_THRESHOLD): + charset_name = max_prober.charset_name + assert charset_name is not None + lower_charset_name = charset_name.lower() + confidence = max_prober.get_confidence() + # Use Windows encoding name instead of ISO-8859 if we saw any + # extra Windows-specific bytes + if lower_charset_name.startswith("iso-8859"): + if self._has_win_bytes: + charset_name = self.ISO_WIN_MAP.get( + lower_charset_name, charset_name + ) + # Rename legacy encodings with superset encodings if asked + if self.should_rename_legacy: + charset_name = self.LEGACY_MAP.get( + (charset_name or "").lower(), charset_name + ) + self.result = { + "encoding": charset_name, + "confidence": confidence, + "language": max_prober.language, + } + + # Log all prober confidences if none met MINIMUM_THRESHOLD + if self.logger.getEffectiveLevel() <= logging.DEBUG: + if self.result["encoding"] is None: + self.logger.debug("no probers hit minimum threshold") + for group_prober in self._charset_probers: + if not group_prober: + continue + if isinstance(group_prober, CharSetGroupProber): + for prober in group_prober.probers: + self.logger.debug( + "%s %s confidence = %s", + prober.charset_name, + prober.language, + prober.get_confidence(), + ) + else: + self.logger.debug( + "%s %s confidence = %s", + group_prober.charset_name, + group_prober.language, + group_prober.get_confidence(), + ) + return self.result diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/utf1632prober.py b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/utf1632prober.py new file mode 100644 index 0000000..6bdec63 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/utf1632prober.py @@ -0,0 +1,225 @@ +######################## BEGIN LICENSE BLOCK ######################## +# +# Contributor(s): +# Jason Zavaglia +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### +from typing import List, Union + +from .charsetprober import CharSetProber +from .enums import ProbingState + + +class UTF1632Prober(CharSetProber): + """ + This class simply looks for occurrences of zero bytes, and infers + whether the file is UTF16 or UTF32 (low-endian or big-endian) + For instance, files looking like ( \0 \0 \0 [nonzero] )+ + have a good probability to be UTF32BE. Files looking like ( \0 [nonzero] )+ + may be guessed to be UTF16BE, and inversely for little-endian varieties. + """ + + # how many logical characters to scan before feeling confident of prediction + MIN_CHARS_FOR_DETECTION = 20 + # a fixed constant ratio of expected zeros or non-zeros in modulo-position. + EXPECTED_RATIO = 0.94 + + def __init__(self) -> None: + super().__init__() + self.position = 0 + self.zeros_at_mod = [0] * 4 + self.nonzeros_at_mod = [0] * 4 + self._state = ProbingState.DETECTING + self.quad = [0, 0, 0, 0] + self.invalid_utf16be = False + self.invalid_utf16le = False + self.invalid_utf32be = False + self.invalid_utf32le = False + self.first_half_surrogate_pair_detected_16be = False + self.first_half_surrogate_pair_detected_16le = False + self.reset() + + def reset(self) -> None: + super().reset() + self.position = 0 + self.zeros_at_mod = [0] * 4 + self.nonzeros_at_mod = [0] * 4 + self._state = ProbingState.DETECTING + self.invalid_utf16be = False + self.invalid_utf16le = False + self.invalid_utf32be = False + self.invalid_utf32le = False + self.first_half_surrogate_pair_detected_16be = False + self.first_half_surrogate_pair_detected_16le = False + self.quad = [0, 0, 0, 0] + + @property + def charset_name(self) -> str: + if self.is_likely_utf32be(): + return "utf-32be" + if self.is_likely_utf32le(): + return "utf-32le" + if self.is_likely_utf16be(): + return "utf-16be" + if self.is_likely_utf16le(): + return "utf-16le" + # default to something valid + return "utf-16" + + @property + def language(self) -> str: + return "" + + def approx_32bit_chars(self) -> float: + return max(1.0, self.position / 4.0) + + def approx_16bit_chars(self) -> float: + return max(1.0, self.position / 2.0) + + def is_likely_utf32be(self) -> bool: + approx_chars = self.approx_32bit_chars() + return approx_chars >= self.MIN_CHARS_FOR_DETECTION and ( + self.zeros_at_mod[0] / approx_chars > self.EXPECTED_RATIO + and self.zeros_at_mod[1] / approx_chars > self.EXPECTED_RATIO + and self.zeros_at_mod[2] / approx_chars > self.EXPECTED_RATIO + and self.nonzeros_at_mod[3] / approx_chars > self.EXPECTED_RATIO + and not self.invalid_utf32be + ) + + def is_likely_utf32le(self) -> bool: + approx_chars = self.approx_32bit_chars() + return approx_chars >= self.MIN_CHARS_FOR_DETECTION and ( + self.nonzeros_at_mod[0] / approx_chars > self.EXPECTED_RATIO + and self.zeros_at_mod[1] / approx_chars > self.EXPECTED_RATIO + and self.zeros_at_mod[2] / approx_chars > self.EXPECTED_RATIO + and self.zeros_at_mod[3] / approx_chars > self.EXPECTED_RATIO + and not self.invalid_utf32le + ) + + def is_likely_utf16be(self) -> bool: + approx_chars = self.approx_16bit_chars() + return approx_chars >= self.MIN_CHARS_FOR_DETECTION and ( + (self.nonzeros_at_mod[1] + self.nonzeros_at_mod[3]) / approx_chars + > self.EXPECTED_RATIO + and (self.zeros_at_mod[0] + self.zeros_at_mod[2]) / approx_chars + > self.EXPECTED_RATIO + and not self.invalid_utf16be + ) + + def is_likely_utf16le(self) -> bool: + approx_chars = self.approx_16bit_chars() + return approx_chars >= self.MIN_CHARS_FOR_DETECTION and ( + (self.nonzeros_at_mod[0] + self.nonzeros_at_mod[2]) / approx_chars + > self.EXPECTED_RATIO + and (self.zeros_at_mod[1] + self.zeros_at_mod[3]) / approx_chars + > self.EXPECTED_RATIO + and not self.invalid_utf16le + ) + + def validate_utf32_characters(self, quad: List[int]) -> None: + """ + Validate if the quad of bytes is valid UTF-32. + + UTF-32 is valid in the range 0x00000000 - 0x0010FFFF + excluding 0x0000D800 - 0x0000DFFF + + https://en.wikipedia.org/wiki/UTF-32 + """ + if ( + quad[0] != 0 + or quad[1] > 0x10 + or (quad[0] == 0 and quad[1] == 0 and 0xD8 <= quad[2] <= 0xDF) + ): + self.invalid_utf32be = True + if ( + quad[3] != 0 + or quad[2] > 0x10 + or (quad[3] == 0 and quad[2] == 0 and 0xD8 <= quad[1] <= 0xDF) + ): + self.invalid_utf32le = True + + def validate_utf16_characters(self, pair: List[int]) -> None: + """ + Validate if the pair of bytes is valid UTF-16. + + UTF-16 is valid in the range 0x0000 - 0xFFFF excluding 0xD800 - 0xFFFF + with an exception for surrogate pairs, which must be in the range + 0xD800-0xDBFF followed by 0xDC00-0xDFFF + + https://en.wikipedia.org/wiki/UTF-16 + """ + if not self.first_half_surrogate_pair_detected_16be: + if 0xD8 <= pair[0] <= 0xDB: + self.first_half_surrogate_pair_detected_16be = True + elif 0xDC <= pair[0] <= 0xDF: + self.invalid_utf16be = True + else: + if 0xDC <= pair[0] <= 0xDF: + self.first_half_surrogate_pair_detected_16be = False + else: + self.invalid_utf16be = True + + if not self.first_half_surrogate_pair_detected_16le: + if 0xD8 <= pair[1] <= 0xDB: + self.first_half_surrogate_pair_detected_16le = True + elif 0xDC <= pair[1] <= 0xDF: + self.invalid_utf16le = True + else: + if 0xDC <= pair[1] <= 0xDF: + self.first_half_surrogate_pair_detected_16le = False + else: + self.invalid_utf16le = True + + def feed(self, byte_str: Union[bytes, bytearray]) -> ProbingState: + for c in byte_str: + mod4 = self.position % 4 + self.quad[mod4] = c + if mod4 == 3: + self.validate_utf32_characters(self.quad) + self.validate_utf16_characters(self.quad[0:2]) + self.validate_utf16_characters(self.quad[2:4]) + if c == 0: + self.zeros_at_mod[mod4] += 1 + else: + self.nonzeros_at_mod[mod4] += 1 + self.position += 1 + return self.state + + @property + def state(self) -> ProbingState: + if self._state in {ProbingState.NOT_ME, ProbingState.FOUND_IT}: + # terminal, decided states + return self._state + if self.get_confidence() > 0.80: + self._state = ProbingState.FOUND_IT + elif self.position > 4 * 1024: + # if we get to 4kb into the file, and we can't conclude it's UTF, + # let's give up + self._state = ProbingState.NOT_ME + return self._state + + def get_confidence(self) -> float: + return ( + 0.85 + if ( + self.is_likely_utf16le() + or self.is_likely_utf16be() + or self.is_likely_utf32le() + or self.is_likely_utf32be() + ) + else 0.00 + ) diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/utf8prober.py b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/utf8prober.py new file mode 100644 index 0000000..d96354d --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/utf8prober.py @@ -0,0 +1,82 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from typing import Union + +from .charsetprober import CharSetProber +from .codingstatemachine import CodingStateMachine +from .enums import MachineState, ProbingState +from .mbcssm import UTF8_SM_MODEL + + +class UTF8Prober(CharSetProber): + ONE_CHAR_PROB = 0.5 + + def __init__(self) -> None: + super().__init__() + self.coding_sm = CodingStateMachine(UTF8_SM_MODEL) + self._num_mb_chars = 0 + self.reset() + + def reset(self) -> None: + super().reset() + self.coding_sm.reset() + self._num_mb_chars = 0 + + @property + def charset_name(self) -> str: + return "utf-8" + + @property + def language(self) -> str: + return "" + + def feed(self, byte_str: Union[bytes, bytearray]) -> ProbingState: + for c in byte_str: + coding_state = self.coding_sm.next_state(c) + if coding_state == MachineState.ERROR: + self._state = ProbingState.NOT_ME + break + if coding_state == MachineState.ITS_ME: + self._state = ProbingState.FOUND_IT + break + if coding_state == MachineState.START: + if self.coding_sm.get_current_charlen() >= 2: + self._num_mb_chars += 1 + + if self.state == ProbingState.DETECTING: + if self.get_confidence() > self.SHORTCUT_THRESHOLD: + self._state = ProbingState.FOUND_IT + + return self.state + + def get_confidence(self) -> float: + unlike = 0.99 + if self._num_mb_chars < 6: + unlike *= self.ONE_CHAR_PROB**self._num_mb_chars + return 1.0 - unlike + return unlike diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/version.py b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/version.py new file mode 100644 index 0000000..c5e9d85 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/version.py @@ -0,0 +1,9 @@ +""" +This module exists only to simplify retrieving the version number of chardet +from within setuptools and from chardet subpackages. + +:author: Dan Blanchard (dan.blanchard@gmail.com) +""" + +__version__ = "5.1.0" +VERSION = __version__.split(".") diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/colorama/__init__.py b/.venv/lib/python3.11/site-packages/pip/_vendor/colorama/__init__.py new file mode 100644 index 0000000..383101c --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/colorama/__init__.py @@ -0,0 +1,7 @@ +# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. +from .initialise import init, deinit, reinit, colorama_text, just_fix_windows_console +from .ansi import Fore, Back, Style, Cursor +from .ansitowin32 import AnsiToWin32 + +__version__ = '0.4.6' + diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/colorama/__pycache__/__init__.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/colorama/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8ba90ec42d254c58087f8bbba49ae987cc6acf36 GIT binary patch literal 619 zcma)2J8u**5cb|a?y+|%P>}cmG%LiK+#xCy36Kz?K#@We$&F=p9nQgzmF>G^Q_=Ag zXy_6D=E}%bBq}B@O}BF^cV(5*Rhv@zNl$*U}6FOB6Pd(N5< zAwTrJA3OYshGiABA)he4b_>|kK_o;%!$ z4ud-E#p2twVM^nOl-6B;GkU5_yOMn0?m}O2?@j~!Op_$JLPwkbvrF_~^DnzZ_cwpr O)z00IWxVzdNd5w&wz$^- literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/colorama/__pycache__/ansi.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/colorama/__pycache__/ansi.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e15095a6eb0da9e59252bbeeac71f8fff5ca612b GIT binary patch literal 4617 zcmc&%&2JmW6`$oUzduF#Lz3Nwj-9%U9nv2_5i3CqilSu26eWm~)oki+H=MP!Hbttl zYbO#EfIxk)03YPQfpzG?1!^~jFZokMzz1OfpK{`jhFqZVsqf8_lt?)(iq_~X<~K9% z&BvQJ@4cD*TR0pbkp4_QTjG8~e!@m4x!aZ9h(yRELWxSKq)ODKx~QzmRJlu3g}MRV z^bqyll~fOuJ}A8|GC`>SE};R#_f#h2Ib6K= zg#>Q^c<}?gu!|VMr?B|*jtE4J04>xmFbX0VmPc{Rf->nnzalLppY$G(Jo{f*=;!vS@Z0yR|k z?r#7d5xdJE#O@vgA?xHRjC$T3xd#2Hgb3Sn6}hzh%*EwgX_Cv9%~BFq#8$9>^39(z z^OnJ^OjWn_ifQWh>T>OdX_&?xJu|b4yI-DRwVOuSwlY^1E@Uc(&Z^qVs=ZW$!r^4n zcZ}+tOvU^v<1j9!&!5j&rfqz*qL**!i-wh1F;_AgbfYzv5qi^?^^9J%%=F4C52HYu zUDI$qi=iQhAnzUpsFRn$$oGlOxd%fJhc+&6l^Vh1wvyZh7U|KJ3kX76XQ9%oEk_&c z1a)F#zjo^CXw7xulN2avx|HMcXubeSa@(d|F)X1a1`b8I-!g1XP}u;qqmZp507Ame zLmMMo?ndwzPvl1M;SQR(SdWzdt26zap;JGD!vwqS5i?ZAGt#UwGmI)j6~-a6 zAOgztPQhs@Tp+o%~ly+Ko_0HBC1|@QToOV1^OS!pBO~wP3tux#D+O(IrchRtQ z+h*JghKCj57@!8lGAcK?Qq`9Y?!Kc}ZW|VEKbcHAhU(KavufI!wifRyEZw2uF<3f4 zo&4QL4i9cA4<;W@wutN>5pZv8Cvo)A4wrn{nP`cmwLha0z4p;d7D`^)I_h}*IS`;nMrCYzp|}>^CnXY2LpOF2L4=@pAyDpT1oDng&n{$V$J)*y z&M)1jrQW?*V?QI7GMdd@?a>nw&h!d|7S%~z3;P{VdhfTM*Fay?*|V^oUT?EQ7xu+K zTYMvZ!lf%h@|4^*#c#N@+8bx&nd#D6WZy|c`y-gb!qbLZ@qj@-$^9VxW&E$>jp&Cz zlp4`<+rD${AR#dvm~x52sr#5PnqLE*iF3MuHFPg_3E@+OQG^c>(5{@waTaR`ryyJ3 z0AS2;zLraJzuzLgp!7Bc_dlSW$NAn0j!-B{PdMt_J-f5O*?-mHMF(L>h7hDc_;Ew% z@u)uPRsGbb2B=>R(tsMGK{ZT6YJ`T>D2=Ew8dV2qOpVh4H9_NWehKcwLm96zqxnl% zqWK;|65#~G`v@3cny8^B#*ilJx~U?3iGViNypHgD1P$R22zYZ8pB?Hu8}1%0fc0{D zHb2JQ6SMhzk$b+#7Yfr0Tp2CQ=ec((JCQHWWx103B3tC{g)5VDdG4Ogm-2HwT$r4= zGAE|c^1tOl(S)h6;qb(i*o+9CGc~qD?VnRK$z~gzq$*@QHVJ^R7wIgCBqth0&~Z;^wr>3@aP v*L$oG3B>OWZVcZat}8qKfxT+{-q6Oe`^W0;9e?89@W%1`$Lk*agfaXR7T3Ya literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/colorama/__pycache__/ansitowin32.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/colorama/__pycache__/ansitowin32.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1cc116f650b9d9e8d1c04431a96299258925a827 GIT binary patch literal 16263 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 rT43%##_|jcd!F7 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/colorama/__pycache__/initialise.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/colorama/__pycache__/initialise.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2ce00822c35fdfbdb9642d92969d63f779a2d0e7 GIT binary patch literal 3980 zcmc&%O>7&-6`tYll1r{gnfh@=>&LXhw4v*W^-qx&XcD-EWhF+50Fq-^2NN6ZN?MuX z60;*q3RHkDbYKc6&>@C%hyfi^HHLEVspzrCoC?Yy5Ox6p0ty4oje%-F2vDH!&2m>< zwL#lcXLsJt&wKOx-uK@AKAB7qNS~267yr>i$X~JIr%0!8_**DEA_g&Nnap}$I!i@8 zG8-`>hE$f8t>f$uI>M4Hu% z9^mRRl0cIYVk+T&7@tm)eD62NUHpau%~MyqT5+ry`<7L?d}&UM(;+f^CCG;y2(Dkp z4C~e-kR^laGGrxAc(Nk_pQV^z=BNA;Av-YFF3u+stb=Rtc8-p4SR(jS4_s-)GE`fRnzc0yX)Am>D*kic*(FUraL%qtpV$* zRWa;Ur!;3*9J_3~QIE$>tW=n}U^(1mZk(Bp$xC{`_ixaRLZ zEZlTV<`gPA*UOfr^YvwW-ZCxoo?du&eQr@_%kMIK$(-X(Vd~bULfO<=rBq$#i#B|` zp2EaEvvRLcw%#vz9hWCAUMx5kH(#sjb9eOx(YjmF8_$;-lF!vtQ_Vci@2R<_nrry)(Y}^xlZcW$CI@OyU9QV*1zL}e zjvTNA@^L0lo+MtE{y<-sLTZI7CDh7*!Xtvp<){0v@<2%l;l2SucUXb8yLxF+5B&eJ$jRcj@Yr~E#Waq~~YGgmw*NBbntNjme?5WwNn*CZm z|4coR<~eVkI07Poa^4;2HBt+kp(HdIo8Wj zrjraB?)?qrT{A2NoVpxpSA2Or8fp*tYZBOStdiq+2A#xJzeL2!V13dKjIHUIptX^5q+I-PuS)DDsF~e5OnS9EXpxI5lrBC=sn%Tbo#m&ah z<-LI`&4DXk^L}cmk-5H?nrfz|8tT-G1nEEh$@$ui{k}o`JdY(dKWM}DcwbFD=zSdDQ^%X? zctag;ojz07@IfdU7A(T9=3rYvLgPoxJ6r;C0zlH;aMBGRr2sNGf47=12JBuo~S26XcF2r zu3GFmE3l+{pG(lTywPm^w&?6h?4y%y`X_xqlN))@#sp&0@>h+4pkzLa+0 ze0GB~`Zd|;^8Bo4BP3l4r1|%aA0W^7j88Y{abyAG)9%%kj-_RcO~AI5qN{+XzkF%( ziNwz0iDZ$C0h!6i8D5{OR?9jEKe^0sRl-y~>%?t&mn$Uka`O>4Q88EjK*KMCoja&l zzBLXltvI{{fyT)&gZ&7&rXV{Hfz$}tl&WoRY^^?vje+xMsi}H&KQ@Bq+1sfMHe%;~ zcc<~nTL;()HrhA(c>1&1rvrbS`RZmPJ-wHnZl02|8zFI<2OKnz%WcNM>(V^8{_5rjNzoZ*^Fkey!u`5Qbn@?2Ky zIoRjc4}$%+Ba)JCsmZ#64+J|Ost?qZ?H88yWlc#Tk zyX$}JTLR?oNb0czt?z4X?3p&Ur)8U37R)c6YYmQka;HAo($ckGiDS#llf@#04W6q{ zfICP1gn-`zAWerqFK!E*^5RpB)xB7B980M90y*4NM|N4Sz<&V~D$eje#o|x6p6}G3 zFWbgS*?g1z3|R2YoxcEqO;CD3k~Q(PNV?&_Et05-=YZrI;kO+fpb+W@WFkUe1IO%> zM23Q&4wIkC^c8~!T}`=7&UAG!bl literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/colorama/__pycache__/win32.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/colorama/__pycache__/win32.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bf586196a6b041eae6e4de867dcfdbcb890e73c4 GIT binary patch literal 7968 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 AX#fBK literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/__pycache__/ansi_test.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/__pycache__/ansi_test.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..02af2de6bebec1545ef3f5631f7ba86b895a6704 GIT binary patch literal 5895 zcmeHL&2JM&6rc6(I+HjFgg_x5ZJ|J0L&(O#O>lx*1!5o&3`&A1=CE3_3pn^Ao!vm4 zR#hr-$bt46sR~jKEj5jL>i^JVx8+U!XP?^tp7(vYoSrZMjOyNTgpNJ1D!#8DsjM ztDMU)%T*_xY|;u!ZeS#BC#Evj6X}!v(`cX^q*7#~2O>+*{J3P2xX+XxlDKU802NaP zR80lYZ>oR|rhk$I8(hkbLL;WjR?rv@BzA1$H-IJbC0PNvJvd(H32~Io{25RG1gx%l zmL0lT<_UCll@Au`q<>#Wd9umt*I|-L@>Gfi{cfva+ZJ%O5~%}(Dn zSn4Xv%vjTotzEd@uO%&mrS;jYb2kG*M3t@M2@nYg8ijFY{gkY*%=TfzH!I0 zwb{h1rb96^!?fv4GQ*6Np*b*Fwr0S)pkuUmHtVXkKc_Y}H&e!jOxhYEBkPlwiN^DFbA2s|5Lja0oUID`C6!HSlM zg9S>#@n)A0-HSW^az4B>o)$`Y?+?xrYk^Wh)eVTr&@(J?hwTO(YXjhFm=>YlgX(qw zF*|G@mY@!d`Do@rdcMsYm9lCtmPJ?~f9yN>jr^#oBo><%o7jHHsOlm%jCb)I#9px& zDmpXc#ZBq8Uv!T{$mRkveRc6S2UD(#?=3Da^Z-6o9!SvU~_cj`{p)Niy zeo;TIi|_dlv#~Bdc(zjgO?B}-k7Wkx;^Xq;!ECOJk9&{cx75Yo9z?n#2*wv~_DTX0WoUhTShvMTBZ3|g z^oXEG1U(|?5kZd(rh@HmK=?lH_!urUS3NU6a`uudPeeyu_54IM8gu!2^0co~e_&;3jrJC3Z=Uv6>T8wnTA5j+p#lx% zX{fS%$I8Vusuie~r&^`Hdu4u&_7`Y>p7vMjYn886Z>7HE_C?PM9mjLfwNnLpDo;;U zR8i;%=Adr_1v-$Y163I{89h1ZU8F!Gc^au=9LquX1`BjBPY0_qPUN6}m4}UTt7&z)m3aB5eIy;=U8_9BTT`>P!uc{NH@% z&7B=yFgLuj!#kdq&nI$UtkK~D9nRC?DyMoZSA$VmIk;$eUg0}` zh1vY?f7kMJwGx|Gx^9Za+7AK}p;S;6>j^&!U3qluvg?msnYcVM?)uM6;MsNCdT7V9 zB)@m7SPV5)Yc%)ku+e(9^CCVX_20vf5uH+dSL@yZLpFOXt!F2S=OX z6$?|akYd2)me~F9^Mvtv3!u`;JiyyeemBQ&f*79S8NUJQ#2D|}AjXCe@GggU`XxOr zhU{bZ3Fz<|&;A9VC`*#`oHQ-)-#R&*-|2Zyj^t}U>*Q#@`gz{k_Go4yur5T=e_DcZ u*$#`J|ApGWH?zKyh|;_`|4i=4%N^?qT^RlP+{1GV{8yBT(g|wbseb?sGAAAY literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/__pycache__/ansitowin32_test.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/__pycache__/ansitowin32_test.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..421efa277f52fc5ed9a00938f54fda2465b0b303 GIT binary patch literal 21562 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/__pycache__/initialise_test.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/__pycache__/initialise_test.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6f5b0f926ae1939fa4cfd2ad0c2d60fdfbb86ffe GIT binary patch literal 14189 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/__pycache__/isatty_test.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/__pycache__/isatty_test.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..19aacb1e1f72bf4170839d1baac6240058930977 GIT binary patch literal 6754 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/__pycache__/utils.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/__pycache__/utils.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f4f56001a26a14dcccf2d634894e58054fed170d GIT binary patch literal 2929 zcmds3&2Q936rZuZpV@@KCJmx#NR-kvMZ`@%M1=q;1)4Od3u@9<*^6b?CYXBd?TiB~ z3X%^&q7?@Ym2&B+hg4Ax?O)I;|3Q$bw6cVRR3WvuMd5%@4}EWD*V)acw5Yev*l*sv zkMX?Ud_4cq-JK;+z9Xlv9M=f>4Li+}XfWG91G7pjVo{frX^~Ro6;~;%MOE;ss}(hn zscxc}P{=f~v=w3{Y;{c~WCLDVibGDzQnC zTBN90bcGaEOMx-fC|b_l$G&Fj7ptW!CM#cL{#CmaaDC>BcXZb_nP*h0!4)4GsnI8{ z+1@qXbuQ^r@$SUrq|TkdK2|YHUqXyruQ(Om05i*HddYWvW|mDousIC76gV!Qs8pk* z!_6S5-t3J-nvjwVOqHjAgrv4Fe<#=mmK4^tC~X*?S+)%$${I%5x0YPwbB6KNlIcnf z%YiLRBk4xcg#dUV)FojiB->kCHsF{G~v&He>55a(Gch zT?m`eP{$px;doyRH?hnzyW*N9+qhI^xW)tU@>4(>cpm8g_O0;zL)p~!58OVpGTUro zboUQRv1r2CaQ6QKG8+UW@Y0bu$_og1fYC76VZ^Ep&3qG01mE#Y7hxR(vk^3Hhjl{2 z3Qev5Rlu*%Y+_jZhox9FVIeF?SYfER;B6_6rUFMz?p>?xi0vFsOF0R~K{M3?-<|+( zkpM?)lx4C8BW}b8_#QnCPJ zilqJ$)~)BFHMUbQ1}4fvL?@%3iwkFFrat||n7J@Ff9~vfg5kD~QjoqJ=6m8^6uVul z4J7822Wbv+lFXL!mPu7)US!9>_b9ylPayJGJQ{ri?w8rEeTVOB!w-87eeK=#!s&;Z z{JrV>nZXB{LA+gi1o?Gn@~5%;Lnj^#o!Al9(%p9wSnF!jPAH$C+tb*0$6*)u?Afzj zlD)eBakR(j?A`2EesnASx_tP10KkvEQ)B8ciK*Virj`SCvsaty%WU?k$PZBD4+?%v zn>w1>oS;C*b5XYOGX#GR43A8tI6l*W5l2j{k4)DhapBFrvp`}6b|tvy>67wD;52(1 zjB%gx1W*8!(nsXTR{K*U16%D+jbuYnYa|njT2Cqz{s=nBz4Q~5KHX8J6$-htlid3N zE&I{3p-&T~x2|Y3UnfAGsL)**l7gI2rRZyQ0wh+U;6Ot)f~t`g)ks5?phxNiNUUlK JgjC!Ue*vT literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/__pycache__/winterm_test.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/__pycache__/winterm_test.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bad627414ea898487b98db74ef745a94aee84b87 GIT binary patch literal 7282 zcmeHM+iw%u89#HgkL`)EfLx&=>4IQZo0x&O^KTu5d{vZ*ZN zxk+mwWjJ1_ix@1OK(^)NE>Q=JyhjWY6?766Q7~Ot6F@Y0OGy{6lUiY;GW1gn&y2U+ zXO)(7)n8qz<0P-aY>)XOU_V`H;OuKE0W4{q1pY0Oz}vt%utl6{183a!tync*1LwA; ztLAU$7i`)u(9mz2u1*rI%?WHk2XVOAkw9R@)A7OiWX1wO;rGyR!re~TQ5jyu{3{Q@ z=N_?K5RtkKye8_xk{EN_m&7Gu#^n@q^~Ul6w~bT_foswdSuMl3+=YLaq!~}SLKkZx zCy*ASTsQ-8Yk=BvlnZ^m4&G=#U>TK(^(=_9j@;K#uyq`v`55M%!2EH`V#!N$mSH+Q zV}>=7&6wGgF_~b7kvTCpHD$2z%v9DT2ylP~whEvH) z;Znn)!J(nBnY4_7S&%D!*)YSi$=PrWy6IUKE@LVTKOfj`AS;HY!Py0eVrD#(v=(=Q z@My&%*ix?D2BMpDK$gji9i4X$-#xrS3ws7us7-elK03MLv*`ym{rR(P9XA$kEv(1| zs(wqmp3<)0?tIX*`pZ1sZ`1uby8m73cdf?r^ngtd=zoiteW`Pv$D*QL3sFBT`RTme*zAVDBG)TF)HadQYARJT`MF(^CKxX2dI*RX;1-2-LY{RY=|<84#PMA=tXLfEg~`wuJD!W9 zpM7@bg5y1Xd~9?ga-87;IGz*d#>YO5JQCS19N7!RMD~4sY!9}psIy?+(D0axUG>^r zZoz3yh|5r;%Ub)qy<@@*WMDlk^I``bo)`;~M4u78hQ#P-TBBL<@IgJU(s+O{TSdHfX^)IkQ zEiK6w_}9(7_mUKIJ+Cf82`wB?yyPO5mt3SSNvl=fygZ^lGT^?})u~D^(64I0-poU9 zHmV{|gNFudve_tCZe6L@{}!X%b(ujI&6Dn_AJ6sAJF%`o`})5it)shOI3q(Pj%X^6 z4%iN?*@>hbNy+P*ppS`Clu)Ozjt^WAYHKQ0(p^sivWCujV6^M#s}%Aac0ZmF7cYc}~?YgExbD+66swvRhzY+(koB3Q|-~ zSS`X!VaA>JKL};3Lg}hdxItwQhL7Y8H-Ny6Xx@?^Kz(Mo^&DW1jG-k*6dS@y#BGgr z=W*I8=+qdeVeJX%|LQW3Dy#mi1}NOZBQ$(BeYg8>sJGM=^&OD$<4#u&O>f(2_91LQ z;|8O*cVs*?ymf<5K&QqH#@f@sgdIiF52Pme{ZYq=R@O0$r<&*(20f0#4{WXWz=t6e zztdT4uaBR2^{;@B*-Fhyp%bc^|EB-;@QvWD;7YJs&33I`%2UmzT8?V(YEUuCD<}7) za{vrnON079i%%fxaHEs5nD||Tw{jlhCfJP=s{6scgc}LWxbX|rx^V-{;QIRNk+m~S ziAgfma2vrR0kLF)TRD9XoHBLr>f9#tu)K59y(@?qU+}n^-y%3Z^!c$kyKFk1$;inw z=Ob(%h}A3x2y#TZd=`5eVCA+YfQ5MjNKG8jx9L&)Sx3*Esk>7f9>3(_^R&mNJvrLr zLav~;+v5SQ!&)Txn)g8gmfgSSihuchF7RGn*=s9%i=tQ2iUi0@iFo$8HQR|Nv>d%H-BrI0 z?SC5D|4_+?2JO&b?%;{MGGZ$uMRA9M2UMgu^rTR!e4ls%HFJcNqeTLwG6&Y|eft~~ z2Lh>@0jqZYFe7V!l&XLc0#f-=ShKtSw>R&G1NmrfxcFWnWbi*bv6vQO7(+R94lX-U zMHt5YOh&?y(pGL5#OvGA=@7x>1jf^|S-1pd4F2mQW255*XMtC{{Jw@?&y=Eij*(v= z%d<%Ok>KUbcl4tYTt8+Ppa|F@=0AZHB|#9L6aO;*E0Az*^QS0FLVrQla+^GF3f}ES zA_)BzQjq&{n?E>t|C={&iXI{i=g81zPtn5!0T#A7y?x*%Z+Tta4reM^U0Hl8b?2n+ jf=riB{`%DQQ_K9X2yH!3ZQ^z4ZQ4!lw`tNtL6iOs!k$$> literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/ansi_test.py b/.venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/ansi_test.py new file mode 100644 index 0000000..0a20c80 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/ansi_test.py @@ -0,0 +1,76 @@ +# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. +import sys +from unittest import TestCase, main + +from ..ansi import Back, Fore, Style +from ..ansitowin32 import AnsiToWin32 + +stdout_orig = sys.stdout +stderr_orig = sys.stderr + + +class AnsiTest(TestCase): + + def setUp(self): + # sanity check: stdout should be a file or StringIO object. + # It will only be AnsiToWin32 if init() has previously wrapped it + self.assertNotEqual(type(sys.stdout), AnsiToWin32) + self.assertNotEqual(type(sys.stderr), AnsiToWin32) + + def tearDown(self): + sys.stdout = stdout_orig + sys.stderr = stderr_orig + + + def testForeAttributes(self): + self.assertEqual(Fore.BLACK, '\033[30m') + self.assertEqual(Fore.RED, '\033[31m') + self.assertEqual(Fore.GREEN, '\033[32m') + self.assertEqual(Fore.YELLOW, '\033[33m') + self.assertEqual(Fore.BLUE, '\033[34m') + self.assertEqual(Fore.MAGENTA, '\033[35m') + self.assertEqual(Fore.CYAN, '\033[36m') + self.assertEqual(Fore.WHITE, '\033[37m') + self.assertEqual(Fore.RESET, '\033[39m') + + # Check the light, extended versions. + self.assertEqual(Fore.LIGHTBLACK_EX, '\033[90m') + self.assertEqual(Fore.LIGHTRED_EX, '\033[91m') + self.assertEqual(Fore.LIGHTGREEN_EX, '\033[92m') + self.assertEqual(Fore.LIGHTYELLOW_EX, '\033[93m') + self.assertEqual(Fore.LIGHTBLUE_EX, '\033[94m') + self.assertEqual(Fore.LIGHTMAGENTA_EX, '\033[95m') + self.assertEqual(Fore.LIGHTCYAN_EX, '\033[96m') + self.assertEqual(Fore.LIGHTWHITE_EX, '\033[97m') + + + def testBackAttributes(self): + self.assertEqual(Back.BLACK, '\033[40m') + self.assertEqual(Back.RED, '\033[41m') + self.assertEqual(Back.GREEN, '\033[42m') + self.assertEqual(Back.YELLOW, '\033[43m') + self.assertEqual(Back.BLUE, '\033[44m') + self.assertEqual(Back.MAGENTA, '\033[45m') + self.assertEqual(Back.CYAN, '\033[46m') + self.assertEqual(Back.WHITE, '\033[47m') + self.assertEqual(Back.RESET, '\033[49m') + + # Check the light, extended versions. + self.assertEqual(Back.LIGHTBLACK_EX, '\033[100m') + self.assertEqual(Back.LIGHTRED_EX, '\033[101m') + self.assertEqual(Back.LIGHTGREEN_EX, '\033[102m') + self.assertEqual(Back.LIGHTYELLOW_EX, '\033[103m') + self.assertEqual(Back.LIGHTBLUE_EX, '\033[104m') + self.assertEqual(Back.LIGHTMAGENTA_EX, '\033[105m') + self.assertEqual(Back.LIGHTCYAN_EX, '\033[106m') + self.assertEqual(Back.LIGHTWHITE_EX, '\033[107m') + + + def testStyleAttributes(self): + self.assertEqual(Style.DIM, '\033[2m') + self.assertEqual(Style.NORMAL, '\033[22m') + self.assertEqual(Style.BRIGHT, '\033[1m') + + +if __name__ == '__main__': + main() diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/ansitowin32_test.py b/.venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/ansitowin32_test.py new file mode 100644 index 0000000..91ca551 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/ansitowin32_test.py @@ -0,0 +1,294 @@ +# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. +from io import StringIO, TextIOWrapper +from unittest import TestCase, main +try: + from contextlib import ExitStack +except ImportError: + # python 2 + from contextlib2 import ExitStack + +try: + from unittest.mock import MagicMock, Mock, patch +except ImportError: + from mock import MagicMock, Mock, patch + +from ..ansitowin32 import AnsiToWin32, StreamWrapper +from ..win32 import ENABLE_VIRTUAL_TERMINAL_PROCESSING +from .utils import osname + + +class StreamWrapperTest(TestCase): + + def testIsAProxy(self): + mockStream = Mock() + wrapper = StreamWrapper(mockStream, None) + self.assertTrue( wrapper.random_attr is mockStream.random_attr ) + + def testDelegatesWrite(self): + mockStream = Mock() + mockConverter = Mock() + wrapper = StreamWrapper(mockStream, mockConverter) + wrapper.write('hello') + self.assertTrue(mockConverter.write.call_args, (('hello',), {})) + + def testDelegatesContext(self): + mockConverter = Mock() + s = StringIO() + with StreamWrapper(s, mockConverter) as fp: + fp.write(u'hello') + self.assertTrue(s.closed) + + def testProxyNoContextManager(self): + mockStream = MagicMock() + mockStream.__enter__.side_effect = AttributeError() + mockConverter = Mock() + with self.assertRaises(AttributeError) as excinfo: + with StreamWrapper(mockStream, mockConverter) as wrapper: + wrapper.write('hello') + + def test_closed_shouldnt_raise_on_closed_stream(self): + stream = StringIO() + stream.close() + wrapper = StreamWrapper(stream, None) + self.assertEqual(wrapper.closed, True) + + def test_closed_shouldnt_raise_on_detached_stream(self): + stream = TextIOWrapper(StringIO()) + stream.detach() + wrapper = StreamWrapper(stream, None) + self.assertEqual(wrapper.closed, True) + +class AnsiToWin32Test(TestCase): + + def testInit(self): + mockStdout = Mock() + auto = Mock() + stream = AnsiToWin32(mockStdout, autoreset=auto) + self.assertEqual(stream.wrapped, mockStdout) + self.assertEqual(stream.autoreset, auto) + + @patch('colorama.ansitowin32.winterm', None) + @patch('colorama.ansitowin32.winapi_test', lambda *_: True) + def testStripIsTrueOnWindows(self): + with osname('nt'): + mockStdout = Mock() + stream = AnsiToWin32(mockStdout) + self.assertTrue(stream.strip) + + def testStripIsFalseOffWindows(self): + with osname('posix'): + mockStdout = Mock(closed=False) + stream = AnsiToWin32(mockStdout) + self.assertFalse(stream.strip) + + def testWriteStripsAnsi(self): + mockStdout = Mock() + stream = AnsiToWin32(mockStdout) + stream.wrapped = Mock() + stream.write_and_convert = Mock() + stream.strip = True + + stream.write('abc') + + self.assertFalse(stream.wrapped.write.called) + self.assertEqual(stream.write_and_convert.call_args, (('abc',), {})) + + def testWriteDoesNotStripAnsi(self): + mockStdout = Mock() + stream = AnsiToWin32(mockStdout) + stream.wrapped = Mock() + stream.write_and_convert = Mock() + stream.strip = False + stream.convert = False + + stream.write('abc') + + self.assertFalse(stream.write_and_convert.called) + self.assertEqual(stream.wrapped.write.call_args, (('abc',), {})) + + def assert_autoresets(self, convert, autoreset=True): + stream = AnsiToWin32(Mock()) + stream.convert = convert + stream.reset_all = Mock() + stream.autoreset = autoreset + stream.winterm = Mock() + + stream.write('abc') + + self.assertEqual(stream.reset_all.called, autoreset) + + def testWriteAutoresets(self): + self.assert_autoresets(convert=True) + self.assert_autoresets(convert=False) + self.assert_autoresets(convert=True, autoreset=False) + self.assert_autoresets(convert=False, autoreset=False) + + def testWriteAndConvertWritesPlainText(self): + stream = AnsiToWin32(Mock()) + stream.write_and_convert( 'abc' ) + self.assertEqual( stream.wrapped.write.call_args, (('abc',), {}) ) + + def testWriteAndConvertStripsAllValidAnsi(self): + stream = AnsiToWin32(Mock()) + stream.call_win32 = Mock() + data = [ + 'abc\033[mdef', + 'abc\033[0mdef', + 'abc\033[2mdef', + 'abc\033[02mdef', + 'abc\033[002mdef', + 'abc\033[40mdef', + 'abc\033[040mdef', + 'abc\033[0;1mdef', + 'abc\033[40;50mdef', + 'abc\033[50;30;40mdef', + 'abc\033[Adef', + 'abc\033[0Gdef', + 'abc\033[1;20;128Hdef', + ] + for datum in data: + stream.wrapped.write.reset_mock() + stream.write_and_convert( datum ) + self.assertEqual( + [args[0] for args in stream.wrapped.write.call_args_list], + [ ('abc',), ('def',) ] + ) + + def testWriteAndConvertSkipsEmptySnippets(self): + stream = AnsiToWin32(Mock()) + stream.call_win32 = Mock() + stream.write_and_convert( '\033[40m\033[41m' ) + self.assertFalse( stream.wrapped.write.called ) + + def testWriteAndConvertCallsWin32WithParamsAndCommand(self): + stream = AnsiToWin32(Mock()) + stream.convert = True + stream.call_win32 = Mock() + stream.extract_params = Mock(return_value='params') + data = { + 'abc\033[adef': ('a', 'params'), + 'abc\033[;;bdef': ('b', 'params'), + 'abc\033[0cdef': ('c', 'params'), + 'abc\033[;;0;;Gdef': ('G', 'params'), + 'abc\033[1;20;128Hdef': ('H', 'params'), + } + for datum, expected in data.items(): + stream.call_win32.reset_mock() + stream.write_and_convert( datum ) + self.assertEqual( stream.call_win32.call_args[0], expected ) + + def test_reset_all_shouldnt_raise_on_closed_orig_stdout(self): + stream = StringIO() + converter = AnsiToWin32(stream) + stream.close() + + converter.reset_all() + + def test_wrap_shouldnt_raise_on_closed_orig_stdout(self): + stream = StringIO() + stream.close() + with \ + patch("colorama.ansitowin32.os.name", "nt"), \ + patch("colorama.ansitowin32.winapi_test", lambda: True): + converter = AnsiToWin32(stream) + self.assertTrue(converter.strip) + self.assertFalse(converter.convert) + + def test_wrap_shouldnt_raise_on_missing_closed_attr(self): + with \ + patch("colorama.ansitowin32.os.name", "nt"), \ + patch("colorama.ansitowin32.winapi_test", lambda: True): + converter = AnsiToWin32(object()) + self.assertTrue(converter.strip) + self.assertFalse(converter.convert) + + def testExtractParams(self): + stream = AnsiToWin32(Mock()) + data = { + '': (0,), + ';;': (0,), + '2': (2,), + ';;002;;': (2,), + '0;1': (0, 1), + ';;003;;456;;': (3, 456), + '11;22;33;44;55': (11, 22, 33, 44, 55), + } + for datum, expected in data.items(): + self.assertEqual(stream.extract_params('m', datum), expected) + + def testCallWin32UsesLookup(self): + listener = Mock() + stream = AnsiToWin32(listener) + stream.win32_calls = { + 1: (lambda *_, **__: listener(11),), + 2: (lambda *_, **__: listener(22),), + 3: (lambda *_, **__: listener(33),), + } + stream.call_win32('m', (3, 1, 99, 2)) + self.assertEqual( + [a[0][0] for a in listener.call_args_list], + [33, 11, 22] ) + + def test_osc_codes(self): + mockStdout = Mock() + stream = AnsiToWin32(mockStdout, convert=True) + with patch('colorama.ansitowin32.winterm') as winterm: + data = [ + '\033]0\x07', # missing arguments + '\033]0;foo\x08', # wrong OSC command + '\033]0;colorama_test_title\x07', # should work + '\033]1;colorama_test_title\x07', # wrong set command + '\033]2;colorama_test_title\x07', # should work + '\033]' + ';' * 64 + '\x08', # see issue #247 + ] + for code in data: + stream.write(code) + self.assertEqual(winterm.set_title.call_count, 2) + + def test_native_windows_ansi(self): + with ExitStack() as stack: + def p(a, b): + stack.enter_context(patch(a, b, create=True)) + # Pretend to be on Windows + p("colorama.ansitowin32.os.name", "nt") + p("colorama.ansitowin32.winapi_test", lambda: True) + p("colorama.win32.winapi_test", lambda: True) + p("colorama.winterm.win32.windll", "non-None") + p("colorama.winterm.get_osfhandle", lambda _: 1234) + + # Pretend that our mock stream has native ANSI support + p( + "colorama.winterm.win32.GetConsoleMode", + lambda _: ENABLE_VIRTUAL_TERMINAL_PROCESSING, + ) + SetConsoleMode = Mock() + p("colorama.winterm.win32.SetConsoleMode", SetConsoleMode) + + stdout = Mock() + stdout.closed = False + stdout.isatty.return_value = True + stdout.fileno.return_value = 1 + + # Our fake console says it has native vt support, so AnsiToWin32 should + # enable that support and do nothing else. + stream = AnsiToWin32(stdout) + SetConsoleMode.assert_called_with(1234, ENABLE_VIRTUAL_TERMINAL_PROCESSING) + self.assertFalse(stream.strip) + self.assertFalse(stream.convert) + self.assertFalse(stream.should_wrap()) + + # Now let's pretend we're on an old Windows console, that doesn't have + # native ANSI support. + p("colorama.winterm.win32.GetConsoleMode", lambda _: 0) + SetConsoleMode = Mock() + p("colorama.winterm.win32.SetConsoleMode", SetConsoleMode) + + stream = AnsiToWin32(stdout) + SetConsoleMode.assert_called_with(1234, ENABLE_VIRTUAL_TERMINAL_PROCESSING) + self.assertTrue(stream.strip) + self.assertTrue(stream.convert) + self.assertTrue(stream.should_wrap()) + + +if __name__ == '__main__': + main() diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/initialise_test.py b/.venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/initialise_test.py new file mode 100644 index 0000000..89f9b07 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/initialise_test.py @@ -0,0 +1,189 @@ +# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. +import sys +from unittest import TestCase, main, skipUnless + +try: + from unittest.mock import patch, Mock +except ImportError: + from mock import patch, Mock + +from ..ansitowin32 import StreamWrapper +from ..initialise import init, just_fix_windows_console, _wipe_internal_state_for_tests +from .utils import osname, replace_by + +orig_stdout = sys.stdout +orig_stderr = sys.stderr + + +class InitTest(TestCase): + + @skipUnless(sys.stdout.isatty(), "sys.stdout is not a tty") + def setUp(self): + # sanity check + self.assertNotWrapped() + + def tearDown(self): + _wipe_internal_state_for_tests() + sys.stdout = orig_stdout + sys.stderr = orig_stderr + + def assertWrapped(self): + self.assertIsNot(sys.stdout, orig_stdout, 'stdout should be wrapped') + self.assertIsNot(sys.stderr, orig_stderr, 'stderr should be wrapped') + self.assertTrue(isinstance(sys.stdout, StreamWrapper), + 'bad stdout wrapper') + self.assertTrue(isinstance(sys.stderr, StreamWrapper), + 'bad stderr wrapper') + + def assertNotWrapped(self): + self.assertIs(sys.stdout, orig_stdout, 'stdout should not be wrapped') + self.assertIs(sys.stderr, orig_stderr, 'stderr should not be wrapped') + + @patch('colorama.initialise.reset_all') + @patch('colorama.ansitowin32.winapi_test', lambda *_: True) + @patch('colorama.ansitowin32.enable_vt_processing', lambda *_: False) + def testInitWrapsOnWindows(self, _): + with osname("nt"): + init() + self.assertWrapped() + + @patch('colorama.initialise.reset_all') + @patch('colorama.ansitowin32.winapi_test', lambda *_: False) + def testInitDoesntWrapOnEmulatedWindows(self, _): + with osname("nt"): + init() + self.assertNotWrapped() + + def testInitDoesntWrapOnNonWindows(self): + with osname("posix"): + init() + self.assertNotWrapped() + + def testInitDoesntWrapIfNone(self): + with replace_by(None): + init() + # We can't use assertNotWrapped here because replace_by(None) + # changes stdout/stderr already. + self.assertIsNone(sys.stdout) + self.assertIsNone(sys.stderr) + + def testInitAutoresetOnWrapsOnAllPlatforms(self): + with osname("posix"): + init(autoreset=True) + self.assertWrapped() + + def testInitWrapOffDoesntWrapOnWindows(self): + with osname("nt"): + init(wrap=False) + self.assertNotWrapped() + + def testInitWrapOffIncompatibleWithAutoresetOn(self): + self.assertRaises(ValueError, lambda: init(autoreset=True, wrap=False)) + + @patch('colorama.win32.SetConsoleTextAttribute') + @patch('colorama.initialise.AnsiToWin32') + def testAutoResetPassedOn(self, mockATW32, _): + with osname("nt"): + init(autoreset=True) + self.assertEqual(len(mockATW32.call_args_list), 2) + self.assertEqual(mockATW32.call_args_list[1][1]['autoreset'], True) + self.assertEqual(mockATW32.call_args_list[0][1]['autoreset'], True) + + @patch('colorama.initialise.AnsiToWin32') + def testAutoResetChangeable(self, mockATW32): + with osname("nt"): + init() + + init(autoreset=True) + self.assertEqual(len(mockATW32.call_args_list), 4) + self.assertEqual(mockATW32.call_args_list[2][1]['autoreset'], True) + self.assertEqual(mockATW32.call_args_list[3][1]['autoreset'], True) + + init() + self.assertEqual(len(mockATW32.call_args_list), 6) + self.assertEqual( + mockATW32.call_args_list[4][1]['autoreset'], False) + self.assertEqual( + mockATW32.call_args_list[5][1]['autoreset'], False) + + + @patch('colorama.initialise.atexit.register') + def testAtexitRegisteredOnlyOnce(self, mockRegister): + init() + self.assertTrue(mockRegister.called) + mockRegister.reset_mock() + init() + self.assertFalse(mockRegister.called) + + +class JustFixWindowsConsoleTest(TestCase): + def _reset(self): + _wipe_internal_state_for_tests() + sys.stdout = orig_stdout + sys.stderr = orig_stderr + + def tearDown(self): + self._reset() + + @patch("colorama.ansitowin32.winapi_test", lambda: True) + def testJustFixWindowsConsole(self): + if sys.platform != "win32": + # just_fix_windows_console should be a no-op + just_fix_windows_console() + self.assertIs(sys.stdout, orig_stdout) + self.assertIs(sys.stderr, orig_stderr) + else: + def fake_std(): + # Emulate stdout=not a tty, stderr=tty + # to check that we handle both cases correctly + stdout = Mock() + stdout.closed = False + stdout.isatty.return_value = False + stdout.fileno.return_value = 1 + sys.stdout = stdout + + stderr = Mock() + stderr.closed = False + stderr.isatty.return_value = True + stderr.fileno.return_value = 2 + sys.stderr = stderr + + for native_ansi in [False, True]: + with patch( + 'colorama.ansitowin32.enable_vt_processing', + lambda *_: native_ansi + ): + self._reset() + fake_std() + + # Regular single-call test + prev_stdout = sys.stdout + prev_stderr = sys.stderr + just_fix_windows_console() + self.assertIs(sys.stdout, prev_stdout) + if native_ansi: + self.assertIs(sys.stderr, prev_stderr) + else: + self.assertIsNot(sys.stderr, prev_stderr) + + # second call without resetting is always a no-op + prev_stdout = sys.stdout + prev_stderr = sys.stderr + just_fix_windows_console() + self.assertIs(sys.stdout, prev_stdout) + self.assertIs(sys.stderr, prev_stderr) + + self._reset() + fake_std() + + # If init() runs first, just_fix_windows_console should be a no-op + init() + prev_stdout = sys.stdout + prev_stderr = sys.stderr + just_fix_windows_console() + self.assertIs(prev_stdout, sys.stdout) + self.assertIs(prev_stderr, sys.stderr) + + +if __name__ == '__main__': + main() diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/isatty_test.py b/.venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/isatty_test.py new file mode 100644 index 0000000..0f84e4b --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/isatty_test.py @@ -0,0 +1,57 @@ +# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. +import sys +from unittest import TestCase, main + +from ..ansitowin32 import StreamWrapper, AnsiToWin32 +from .utils import pycharm, replace_by, replace_original_by, StreamTTY, StreamNonTTY + + +def is_a_tty(stream): + return StreamWrapper(stream, None).isatty() + +class IsattyTest(TestCase): + + def test_TTY(self): + tty = StreamTTY() + self.assertTrue(is_a_tty(tty)) + with pycharm(): + self.assertTrue(is_a_tty(tty)) + + def test_nonTTY(self): + non_tty = StreamNonTTY() + self.assertFalse(is_a_tty(non_tty)) + with pycharm(): + self.assertFalse(is_a_tty(non_tty)) + + def test_withPycharm(self): + with pycharm(): + self.assertTrue(is_a_tty(sys.stderr)) + self.assertTrue(is_a_tty(sys.stdout)) + + def test_withPycharmTTYOverride(self): + tty = StreamTTY() + with pycharm(), replace_by(tty): + self.assertTrue(is_a_tty(tty)) + + def test_withPycharmNonTTYOverride(self): + non_tty = StreamNonTTY() + with pycharm(), replace_by(non_tty): + self.assertFalse(is_a_tty(non_tty)) + + def test_withPycharmNoneOverride(self): + with pycharm(): + with replace_by(None), replace_original_by(None): + self.assertFalse(is_a_tty(None)) + self.assertFalse(is_a_tty(StreamNonTTY())) + self.assertTrue(is_a_tty(StreamTTY())) + + def test_withPycharmStreamWrapped(self): + with pycharm(): + self.assertTrue(AnsiToWin32(StreamTTY()).stream.isatty()) + self.assertFalse(AnsiToWin32(StreamNonTTY()).stream.isatty()) + self.assertTrue(AnsiToWin32(sys.stdout).stream.isatty()) + self.assertTrue(AnsiToWin32(sys.stderr).stream.isatty()) + + +if __name__ == '__main__': + main() diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/utils.py b/.venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/utils.py new file mode 100644 index 0000000..472fafb --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/utils.py @@ -0,0 +1,49 @@ +# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. +from contextlib import contextmanager +from io import StringIO +import sys +import os + + +class StreamTTY(StringIO): + def isatty(self): + return True + +class StreamNonTTY(StringIO): + def isatty(self): + return False + +@contextmanager +def osname(name): + orig = os.name + os.name = name + yield + os.name = orig + +@contextmanager +def replace_by(stream): + orig_stdout = sys.stdout + orig_stderr = sys.stderr + sys.stdout = stream + sys.stderr = stream + yield + sys.stdout = orig_stdout + sys.stderr = orig_stderr + +@contextmanager +def replace_original_by(stream): + orig_stdout = sys.__stdout__ + orig_stderr = sys.__stderr__ + sys.__stdout__ = stream + sys.__stderr__ = stream + yield + sys.__stdout__ = orig_stdout + sys.__stderr__ = orig_stderr + +@contextmanager +def pycharm(): + os.environ["PYCHARM_HOSTED"] = "1" + non_tty = StreamNonTTY() + with replace_by(non_tty), replace_original_by(non_tty): + yield + del os.environ["PYCHARM_HOSTED"] diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/winterm_test.py b/.venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/winterm_test.py new file mode 100644 index 0000000..d0955f9 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/winterm_test.py @@ -0,0 +1,131 @@ +# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. +import sys +from unittest import TestCase, main, skipUnless + +try: + from unittest.mock import Mock, patch +except ImportError: + from mock import Mock, patch + +from ..winterm import WinColor, WinStyle, WinTerm + + +class WinTermTest(TestCase): + + @patch('colorama.winterm.win32') + def testInit(self, mockWin32): + mockAttr = Mock() + mockAttr.wAttributes = 7 + 6 * 16 + 8 + mockWin32.GetConsoleScreenBufferInfo.return_value = mockAttr + term = WinTerm() + self.assertEqual(term._fore, 7) + self.assertEqual(term._back, 6) + self.assertEqual(term._style, 8) + + @skipUnless(sys.platform.startswith("win"), "requires Windows") + def testGetAttrs(self): + term = WinTerm() + + term._fore = 0 + term._back = 0 + term._style = 0 + self.assertEqual(term.get_attrs(), 0) + + term._fore = WinColor.YELLOW + self.assertEqual(term.get_attrs(), WinColor.YELLOW) + + term._back = WinColor.MAGENTA + self.assertEqual( + term.get_attrs(), + WinColor.YELLOW + WinColor.MAGENTA * 16) + + term._style = WinStyle.BRIGHT + self.assertEqual( + term.get_attrs(), + WinColor.YELLOW + WinColor.MAGENTA * 16 + WinStyle.BRIGHT) + + @patch('colorama.winterm.win32') + def testResetAll(self, mockWin32): + mockAttr = Mock() + mockAttr.wAttributes = 1 + 2 * 16 + 8 + mockWin32.GetConsoleScreenBufferInfo.return_value = mockAttr + term = WinTerm() + + term.set_console = Mock() + term._fore = -1 + term._back = -1 + term._style = -1 + + term.reset_all() + + self.assertEqual(term._fore, 1) + self.assertEqual(term._back, 2) + self.assertEqual(term._style, 8) + self.assertEqual(term.set_console.called, True) + + @skipUnless(sys.platform.startswith("win"), "requires Windows") + def testFore(self): + term = WinTerm() + term.set_console = Mock() + term._fore = 0 + + term.fore(5) + + self.assertEqual(term._fore, 5) + self.assertEqual(term.set_console.called, True) + + @skipUnless(sys.platform.startswith("win"), "requires Windows") + def testBack(self): + term = WinTerm() + term.set_console = Mock() + term._back = 0 + + term.back(5) + + self.assertEqual(term._back, 5) + self.assertEqual(term.set_console.called, True) + + @skipUnless(sys.platform.startswith("win"), "requires Windows") + def testStyle(self): + term = WinTerm() + term.set_console = Mock() + term._style = 0 + + term.style(22) + + self.assertEqual(term._style, 22) + self.assertEqual(term.set_console.called, True) + + @patch('colorama.winterm.win32') + def testSetConsole(self, mockWin32): + mockAttr = Mock() + mockAttr.wAttributes = 0 + mockWin32.GetConsoleScreenBufferInfo.return_value = mockAttr + term = WinTerm() + term.windll = Mock() + + term.set_console() + + self.assertEqual( + mockWin32.SetConsoleTextAttribute.call_args, + ((mockWin32.STDOUT, term.get_attrs()), {}) + ) + + @patch('colorama.winterm.win32') + def testSetConsoleOnStderr(self, mockWin32): + mockAttr = Mock() + mockAttr.wAttributes = 0 + mockWin32.GetConsoleScreenBufferInfo.return_value = mockAttr + term = WinTerm() + term.windll = Mock() + + term.set_console(on_stderr=True) + + self.assertEqual( + mockWin32.SetConsoleTextAttribute.call_args, + ((mockWin32.STDERR, term.get_attrs()), {}) + ) + + +if __name__ == '__main__': + main() diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/colorama/win32.py b/.venv/lib/python3.11/site-packages/pip/_vendor/colorama/win32.py new file mode 100644 index 0000000..841b0e2 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/colorama/win32.py @@ -0,0 +1,180 @@ +# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. + +# from winbase.h +STDOUT = -11 +STDERR = -12 + +ENABLE_VIRTUAL_TERMINAL_PROCESSING = 0x0004 + +try: + import ctypes + from ctypes import LibraryLoader + windll = LibraryLoader(ctypes.WinDLL) + from ctypes import wintypes +except (AttributeError, ImportError): + windll = None + SetConsoleTextAttribute = lambda *_: None + winapi_test = lambda *_: None +else: + from ctypes import byref, Structure, c_char, POINTER + + COORD = wintypes._COORD + + class CONSOLE_SCREEN_BUFFER_INFO(Structure): + """struct in wincon.h.""" + _fields_ = [ + ("dwSize", COORD), + ("dwCursorPosition", COORD), + ("wAttributes", wintypes.WORD), + ("srWindow", wintypes.SMALL_RECT), + ("dwMaximumWindowSize", COORD), + ] + def __str__(self): + return '(%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d)' % ( + self.dwSize.Y, self.dwSize.X + , self.dwCursorPosition.Y, self.dwCursorPosition.X + , self.wAttributes + , self.srWindow.Top, self.srWindow.Left, self.srWindow.Bottom, self.srWindow.Right + , self.dwMaximumWindowSize.Y, self.dwMaximumWindowSize.X + ) + + _GetStdHandle = windll.kernel32.GetStdHandle + _GetStdHandle.argtypes = [ + wintypes.DWORD, + ] + _GetStdHandle.restype = wintypes.HANDLE + + _GetConsoleScreenBufferInfo = windll.kernel32.GetConsoleScreenBufferInfo + _GetConsoleScreenBufferInfo.argtypes = [ + wintypes.HANDLE, + POINTER(CONSOLE_SCREEN_BUFFER_INFO), + ] + _GetConsoleScreenBufferInfo.restype = wintypes.BOOL + + _SetConsoleTextAttribute = windll.kernel32.SetConsoleTextAttribute + _SetConsoleTextAttribute.argtypes = [ + wintypes.HANDLE, + wintypes.WORD, + ] + _SetConsoleTextAttribute.restype = wintypes.BOOL + + _SetConsoleCursorPosition = windll.kernel32.SetConsoleCursorPosition + _SetConsoleCursorPosition.argtypes = [ + wintypes.HANDLE, + COORD, + ] + _SetConsoleCursorPosition.restype = wintypes.BOOL + + _FillConsoleOutputCharacterA = windll.kernel32.FillConsoleOutputCharacterA + _FillConsoleOutputCharacterA.argtypes = [ + wintypes.HANDLE, + c_char, + wintypes.DWORD, + COORD, + POINTER(wintypes.DWORD), + ] + _FillConsoleOutputCharacterA.restype = wintypes.BOOL + + _FillConsoleOutputAttribute = windll.kernel32.FillConsoleOutputAttribute + _FillConsoleOutputAttribute.argtypes = [ + wintypes.HANDLE, + wintypes.WORD, + wintypes.DWORD, + COORD, + POINTER(wintypes.DWORD), + ] + _FillConsoleOutputAttribute.restype = wintypes.BOOL + + _SetConsoleTitleW = windll.kernel32.SetConsoleTitleW + _SetConsoleTitleW.argtypes = [ + wintypes.LPCWSTR + ] + _SetConsoleTitleW.restype = wintypes.BOOL + + _GetConsoleMode = windll.kernel32.GetConsoleMode + _GetConsoleMode.argtypes = [ + wintypes.HANDLE, + POINTER(wintypes.DWORD) + ] + _GetConsoleMode.restype = wintypes.BOOL + + _SetConsoleMode = windll.kernel32.SetConsoleMode + _SetConsoleMode.argtypes = [ + wintypes.HANDLE, + wintypes.DWORD + ] + _SetConsoleMode.restype = wintypes.BOOL + + def _winapi_test(handle): + csbi = CONSOLE_SCREEN_BUFFER_INFO() + success = _GetConsoleScreenBufferInfo( + handle, byref(csbi)) + return bool(success) + + def winapi_test(): + return any(_winapi_test(h) for h in + (_GetStdHandle(STDOUT), _GetStdHandle(STDERR))) + + def GetConsoleScreenBufferInfo(stream_id=STDOUT): + handle = _GetStdHandle(stream_id) + csbi = CONSOLE_SCREEN_BUFFER_INFO() + success = _GetConsoleScreenBufferInfo( + handle, byref(csbi)) + return csbi + + def SetConsoleTextAttribute(stream_id, attrs): + handle = _GetStdHandle(stream_id) + return _SetConsoleTextAttribute(handle, attrs) + + def SetConsoleCursorPosition(stream_id, position, adjust=True): + position = COORD(*position) + # If the position is out of range, do nothing. + if position.Y <= 0 or position.X <= 0: + return + # Adjust for Windows' SetConsoleCursorPosition: + # 1. being 0-based, while ANSI is 1-based. + # 2. expecting (x,y), while ANSI uses (y,x). + adjusted_position = COORD(position.Y - 1, position.X - 1) + if adjust: + # Adjust for viewport's scroll position + sr = GetConsoleScreenBufferInfo(STDOUT).srWindow + adjusted_position.Y += sr.Top + adjusted_position.X += sr.Left + # Resume normal processing + handle = _GetStdHandle(stream_id) + return _SetConsoleCursorPosition(handle, adjusted_position) + + def FillConsoleOutputCharacter(stream_id, char, length, start): + handle = _GetStdHandle(stream_id) + char = c_char(char.encode()) + length = wintypes.DWORD(length) + num_written = wintypes.DWORD(0) + # Note that this is hard-coded for ANSI (vs wide) bytes. + success = _FillConsoleOutputCharacterA( + handle, char, length, start, byref(num_written)) + return num_written.value + + def FillConsoleOutputAttribute(stream_id, attr, length, start): + ''' FillConsoleOutputAttribute( hConsole, csbi.wAttributes, dwConSize, coordScreen, &cCharsWritten )''' + handle = _GetStdHandle(stream_id) + attribute = wintypes.WORD(attr) + length = wintypes.DWORD(length) + num_written = wintypes.DWORD(0) + # Note that this is hard-coded for ANSI (vs wide) bytes. + return _FillConsoleOutputAttribute( + handle, attribute, length, start, byref(num_written)) + + def SetConsoleTitle(title): + return _SetConsoleTitleW(title) + + def GetConsoleMode(handle): + mode = wintypes.DWORD() + success = _GetConsoleMode(handle, byref(mode)) + if not success: + raise ctypes.WinError() + return mode.value + + def SetConsoleMode(handle, mode): + success = _SetConsoleMode(handle, mode) + if not success: + raise ctypes.WinError() diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/colorama/winterm.py b/.venv/lib/python3.11/site-packages/pip/_vendor/colorama/winterm.py new file mode 100644 index 0000000..aad867e --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/colorama/winterm.py @@ -0,0 +1,195 @@ +# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. +try: + from msvcrt import get_osfhandle +except ImportError: + def get_osfhandle(_): + raise OSError("This isn't windows!") + + +from . import win32 + +# from wincon.h +class WinColor(object): + BLACK = 0 + BLUE = 1 + GREEN = 2 + CYAN = 3 + RED = 4 + MAGENTA = 5 + YELLOW = 6 + GREY = 7 + +# from wincon.h +class WinStyle(object): + NORMAL = 0x00 # dim text, dim background + BRIGHT = 0x08 # bright text, dim background + BRIGHT_BACKGROUND = 0x80 # dim text, bright background + +class WinTerm(object): + + def __init__(self): + self._default = win32.GetConsoleScreenBufferInfo(win32.STDOUT).wAttributes + self.set_attrs(self._default) + self._default_fore = self._fore + self._default_back = self._back + self._default_style = self._style + # In order to emulate LIGHT_EX in windows, we borrow the BRIGHT style. + # So that LIGHT_EX colors and BRIGHT style do not clobber each other, + # we track them separately, since LIGHT_EX is overwritten by Fore/Back + # and BRIGHT is overwritten by Style codes. + self._light = 0 + + def get_attrs(self): + return self._fore + self._back * 16 + (self._style | self._light) + + def set_attrs(self, value): + self._fore = value & 7 + self._back = (value >> 4) & 7 + self._style = value & (WinStyle.BRIGHT | WinStyle.BRIGHT_BACKGROUND) + + def reset_all(self, on_stderr=None): + self.set_attrs(self._default) + self.set_console(attrs=self._default) + self._light = 0 + + def fore(self, fore=None, light=False, on_stderr=False): + if fore is None: + fore = self._default_fore + self._fore = fore + # Emulate LIGHT_EX with BRIGHT Style + if light: + self._light |= WinStyle.BRIGHT + else: + self._light &= ~WinStyle.BRIGHT + self.set_console(on_stderr=on_stderr) + + def back(self, back=None, light=False, on_stderr=False): + if back is None: + back = self._default_back + self._back = back + # Emulate LIGHT_EX with BRIGHT_BACKGROUND Style + if light: + self._light |= WinStyle.BRIGHT_BACKGROUND + else: + self._light &= ~WinStyle.BRIGHT_BACKGROUND + self.set_console(on_stderr=on_stderr) + + def style(self, style=None, on_stderr=False): + if style is None: + style = self._default_style + self._style = style + self.set_console(on_stderr=on_stderr) + + def set_console(self, attrs=None, on_stderr=False): + if attrs is None: + attrs = self.get_attrs() + handle = win32.STDOUT + if on_stderr: + handle = win32.STDERR + win32.SetConsoleTextAttribute(handle, attrs) + + def get_position(self, handle): + position = win32.GetConsoleScreenBufferInfo(handle).dwCursorPosition + # Because Windows coordinates are 0-based, + # and win32.SetConsoleCursorPosition expects 1-based. + position.X += 1 + position.Y += 1 + return position + + def set_cursor_position(self, position=None, on_stderr=False): + if position is None: + # I'm not currently tracking the position, so there is no default. + # position = self.get_position() + return + handle = win32.STDOUT + if on_stderr: + handle = win32.STDERR + win32.SetConsoleCursorPosition(handle, position) + + def cursor_adjust(self, x, y, on_stderr=False): + handle = win32.STDOUT + if on_stderr: + handle = win32.STDERR + position = self.get_position(handle) + adjusted_position = (position.Y + y, position.X + x) + win32.SetConsoleCursorPosition(handle, adjusted_position, adjust=False) + + def erase_screen(self, mode=0, on_stderr=False): + # 0 should clear from the cursor to the end of the screen. + # 1 should clear from the cursor to the beginning of the screen. + # 2 should clear the entire screen, and move cursor to (1,1) + handle = win32.STDOUT + if on_stderr: + handle = win32.STDERR + csbi = win32.GetConsoleScreenBufferInfo(handle) + # get the number of character cells in the current buffer + cells_in_screen = csbi.dwSize.X * csbi.dwSize.Y + # get number of character cells before current cursor position + cells_before_cursor = csbi.dwSize.X * csbi.dwCursorPosition.Y + csbi.dwCursorPosition.X + if mode == 0: + from_coord = csbi.dwCursorPosition + cells_to_erase = cells_in_screen - cells_before_cursor + elif mode == 1: + from_coord = win32.COORD(0, 0) + cells_to_erase = cells_before_cursor + elif mode == 2: + from_coord = win32.COORD(0, 0) + cells_to_erase = cells_in_screen + else: + # invalid mode + return + # fill the entire screen with blanks + win32.FillConsoleOutputCharacter(handle, ' ', cells_to_erase, from_coord) + # now set the buffer's attributes accordingly + win32.FillConsoleOutputAttribute(handle, self.get_attrs(), cells_to_erase, from_coord) + if mode == 2: + # put the cursor where needed + win32.SetConsoleCursorPosition(handle, (1, 1)) + + def erase_line(self, mode=0, on_stderr=False): + # 0 should clear from the cursor to the end of the line. + # 1 should clear from the cursor to the beginning of the line. + # 2 should clear the entire line. + handle = win32.STDOUT + if on_stderr: + handle = win32.STDERR + csbi = win32.GetConsoleScreenBufferInfo(handle) + if mode == 0: + from_coord = csbi.dwCursorPosition + cells_to_erase = csbi.dwSize.X - csbi.dwCursorPosition.X + elif mode == 1: + from_coord = win32.COORD(0, csbi.dwCursorPosition.Y) + cells_to_erase = csbi.dwCursorPosition.X + elif mode == 2: + from_coord = win32.COORD(0, csbi.dwCursorPosition.Y) + cells_to_erase = csbi.dwSize.X + else: + # invalid mode + return + # fill the entire screen with blanks + win32.FillConsoleOutputCharacter(handle, ' ', cells_to_erase, from_coord) + # now set the buffer's attributes accordingly + win32.FillConsoleOutputAttribute(handle, self.get_attrs(), cells_to_erase, from_coord) + + def set_title(self, title): + win32.SetConsoleTitle(title) + + +def enable_vt_processing(fd): + if win32.windll is None or not win32.winapi_test(): + return False + + try: + handle = get_osfhandle(fd) + mode = win32.GetConsoleMode(handle) + win32.SetConsoleMode( + handle, + mode | win32.ENABLE_VIRTUAL_TERMINAL_PROCESSING, + ) + + mode = win32.GetConsoleMode(handle) + if mode & win32.ENABLE_VIRTUAL_TERMINAL_PROCESSING: + return True + # Can get TypeError in testsuite where 'fd' is a Mock() + except (OSError, TypeError): + return False diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/distlib/__init__.py b/.venv/lib/python3.11/site-packages/pip/_vendor/distlib/__init__.py new file mode 100644 index 0000000..e999438 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/distlib/__init__.py @@ -0,0 +1,33 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2012-2023 Vinay Sajip. +# Licensed to the Python Software Foundation under a contributor agreement. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +import logging + +__version__ = '0.3.8' + + +class DistlibException(Exception): + pass + + +try: + from logging import NullHandler +except ImportError: # pragma: no cover + + class NullHandler(logging.Handler): + + def handle(self, record): + pass + + def emit(self, record): + pass + + def createLock(self): + self.lock = None + + +logger = logging.getLogger(__name__) +logger.addHandler(NullHandler()) diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..85930b6a9a2ddbc21ffb51f4e2af76f0df56f51d GIT binary patch literal 1512 zcmah|&1=+95TCcnW;eV2R%_K(R@%!_y7A-Eg9t)J1z7|U>0UxiUbktp$@V3!Zt<`O zksdr$5cQzosZ#s{{5MnzE;)$c$=k~IP&_%4Y__#6_>%lGZ@y>Vybt~TIl%Q6t}U*l z0DjUYSxT4a>>%+PEU=gZ6|hnjmV%pLNl(F&d1^}n_=sP;Dw0Z?X$NX@MP}fhp9G$s z0x`-UvQp40!(l1$4u|aJd2r=N@K~CMM;He+Gl_4W-C`IEziup*tM8-y6Hf9+J9!H? z9}@=rYss*ddr-{&B6)c|eX(?w1{e^_pj`Iz;#B`pT-|#FB03P>?^*wEI36zUCT%;n=njG-}?0 z&27GBXm=atq9JN`g}21bz}Id)xU4zc5UyTt1dAU2Vu@B-$YnLx?ZX`gpA2V(1(OSh|ugkEjinq6KbMSWMRI% z>NvLy*K)WxzF7s-KG>|MP?4+@qD<3LNn0{@JuUL6X5zT@7Im9Os6$ghqjnFrSy^Op zx19=QpF0boBDm=Z%O|@+LD0E}%3_qw`pALIN-=K~-Gnb1@457p) z58d)|rr<`v@1S&j^kCq9{y3TRBVd_h;~R6&Z*SleD%F+y;PV2ptJ z8=o+BGdh+CC}00N!u~Y0Wu^|dp$AHjig>u4An9RaG7Bp)E1S+5^A_n*;Rx7&z6;w-v@ztl|i4HhvR#cVCq4XA>=X^7D~*uay~T zL!MzHdLXN5+#ZF^>Pzo8@pq3Aw$o_8x3||Ghupc1(>vVsU3ByskA`(2E$)r jcyoGl`o+x4nJ-Y-fx_qH_31jlQYPTt*sS!4%}Rd(lLb%f literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..73089dc13d9fd1c7de5108aae02e2dfccd82924f GIT binary patch literal 52449 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8043cccb76e725293a128b27698d7670a12223b7 GIT binary patch literal 72230 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..dd384bab6eeb181940eb55e1ce3cf14b924d1708 GIT binary patch literal 26711 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%0A|kc_}yW$0Em0!!&y!hT8$-cKaRkHLiy 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..749ce1d9ee1f2c3cdc5b4b2b477cc3d58d6694f8 GIT binary patch literal 8595 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8cc6bc51b7e6c37712378c8ab78046aa4781fdcb GIT binary patch literal 47476 zcmdtLd2kz7nkR_+AV2~n0Nw|96FfzVx~RjZcu3SixperT4~k+!GA&+}040kCt60_U zDO#ghLvB?IcFS#)LoU;8R}{OWW=h>%J?rXYqhohsC&A8YVX(msPV9JMdjHs9jk|W$ z+UVK+eJ_!TOn|gi)w8=1n@oPl%=hwL`QG<^@B6;@y^r(r^K>}w>5jab|9d*!|3WwN zVNPFs`L{-$?yip0jp;Z&XPDN{7{&~Gx;9Q5$Bg(jO`B%SW9IZT%b10QS;wsG*EVM3 z%$#M~K9e_=H{%#{AfB1CPCIAv$MR}~ep?<7}^N#sB-&ifmXM3$q&XX(7Dqnq8 zcu7`x16MlM$d!#XaphypT*X)mS2-5os>WKm>an(9D_66Kq{rGh|5yiCJJuO&4|cLA zT}XG=4-xjMoV9MOJJ=oXQEpWi!A5PadfkpOo1Qpk%M-_Jed3tyPaLx=J7!ip*J;DY zc60S_>c)Dx2EaXB_%VgK^ofrJ;?1I8{&G$ zhPgds$5_0*h_^2%-f_-&P8T?^xHvL1KOLM2&W0z#Q**Qaxy%0Wt3m(iV0eO?2v7Jg z&+-0eZiHV&(EP;Y)rl*?kpG#XXF{EMdFK}9=jZrv$UiYX?VnM-Ff)ONE!~~F+Wp;~ z-2{3F?C$F6?DkL0a{ivqoCh-17S04iA>=lG znV*{(zdSV^{5u-p0Yl0?I28&{PhA>%eKI&tWllN9$FBwX5H82Z1ICo?T$rDly)tqp zfYPCYy8=vv*$+6jEVmp4J@BT1(*sW$(B8(B zS8mzUQ=t$_ImGjG{9<*#pAUX>VTuoOnUlDV>p}<((>04PIXyKs5xy}qcX=u}6}&dl z^~{aQS10(HXZX3-f|KD;*YW3ix~78@{OtHV``qL6QbfeM+xT>|e7o%HX>&%LgatuFOs?2DxXY4ldQp ze_{6O?A-O)Of}N|-#@!Bb1BI0Q1U7&Ie~`lO5Q4%(x+5%iuh}mT;>XGt(1cV9S}5_1wbD%mjZUBiH!P!tSP{=n?OEeRprr-krkBicXH^_C!dGf6k+D4$A zKnH2mlD}SU@rmUC-~g}f#U57$ahotSC%N1cX|Q{82>1YJ98~H04r}Mm&XN4`8o*q zKX#;%78U++zFcA{EMG3Rbn8-XB_j5?PjSv!D6kx01XJP4=s&Dqzd zeh|>}gY;uaSqE=`?o3TScBcDl$1uqBVjUx#FNInU9|mZtYkBdNx|iDmb&+OVHRGx| zFe%eXB&4Hxh7tc?TJZF)E`piGRRaa^)-e5~k8>1aP(oM?DTsv_l@OEshEB&qOxJXL zQ&{yhY|X^r%x~(#w#!j8iFr;Jc4h7& zy6pD?_EADdyLdv>bk!3u(9iD2MzBzt)}xlAq4*_@`;%Zms0CkkE$JhAb?aTz|JV`H zKdZZ|*XwS%In?44J+WDi@!h?9#)n6SP7R*JCpC2LO6f0$sB!&%p2*!}`=Kkr+2HH* z{E@{*na%29RC5~Lt@F_I+$31GBb`dLZ{w{HmF7R;Z&@eQoyECY_~09VbyYb04V>|A z={F5oIK$*ryIqTIGNuKaxQj@|^{Mcy96teaN4(?gT-YCyIL{zQZ}bFgs76n3ce)x> zr|#bL4L^#4q|6v5(?JC6*}GScmG>->B1WMQu(x-&{07lIw2U=PQbW{NrM5^FXtCUe-j-jj=JO?+UZL6P+2ly8f^SfzhsOU26a*W%h#7o5mQ(- zP_OCvUd|LTVnFVS7~`stOkSKxI~er3uq6{3R}JILQ_dVQ{Sc{rs-&pbA!jDqkYcf% zEnkzfVD zR|!dd)i-zk2Bj$2wiNEH`n$fS{;uC3XLoMSQT?qOVNWLSh*6s^SC}RP=m}gA;Z^AX zA^57diqdbjKEW99fQ)2~fv```N2lYw+7f+N&$00^=Qijf`iLP+v$FJ|O=ro>vHq*X zR0MCjtQ?mt(pOhvmdh#T#I$nk%P28vVwgU%a<_$vzfT_#v$htRu&nV*#99-cMV@oQ zvqm9>C=`1gx(w~j#xt8h&5Ccv4z}Wf4actianB%_@kvZuA&I#Z42At^TIA<~^O$8rY~Y7HhCzq{3 zA9AH)Q`h>k58!)1?_m|swW7PM2fDXK^w~&UTQL;IFsh*$3cKM)vftM$42O*vj<*cg zbZHjDPAmq08j;xaIbh_^;5uc&yy$9>PnjTP356&zzkiwW8T>bJv$$uRsw-3340AF5 z>O^Q;W+*|UJcPC=~0^HDB3R+?T=rM?v0&~9>HbS$w(ncym4aoM!>*d#G5Ir zlzNEqJ{QyU-l58OvF_{3c9RN1Q?^ITx(!#6I@>iX?h-}&ML^en(Y0T&?aw92MC#aA zqeSlNt`IL*@Djf3l77h$Ap#3Bec1?Z&Kc3)Hr%4_0!IA8=*iJD&y9|1+S*8xEHmce z3&C_tr#ZU3L&UjF&dtmpS*+cmQkf|Kg6c$5Nw9K`=cM!YiReJgw>I>7-RD!nH!cYM z&kDVCt_(=OfKnS<_~Uq!v9bIJU7a9slE66v6uRg;8=RTD2FVvVUOxx%0HigIA@-6w ztXmaEX{p0{RAH2bI&8NpjOE;>i9j;ROr}(-%*$XdRbj+0@ifL317{Y(Bq^O^Q~Qv= z!@rO%kO>9DeW=BvH%C;1kj3^F<`(=kXdwro4*}WhrRg9^OS{1AlbjU)J?YUMC`_3l zvziI<=aG5J!n5W|S*GW%T)|i}bHPgsSNIE5I^uTu=Loz&QH|5VSthT7oRE0p)BR^p zLU2iU;QBLn#1?1nh!>XcjF_eKbx124^Ld#8|<9=rEAPvTnY=k?-PsVokZ`t%&Nji>w&5&#`_#=-LfNjh`h;_@=-ewf_x}I!byrbz zX5CdUxayPc+K29zb$83EFX8SI-CcsaYr|c9*ZGc9sOnvtOt||*cc0+y`zJQTKm5w6 zvpEDuWx`q|TC3uP>()BKT9`YI?;YoY(Kd? zoXju!jlwp+;=K)P-pbzZyz%B6-#-^CzWw5z7ZXpN2VagZtV^xSpeD=QzIpPrZug7Pw+z(mRmjmRPI z5C;)HBT)P@G7<0}BGDBPfzIGEWI(c`dwKACC%${)JEz_}_0UwhZYqs=Vv`9|ooK3y z4{jMXv2&ZkghW|Wl;a}Z6t)b#WtFglkzpzT0x~0Gnh1x1dL@iVDFB;Ee9SU#SgHR8 z7olnZ5YB?5()sQiv2gst%0iS=9!Z4KD2X2r(90x^gp`d$k@#t$9~YDSN^(OI!l`6( z$}3U|Ol(O!pCpCtr>g-1M+poAAWaI#4+&`kCP_}rB%Q4khmpsE7hmb`7@O!=+|_ZQ z^X0bTNvflKko=6b+A1y}Z!+*F)Uu`>x(K9U+AgxBd!o1WI|vF4oKc&e_6{9d_j}-S zBl_RdzfZbO)8eaVAur`6#+lSq{M4ldru3v9$iz%CqYdpQk*AT%r2k~vM-~Obs4%|} zY=<(5B?R>-B%T!10ZISFJm@)T06O_M&@hkn{>S=GC?@QXES(xU*FQXzGKLl|@!vuq z`Vq;=_%VQ#Q=N&1S4;WENfk*sj6?V(lUbe^&Hse|5OD+;6*ip>RL*RETK_AX&RzEQ z(#@sVxp+gu)hxQ2S44+QS&wV`p;rQCQ2la`@BVyx`MA1`X(NindWN~?v zi*m7Jv15XxK`=E)Lj{Q|2QfZ$eEGKkTGggqXV-CcoC&IF6A4tuVD15E;jDmG&IV}X z?0|MI4=|5RGsYa86VS=Q6k{x(D*!Cu>Nz*kaB(oR7;|$)fQ6g~u!!>ldJyhIxEH_0 z`1NrOTnT=Qxl)9d1WPfgDZ_mk!prenj^7IWR&bRFujHx#tGH^wYOV&bhVujZxmv(l zrk-s~6`TrQnV7sGiy$ZFfbPy?o;A%LXY^QL{wB~1pfC*u)15_8hs%OP;%C(wa1v*d z1XI?8w@fUA=Q=nx)eCZgPCqe)lM}P7>rKsu!V|M$=xo6cqX3hnypj6o+-xwdrVj<7 zv%IoE+IuM6q1>EBSfGz3(BW?dTls2hJA0ijiLai>RDrs#9Fwl+F1^<3zcO_VX|itJ zF+Ft^8C@dvu$1wPtmB^uk)D(^1abm16Z7+!mbQ|-cEV5STm8BmOH!hzBgu1G>7k$c zIEy!$vU0)86ARPfN#eNW!-xy||MDz836KtC77^nWV_Xi`{Bl_$b*L0rIOg$`M*83k z+Uf3h^+XHD<(|%_U*k%Aj>3pwup?r^ol?Gt{yQa*np)&g^>0M4%?0L6q(m^VH&m*K z%sY{+a;4ueey0t2*fQ}lSK0C=$Uk*);<9rNEj5=?rt$=gqkl&gf80!6rJeNve0$bm z(;t`V$Ahm=PA`PeO9FW*^W@yZEHqA}C6WZ`R^Up~r>6?|wDyo8&k)#qNpumMot%Pl z(ULZ&Fp*Y1WhclYrYsBdFgppRyqG18%l%D8djWIG6bepXPMN5TDQmjd(%hZ(KK^%6 zfe?KZLf+{)JnSZ>W~ajAo%S4Xmf0z;HZD-2&_8-s|^W9 zm+0tPt6g{O796{QNQKIwMA5KVG%PrWlO<&r(bYV z{D;oQb!TJ3*(^Gn1^L`E>k4X-UM_c|3>jhyv=X3*?lsg}I<(zW9m45JDay1(hEb;b z1k*-SGyZn~KGE}}^H3>B`1f$XSfAC-+kHwH`RPI=*n^;?ZT|!B&ngpb!(!VoHK*Wf zPS{!mc1o2}Mjc+DF~;x!6^-yf9KX3o#K4HZ5zz2{j!q%n;};EmpwW2{1(}&y2$&(N z5&u2`MxU?XDn!|5I+Syq#g%&cVntSE)q${Fl;l!S3)x(6=ikha57OUiBmD`*yArl; z(bg@7bIH1=qS&w zNG1#xm%0#{!k`{5&)cuxd_87*>szlDGgxN2DE#u7s6S(Tnk>s_3y`!qp(U8U$OK%~7|wQvAr*6kj`P zmJD`$oy?eu7!I>>Q?FBNo*Q($8wxFjY(O}iMI64Xzpi`T_=4`bo(WIEJ?4*t)Phz@ zTp$~GDY7MD2v^-osXT^z8MCNmBGFh}kc{iL|ISKS6*U&gVbNH=vWLFrbzk$UDdFo7 zeH|-#TLz=OHtF`>amL03cZ+mB+HjR%GHS2QfQ_Q^Snuu5JDtE;TSf#udh{qnRO_y- zR`-MQgGP;10(~CE%004MPWztRnGCGK_#fka{u2OA|A+A$ zu`#eh31I-_jAT_{1GS7K1VszPO!u6Ey8%@$Jb>GW?z(k%UA#BpZV@3m8T{;&;NDL) z@5>#~O85GG6o#;udI|)+s3D>UZ=m14$}p$S8Z+BZjkGj=N&ofQBXCpt?9m90fX!og z8VMl1j`99er(`8L&0+W@0D64>{MjC6Lcr66FsGea>n~Pj;}>>xMimt|ouC{eoTf)^Lx;ikmah1RQ?VI1mwEBF))hfDL z1zT%wv(pGyBc-fn583e{R9JvM#1$|_96km#Abb$7LxABJKQ(ghyksnqDi|L+HFSDt z^!z!g>N&lu0E3RPvExhzzgU&s0Gi-VYJuA97Kk_es8guhk2C4=!-z1?T=RJoOJf&FdbZ!_{EI z(<^#<1!r&Wmr$_TQ6#<1@U}%TxXTbG9Z>($8|fn(qkT6`0}T965hGOqV^$`yka+E! zVU{N6B$(QXoJ(N`sP2tOGJCMaOn3SOXVpeQW$b*SpiV5P6Kr*?lEWIDP4tV6CW!@8 zYZl3RD^owR*izl;wYKUs>G<_!GQ^0HTn01N(8OhCOZsFonP!w)lBVgI{3IZ;MJbz{ zl$JJ-+~xAZG&8Nvp$+Q5L2Axw)|@1KX^fv=ZMy%`TJHnhNn-OBoV>f^ul5S}LXx;z-W$nNd3oB-U|zw45smh#2B3 zl!46BhnD7JUT-?5tA~`~$zsb)XTZGJdKQy$CNq*TwqMdA`)MVHUy==BElBv)&Xk_# z>yiH_`jib5`#Ca97zM7k&}xp!P|7q1YXv@r7!Vaq&%vNsV(O(K$L8>c%kvsumA{MF zi=He5PV#|s^l{E2bXoUBzUS79vC{bNwGtu!KqCKun15i!K>TTmJgM$UIIBfxwcxDY zbQZjQ{O0kuPTV@N!u}qu992Ic?$m)~-}UvIbU!y0_m^uKROQRwLIJd2HXC7+ie8KU zGT)vv5VBNH1_pI6-+-+gtmR;-rN3p37}W$9WP1Q#&xDt9j%;ZU?CgvhYd0Ma>!|NI zA(4e0T(*e^V(%oWGUi$~-8x5dwhR(qGDpncsf?I8bK0t__$yK~Ygr1Io-U$J+seGO z{ddVimN5~_tQ920lF6O!s2$njCF^4Q6ZKU|gxR^Mupk|2(Ib;+Xzg35Y##i7Nj)uX zfYAUB8sA<%cI3{pWRBViB8)W}$>{d6z8%>2StOP+hvqRU`$STM@!6~m|0?1vwr?{M zn50Z)2BTPWyh=laBn8koRh^K|2aWFs<3k^x{P5(OG11T~HuNT{_lVVdln9J2F%Fk$ zeqaqxeNLJ-G5SE5HDx7=hjm_zH9L3y{Do&ufo&tJVg54;cTo8J#0^?g5U{eTJJ}16 zR5@jw30>iTi(*+MOv37#GF_VEZiJ}8iKOF@^k;-F7E5=k_KQ@-{{vBg1qy27mPA3b zSkMf$ep{!|)i1Uk%?OZwWziL5TAFWfV_;jI5*2GKd5-G z0=oaQHnFTNYDs!Ze^J>kc<5X!7P<$LtT{j5i&jfioe--|M29i)yK8&L7W1JH?q<>5 zEU*&_=(5V#(7n8<8L0@KhE?BMU_Ee92pmj$OYa_k=XmTwd??{<6}_#3xAhTJH*OEj zU=l9B=z<(E+0-gj55%|_w`N*DRB{M3ZUSppP^N>_$h;ZBHL3Q zBMB{bpgh1!*`pUWyXu^gpLA%)u0ngBFt&>JG(E=_XOX@`AwH5onRFM_ozisYI-@)M zzeWBaID7)X{5n7?PnOM12YFJ!$`U=10-d3&Q}g3#Qyu;nc%&8W@gL#QqBpDWu@tXU zzmt@0UqgM)+&mLI8h0j~9io%8^-oNHiu=vFpPP&OD~uXts|{tMR{!!5im4# zW^79C(sD6s4Q`dXskTx z>o6)vOP|tIumo!ZbaCA09@%^lXk94;a7n}jYiN3HZfchQpKzm|U`gbyW4p1oBYpcF z8iaL72=uM&h;*(7WAz`jyw?)n^KRF@F6A-9lcRw=rjcN4G$h#+vFALE75;xEK(vkj z*95*rU;`jvk*F7>sZ1vd?I-^qDe$)l{Cfh7R9kSx$X1$eeS!PMvK{O5Z7Tag04SMk z&WEVdUO4-PzN6IzD_Kb>i+Rv@^Va5Bkc?Yg@*-ntrGJNMJ)|LFM#mlJ!2 z#63d^_ps<57Toe1Ck0nCP7tiv>2*&)@C1@26=F&IT7gh<1ZT3g`Qz#jt3i;a6SV_k z?Lf>Dvux%*OqTm&rBTbK%lnJc7Qsbll6|PPYxpvWvLj;I5d@djPz_K&0FX(Npep6O zkZ>Oq-3JABLWqiJjdEM$PNC@|5cB?}4J}Jn&a!1QP?|oZpB>dQZrS2fzI7*Nj=IRF z_?He0UGI_!hVo#LAu2Ux7*Z`-z<~A5dLw$oFJx9krX_Rwtz1^P2&l9P?67JoFXsny zd0cAp_k4YN#1u2e*fjCmXpVEiaE6Mir*K4GNzXs)hf08-Aj8v(b9l&KWZK@V*I`pY z>-(kN?e`xIzB+Mj3f2YC?K7Kzi=^N0lr*&$`$!rizYjBQ|AhbIMKbTcc#*Pyb&hLS zQbHy-m=<|@4pT!c#|9(L^1OJF^tvzNwU_Z4*$}|4^vW!vT$GYd2X!h*4NZq&hm#IX zzoV)U>@zN2Y(aYM((E-rQPQNtp%YM+haTW;;0rQAi zKP@W1A*D?9QA)+}bMvTJrkEPphk{mL$JhP7o``vt_`f5f=R4jqY%l)D^KJV|_WHqW zNp42TPioJ!UWv&R8SlZ6?yTKOgTNf#h7|ZN^Sk|^)*0ws3DBC5%ytXmn-Y>fMLu(?PTSlF`PI?be znxI@nlA}Xl247*p{HbwQ(Zuu4c z?YujAQT%N>3aLO9$*emmI7#SV+SxSm`B0Sha9% zd&8ZuSI%FjdyQxwJGAxVzl4B9MV*$6;S8xFy-@!4?}3rkhb!eUR)2_nzVi)Q$ocYV zFs-JzD-)WzikNq3_pGH@oHbJnZHYrwnwqOxA(IO&KZ}^r^UyOt#lLib){f4;fpQZ= zm_G2`_MqImQC<~WE{8(fo@H3|M7i5ZM3|x~Hlt~+T_ag5ejz@bA&Q;M zCV5gBTu6pK4x2aZ#YKAFQ2eBp<(M^;fILxg$RLNzbLSx{JA-@vOMu+jLsJ$CM=3MJ zD6@j;PYI{{kpiX-rH7?6{>@n72PN;7yjym!OnE3#ntw+bHUo@4)*qDC`!qB+hMN2Q z1c^DJCFqh;rG-f+SU_O0GdI>mI-YFnsE#j*+e#%(49!bYc~kHRL}s6p!IX)ldQ48p z+o?b)0)I^4Dn)fpg@$H{b>oKTU{X&@fgpTOS)c1aI|_d%JRvh?4wot<)#~8LK>zt6 zdFi_wY7bU^EU5##LpJ%~`DQ5rx9k<=oE*7Si4283ibQ@pplyYx36~sKj+#j~U0*24 zFN}`B1&b^z{BtVS?*OEUcE-pm<(!xN4Ke!_R&?pB6XKOPQHgkyxN)&4_sjo;zH%KH zBuub!l{cIDh2MWg$gjs453eq+Hy;q14{W&0V|za8{gE%;k#O%4-MheewDf)9DvLFK zRGDyfimpy9!N>=-rCzf-^y8C%aPomM(SAs5KZFN~(!*lu;ix%k-YhMrpJV~?J21v8 zsNE>4j9vKX{Ezm;PbZ3c#G)P~?ZWc@oTSUDV^$@JFC2vr9o6fO>i4hT`?h3xNRz-L z$qI-%?;Tn>^@Xn{Zo2PC_}WEZJIw_>zbHvhv{o+&9Y>PHLzoM9GZ5|Htf+lh(X(FB zv)297eSfs?!R|ji^piuM>wof8qGCX-7(nHGyEni}6ueiEtUQ{mY+0>cJ^xFyp=|fx z>j1zsl!GGJC|5Jx`Pj z*d?d?`$wdOTxf>q(mD*fTn)+6%7>-9)=PJ-`4Xl3#L|8EI8}8d6po%x*vKCP&Rp(? zIvL}BiqL_6J?;k>R6&6dNcpjpTA@)o-GYuMd`xNQ967uc@G%+xsQC-vc9%K_wedpgn`}oD$Y1p()$I&=XkPRk z+l~Z|GWx*N#EuEs0!|5?6N-b!w$mf$&Ji~LQwles(h>$IF;mI{n`Nx!=9xt55k*k& zyaqYa`ddk1V&q{tZ3Nx(c# zCc9>J7?!9l!Ad%6PZoJs29hO}z)bnw3`C8v@A^eem*Al@=`Fc?;++$*(CssK&P4Ht z5$-FcM{#4k|Gs6_xZ3}jMX2dYcz223T>?9kp5m1gD%7sddP9qA_4zHx{q7s@yb<4> zC}|c;NM8fQaVruV6fs4$N%Kt2d|eT}9|2bQo?~ac@I$nJMp~oC!U2ph;}Vp?7-JO} zYf!lYH~1j!!Nm5$R> zSnbnEvNU3RvEl~LnJEwBzrl53tpaw-Y5#i6u{g`6;YTR`_FkVtXL)DXiV}ltd*9!qLUT=lD7J z^k70-=5e)o(TMp5sL6X&B@%8+`ierjRd{>;AL&*{p?U)F%BKaD@4)r&_*=zg924jd9bGaT?BgJ#xn zIcih(^dFII=sp06(=0lBewN|`&#G$ThG^-Eb<^97mb5oAurdhL9P5>p^(A);-YJNM z6Yd7l-2lt$M`<}&d-O`Y=$)D9OtPqZZSbcfe>C#oN}_jI>>b7uot1%&qNaE#QPd_D z(R%((FAM>mGy@dO=@#5|qN6^(u>FJ0;Yg-e~AeHnfTj1Nit2L;5cocC*`qbbENqYN`i&Y_oquFF{x@ ztqey`Y~|_7{WJxk=L9jwD6Ra!_MR>7gJFJYhgjO7*cptijy*6ZI*y1PM^MV7xAN|p zcR)u!Z=}D!_WiX_XgHJbJ|lXc5xmcUt7oa^>D(nTo8a;bw)6rb^l;@MMwYR~{{a_I zPX3-$_q=470-0n&rhXDZk!BeLLn#4Rz+Sb;P_1|&J0!RRWQ;ZMgjuah>_y_DLn!gB zcFqWGtR^g51gOM4O3ZY?G(jUNy-ql7dcbrVOy!Z$i44;+H)dl=i!$N=_!4s+i+OJt zN(<;>;oO7a`Gr{y_<3@U4|cHS?~_xcQj!*@zc zc~bg?Tp3Rw3rmM#WeDX{#_gbD{d9U=IT{A(ae#_R zh#45MAQvNkQCJ@zgt3s=a41oDSS&oe0(ENPifNM&fyI6th=AbAiKGWwRCE4ueY|hY z`;$tc{xHssVrYBC;tt}ii(?%ySQk9aNq<9pO!V)H4#qsUN1`K}taaA72YupRsEv;$ z{KrK9F)8#BWG5>QX@abbLljoQ1kd7zFoD|6QE|)ZHx;_usDk~S$!!x!qfC=$d3*)jMrlS%`zZpLp~P$05F^z8;l-~9tJ*+U5Ggz zC2h`?aV&_#DcY*yl?hvibeCYyl%;aOF3LeX6+^GXxX_wzJt+#+a!e4P{s2i~JpBWH zB(sMPaiw0Oc@g(H2DYTHJxR4sFUf>l$=ehU3++e5=BEKAPNQs+?D zgE~q*{=a-0Kz0ch$93-ULp;jNl+al$BpyyX4YMlxNh~eBh?uAdeQIf#Q7-bb4_ed< zZSMAqdRf3I)usopNG`!J)x3M)oddTI-Z=%9cd9c8w#IDZq+2! zEwz+JYb%-9WFt_O_9a@t5Ue*WVZK78Q^FW!FGm8=C%$0EHzG@)Hnh>!?81dF6x0tj@@^r1h-## z`W3A|MXjH0yvXvrplSSc`bcth@W&&6F!IUC&tU)aRbJ_=NSSs2qqrbPv0&10B^?>* zCoQ#Bvv28pdXpWvH@!;bZ*~tQW9j9VWTA7$4_p5M(@~WO|rnWJQ}G zzZAgZLXYf(05rLl&V9RU%l&=1qz+VygYXbj0 zfqz5bE`b<1fLrJr z6o6Yy-xOdmn`^Y72L0csbZCwVW_4BJ>_N?RA|BeR?15O&+B!yfh}Ey z8P*?K(AP>0q6N?EeP;OY(SlBk8R{nm6zk1LQCtU=FUH@lcG3#iyFHdh!r-#^%YzJC%il|wd}`0^EWFRf1?Y-MB0 zi2kxYt&CZ+!i|VcXoekH5&oDhE3WA);@X3GV~(u&Sw3UobI1aZL)Ksc2}tp*$~8YKnH`c?8UX6AeVp73~xjQV_xR@Xg~ZF!5a~BE#``} z4B1!-=Yn4%1AG#>g5~(F;5>BCc?kx~=#TR$*A>AEu9$_FaHU+?z5KDt7t3C(fHx!Z zTy%hWGpc6ZjB0{@@@J&wE5>T^6#k8}p4J8HUaObemOLM2hjV@Kgrpy9z}xVJloi^D zr*%0`n}SWMG_j3R)>}*98C#a#Ej zys1WUr*zmmjplU=X{-Ow5x>qn4DjbYxXM(wTzI;Hz-$ge9qL z(hqjJLlWjGnUP*W+@9cQFRel(F zs$sG6l^50FS)umMH@e$9m`{x{L`+#j z(pDvl-z4`-viCDsd9wXS;Afw0WCFLt%04E3IIY5tCF!4Wwqc1M^<`U|_~F=(?SY~a zSTM@Yb{z@9#!}jKWE=v8#p`UJh>)LOn3bn#XgzZOEBg-eUs{-&R_1VcJ$Nk>mKJqm zk0f}d$~>OCByDBFjbFMU?-LLj#|}nQ5V5jpAhy9^7T-!M@I4@(a5^RJWH(yQzVov=3h({_8bM1^rDt1SCvV-}cGAVb)@4U#?^O)r) z>R-sYa((1uey;X!MJqsNv8KgGXvsLKa+i=wQN!|7Lx9rU^v z*o{yi1>a`-o}qh9)uXg!l1zuuD;ne+X!9r@>loC%BHWw_ z%_)KDv#gai|MdP6u#NI>BTGIC02#sW(=`p!l!3qWiGdC8l%2LM;U~g#(i&w%dtZ(g z@bb6m`W*tj#5?aHz)~obG)3@12IDBns~Am*89SY_0jW=se=@e%jB)TOx6B#I)=(+? zv7ynSv;F7KoaLEbpL$iwf)&wN6^+#};I7CO>I4_!pQn^*z@(Q<^7rTgE2mN?o?IC5 z&mbUott3rE77I_O-SR08&ECe?43z;u?f>gKG^-$687w)$PhQ%O*`}ii&RDh#X6W{5 ztwz(jyD5Hs4a*+)iSB)Zdtb7uA!?Eglpk$)$ZRMd!b%xz)O4&}`TVj_b2?FTTC6#Z zs7|s3&wnTXw(E{7n*M{Ca=ssnv9Tc1Tgvo5VDR&sHhg8VhB%xMHHto(Tog8}7A7ky zKiK=;-go!k+aHCGS3F|@4E&O!z}!gvEEAf!qMWvg1@k0ma`gF4$&%{3k#{1uzjfzZ zQ4^F=D-o!K0v%$@;bd*&{pu~Vv6`IrRu{=N|5cu@v=07S?1_>dv4kc_g}Y$4^})gS z4#ux1D!RmqE)>?_ENs|70_CfNiP~OL&in-Xns1 zKH4b3guzY~lEJSEbPYX!*7AApA9wz&GkM@CQX=*1QFTDn9T3T$+QfR()9;*?4Jw#X zg$GH{iuZl!IX^d5_1EiuUf+AP!uaRqdV)Q^0gv%7Jf?vX>tB@X0snG;?@*`iuR8nn z!@G_DT@OLfPla^C@=#(GQZ|_fVANFdMcYrkd4K>3;xGbt<7X7VP3$*6SbY+pnhRi)lY3`CGs-F$3--s(%UsX8h%Cs{W z_TKYfk**b{$Jmg7uR_`iFS0}0`bZWnV5tYxi?p&zZHvG> zMX)sqB92%I2r8X%PiTq5nD7h;hfyV9yt z8GEp3j|hbU0!G#3OOaMBk;7?h+bS^~Ou9#$2bQTSY7TOq zLPe&nQmC{k!}QgZd1iukO~K9&Avm*@9L7Qb=>wL{QgIqRt~=fkzsW#bkFhD$jVVD!^n(o zOIMYT6{NmsU$U_^{&MVm?EC}s1M?qSe`bvi-yYtqs=fEp!>W$;s*cr5iK=d~s+&Fb zH^%d0rkH7M&)S|p-1igM>q2u0;#mXPm)t-O~UisVMY~YZo@{LT_`-)5 zgtkKuf{DgKv2idq92-tn`QxY8tGb1%?xer=WAle*p=oczzfbhQs_*z6?3)zhOR`QwDZ&E?m=sk*ze+@Tm zGOLpDLzR0RgIA#w+Y%$=JRxdyDCvlpfjGKgAB=vMd*rM|!PG8PuC`f(mVsQjLjT3| z24*cngasq{=S%-HjY9Kc4O^Xo<(cWtWmN`MWOCQMnAhxw*Z_tR;Tupp6rOuw^nCyG z%-AHs3O5v(1k4huVD6ByG9sm)$zjm3 zL_(f1(8WS$VI00^vAeeO@phM>jAjeInf7&w9`%)@WcTw{TG?Qdp(SJs{ceV^7`k|!? zm^rFC#15S!mxD4s(OX%0kxfyAw*UNqmThNDRvG_fW_*QGCm83Nm#u2kd+h2(>MSLO zWK%?4F3s^cS-3K%j!4U=C|qUqy2AoF(^QspVu|=DnOm_UWoz2gk(8gzjZ{UfJEUma zCPk#8D%DPJ+Q0Tq;zRX(wdNZr(t7paCijN;;%Ku^m3EV42&kRBK<#K)kyp@?Jhe%$ zwy%%@^b^TsuyBGIS8r?To5fM47hI~pEbPa$Upn(8>G?KaIN%uNp8=}lzd?XJ((~sC zFrMN(T@fe2Um)--fujI0$h<<=&k-Q%%-DdGXLK$+BFn3T(w^B&Ac1*FFr0Q0O3oc| zCpmDG#0qx8N&h>66af4-DLjOPsa~KQ#t6JfAVM+6am9S`%DjTaDqO|mMP>7D$PtvR zZ1{|!pCK4%iQHCHuG=cHvqU2tbc@VE_qJ@pwhz<1!^+{Lw;XEilWz^J90jJ5c!$FL zdd53!ly?Z;j%0lcNeNW+(R&aXz!0i+9cG)biEP^y?Z*Z{z>)$xlRk2I;R^`9K(e%qR#Xd(d)D|w zX`fiy2kxP&F4`ZRygeMn-{#jvP?KwC(L-nTy0aQ?Y0s^~Vf!x8xl54GO>DUI+B!@w zUH%PERV?_?O9@Yp=z++hkmnpA8gh@euiQGb`YT{o2=P*Z1A@{)(2pT*o%@%GD<45 zs8|?=f4;k+geLV{6 z_|Vt7?rUA`!6 z=Xk0yD&3($j!=W_LS$8gv?bfSR|apLiq#~*7qN4*u@z5FL>CjzI)RzA~dNtKWeOhOOK;q1eDyqv%^!@Wu2CS6Y~6A4@-# z?n)x&IOU&nWUsuy)SjtS_~sqo$XZzhCdJCTHS2rewlb@%mjepylbY zVut6;sOQv@4PqG^TgL>!2bGh51+0K2r%HGb$r5?c)+ZTLf*o4IDy6>7_};19J1Dk@ z-H8}KvuSZ-PQ6~E^^F1h#6QPyWXfZrzemXw9NJ5`$RUeyOwZH%yGom+w5Of)Ot97W zP;yHmPUUsH0#7JYq04ZogI$F%?UA;loS62j)Sc2sJ+G%V&y;Q7`~*KSLyLjJp+0{< zl)czs7RiTTV;-J@(6r+^mLkFaT)ksU#)l6jkvTAzdX+Tfa$KYY?>MhxnK-oOD3z)t z8SCzmx5TA&Xz7gHLP~6Bd0QZ4N2@!d1&3?(ucO3^#^GJ zhW3I9ywZdzGb=;Np(^J2lugz@LltahGU=2NqUe-~B+!edzQ$1BqN6dS2%mv)juY-R zB9(w$LO!r<#+(^XB^xecOqq=-(|fJFu4lnhNwQ~Kbx0-$f<9Tl<7&TEKJ-bKWLA$k#3yATzqwjb4FU6X|WOIC(A zu-@Dfcdpj0a-UsQNB}K-a?>hK0AjGp+x61988+C4E# zvI3e9ec9oSrmi&$R^B%q5}OXijv+@pF6;&)$)>%v@e}tuly#wxk|kZRZObQXDT1(t z2g7;p_9-f=H)e?*jKURX`pty5LG(5V-UjfGkTRY4VD!Dw)x!^VC)$pDZb(!Ph?N6i z!_u)E9@gz!uiN*){Q2eNAt+sR_4}c7sb@MDKwSHdlKuq{y{=P_)SsSs3{qn<`YumVK-u)iz$YED}*NQ}dW2o6!YX-mpHT1J7v zFu~tg^e94!%)>eA9ZiU@5JbHl;=PiGo(3?}2~U&gX%d`G#J(>Iwz98a%*Y}otBzLn zO!B*WjmsPrg9Sux!prQ?5*fL^W@)rdp<+BK;iX~a8XS6NXmoIBbl`>YlS40@%i&3( zS)#Sq5}sZ3WvZ`wyg&`mf;5!|Fxm(88%2$Rv+)ZL+@0TVUFF2iqY2M|=ot{4Y2H-% zBzTiPG5gHV;^M2DKu!DO^iIx^E##J_)zW7-shWYQvY8#}&yj|P_xT>0X@}ZIsJ68H zQ&rnWsj^TZ-#YQoS+(xOTqWUb5S_FHPCBK}t}d?yX|Ou~H^>Zi*2nQ6_sHQzRNQ!a zQCESwTWCA~cfl<|J*Mg^aiycE^U}Tr&Z16Hok1W3{;3SqoA@a560kkLlBEs~6PCY{m7mr(@5GOQv&j{}+^Qn(8B$WF-drp{ zEv*DqEkY*KbXpC}JMq~-#F%d45UzQ$en=IZ?jL0$()560R>w5?P%TR(*#_QZbCHbo zf}0{;MjCvOt~TlFKNI*8V4IDg`94HL2^E_LMNFDD$M`MksbAn_5|kFbeemW%2+R|X zR?)%6_~a6-M7;P0z!c{p&UR6E%He4Q!E(c9=W^yme+} zAX*M@buoCsByV*|Pg%TN@U-D1(JK6zz-fTDS@bpw-sVTh76Mayd$Oo=&HK}`KPr2$ zFVQ_9b`K&DadtVn2kHboZSP{XOgc zp0(bDf4}J8pKw+|CjUI#XOP89PYgW@KeTB!mMjZ3gUOnvRU3TZ6!wr&3Ns5)10y1{ zH(>UXU--~jx9-GFQuq5-!=Js8a2^z$2L<`e?F!V;tSdxtk<}GQZHlMT@nl^Ao*R@; zgn5+;yW(2;sM-%k>tjHSXV8eS3t=CFEmg=6AG}jq zDES_Jfj(3~`2r?;IXI9zhaP&G);(CBmhiNT@X_vU|H6kwllMmD|(EmrxjHgaYN2QZz4-U2YAufTXSkqG2g6(+%|Po!jyT@iAova~+hdPR1`NKOXv z1X6e#rNr6EmJ%hYNfQ(kGzB!xh9zV~<*bh{fO8AYlPUcbeDZX8{Ad$pBqMDHrHwV+ z&_%!+f`nSmQGP#K`aFbK84+PWo=8Tw4wYpwJP*(!AZ9AeM=1)Ep|>N+R9b*;z$RSz z^6YG!ZQ(qCh9DZ|z4Z1GLXFn1N+dzcw?DsP7Tq2V8kyz@{}pq2C?VVB=R7AlrY&6odx z`gcCU(Z5LuF4#J$6XS-3*9*Xf${QfS zw`UQw)K)u`&j2g^n=W^BVCD6d*J;w@ObfuvnxaReM>osLqen^OU3l-=s3pqZ&Lds( z+t1y6E;<%3O5`_)`3)h4wkvwcGKZlS7I&J9zom(z(++LolR zWF;>nDa<%8;YlXPw-RV0&_RH?De0msGAM)fgwnNu>zN*gDPH>N^O9{h|26=YdsC2N zrU6kX?QER!I|u78Y*|B#>Ve5vD(@ja*^J=>PliK0vGy!0bvXY%Wk5j?CZID+^P`lR zx*XJvHOuE|$S}O!g7;`W-J3csGU2yDMQYsqLnQDi{-p!NTZQX?Bfj`$nJ*5Lq#}Jp zOlo6rE#42gp;9I1{|+EBwd)1&(+pL$0*zTX10;szX{d3@2GexN^fE|o$#TmH!(w>} z5%N@f|GI2|nXv`zfN{x6M%uF`*;pJBNHbEB^TEm^pd;ODqzz*Su4y2$V-Zj*i(4Yo zIEt^-6W5CQ_BQdcbUouWl`jbsJDfh$A=+H94G=@vn%G%#O2lC;rHPZ}c?fYV)SBcM zE@0K}R6}BB5B}5pVTaMl!FtMuSOz18~9(xN#jBMJ3&co;9gWDkvHbK1t@iRGETC##l zQrsQV=4{(@uIM(_Z0B=1r5L~UyNq(#NBL_sv}xxLiHO|B)nY!A82S$%_SZFr>K^M` z7A*lL>157{fMh;H71{JDWrTkLHa`m3V1f##I@tM|r+onU?+{?AlW-5xK9a%m|0BIg zQoURaZOR371yfd9$->fEY*)CY@$g()(vw-#ofZ4v5UKf(NExb@7-1Ec+zq}HjGayt!=FSeWN4*jvDSO}2q71f&O*Eg03B%s zZXLb@@dfsiEUo&${+>Nv`>ykzGlsv-+Io`XkpWfN;bdbkoJBSsg1r^JW-9AQ*1)LS zScRpD0Li|?59;xE?ZGu6FdVnUEt`S%xJ6F0{^OPpTUPs5udN3Po zc5anXnaXwEvXxVeQ$9Z|nI6;l;rjssE@@7{nABT%kSaJebgUmTqSO7)JVS2!*sS&u z#V3IcPnJ-ryb;KWUT2%_^2BTK#|SXaVu-Go|hIVAq}BMOi>h*@wD->2KV z1W5g!GGE57=`vrzcVo>$Pl&Klns1;V#yh0)GGA6DqRTw|ALy&ntQ!JcgU62LvkGX{ zxxFNp>x7u9UEwG;3TqODwPIl{2yQ{qt=CqJAmL(h;9+ssdU02xxLYiSP`AL2g{%M) zMJEmQrH`-^W{c>-+$Nvt>0_Sgf#`u`ZA1L*{gUW#tmpQLN1NUf>P3~*L$Es5T!;@0 z5bfVGn0(dA$||@$AB^c^`bQg;4IjNGR3IyZ50PX5B{#I%rB$TihKZ7|noRU9_@L-I z(2LjBr87$ASFVi5&Wlx;ebc17Y9Nt6DCQ4>W06C4t@Vn#2NP9;iToike~5S)*DdDw z;owFy+!{ib-P|WOL!AksHAGq)buFt!KWM$*3ZCTK30uuZOXn*8N#18*x8PGWVQXY^ zT($-F&-d8+kC=Xb#BOXm_3J}S;_V|Rg3qb2s84}fk?45S-KD#W$u>D*s5ZO*}66*wmPdUV%~o4 zL9>DEHDPI+pB>zTgLv=shN^rJ%IV_US{Y@Pj_necaS{mHW5AZTL>tpbh9MxvfirPX zLVjlXA!bsaDzho6#9>-QFTbU*1(?}b;VuyE_^HyCSdC`gF%Rp`d2F{Xjbta=uS{cN zJ5VAj=3-#zb?~9nH=tsJMP-Ybx+y-Ug4PL@XK+oFgz>dOQDS z{#&kFt`%33_D}HIJJVK2#{AA?rT^Zks6A@mtn`0y=DjnC$_}xz1O7@~9?+!x5p3H~ zcGvZeD{fjl6m=!sPmAuS1^L``mpybhth*cH&pkK#c^^z9TiTJ1uah)Wourr|dujk9 zqO$l5z!J0&p_*rz(5x%AZtAO|GA#KQo#lf*<6rtrgJssgtkeT;zov#P=dz?QmB3N> z`qB|ccA~U}%f6Emy zE`vLb=%@6IH#X{ILMt=iPnI7OLifRV>;Wtl0E7W-?aURh2u7l8-i(v`Hz=_6;I zB~m6W4)7&eb$UcaxaLp2f$Yc8Y z1eQ^li3PopGVu_(Wcxm2E=p87=WGvKC1|OAu!)Ca_fvJ9Fi;G$$p3@#Q4| zZ8x9C9w}_juXJ!cF_3sr-HkKEnrzDuqI5iVPnPj!W+iWV-_B-;i}n_Hh9$GQz+xV* z(th~)0DZ;ZMk)Aj;%dvu-$B zrssP52|a67zJm(LG~9+!Z1^}j3J0*ew)4#cZaSEPM^O@ z$&rO1Tg1T6(le4rN_n6#cbctxVP0}c%FprleTc{knF zc;s$h9>G+g&;uLcq^BD0Qj0Cfyx6ily5%%@YL`!J*$ky!%V*#)wR-OwFH}NgSrvOj za6^ArAAeEsz*a>5ZH&JmV3D%JQie1DP=YPDuCQx)WOM%^<_f9J3?Zr(jOlfr;%L24 zd@@mVN-R3Hd=mQ@M8i?%@<>v?KncqOs|`YFR}$E&K`7sc)RJX&bb9LJ=Y^uyq^B}j zTtm=Xl`L(Db3#d5vba52xp%9gz=QGtET7!+>+D6*16!s5Irve)vwEAEhD8qaHj?iq z1wa64DS(WYxi=#COCuh<`F#43g@xKEX#gdR9(XC8pN zK_yebAzfh!HSwM!1WOu{M^7jFN0LXMNftLG4-9Sj9MpRN(0j^v(W?sJ^rhr3Of2{~PZU97mWi2_c3UPkn*Tp3;7{o4 zHUSIW5?*0T0#I z3B5gg<&9vR>;_o!B#b~F6Fp-KE39<&J$iPNz%77Op+X0SM@|h9l24U9cYJ8* z)Oc<{sVo#qJG?@jq*oX!%)*h6ZHJ@<=STRzLB2S3p<)n1P%yoI%W2e`FfIUWI(>_v zYgV6|y8LDKm(Z%3pnbaYj zZO){wN7(M%w3n}xi1zZ>{)D|jv^OkUwk&!*e4OP1p`r~l4t)SK4mpBNuOA_bzAY3g z+bRAC+0JDm;1yt@Tp%>>qu6Z}IUNB}n<#2FNEf7uqNc-aI>!mUkT-&J*^1WmRSLR7 ze4lE3gz_}mip?fG9U?eMojX}l8|CjT#@iDmU1CX>p!04SjIQ!!$5x)n)r=pf-tAv@ zZdoj@eYkTQ+`DmSv$<+<=heG=aaW*o0bA*-j*^9->!=AXJJ16j>WbENMbU!^U5%)#5p*^GZ#>&{_*Qyu^$EpKB^*zSj;EJx zTNaldb4vv@4C?imL#yC327}9hS)$93-19W1mM#M(lr94%lr96Ss%t`mpn< z_0Fdfo&92GKOQ6sj*10GQEl&We1arg6{ER}s+V1$39ch}GfxN0Or3kPuzI;*vv2^w zQMj`At^K$5FWWYq#Vbc|oq%0w!r3A^TbAuxmOMQui58Rx&3ed|w};VZf5}4rULF37 pL+7ib@{|VzT?wWOg06JSa>A-7%DeN=%C%ogp@07skr;9KzX8Qnk6r)( literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2847bea13a53c225f5f58ab13f1c0b1e9a94fac9 GIT binary patch literal 19037 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..30257add0e2677a8c3b52d59be7d876d89e492e2 GIT binary patch literal 21289 zcmb_^dvF`qx!*3{PXZtSf^RNCQY0vn(1UtWqTZxLTBaRKeu%a&3UNUS6bLZ8peVth zt?T;Ufn7}lYt)E#t znNGj&EOzlAd6S#lC3yDip68zZ&Ue1=_kCx7V7FT+I37|bum6J!6!qWmLOJxM$d?RF zQ4c7VV(A#QKu^;&#x*g`w1%9u(^_)YP3y>6KdmQc!?b~%jnhUrYh$Jb^RyYt>R5fu zvS6LIF4(4R3-)O{xo3#gEjXqfByNm37hKb>h5G6G1^2Xj!87ey@J@Rd8m1d)N<&37 z^FF1Mk;adpcOS#Qd`vg7rd+dfReAmhENuPEsC{AIzQ4vP4F)t(|%TSnF`c>j+X&iGM>GijPMiBOksRFx;PP^O?;01 z3uq-Xf1964#Al;(l7o#TBQwcRBtDa1qwzVCcRU)4KrzE?G|oo2fI+h1oo5y!TsWEF zBv^Meb~87{#mW|M<6iG`6czc6%jzn@tM$D^|m zKKVjrV<#<)TGa##PZLevuIkRvKIoE#S>zHk5uQ(QXSkW`Q5>=*4tn#_(Zi4!4=+Hx zhlgnL_98@=qw#|W{K1nJsJ(M=kdbSiz0D-AN0{*9Vk|lnPQn8-JPZ&WME=9S> z0`!0%Vg?7XUrBC>PvU#~J)iNQA4@4!VjOFQCyubsa?zXc3g;qx)$Orc_>!O_mm)VK zF(!uLs6Wh4#BU~UL^waQ6g@M8&pqm&4afKhJ`!^xxJ$Lc%BF*A@8M+ymA7@0ZwC_m zqpr@O{>9tL>xuaCsh9T+9vgbKzwc$n{OVAD;8b_&FS?k){y|12$Ps2KIXie1?^vP> zNOLe&N(|`OGRq|vn4Z3c1iJ)O%QK}+J$-T{gfAz+TcWc}h{Qu7W^|P44TToMK#8H= z5eowc)HD?4=5D^c?^R|LS{UM&uJv)feS`cA7hO!gGPHPmIsM8|ZF*gL@V!hc1X zfLcl9Ry5hy(>J>mp9%1Nfq-R3WeV`*I{3#a`{jRy0GJt_rfyQ)e45I^_4b3+RI>x_ zIOMFXPc6dIto9=fFa-FQk5?eJLa%6`4Gpx>me%Byq^dKkt8RlgrRnd`tUj%QQ1^ju zg^D-t+P~Vede)GpQU++5N>jj&j8k9JOv)Zy;<@0pXgmn>p5c(Ae@**S8pfZ};j{^8 zBn!-OF3B%Pfq&?Em>@~uQx+I*g^6gPsAL7Uquk+f9O2D<{U^cad6?3{csLo3MWf;5 z?S;f_G!l*63^LIWS~KUeEk#Ft_D0^(3BR?y8~vvX{ih$hh5j+Ie++IF`v=#$;O{m3%eNiRTE2SX zZrgD872JJmZoxe$x(Bx?+P=To)|HzV+V*8FMXNWj^L`0Eqh>Hr4rNLC@+eT+11dsI z(<}vxEIqA_=wMOROdHG;{;|!h{w*4oRRb(frigi-EaF&A&Z<;ad1j5(l*SoY6O^>E zW(e)91;RSE1(r8@+QHi4${BG@*RypHbF&TzJ*;!u%eo-ez_zmWkk7}u;i@sx#CqPM zYL?dKNb`J)(mw0mA-#3JO-*mOL1qr$5UIRtl<#tNa2GijIoMKOPRshB^$zGuBlLxV za}%69$wJ&FSuYdT@pKqCX(~h*#2IEL2CR@tCV;yw-ewXUGs8u~$p}*-B!+M^KC#5j zl<#4#a4d#vsmx{;BQw$2(h|ZCk$Y2D#%EyKsRzD9{QvUXuD zmC81dC503cAPg#mOp6>z^#xPZyxJP8kq2q9W0!QToStx0r5lx6mGaQ8Nx7GFD=`Wr zwQ90~d}=?^`o+4WDuq#0dV5}*Qd3py<=*T6j=e9HhhEv$mQ;BT#>t`Fg&b;}MdoOj z8kh8o2|jvD(#?l&hJg)IUu$0)x+-bn$$%4hBB6s28|5SmutyZ5Fm4aCY$z6n73Mnd zJxLE@)l5V(&cqVeu0=RWli(#Cu6mN5EO?TMhk~#^MkFo7B-70>7Y&1)!Qn7U#?UNC z28l(<5Q_4lcoH(*<|SK6Bnw4B{s0M3$46qbTo)AJx-sY>MOp54h+B%Iq=;4UII6&s z;ourEgDC{%qsdSx<*AqqL(1LfAP@hqA-F?r*{GJDjP9&8xGLdnu{TJD?)9gFPN`7Ju!EF0IQc`je8CoLMc*s;bsk zbi1^t&XmdufM?W}r_(ghw0=s`&Mig9C4;<l04i7CR8JMn z?Urp0>f>i2fc4p0|E=Ti9M3MTMg(iOXzkvjwC15T&nGP;vg!5RfAPVq_g>A72;L#l zJM{K==4@6|bh#fi-)mmIn2QRoeWGh$=IkcY>4&ZFx8|;``GuxIv1u?fS#%)H5Q5=4 zpuHLO&BFzbGNGEkg2)3{T$3s#09UJdyN9S14bW9Z4k%PQ*qXcwcb(C|JBPpOw@w2e z>Z0~jylz=@OM8`CrfKRbMZ+Jf#gs~#NLEn7tfrgdI%q1Xa%@=iccwHQ^uCJHumx6s znOdgg76XPP>(E~E7gCFXD*L%94NiU ziD%@9A(oh%12$`11~C#e=76?>S~ataid-slKr=E`{(2-9OL?ovQMtVco#B5D0q{VJ z-rlz9ZCdRYygj0~2Uw76Xsy23()Qtz_mAZEzc=!5WX)4(8QjuB0!b|gUts3nU{Jod zQ|zm+zS`+_`QBHbd0IYrG4F=vHTJf0u<2}gPe}2yjj+2j}fa?QG!sLHVI#pz5SG^Xi=XT^zGkwPH(B3a3Fn77wK9o$2`_=ujEI z$yLmWa!+d|7P(GPsc2M<$jZ+VA~YuWA$g^~6pb(4N?GQKQjBV5%2A~>_3!~B_Y^ci zScjyGg#oKET)qv;{eol#-UccT;4{hFl0KGL2J$q4qC(WEO8O*)s|mCLmj7EJx!nrY zCFQT8)*bVtp*uVVz&Rc6Z@vD`>#OsEBOp2gTa?M}f8uP(TJi6R+jsw%=<0Ki0+X`a|QQU-aS@q>B)O~V14zB(@$J28?MfRt5a}wiLR~<*FeEFu=a}J8WCM1 zNQ(X^zRtX}v*_;5r3Cl>ylwyAumJxCy7qudLZ}?&<&~vxAgNIx!)sQw@iWN^=2c5z zRcSREc?#-awHU$zT0so+I;LjaKCMgZZxA-VqD^Z# z8wL)^<+Rt#waYpqJPVQLD5PLgI&SoOi6pSj1Ov$2 z9MNSI&dY<+9N`1Z5>yJ6$W0*nw*)94;$9F}t0NpD-$gbJW?CG!rS zfxnI|179!Kw-hBfCWGodBn&ZEu7~3{h!%G-%!OfWrxF}H$H4*u&&6Dak%`6^my$yO z|CNr*5g3RVpBQ1TCzFdK!Qk@p@=!EBxD;C$Vk5!V0ks5Se&$9HW%I-mA1pmYuqzgc z&n2&`6)6=mq#_<_x;{6wkVr*AKO9PMbHP%4a0Zdta4d+Dc`ymk#X@+dTn&fH?3K^8 z5K0C%3?m+o0;ElS{s!Fn5-F15kwbNLk_!uuszO(1>2+9mGhFue_Tu~KWq8!~8GkoG zxBl+aehU%NdI2Kq1xXG?JuU!&q=iS}_F>GVfWg4i%95THRG}p33$XYvN_8^P;L?dS z3)gZaB#(zwzYxBqBr5j|T!deWC3(~=OXDOj!gZl*I0cmaspcx)R+W~4vi!e+;12cM z2Fg}<_egfGU~S7=+lp%L z>hGpkZxtN9c}H)tr!VjH!|w@+6g#@sM)DnpV6E+#po?Am^M@`Jx-J0gv$t#+C|mOu zr8jqg#) zb-~sSF^4x}mu1Xmc#0X74Z#JfJtdqbXht+ki;^j zqrARWuY zYV1?rp?AqwGtS?kKd8|>R`jsoHGqt_BUG4%)Y|uwL`b1@%&S;Su1>jEd1fuu@0s&L zODg(OnKNC}Q|OnDb0j;3q9m^wf49Cs8ij4zBmcNxr~LCa_Ybp)J01|R9_DlP-GxB0=6oIXJz=7)Sa?dyk!dSA2l%Sl_*lk~+Z3M(AC8rvzmS=pPQpyjYPX0ZROF-eM zZ^#&nR>$2_Ta?Euh0|_n*y21 zwpCEPJiy0;2ad4gGFca2Uo?mL+cTt?S$BNLU5k=La%8) z`5Ov?%w%TrwVYt8$y%VIoy+Duhc~+i#qJZ2t_s~3#O@3E?hB z#O`zX?sI?zc*p23^xF1us1w7iWy?g_+#qF`pT=?7XgX48I`YW!_=3=MNo=~5nf%OJ zclX4G)nBmsbB6_Mzi92p+-Kz6!-b~d^=YB$wAgeyGr84Vs_W=x)84g7q3MX&bOdf2 zs0L=kyQkpYlUo+NLD3t`SU$5k?p|6QE7&^ow$9v*M=kk1=iyiMbgdnShk;+w=35;V zY<-!h;012f_Y~@Ta`Pa})SndVPiBl;Hl2A-(dPcv)H_qFVEF11ZC!ct`)bqC2@0Tj zPdV7EZ_T$oRc!12LQA*z0RG|L1NeszNOLI4;P(2 z#4%QH3C=#z2?84azS=~*Lu)@=4mKN@?EDjdAlIAgT|0_@fO7Z`eL-n_hvDVJ z`O8qsilGuE{@ar1iV=|P3h)J5Egk6^8JP#kCv7ZAM+P3srDfnn3;KmM4f;w+szRx< z@=25m0jQ~w&rETY3wO?2V@X^wB`f5|kD$(v)p}RV$qIQeZLYPg0A6pY8Y5Ni&Z*jk zS{X!YwUiZW+RA;S(#|VqVa1kI&EL?bF>U+AR3mfS z)0SPNW_zuC4)R^YZn>fE8fhNv3*@i5J*dOFvo#`Z&N(YbNQu|Hhq|;$hR)J;1Ul2E z>GM=p^QvdXQ8oVR+uB9Orsh>?I_;?L;|fT}S(+Q#r9L!gZ9CG=>Ni2GbFP*8bbStO zT-%OXFF?SLT`Nx3l6E2=S#g5YP0cqb#c~z)Z{;4)f^++r!#ueKGB}EVr30k@Uw{mb zAWZ4l*=upT9>Lm5y>ag{5*2i*)D69ISC0hesRUQcevq~KppO+iqU^Q-PwB3HKlC3s zHdSMwx_Xp*4l~4F-FF(Tbd|koRdR3decZWi+_h*2i|Z7v3gUmJ#4EWg*O7Ma%pXB# z)FYKw_X_x;6CAf74R!7n=iln>)X*u{4Lw0qB{}%Esxd-%Y1_d%fYxD!{8(KjX(~(K z{n;NzuTY9nn&4Wh>Zs7ql^jU(b2ZjapaxyeU(QjE)y_%ir{-=0@yl>dadVJS(tuYN zos{Th$#wae=bt+_7CL|C%2;UZ*=NpO{2UjJlvVK}1P3ti-Y_B9O4f5Ti?--wbRm+` zLR!ku!xN*j{VA0f!hIDtb4gTq4em;FS&^Tr$ipkh2ybT@J-n$wZ!+Pl9y{1eKep zLUO9+O8iQ|R|S3lKopc!(;+P8BE>@BKNtpo6YQ^K9=kOYA&vpuMaaTUU_JwRCSC#@ zcp-5UIsk|~af4wa*OunEUd)I%hvY_wn6fQF_Kh)sUoP0p0-ln%ibZ*j$NaXEw0jL* zswK1XmH}&kj!HIoS*kk@_bn`7Qicd5;Uw6R7bHz;R&pu+Jj737F)?$U`-hlYpF$@a z$&`vNhJbFuGF)y9|D0!?3fYN4UV0jR57CjC9*W@>t0ohSyD`XX1i3RF(99 zpc?)^!wUpi+Selb0(sxDHTIJm8QW&P=YIc2eOIBrD|bPt9}w#YK+|?KREv+OFLr>Y zmR&~J`9jeFE)wRni=18HLf<~+=8n|bb(rCvX8FSZ+7qb-sBIazB`paI9}3*i5(EU zCS9YOO!xP!KRTD+cSaaED-N6$m~$d??(x~j-*|jhWG-YUHe0*aUM&tC0d2YM7^sSE z$3RtVJC+@L;%RvB)V-&2`dnJ@42z!OJozcN?Q3xRgy=bu_ng>rK}Se$Nbm*r>o*vb z@9h*L2KOCu)l-e_58k-HhMDueadqT{8;4eWGvQyMW$j_ZQus z2Pf{G$ms?59+4==E~ePtk-boC_UB#{ng_DREsfLFR`fL9zqH{wQ1BdBKl133;F%CT z6M4@BM84YeFwty24?S-x@L9wxQRfnhvIxK+V-U82rXNH0i z0JkrV>qu^SqxVRm_ec@k$7bF$1HRDL1#R_pk<=%FeQUlo-+I@2SHAsl_QIyyd;iFT zllM;MdIfjC=msoB<7!(U{`3TiV6S1Q@?9q%8wJlr(Q`5Hx%ii!)}qsM-?rf#DmaJM zmLJ&!=a}dm%R9%4U@ZrdqFtxy(m)IsJj3gA>sJNODbaH(?>SYpc{gmW1zYRti-N63 zwDsg|JrLO%qk&ck)$o%rzkkM@HJ?AE{rMr?`D4bPpP(W9rK#mYkLH&>XZK7F>wj(Y zOm^yi&CnR{v`h{ef4x_O@j)8nLt2a<#MH0p!75J;OM~y^|?&lS{ zA~>RZLElrQ1Emz6w*zc$r z*DrGXP3?e(M`a%jReh*Ivq3V!{W``ej)8h5`Xz$9aGh{LmTKZ95B5{^sNn`Nix%8I zx&0V(l{`2@usVYQ8usKUP96cw{r4cKMhrXzM3s>gb@fUym8-)}IgY^y@jr&z06}nh z-u2%1W(-BEJ?ps-22ljmz##dp$#*8RN$^n@ZLN7*YtdSl?Y=*lw|2m*5=?D zw;!x#Zkus1t>*^Oc`~OGPi47UQxQ?u^lAOh1iwwq2cpcWBwSf95SA{j{lrj>+JWB( zl~W0`GJow<`aRn>LVXnqO}R$E4pH7EN42`KVgfT>)2<_EWNRP=@PaX~n86FivSNnT z@QrLcK#4b`5#BL>1ikrK?Gb_oFlDS$1gw&rva0}x-hv_Uj^aZe(!j`WB>XA!F^bCAI_WyAP?#OAUNZ#@*m!M|JIuBz1JVU4r^{!S8Vrx zc;o#WYrR7I0kQo+)=F@9S-4w!`EhT)zDuZ|6zeBJ#&dZ$Tzd+xJ-H>pH7L3UH(bL7 z*YNs_f@@TCjl$G#Xx?ZD7Qp*J|EWc2I4(9EFLg|7_GOnJyms%k+@ZA|S^7YX)mNJJpp6QxuVIoVQMaznpcmn8P^*gH9bBjm@bN@i+SZIV~~{-K%KBtKm=sMYVl<$ zN121~OyHH=xYGZic6wB6tSj{2vJI6$cPXb%9i`uR{vCb5^+}x^{86~VHJ2PY6+Kk$ z;2Cy!)OcirzV0dK*xAkwE9^G!T%2TpY?K!-sJqs07_8*_oN9wFx3bOm1KieX`mwXU zeg`jM>_@T!iP;$e1j{$h_-zLZThXfDYYpQvrj1+^YXrwTsCPMU+MKRgs#dIkaT-AC)Ux&! z8!TCMfS8vHRLGAzTM%mZBCXh=?FxD>SCzKU(P^+?96TB;pxqN6>yOD-(JHe~`9_3Cw=V2dnsfEFlxJIM=PrLw1n?tyN1vli?nJL@H ztgff(_~85%6}FL7)%t?s*6#6Z-BWd?f=z_VJ15E?)^V5>Z46(#ah~iHelxQIxn3Lk^;Zt0809bh+>Q9<<(TU1c98ew2PR zE(Fhs!E=J^yy!X)$$G z-%WwoVRq-bzc;YqA1?TZ*I#(_qTnAB{bM9y6SRX%?_A0^9e!jGY^Oxqsk{wz*ZR!( zmc?Nn-gJ7hFRWe>oPKb-$eaO7eRIo)&F?qA*ZQy(JUQH;vuo@=b=$!y=z;U1=)9PB zUMxBrvWCw*og1Fsf~R-Qve7qE=o@)-SJ^JM)Tf6^WL?K>o*?Gnl2}5jLFu0=UbZ z$sGi7&h_UF|GeR!HGbOo=-A^K!8s{9C-Y9&@wCJEWMPZ|ezAkMD+D|`x&7>jb4*A5 zLgyK4(f*>DhOlbWJgQnK6@G~eOtmGtECF7oxIc#EA8H6+AaglDlc~sKd3i%3xt(%f zu0TagTNpDqNl>7@L1yFRt3uFAT#OOX((C^%9Mv`yN5{0XbxM$ zRy454=~gtAMy+bWge`4$>oF>8(d@BII6p+?}(a8i~3#i%!k;6W1J6JQgXTm_1 zjYO=qEOUU>K`J z-6wUA_7?ia@_l2gv#YbeI*@s$*wvdGUh}};8~B%ZpURvESGtbg4-@Yv)@IiC3+;!* z_CxDovHfV~nN45YYC`Z0iN2u?-@$_KAmHG>W1{aEfah-9q6uza7(79Q7yc5f31Bph z!L0VP1}5izH*r6aclJQm`zOIaZM(LKGAfxs??B`MHAk&zE0N7wjSY9#-tmD<2jj5) z0M4+@=ONw*xhuJeS`6WxwB{4dHt864VFt9}{{&5_TR_m7!-PvdqZNBhMi2{JP&P}- zAD9_|y(;SdN%Ry;F z+8o^5e(XAfbhV!D)w&-|-5p5d{Gd}mQ_16sOoqzKs2V}kV_2C`Wto|m=@dM$7Y5WC zcA7?fj1(HEt8T4=2>v_dswDzDzVZ<4vV#p@ zu}C%Vu1fj|k_D%hKqT53jy|HMg=pC$yau+fJ&YJWBIr zG6-m|j8B22gF@OAk$nPw?l0j&vVfNa`8pGBuxLTq9NZaXfYdv4;{ zE1@f6Pd|GJoGiE$6qNnn4`J*K2I#j`;kN!1US7r^i~&)@5XF^Tq4Q(oXP&=wCG_-} zsfqEi%U8I+k2(Gn1EQ#XiZKHA;(Q}B4>qNhcF@XtpaFaY09cl_QDRo<$E>&}k{85% z4zV9nvMh$^3fHOx6AM9`}SPK^@QYA{PvhPo{cjZHxCg%&Q~dP%-vpbYl6{s`mX0{{UgdXyUm%4B(K zIoti_8+YDVJ@D{IZnn@ekZ&0%c62_xwKfbNP|9}%w@ePRAHDob!5)_$jOx|F9y8wC zC6M1PzSuyQq=_bo$BSgdF95*8KxhMCk_fkfubza>U>CW+ zA}wQE*z(V?;Qzt^C2PqIAL^_9I+bKdT*Gf)$%Oj_=Eb>7WWTRXC*&!6lKa1K4``X< zQxJkYMble#@TrtM)lm5>QgwI8Uy(B3A%7JS`yKLEq%3#HUy-ujA%8`xC13q}LLJHP z{wq>#`RX5#2R#Dh@&7F_P?naAPc%2L9u>^pqPhEyVN2)qI{uoWoZfeq-d?`Dywyq3 z^;>%=S4&oN-;!?`6`UtU=gB+vEsfEwyW`mM*lCyxYT&29y@qmc8D7)VKx;dPS@870 Ml;7-f*tu8_EWd%wmZ$~>C9;N_3ZO>Pj)7g*#yO@L|A0GtJ#e=+nKisJDz## z@!L)I^ZgZ2s49TnvM1R;c8lN-h5DWKJHEf~{rlK%FVx_=uQ_z(&rDj)|4KhHS3&yb z%VLv8b5G;dc(qfSQTo_f>D&ko|#9@?AtPGVc&(L zh3wlpYGvQHQ5*ZVkJ{OH(P)uH%;^|)`0dRapR+~78Bv;c)Nx+pH_U5p=+A5BwJf!3 z)WyDwM~m5a$!H1tE*&jp-({m^>C(za%l(dYX_>ZFjF#t=SUFnhHF%9vRnyg@)u`3r zEtsmAt{ttNt{bhJt{<(RZWwKtc8|KJ8%Gx2odzsp4&__@`9yc2#_zD!xb+ zzu)V4OEY@F>qL0a>q2$ETSGn$clJd{s{TQAPZex8^Oas)S=Y%~6fF_AQOK&UgF=dX$cT@fv-`TaPxJ zU@01q!kv@iq_+_%PO%hCNYR{=Vno$5Etm(VGd27`hx+iJuJ2iID@uFLJMG_a6c7*4=9SEQIb|QSiyA|P!s&czf?n{}HROOymrR`RY&M0c^L5(k~()Fs+UGQ#0 z%@@7f5x(NxfpE;bbM#g3F5G#%yAfVuJ+TKpu{WnD##!7x#66W0=Vftyh})kN=kp#I zo$&g-htR^y-ovQniudW!NtUA@IgaGyxT<=O0o8lFrivd_#ZRf?hg9*?-eI(&z)k1umDSS0;x{=W>vFqhQ*yi z+=y?+x8(;0%oY5L*JzN%o<{7mzSgUAndho9=Fqwlmhw5IJcE?iH%WP&r8qZUotVsvvM>E;u=rvT&aHu}S~zTrg!m%hDb{opOzP#;^FsCb*gDvB1n6 zH||TB=D4YuS)ZTXT%DQ3&6Qwq7S*LJH>Rh!*>SqH9y@pL*<&8Rcgn}5oJTwX-@uH2 zV)F7F=LybmDeHC5)TDQ8((CgFQx-%8J(GTQ2t{6Q&R8i>0^(=L&+vA@0aIg6|w>Tf%XuX^B1?M?msyvXflQvu}! z+`$?5B_Ato(vJ$z;vkZE0(gz7Nj&gOr3>g{E%IcF!}w;}t}fEUio5RNCOwy?eD3zZ z-1rqLaV9Y4_e}dbdRV+-EC~XZ&{)Rwgu@1Lo4MlhG0!~IsK;(W8`g6B!rHjB?@CE= zqr?up+A1k>K^N8_7i!JDRJk<2t&`=`M791vSQBsrE!mu2opMIKi8-dIO&`{K_1Cpr zu_BittO*sMm3Y%nrMG<(b2e_wmYuyr8Ac^8uz(W01zuGP!}`nG1!Gvl{Y2S{upV0_ zE>7$Jb5)EX9perg<7iRt6*eeasl`a-*6g1T7G?83`3MG-{bI`BFPpaQ8;^eOyL`L3 z5Z0{z#A}S3v+ta}3mcWSEEFil-W)E-H};#pqh47WXrCvo7c*TwQgPYb&9+!M?-w*- z`yc0He#OI0Kg-QrMIQxvkG;5~cgpAC{A05>gI8woCC2pjT=)5}_hSF= z6(e@`Y~S7+0MzZC^^Cvfx$Fz{&Q8wujv<+MhU@i;Xi6{PA3d`-Q-$KzGzLf;aFdjeBdttT^2Q8*vcQ-YS(PFvGcsGO|Z2^v`MRNL(^dCO_r74 zd+F{=cSe^-O-zW4!U>){k00Y6ATpFJuG!Ey?fu%vCAG2VmJh_Yua&eUN?MYo zRmrmY*tO*g@iS{>ZHclrJh^xB?#XyDU)my+wj@ehlJ1U`#+9a(rU&-u@#yg{Dq9{^ zcCJ-+t~|w8?iMO{NBfgCwHq2;+3xlFjzs6tWarLb>9t#T{Ys;4*!|ZOY-qGqyC0_u zc70s=QRRo#52{!CAJp-sy+UbkqO_M)^5fPYwtmv~S=&ncO1t3R89lyHqbWhr)bNdZ zOCB{~x*iUJxvHkR4W5nOl z-2;^7W|Xkrt4qUrP;j>j5C`s%e20rup*fclHYj1y1ptQyE#QS>&+{5yW4kN%JlQVm z#lDmm?tQCvENJ|oG;U$P$kQSnwTPPx5{{9+^6&TR+zZ&P16u#dus$x!nSS0)SWg-@n?%_BwYHtX*{`)7U)L(2 zDF6hhhbz9oWPm{GCwf4)*_0l*W=ane&k2vU|){bx=Lof$j*EZ0B}-4rw; z=rD8bbl*wAJ_y(@afN=;+szL<)?)5QwirO83*NyQkyF`O+Stv?r=fR#XCXxT+bHQb5zF zE?L_e_k8U8$oJvp2bbel;#Y*)-l!$nxHVqAa-476BQ);0Qxw%l&nN2|R`ja_iSm8; zMD-gE22xPnhEr2s1*ni+{M>eQl49}GWMzy0&v5gO_8v_tOvpS-gDqC>^tV8_bzvQr z#tuw#-4mhQ3edu)dHxpZ7XUmksr6nRra30}>S<|;>qk<0&|lmhyjF)krSBgZ6sISf znMQGDW+x@hNA3WE0Ifrshv`X}**8(vZ`d~}1r-oMKvS@)B~}wZ&sX&dRlT>0BKpYr zWKqS2roggq-C1(aa@P{;;GHdkvjrPq38t&oUY>N8<=;b-b?vd2SE~5BokHEt^qi`y zj|WzFCW`ms6B*dBYaEzMD1D9i1+3U@h9L$r0i*UDWbycT{wD4Hm^k>%U<_sTq1uvyVQ3*O7@H4&`zDq5bOBvy~>Wepe@7Vh_-V6;>s zvOJ?@30v}xmLWf}i}9cplyfQDDDP+GJOcy7@~y@c?ZggxAZ(GB?Jbm$Wf^JiwQllG z7O&}B^fzi={r#{ZfE9v%rL*(pU^DiRn03Lb8Y5?VrZ{z) zFyfT6l96Hs3m99!V^dh*`UbF|c$2aC&khTMwVA%xXf~NSDj2{ySP!V4rhCBVe>+(J zO-sxJRZ2Elf!};C+P@vVc%s>Ym92u|o3z_o8n#d9z#c9D+x(XmfTm6YqwGJD8=lq1#N(@oZX-#6k8r2}UD` za4_ov0a0qg1T7+V*W*5u5iCg(K32l~l^K#m1;MSnG#B&*GIAF;$$v=9GBXz-{$CIx zmI?MyR+lJj`C8jN5^|CBh1jx;b4yGB#?Jj(`|{V?iz0WnT){Gc(3A5p#%#&7X9{Ad zX=3j_n%Dq(kyFQCYf$j68A|b5;3(^D$uT5Y1u~an`PIDZ4j5U)B z_!H>j{Cmtdeh;vV^5dE`b0<`yDiY+NuVgH`Y@1YlrFv^H*KEW-%=REKQIX}R^`Aye zfme|uKW3_|gIIRJj<$UZ&O~mHZX!mCYL^_q^>u8Z0(z2Wa1D=)` z?)6c*;>1canF-Qcw46cWIyn}meG+vWC6VL6Y?_xw|AO{75O zFi4U|$P@kvY7ATgF}JAsn?g-l!=uucwbGXOMZR>WP`VS0w3>#f8ElkaX)0aq$%e-0 zu?<~m*}-I8{Rc0-_tLwg_eWQ>_b_%|N}zozcs8@wtZiiJS1+wz655}7)c*8Z`_p{;5uyD^%)U{ead)#^NVZBv5+sC zK)?dH5LmmTTQXyF)P{_$0os5Dk*Y(N()Dah>1i?(tagjj>g&P-wBWGA%pMB0{+daZ zP3FLC3J?Ohs7cs*#ZN2{c`+Keby0f2I-{c?WuWaaRUqzHDQk8q1sIcC9NyA!cvwIti7|(_74nk)p!U^ zBIpWH3;ezy!BaoAa{;^k8x+|TgL?g4&2D04(`Q;?8@n7ZU$-pEBpukm4Ui-qfp~2 zB~IrZ>#}w6IAh9djioV*$TD9!%U5m}Dz{@68cUOol1OmfT>Qvfxn`~e-^|=Bn41^- znXpl7+`nE_m8kAsweZzX@kM_(AJ?t?#zo zZ;Q3Z+QE85y`4P?L(k$cg2;IUvC8;B(&YS=ro>nsJ6qr(|>Ed`^2+pkAnPs=j4^G$<%`H)aPlyDBQ0-{aPre)(j+g;n8qUEAU|3;a{ z;be{7DAzd4F-Df^WEn{lsOO&18nk4gBOPxiR(th(p8>xf%; zXQ$xol-kxW3OIMJPAUYP#U=OJ@3!CRT<(Mzw>vVh?yQWJ+_5j)(I!Ct^5tV_i+z9G z^?*bt_WkUQcCL=|O;7RVeL{I(!r7OPiTC-8wGBA?}kPS2DKW@ z9+}uDxn)OuYV|38%RynwK@3yW9P4vQJ6E)PX{S)yiM^+!Gej@T!Q_@+>=kX>uvgS<$6irG6TECYGGcmYW8);+WwM=>#t(h*iTH$2+b!-seC-~g zc2CsuH)c&~{iBlRwUXv|KVPy%DA|IMaBWRC^~AeYu6@}1p!d#+=&_h5=J}$s^HJrt zwaRU)F1~W7P`NWLtJans(=uW8kC)wB?0{tr9&`T@RpP$(Wu z*aq23iCv0aT0Zrtw0*6#UF^w-<%@=`5N$Q=5gPXJ=GurQ`V=cwYaG_f7HXobok4?r z51-);R~iI=O#!`QtH`95lM2K@ zWlZWd>?)#O;eu{b1M)ySsJZw*T|nG|VZjJ}9wf|MSCLk{@}uiOvJEN*tSLw}r7tye z3N@`Pn7>gCW@sGYJwBD*Wx=ATLB%LR4c8Y6!9oEF94=Jlw1x{7D>jpVhpo_eQ`Dr@ zEVZ$c%sD05!Ug#mt@+>WDsTny^6Hg!4H3O)a+)cXteu-&UChIH7*LVehJ0Kb;z zmp)ngpTm0KAcj!uFm`CS*B1yvt&%i315DQv`aeu}7r&rG8-RX9_QED8%2q4cq}WVy zLG)|pg5G-ix++mukX9%<4)l&To=K+o{>CMN{>iVdpr$yMbc~=qkc#kxjD=^ z?k1(O$){$@a0zPRz#8W!CMIvB3>23tfW9vMGJ7rs##lVNBkgwa8S8g@rj9Y1&?$4K zSH(Nlm!z(#Lzg+;R^v&n81m-o zh#@i&^{%^0mMiYn-mQ)KSG>Gyr{LNdDOj(pi%q<1zi)@A(Lz}$j2v69s9K)C7rq;g zA6uE=D|QPNyYaBLG2Z^}>HDWQG$uQxr4W>&yDM&6dFA0tyn9%14@d3El8WeoWT`tt zSFR57rB4Z^PbJvral_VFc;(pY6~5uH&~P|JNAR ztdDOP78-`vT*JV!t**sWxm`+2i*@M)Zj@@{*^PKX6O>8#!kVD8wLt2sfWk^;ZZ#|v zyXh0{NQaU89n_a9^xg1{&jm@zJykdvm;@`v;~)2N#0BJt{NGL zKz&2XQDB2qYKmM-uPhF)Tg##o?@#j9cEQ>XY{uBM?y8Dy;a!b_t5MM#)B~AI>J4#% zg@K+}6w^$tyiLmCkN_G3hOnN~fm3b_8@Udsn8_5~?`T40AWLlu|~^5Mo=vq?iJoGykko% zxJFMU9F6#pijM=Ts#^O&fSY)KJiPisqWJ({dLXLZC__acw`}&sW4S1%G-7X|X-bfQ zeHn8zb1CO3SNddJ?FB8+RdB!<1GY**EPt&xWgsIJw$f92x~1k*pNkz{#5gJA!Lds>#}LbXAF;1czdwf?TKKML z%lkIo)GC;Oa%+vXv=4`Fhi-+J!q}AUjzy@o0pHh=Itqe_K4~qAHb(YE_9d%pVgvWL zK#_0ftrK6#fPs8+(jsTTfMDEaz(8(|0S#CN7`Qr}0z}BrG!<5v4VtBMLS4WpW4ae)?`g1~L|}-Cafk^@LC1tQu_I8v z339ZgMXRQ80fcI%u!)Jr%)t`rbv0p?rSk#=lZzs{X@S73fK9m8rNe}WH*4g|0l zB2h$KCKAb(>(#1vN3BL-8*YZ6yfB#U2u)U$uY8XMt3?A!r4XWX)h3|T_+LVs2!5xp ztAre}3#}Vwts@Rv&ZVqDtC5R1uS$YPwXpLy&5g}kDSvN9m0IJ)IZeU?WveiL0}HlE z%?+qnhHW$s7&&D zJjV0mw~t3Bpd2mO>Jpg`+n_p1MC`_v7U;mpbz&w}Kt`nFu!IE$L)F9F)Ii@Hty37( z1ZMmx!_ta;q;A}jY}3La2!fl4yMl4;Htpw&+Moa_>}Jez!c zxPO9VS7Zca>svmUdT;7o|9w9pESLZYpjJE--J7gz_`v?2{awd>u&NDqL?O6ih-#zT zlZ{Pr7ykO={fW{ouurLMUjf%~E3AB?#$-ipqM}{=B$L zrDgHRhOWTqPMS+1*65K~0dH;)%nb?lL2VU+73@8O5t6)2Ko#0<+in#t6-A2H9TiIw z2_G>K+T3!dez_hUl&?gTi`Ox_sZ};jk&{pm*W0h(e*M|E?ze0O|z!r2k&Ux!fh zIli<_C~bpHQ%NN(n8eTH+Q!Jy=-{nWkyGGEq6`}}XBSTewqPFpQDy&ufilf6%G?9{ z^uO4vMfk_Xw!sF?A2;+D5AD+bN){!zD_LpUbTj)WQ=<@UV!YYgmyRjkv?v+!vk8qr;QhOJ{C%wwN>Y(2=3k80c z{5N(t5JuV5Y@dU&&s7O8;oJ=Wfjv%KQXZs|GM7B9k~c{^=lcc_O}e-Y>&xWBuA)a? z3FinGC~0=^SSOa=LEgML$R<0IS+ow~K1MCv3WBe-eIcFuW$s0K@C9(Ge8y$DisKcnCw#aKOFY*8ZAO%;eRl3S$cH!0dUG3B`&V9YOK`32Lkl$8ah z;14Mw0csK2{&#eDmV!T_pa(%NF=uC)NybTN0Jnxj_XyJ35PU;OyKX6y0UHo`_w0A= zcO1(k#xsI2L2!%Q2W)?AE_}P_c99H>$*dy*7A#1N0BhP&x)e@0nql#?d=gMq`?#Uy zemI7|mFGXZuyP?$+6VCv61`3|;(-jz9sKzCN5@xupS{Mn^a(9}3Gq|9A8D~a58ob+ zZjbtwuf`jBTZ>?8Nw5!CO{mwYF`B-6?9F457kERdU?@#wKDjIsT9eKA|8g0@35`~T z8)exf%Jo7tNm%m&dKq}Ew5~y$5QJfunl=$}A7IW;m^$MjN+dZAw6RamGXA7#`ZX{8 z;ApJ^Wts-YL0&s_L9d*dVxlzONsdb**$-(pjNs;f#~(~wEiS=Q#an6wOAYNPdSi96 z$Qd!y-xubhC42OeYIFMPdj;yJ*c1ZPgnNeVn%^z&H|Z6M4pPU`y7&eit5x!3vaGp$ z9hx2hyjOTjBO2@YF}`C9$4Hs9I0?%&wPZ6p_(!8m1C*gzrs@% z{2ulDY5Yp}d!cQqF*2nwB(k3$sS>U zUwsd1AyMf8I{r(7v-c|djha6)miO1_e@W2p|I_^sYG7vkHD560!VshxT*1j{-wZs= zxBx|!k3d0~0D))xUYKu=2WRA?lPVHR8cS#AzChpoAq|vAHc(EXu!%2h5ei$xvD&h3 zE)vY{cm;3n5X>D3bBAoaSWF3TZWYX}iOdH}hB7D~W9Ybb8Y=ut7w{2weOZgIdm5i+ z6#77;P`rbW9zDD)>EQ#)K;}A7Kyxq`I$mP+LCY?9Q-R`8K@7zyWd)IC;20~J0wUBz zV4{WY&76N6eFQ>dYJ&SEVig@^9s^Y~85|o6RjR7%$;A8<>Mz=!!7(hYj2MWE&|f|-}SHrBOb+l}16r&bk?jZM#ZAr3>6ZDV8C<~&nkv$?-QH1{7U7^Gl31-%sfn@sR0 z)Fv`ZUX=be3|eCq(JASmu)tUb>&pCrSSA&x06GRdV1pe&`J3a|Y4e%%L7SywqY_;PRO$d|#zEWfx=YcZ1<9+t)L3 z8il8xY#t@P3k)KgK~?f9N)Fia$HRONy_~tS8UZr?sP=bAa#i3-AYocf7wV_MD>P5q zL@!2k3#E8Z(9QfU&ChVJxk+Oey7MITzwQ&I{5JzYCuDw_s1)*##Ms}Ip{*AMLR|oU zPTZH^o&%nfF#E5-HI(Nv6mZ>h#J6C@j?ZyqYR^=Fv58{&&A>wxWZxd9HQeKNk3cQ~ zRr*W5anBrdfeGuOW|CtkRsxpl+^jn=4)-KMNt@U+HSd9ssKDGTIP#+P!1Mme8*r0y zbIK=rXS(9S>oAW_WFr6u4!KdmZ+cng5`?vhMfr)pf)+rl-{+q9xyL>5Xf+e2CldvBSeQXm1xA9^cW!zHy+*nSjC{ckV$Mt_as(5+ z5>V_Tb%sm5IR*7az~n+uBzNk>J*ktB5{t+7)4VRA&Z zZ@nHJUo%xDOjYYem5Hjo58L^wBYe?-P&AM*L!;3V)x8yt2G&f~2~#yovhU$OzG{Fk z8Wf5K6XwCkwo*~Ok+(GnwuZ%_b;7`+bBV%Qe6WKPYvi3X%jYFN%HQZUR(m$dV=D>0 zj8*Fn*V4^|xpEzmd!YhYmasM?3=Iqpj^ll#OWMpuMys@$m%`ba7TdWVo4Nr`)-wcy+AEyPoc*NU*vYeQ)D+7a5kMF{N{5FYgBt$@{=cC?5&7j-b_ zqE6;q)Ww{O7JEsJxH4rM#@acZ*2f>tk1Sk5+i7E#BMWk0BudH$sWPufeBZpVQ<+0V zyfbu+$;;gwx$l5>=8QyCSydf(7;6_H|L|=ZDNWxnAk!8A08U9!J(LG+QBh7fO25#2FA?Hj99sBd!?e< z#9G^!Z^%uG%A|37XM6#FTQE;cCg4 zWuLgyQ&ZUcW?lt0kAzLY*(Uir0|G@eUPLJ5t)vzKy$Fg`${IETkET>&5CPQ0BY20^AJG)^3?tdt4p3Ly|6NkN9C%z@z8G|}e}4>A%A)IakVTOf{9fR-Y9 zOO!Ji*;EM?E8qcpro*HU{1(zO?ICCJ()`_2$+G zdp|z>(c#rSd~=`B+y`~(mi5>D03ibnE00~eP0DTxzq}#=!qStSIXX!hF zqwPmcpS7)S`K0%=UZL~In&U{qe1t)ibK~+wEs@3sv~qJdA96*PEPE^e&Z}O|YT&Cd z!ITy%`bWB$dm&v8;jGCn-oQJ|F#^0|ZPGH6RG92W-7>BK)SOOKfbtJ)QWB|( zwQQ1Gl4Zz?Q0ER9A<0O$BW!?qI5G3nR~SC@NjqBEi*IV>?h>-D5r9GE=z9Z0$}huE zfkxm+#NR0h?Hibx#kyqc5m1ZFBB6Z^n=gmo}2P;tg29rd;ZGg_!am3%-j@FUT#A4(?|%^ za0^8|Z4B6mYz3R}lL)g^!PLxU0I`&Tgy9TrOBGB8s7lTb_)b3vCUE~JI#Xm@o5#^w z_RNX|P#F|gIr1Z2$^@<+y8)loH~v~mKOMNNwyLyH2~33`R6dMM87#L)dR|V8pV%Oz zgR8OF-*((~ysx`&V)lw@TSeZyT`+G?n74xiLvmS&c~=TnO}u%ZVBVK7?}N(KQke8@ zyOYJ`kpYM)NIZOay`*e;@4Z8J4?$F2(kYa5LZQHQI9a`Q{Ltnrboe(! zU{te}6Lpm~!TvWvKje@vy}lsJQ+@;GS~-EvSj1l=n)9)jE7FPQri zW_WC6fWT~N0(&CiXjrd>EMTRDukB?{3Zs@UYMWq1VOlMDcq37JjITW=)EQ-|@Rh#c z3q_^Kwwuh+Hc|CdgC1g2(4SHj4(g89X3cgm{pWS!kv*hRsl^`_UVa2a)k`A#14?gP z6Goz=P+UL~8Z0g)l&4`^CHJ>@8Lo|f@^r_Rj3|Z>`EEbQ)0B2XC4_K^3ILa2s0H>4 zZJjFWI46D&t(6oC19hxg5eB}pTd3^j%{_v-Ct>bMPkn=>p15El0_^1-&4L5EQd+wk zp8ueK)j~=FQOCLq%2}~NQ5T=0>*LQsJN%yMt_em$Flvq3L1x>b;FJk~WZUb3WXqpr zW3zXpgp?=MW8&?wO)$utTLjT8iG_h;yxt!jEI-nq|9OMqNVDnZTeJujyP~vAUP9W< zmkHr^aSTfCrPjDnPoFHSL&x=?1du%hTzzTTQg%=o2viNLLmW1CyapT8S_SA+#U7?1 z?L-sVkY+k1e(vL!KYDq!l5g!3TKjnOe!;vyk@<*x4r$dQuhb!=o4y&EkP)!})0Fi{ zmKP*BPmUFUG0ht0HE$XgbYE|$d=uOzAw(Gbmp$2fe zfP0|-c-IBv6Vz&ePa~re6#xv9O$-_0Kq>LYSwmB(CSA{PzvvsAF}UV40Ww#+>bdR- zmB5u^DS(1cU~djp<$1^u{Fx4mxI16KTc(UmX32J9*~UyBA0P<_F-?b@0Gq}) zTp2TD+i+6#GilwOdubIb3X!4Qz6KUFl zM;^VrX01zD>%QOgpl#)awWghkrk#JN`So6TVZ zwC-U1|my9 zj>&UH=s-?O0a52%Aq5}ejYZT%h1MIPZU(fUvFUNa(7=4_37dFNKaxiyjbY`8Q~ zKV&UNxKX6F6S;5i5@CvblF~g}m_I?MVPPW7T!drTROlzXC&(aD{sqe@;2bSj`63H^ z51#tVG5t4LpwOX3E!mBV+X?rldaq`|Qk)V_i?F9@5wh6%$YY_J|^e+O#-y&^5W%t+8T z`UGS1sWd)FNk*DPKOeb?BS^^alIZR!!*5HK;AE4u`#$C_;S}w;uC(hY_JnQ2=Q`{h zRVmx18Twy>x|sPtH&3zOLy#&2i%YD@#~ndD>_LtV4V)Mn96Q#3_E^f4iDP7fCA%)Bxy2k5iE+m;RYj$1d`q6zloT&0O-ejfcCD=0?>ffa&m~R4|9~{I5 z-4pZ)onNBDBXfF1f=57uB)Ih(dZmr^iUgO@D@qhYDn~vsa?8y0NamYhVci*02_h5& zI6_*Ji`3EKjuo^EOx_>@AWv`LM-)j(0We|OE@LfylNYD_Y zh5MHjNN9-2C@Dblw1`kdNSJ*DO>zlT6{QgmQF+N5s>z3yq$B4DT)l)c(?rbMhi)H= zweZ#k!P@XEO)<`~VED?y?Stw1m{4)IgqTVS%x@4>uLwdvV1DuA{ss=O4|qlfr^68wHIk(L7`z=qJloj z%37haBkl33l&{<)RPIS+J{v})PiLaU09YV-M8QN0U(zO&w2@$$66)N{8GM|lB zbkzp+*M?i?!X1Jn%a%)I5lCSO(PP|@!VU8-J-NxU!}#Q0>ZuB)0Ssa0lIa60H7z7y zrUXO_I)CRTwLcN>l6exysIO}M@ErjPO7~+NM+Dtt1I^chEK@x#9)lbnCt;=xFOHo) z!5D%HB%4?|@ciH*tw|-Gow81f>M-PFBc$Yu%VKWRw4OyNU<|p+Ve3~6M{*`hbslz} z&R)J=Rdc^8zUxQDpH=Wx+l8v_(E_+|5an58cgN!A__9u+tdpIx6Dz%qL(Is-LrGO+ zkj~+O_Ap9@2@csmio-1%3=It+8*XA+5KVm*-{O_VAZ6qoVx<9}pwpZ-kvRPT1$>$* z2Dnt1&b8HsUMS39Edy}FJQ*Y{5a?M!=aaEie1R@Fro~C6GZPc(C;+l9+|pAiZ#r#O z(u%Q>be1@xh?o*qMrVx%OHSL9X)skDDp9~4@!{X6f!T)~kWj*66eds!b2UDZ*ORU? z!POi;C$#QKxb~2FrdopyXB_40V2QwZjFzc7cume#mv^pm0|!TLH`JYFWJ{K>|77$i z5OrxQ$3`WUq+Y4ui0zRh|7epWc=KvMQ;E|FGN5fUunCZtE^*=2tXOar4cq{P_&DfO zR3{gw*d}jQD9s?*4f%qWE0?Qag;CKG3DHm=Y6*^lyv5mcIp&&6vzrkl>PgP1eB;PD zSbmu}AEfoL{)QRD>`i8dFgC_igF$K#Z9y9`L}avEs$dV>M#;8@bfMX7PMIhzk^EcG z4{*3OP4}c{m}VTNxrBHc5Y3-p(1;uid;!nQ~s^1 z=Mp7-d`X{B(ia(oCr@HD*0O*sxvR+^B>B{WC3gwnq2AS)tZ~OL#!s)+>`Y`n1Pm)a zsC}@)pmCm5MwA7dd^6;xBixiW;X39Dbr5{zQ8&tqwap z3=Pl{X3xQWiSFk9nu5QgfO?#Xe>g@My6NXu3P_5;ZKr^Eim4Lfz-FB$F%nZ`kw^P8ZLjEJ&QScuS86Y%lQTp33=#A(zWl*Rm!*3}l)ES{QDFxR*>YsXc3B33wr-4uxhB@oGZta#UM9J z2hm~357ohb!5e&vfALbmK0ro5<6_87BnS+)35>JV>6S{EGZQ_$9`=Y(sX+9hVS=QA z-1(6y)8sVsg)t^FBHu=h9I0Nx5w%rJ#pD|)t9J%^(Xf9bT|qr!m@GJIOY^zYT1&7w@zbLAV)$m2FLQyL` z8<>h=Taa{>k`K1W&YDNg#x-YSyqR}y5u97V!*Ib_Z_M|>>w zY!`DOO#aC%?QnBYRvUW(jtUcSj_f9pBb6u`uKl}3PLXV z3o!ftKcm)*0-P@#<=}6>9v^&gf_H2a9NQA+ZMiL`CB;VO7;7>YM zMkk9aGw%#Cfhv9*-?z|I7zx=A$QtM72yN#6DFrVe_*#32qqpHyuSF)2I5V1qm7{8K z#Has^UT+5qpp7HBZP!mNtN44k>u38P;*TC!SMm4o+|NcI;txzR=W%QiTFY^*`0B_n zUD9CvJ|3xANB|j^>lUND>FptZtmnY-9AM~x26B1RiYqjO4TR$)R z(-nn7a*h?U!mB_desIL5bdJ7ev z@^9!FO?z&hUX(=X-2Z`}G-rt2jF~e?u~~eBbqEDNr?aaZ$^s*otU}ec*)!= z2XTM^Gf)Q^5A4jz@nHa43v+<@L>9OHKi>@5P?9Oc43U#hAj$MznO8pYITJVJwif2< zD)|dJ(e#?cMaCf)T5g7XY8#%Kr9-cz#fbcy*$NvsL3UL2F`=;u@+rO7B16Z>Q(xV; z=`kF)WbrqUabMW7Neiq>bW45U7W|Y;JX|1J1{|zq4qJYJ-uqPQK@t3P*haYH=v3yp zCRCl4Nx@c^ov|~{L{ZFKRCGOK&P;7_Bfx|b&(YxsN-1U?)l-81FU5V7onBH-3IcIF z%)OLz0cV?305lFF9Sqq#_yW)5Jic=DA-I?EG}J=Y^FD^Th%VBy9^SG?n*1jMA#Nnc zktP}6#qsUY=je?1JLi|rOAkc=Z~`geM%6qta_-Feu`@%Ue0?5n{EBFVVqt#JypwPU zU>t{CPEbTf32Jl{rtFIT6HoRgpv{P25x|qx8ZmsP;G9nd?E}PK$O0FU^7^kSI|X0R zYor;^W+&;V#_YU#i(uZ8J`beI*awynuuAy+>?Ye&YXc5s=uR~6#Rn!V0FN!5$*!l! zY^9IPR`!$G3K+^bF9NcwmVFy$jlGB@-?vUJonp>hqvcCC$=kOxTD`P@8&}!A>bupk zfjbS$4OEdU`rPgPa92>*7~d7eeu5pvQ5JKFXKH{F)3)~{w;d#@*&$R|aTpa=fb|V6 z_s4aOAB?^?x}tw~?EV;>tPMwp$w6$}av{94S)GxC&~uMY!zB*c?` z(9-hAP-N&a8|4+_kF7tnt`6|+`-Jv=7-UgTC^EF}s)cW{Ju7=wck`~N1lLpSO)}1r z<&aT=pg&{~G^|;q13wjzG>c(*^=Zh{<2A@(Z5F*Csfr>-LM%3cZ${;6U(os+Hpwr8 zYM3hND+fL*ncLag={<8UH6xBYD94HA3UZ1znKK0`Q7?izftnzxTc)pgUS=A+p{f*g zpnd z1DKaZnR_KP1B3K8zppL#eHHzg9VJJm7Wp^PW6GWe4sZ9+BZecST{@6SVcPu-Tra>} zkbD_1{{;~JLogQzPEB5dX8_pJ1bW=ZMLWx^ypF5~S#gpDVV4`sau^P!%>jGd&!bRg zxX7IAyWxE1`XuquseF3QYL!atVx^J!Wu{fIM{4UyH>8bhHCg#EqLhkC8!evpyI;hi z6EpMR%_G^#(*yk{`=5Pwu>V{?H3;QR`bFOkR4x3cPjWMUIx`Zi{3|}cSgu%oATUSg zF^cXUJX!gq=n8^4yMUP!6(dSkvMI91L-Q3;*-*3tCSCfXjz-{{vL5YcztkgH_bZSa|!lf%sQ4iqM#C);}GfCKGBuLtFMa3 zFTDDy*lQypb7t66I)5-_lMiUf-ol)2cxGqG73tU7H$v@$k`y^@#ETO>={=}RN!yta zaPp0QE>!ZopMKEziqn*2%4E87W1P8U9S$`Qif+)e%VEwx7obdC>0U<;r%Z(w&Is6i zVv=O?vr7Yl14O}}$_@@k{88>41*i5>dUna@TOHGA=4M@T$!HLpQ{beebV5?s472MCldSEM5bcvrjNYG>yP zzz@g#cNgAVh`zv^Y6TORorT64Dy1s6=leSz?3Gwr4lq)+meX2NqQj|SiJGC$uk*GM z!8VexjeNCXFj{KXZAD8b;Fpy7+ep|N*a=#Z;jh*mAkB0Z&~}+XDrDR0md|%ZMtIvX z!FDWRJC>$jBf}7HTWUz{zW|;;iPD2%oT~~BVtH3Hq+{p+C=kI1VWQ%|!wKFzB$(+` zB&L4+_JP|6Vg>O6-r6Qu+Y*L0W(@H2!{r0znqQQ64C?fMtkoh^ptrQq5=j11gRWK* zRasOZzY?ATtRuI0<>$w$NiiiNzz7d^N-Kvmg*QPSzyMNi3?yUDpH|T_36)SE8$^6$ z=)t4eUIT^LXpA1x9%n#hK=k7R>r=_C44@`#+_Cy(pjCtkv?-8>960Ooh`UZ2xD#md zOkJMAI=(VZNyt9GuaMQy+~bzRemW-f)mPj4+FpG%V~pZ^dSa4S+Sk#obCWfq?wC^q>I$sULTcSi7Od`*VsqIADLTvlKJLA!&0(h6r;gCbYpGIY@umjtuQ=f7#O=+SdKl z7&x&n_jF&RpJOa!4?Dq#?UvH?Yz4!%BV_NMz1e=jd!gs>1@GYwg}7H5j1c1^kPrg@ z`d>E~n?MZci7E#G+z8p=#A!lN-x_X(v{`RX7U=8@R^Ka00}n{04ph8sKI1$BojkS<_Nv;5tRsT^ul?2Rco`C3|1ATzL{}lh?#rmKNZ|y-`GV<{2h6bOQ%bj|UkpCY`|E`@Lb?l=m?QNL8%J9Y*Nh-l^z8X_$8f-N`jB<*x3Ju~ zKc*NXJ1m;nJmB0)}iz^|C*Z%kQv16o=^dtSsNxuCl9EJX{ zpKm|7R(UW{iPN}>mX499!dO`JC$cifm+iv&e73`a?J&?fI*ChX*-teZ?;7uzmQ6UG ztE>)(&R)Z@vlrlfpnp~S$C&{8o#fITob=dpcSe^-Q*MtYEKKm zFc60zZVPnK^Ntn;-9>NWRUf%oop#Umx%F_k zGy7yBCq1IDdL3*_X+6>BV&>80x7&2G5omX2FLrCl$oPc$6;(?-7G1YdMgC_0%i zpCn=lUV+FJyGSIxu=Ld1hi@O|t+j%+_K~$|&Dz9UTLfzh^aG6#t|Y8<@VZDoN!t;c zD7SDEFNscoQK$);4381k)o|jA*H=UKZ)na{SE>+gvUu*z@Xtw*qgGzhrlG$ zQ4raSS`PG{f8OIqq)O2$RVWHqQBQ#T8A^)LDyhZ|Q6$b=&o4cXV>X>7(c{t6@nYWD zA~;(XkLNrf+HW#ps=y~{c0Dpzu9=|?$D8W}b6vt*hogt09dNk{8Jr#5KO3Ecgn(@? zQT=T?xe$!RXKp_ey~d=HIO!(|A?1bJ7h=u4yn)Z z2}e6VWXV!=wYbcFeX{iy_?BKZ{M&K-qfGH2D;!i46Kan-&T`>8Q3)`}2Nq{DDkjF_IHLi1Xoa4><2LXHSpd30rZrK-pnIp)JE$cSxGv ztqG3?lV!?HVhxt9HNaN0jiY{KF0)d4EI`?6ehxE8^quunO7i;@`~e034FXWwH^zN1 z=$-MygC=QciVGY^%mrp~@Gv_DE`T%haN;!`xdu;sT3_xdLB;H#f=uhi*!ge&81?>? z*8X3jR3f`^%;<*BVLYLQ9=)?78b}{MT3mjw<8H^Dt;<^@rlh^}?U!%A9INN;?Sj2M zqN78>U=x?9>lHN`p<{1pBliBu+b0uM1D~IfSo`4aKQ8Ne=LMmxHGY{d>k-O&R)WA| zg|c0dVOXz0W$k?II$yR$DBA*|LFW9l6QnGNHi;oSEP+5xqN@M%oqww3&CdwtXA(Id zNDjV&sv+{>1}Dhj?669_0=@Zh*WW?W#2A$yp&G}t+)KIEMP*J>;l!a=S~+h< zPW-C{$w(=)C{dHeM5GdKnLgGkfHs8enHT7xDgKE8EGuxfIgaGpsR}6Ch?AC03wBoe z*c>;-(fk1N#ncz2iKj%q*inWV;)_kHKSQQJr%81LWn)q`ZHZrd(DrfnN8KOxKIo0( zZ*>>_B?|W~4y+ft{zY-e%1*wpS19boZ+k;r&)ZuBdkcuKEZ~)cLkaK_zwPhV>0vEt z%f4R##EU?A`cibgijRww@~&6$X4%%xwA`74{*a}2mO1bBb%%_s=ea-0c4^9#!BnYl z^L4A3S6r+AJu?0Ub?YD!qgz`$RvI6?`0>S$E`B)nU@VTmRWJQLJW79w!ofV9Ypsio z^VTN8+LSOfiFj(}o#`7juiNOMu0PUUXO zkRGrcr#D%}WXNC8I=JLwWpXt^nZ0*@hd7XMSo@A!f6S~V& zBG#}nka&1r1Ffyl92-GmCLhNcMUYL9gKP*UGv~{v>0C;Xrgce-F4C|{Jrx>V%ncf6 zCUJ8Iu4Lu~)1b-7{HUm39>(jjWgV)^Dk-odH`3|}vye}M6+Y5om6_OW!P|3hQ$Vs* zZVv?#_Rge(DYG9GGfDoq@1Tl|87bY%%}7Pdh$6PsB%6rG1PuNjQbIBagIn@$tuRg3 z!ebv3#~Y-RZ0R>URCDPRq=E54c)(wIZVgncwMUZ2lfk-eK(GxYYy)KGcJ$uqyQjZ@ z_~DU5njV_>zR5ouu4;%4G6 zWR@}%g`oR$Bd@?YeJTtaLvfMPh(WSQ($h?bzKKT2J2Yh%OC)(KB(0$mv1=6%{~emo z^ajwsz=j&*<-DU^0PSIJ&y|o$B>ulft@kw0_tnY?_3WCF8z?AeI|%Q;!0v*UX0EJx zLR?zunK=5Em!VhzTj`m^TU;h?gDJ!&~ zV1~msx|D9huf!K{05qBar(d)i_pl#-P4oAEL{>1f&65SrOhKZU8n zq3b}mPEFpJ^oO>yc?kwD9r6%hxEK!Rx`eIrN^fB95}lj{-AC~Zsx(@I21yq+2CuI9 zvJ?UFHLwj!k&>|=)HrNoQfV*-R~e0oTUJT7S<=2$Xh6R@Q6iAoTAbCRJbp%bNCLHk zwdE(QEdY2@OThbp=n~w*GCArV)?HR{H;Jcs0J*%N{^>r;frs!<&sD$#CDZ*<*>sZ& z0$2&gIJGC|%AdMJ=Xn)fE5V6=uh;FtA!X??fcJfH6@b0KfZs1aQY4MKu*Wj~J6wWh z6Von7S2}IBP%%UHH|?4jZyc`!47r`;2xRerdmumz<(8T!7N`hW6G(3=J%N1Qjx2Ob zS1syD^|@cXA|CmM`ou>hC&ZRY8dMB8D%<4oZ&oqW{v^^tmVulMuA;e$l5|o zIBo>HDVr(mEQ-HH$6@Nw_R2k``SX_){4WTU8c}S6hFx!VB8ZhW(p(@@E6jzWd~>0= zHc_`7XL;5=#TWMp|4(=C9^KY;-V5U34FVuQ5(M}r_p#>;8aeS#JOQ_omQP@T06PzO}g4O0N3dvE_&Ie zu8yZS>FO=Dq~7{^W;OHs_6E)a09_~fXVx5o9}dphXP^E2_P4)habMig2d$Ry<4g8* zyia&!CNrOS=EHkgjgMqz#~IekYO)GFj-v8olU~d5iLNC%(S!QXS5!U7JmS!H3hbaU zL}rv{oHA*GSx75033G84n{R}DxFAv87nFz6Q)~%_N|BMpQ)m72$EaC`c&Dz>5brJ$ zU#LnHs!(-J*1b;Zqb4*GsCaU+6B&Rn;5AR%s;6zaX{9*f>5)7=3D-`^wKHzrncMzE zx{`Uu0}o2U2zwa6$8aI{$llk0pnvR!$)?jop=4gT2*ti{2xn+LHIVbk8|LW_kff@< z21#0r4L%B-Ir6VH*-`+QvFLA@HD)ZEC;;WUwOl%*d0*bG0Wkz1AtayMxc^-_4N2QD zf{bJ2ELx^@M1W$HQfvlP4vg4SNyx11sa-qwAQIfioulgnl++_=zNv01YkU#*~pVOqqFJT*L2gDfLf~ zI#=3YNf!m?>k8IPU+bYM`C~i=wCU9q!?y5%kf&aJtVn@;_e~1 zuA}4;6O;s<)g&V@!_@t?Q#VgVn-UJcq7nweC3xLDo1!_E7)&@lU&(vIO^HD%&wEFP&{|EXx zKtGjj$Y0Yn0w!v$Y1Uc`XfgWR(CcX%Lcl7RYEhaDFc+Jk45<;QzryOBf3s68mr~yAJVu>Yiy~mJ;A^aT9r32wK&-&71b?mfTtIQfm9FysIedU2<;xT{Lj% zpTg!0pb7|3&Biaom`o++pJ+G}jVNvqc$NT#pUA9O4{!k+zQ9GyRi--Dg`47^5jYEw zyI$EjMbF27sWOpOm!GC7(2a~S1>mK==hoi1y#^n0Nq=I^QL{=;p%acq3C`dhjo1=y z=ne%N-kcA!KZe6IF@oMZ`|jg+;DCLLWZkl6 z-MVVsx&q9;Q?k;I=<}yUVtEIp?rC`mXhr#Qd)lVqT+HhgP6Q!jWrwTgQ6ONSAA2Xc zw{$w}ol3NRHo@&+fjzZ|?yIsk5Z-Ip3{`8Np?%IKDf9McPRUBOC7aj(HuQ_3dZ2$N z%LAxVI#}6+YMMl5`aFg`!8q9vVL#4TfY%Yvclu(;lkYCvtuf?CBPL}%F>#&SAuIe2 z9&A(m6!*pdn-ZBgonvAHDoaz4b3WY4nBw?wnugV%=MF27>b4;P9@=i5h#9fZ4iBo& z!-KE`_5sl#jT){Kn`Hlo#zgf%qIgg$9*jE%!R1FPBF~LR+fe~#J)}+)^~jMta<3q~ z2R@ls9A&S_K)m8^5B+`U`Op)u9!eA+k&2JR9Y^RrN9jGmQdH+=MU(Em>VCc9BXfKI z4&6sPY7Z3|G-6F6m>Ak3zrDHi%#|WW;hlu@aDM$&hvmzc$S_z^ZdYCfFp{`@LZX({L-(>a3a^M0%<}<(&gzIvS zUnf^!K$*bW#MB5LAho0+NH|0OxJ9}ApLxT|H#I?zvoIR*cMwbH@#*KMXRb~Y3zcg( z4WO3Lb)X2_JgzSz%NlW&Iqu|}Teft`q#A|%hT3HyWlcLQ4y36yia!RvOj@gPb|x@` z)olXNL> z|JLp|c1QbP-+OB>ybIIPN((EDhCF4_op0=q>`x+$*{L@)KK^sAd~y#|pY;tT-Vjup ziT96)0S%J70W+BqWGrH_arr!_-Qch|O)G+_QIE)?ad-Vjt4n{E+m#VR61m@dv?)4~HhX?SQ@t^(>mLaLXGR@8qB>Tk~#3aSwx+DG*s z{8E)(JE18h)naKoaxVZftNo08%%3Bl$FtszwpD7JHv4#n5H?z)AU^`s65Ob_A(q>` zxRTojU?uC)?+{>Iyj|-+SUX~F7#D4u<|@TM339YXc8&;T?u0Sa%=E={#w>;}$alYgfghZXFT(@~bt_nn zKZBfEX~4q{D!%YE`TY)Iz3Z6lpDgI^RkSP%Qbl`sFw(eqB3a$Oyj`m9grWV&;&9Rd z+v&KY3LnW)6%*hbg8xc5s&eV74YR@NPgd8*dTxIqQV=P~XlwXESU5RAL?yZtDFAWd z^pkQ%HFkhjC+TbxjM$PTRk5S-k`8?CdFmpkVr>aehveyqdpg#eT9?aK8sD$ETlQg_ zwC7}^>6FxTDsnVB^7?ROI9XZ~Yl@e)-~$cu=C*Xw(!1BCJ;xGF$EBv@JSj19f%=R~ zFU3k@vv(?2T^(^(N3yw<2qL4gs3z%e`j+h*ws-A!?2%&#=CtPNTJ>}-UzdYSCVl?c zz^bn`?rTk!Rd3kv3`9oN_3`?hiK1 zq{et;x`q@rq#lxg6OXNzkreK+4I|y}971lX7I;?WPZ_yYfQ;NMHxQWl4AGV?@ ziW`htOMV=iy?$clw1OB5OftmdKjMEer1$$nMt|o4zxX)XEoAaT;IlU+-1t-|fMlD| zUJU;+{#i4Uq_rXVSfl+PBe3{(kOpS95=6=XpX+L_0)GAl4XXE%8PH5|ZG`+q(v}Z; z4L0aR0ifg6dq7MkpbFdqh!~T64n>^H*r6cw+X(%|Yx)xIy^?!xoP7w7?7PP^6>Jb` z03cHsm5`vOB{uMOSHjUIIojgv15>ltoHw13afMQImArQS=JhCaHpy%|ZuK)tXjq&; z9T6AfpHTX2U&arqHU5PFBU~A`krB8y%*K=zMh>u;n7uBR(+sU9FhIE|GMj&-X9=99 z2KpgupanD%{bh$zC=g5(1v>-Gg(RfW0>6QTG%_f#n`k?$f)%ha$3)8jtIq^ZK{I8kfxMOJQceD!gicOBWWx_6zWp@rw0^)~6=k$B+Cf z4U1VcK12$3t*z}o#oM+&xGT^{7#j|#$9sy^5Q+KepU~ZnKvvz5@_W_5NzGRAU zjq|3Mywz0l*Ja7%Zdm3mz=+NpR;V=?=dIdOLMl->y>}DCKQh+Ctobhf`60izAah0i zokd~(o9|`yWy}cif?Cs8iIf*8RH)p5>v{Gv@ln)UW#FikK>L2wc`tl0S1b4DZO@VL zmmRbI^a;MSbqv<3)5VBB$T^QUdeLpg!}+&#k7824sn46|P5vu)1OnV2N7;xBYJ-kw~ve znPFoN@wLiAg~ftyrUd5+5KDlub3i-H(K*S^QdY{7%p_7qm~~C3b>kKmI7wOnh4b;} zSxA;p_1rZ1(}p#dvO`gB{~Zu;@FsHngvTvte9x9~-vpK<@l^J{u{U~^M=lHxFk=;p z-~7&@+ef~B@@pqS`u8NNc1u-oRI*2M?13e@%guN@M-#3l$wjg>TfeYewA}N)?+1rI z7+P)Xi?{VL_VV7lV~Og6iQ-43;z#0+N8l8@eJ}2@H4co|dJHzP2_R*_a)t}FbfJM= zz{(afihUPDxa_CPjr{WYP{<_qVI>sn_=Pc1{NFIpL#1hM87aA4hLsyBL1y@7-=bEf zZqsm;X#g_b$1R+^1s;T2%}*r)Av-U;OTnNtS7-4|=1@FRLm*P8wN=#Yv$KY%c4%XO z!H?BTdc|}aYJz*t%t2dtOeFg}TKUOy4mP?Sesa<(j*%S})1k^(PCqd=H8;V855sU& zU`aojDo`Fx*@svbii85*!)8VDV0U@q^7#poyJ9uK{8=ODN)>^TNM4Sx6;78T)R<@F z<)rceDFh!yThT7a;M}tAtC4(d%gqR3>DwjwcE#Phu(_>}z$6E$N?JZ?u zZrPo(gtuMtw#VJ=w3{L_bql_OgkHbu@#)@j^;-%YlqJV5Ud z+W|Q9;!BKuLEsUN4s3Eqi2X?Qw>0Ok;Dl{GjV4n+NZ8MU{|rT1GG(Kv@bI}r23PR0 zWG@U~Tin02e_;SD*o7m^aZ%DNRKcszCC%Q1bDuaF!NB7cqz%pB*5y4 z?>dsGK9VRtDixC-+YNn-sfzsQKYsII_~5#?I$qPYVn}#z$9F{|H7b>%O{J z%bkuN*b=@z$;ZS@j|j}3-BRU^r5w`%gvXN7}W{eq}EBZH#m+VWQyMZz2mt8x0nHDxxBrbF9U+x%x&sN&H2; zjr5^d=w{~xO7r=1pkr?sZ!m2f{62rfqIQR&gw)JWfPgNyXx9luGJ#{9fL`tA4%956 zj!b!EB50F5Z8>=sfaj~qA(In$zSj8y?fbDW7+;#QK~b6hvhPjX8+6;DbAMHT&G5AD zsvzi|hU^BkD|0s)YR8i7A5%FoXECNHr^(L5e+Z%IgU3$$XU>!RH?aZTIoxJT=_hAW zmh?U5T}~uS%aC!(cy(;*d6gkv0(aW%DH|vpWHBRNPfMZ#K$aM;t62DCR%;SN@_v(G2DJWvv_Xl9Ng>x zwOwC4uykNyVBO}9c;P_DRxR1UF)^E(V#Vuq4R?IY<%zm(sji#iI{`5Oz@itnC5=%N zF)DRNQX>M07}tH}x30c5|Hgc5U>S?rR>`*&3>R-jv?sbVy7Sia5rdNA@Ukc2>ymt3 z#F8oIawx6#5m=ze*+4Hfpfs#V4BV%}JtUx9%XdagWWH2|@aPSH9JHPJy+gub!SG|j zc-Un5u~h&Bhl+MtDd9v)IF%BPq=b=_@aQ-$$p>1K9St_KJSEC+@Y0jCQq~HswyZ$Q>13^yB5KUSWO1K90r(%JJbBrN=kSJv| z(-^t{r1q+?eDoAnUw%+{r%@SwW%dvB=n&f5iIbE8PO}kIaqL>k!kjWf$;dJ>HFgD_ zx>LpgL>?IhBs0V)P~ZoZHg*l)8rqDT{S{^EFDt_Cr@=pn*O5TBH2hM`yWG24w>{23 zuIz?57tjahLiqGKs(rVFHlM1IjIHZKJ<4s^@u&`~;rV&ZVzx>QoRFkZYA)0dh#F%q5x$-_|2^ zwSkXt)>Y5ssS>n6W@oO1oT@s_TzQhJ)W)lXA-J1{pux57Y^;0?bLCk>H42qGMPsHfLs%9DvnYM4+=5KEJ&cuHy2hvv@{}s0tub8HZeb?BYbIL~btS;+Lq!9>Zg3F?9DHkQ280WN8(P zq3bMKdMXavApY~7yA+z%WeBZ$G*RA>aCfeFJ}A38@WZ2t?E?w-AoGVC6J9?DzqN|w z5gjQXL;hK zX=JTSuaNcN!9Mm0S(}dbHJ$2fI*V0Y+wkHSX^>jMRJcH^N6LKhGJR*(4lB&a7?+Us zjJ8u;oG~z(NfIiPdnW4+5h`g5*rdY~6>h?bV|11c?3JDmcHf=-;kDK7Bk}Gd$0mKOCvn zEUiS(Lao3N?hp54XOFnen1GznNP4_5KM)Xn@K#l*qHUlV&m~ItgooBW<)j6GjVS;aXowqW zym=#hBk3*$f6GxExd1&QhQJZS;fdHtbQofQxV4@2#4v~)YDRGcu+5b%sHZ08Hk6EP z2+&WWe8fw1RzrY#NW4sdG7?`PK+zeprS)g%8i78lFzE|?C0ab-FnOWo;$nccFIupU6ZMHf7B zNMjwH6|9D|3NeWsS_L9kQQ$5iyW&Jd4o7H$vrK_~O=c z=Q>_|_FVh9_IU#Q!i{G`MPK~F7him~{oIZDb1$;=oA_@}q6xuD1I!%x6>zc{UZRJv zxQ4j~{GCtkrJg{aJ8!H8pDS+_b1u7tn0|&({~%LehPC>|shRWV$p-tv+%%IyK=J`O zPY^COXGEBlx3|MjOTho)%$3>g9RNEBbl>O-?P43}NuC2_LVd7+#~v<7?hh$be|>v< zz5gxQnzZUgDRkVna6I|G`7d z=M!KZe!g)CX)@A(7ytao9x2+@9LS$)twRJe)H!ox6K-&|$npyo94B!dl6^OmR7VjA z7;6`Cc$me5yxz-6Z~}dPT>q|o4@*TCyeSjQI(-B-wMQarhYMNH=i~-um3i|My0-+d zWi3lvX+uW7l%cjG(qyP&;YbOC+@!{k%o~Z3tKp z)VqD&lAqoQWGS1FD#|7)ZQ7E9eJ(3hAj*f#w9ZyeMoT}<`p1m$;L8h3SbB!~p{-z;={vL7E8+=c#h9oe zeS5n&iIF7!0f8W{e=3|KX7`z6nC=W6yi19%5_ky%m&K`s7W8a@qXDsn?hsNJ2kACb z3s^;Fu>N=%7gB}dU7 z=e#Ubpk=}@Wa|50@dw3$(wetM-x!TOy&@z^cSxl>7KYd1hyFmqQXyF?qK~awYT}j} z*lBbYWsho#YCGUQB_S0TWf z%Nwm{)Kx`w#1gT9lBlfzde_&wmP@z~s)!|7QO7QL5*1xiMHeJ@jm>wCEDybV`p#)k zC*(2%AmR2$j1hziWDV*zuqWUs-H_z3iQsm=(s9i@gWFL`j1miUPwU8r391;Gmy% z56DyXX7WEZMUQhz&yEWkK5otu0$M+FkVA0DyYS?9<)=kx27@0)+y-`Fd#6GbnXB1) zcQ7GU>5eJrXx6Pfq4>Ylq729;iRqL+)K6raj=>*;{+gg@%&F5pCu_-3sE~2}s6)kKu$nV{6IJp%RZb!D^mYlseDzqAixm`bNHm~b5&iwfqcA~ zC&YK4{j)Xmi?xtEQexN{<{nxSLtUoqR-E0TJRPf0&XuzOd47=Vl>Iy{G|)HdRnkMt z=pf{@I+aA4=4Q^J-V{71>riS(X;wZpIho*swyuKitFrDPBVuSFv<<^C> zHIXMxAf<@_H0pwFwc~1jSJUn=21XTZHj~_cTIFPcl;$I(ygY$`0Da$2&B@-$>n6h7m zEz>BKasq+6xz1i-<}$rzkzQkmIuiH+;MIz=+*K4gh!StIA_OnZ%_3_1H2m}&eHdJ@s2~uj&1Lsgl{HKAAB=;`k;=3aBZ{EFT%dl)h)TYv7$R`lT}#VZrR9m z((#7l^}<_)k;0F?<+rBaJ1aHqPI&i7-aX+X2=w-5FnUVXN_2K75e36_%k^IOor4MY z4mzb^aI?`bK)mkSD!HH&BRG$M59M2Px2(FcV!mI9ayb=$Q>8x6@47)E`o8t%HmP}6 z!~*k9_Dtt0_|zjGJR5g+CftW5_u;tvFjUaq>5kc!cP2`0}HM@d)69u zuQu%FJTNfFk0m@ql4mIH0oSJDt&?w@jMw$71U{Hdcpi~FkHj;dPu6`fPcRgL9g+cL z;c;xu)4b|we(wdTWmm$pTk`CVdv>!M!4bga9wE|;&}^WmAFtq7$tMC01*@;f;+o~vJgku z{xN?VsQ|SqaRU(063V($Q`i01XXaW0nyi?QK+R)3@C5P<%#6Y+Xqs!mPR`=@L=d7M zKeSWlSZ)lJk_xaUM`T8UGCCNa=sDu|@Q6d?^qvYlb{P#56pKq^ z;1jXb6n#&VA*uvP&m5^Q`LD7#29&sio>Sr)oIcUzKXw707Rh;_=*KED4F^g7AbCF= zo7Lop=h}%6)y^Fx%H_Q}(K0n9x8$_{@#)~$1wH@|%d|GHoHoBp*d_9^gIk4OVM^nC zg(3HgL(n5(LE}k>n71yx;7n4ChZ(dkwhNl<#xKpxApKRAD;Q*IPmbv>QJg2zh`>Bx zI6|HWV3YqGqf-1CEn~DKaXFZFU9z*)ef07eSZkp&?KGi5#P9qw&6GXJjD=|TVxq)L zcP?K5z(+>@dgpG0!nxBKG2e0}o7-s>Fw-gkRhLtI>c~SHS<%#?9Yb251=c*e7=Gp+ zn(30o&SKOW)hK;{TI+^fS7R{+YE@35MMAJM_o=C2GDcA7ynO80uR;YWOK%)*Y|4pd zNbl)5C3W3@frZQpwLd;hBb|DWQzT$z68+^@KZ3bKWS1pnN%ySyeYBKF6tmcaGZys< zL5&zOBEE?$8KifSlKe;Xtp@3(3Rt8kHgD4eM|wNjrQ9%q=nlSs=gHfm)rlx{m0Yb( zYV27V=Nhkw6$f>3umH@okYzx!r0WL_D`OvA`rXbCI^!h=@ma5E-_Q%?b;*Y2JG()t zly}@W=qo!P>Ht8Uly-tiP)e)gCmT*=gKw@-UQw-kr=Y*W@U5=?QkW8(aGLflnX^3p z167r^%kNR+4A4(yd8B2Dtxf-phUyTjR%UsGVWJJC(1Lrk(>Uz5I^Q#FpqpaHP`DQ+5p!^f+S4D24 z{J~yl!P@-5^j8^+UXJlHhM@-5JCKcxwitCUuz{7<8WL#)X_ba(i149PkzE5eeAvB8 z8a;Kanb(Ue(Dy~u_vrbe7W8~cD|)_!EH|Cp5fAw<&mwpJAWtv;fUXfJr|cVYdJ#Dq zY}tT!5j~~pBK&4YHY>%XC2i1E=9Fzj9GgZMJW&4hn1;L|+`;hF2u?_!3uFt+n80l2 zEjU+pl`%@6b0Cyoj$SbB>C%Lb_!jaKi9aCzA)V29|2B_|!EU7-2$UE14ZwxSo5~7dRw8v?Cp}gU5j>@6YmJm zV)FyHH^jm{80%T?k+$r;+b?Z7u-b4S-f$pU5296a)Fx{i-g{DN!mUKp0jcRgy!HTH zui_8K1j$t&xAN#{!`~LzkpDKEs^QJ5?FhrSe@Y`U3)QmGNuZI+yNi`qLA81lG?=u& zYBIrLS1#ZamvZ`*C$94>XfwG%|35K#e@acp8t;#AmS>)NHD#9PYOiXpR@Re#>AIs- zax|8l&4wQ|^j|^Q>TJ8nM zEdDWm@T-49XCD%vsmsV>^?Vh7M7MrSfN^Sw5@mZTzSE{LAF9@NQr1lEqrQ3*k71@( z`PZttR;wt^XH}0>)w6gCYCvM77i2GSPO6gSm5^ch8}B$E+SmiL2JF_Q5=;n#lXT+sF3-AD~&Cb+JBE_ z8S95#U)<5m2F9@XXH>!eL?CMdvk^+5hpMrcRYNs_VPH!5B@0?@HF1xi_On87ZGx4L-~81ZN%MG}v)LOM({ zi=@0*y=eBbBflh95r}}0z)Z<-7t)I17WItyA>NcSF6tVwld3QZ*l8BqF5qVA@FmQzzy-or3mi%`m<23 z+>ZFV*mhRdeZB8%eX;44u|(x=sd9JtBuNf^tMG>6@~`_EA?-7M>;qdAyU|!+dDn+k z@#f(~^RU!B9Cr+3I_^z4YGZZDYEtkYW~31!dpEjFEj4N z1rmHSD_f3aX(h-Eh?H$~Jop0JM~Hugs?yL84kG~=ah3wf;)@C@NjLQRBL>hv#<1}o zqG_4K*Av!qjER~ioQL2KXC1z(^^t+Ny#b%-5dV%F8(3Rvuo58_I@0XA%(hLhn}DXd zmN&qzWvQRCYgwu%0po20SfnOw{A61!YPgi;@YyGbb;(o}J{9W4D%2F)LR$ca(3dF= zOv?7kn8jU2E5E?b#1Hurrtf%)39It0ZB}3beLfae?p3zWI zx(JwV=}TWm77r}Q2J|b6%dU_rT(Al`pseJOf6ZFHYAuIO12!=6%qKk|vqRx= zwh7!iTo^+rkf6AZYKiva?Od+7J!A z-FCZe!(w!sA@p#Y7mjW?1k#C=fmtw-6>kpU6P(_t8JU@;%?V7*847^u(8LoaSo;|< z!b~X}TI>u9hprhe^6Ke8rsQ61UI3%(Fe&@1Ry%DN&dlpIyCo>@vI#?;pww7GQ4#y`C%KN19J`k1_eym*xzxHuOLu_cd_s;Oj;Y7u5sbV)>MhuQy&p~;)GVVQq&x-K_ zCqKi&s*1`X_de=C=bsbKCiVsH5yoM^dU>b-{+ zB|~>n?r%(3dY&EXaV@WVht&IxZ0-a!%yyhZ!EQiHQ8OY9>fq5@dM#K6V{myqW!_ES z+1iYx)J|*cQa70ueLEAS{#&@jmP{-T#%W?Pu#u#UxZk0HMY{^c;YEgr-%eL)MHhbq z#n#G}#h>F+s8AVbly{g08JRR-Nkw43z^&&KMfFlqeb@|hY{_03?U(E|Fi1e0bbI}J zWn=7#L}iCmNh+#N#3llG-2$_O9&&-u_&qp4*dh5KY88rhVk`44`#0>%M-u)X$=?$h zif(`X*e8m?QEpsPz8n5~8VFR>6b20y5phZfs74AC_wOhPfooLyL#*@}bi84-nV^s+ z1Fwu}8O}AENwHi8Zk^k+aFqUd_LOOUd`kqdO7NLx;BtIR8%>5~pM*jzGy{-{e8^Z< zWErTXo`h+&V+WW>9{u?-se06>ahW{U)3{6-@1z6*L(m4~iG3|$CXS;%##zdIl@(Tl zp%^VjXlfG-#p@?ys5hzkdr&V79&c?-A3L1zwo2Ys!Wy3wrDQi1o9zFcHJyEei+{{gS7L^Az;zRS?=n8GakNn6W z8`Y!w_tDCX*sF?UdBAZwDZ7a&0xtt(2C5lVM5Wm^+J-P8_vmP5wOUXy z14`BHBjcTaPkl}dyEf}2Q+Zvo))-GJNEX8 z+b4jRHgTFjya?8`q*?VUIp!>YW6lEfB6G}nvtUt(AxZ85jt`#ru8f|bV5;h}Y&ths zy10oqzwDGZ^qaoXkj>4yVc0Y+Hk{g_0PdAhtW?-&kRJP{r}4$;S*A2ecri_xq>;oIa6fcNgCsa|fjoP399lawmsS23Ic8NZ>?2Qe z+Ip zM9K)uj@gtuyBOlXA_+F*!VGr+@Mlyry2co$8EIhJl_a|n>iXsC^#Rr4kB}{4Mc9+p zy%TtEF#2r5wMBBl4zj@6mMr(bw}Y(F@QwfZV9k_k5s-VVvd;Ci$MFo zGn*)Cl#1ZP+={0WIA?ogPh?NBx^As{$7=PCmFd;=1p(0WoAXLQWNF#Q!s!C_imG47BPScoXk-{6%&Zi4{%&4aH zi~@h3UV=54%_%ng{s*-)jluNNn;Cs18?YKEXfBkNxi_ej@zg@DGRa zJ5m>UGV&xWo%?S;ohWUQ5X_(maRbsxS<_%zF{#51R9>7RKyynJsJrf>0&vMRF*`O3 z=a_abYG9T4cXS8gyJoHgxgHxORg~Gp70T!=U1Qa?>&On`fGpx9>_bz7y^flKVv1L|grd*DG&T!e4z+aij=L@gm}g7d7C6YZS3j zZ`%r&YG1d1&HlFYwi7RPG7ayoJWk@e+ZQ#*gxIdwuI26T_T7Qc`Yy@c6=xr1ldstd z%k*mm%}@Mkg=MTB#Mva2di~8>2^+w))Ke4~sGF$BE@YoRvdJnE{Hfo%59x^c$T!M_ zcQ8TNh+?>%jXD|^85Z6hq|f6f#6CI-JrV5vFN4EXrWr!2JF7H$P9X;{s^RCMGI~}j zsv|~AY2?B?frPz5vQxk^M0;B{u9%k#mkX1v9c!)oS6lbry^v@flv*hs9P#U-1`Mg_ z3!AhvUc-r54@T-{LZHvLCkQqX37p$l6EEO++yF= zw{@!@$YgeAd}gYP@2MFFxDgEspNfhnTZFs`j-3xOQ&F~`5q}RgWTGwc_v!2p0Mh#& z@h5bllQ0pn=`!1$wCwYrQU0u*Oa@;8R==}NyX!V7o)fzRh9PdH+;0;cu27P$S44Ek&iul zqt9j*4)IY5?#6y(9 zBZ85B%fKOX7ZpCE_KY(gsBq&bmweziJ03LSOU-M9fdx#%VQ8V1AJRy+rd(&|&SR`n zRLoP8*CwY!hnapjJ7;5BgasJ$jUcCkraO6M7$3VbJ15dD4Esq$)SR2WGB?Yf9@26i zsAOn*UE2IZtJ}y#H`Ma%Q1}7*lm$I_9@^Rv!fBTqW*NJLocD|~6U8=i|H1g2 z@)N-A+-(;bydbaO^F={S&iOaFgoH%77!Ea-PDEWw8cpykkyNeEt}tG33o2`SivK@#jd)Hg+I6 z3lLWE)_z!V6?<=Wge@C-J7O?`a&*1nO1SGJcO3}H5|S@Fy>K#=bomf+D(NnZSffSJ zBkG9Q_k7r@8H#qVdwjQ!uX!3*J&m!m2~V5kX^XSZ$Eq8Tee0=jJhgl=(bOw7^(H*K zB+st6XV<#B`t#>&iy^;>le=^f)-k{JS0r-~!6@vVg$xO_$ z{M`HOL9XTjDN`xyUGj7Z81uXfsO9s$3v4qLtBu!+V0M{M_5$Uua+Z_M^f}Y%o|7rK zufX3|O#Y?h4Sq1RTePhRbk>ZPkZt4qkQFfqw$W_egLf=81HWM(lUCbn=9}h4>yi~{37J@KS{7}@XxILL&&vIAdn36h<&n#J6OMMt(H>`?Bs^H2 zBU-X`-Qij~zUHV}MfILeI9en}OWe_d_$Fa1XAtOz@`#TAGj;nvplNt_HBfgA&`(8b z?4oM~{+62YQPzwZf^b8xH(5z!WZi({GQ=Iw0&9s0(Yj^O?lu)|z~@*t;4h4gPUwlh9>-29uX8B%i9%1*@Q1qKZUNq)u}Q6 zql1t7cW&zrnZM9E+V$)f@mpv!5MGjB2>#XSFu@}yF#}7U01GOne3Vo zFK(ThxHvX`eJdOg;EI-%l{+KG-aIcX?AI(MXbgVjZ~RTtqD69#Y*oP=?OoCoD?MitA0nA^4@NAQnHA{&u zTcSj+%r0i)3ESYtjDo!z0;Y??4Rb`8_RgCj{rR065Jk^hCdpasCgp+~vaFaH;L$LT zF3cy2+{O?E+R#q&x{luk7YukuUq)PqH>i3c(^H_qAiC4m9Nu;|ElqY>Od9JxWVW<( z-X@>#MX62CGqi#rW5A@!SO}Od5RcHVzJ?m{JQi_gRv75>`m|X}A*IN3oy=Z@r90Cz z0Xu8o=L2@ATvp@a+x+1%{pR4~M&I(Krjw2hD9dIXi#B1qVDoZ0Q(37?ngG*Wa$i5 zh;E+&$(GKfubOP0Uw`S=OUuQpzAbUz7Q{^}tt5sUxk^j2OSsA@0Mg(_@GgKZ0>6zi zrV7M~D>K1KsCisZnNWzS%P2O5+!+ozc)2^LW-h|X3|)gF3_Zlo#jSEi+i=!as9FJ> zlt@PYsp5gbq5j8DlEa%vPoF(Da{A2EVkxzZ>&)0y&Xs<2OvKy7AKeEl6B)1Y-W!?p)gS+JTz~;PkjNVQ-b}t@m}kw&G-Y^=-&N z_Qgh|rhVb#AD7lirP~vw-BM{cOg<1Fmpj6DCLGO@gUp?%6JLJg<%F+Q^0kJKCS4WL zOL12-KKK01-zxYpl&S zhXf)Z8FikjsQAW#$boyl>R4Ia*M?8Bu|2jsYW*Mg>JhZpTM7muK-8S9Z(kmY*LCBp zv-|tceCL_F<_`-JohPKu6OfOF5c~?1`_{e5t{qa>AlR~9M}&J_J6C3b$}_lQju(Il^XZneInj4fD-H&#M=no>)s`G zACC^j_9d#e#jCamI3 znjoCUce)C`F1;;Rp;m^*7_HoiMA;j27CI$V zq{2@;bPSP`!B3GjgfT_cQc-83XscAT6>?K-VxOg*bm43EoA$_|Mc0xm?1GeT%~gl! zGO^}_t4(qtoV;Lb0ft(0)T}ycqAw^I3J(_CEQs_*`(oD;)@_n?Tim*hvdg`??ktMb zN5&VQU3!-CtBQ^h&O3SYWVC3J#fZbqO~;30_erEvMIs%tHu<+eTCTHsQWmi4M`hka zdksI@Ydmz&@?*UKh+rne&|b~55Z_MS)J=eG(AnBEMoZ)Xb&s+^Z>1yz8mNJ3v%Dbx z-7D{l8@)+S#loo#qmg#wTHxp-8H^0B2?bh1ddGECAvNV}l>> zXU)_6dqgd^0Ii}A9bvrcGoU?~h>?aA93zp;h6Ipl4NziA!<|vuc{aRjpTCY!Z)y6A zGpIrKq_=sjvFMzw<=+-W4_Z{cYj=z?|8}$k7RSYXsNq#=)&@KR?>ttW!y9e7-3E?K z!rmy^8`tb@t9Ce+-Xhr{2jhf{riqMrkecbi7Xh?Qq^)p%^Di``j52XfIk6)jLdbZ! zV0C08MVbG5@ua$%&QU0NLD?%^&jYyq64kRAxr0q+Ed0vJS5B@OeXB-a)O5RW+4O#4 z!njK^?uutVx!eiDr>v@tz`>|0FDZk{SdarChylG?MM0@rjG8Rx&^8t}CJ0UruhYg~ zGY@!O3z&b+JfJ73$w6L$khfLS3e-aEK>3UF-%)R$kZS zwkmUu>+Z~XRu7P8^`gu@^>>aUign&9dgiS$(qhOtv}MND{#>3?H>68Fj2gSAN^aN? zCe#yXobp^Qy-@%$iU%%dJCv;9#LNN;iqhi#)4FM6Cj9)oE#_0wDQEKqpU-hFm;%Oc z0(*T|#$e1(581(CM6yw*m&YFYdu$pb{fjdb&?mqeM$%iZR)AO#2*o~4PR}6jWghM3 zL=hMKSEj~hNfz7X_h^bC_ix$ak{bA2IQQZlDYkJL|f?Hf#vRh_?T?qYrd7`zgr40`IrofJ$yLgFZJaG-~5Y zmR7uqeeRi*Z;$j#5JUKZ%cddh6g$F)(^p(psNnRFNHdn^rU2c4C zYD}d1TqZYFW7D%;1?=YFwXw^HS&zIgz!wdK`tf9t`v%;n$=UNRZ%+|kwB8JwH$nd9$xa&j8ZZ{ebG5}pzHOHlR+yi$I})ye73 zvCDzp9)D|Z&w2P?%shiS_MaM{>toN4`LFHn9qsMu@E?PP`V^fEp6cxx>F`g?j?0BW zR^2<09PgST4S}G)Gb8+GUE0CK`s7_Nh&-WXRMyCSGn!UlA{N?+97wN^ehF zh^L}+L??Ol>5-$ShewZ|K07k{=*j+(q0?thiQOzuHk4Sr0?zSz0@GQ%On~G!!#|@% zI%Q&AM+P|4GePFwC?)KKsx0rPkf|xq)f8l=%w%AO^xZqq_$d?XgEsx-FMjchm!~MF zU%br!EV_^ZkE9G^lh@!L+JUdpOr?JYybW&K`1OmZD5Oc}0+1%9%z-fxzmeF67UEQG zTRCS|ox=lMJo*(eF1DT#D*}>1ewI^O*C4{B2G+AkfR2w1C@UK(XJMj}DKz9kt0vn6% z-5*$gx8Q?^6E)(W?-7H(ZJtej00?vV=jEF8IKafZ)_zZ^dQN+|N=s--G! zsY0d*Y1SNVCOeHdi=1`OMm|1@BKoC@$kkO_P25(4mWga%>Wh|S;&s)4Kj^J~uO#;5 z@?&?NdAIgXEesjp?D^u|vAgH*p8w$axc^YXdnkMa`8RI)&=>a}!w0eD9VL;u=+*av zcV3igyA!_dgrhrrc1aRh6(cE+`zq^mMKzxdM9OL1#;QdP!ltG3#>tu|Ry z4n<%H-72ET-V^U!OB8LBinf8Hklxe#csS3nkhD8!|L#wEeQ#ZSPm{1wAxvHJ7Lx(gcY0!1jxfTW`;uKf@vp&BfKdktIH8Xj3~cqHj4U2`<8 zIuLxD#PiGE72jRBa}*j63*aySCanIjIbw060Q1U@-syo-_b;j$>lU2NLj&8qNF9*r-uD z7!s&Ws0yD z`_CL19XT?B@54tkvR{Tw2~lvwNeujyYjgxj2S-LnPP6p`Sh#FloCyX=ujI-kFfB-! z(b+K(C`Y|}cBrwSNL$yxBkc1Ss*cSwoAC_yth@X?h79}xuGiMx4t@Qlue}uSI+UnA zEY%)HAgZLL_Pv+mmR@``Y3&v9%5KTt6F2s7*2^Be16+*1p$_>i0vCbl+J1xSO{eV8 zx1Qn*yr4*(kSYK|CSUneljlWdwr*shb&T}n|AZ&S!vsjxI%R?U1Ok+ce90N0^?@xC z_bBbxDB080XcYvQef4&_CehtLAyADQDOX_b^5yHJvKA1F9m*Hp^s0yUL|90)Qri6j z>0*i0p(1T@L=vQlB=r;v2{6ZUw6_px6Cu*xfZ5@Q9y()OOfQ`gxh|Fwpy42rf>g?e z&N+!XL0-c+YCftGEqP)Mr6E?8c$z>Tfx`q25(p4zA}~Z?hQK0$*9rWu1int-Jpw-^ zunLeWOgA;ukf1jrib=Zj*91N$@Q(!kp1}V@;9m(a`FCT>>8v_yK_*68KXBKPB+z1pbo1|3Tod3H&2K zs+gt)1#=sGYGiQu?6K3sXT^T%)Dr}*5jaEOs|4l=+#v800p<2*q`c_Ix9Ind+`FvzXVs(Sh#SU|9z6QK$Ic~WPOwd$%4X#!}LeRcG3Ef zDH)2WDxCac*8=-X>e46hw=A?KjUK4o%b(19ATARG4wA-}xb{OYY-KM@*Y2LKCa(Q# z=#BLF|3864S5O)DNw$jU?u4yTvNbN4HypacvhbOuXX2pmob8gceW3u6h9hTgJrnnL zCrW#y(w?}kIO+89L_4`H2ogEG;X_NuM;t^MQSR`6;FyR`KTtf>8F!7WiK#xuZU(g@Y z3kVUag2#YAi+;+W(J8TV)mG)gPxGV7X`Oa3QfHXXx8Z+ zk^ncNL$8#ZG!xE{I&XPgfr*xBO*- ze?upO-k0Nkl8_%l|fCpP`jba1(D|aboHTfYd4tx;T=nTnB)lS zYSvZN-0r(?Gdfxx>Hrq38--PrvkVS2(_GSmGeRMiR|fS4>Kqw39Mn8As4-B6GH_Vw zrwqKhs^;j9+bEA<@+N)dw`T8~^i|dH4PFHVScVc7S4E0%RX{kMDC&g3ZJ}_(?4>NU zphs6y9jU(sdAm@v2Li7Wii1i~M$GrwormiC z=Zu0EXs~$0+AmPo=A?)kpQW3*rq26J?J`Wsk&lrAe8A{K z>x`BSxX8z7!$?4xei=~crx3-tAlf2TY`;%89x8VSgxrMe;kd6QJM9yKiOj!pL3H18 z<$b#TP`T-~)9}az5gVNK-lrQ6mAh4}zC}XIhS6n$+IB98+N83r_vyw%nHZCryJ~5HCU7;POM|-W8!sfPQr@AWVv@50zWz1q01)8Pq?<#(#cDvyJXN zWN?GSOQ06u(o6=0g0PzikTme%0R+!dLC7*4B}uy%A2@d`(c{??J@8DSS%6oxTo9}S jjraS;y}CcL^qUMH83lsX#{PQUNAo|Y_eZA*SpvKfc~Daw5L0+cN*=rFF6 zKpM^%RT;_Mc@e6Pg{VS^>abfEqF$G0 zjkcbl+Hr#}M4c`~eMyK-x)7ylH0VM!mZZ_73(;H>qUB3NwCX~%m89X*g=jAc(V+{` zSrVd47ovOIFzy)Hq{G@~U8qu=Z28g%_zd2$jQL!86Y(F1r29Ygv3A;US&e?0c4q~4rUib)$WUz*D&P@oJAZjH;=?yM^J3YqoXsy>G0@i z-Z45lJsX;zqI=iq=xg)ADcQ$5IvScC8y)?Kdq^dC^vm0xivSzjW`a@RW-=JPHa$B& z8J-MZ4Q_k-+SuiwF#WVJdnG&;jcj}Jh3(s>!a-qXbnaU8@+|%&pKXDw;hC%3rY0|K zlRS0=1_!rACZpm0x!~BV!HIBW+uY>bwowEN%?jH>laVL|mODvc?i#Bj1JvyzwE&BS zPtN4enEW}DZSj~uJ}jIDhst#Ha0=dP9HPSli-4w(5zrhm0a`+4Kx@bXXbWNL9I=ON zfQ}HR$`NPC0q6>0Y8WI z{|w+Z7w6OXFTJ!$zQM=2QKdU@3wTPa(=0@f^IEFN;!$qwS};WI%00)$4N=CONG{sB zJ7PG^y~RhVd&yVapiMc%ze+XXq>v#F6*deDR4BhSZ>B*vm$!~egD-DpgD!6w#eX!C zcT7emXCl$y%vd;Y#@L<;=Z#b08NV@aiiD@e^L&KGh(;n*bf3>B)Zw4{@Z`*7baXW4 zkr5kET-vB4F99raxu)iC?sq>t33Mq_VMw^x@_<7cDdo z$f2$o-r|9rSSuURVbKX81AMp#Eva;_bb~o9Y?a2N5#sc8Qam);#&}m6@Lyl+TzDKZCk6W zrte{|QW~648)g4=Pt}ie-@sfN=f7e2z@$y3&1rM8rC8KM$xzLEbzY1szr+A@3apX&!rZv^X)u8Wfb2c=e!c5t^=m9;Z8Ly1s8| z-v>3R@Ow>nnpT}%8E4o1s-~p>lP>z)HQzO7none_PKs40Gp>_sM$XlZAf=e3nlntE z!3{<qkj2J?=(y!1SPzz^#IP~PhL+xu_sM`^3O#p>>in+m)^34d-VNA8?beqlTA z%a(qMsE-QU^h{O#QfxnW=i;i{pRxHjsLP8;=<%^VSA&jL=st*Axbz*Z*e(X)34~g| zaVB)tqvt({5uuTT#;MtK`>C5xrOnxz&0@{wOwEDiuHWkWjlPv|w)cS8dm!UJn6Vw) zpoY&QnZJ)3%Kc8*PqiyIN{HLhv>TrHA@DV8rnSH1Aj6aFF*(voc% z!$h1f2P2mmJ;E@jnJGev7pG|Q2C`LCwB#~GL5YzC@pV@xkKKAI>-LFmU&iJuEu#tH z7)d44Kt1LP{-vu}!f!xO0v|>!$q&z%Zor6OaxwI5i5a%|KQiX+qoZtk9UT=&Y#}re zI0m3Aw-BBawB?puSkP94NB?hWzw?UNvNOZJE1{34R`AKVixaFG&veh~K-p^RP^6P( zO9Mt6j1vmuF4A@8a1tp!B&H2z0TGX9Y)z%OE3~hV<*S~&%kw2|PnY3K6s{y32?(2! zPzlN^CL>_-!$O!vj@2qf)i|F49F_@o(iwfEd=00+efsHqBrWi6n_+Ijr0elaUuM8}_ zc`rT6K=+8i?c^&1`05M8o0}vfNFS zy*hV+lG5ZW(8OMv<#TWqXw4!G;j$Su!dtE;BXe`+@>PE9OlbyY;)F#m6-*DlKc1Rh z=9hV{eV+);bsCqpgkc0X1BWz9FLw4vYjh(GX%KlI3O;NT;}A^Z*=d}KTbV0aV1 z_JfbRcGh#RO4-bm6I;PiZ%`J&w2F;2D5JSVwikqVgyvsjI(%tw*4-((J2SRUY0R;H z1z)-f>){c&YNzW(w{~@_WsTnAA;VFpB&7$aC4V|u49RfV04fBRZ}bRQFvJa!DoqKn zvW}s=CFL+&AuO>A@*>rJ(LGJ|EV;BLMO>>AWP)2T#tlU+lW<-Abc}oXmoB323ns{< z__Q*SD3RHJ$fzx+us3cBnXdAJwoc}_scfAfF9=zF+0al(Gh|(`EPxKC3oh!LxLKPU z&&|}Y8&)T#3E5c6#x#xIk}GbCo8y*oU2S-7>8&WOUF9pT^9L?niXW4b*&zs$8Lr4& zcx-a~nlGq`YJH4Tja5JlD@zwCPyi=88-UbP6-ou}9eA`#} z&l!YA!&mq<8`sg9-jP0%-tl4Ga!tyTJo2Ds)4iI_t2LX`Lbj$?tm)0LFNNHEuYJdA z`;L{NZ2NApefKA33ZL`T-gez|r7opA(&L$y{;Ve;dIA~tylT81R7KIWvSFbX<4NU<){?Ih%0%i5;Dl67U5lKmj6ABtu#uSh2f3XUM z8DNjUgeZ|e2Uz5OT*(fJRC? zt#NichCD#l)suKKc_qC$=c&2nzUS#&^>n76%zFAoPk&;FR0!=KT+F(AMK@M@d`0*D znx@pTbbGd@ORVWi@*opyoUvltgU-J6-t^w(^WT3(>_3+2KelG%H=W><#vj%Bmpij{ z0kMt-E`lcqlP{#MEN{+M4~o@;lx9n=zBxIcoJW+3mIvS2P2`7Vn{vTs_%_gIiY&pkbH5LCVqf=|FA&Ck`zPoBz74N zn9zLWPTd6e?fA=Egm7ejDyoriSA^dPjzyszWIE$mtCbeZ#5Y&laO*uv=WwRy@W!eV|5tc~ zDaB-=pH3ks;03-^jHg{>WdC8kXgkR$7QrC1_?Q>;?y zW|Ds8*Wnf+4=^O_=u_TE?Yi^Cs=F)WKDJ!*{iaXMf8bj67vx;!*FFKH`1mL&Nb!YT zh*w&05|XJ4PKuRpQ%Dlvml6yUTp7Wjm9)M~7YTuuSZF%83gOyNM5g6c8xVe!vM(b1 z7#>xUS0=(!vw)JY_#+BM?4=?se)9U8OK*PLM1wf%8x(zmS@&SZHn>5(1`u1jj4Rfv zL~;yer7Ssq#P>Yn{lZDa){8uuq)}Z~NkII4Dyu9YZfd)8NNn1kVc(TwAD>ylC*vN< z*oI1rO4OD$0nLNjqAH7C8jmH#I0MI+yVymUX!y4%xrz>gmHnB@ zeg$@AD!Xz}?YX-j$nNB_R_&;=tZ@K~r`MW!a~CE*1z4KQ;IRu}U$q(YY60{z0jSAb zMKRgE@4RyL zaL>h1U%Q|E^;`_#!Qboe=?TVzQ*)Pt@k{Yb;DzF2abYZu^%4E9PKICiQ!M{siWcaZ zn~g-{LL5Ft=L><+{+AE;gw$>q`+6<}`(s1>BNsz2_aUb032FHccWE?0)B{+@`_Qxz z1^NzxeGfnBTHw?S_c{vz-DF5i07MrB23s->D8I~4qb#MDt_+5#vlxb~cj7RTEixVD zg&QHA3Boa*U`9*57K~AMF%SK6K4g^4UW8q77~~dn4q0S2$`5x)%GCmk$4t>xKE)M3 z>S!tE6fuS@3#OTtDCtb(OB+I;zpj2Jgtmrkni87fW)C?uZWg#XLoSV*6>b&9vMku* z=1`?vb7RQ8V4fL(i>gHyop@H2K4cj;AXJOiRZ|yDd~Mk&Zrq~D(SjT;x*RPfIa-jT z##NJ}CVokdmbg`uqZK(?bveRftcVp>M=NsFxN36L#4pLw8n-PHHf=MPA%3&RZI9cp zUmjX;#2w|uaN3b1RE3P15;;mr;g~UnEO7^L?ugsh5sB$yK^S&KJwoF;lXU7Y5qsPc zF~_ZfG2}r{Foe9+rV&G^Y5|zWfAxYDqBbK5+v32)xCP6In&DVI3B@2OBe7U<`Pv=P zP&T3=G=n|d3GfuhvuX9^YTaT;$Cf|O-R4p98WPXR_A7ZKglHcb@`k{GKzbVWn&grF zz(jZ^{KlMcDAqPQ7oHo1mFg(OWl$!~js>S8hXREF|AOL@(E6|OS>!UF-T0=4zFwVt z=H0qmb<(pMN>d0C=SO_tQ^@fCjxC)&rHXw@bo)~xrk|3a^;42ke(EAn0RRiLVKzxa zN6!a^6glyEK1N^^z&t)V6P)rpnba@ug>@|z`}yO~o;&r`;n8Q03vVL^v!BdcCWP7f zxd@Z*!Ip1sYBDPL$oJO(^47^nXmSEh^LRpf9puPQ3&d%H*Y?AYbJ5p!DJ zM3Y$Fi1~^{i@=Z2$pSJ{K%(Y~a0LI7ou5mMRAB`{KEW^Y5qNrH!0qo?Z&>Y>Y(9LqJ-fN6bk0>&zVqUZ7q5>jjVzwH z@AOERPuDH;A2xiq?OSat)!Fu4V*4(*XFa<`K<94JxqI>0eMdzibltz?PX=%FC;G9% zue$T(GXMVB)LAIvlSh-!CXX&%OPGFaYl{0pGO&7iwjKtnlL|LV%VAnW^-heBr0p1&ECd9 z;uttgPt7~=8*y42kd&o8x2fTS9jPeUekR{cnv$jmn;KF(lh=}_oXh*pnHy(PHCb1y z=xWWd?|n~gGW@RVmW!mlm1~^E+yLZ-PE({NJd~{;dygI zu5uG0+LP=`8B^!eJC@BEXMe`jFLC?mwuOsEFkKHx^i`^4A2Goq-;A9-#&7A!(}*Q( zCH1?OfWti548mv;h#mw_f&U)zLDB}p`rwp89%ael$=TV^zJmO3FtEKa;yQg~1`m=7 zQ+*!|e@yor*jWgF{;S8ny3aR0IW;9oDre`T zlA!ZQP+i(WS$)1v-!$xhr{|}A(bs2vAT*aC6)L2Mq6d}0oj%zt#Wxkc8lLh^&qE%1 zId~Pj1`0kfZJ!KIsiOyWTw;%!)jH8!BF7K^D{D5*3Ru@rFt09%9k|C8ksIU2G^Jm1 zX`6e&q&D3S@!)(-Y9U>D5xQRWwlU`mRTb5iU2)pVVH*B>m|TUM$UwLSpq^9(lHtXA zOZH&|m`bbrzrp;*fVC|1M_!1|%2;%det@h-akB~rbr zs1jj>fSAKe>S=GM=?a{mEvb#=+yH3G9+jUw5Y&$KsolclUTXRvaiK3^GVV=JvJWu}y zVNCc<+?2F5>-5Lq^Q)j%>TaLl#$kB(w(Yt~Uc7O~LRT_qyAmbN__Tev`8r?V)M{zP z_*(9~d)ZaORpMcqGg+IoK~q#Ue3EtnEvR)uwd%FBZ8UxvSJUtepS&0-m!~CqzK^ z3DJEbV>`j}9roMx(x7VO#;ok}M(nNrwEu>(VB!17@v_52Bm{uqJ!DE59~9}M=ykY1hf*w_Tazmey!<@p(n5m~-slqs~x z<`TMe;Rh&S7qthCVvrA;Gck1CvScBqxNw`Z+7d%=U0u8iCN&WSYy8fE8wXPS^}|bt z3Cp!PcTHkm9p33mJhQYjx#PzEjH#}ahf(Z19=?K1i#$x&2opf)D6mJ_6vA?!#0w!i z3XyGhx3?m_%*@b#5UX=5PZEt`W;>K5n?m&$^(4P(nc)TPrmLs!70NnzA{~sU? zvJmmEaaQ|Ne6F!2J(6kMmT5e(a`NNhyW7Q`ClXI3o?3HpZGN$J+loPK-H~a;_w*;$ zKd8Jbhshh&Y}VG4uqGRG&Z^`UNmZSz-jv*xYv>dk zb|flumELzQ-?%K*W4RLl+4?;qVC7!1a&N+TzuK3shY3M-K&%dA+<}ZO@b}jxQI-FH zx}+ddW&Rz2x-Sa%;IKg_oQRg|gf9Uz0?h&p_rhP$-M^=lb(Bu{V@iGf?lKWQPbvKe zB_+*tQy?ry;QccY7S@UdStlD27#Qu8r$ z)U%hAUmBVZf`h`63Hakk~yAhAB z@zd=;S2${EPXHUqW!m@8sJb2N66XRdI7PK4Hi_&Fs*-!I$Cu(CMAG}-`^7uIxcX%@ zl~n6LWBU_AsQtYgx4#Qv3OzvhPlzM@HGsa6$=+>)MxF`JQgu%u)R&D@*2o7mjoh#~ z{rZX{+pu43*q^E0zivAhh}GX9pPv#v#09aTA#*|WjMPwVwgv+qjfzMY1Y~T)OHZ)L zgwOX1zF2{=J}5XKHp6BnjZzb9mhwC?ZFYJLe#)+tf!2z8ehS=_br@?tYGH|oCh619 zk+Irn7TdFK&o3^g%FSkP0dd9I3?icf)5O-OLY^w~0|I5|xIcnVtn)GQejWKl-b3gw z>4$38s6M%qSf!CwXIsYE##kjNRvNn)vqYAEZ)TmXqO&#aU3GS3oE^EAzU8CK&n_Po zTLu!tU&>9nn^P~O$0UPJWpn(n->ny*5DzUGx-y#@h9BYt+59fhL@ChRA`rb5hzbcb zCn z*Z*=?o{QODxe$06CNBP%X&`WMFlNSc|I0DQD;Iluu+8D3zw40!&egA6?U77A{f93` zdYMg3%y4mg%>9bc1Iw49qZR3WZTr>*CRB;JFJ9^iPL0FH1|~NCi$0`Y!}|# z*Ei}zxs4YCU9k!(UctggGqj2OW0Tzv0M{pi-$AhN;U`_?#ZcNXSa+F}@Eixz`X;t? zglT=;P@b4Uqt5HN34W;=_BmK!A~k9!`6{nVC=qgDCW=@P7e??4mLxyZ9XFM?Q_z-N zEeuK1Fen%ps3ot@vd8+7%o6B27gmf$g&pl3hD?MKlN}8}* zFcp}}TTSTjq1oKDV3`>X8Pm>Uy^41sE2bke3E0%rmmVwHiSMT?1xamSjX|P3ttAs| zbJi&vPDv_lA#GX6&Ldr{j_OW}5#($UI-{G40Uon|TXg-~g8prZz>;KvpYeoXcLL*e zL&!11hn%o6fei}PGj3tE<)b9Zk}rK<#~87YKn#<)E4Ij#gy)58q%n=mPv8hEGE6C) zMTWD>rrD0H;BTgXcCP%IxW77gefL8qgA}I8U*Sv|Esv#(d4_ zx#vzGtTs72lyB%$7z7Z+cTn74VbO5bU)}^O>nTaUN&_`-iOi2f0YZwaxd_c#B%h#* z$tdy->vmFs2PVEr*!Tiqky~?cmF{<5xbedEmzG|7XY|HswxU(6XoX==Z3l5XTNt=* zhbhhZoVVt7{muGRP3mgayIJ&ZPFNBaCVD0t5bq|YvbArzXKPutwWP+Sqn2c2q)M}o zg~)m96PD|i2Sqh*YUozWJ#W{lw<~=v>-CFXKN4jFB~1fFak^jWO>Vya>e8z?k!&_G z3yYt3&fYkiYR|fwMOSmi)eNg6ELv4Tegro7>h=9g`%~?!&ZdmBDOcN+8v5q(_m97K z^3KWBlc^`g+HP91Kd9Yw`^B3t%H8_vN^s@U%BAne@SJVkCj!>)7i;%_GJf}&A3pc5 zp8LZWe(=KG7w^6(9vaTp4rAqqRF9;dNgcU0f(M`o>S?J%EmOzJHf|RIy*otj4ysuF z?dF@!@3!7*#e=niOtt%d49-0OJlnxR0$e|pIGU`{67YI~64_HI(bVfI2zib@4=cd8|-Dl8Vhj~y0Dy~hp< z<=9mqCuSe5OQfb3M}XOP(`Rx%@3_xTX(sf*1?P?rQ=&&t+HWDUwkM`|OOyaE4f)}Yai7{iG-KlZk zwb^;a(oEs$q#%eJjN+75V(totdOeeYaKKlTlsqpjdRbzj*)R({HTf#ejEwpz^BI=@ z^yI|lsP7W2+2|l#6brj*>F`&TF<%cjPF89^ORJEfQl@cX7G`v`LwJ0CW{k`RWI5kx6^Xr3^R;71W@`@p~x zTYWpX@7+Vi1cs(1OUHiS_8o)UeLcH&1fJN@?U%Pkmmr$4*RVYF;WXQsi7?B}C-L0W z)WP}aEL4v;U|43^fhQKG-?wAuo}Ip)y@P>)orUCIrv{qG*`^Z`YKxJ4(_vI1B=wT7 zNV~WrzOMmi3%;Ql-=t8|KuW(N&gLruPCyoBBEF$w&rz_UpdIZ!JUbKKO1sMoi-=G- z8WvzQN%##*iwD2kZ-`kWK?t)1!=t&M#2v!#fXZSo?tjCd>?5qvz3l$GbWheMECFUs zF8mki(bNwqisEPMm(`|0X6JTwq%L{!?V)i1;WF9rlki^W2i06A@sRrX_3*roWGw8yI}R&@cp z#rj{SXcQ?t#Y%;{fmkK-l6?Jm?uxm47+&HMKK)%1QfepJSFS7&DpkR?9yYmmzn zhY^4LQcN9&c>$TqZnSuRp;VSJRB8L6m~~DrzMS45Ht&B-xTzq(77JEl*@I(Y7#D_x zFUa{WfZxPedpJh&rdeTfLik&_Y87(%rULt}(3)^aS!D_i@a=z24E!JnHW>I0leyx) z4VLLyTcc=e%-9-n;77vt#eFAZ;K5?@ur?!rZMz8*_RpIuzWCw`h>IQ0cj|A{UvF4y zSUj?3G1ueJHVbVv1i0>i<$DNLBbA{wFg9dfJ(*L9KX8o)k*Nxe6HMcl8Gjw?3%1h+l#3c z^5|c__6Z7pP_!RZ<=hUv9ZI=Pv~N?ncBkK1K`D2N_MIx%cAR4HY}P&?+6Ppw9qA*> zhOE6$wD-Z)CD(Jya^niZ?iKBO;aVlTZe5;K)xNTU1&LHIva?MeS{X$%JTY z!s&~b2$Ddq!b^>nFi?wEp~W9KD;7^NVZ>XWYVOw@KI1oepYeya?vvfz54&9_ zcN%}Vg9nUNv3-;;_r)=k;}~fDFZ&r;i&@w>>wm<51>K!QwRtOs32oRE{s*1}MjUDN z%tm0TREC7LV9L3NpV-Q^B(^x?oCFv_$AAgqgR;d=uCUpjyGCRkHeGmN5U) z>-XUzJV_>mP*NJytC}&x8-`a|;|bWUDBm^AVBhsj9Z;rHeHPQ#?|WS^%s_e^H!yi8 zOw7u!vGm980MVD%3meiMii5609JO^g&kwL^GS5HpDamN^eD5PmFB?NJyss#1J9~QQ z+4BN*KWXCd6g*^UldwRM%`w_0BJDRb7Ue_23-Ht$$=c~n3T$UttaWsXy{Yb*Xkq9&)EUQ@t7ARR+^Lq<_f`5Zjc#X?@?C=HGMNabQ>1 z(1T4)so;B7oGRt1yIpa!A{ESfe4@vf@%X;T*(%?uxKWY3oVB%ywziC|t!T_I&;|mb znm`IwiCHBS_vdW`@`XwFE_`6RHao`<$Ts!KQ?XD_F@FXA5-O>e62B=)(wr&;3bftg z4592V5e8GQ!ATmz0%*i+xp*R1QI~ir`P%i1OBaDKGo~y6Y+R7-j*W^y#%yl^(vo{` z#1rvc9Z6`s?bw88_^@&L+G_jWO#9wkP2=s;H&4HN=GK|y8JxUckHdIM0zIhO1lNj| z)br^hcSe@?t+wpSwCo}jI&L~>TUXMBsMR!c>H|HHks8d}Hi@=P8TQ47z+~O^gG&c9 zrcIKV2z4!7jE3UrVJ|?@_L(U8h%pSC%(wMBw4f}(U@!?Jd?|0l?qf-5%v^LUS=rjh z&$AXNJ^!#7Da5KZFD8+;mP}A%Rl=7nS{hS>v_~#uYuP~jMg4$gCbEn#+9!jU?FKQU zxl6wA-U#X_@}(6_32p1CA4_H}2Z)?9YvDY=1s+1i>V&Dg zc*G`;c5-Fi_YZNWp#FuF`6wNbVQ77JpaI3NAk(qTTQg-5B(Z|20PI9!Bp1M zCwd^BG*;BD@W1Q&ZPzE~vI9fnzz}o7F>)!}O?1*+Lrc1=DDkSMC zrSpxc!PehuL0yIQmvJiHAv`S>KD2EDXA~EJbn35_#vwrA&X0>6r1i^ZYC3)i z^CC)Bl&aDz*-#o&`MHr8ofFr z@S^3?0*#SxA|$48okdX2v|+z(&Fh{eedGw zL^NxvdEjkIR^4jMH1}t{0nrnaFyc+GA;G(6fQR8#mb71*lx*2fBXUq)e6u96WgL_*tB7pqy)f z`IGfCV3L!Kng0g20)bnEygJ-qrgYZcbK+GnP?kwXWEoTI1~Vp!Hk7rTW)jz}=hz9p znlps;CC3@U>#TdUgk*uevWgusV^l8>^hO};oK4e$dBMWgmslSb_W)s8fEpK-Npc9y zVK&+j3pREn2h2CdjqFGc;%ltK8lJ`kTrjhPHyKjm+#+^yj$`q zFFlKZb91OW$QPYLA2;eNs-x#vKM~6%A38{4#PUnP5Pak$kr_|G<-5dmw@inV7oR>w4`mFs7;x?p?L%Ui#!SH@#ikN;W!mPPE)~*R@oy~(u}4#Mulq05zth>cs#Ky z*-cYTW9meD@Xo1pB#oEIee0~mYR_q30x7M<{xRX2 z)&aB@Yfe3rb+?IbTFIBrEmSu)2M(|TshQo7>U34L5hYepj7+KsAEhFYIWg!DTRI(s zLj=#tCIFSFYHMlU1hJ!V}&0US_vC92q*Px znn(r0GXuX#iIgs5e6);_f%5VaIxpMYQ&`5}o;ffeCCyq7DHkrP5M8?WV@lhRfewf< z;X4fbb=@M2m5(?teZeU_i}X8GaGK8+3!hv~=i*uVNTs2mWB3&=LONX!0|3QE6*fZ~ z-ljKpV*bK5X%iq;0Dw4;3=j({l+>12UgUQU@3Wf@4{LTBQOfF0fd%>~<-{&X5mm2- zgq1Hhs+5E)oM;8&A|Q0$%6Nb9>ULQ-35zRv=NI`42dOdH?phNbiHJx$zq;@gt9xG3 zPD@2BynFHY2~}h~3Cdnw$Ief$Z^fT0*U*8#$^9abGcRKGE8bWH~|y?%7TxF+~d%Yt^Db?|+xjaTbXYVKv#CXen~$o@?`}YjgUwtjjOD{27-Y2M^Qa z_r-lTy)VcP!Gi*FwTKnQDU4G*-?_UR1bI6dS3+YlU!A1Y3EM{p0ft8wzB|%yFo*Dx0TYAbR#<@9G zJctP|*OlJffVWnSg(J*tATo>BA;VT67{WVuaX3;K^Eop(prQDP-#RSGdEKy%n7+o| z=`RWx zr%2fAu?|jlCbuU$Z&^qhUVYEqMVmWu%C25+I_e|f3Z5hz8B}_;d{SwQ>J12%K2== z6WPjrV&%S!ZQp$-UU-NOWolrU_xB3KTI8)HI3s}>llNF8$rgKuLf$kVot$DvHRCPH zqj=8?-quaZtusv2CiS)sV2~A3KDBZ761|ICde0r9PS{K+=1)oITCI@F#{_88jkJ4@ zRCB`rB=Elp{4WALrAn3-LJfgh0;K(6VrhYioO(`_gj~^1~g(LWK5fb)dp5ys7mytK2uLC$Z-o02!pB!gjWS<9|FQfhDxXz6B z3+n*qPNX1%MJp0=G$raqdt+*E*4`!ByA~~L76Wg`zPA#Py7C#heqQu)1b8|ox;#vb zf5v=1SNmV$gFFvyR(VKK$mesl|C2_pwk>(&)@hW<2Z7_sQ$L7)W;WEGg&dM#hV!mD zj_^Eeq*d^=fvav?bgx<3c{((yJWN?XV?Lj&{h#D*d_9(W3aC5J^U!UShm->Oe6IGN zGjJBq;u#bnK$qPa8uT*lO=#I|S6jiR|Rbu?r0l>~eN zr!N*9`?BV(qIql1R!ycLwGZTCy0YdL(cF@{itN|wU0%at#agRUFU3>Hm^zdkmGT-g zrcTApku^7o=BCuSjHz95D^s$hC2Ou1&Go6OjH!9eY1w4Ra5ZZluDT`JajTc!+EWz} zs{+)VeLU<}3g99?#q&6oQU%A29G23CTaHZAz)Hu*U0Kf_(X(f<0w;au+*LWdH|MB; zcpBDDIeW#L+g4*hTh|~%&stqQ4@GDJ>~!&%8A?I&A`}XO~9MmmBsy*njX3cA_g+4pCPITy(5CcphhW7J#ja?_c8zpx44<$yW-J6Q7am z=S8n7o~N_nO8|w0D@6E;m#vGcSqhRTJ|ox9i(a5w)xKnZ+MO9ZlJo6{GNAe(5~@D< zpt313oqB4yCA0SwzS+vtV&&ePYdSaRK81i#D`yeOoFn Y)@@z1B^t6^^_s=VHxh-@14beL4-C(q4*&oF literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..49f398f5131de27807ab615d2a9e67fd5bbe3325 GIT binary patch literal 59522 zcmd?S32<9idM1jM07!rU2!I3^kl;>;t4MJXMM|bbN}?9pZON8R%S}_fkVKh_`U2Y6 zfZLOFX4sArLn?I%R@7tIqi(a)N`*5o3n$Z=*xjC&_SC$20O#frL5dk=5?7_)q^9J! zdtSHa&E$Rmxd84$vfJuOs;25)g6E!l_Vqvi`Tzg?=RKRPP=n{bX8*E z-j+!Vdlya?vUkyB5qn!Ft?X@^w6S;bWHEc&C++O*m~?Ok&N%0sFPSWvcTKvGzJV*4 zbI*GwJ@ciLrSoNzW%J%i?|k`WIrB5kRm@jTRx-PJu4>*l>6@>fte&r#tYL1JIsbg^ zWbJ(2WZiuIWc_@@WW#*pWaE6(WYc`}Wb=H>WXpVDGBCeuau*9%oTl02S5Ca53lE}lRXRV!QxAMa&C#< zoK61bY|2y-vluZQ@|c|cRhBaR9Pra|&dDC+>$%jIONlE{rZU+d><^W2E~GM$52NGU zzoIM8eQK5pG@8kN&J*lkg4^WYU{BUIh_rWo3vL)H*(b3tXOq9VQm#x{?;XN<)!`&6m&xIm$klr3seDRR_!`N5!G17jUovSl%CbxzQpNQ>LEKSQ+-hYFCdX9%H7ftZ zoPY8NS37w$Sa@kXS4OTbJJJkXJ!*VxLC-bNTQQDgZNoLb%A)c{Hh+ $zTrbd$%~ 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 'user[:passwd]', 'host[:port]'.""" + # global _userprog + # if _userprog is None: + # import re + # _userprog = re.compile('^(.*)@(.*)$') + + # match = _userprog.match(host) + # if match: return match.group(1, 2) + # return None, host + +else: # pragma: no cover + from io import StringIO + string_types = str, + text_type = str + from io import TextIOWrapper as file_type + import builtins + import configparser + from urllib.parse import (urlparse, urlunparse, urljoin, quote, unquote, + urlsplit, urlunsplit, splittype) + from urllib.request import (urlopen, urlretrieve, Request, url2pathname, + pathname2url, HTTPBasicAuthHandler, + HTTPPasswordMgr, HTTPHandler, + HTTPRedirectHandler, build_opener) + if ssl: + from urllib.request import HTTPSHandler + from urllib.error import HTTPError, URLError, ContentTooShortError + import http.client as httplib + import urllib.request as urllib2 + import xmlrpc.client as xmlrpclib + import queue + from html.parser import HTMLParser + import html.entities as htmlentitydefs + raw_input = input + from itertools import filterfalse + filter = filter + +try: + from ssl import match_hostname, CertificateError +except ImportError: # pragma: no cover + + class CertificateError(ValueError): + pass + + def _dnsname_match(dn, hostname, max_wildcards=1): + """Matching according to RFC 6125, section 6.4.3 + + http://tools.ietf.org/html/rfc6125#section-6.4.3 + """ + pats = [] + if not dn: + return False + + parts = dn.split('.') + leftmost, remainder = parts[0], parts[1:] + + wildcards = leftmost.count('*') + if wildcards > max_wildcards: + # Issue #17980: avoid denials of service by refusing more + # than one wildcard per fragment. A survey of established + # policy among SSL implementations showed it to be a + # reasonable choice. + raise CertificateError( + "too many wildcards in certificate DNS name: " + repr(dn)) + + # speed up common case w/o wildcards + if not wildcards: + return dn.lower() == hostname.lower() + + # RFC 6125, section 6.4.3, subitem 1. + # The client SHOULD NOT attempt to match a presented identifier in which + # the wildcard character comprises a label other than the left-most label. + if leftmost == '*': + # When '*' is a fragment by itself, it matches a non-empty dotless + # fragment. + pats.append('[^.]+') + elif leftmost.startswith('xn--') or hostname.startswith('xn--'): + # RFC 6125, section 6.4.3, subitem 3. + # The client SHOULD NOT attempt to match a presented identifier + # where the wildcard character is embedded within an A-label or + # U-label of an internationalized domain name. + pats.append(re.escape(leftmost)) + else: + # Otherwise, '*' matches any dotless string, e.g. www* + pats.append(re.escape(leftmost).replace(r'\*', '[^.]*')) + + # add the remaining fragments, ignore any wildcards + for frag in remainder: + pats.append(re.escape(frag)) + + pat = re.compile(r'\A' + r'\.'.join(pats) + r'\Z', re.IGNORECASE) + return pat.match(hostname) + + def match_hostname(cert, hostname): + """Verify that *cert* (in decoded format as returned by + SSLSocket.getpeercert()) matches the *hostname*. RFC 2818 and RFC 6125 + rules are followed, but IP addresses are not accepted for *hostname*. + + CertificateError is raised on failure. On success, the function + returns nothing. + """ + if not cert: + raise ValueError("empty or no certificate, match_hostname needs a " + "SSL socket or SSL context with either " + "CERT_OPTIONAL or CERT_REQUIRED") + dnsnames = [] + san = cert.get('subjectAltName', ()) + for key, value in san: + if key == 'DNS': + if _dnsname_match(value, hostname): + return + dnsnames.append(value) + if not dnsnames: + # The subject is only checked when there is no dNSName entry + # in subjectAltName + for sub in cert.get('subject', ()): + for key, value in sub: + # XXX according to RFC 2818, the most specific Common Name + # must be used. + if key == 'commonName': + if _dnsname_match(value, hostname): + return + dnsnames.append(value) + if len(dnsnames) > 1: + raise CertificateError("hostname %r " + "doesn't match either of %s" % + (hostname, ', '.join(map(repr, dnsnames)))) + elif len(dnsnames) == 1: + raise CertificateError("hostname %r " + "doesn't match %r" % + (hostname, dnsnames[0])) + else: + raise CertificateError("no appropriate commonName or " + "subjectAltName fields were found") + + +try: + from types import SimpleNamespace as Container +except ImportError: # pragma: no cover + + class Container(object): + """ + A generic container for when multiple values need to be returned + """ + + def __init__(self, **kwargs): + self.__dict__.update(kwargs) + + +try: + from shutil import which +except ImportError: # pragma: no cover + # Implementation from Python 3.3 + def which(cmd, mode=os.F_OK | os.X_OK, path=None): + """Given a command, mode, and a PATH string, return the path which + conforms to the given mode on the PATH, or None if there is no such + file. + + `mode` defaults to os.F_OK | os.X_OK. `path` defaults to the result + of os.environ.get("PATH"), or can be overridden with a custom search + path. + + """ + + # Check that a given file can be accessed with the correct mode. + # Additionally check that `file` is not a directory, as on Windows + # directories pass the os.access check. + def _access_check(fn, mode): + return (os.path.exists(fn) and os.access(fn, mode) + and not os.path.isdir(fn)) + + # If we're given a path with a directory part, look it up directly rather + # than referring to PATH directories. This includes checking relative to the + # current directory, e.g. ./script + if os.path.dirname(cmd): + if _access_check(cmd, mode): + return cmd + return None + + if path is None: + path = os.environ.get("PATH", os.defpath) + if not path: + return None + path = path.split(os.pathsep) + + if sys.platform == "win32": + # The current directory takes precedence on Windows. + if os.curdir not in path: + path.insert(0, os.curdir) + + # PATHEXT is necessary to check on Windows. + pathext = os.environ.get("PATHEXT", "").split(os.pathsep) + # See if the given file matches any of the expected path extensions. + # This will allow us to short circuit when given "python.exe". + # If it does match, only test that one, otherwise we have to try + # others. + if any(cmd.lower().endswith(ext.lower()) for ext in pathext): + files = [cmd] + else: + files = [cmd + ext for ext in pathext] + else: + # On other platforms you don't have things like PATHEXT to tell you + # what file suffixes are executable, so just pass on cmd as-is. + files = [cmd] + + seen = set() + for dir in path: + normdir = os.path.normcase(dir) + if normdir not in seen: + seen.add(normdir) + for thefile in files: + name = os.path.join(dir, thefile) + if _access_check(name, mode): + return name + return None + + +# ZipFile is a context manager in 2.7, but not in 2.6 + +from zipfile import ZipFile as BaseZipFile + +if hasattr(BaseZipFile, '__enter__'): # pragma: no cover + ZipFile = BaseZipFile +else: # pragma: no cover + from zipfile import ZipExtFile as BaseZipExtFile + + class ZipExtFile(BaseZipExtFile): + + def __init__(self, base): + self.__dict__.update(base.__dict__) + + def __enter__(self): + return self + + def __exit__(self, *exc_info): + self.close() + # return None, so if an exception occurred, it will propagate + + class ZipFile(BaseZipFile): + + def __enter__(self): + return self + + def __exit__(self, *exc_info): + self.close() + # return None, so if an exception occurred, it will propagate + + def open(self, *args, **kwargs): + base = BaseZipFile.open(self, *args, **kwargs) + return ZipExtFile(base) + + +try: + from platform import python_implementation +except ImportError: # pragma: no cover + + def python_implementation(): + """Return a string identifying the Python implementation.""" + if 'PyPy' in sys.version: + return 'PyPy' + if os.name == 'java': + return 'Jython' + if sys.version.startswith('IronPython'): + return 'IronPython' + return 'CPython' + + +import sysconfig + +try: + callable = callable +except NameError: # pragma: no cover + from collections.abc import Callable + + def callable(obj): + return isinstance(obj, Callable) + + +try: + fsencode = os.fsencode + fsdecode = os.fsdecode +except AttributeError: # pragma: no cover + # Issue #99: on some systems (e.g. containerised), + # sys.getfilesystemencoding() returns None, and we need a real value, + # so fall back to utf-8. From the CPython 2.7 docs relating to Unix and + # sys.getfilesystemencoding(): the return value is "the user’s preference + # according to the result of nl_langinfo(CODESET), or None if the + # nl_langinfo(CODESET) failed." + _fsencoding = sys.getfilesystemencoding() or 'utf-8' + if _fsencoding == 'mbcs': + _fserrors = 'strict' + else: + _fserrors = 'surrogateescape' + + def fsencode(filename): + if isinstance(filename, bytes): + return filename + elif isinstance(filename, text_type): + return filename.encode(_fsencoding, _fserrors) + else: + raise TypeError("expect bytes or str, not %s" % + type(filename).__name__) + + def fsdecode(filename): + if isinstance(filename, text_type): + return filename + elif isinstance(filename, bytes): + return filename.decode(_fsencoding, _fserrors) + else: + raise TypeError("expect bytes or str, not %s" % + type(filename).__name__) + + +try: + from tokenize import detect_encoding +except ImportError: # pragma: no cover + from codecs import BOM_UTF8, lookup + + cookie_re = re.compile(r"coding[:=]\s*([-\w.]+)") + + def _get_normal_name(orig_enc): + """Imitates get_normal_name in tokenizer.c.""" + # Only care about the first 12 characters. + enc = orig_enc[:12].lower().replace("_", "-") + if enc == "utf-8" or enc.startswith("utf-8-"): + return "utf-8" + if enc in ("latin-1", "iso-8859-1", "iso-latin-1") or \ + enc.startswith(("latin-1-", "iso-8859-1-", "iso-latin-1-")): + return "iso-8859-1" + return orig_enc + + def detect_encoding(readline): + """ + The detect_encoding() function is used to detect the encoding that should + be used to decode a Python source file. It requires one argument, readline, + in the same way as the tokenize() generator. + + It will call readline a maximum of twice, and return the encoding used + (as a string) and a list of any lines (left as bytes) it has read in. + + It detects the encoding from the presence of a utf-8 bom or an encoding + cookie as specified in pep-0263. If both a bom and a cookie are present, + but disagree, a SyntaxError will be raised. If the encoding cookie is an + invalid charset, raise a SyntaxError. Note that if a utf-8 bom is found, + 'utf-8-sig' is returned. + + If no encoding is specified, then the default of 'utf-8' will be returned. + """ + try: + filename = readline.__self__.name + except AttributeError: + filename = None + bom_found = False + encoding = None + default = 'utf-8' + + def read_or_stop(): + try: + return readline() + except StopIteration: + return b'' + + def find_cookie(line): + try: + # Decode as UTF-8. Either the line is an encoding declaration, + # in which case it should be pure ASCII, or it must be UTF-8 + # per default encoding. + line_string = line.decode('utf-8') + except UnicodeDecodeError: + msg = "invalid or missing encoding declaration" + if filename is not None: + msg = '{} for {!r}'.format(msg, filename) + raise SyntaxError(msg) + + matches = cookie_re.findall(line_string) + if not matches: + return None + encoding = _get_normal_name(matches[0]) + try: + codec = lookup(encoding) + except LookupError: + # This behaviour mimics the Python interpreter + if filename is None: + msg = "unknown encoding: " + encoding + else: + msg = "unknown encoding for {!r}: {}".format( + filename, encoding) + raise SyntaxError(msg) + + if bom_found: + if codec.name != 'utf-8': + # This behaviour mimics the Python interpreter + if filename is None: + msg = 'encoding problem: utf-8' + else: + msg = 'encoding problem for {!r}: utf-8'.format( + filename) + raise SyntaxError(msg) + encoding += '-sig' + return encoding + + first = read_or_stop() + if first.startswith(BOM_UTF8): + bom_found = True + first = first[3:] + default = 'utf-8-sig' + if not first: + return default, [] + + encoding = find_cookie(first) + if encoding: + return encoding, [first] + + second = read_or_stop() + if not second: + return default, [first] + + encoding = find_cookie(second) + if encoding: + return encoding, [first, second] + + return default, [first, second] + + +# For converting & <-> & etc. +try: + from html import escape +except ImportError: + from cgi import escape +if sys.version_info[:2] < (3, 4): + unescape = HTMLParser().unescape +else: + from html import unescape + +try: + from collections import ChainMap +except ImportError: # pragma: no cover + from collections import MutableMapping + + try: + from reprlib import recursive_repr as _recursive_repr + except ImportError: + + def _recursive_repr(fillvalue='...'): + ''' + Decorator to make a repr function return fillvalue for a recursive + call + ''' + + def decorating_function(user_function): + repr_running = set() + + def wrapper(self): + key = id(self), get_ident() + if key in repr_running: + return fillvalue + repr_running.add(key) + try: + result = user_function(self) + finally: + repr_running.discard(key) + return result + + # Can't use functools.wraps() here because of bootstrap issues + wrapper.__module__ = getattr(user_function, '__module__') + wrapper.__doc__ = getattr(user_function, '__doc__') + wrapper.__name__ = getattr(user_function, '__name__') + wrapper.__annotations__ = getattr(user_function, + '__annotations__', {}) + return wrapper + + return decorating_function + + class ChainMap(MutableMapping): + ''' + A ChainMap groups multiple dicts (or other mappings) together + to create a single, updateable view. + + The underlying mappings are stored in a list. That list is public and can + accessed or updated using the *maps* attribute. There is no other state. + + Lookups search the underlying mappings successively until a key is found. + In contrast, writes, updates, and deletions only operate on the first + mapping. + ''' + + def __init__(self, *maps): + '''Initialize a ChainMap by setting *maps* to the given mappings. + If no mappings are provided, a single empty dictionary is used. + + ''' + self.maps = list(maps) or [{}] # always at least one map + + def __missing__(self, key): + raise KeyError(key) + + def __getitem__(self, key): + for mapping in self.maps: + try: + return mapping[ + key] # can't use 'key in mapping' with defaultdict + except KeyError: + pass + return self.__missing__( + key) # support subclasses that define __missing__ + + def get(self, key, default=None): + return self[key] if key in self else default + + def __len__(self): + return len(set().union( + *self.maps)) # reuses stored hash values if possible + + def __iter__(self): + return iter(set().union(*self.maps)) + + def __contains__(self, key): + return any(key in m for m in self.maps) + + def __bool__(self): + return any(self.maps) + + @_recursive_repr() + def __repr__(self): + return '{0.__class__.__name__}({1})'.format( + self, ', '.join(map(repr, self.maps))) + + @classmethod + def fromkeys(cls, iterable, *args): + 'Create a ChainMap with a single dict created from the iterable.' + return cls(dict.fromkeys(iterable, *args)) + + def copy(self): + 'New ChainMap or subclass with a new copy of maps[0] and refs to maps[1:]' + return self.__class__(self.maps[0].copy(), *self.maps[1:]) + + __copy__ = copy + + def new_child(self): # like Django's Context.push() + 'New ChainMap with a new dict followed by all previous maps.' + return self.__class__({}, *self.maps) + + @property + def parents(self): # like Django's Context.pop() + 'New ChainMap from maps[1:].' + return self.__class__(*self.maps[1:]) + + def __setitem__(self, key, value): + self.maps[0][key] = value + + def __delitem__(self, key): + try: + del self.maps[0][key] + except KeyError: + raise KeyError( + 'Key not found in the first mapping: {!r}'.format(key)) + + def popitem(self): + 'Remove and return an item pair from maps[0]. Raise KeyError is maps[0] is empty.' + try: + return self.maps[0].popitem() + except KeyError: + raise KeyError('No keys found in the first mapping.') + + def pop(self, key, *args): + 'Remove *key* from maps[0] and return its value. Raise KeyError if *key* not in maps[0].' + try: + return self.maps[0].pop(key, *args) + except KeyError: + raise KeyError( + 'Key not found in the first mapping: {!r}'.format(key)) + + def clear(self): + 'Clear maps[0], leaving maps[1:] intact.' + self.maps[0].clear() + + +try: + from importlib.util import cache_from_source # Python >= 3.4 +except ImportError: # pragma: no cover + + def cache_from_source(path, debug_override=None): + assert path.endswith('.py') + if debug_override is None: + debug_override = __debug__ + if debug_override: + suffix = 'c' + else: + suffix = 'o' + return path + suffix + + +try: + from collections import OrderedDict +except ImportError: # pragma: no cover + # {{{ http://code.activestate.com/recipes/576693/ (r9) + # Backport of OrderedDict() class that runs on Python 2.4, 2.5, 2.6, 2.7 and pypy. + # Passes Python2.7's test suite and incorporates all the latest updates. + try: + from thread import get_ident as _get_ident + except ImportError: + from dummy_thread import get_ident as _get_ident + + try: + from _abcoll import KeysView, ValuesView, ItemsView + except ImportError: + pass + + class OrderedDict(dict): + 'Dictionary that remembers insertion order' + + # An inherited dict maps keys to values. + # The inherited dict provides __getitem__, __len__, __contains__, and get. + # The remaining methods are order-aware. + # Big-O running times for all methods are the same as for regular dictionaries. + + # The internal self.__map dictionary maps keys to links in a doubly linked list. + # The circular doubly linked list starts and ends with a sentinel element. + # The sentinel element never gets deleted (this simplifies the algorithm). + # Each link is stored as a list of length three: [PREV, NEXT, KEY]. + + def __init__(self, *args, **kwds): + '''Initialize an ordered dictionary. Signature is the same as for + regular dictionaries, but keyword arguments are not recommended + because their insertion order is arbitrary. + + ''' + if len(args) > 1: + raise TypeError('expected at most 1 arguments, got %d' % + len(args)) + try: + self.__root + except AttributeError: + self.__root = root = [] # sentinel node + root[:] = [root, root, None] + self.__map = {} + self.__update(*args, **kwds) + + def __setitem__(self, key, value, dict_setitem=dict.__setitem__): + 'od.__setitem__(i, y) <==> od[i]=y' + # Setting a new item creates a new link which goes at the end of the linked + # list, and the inherited dictionary is updated with the new key/value pair. + if key not in self: + root = self.__root + last = root[0] + last[1] = root[0] = self.__map[key] = [last, root, key] + dict_setitem(self, key, value) + + def __delitem__(self, key, dict_delitem=dict.__delitem__): + 'od.__delitem__(y) <==> del od[y]' + # Deleting an existing item uses self.__map to find the link which is + # then removed by updating the links in the predecessor and successor nodes. + dict_delitem(self, key) + link_prev, link_next, key = self.__map.pop(key) + link_prev[1] = link_next + link_next[0] = link_prev + + def __iter__(self): + 'od.__iter__() <==> iter(od)' + root = self.__root + curr = root[1] + while curr is not root: + yield curr[2] + curr = curr[1] + + def __reversed__(self): + 'od.__reversed__() <==> reversed(od)' + root = self.__root + curr = root[0] + while curr is not root: + yield curr[2] + curr = curr[0] + + def clear(self): + 'od.clear() -> None. Remove all items from od.' + try: + for node in self.__map.itervalues(): + del node[:] + root = self.__root + root[:] = [root, root, None] + self.__map.clear() + except AttributeError: + pass + dict.clear(self) + + def popitem(self, last=True): + '''od.popitem() -> (k, v), return and remove a (key, value) pair. + Pairs are returned in LIFO order if last is true or FIFO order if false. + + ''' + if not self: + raise KeyError('dictionary is empty') + root = self.__root + if last: + link = root[0] + link_prev = link[0] + link_prev[1] = root + root[0] = link_prev + else: + link = root[1] + link_next = link[1] + root[1] = link_next + link_next[0] = root + key = link[2] + del self.__map[key] + value = dict.pop(self, key) + return key, value + + # -- the following methods do not depend on the internal structure -- + + def keys(self): + 'od.keys() -> list of keys in od' + return list(self) + + def values(self): + 'od.values() -> list of values in od' + return [self[key] for key in self] + + def items(self): + 'od.items() -> list of (key, value) pairs in od' + return [(key, self[key]) for key in self] + + def iterkeys(self): + 'od.iterkeys() -> an iterator over the keys in od' + return iter(self) + + def itervalues(self): + 'od.itervalues -> an iterator over the values in od' + for k in self: + yield self[k] + + def iteritems(self): + 'od.iteritems -> an iterator over the (key, value) items in od' + for k in self: + yield (k, self[k]) + + def update(*args, **kwds): + '''od.update(E, **F) -> None. Update od from dict/iterable E and F. + + If E is a dict instance, does: for k in E: od[k] = E[k] + If E has a .keys() method, does: for k in E.keys(): od[k] = E[k] + Or if E is an iterable of items, does: for k, v in E: od[k] = v + In either case, this is followed by: for k, v in F.items(): od[k] = v + + ''' + if len(args) > 2: + raise TypeError('update() takes at most 2 positional ' + 'arguments (%d given)' % (len(args), )) + elif not args: + raise TypeError('update() takes at least 1 argument (0 given)') + self = args[0] + # Make progressively weaker assumptions about "other" + other = () + if len(args) == 2: + other = args[1] + if isinstance(other, dict): + for key in other: + self[key] = other[key] + elif hasattr(other, 'keys'): + for key in other.keys(): + self[key] = other[key] + else: + for key, value in other: + self[key] = value + for key, value in kwds.items(): + self[key] = value + + __update = update # let subclasses override update without breaking __init__ + + __marker = object() + + def pop(self, key, default=__marker): + '''od.pop(k[,d]) -> v, remove specified key and return the corresponding value. + If key is not found, d is returned if given, otherwise KeyError is raised. + + ''' + if key in self: + result = self[key] + del self[key] + return result + if default is self.__marker: + raise KeyError(key) + return default + + def setdefault(self, key, default=None): + 'od.setdefault(k[,d]) -> od.get(k,d), also set od[k]=d if k not in od' + if key in self: + return self[key] + self[key] = default + return default + + def __repr__(self, _repr_running=None): + 'od.__repr__() <==> repr(od)' + if not _repr_running: + _repr_running = {} + call_key = id(self), _get_ident() + if call_key in _repr_running: + return '...' + _repr_running[call_key] = 1 + try: + if not self: + return '%s()' % (self.__class__.__name__, ) + return '%s(%r)' % (self.__class__.__name__, self.items()) + finally: + del _repr_running[call_key] + + def __reduce__(self): + 'Return state information for pickling' + items = [[k, self[k]] for k in self] + inst_dict = vars(self).copy() + for k in vars(OrderedDict()): + inst_dict.pop(k, None) + if inst_dict: + return (self.__class__, (items, ), inst_dict) + return self.__class__, (items, ) + + def copy(self): + 'od.copy() -> a shallow copy of od' + return self.__class__(self) + + @classmethod + def fromkeys(cls, iterable, value=None): + '''OD.fromkeys(S[, v]) -> New ordered dictionary with keys from S + and values equal to v (which defaults to None). + + ''' + d = cls() + for key in iterable: + d[key] = value + return d + + def __eq__(self, other): + '''od.__eq__(y) <==> od==y. Comparison to another OD is order-sensitive + while comparison to a regular mapping is order-insensitive. + + ''' + if isinstance(other, OrderedDict): + return len(self) == len( + other) and self.items() == other.items() + return dict.__eq__(self, other) + + def __ne__(self, other): + return not self == other + + # -- the following methods are only used in Python 2.7 -- + + def viewkeys(self): + "od.viewkeys() -> a set-like object providing a view on od's keys" + return KeysView(self) + + def viewvalues(self): + "od.viewvalues() -> an object providing a view on od's values" + return ValuesView(self) + + def viewitems(self): + "od.viewitems() -> a set-like object providing a view on od's items" + return ItemsView(self) + + +try: + from logging.config import BaseConfigurator, valid_ident +except ImportError: # pragma: no cover + IDENTIFIER = re.compile('^[a-z_][a-z0-9_]*$', re.I) + + def valid_ident(s): + m = IDENTIFIER.match(s) + if not m: + raise ValueError('Not a valid Python identifier: %r' % s) + return True + + # The ConvertingXXX classes are wrappers around standard Python containers, + # and they serve to convert any suitable values in the container. The + # conversion converts base dicts, lists and tuples to their wrapped + # equivalents, whereas strings which match a conversion format are converted + # appropriately. + # + # Each wrapper should have a configurator attribute holding the actual + # configurator to use for conversion. + + class ConvertingDict(dict): + """A converting dictionary wrapper.""" + + def __getitem__(self, key): + value = dict.__getitem__(self, key) + result = self.configurator.convert(value) + # If the converted value is different, save for next time + if value is not result: + self[key] = result + if type(result) in (ConvertingDict, ConvertingList, + ConvertingTuple): + result.parent = self + result.key = key + return result + + def get(self, key, default=None): + value = dict.get(self, key, default) + result = self.configurator.convert(value) + # If the converted value is different, save for next time + if value is not result: + self[key] = result + if type(result) in (ConvertingDict, ConvertingList, + ConvertingTuple): + result.parent = self + result.key = key + return result + + def pop(self, key, default=None): + value = dict.pop(self, key, default) + result = self.configurator.convert(value) + if value is not result: + if type(result) in (ConvertingDict, ConvertingList, + ConvertingTuple): + result.parent = self + result.key = key + return result + + class ConvertingList(list): + """A converting list wrapper.""" + + def __getitem__(self, key): + value = list.__getitem__(self, key) + result = self.configurator.convert(value) + # If the converted value is different, save for next time + if value is not result: + self[key] = result + if type(result) in (ConvertingDict, ConvertingList, + ConvertingTuple): + result.parent = self + result.key = key + return result + + def pop(self, idx=-1): + value = list.pop(self, idx) + result = self.configurator.convert(value) + if value is not result: + if type(result) in (ConvertingDict, ConvertingList, + ConvertingTuple): + result.parent = self + return result + + class ConvertingTuple(tuple): + """A converting tuple wrapper.""" + + def __getitem__(self, key): + value = tuple.__getitem__(self, key) + result = self.configurator.convert(value) + if value is not result: + if type(result) in (ConvertingDict, ConvertingList, + ConvertingTuple): + result.parent = self + result.key = key + return result + + class BaseConfigurator(object): + """ + The configurator base class which defines some useful defaults. + """ + + CONVERT_PATTERN = re.compile(r'^(?P[a-z]+)://(?P.*)$') + + WORD_PATTERN = re.compile(r'^\s*(\w+)\s*') + DOT_PATTERN = re.compile(r'^\.\s*(\w+)\s*') + INDEX_PATTERN = re.compile(r'^\[\s*(\w+)\s*\]\s*') + DIGIT_PATTERN = re.compile(r'^\d+$') + + value_converters = { + 'ext': 'ext_convert', + 'cfg': 'cfg_convert', + } + + # We might want to use a different one, e.g. importlib + importer = staticmethod(__import__) + + def __init__(self, config): + self.config = ConvertingDict(config) + self.config.configurator = self + + def resolve(self, s): + """ + Resolve strings to objects using standard import and attribute + syntax. + """ + name = s.split('.') + used = name.pop(0) + try: + found = self.importer(used) + for frag in name: + used += '.' + frag + try: + found = getattr(found, frag) + except AttributeError: + self.importer(used) + found = getattr(found, frag) + return found + except ImportError: + e, tb = sys.exc_info()[1:] + v = ValueError('Cannot resolve %r: %s' % (s, e)) + v.__cause__, v.__traceback__ = e, tb + raise v + + def ext_convert(self, value): + """Default converter for the ext:// protocol.""" + return self.resolve(value) + + def cfg_convert(self, value): + """Default converter for the cfg:// protocol.""" + rest = value + m = self.WORD_PATTERN.match(rest) + if m is None: + raise ValueError("Unable to convert %r" % value) + else: + rest = rest[m.end():] + d = self.config[m.groups()[0]] + while rest: + m = self.DOT_PATTERN.match(rest) + if m: + d = d[m.groups()[0]] + else: + m = self.INDEX_PATTERN.match(rest) + if m: + idx = m.groups()[0] + if not self.DIGIT_PATTERN.match(idx): + d = d[idx] + else: + try: + n = int( + idx + ) # try as number first (most likely) + d = d[n] + except TypeError: + d = d[idx] + if m: + rest = rest[m.end():] + else: + raise ValueError('Unable to convert ' + '%r at %r' % (value, rest)) + # rest should be empty + return d + + def convert(self, value): + """ + Convert values to an appropriate type. dicts, lists and tuples are + replaced by their converting alternatives. Strings are checked to + see if they have a conversion format and are converted if they do. + """ + if not isinstance(value, ConvertingDict) and isinstance( + value, dict): + value = ConvertingDict(value) + value.configurator = self + elif not isinstance(value, ConvertingList) and isinstance( + value, list): + value = ConvertingList(value) + value.configurator = self + elif not isinstance(value, ConvertingTuple) and isinstance(value, tuple): + value = ConvertingTuple(value) + value.configurator = self + elif isinstance(value, string_types): + m = self.CONVERT_PATTERN.match(value) + if m: + d = m.groupdict() + prefix = d['prefix'] + converter = self.value_converters.get(prefix, None) + if converter: + suffix = d['suffix'] + converter = getattr(self, converter) + value = converter(suffix) + return value + + def configure_custom(self, config): + """Configure an object with a user-supplied factory.""" + c = config.pop('()') + if not callable(c): + c = self.resolve(c) + props = config.pop('.', None) + # Check for valid identifiers + kwargs = dict([(k, config[k]) for k in config if valid_ident(k)]) + result = c(**kwargs) + if props: + for name, value in props.items(): + setattr(result, name, value) + return result + + def as_tuple(self, value): + """Utility function which converts lists to tuples.""" + if isinstance(value, list): + value = tuple(value) + return value diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/distlib/database.py b/.venv/lib/python3.11/site-packages/pip/_vendor/distlib/database.py new file mode 100644 index 0000000..eb3765f --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/distlib/database.py @@ -0,0 +1,1359 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2012-2023 The Python Software Foundation. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +"""PEP 376 implementation.""" + +from __future__ import unicode_literals + +import base64 +import codecs +import contextlib +import hashlib +import logging +import os +import posixpath +import sys +import zipimport + +from . import DistlibException, resources +from .compat import StringIO +from .version import get_scheme, UnsupportedVersionError +from .metadata import (Metadata, METADATA_FILENAME, WHEEL_METADATA_FILENAME, + LEGACY_METADATA_FILENAME) +from .util import (parse_requirement, cached_property, parse_name_and_version, + read_exports, write_exports, CSVReader, CSVWriter) + +__all__ = [ + 'Distribution', 'BaseInstalledDistribution', 'InstalledDistribution', + 'EggInfoDistribution', 'DistributionPath' +] + +logger = logging.getLogger(__name__) + +EXPORTS_FILENAME = 'pydist-exports.json' +COMMANDS_FILENAME = 'pydist-commands.json' + +DIST_FILES = ('INSTALLER', METADATA_FILENAME, 'RECORD', 'REQUESTED', + 'RESOURCES', EXPORTS_FILENAME, 'SHARED') + +DISTINFO_EXT = '.dist-info' + + +class _Cache(object): + """ + A simple cache mapping names and .dist-info paths to distributions + """ + + def __init__(self): + """ + Initialise an instance. There is normally one for each DistributionPath. + """ + self.name = {} + self.path = {} + self.generated = False + + def clear(self): + """ + Clear the cache, setting it to its initial state. + """ + self.name.clear() + self.path.clear() + self.generated = False + + def add(self, dist): + """ + Add a distribution to the cache. + :param dist: The distribution to add. + """ + if dist.path not in self.path: + self.path[dist.path] = dist + self.name.setdefault(dist.key, []).append(dist) + + +class DistributionPath(object): + """ + Represents a set of distributions installed on a path (typically sys.path). + """ + + def __init__(self, path=None, include_egg=False): + """ + Create an instance from a path, optionally including legacy (distutils/ + setuptools/distribute) distributions. + :param path: The path to use, as a list of directories. If not specified, + sys.path is used. + :param include_egg: If True, this instance will look for and return legacy + distributions as well as those based on PEP 376. + """ + if path is None: + path = sys.path + self.path = path + self._include_dist = True + self._include_egg = include_egg + + self._cache = _Cache() + self._cache_egg = _Cache() + self._cache_enabled = True + self._scheme = get_scheme('default') + + def _get_cache_enabled(self): + return self._cache_enabled + + def _set_cache_enabled(self, value): + self._cache_enabled = value + + cache_enabled = property(_get_cache_enabled, _set_cache_enabled) + + def clear_cache(self): + """ + Clears the internal cache. + """ + self._cache.clear() + self._cache_egg.clear() + + def _yield_distributions(self): + """ + Yield .dist-info and/or .egg(-info) distributions. + """ + # We need to check if we've seen some resources already, because on + # some Linux systems (e.g. some Debian/Ubuntu variants) there are + # symlinks which alias other files in the environment. + seen = set() + for path in self.path: + finder = resources.finder_for_path(path) + if finder is None: + continue + r = finder.find('') + if not r or not r.is_container: + continue + rset = sorted(r.resources) + for entry in rset: + r = finder.find(entry) + if not r or r.path in seen: + continue + try: + if self._include_dist and entry.endswith(DISTINFO_EXT): + possible_filenames = [ + METADATA_FILENAME, WHEEL_METADATA_FILENAME, + LEGACY_METADATA_FILENAME + ] + for metadata_filename in possible_filenames: + metadata_path = posixpath.join( + entry, metadata_filename) + pydist = finder.find(metadata_path) + if pydist: + break + else: + continue + + with contextlib.closing(pydist.as_stream()) as stream: + metadata = Metadata(fileobj=stream, + scheme='legacy') + logger.debug('Found %s', r.path) + seen.add(r.path) + yield new_dist_class(r.path, + metadata=metadata, + env=self) + elif self._include_egg and entry.endswith( + ('.egg-info', '.egg')): + logger.debug('Found %s', r.path) + seen.add(r.path) + yield old_dist_class(r.path, self) + except Exception as e: + msg = 'Unable to read distribution at %s, perhaps due to bad metadata: %s' + logger.warning(msg, r.path, e) + import warnings + warnings.warn(msg % (r.path, e), stacklevel=2) + + def _generate_cache(self): + """ + Scan the path for distributions and populate the cache with + those that are found. + """ + gen_dist = not self._cache.generated + gen_egg = self._include_egg and not self._cache_egg.generated + if gen_dist or gen_egg: + for dist in self._yield_distributions(): + if isinstance(dist, InstalledDistribution): + self._cache.add(dist) + else: + self._cache_egg.add(dist) + + if gen_dist: + self._cache.generated = True + if gen_egg: + self._cache_egg.generated = True + + @classmethod + def distinfo_dirname(cls, name, version): + """ + The *name* and *version* parameters are converted into their + filename-escaped form, i.e. any ``'-'`` characters are replaced + with ``'_'`` other than the one in ``'dist-info'`` and the one + separating the name from the version number. + + :parameter name: is converted to a standard distribution name by replacing + any runs of non- alphanumeric characters with a single + ``'-'``. + :type name: string + :parameter version: is converted to a standard version string. Spaces + become dots, and all other non-alphanumeric characters + (except dots) become dashes, with runs of multiple + dashes condensed to a single dash. + :type version: string + :returns: directory name + :rtype: string""" + name = name.replace('-', '_') + return '-'.join([name, version]) + DISTINFO_EXT + + def get_distributions(self): + """ + Provides an iterator that looks for distributions and returns + :class:`InstalledDistribution` or + :class:`EggInfoDistribution` instances for each one of them. + + :rtype: iterator of :class:`InstalledDistribution` and + :class:`EggInfoDistribution` instances + """ + if not self._cache_enabled: + for dist in self._yield_distributions(): + yield dist + else: + self._generate_cache() + + for dist in self._cache.path.values(): + yield dist + + if self._include_egg: + for dist in self._cache_egg.path.values(): + yield dist + + def get_distribution(self, name): + """ + Looks for a named distribution on the path. + + This function only returns the first result found, as no more than one + value is expected. If nothing is found, ``None`` is returned. + + :rtype: :class:`InstalledDistribution`, :class:`EggInfoDistribution` + or ``None`` + """ + result = None + name = name.lower() + if not self._cache_enabled: + for dist in self._yield_distributions(): + if dist.key == name: + result = dist + break + else: + self._generate_cache() + + if name in self._cache.name: + result = self._cache.name[name][0] + elif self._include_egg and name in self._cache_egg.name: + result = self._cache_egg.name[name][0] + return result + + def provides_distribution(self, name, version=None): + """ + Iterates over all distributions to find which distributions provide *name*. + If a *version* is provided, it will be used to filter the results. + + This function only returns the first result found, since no more than + one values are expected. If the directory is not found, returns ``None``. + + :parameter version: a version specifier that indicates the version + required, conforming to the format in ``PEP-345`` + + :type name: string + :type version: string + """ + matcher = None + if version is not None: + try: + matcher = self._scheme.matcher('%s (%s)' % (name, version)) + except ValueError: + raise DistlibException('invalid name or version: %r, %r' % + (name, version)) + + for dist in self.get_distributions(): + # We hit a problem on Travis where enum34 was installed and doesn't + # have a provides attribute ... + if not hasattr(dist, 'provides'): + logger.debug('No "provides": %s', dist) + else: + provided = dist.provides + + for p in provided: + p_name, p_ver = parse_name_and_version(p) + if matcher is None: + if p_name == name: + yield dist + break + else: + if p_name == name and matcher.match(p_ver): + yield dist + break + + def get_file_path(self, name, relative_path): + """ + Return the path to a resource file. + """ + dist = self.get_distribution(name) + if dist is None: + raise LookupError('no distribution named %r found' % name) + return dist.get_resource_path(relative_path) + + def get_exported_entries(self, category, name=None): + """ + Return all of the exported entries in a particular category. + + :param category: The category to search for entries. + :param name: If specified, only entries with that name are returned. + """ + for dist in self.get_distributions(): + r = dist.exports + if category in r: + d = r[category] + if name is not None: + if name in d: + yield d[name] + else: + for v in d.values(): + yield v + + +class Distribution(object): + """ + A base class for distributions, whether installed or from indexes. + Either way, it must have some metadata, so that's all that's needed + for construction. + """ + + build_time_dependency = False + """ + Set to True if it's known to be only a build-time dependency (i.e. + not needed after installation). + """ + + requested = False + """A boolean that indicates whether the ``REQUESTED`` metadata file is + present (in other words, whether the package was installed by user + request or it was installed as a dependency).""" + + def __init__(self, metadata): + """ + Initialise an instance. + :param metadata: The instance of :class:`Metadata` describing this + distribution. + """ + self.metadata = metadata + self.name = metadata.name + self.key = self.name.lower() # for case-insensitive comparisons + self.version = metadata.version + self.locator = None + self.digest = None + self.extras = None # additional features requested + self.context = None # environment marker overrides + self.download_urls = set() + self.digests = {} + + @property + def source_url(self): + """ + The source archive download URL for this distribution. + """ + return self.metadata.source_url + + download_url = source_url # Backward compatibility + + @property + def name_and_version(self): + """ + A utility property which displays the name and version in parentheses. + """ + return '%s (%s)' % (self.name, self.version) + + @property + def provides(self): + """ + A set of distribution names and versions provided by this distribution. + :return: A set of "name (version)" strings. + """ + plist = self.metadata.provides + s = '%s (%s)' % (self.name, self.version) + if s not in plist: + plist.append(s) + return plist + + def _get_requirements(self, req_attr): + md = self.metadata + reqts = getattr(md, req_attr) + logger.debug('%s: got requirements %r from metadata: %r', self.name, + req_attr, reqts) + return set( + md.get_requirements(reqts, extras=self.extras, env=self.context)) + + @property + def run_requires(self): + return self._get_requirements('run_requires') + + @property + def meta_requires(self): + return self._get_requirements('meta_requires') + + @property + def build_requires(self): + return self._get_requirements('build_requires') + + @property + def test_requires(self): + return self._get_requirements('test_requires') + + @property + def dev_requires(self): + return self._get_requirements('dev_requires') + + def matches_requirement(self, req): + """ + Say if this instance matches (fulfills) a requirement. + :param req: The requirement to match. + :rtype req: str + :return: True if it matches, else False. + """ + # Requirement may contain extras - parse to lose those + # from what's passed to the matcher + r = parse_requirement(req) + scheme = get_scheme(self.metadata.scheme) + try: + matcher = scheme.matcher(r.requirement) + except UnsupportedVersionError: + # XXX compat-mode if cannot read the version + logger.warning('could not read version %r - using name only', req) + name = req.split()[0] + matcher = scheme.matcher(name) + + name = matcher.key # case-insensitive + + result = False + for p in self.provides: + p_name, p_ver = parse_name_and_version(p) + if p_name != name: + continue + try: + result = matcher.match(p_ver) + break + except UnsupportedVersionError: + pass + return result + + def __repr__(self): + """ + Return a textual representation of this instance, + """ + if self.source_url: + suffix = ' [%s]' % self.source_url + else: + suffix = '' + return '' % (self.name, self.version, suffix) + + def __eq__(self, other): + """ + See if this distribution is the same as another. + :param other: The distribution to compare with. To be equal to one + another. distributions must have the same type, name, + version and source_url. + :return: True if it is the same, else False. + """ + if type(other) is not type(self): + result = False + else: + result = (self.name == other.name and self.version == other.version + and self.source_url == other.source_url) + return result + + def __hash__(self): + """ + Compute hash in a way which matches the equality test. + """ + return hash(self.name) + hash(self.version) + hash(self.source_url) + + +class BaseInstalledDistribution(Distribution): + """ + This is the base class for installed distributions (whether PEP 376 or + legacy). + """ + + hasher = None + + def __init__(self, metadata, path, env=None): + """ + Initialise an instance. + :param metadata: An instance of :class:`Metadata` which describes the + distribution. This will normally have been initialised + from a metadata file in the ``path``. + :param path: The path of the ``.dist-info`` or ``.egg-info`` + directory for the distribution. + :param env: This is normally the :class:`DistributionPath` + instance where this distribution was found. + """ + super(BaseInstalledDistribution, self).__init__(metadata) + self.path = path + self.dist_path = env + + def get_hash(self, data, hasher=None): + """ + Get the hash of some data, using a particular hash algorithm, if + specified. + + :param data: The data to be hashed. + :type data: bytes + :param hasher: The name of a hash implementation, supported by hashlib, + or ``None``. Examples of valid values are ``'sha1'``, + ``'sha224'``, ``'sha384'``, '``sha256'``, ``'md5'`` and + ``'sha512'``. If no hasher is specified, the ``hasher`` + attribute of the :class:`InstalledDistribution` instance + is used. If the hasher is determined to be ``None``, MD5 + is used as the hashing algorithm. + :returns: The hash of the data. If a hasher was explicitly specified, + the returned hash will be prefixed with the specified hasher + followed by '='. + :rtype: str + """ + if hasher is None: + hasher = self.hasher + if hasher is None: + hasher = hashlib.md5 + prefix = '' + else: + hasher = getattr(hashlib, hasher) + prefix = '%s=' % self.hasher + digest = hasher(data).digest() + digest = base64.urlsafe_b64encode(digest).rstrip(b'=').decode('ascii') + return '%s%s' % (prefix, digest) + + +class InstalledDistribution(BaseInstalledDistribution): + """ + Created with the *path* of the ``.dist-info`` directory provided to the + constructor. It reads the metadata contained in ``pydist.json`` when it is + instantiated., or uses a passed in Metadata instance (useful for when + dry-run mode is being used). + """ + + hasher = 'sha256' + + def __init__(self, path, metadata=None, env=None): + self.modules = [] + self.finder = finder = resources.finder_for_path(path) + if finder is None: + raise ValueError('finder unavailable for %s' % path) + if env and env._cache_enabled and path in env._cache.path: + metadata = env._cache.path[path].metadata + elif metadata is None: + r = finder.find(METADATA_FILENAME) + # Temporary - for Wheel 0.23 support + if r is None: + r = finder.find(WHEEL_METADATA_FILENAME) + # Temporary - for legacy support + if r is None: + r = finder.find(LEGACY_METADATA_FILENAME) + if r is None: + raise ValueError('no %s found in %s' % + (METADATA_FILENAME, path)) + with contextlib.closing(r.as_stream()) as stream: + metadata = Metadata(fileobj=stream, scheme='legacy') + + super(InstalledDistribution, self).__init__(metadata, path, env) + + if env and env._cache_enabled: + env._cache.add(self) + + r = finder.find('REQUESTED') + self.requested = r is not None + p = os.path.join(path, 'top_level.txt') + if os.path.exists(p): + with open(p, 'rb') as f: + data = f.read().decode('utf-8') + self.modules = data.splitlines() + + def __repr__(self): + return '' % ( + self.name, self.version, self.path) + + def __str__(self): + return "%s %s" % (self.name, self.version) + + def _get_records(self): + """ + Get the list of installed files for the distribution + :return: A list of tuples of path, hash and size. Note that hash and + size might be ``None`` for some entries. The path is exactly + as stored in the file (which is as in PEP 376). + """ + results = [] + r = self.get_distinfo_resource('RECORD') + with contextlib.closing(r.as_stream()) as stream: + with CSVReader(stream=stream) as record_reader: + # Base location is parent dir of .dist-info dir + # base_location = os.path.dirname(self.path) + # base_location = os.path.abspath(base_location) + for row in record_reader: + missing = [None for i in range(len(row), 3)] + path, checksum, size = row + missing + # if not os.path.isabs(path): + # path = path.replace('/', os.sep) + # path = os.path.join(base_location, path) + results.append((path, checksum, size)) + return results + + @cached_property + def exports(self): + """ + Return the information exported by this distribution. + :return: A dictionary of exports, mapping an export category to a dict + of :class:`ExportEntry` instances describing the individual + export entries, and keyed by name. + """ + result = {} + r = self.get_distinfo_resource(EXPORTS_FILENAME) + if r: + result = self.read_exports() + return result + + def read_exports(self): + """ + Read exports data from a file in .ini format. + + :return: A dictionary of exports, mapping an export category to a list + of :class:`ExportEntry` instances describing the individual + export entries. + """ + result = {} + r = self.get_distinfo_resource(EXPORTS_FILENAME) + if r: + with contextlib.closing(r.as_stream()) as stream: + result = read_exports(stream) + return result + + def write_exports(self, exports): + """ + Write a dictionary of exports to a file in .ini format. + :param exports: A dictionary of exports, mapping an export category to + a list of :class:`ExportEntry` instances describing the + individual export entries. + """ + rf = self.get_distinfo_file(EXPORTS_FILENAME) + with open(rf, 'w') as f: + write_exports(exports, f) + + def get_resource_path(self, relative_path): + """ + NOTE: This API may change in the future. + + Return the absolute path to a resource file with the given relative + path. + + :param relative_path: The path, relative to .dist-info, of the resource + of interest. + :return: The absolute path where the resource is to be found. + """ + r = self.get_distinfo_resource('RESOURCES') + with contextlib.closing(r.as_stream()) as stream: + with CSVReader(stream=stream) as resources_reader: + for relative, destination in resources_reader: + if relative == relative_path: + return destination + raise KeyError('no resource file with relative path %r ' + 'is installed' % relative_path) + + def list_installed_files(self): + """ + Iterates over the ``RECORD`` entries and returns a tuple + ``(path, hash, size)`` for each line. + + :returns: iterator of (path, hash, size) + """ + for result in self._get_records(): + yield result + + def write_installed_files(self, paths, prefix, dry_run=False): + """ + Writes the ``RECORD`` file, using the ``paths`` iterable passed in. Any + existing ``RECORD`` file is silently overwritten. + + prefix is used to determine when to write absolute paths. + """ + prefix = os.path.join(prefix, '') + base = os.path.dirname(self.path) + base_under_prefix = base.startswith(prefix) + base = os.path.join(base, '') + record_path = self.get_distinfo_file('RECORD') + logger.info('creating %s', record_path) + if dry_run: + return None + with CSVWriter(record_path) as writer: + for path in paths: + if os.path.isdir(path) or path.endswith(('.pyc', '.pyo')): + # do not put size and hash, as in PEP-376 + hash_value = size = '' + else: + size = '%d' % os.path.getsize(path) + with open(path, 'rb') as fp: + hash_value = self.get_hash(fp.read()) + if path.startswith(base) or (base_under_prefix + and path.startswith(prefix)): + path = os.path.relpath(path, base) + writer.writerow((path, hash_value, size)) + + # add the RECORD file itself + if record_path.startswith(base): + record_path = os.path.relpath(record_path, base) + writer.writerow((record_path, '', '')) + return record_path + + def check_installed_files(self): + """ + Checks that the hashes and sizes of the files in ``RECORD`` are + matched by the files themselves. Returns a (possibly empty) list of + mismatches. Each entry in the mismatch list will be a tuple consisting + of the path, 'exists', 'size' or 'hash' according to what didn't match + (existence is checked first, then size, then hash), the expected + value and the actual value. + """ + mismatches = [] + base = os.path.dirname(self.path) + record_path = self.get_distinfo_file('RECORD') + for path, hash_value, size in self.list_installed_files(): + if not os.path.isabs(path): + path = os.path.join(base, path) + if path == record_path: + continue + if not os.path.exists(path): + mismatches.append((path, 'exists', True, False)) + elif os.path.isfile(path): + actual_size = str(os.path.getsize(path)) + if size and actual_size != size: + mismatches.append((path, 'size', size, actual_size)) + elif hash_value: + if '=' in hash_value: + hasher = hash_value.split('=', 1)[0] + else: + hasher = None + + with open(path, 'rb') as f: + actual_hash = self.get_hash(f.read(), hasher) + if actual_hash != hash_value: + mismatches.append( + (path, 'hash', hash_value, actual_hash)) + return mismatches + + @cached_property + def shared_locations(self): + """ + A dictionary of shared locations whose keys are in the set 'prefix', + 'purelib', 'platlib', 'scripts', 'headers', 'data' and 'namespace'. + The corresponding value is the absolute path of that category for + this distribution, and takes into account any paths selected by the + user at installation time (e.g. via command-line arguments). In the + case of the 'namespace' key, this would be a list of absolute paths + for the roots of namespace packages in this distribution. + + The first time this property is accessed, the relevant information is + read from the SHARED file in the .dist-info directory. + """ + result = {} + shared_path = os.path.join(self.path, 'SHARED') + if os.path.isfile(shared_path): + with codecs.open(shared_path, 'r', encoding='utf-8') as f: + lines = f.read().splitlines() + for line in lines: + key, value = line.split('=', 1) + if key == 'namespace': + result.setdefault(key, []).append(value) + else: + result[key] = value + return result + + def write_shared_locations(self, paths, dry_run=False): + """ + Write shared location information to the SHARED file in .dist-info. + :param paths: A dictionary as described in the documentation for + :meth:`shared_locations`. + :param dry_run: If True, the action is logged but no file is actually + written. + :return: The path of the file written to. + """ + shared_path = os.path.join(self.path, 'SHARED') + logger.info('creating %s', shared_path) + if dry_run: + return None + lines = [] + for key in ('prefix', 'lib', 'headers', 'scripts', 'data'): + path = paths[key] + if os.path.isdir(paths[key]): + lines.append('%s=%s' % (key, path)) + for ns in paths.get('namespace', ()): + lines.append('namespace=%s' % ns) + + with codecs.open(shared_path, 'w', encoding='utf-8') as f: + f.write('\n'.join(lines)) + return shared_path + + def get_distinfo_resource(self, path): + if path not in DIST_FILES: + raise DistlibException('invalid path for a dist-info file: ' + '%r at %r' % (path, self.path)) + finder = resources.finder_for_path(self.path) + if finder is None: + raise DistlibException('Unable to get a finder for %s' % self.path) + return finder.find(path) + + def get_distinfo_file(self, path): + """ + Returns a path located under the ``.dist-info`` directory. Returns a + string representing the path. + + :parameter path: a ``'/'``-separated path relative to the + ``.dist-info`` directory or an absolute path; + If *path* is an absolute path and doesn't start + with the ``.dist-info`` directory path, + a :class:`DistlibException` is raised + :type path: str + :rtype: str + """ + # Check if it is an absolute path # XXX use relpath, add tests + if path.find(os.sep) >= 0: + # it's an absolute path? + distinfo_dirname, path = path.split(os.sep)[-2:] + if distinfo_dirname != self.path.split(os.sep)[-1]: + raise DistlibException( + 'dist-info file %r does not belong to the %r %s ' + 'distribution' % (path, self.name, self.version)) + + # The file must be relative + if path not in DIST_FILES: + raise DistlibException('invalid path for a dist-info file: ' + '%r at %r' % (path, self.path)) + + return os.path.join(self.path, path) + + def list_distinfo_files(self): + """ + Iterates over the ``RECORD`` entries and returns paths for each line if + the path is pointing to a file located in the ``.dist-info`` directory + or one of its subdirectories. + + :returns: iterator of paths + """ + base = os.path.dirname(self.path) + for path, checksum, size in self._get_records(): + # XXX add separator or use real relpath algo + if not os.path.isabs(path): + path = os.path.join(base, path) + if path.startswith(self.path): + yield path + + def __eq__(self, other): + return (isinstance(other, InstalledDistribution) + and self.path == other.path) + + # See http://docs.python.org/reference/datamodel#object.__hash__ + __hash__ = object.__hash__ + + +class EggInfoDistribution(BaseInstalledDistribution): + """Created with the *path* of the ``.egg-info`` directory or file provided + to the constructor. It reads the metadata contained in the file itself, or + if the given path happens to be a directory, the metadata is read from the + file ``PKG-INFO`` under that directory.""" + + requested = True # as we have no way of knowing, assume it was + shared_locations = {} + + def __init__(self, path, env=None): + + def set_name_and_version(s, n, v): + s.name = n + s.key = n.lower() # for case-insensitive comparisons + s.version = v + + self.path = path + self.dist_path = env + if env and env._cache_enabled and path in env._cache_egg.path: + metadata = env._cache_egg.path[path].metadata + set_name_and_version(self, metadata.name, metadata.version) + else: + metadata = self._get_metadata(path) + + # Need to be set before caching + set_name_and_version(self, metadata.name, metadata.version) + + if env and env._cache_enabled: + env._cache_egg.add(self) + super(EggInfoDistribution, self).__init__(metadata, path, env) + + def _get_metadata(self, path): + requires = None + + def parse_requires_data(data): + """Create a list of dependencies from a requires.txt file. + + *data*: the contents of a setuptools-produced requires.txt file. + """ + reqs = [] + lines = data.splitlines() + for line in lines: + line = line.strip() + # sectioned files have bare newlines (separating sections) + if not line: # pragma: no cover + continue + if line.startswith('['): # pragma: no cover + logger.warning( + 'Unexpected line: quitting requirement scan: %r', line) + break + r = parse_requirement(line) + if not r: # pragma: no cover + logger.warning('Not recognised as a requirement: %r', line) + continue + if r.extras: # pragma: no cover + logger.warning('extra requirements in requires.txt are ' + 'not supported') + if not r.constraints: + reqs.append(r.name) + else: + cons = ', '.join('%s%s' % c for c in r.constraints) + reqs.append('%s (%s)' % (r.name, cons)) + return reqs + + def parse_requires_path(req_path): + """Create a list of dependencies from a requires.txt file. + + *req_path*: the path to a setuptools-produced requires.txt file. + """ + + reqs = [] + try: + with codecs.open(req_path, 'r', 'utf-8') as fp: + reqs = parse_requires_data(fp.read()) + except IOError: + pass + return reqs + + tl_path = tl_data = None + if path.endswith('.egg'): + if os.path.isdir(path): + p = os.path.join(path, 'EGG-INFO') + meta_path = os.path.join(p, 'PKG-INFO') + metadata = Metadata(path=meta_path, scheme='legacy') + req_path = os.path.join(p, 'requires.txt') + tl_path = os.path.join(p, 'top_level.txt') + requires = parse_requires_path(req_path) + else: + # FIXME handle the case where zipfile is not available + zipf = zipimport.zipimporter(path) + fileobj = StringIO( + zipf.get_data('EGG-INFO/PKG-INFO').decode('utf8')) + metadata = Metadata(fileobj=fileobj, scheme='legacy') + try: + data = zipf.get_data('EGG-INFO/requires.txt') + tl_data = zipf.get_data('EGG-INFO/top_level.txt').decode( + 'utf-8') + requires = parse_requires_data(data.decode('utf-8')) + except IOError: + requires = None + elif path.endswith('.egg-info'): + if os.path.isdir(path): + req_path = os.path.join(path, 'requires.txt') + requires = parse_requires_path(req_path) + path = os.path.join(path, 'PKG-INFO') + tl_path = os.path.join(path, 'top_level.txt') + metadata = Metadata(path=path, scheme='legacy') + else: + raise DistlibException('path must end with .egg-info or .egg, ' + 'got %r' % path) + + if requires: + metadata.add_requirements(requires) + # look for top-level modules in top_level.txt, if present + if tl_data is None: + if tl_path is not None and os.path.exists(tl_path): + with open(tl_path, 'rb') as f: + tl_data = f.read().decode('utf-8') + if not tl_data: + tl_data = [] + else: + tl_data = tl_data.splitlines() + self.modules = tl_data + return metadata + + def __repr__(self): + return '' % (self.name, self.version, + self.path) + + def __str__(self): + return "%s %s" % (self.name, self.version) + + def check_installed_files(self): + """ + Checks that the hashes and sizes of the files in ``RECORD`` are + matched by the files themselves. Returns a (possibly empty) list of + mismatches. Each entry in the mismatch list will be a tuple consisting + of the path, 'exists', 'size' or 'hash' according to what didn't match + (existence is checked first, then size, then hash), the expected + value and the actual value. + """ + mismatches = [] + record_path = os.path.join(self.path, 'installed-files.txt') + if os.path.exists(record_path): + for path, _, _ in self.list_installed_files(): + if path == record_path: + continue + if not os.path.exists(path): + mismatches.append((path, 'exists', True, False)) + return mismatches + + def list_installed_files(self): + """ + Iterates over the ``installed-files.txt`` entries and returns a tuple + ``(path, hash, size)`` for each line. + + :returns: a list of (path, hash, size) + """ + + def _md5(path): + f = open(path, 'rb') + try: + content = f.read() + finally: + f.close() + return hashlib.md5(content).hexdigest() + + def _size(path): + return os.stat(path).st_size + + record_path = os.path.join(self.path, 'installed-files.txt') + result = [] + if os.path.exists(record_path): + with codecs.open(record_path, 'r', encoding='utf-8') as f: + for line in f: + line = line.strip() + p = os.path.normpath(os.path.join(self.path, line)) + # "./" is present as a marker between installed files + # and installation metadata files + if not os.path.exists(p): + logger.warning('Non-existent file: %s', p) + if p.endswith(('.pyc', '.pyo')): + continue + # otherwise fall through and fail + if not os.path.isdir(p): + result.append((p, _md5(p), _size(p))) + result.append((record_path, None, None)) + return result + + def list_distinfo_files(self, absolute=False): + """ + Iterates over the ``installed-files.txt`` entries and returns paths for + each line if the path is pointing to a file located in the + ``.egg-info`` directory or one of its subdirectories. + + :parameter absolute: If *absolute* is ``True``, each returned path is + transformed into a local absolute path. Otherwise the + raw value from ``installed-files.txt`` is returned. + :type absolute: boolean + :returns: iterator of paths + """ + record_path = os.path.join(self.path, 'installed-files.txt') + if os.path.exists(record_path): + skip = True + with codecs.open(record_path, 'r', encoding='utf-8') as f: + for line in f: + line = line.strip() + if line == './': + skip = False + continue + if not skip: + p = os.path.normpath(os.path.join(self.path, line)) + if p.startswith(self.path): + if absolute: + yield p + else: + yield line + + def __eq__(self, other): + return (isinstance(other, EggInfoDistribution) + and self.path == other.path) + + # See http://docs.python.org/reference/datamodel#object.__hash__ + __hash__ = object.__hash__ + + +new_dist_class = InstalledDistribution +old_dist_class = EggInfoDistribution + + +class DependencyGraph(object): + """ + Represents a dependency graph between distributions. + + The dependency relationships are stored in an ``adjacency_list`` that maps + distributions to a list of ``(other, label)`` tuples where ``other`` + is a distribution and the edge is labeled with ``label`` (i.e. the version + specifier, if such was provided). Also, for more efficient traversal, for + every distribution ``x``, a list of predecessors is kept in + ``reverse_list[x]``. An edge from distribution ``a`` to + distribution ``b`` means that ``a`` depends on ``b``. If any missing + dependencies are found, they are stored in ``missing``, which is a + dictionary that maps distributions to a list of requirements that were not + provided by any other distributions. + """ + + def __init__(self): + self.adjacency_list = {} + self.reverse_list = {} + self.missing = {} + + def add_distribution(self, distribution): + """Add the *distribution* to the graph. + + :type distribution: :class:`distutils2.database.InstalledDistribution` + or :class:`distutils2.database.EggInfoDistribution` + """ + self.adjacency_list[distribution] = [] + self.reverse_list[distribution] = [] + # self.missing[distribution] = [] + + def add_edge(self, x, y, label=None): + """Add an edge from distribution *x* to distribution *y* with the given + *label*. + + :type x: :class:`distutils2.database.InstalledDistribution` or + :class:`distutils2.database.EggInfoDistribution` + :type y: :class:`distutils2.database.InstalledDistribution` or + :class:`distutils2.database.EggInfoDistribution` + :type label: ``str`` or ``None`` + """ + self.adjacency_list[x].append((y, label)) + # multiple edges are allowed, so be careful + if x not in self.reverse_list[y]: + self.reverse_list[y].append(x) + + def add_missing(self, distribution, requirement): + """ + Add a missing *requirement* for the given *distribution*. + + :type distribution: :class:`distutils2.database.InstalledDistribution` + or :class:`distutils2.database.EggInfoDistribution` + :type requirement: ``str`` + """ + logger.debug('%s missing %r', distribution, requirement) + self.missing.setdefault(distribution, []).append(requirement) + + def _repr_dist(self, dist): + return '%s %s' % (dist.name, dist.version) + + def repr_node(self, dist, level=1): + """Prints only a subgraph""" + output = [self._repr_dist(dist)] + for other, label in self.adjacency_list[dist]: + dist = self._repr_dist(other) + if label is not None: + dist = '%s [%s]' % (dist, label) + output.append(' ' * level + str(dist)) + suboutput = self.repr_node(other, level + 1) + subs = suboutput.split('\n') + output.extend(subs[1:]) + return '\n'.join(output) + + def to_dot(self, f, skip_disconnected=True): + """Writes a DOT output for the graph to the provided file *f*. + + If *skip_disconnected* is set to ``True``, then all distributions + that are not dependent on any other distribution are skipped. + + :type f: has to support ``file``-like operations + :type skip_disconnected: ``bool`` + """ + disconnected = [] + + f.write("digraph dependencies {\n") + for dist, adjs in self.adjacency_list.items(): + if len(adjs) == 0 and not skip_disconnected: + disconnected.append(dist) + for other, label in adjs: + if label is not None: + f.write('"%s" -> "%s" [label="%s"]\n' % + (dist.name, other.name, label)) + else: + f.write('"%s" -> "%s"\n' % (dist.name, other.name)) + if not skip_disconnected and len(disconnected) > 0: + f.write('subgraph disconnected {\n') + f.write('label = "Disconnected"\n') + f.write('bgcolor = red\n') + + for dist in disconnected: + f.write('"%s"' % dist.name) + f.write('\n') + f.write('}\n') + f.write('}\n') + + def topological_sort(self): + """ + Perform a topological sort of the graph. + :return: A tuple, the first element of which is a topologically sorted + list of distributions, and the second element of which is a + list of distributions that cannot be sorted because they have + circular dependencies and so form a cycle. + """ + result = [] + # Make a shallow copy of the adjacency list + alist = {} + for k, v in self.adjacency_list.items(): + alist[k] = v[:] + while True: + # See what we can remove in this run + to_remove = [] + for k, v in list(alist.items())[:]: + if not v: + to_remove.append(k) + del alist[k] + if not to_remove: + # What's left in alist (if anything) is a cycle. + break + # Remove from the adjacency list of others + for k, v in alist.items(): + alist[k] = [(d, r) for d, r in v if d not in to_remove] + logger.debug('Moving to result: %s', + ['%s (%s)' % (d.name, d.version) for d in to_remove]) + result.extend(to_remove) + return result, list(alist.keys()) + + def __repr__(self): + """Representation of the graph""" + output = [] + for dist, adjs in self.adjacency_list.items(): + output.append(self.repr_node(dist)) + return '\n'.join(output) + + +def make_graph(dists, scheme='default'): + """Makes a dependency graph from the given distributions. + + :parameter dists: a list of distributions + :type dists: list of :class:`distutils2.database.InstalledDistribution` and + :class:`distutils2.database.EggInfoDistribution` instances + :rtype: a :class:`DependencyGraph` instance + """ + scheme = get_scheme(scheme) + graph = DependencyGraph() + provided = {} # maps names to lists of (version, dist) tuples + + # first, build the graph and find out what's provided + for dist in dists: + graph.add_distribution(dist) + + for p in dist.provides: + name, version = parse_name_and_version(p) + logger.debug('Add to provided: %s, %s, %s', name, version, dist) + provided.setdefault(name, []).append((version, dist)) + + # now make the edges + for dist in dists: + requires = (dist.run_requires | dist.meta_requires + | dist.build_requires | dist.dev_requires) + for req in requires: + try: + matcher = scheme.matcher(req) + except UnsupportedVersionError: + # XXX compat-mode if cannot read the version + logger.warning('could not read version %r - using name only', + req) + name = req.split()[0] + matcher = scheme.matcher(name) + + name = matcher.key # case-insensitive + + matched = False + if name in provided: + for version, provider in provided[name]: + try: + match = matcher.match(version) + except UnsupportedVersionError: + match = False + + if match: + graph.add_edge(dist, provider, req) + matched = True + break + if not matched: + graph.add_missing(dist, req) + return graph + + +def get_dependent_dists(dists, dist): + """Recursively generate a list of distributions from *dists* that are + dependent on *dist*. + + :param dists: a list of distributions + :param dist: a distribution, member of *dists* for which we are interested + """ + if dist not in dists: + raise DistlibException('given distribution %r is not a member ' + 'of the list' % dist.name) + graph = make_graph(dists) + + dep = [dist] # dependent distributions + todo = graph.reverse_list[dist] # list of nodes we should inspect + + while todo: + d = todo.pop() + dep.append(d) + for succ in graph.reverse_list[d]: + if succ not in dep: + todo.append(succ) + + dep.pop(0) # remove dist from dep, was there to prevent infinite loops + return dep + + +def get_required_dists(dists, dist): + """Recursively generate a list of distributions from *dists* that are + required by *dist*. + + :param dists: a list of distributions + :param dist: a distribution, member of *dists* for which we are interested + in finding the dependencies. + """ + if dist not in dists: + raise DistlibException('given distribution %r is not a member ' + 'of the list' % dist.name) + graph = make_graph(dists) + + req = set() # required distributions + todo = graph.adjacency_list[dist] # list of nodes we should inspect + seen = set(t[0] for t in todo) # already added to todo + + while todo: + d = todo.pop()[0] + req.add(d) + pred_list = graph.adjacency_list[d] + for pred in pred_list: + d = pred[0] + if d not in req and d not in seen: + seen.add(d) + todo.append(pred) + return req + + +def make_dist(name, version, **kwargs): + """ + A convenience method for making a dist given just a name and version. + """ + summary = kwargs.pop('summary', 'Placeholder for summary') + md = Metadata(**kwargs) + md.name = name + md.version = version + md.summary = summary or 'Placeholder for summary' + return Distribution(md) diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/distlib/index.py b/.venv/lib/python3.11/site-packages/pip/_vendor/distlib/index.py new file mode 100644 index 0000000..56cd286 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/distlib/index.py @@ -0,0 +1,508 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2013-2023 Vinay Sajip. +# Licensed to the Python Software Foundation under a contributor agreement. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +import hashlib +import logging +import os +import shutil +import subprocess +import tempfile +try: + from threading import Thread +except ImportError: # pragma: no cover + from dummy_threading import Thread + +from . import DistlibException +from .compat import (HTTPBasicAuthHandler, Request, HTTPPasswordMgr, + urlparse, build_opener, string_types) +from .util import zip_dir, ServerProxy + +logger = logging.getLogger(__name__) + +DEFAULT_INDEX = 'https://pypi.org/pypi' +DEFAULT_REALM = 'pypi' + + +class PackageIndex(object): + """ + This class represents a package index compatible with PyPI, the Python + Package Index. + """ + + boundary = b'----------ThIs_Is_tHe_distlib_index_bouNdaRY_$' + + def __init__(self, url=None): + """ + Initialise an instance. + + :param url: The URL of the index. If not specified, the URL for PyPI is + used. + """ + self.url = url or DEFAULT_INDEX + self.read_configuration() + scheme, netloc, path, params, query, frag = urlparse(self.url) + if params or query or frag or scheme not in ('http', 'https'): + raise DistlibException('invalid repository: %s' % self.url) + self.password_handler = None + self.ssl_verifier = None + self.gpg = None + self.gpg_home = None + with open(os.devnull, 'w') as sink: + # Use gpg by default rather than gpg2, as gpg2 insists on + # prompting for passwords + for s in ('gpg', 'gpg2'): + try: + rc = subprocess.check_call([s, '--version'], stdout=sink, + stderr=sink) + if rc == 0: + self.gpg = s + break + except OSError: + pass + + def _get_pypirc_command(self): + """ + Get the distutils command for interacting with PyPI configurations. + :return: the command. + """ + from .util import _get_pypirc_command as cmd + return cmd() + + def read_configuration(self): + """ + Read the PyPI access configuration as supported by distutils. This populates + ``username``, ``password``, ``realm`` and ``url`` attributes from the + configuration. + """ + from .util import _load_pypirc + cfg = _load_pypirc(self) + self.username = cfg.get('username') + self.password = cfg.get('password') + self.realm = cfg.get('realm', 'pypi') + self.url = cfg.get('repository', self.url) + + def save_configuration(self): + """ + Save the PyPI access configuration. You must have set ``username`` and + ``password`` attributes before calling this method. + """ + self.check_credentials() + from .util import _store_pypirc + _store_pypirc(self) + + def check_credentials(self): + """ + Check that ``username`` and ``password`` have been set, and raise an + exception if not. + """ + if self.username is None or self.password is None: + raise DistlibException('username and password must be set') + pm = HTTPPasswordMgr() + _, netloc, _, _, _, _ = urlparse(self.url) + pm.add_password(self.realm, netloc, self.username, self.password) + self.password_handler = HTTPBasicAuthHandler(pm) + + def register(self, metadata): # pragma: no cover + """ + Register a distribution on PyPI, using the provided metadata. + + :param metadata: A :class:`Metadata` instance defining at least a name + and version number for the distribution to be + registered. + :return: The HTTP response received from PyPI upon submission of the + request. + """ + self.check_credentials() + metadata.validate() + d = metadata.todict() + d[':action'] = 'verify' + request = self.encode_request(d.items(), []) + self.send_request(request) + d[':action'] = 'submit' + request = self.encode_request(d.items(), []) + return self.send_request(request) + + def _reader(self, name, stream, outbuf): + """ + Thread runner for reading lines of from a subprocess into a buffer. + + :param name: The logical name of the stream (used for logging only). + :param stream: The stream to read from. This will typically a pipe + connected to the output stream of a subprocess. + :param outbuf: The list to append the read lines to. + """ + while True: + s = stream.readline() + if not s: + break + s = s.decode('utf-8').rstrip() + outbuf.append(s) + logger.debug('%s: %s' % (name, s)) + stream.close() + + def get_sign_command(self, filename, signer, sign_password, keystore=None): # pragma: no cover + """ + Return a suitable command for signing a file. + + :param filename: The pathname to the file to be signed. + :param signer: The identifier of the signer of the file. + :param sign_password: The passphrase for the signer's + private key used for signing. + :param keystore: The path to a directory which contains the keys + used in verification. If not specified, the + instance's ``gpg_home`` attribute is used instead. + :return: The signing command as a list suitable to be + passed to :class:`subprocess.Popen`. + """ + cmd = [self.gpg, '--status-fd', '2', '--no-tty'] + if keystore is None: + keystore = self.gpg_home + if keystore: + cmd.extend(['--homedir', keystore]) + if sign_password is not None: + cmd.extend(['--batch', '--passphrase-fd', '0']) + td = tempfile.mkdtemp() + sf = os.path.join(td, os.path.basename(filename) + '.asc') + cmd.extend(['--detach-sign', '--armor', '--local-user', + signer, '--output', sf, filename]) + logger.debug('invoking: %s', ' '.join(cmd)) + return cmd, sf + + def run_command(self, cmd, input_data=None): + """ + Run a command in a child process , passing it any input data specified. + + :param cmd: The command to run. + :param input_data: If specified, this must be a byte string containing + data to be sent to the child process. + :return: A tuple consisting of the subprocess' exit code, a list of + lines read from the subprocess' ``stdout``, and a list of + lines read from the subprocess' ``stderr``. + """ + kwargs = { + 'stdout': subprocess.PIPE, + 'stderr': subprocess.PIPE, + } + if input_data is not None: + kwargs['stdin'] = subprocess.PIPE + stdout = [] + stderr = [] + p = subprocess.Popen(cmd, **kwargs) + # We don't use communicate() here because we may need to + # get clever with interacting with the command + t1 = Thread(target=self._reader, args=('stdout', p.stdout, stdout)) + t1.start() + t2 = Thread(target=self._reader, args=('stderr', p.stderr, stderr)) + t2.start() + if input_data is not None: + p.stdin.write(input_data) + p.stdin.close() + + p.wait() + t1.join() + t2.join() + return p.returncode, stdout, stderr + + def sign_file(self, filename, signer, sign_password, keystore=None): # pragma: no cover + """ + Sign a file. + + :param filename: The pathname to the file to be signed. + :param signer: The identifier of the signer of the file. + :param sign_password: The passphrase for the signer's + private key used for signing. + :param keystore: The path to a directory which contains the keys + used in signing. If not specified, the instance's + ``gpg_home`` attribute is used instead. + :return: The absolute pathname of the file where the signature is + stored. + """ + cmd, sig_file = self.get_sign_command(filename, signer, sign_password, + keystore) + rc, stdout, stderr = self.run_command(cmd, + sign_password.encode('utf-8')) + if rc != 0: + raise DistlibException('sign command failed with error ' + 'code %s' % rc) + return sig_file + + def upload_file(self, metadata, filename, signer=None, sign_password=None, + filetype='sdist', pyversion='source', keystore=None): + """ + Upload a release file to the index. + + :param metadata: A :class:`Metadata` instance defining at least a name + and version number for the file to be uploaded. + :param filename: The pathname of the file to be uploaded. + :param signer: The identifier of the signer of the file. + :param sign_password: The passphrase for the signer's + private key used for signing. + :param filetype: The type of the file being uploaded. This is the + distutils command which produced that file, e.g. + ``sdist`` or ``bdist_wheel``. + :param pyversion: The version of Python which the release relates + to. For code compatible with any Python, this would + be ``source``, otherwise it would be e.g. ``3.2``. + :param keystore: The path to a directory which contains the keys + used in signing. If not specified, the instance's + ``gpg_home`` attribute is used instead. + :return: The HTTP response received from PyPI upon submission of the + request. + """ + self.check_credentials() + if not os.path.exists(filename): + raise DistlibException('not found: %s' % filename) + metadata.validate() + d = metadata.todict() + sig_file = None + if signer: + if not self.gpg: + logger.warning('no signing program available - not signed') + else: + sig_file = self.sign_file(filename, signer, sign_password, + keystore) + with open(filename, 'rb') as f: + file_data = f.read() + md5_digest = hashlib.md5(file_data).hexdigest() + sha256_digest = hashlib.sha256(file_data).hexdigest() + d.update({ + ':action': 'file_upload', + 'protocol_version': '1', + 'filetype': filetype, + 'pyversion': pyversion, + 'md5_digest': md5_digest, + 'sha256_digest': sha256_digest, + }) + files = [('content', os.path.basename(filename), file_data)] + if sig_file: + with open(sig_file, 'rb') as f: + sig_data = f.read() + files.append(('gpg_signature', os.path.basename(sig_file), + sig_data)) + shutil.rmtree(os.path.dirname(sig_file)) + request = self.encode_request(d.items(), files) + return self.send_request(request) + + def upload_documentation(self, metadata, doc_dir): # pragma: no cover + """ + Upload documentation to the index. + + :param metadata: A :class:`Metadata` instance defining at least a name + and version number for the documentation to be + uploaded. + :param doc_dir: The pathname of the directory which contains the + documentation. This should be the directory that + contains the ``index.html`` for the documentation. + :return: The HTTP response received from PyPI upon submission of the + request. + """ + self.check_credentials() + if not os.path.isdir(doc_dir): + raise DistlibException('not a directory: %r' % doc_dir) + fn = os.path.join(doc_dir, 'index.html') + if not os.path.exists(fn): + raise DistlibException('not found: %r' % fn) + metadata.validate() + name, version = metadata.name, metadata.version + zip_data = zip_dir(doc_dir).getvalue() + fields = [(':action', 'doc_upload'), + ('name', name), ('version', version)] + files = [('content', name, zip_data)] + request = self.encode_request(fields, files) + return self.send_request(request) + + def get_verify_command(self, signature_filename, data_filename, + keystore=None): + """ + Return a suitable command for verifying a file. + + :param signature_filename: The pathname to the file containing the + signature. + :param data_filename: The pathname to the file containing the + signed data. + :param keystore: The path to a directory which contains the keys + used in verification. If not specified, the + instance's ``gpg_home`` attribute is used instead. + :return: The verifying command as a list suitable to be + passed to :class:`subprocess.Popen`. + """ + cmd = [self.gpg, '--status-fd', '2', '--no-tty'] + if keystore is None: + keystore = self.gpg_home + if keystore: + cmd.extend(['--homedir', keystore]) + cmd.extend(['--verify', signature_filename, data_filename]) + logger.debug('invoking: %s', ' '.join(cmd)) + return cmd + + def verify_signature(self, signature_filename, data_filename, + keystore=None): + """ + Verify a signature for a file. + + :param signature_filename: The pathname to the file containing the + signature. + :param data_filename: The pathname to the file containing the + signed data. + :param keystore: The path to a directory which contains the keys + used in verification. If not specified, the + instance's ``gpg_home`` attribute is used instead. + :return: True if the signature was verified, else False. + """ + if not self.gpg: + raise DistlibException('verification unavailable because gpg ' + 'unavailable') + cmd = self.get_verify_command(signature_filename, data_filename, + keystore) + rc, stdout, stderr = self.run_command(cmd) + if rc not in (0, 1): + raise DistlibException('verify command failed with error code %s' % rc) + return rc == 0 + + def download_file(self, url, destfile, digest=None, reporthook=None): + """ + This is a convenience method for downloading a file from an URL. + Normally, this will be a file from the index, though currently + no check is made for this (i.e. a file can be downloaded from + anywhere). + + The method is just like the :func:`urlretrieve` function in the + standard library, except that it allows digest computation to be + done during download and checking that the downloaded data + matched any expected value. + + :param url: The URL of the file to be downloaded (assumed to be + available via an HTTP GET request). + :param destfile: The pathname where the downloaded file is to be + saved. + :param digest: If specified, this must be a (hasher, value) + tuple, where hasher is the algorithm used (e.g. + ``'md5'``) and ``value`` is the expected value. + :param reporthook: The same as for :func:`urlretrieve` in the + standard library. + """ + if digest is None: + digester = None + logger.debug('No digest specified') + else: + if isinstance(digest, (list, tuple)): + hasher, digest = digest + else: + hasher = 'md5' + digester = getattr(hashlib, hasher)() + logger.debug('Digest specified: %s' % digest) + # The following code is equivalent to urlretrieve. + # We need to do it this way so that we can compute the + # digest of the file as we go. + with open(destfile, 'wb') as dfp: + # addinfourl is not a context manager on 2.x + # so we have to use try/finally + sfp = self.send_request(Request(url)) + try: + headers = sfp.info() + blocksize = 8192 + size = -1 + read = 0 + blocknum = 0 + if "content-length" in headers: + size = int(headers["Content-Length"]) + if reporthook: + reporthook(blocknum, blocksize, size) + while True: + block = sfp.read(blocksize) + if not block: + break + read += len(block) + dfp.write(block) + if digester: + digester.update(block) + blocknum += 1 + if reporthook: + reporthook(blocknum, blocksize, size) + finally: + sfp.close() + + # check that we got the whole file, if we can + if size >= 0 and read < size: + raise DistlibException( + 'retrieval incomplete: got only %d out of %d bytes' + % (read, size)) + # if we have a digest, it must match. + if digester: + actual = digester.hexdigest() + if digest != actual: + raise DistlibException('%s digest mismatch for %s: expected ' + '%s, got %s' % (hasher, destfile, + digest, actual)) + logger.debug('Digest verified: %s', digest) + + def send_request(self, req): + """ + Send a standard library :class:`Request` to PyPI and return its + response. + + :param req: The request to send. + :return: The HTTP response from PyPI (a standard library HTTPResponse). + """ + handlers = [] + if self.password_handler: + handlers.append(self.password_handler) + if self.ssl_verifier: + handlers.append(self.ssl_verifier) + opener = build_opener(*handlers) + return opener.open(req) + + def encode_request(self, fields, files): + """ + Encode fields and files for posting to an HTTP server. + + :param fields: The fields to send as a list of (fieldname, value) + tuples. + :param files: The files to send as a list of (fieldname, filename, + file_bytes) tuple. + """ + # Adapted from packaging, which in turn was adapted from + # http://code.activestate.com/recipes/146306 + + parts = [] + boundary = self.boundary + for k, values in fields: + if not isinstance(values, (list, tuple)): + values = [values] + + for v in values: + parts.extend(( + b'--' + boundary, + ('Content-Disposition: form-data; name="%s"' % + k).encode('utf-8'), + b'', + v.encode('utf-8'))) + for key, filename, value in files: + parts.extend(( + b'--' + boundary, + ('Content-Disposition: form-data; name="%s"; filename="%s"' % + (key, filename)).encode('utf-8'), + b'', + value)) + + parts.extend((b'--' + boundary + b'--', b'')) + + body = b'\r\n'.join(parts) + ct = b'multipart/form-data; boundary=' + boundary + headers = { + 'Content-type': ct, + 'Content-length': str(len(body)) + } + return Request(self.url, body, headers) + + def search(self, terms, operator=None): # pragma: no cover + if isinstance(terms, string_types): + terms = {'name': terms} + rpc_proxy = ServerProxy(self.url, timeout=3.0) + try: + return rpc_proxy.search(terms, operator or 'and') + finally: + rpc_proxy('close')() diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/distlib/locators.py b/.venv/lib/python3.11/site-packages/pip/_vendor/distlib/locators.py new file mode 100644 index 0000000..f9f0788 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/distlib/locators.py @@ -0,0 +1,1303 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2012-2023 Vinay Sajip. +# Licensed to the Python Software Foundation under a contributor agreement. +# See LICENSE.txt and CONTRIBUTORS.txt. +# + +import gzip +from io import BytesIO +import json +import logging +import os +import posixpath +import re +try: + import threading +except ImportError: # pragma: no cover + import dummy_threading as threading +import zlib + +from . import DistlibException +from .compat import (urljoin, urlparse, urlunparse, url2pathname, pathname2url, + queue, quote, unescape, build_opener, + HTTPRedirectHandler as BaseRedirectHandler, text_type, + Request, HTTPError, URLError) +from .database import Distribution, DistributionPath, make_dist +from .metadata import Metadata, MetadataInvalidError +from .util import (cached_property, ensure_slash, split_filename, get_project_data, + parse_requirement, parse_name_and_version, ServerProxy, + normalize_name) +from .version import get_scheme, UnsupportedVersionError +from .wheel import Wheel, is_compatible + +logger = logging.getLogger(__name__) + +HASHER_HASH = re.compile(r'^(\w+)=([a-f0-9]+)') +CHARSET = re.compile(r';\s*charset\s*=\s*(.*)\s*$', re.I) +HTML_CONTENT_TYPE = re.compile('text/html|application/x(ht)?ml') +DEFAULT_INDEX = 'https://pypi.org/pypi' + + +def get_all_distribution_names(url=None): + """ + Return all distribution names known by an index. + :param url: The URL of the index. + :return: A list of all known distribution names. + """ + if url is None: + url = DEFAULT_INDEX + client = ServerProxy(url, timeout=3.0) + try: + return client.list_packages() + finally: + client('close')() + + +class RedirectHandler(BaseRedirectHandler): + """ + A class to work around a bug in some Python 3.2.x releases. + """ + # There's a bug in the base version for some 3.2.x + # (e.g. 3.2.2 on Ubuntu Oneiric). If a Location header + # returns e.g. /abc, it bails because it says the scheme '' + # is bogus, when actually it should use the request's + # URL for the scheme. See Python issue #13696. + def http_error_302(self, req, fp, code, msg, headers): + # Some servers (incorrectly) return multiple Location headers + # (so probably same goes for URI). Use first header. + newurl = None + for key in ('location', 'uri'): + if key in headers: + newurl = headers[key] + break + if newurl is None: # pragma: no cover + return + urlparts = urlparse(newurl) + if urlparts.scheme == '': + newurl = urljoin(req.get_full_url(), newurl) + if hasattr(headers, 'replace_header'): + headers.replace_header(key, newurl) + else: + headers[key] = newurl + return BaseRedirectHandler.http_error_302(self, req, fp, code, msg, + headers) + + http_error_301 = http_error_303 = http_error_307 = http_error_302 + + +class Locator(object): + """ + A base class for locators - things that locate distributions. + """ + source_extensions = ('.tar.gz', '.tar.bz2', '.tar', '.zip', '.tgz', '.tbz') + binary_extensions = ('.egg', '.exe', '.whl') + excluded_extensions = ('.pdf',) + + # A list of tags indicating which wheels you want to match. The default + # value of None matches against the tags compatible with the running + # Python. If you want to match other values, set wheel_tags on a locator + # instance to a list of tuples (pyver, abi, arch) which you want to match. + wheel_tags = None + + downloadable_extensions = source_extensions + ('.whl',) + + def __init__(self, scheme='default'): + """ + Initialise an instance. + :param scheme: Because locators look for most recent versions, they + need to know the version scheme to use. This specifies + the current PEP-recommended scheme - use ``'legacy'`` + if you need to support existing distributions on PyPI. + """ + self._cache = {} + self.scheme = scheme + # Because of bugs in some of the handlers on some of the platforms, + # we use our own opener rather than just using urlopen. + self.opener = build_opener(RedirectHandler()) + # If get_project() is called from locate(), the matcher instance + # is set from the requirement passed to locate(). See issue #18 for + # why this can be useful to know. + self.matcher = None + self.errors = queue.Queue() + + def get_errors(self): + """ + Return any errors which have occurred. + """ + result = [] + while not self.errors.empty(): # pragma: no cover + try: + e = self.errors.get(False) + result.append(e) + except self.errors.Empty: + continue + self.errors.task_done() + return result + + def clear_errors(self): + """ + Clear any errors which may have been logged. + """ + # Just get the errors and throw them away + self.get_errors() + + def clear_cache(self): + self._cache.clear() + + def _get_scheme(self): + return self._scheme + + def _set_scheme(self, value): + self._scheme = value + + scheme = property(_get_scheme, _set_scheme) + + def _get_project(self, name): + """ + For a given project, get a dictionary mapping available versions to Distribution + instances. + + This should be implemented in subclasses. + + If called from a locate() request, self.matcher will be set to a + matcher for the requirement to satisfy, otherwise it will be None. + """ + raise NotImplementedError('Please implement in the subclass') + + def get_distribution_names(self): + """ + Return all the distribution names known to this locator. + """ + raise NotImplementedError('Please implement in the subclass') + + def get_project(self, name): + """ + For a given project, get a dictionary mapping available versions to Distribution + instances. + + This calls _get_project to do all the work, and just implements a caching layer on top. + """ + if self._cache is None: # pragma: no cover + result = self._get_project(name) + elif name in self._cache: + result = self._cache[name] + else: + self.clear_errors() + result = self._get_project(name) + self._cache[name] = result + return result + + def score_url(self, url): + """ + Give an url a score which can be used to choose preferred URLs + for a given project release. + """ + t = urlparse(url) + basename = posixpath.basename(t.path) + compatible = True + is_wheel = basename.endswith('.whl') + is_downloadable = basename.endswith(self.downloadable_extensions) + if is_wheel: + compatible = is_compatible(Wheel(basename), self.wheel_tags) + return (t.scheme == 'https', 'pypi.org' in t.netloc, + is_downloadable, is_wheel, compatible, basename) + + def prefer_url(self, url1, url2): + """ + Choose one of two URLs where both are candidates for distribution + archives for the same version of a distribution (for example, + .tar.gz vs. zip). + + The current implementation favours https:// URLs over http://, archives + from PyPI over those from other locations, wheel compatibility (if a + wheel) and then the archive name. + """ + result = url2 + if url1: + s1 = self.score_url(url1) + s2 = self.score_url(url2) + if s1 > s2: + result = url1 + if result != url2: + logger.debug('Not replacing %r with %r', url1, url2) + else: + logger.debug('Replacing %r with %r', url1, url2) + return result + + def split_filename(self, filename, project_name): + """ + Attempt to split a filename in project name, version and Python version. + """ + return split_filename(filename, project_name) + + def convert_url_to_download_info(self, url, project_name): + """ + See if a URL is a candidate for a download URL for a project (the URL + has typically been scraped from an HTML page). + + If it is, a dictionary is returned with keys "name", "version", + "filename" and "url"; otherwise, None is returned. + """ + def same_project(name1, name2): + return normalize_name(name1) == normalize_name(name2) + + result = None + scheme, netloc, path, params, query, frag = urlparse(url) + if frag.lower().startswith('egg='): # pragma: no cover + logger.debug('%s: version hint in fragment: %r', + project_name, frag) + m = HASHER_HASH.match(frag) + if m: + algo, digest = m.groups() + else: + algo, digest = None, None + origpath = path + if path and path[-1] == '/': # pragma: no cover + path = path[:-1] + if path.endswith('.whl'): + try: + wheel = Wheel(path) + if not is_compatible(wheel, self.wheel_tags): + logger.debug('Wheel not compatible: %s', path) + else: + if project_name is None: + include = True + else: + include = same_project(wheel.name, project_name) + if include: + result = { + 'name': wheel.name, + 'version': wheel.version, + 'filename': wheel.filename, + 'url': urlunparse((scheme, netloc, origpath, + params, query, '')), + 'python-version': ', '.join( + ['.'.join(list(v[2:])) for v in wheel.pyver]), + } + except Exception: # pragma: no cover + logger.warning('invalid path for wheel: %s', path) + elif not path.endswith(self.downloadable_extensions): # pragma: no cover + logger.debug('Not downloadable: %s', path) + else: # downloadable extension + path = filename = posixpath.basename(path) + for ext in self.downloadable_extensions: + if path.endswith(ext): + path = path[:-len(ext)] + t = self.split_filename(path, project_name) + if not t: # pragma: no cover + logger.debug('No match for project/version: %s', path) + else: + name, version, pyver = t + if not project_name or same_project(project_name, name): + result = { + 'name': name, + 'version': version, + 'filename': filename, + 'url': urlunparse((scheme, netloc, origpath, + params, query, '')), + } + if pyver: # pragma: no cover + result['python-version'] = pyver + break + if result and algo: + result['%s_digest' % algo] = digest + return result + + def _get_digest(self, info): + """ + Get a digest from a dictionary by looking at a "digests" dictionary + or keys of the form 'algo_digest'. + + Returns a 2-tuple (algo, digest) if found, else None. Currently + looks only for SHA256, then MD5. + """ + result = None + if 'digests' in info: + digests = info['digests'] + for algo in ('sha256', 'md5'): + if algo in digests: + result = (algo, digests[algo]) + break + if not result: + for algo in ('sha256', 'md5'): + key = '%s_digest' % algo + if key in info: + result = (algo, info[key]) + break + return result + + def _update_version_data(self, result, info): + """ + Update a result dictionary (the final result from _get_project) with a + dictionary for a specific version, which typically holds information + gleaned from a filename or URL for an archive for the distribution. + """ + name = info.pop('name') + version = info.pop('version') + if version in result: + dist = result[version] + md = dist.metadata + else: + dist = make_dist(name, version, scheme=self.scheme) + md = dist.metadata + dist.digest = digest = self._get_digest(info) + url = info['url'] + result['digests'][url] = digest + if md.source_url != info['url']: + md.source_url = self.prefer_url(md.source_url, url) + result['urls'].setdefault(version, set()).add(url) + dist.locator = self + result[version] = dist + + def locate(self, requirement, prereleases=False): + """ + Find the most recent distribution which matches the given + requirement. + + :param requirement: A requirement of the form 'foo (1.0)' or perhaps + 'foo (>= 1.0, < 2.0, != 1.3)' + :param prereleases: If ``True``, allow pre-release versions + to be located. Otherwise, pre-release versions + are not returned. + :return: A :class:`Distribution` instance, or ``None`` if no such + distribution could be located. + """ + result = None + r = parse_requirement(requirement) + if r is None: # pragma: no cover + raise DistlibException('Not a valid requirement: %r' % requirement) + scheme = get_scheme(self.scheme) + self.matcher = matcher = scheme.matcher(r.requirement) + logger.debug('matcher: %s (%s)', matcher, type(matcher).__name__) + versions = self.get_project(r.name) + if len(versions) > 2: # urls and digests keys are present + # sometimes, versions are invalid + slist = [] + vcls = matcher.version_class + for k in versions: + if k in ('urls', 'digests'): + continue + try: + if not matcher.match(k): + pass # logger.debug('%s did not match %r', matcher, k) + else: + if prereleases or not vcls(k).is_prerelease: + slist.append(k) + except Exception: # pragma: no cover + logger.warning('error matching %s with %r', matcher, k) + pass # slist.append(k) + if len(slist) > 1: + slist = sorted(slist, key=scheme.key) + if slist: + logger.debug('sorted list: %s', slist) + version = slist[-1] + result = versions[version] + if result: + if r.extras: + result.extras = r.extras + result.download_urls = versions.get('urls', {}).get(version, set()) + d = {} + sd = versions.get('digests', {}) + for url in result.download_urls: + if url in sd: # pragma: no cover + d[url] = sd[url] + result.digests = d + self.matcher = None + return result + + +class PyPIRPCLocator(Locator): + """ + This locator uses XML-RPC to locate distributions. It therefore + cannot be used with simple mirrors (that only mirror file content). + """ + def __init__(self, url, **kwargs): + """ + Initialise an instance. + + :param url: The URL to use for XML-RPC. + :param kwargs: Passed to the superclass constructor. + """ + super(PyPIRPCLocator, self).__init__(**kwargs) + self.base_url = url + self.client = ServerProxy(url, timeout=3.0) + + def get_distribution_names(self): + """ + Return all the distribution names known to this locator. + """ + return set(self.client.list_packages()) + + def _get_project(self, name): + result = {'urls': {}, 'digests': {}} + versions = self.client.package_releases(name, True) + for v in versions: + urls = self.client.release_urls(name, v) + data = self.client.release_data(name, v) + metadata = Metadata(scheme=self.scheme) + metadata.name = data['name'] + metadata.version = data['version'] + metadata.license = data.get('license') + metadata.keywords = data.get('keywords', []) + metadata.summary = data.get('summary') + dist = Distribution(metadata) + if urls: + info = urls[0] + metadata.source_url = info['url'] + dist.digest = self._get_digest(info) + dist.locator = self + result[v] = dist + for info in urls: + url = info['url'] + digest = self._get_digest(info) + result['urls'].setdefault(v, set()).add(url) + result['digests'][url] = digest + return result + + +class PyPIJSONLocator(Locator): + """ + This locator uses PyPI's JSON interface. It's very limited in functionality + and probably not worth using. + """ + def __init__(self, url, **kwargs): + super(PyPIJSONLocator, self).__init__(**kwargs) + self.base_url = ensure_slash(url) + + def get_distribution_names(self): + """ + Return all the distribution names known to this locator. + """ + raise NotImplementedError('Not available from this locator') + + def _get_project(self, name): + result = {'urls': {}, 'digests': {}} + url = urljoin(self.base_url, '%s/json' % quote(name)) + try: + resp = self.opener.open(url) + data = resp.read().decode() # for now + d = json.loads(data) + md = Metadata(scheme=self.scheme) + data = d['info'] + md.name = data['name'] + md.version = data['version'] + md.license = data.get('license') + md.keywords = data.get('keywords', []) + md.summary = data.get('summary') + dist = Distribution(md) + dist.locator = self + # urls = d['urls'] + result[md.version] = dist + for info in d['urls']: + url = info['url'] + dist.download_urls.add(url) + dist.digests[url] = self._get_digest(info) + result['urls'].setdefault(md.version, set()).add(url) + result['digests'][url] = self._get_digest(info) + # Now get other releases + for version, infos in d['releases'].items(): + if version == md.version: + continue # already done + omd = Metadata(scheme=self.scheme) + omd.name = md.name + omd.version = version + odist = Distribution(omd) + odist.locator = self + result[version] = odist + for info in infos: + url = info['url'] + odist.download_urls.add(url) + odist.digests[url] = self._get_digest(info) + result['urls'].setdefault(version, set()).add(url) + result['digests'][url] = self._get_digest(info) +# for info in urls: +# md.source_url = info['url'] +# dist.digest = self._get_digest(info) +# dist.locator = self +# for info in urls: +# url = info['url'] +# result['urls'].setdefault(md.version, set()).add(url) +# result['digests'][url] = self._get_digest(info) + except Exception as e: + self.errors.put(text_type(e)) + logger.exception('JSON fetch failed: %s', e) + return result + + +class Page(object): + """ + This class represents a scraped HTML page. + """ + # The following slightly hairy-looking regex just looks for the contents of + # an anchor link, which has an attribute "href" either immediately preceded + # or immediately followed by a "rel" attribute. The attribute values can be + # declared with double quotes, single quotes or no quotes - which leads to + # the length of the expression. + _href = re.compile(""" +(rel\\s*=\\s*(?:"(?P[^"]*)"|'(?P[^']*)'|(?P[^>\\s\n]*))\\s+)? +href\\s*=\\s*(?:"(?P[^"]*)"|'(?P[^']*)'|(?P[^>\\s\n]*)) +(\\s+rel\\s*=\\s*(?:"(?P[^"]*)"|'(?P[^']*)'|(?P[^>\\s\n]*)))? +""", re.I | re.S | re.X) + _base = re.compile(r"""]+)""", re.I | re.S) + + def __init__(self, data, url): + """ + Initialise an instance with the Unicode page contents and the URL they + came from. + """ + self.data = data + self.base_url = self.url = url + m = self._base.search(self.data) + if m: + self.base_url = m.group(1) + + _clean_re = re.compile(r'[^a-z0-9$&+,/:;=?@.#%_\\|-]', re.I) + + @cached_property + def links(self): + """ + Return the URLs of all the links on a page together with information + about their "rel" attribute, for determining which ones to treat as + downloads and which ones to queue for further scraping. + """ + def clean(url): + "Tidy up an URL." + scheme, netloc, path, params, query, frag = urlparse(url) + return urlunparse((scheme, netloc, quote(path), + params, query, frag)) + + result = set() + for match in self._href.finditer(self.data): + d = match.groupdict('') + rel = (d['rel1'] or d['rel2'] or d['rel3'] or + d['rel4'] or d['rel5'] or d['rel6']) + url = d['url1'] or d['url2'] or d['url3'] + url = urljoin(self.base_url, url) + url = unescape(url) + url = self._clean_re.sub(lambda m: '%%%2x' % ord(m.group(0)), url) + result.add((url, rel)) + # We sort the result, hoping to bring the most recent versions + # to the front + result = sorted(result, key=lambda t: t[0], reverse=True) + return result + + +class SimpleScrapingLocator(Locator): + """ + A locator which scrapes HTML pages to locate downloads for a distribution. + This runs multiple threads to do the I/O; performance is at least as good + as pip's PackageFinder, which works in an analogous fashion. + """ + + # These are used to deal with various Content-Encoding schemes. + decoders = { + 'deflate': zlib.decompress, + 'gzip': lambda b: gzip.GzipFile(fileobj=BytesIO(b)).read(), + 'none': lambda b: b, + } + + def __init__(self, url, timeout=None, num_workers=10, **kwargs): + """ + Initialise an instance. + :param url: The root URL to use for scraping. + :param timeout: The timeout, in seconds, to be applied to requests. + This defaults to ``None`` (no timeout specified). + :param num_workers: The number of worker threads you want to do I/O, + This defaults to 10. + :param kwargs: Passed to the superclass. + """ + super(SimpleScrapingLocator, self).__init__(**kwargs) + self.base_url = ensure_slash(url) + self.timeout = timeout + self._page_cache = {} + self._seen = set() + self._to_fetch = queue.Queue() + self._bad_hosts = set() + self.skip_externals = False + self.num_workers = num_workers + self._lock = threading.RLock() + # See issue #45: we need to be resilient when the locator is used + # in a thread, e.g. with concurrent.futures. We can't use self._lock + # as it is for coordinating our internal threads - the ones created + # in _prepare_threads. + self._gplock = threading.RLock() + self.platform_check = False # See issue #112 + + def _prepare_threads(self): + """ + Threads are created only when get_project is called, and terminate + before it returns. They are there primarily to parallelise I/O (i.e. + fetching web pages). + """ + self._threads = [] + for i in range(self.num_workers): + t = threading.Thread(target=self._fetch) + t.daemon = True + t.start() + self._threads.append(t) + + def _wait_threads(self): + """ + Tell all the threads to terminate (by sending a sentinel value) and + wait for them to do so. + """ + # Note that you need two loops, since you can't say which + # thread will get each sentinel + for t in self._threads: + self._to_fetch.put(None) # sentinel + for t in self._threads: + t.join() + self._threads = [] + + def _get_project(self, name): + result = {'urls': {}, 'digests': {}} + with self._gplock: + self.result = result + self.project_name = name + url = urljoin(self.base_url, '%s/' % quote(name)) + self._seen.clear() + self._page_cache.clear() + self._prepare_threads() + try: + logger.debug('Queueing %s', url) + self._to_fetch.put(url) + self._to_fetch.join() + finally: + self._wait_threads() + del self.result + return result + + platform_dependent = re.compile(r'\b(linux_(i\d86|x86_64|arm\w+)|' + r'win(32|_amd64)|macosx_?\d+)\b', re.I) + + def _is_platform_dependent(self, url): + """ + Does an URL refer to a platform-specific download? + """ + return self.platform_dependent.search(url) + + def _process_download(self, url): + """ + See if an URL is a suitable download for a project. + + If it is, register information in the result dictionary (for + _get_project) about the specific version it's for. + + Note that the return value isn't actually used other than as a boolean + value. + """ + if self.platform_check and self._is_platform_dependent(url): + info = None + else: + info = self.convert_url_to_download_info(url, self.project_name) + logger.debug('process_download: %s -> %s', url, info) + if info: + with self._lock: # needed because self.result is shared + self._update_version_data(self.result, info) + return info + + def _should_queue(self, link, referrer, rel): + """ + Determine whether a link URL from a referring page and with a + particular "rel" attribute should be queued for scraping. + """ + scheme, netloc, path, _, _, _ = urlparse(link) + if path.endswith(self.source_extensions + self.binary_extensions + + self.excluded_extensions): + result = False + elif self.skip_externals and not link.startswith(self.base_url): + result = False + elif not referrer.startswith(self.base_url): + result = False + elif rel not in ('homepage', 'download'): + result = False + elif scheme not in ('http', 'https', 'ftp'): + result = False + elif self._is_platform_dependent(link): + result = False + else: + host = netloc.split(':', 1)[0] + if host.lower() == 'localhost': + result = False + else: + result = True + logger.debug('should_queue: %s (%s) from %s -> %s', link, rel, + referrer, result) + return result + + def _fetch(self): + """ + Get a URL to fetch from the work queue, get the HTML page, examine its + links for download candidates and candidates for further scraping. + + This is a handy method to run in a thread. + """ + while True: + url = self._to_fetch.get() + try: + if url: + page = self.get_page(url) + if page is None: # e.g. after an error + continue + for link, rel in page.links: + if link not in self._seen: + try: + self._seen.add(link) + if (not self._process_download(link) and + self._should_queue(link, url, rel)): + logger.debug('Queueing %s from %s', link, url) + self._to_fetch.put(link) + except MetadataInvalidError: # e.g. invalid versions + pass + except Exception as e: # pragma: no cover + self.errors.put(text_type(e)) + finally: + # always do this, to avoid hangs :-) + self._to_fetch.task_done() + if not url: + # logger.debug('Sentinel seen, quitting.') + break + + def get_page(self, url): + """ + Get the HTML for an URL, possibly from an in-memory cache. + + XXX TODO Note: this cache is never actually cleared. It's assumed that + the data won't get stale over the lifetime of a locator instance (not + necessarily true for the default_locator). + """ + # http://peak.telecommunity.com/DevCenter/EasyInstall#package-index-api + scheme, netloc, path, _, _, _ = urlparse(url) + if scheme == 'file' and os.path.isdir(url2pathname(path)): + url = urljoin(ensure_slash(url), 'index.html') + + if url in self._page_cache: + result = self._page_cache[url] + logger.debug('Returning %s from cache: %s', url, result) + else: + host = netloc.split(':', 1)[0] + result = None + if host in self._bad_hosts: + logger.debug('Skipping %s due to bad host %s', url, host) + else: + req = Request(url, headers={'Accept-encoding': 'identity'}) + try: + logger.debug('Fetching %s', url) + resp = self.opener.open(req, timeout=self.timeout) + logger.debug('Fetched %s', url) + headers = resp.info() + content_type = headers.get('Content-Type', '') + if HTML_CONTENT_TYPE.match(content_type): + final_url = resp.geturl() + data = resp.read() + encoding = headers.get('Content-Encoding') + if encoding: + decoder = self.decoders[encoding] # fail if not found + data = decoder(data) + encoding = 'utf-8' + m = CHARSET.search(content_type) + if m: + encoding = m.group(1) + try: + data = data.decode(encoding) + except UnicodeError: # pragma: no cover + data = data.decode('latin-1') # fallback + result = Page(data, final_url) + self._page_cache[final_url] = result + except HTTPError as e: + if e.code != 404: + logger.exception('Fetch failed: %s: %s', url, e) + except URLError as e: # pragma: no cover + logger.exception('Fetch failed: %s: %s', url, e) + with self._lock: + self._bad_hosts.add(host) + except Exception as e: # pragma: no cover + logger.exception('Fetch failed: %s: %s', url, e) + finally: + self._page_cache[url] = result # even if None (failure) + return result + + _distname_re = re.compile(']*>([^<]+)<') + + def get_distribution_names(self): + """ + Return all the distribution names known to this locator. + """ + result = set() + page = self.get_page(self.base_url) + if not page: + raise DistlibException('Unable to get %s' % self.base_url) + for match in self._distname_re.finditer(page.data): + result.add(match.group(1)) + return result + + +class DirectoryLocator(Locator): + """ + This class locates distributions in a directory tree. + """ + + def __init__(self, path, **kwargs): + """ + Initialise an instance. + :param path: The root of the directory tree to search. + :param kwargs: Passed to the superclass constructor, + except for: + * recursive - if True (the default), subdirectories are + recursed into. If False, only the top-level directory + is searched, + """ + self.recursive = kwargs.pop('recursive', True) + super(DirectoryLocator, self).__init__(**kwargs) + path = os.path.abspath(path) + if not os.path.isdir(path): # pragma: no cover + raise DistlibException('Not a directory: %r' % path) + self.base_dir = path + + def should_include(self, filename, parent): + """ + Should a filename be considered as a candidate for a distribution + archive? As well as the filename, the directory which contains it + is provided, though not used by the current implementation. + """ + return filename.endswith(self.downloadable_extensions) + + def _get_project(self, name): + result = {'urls': {}, 'digests': {}} + for root, dirs, files in os.walk(self.base_dir): + for fn in files: + if self.should_include(fn, root): + fn = os.path.join(root, fn) + url = urlunparse(('file', '', + pathname2url(os.path.abspath(fn)), + '', '', '')) + info = self.convert_url_to_download_info(url, name) + if info: + self._update_version_data(result, info) + if not self.recursive: + break + return result + + def get_distribution_names(self): + """ + Return all the distribution names known to this locator. + """ + result = set() + for root, dirs, files in os.walk(self.base_dir): + for fn in files: + if self.should_include(fn, root): + fn = os.path.join(root, fn) + url = urlunparse(('file', '', + pathname2url(os.path.abspath(fn)), + '', '', '')) + info = self.convert_url_to_download_info(url, None) + if info: + result.add(info['name']) + if not self.recursive: + break + return result + + +class JSONLocator(Locator): + """ + This locator uses special extended metadata (not available on PyPI) and is + the basis of performant dependency resolution in distlib. Other locators + require archive downloads before dependencies can be determined! As you + might imagine, that can be slow. + """ + def get_distribution_names(self): + """ + Return all the distribution names known to this locator. + """ + raise NotImplementedError('Not available from this locator') + + def _get_project(self, name): + result = {'urls': {}, 'digests': {}} + data = get_project_data(name) + if data: + for info in data.get('files', []): + if info['ptype'] != 'sdist' or info['pyversion'] != 'source': + continue + # We don't store summary in project metadata as it makes + # the data bigger for no benefit during dependency + # resolution + dist = make_dist(data['name'], info['version'], + summary=data.get('summary', + 'Placeholder for summary'), + scheme=self.scheme) + md = dist.metadata + md.source_url = info['url'] + # TODO SHA256 digest + if 'digest' in info and info['digest']: + dist.digest = ('md5', info['digest']) + md.dependencies = info.get('requirements', {}) + dist.exports = info.get('exports', {}) + result[dist.version] = dist + result['urls'].setdefault(dist.version, set()).add(info['url']) + return result + + +class DistPathLocator(Locator): + """ + This locator finds installed distributions in a path. It can be useful for + adding to an :class:`AggregatingLocator`. + """ + def __init__(self, distpath, **kwargs): + """ + Initialise an instance. + + :param distpath: A :class:`DistributionPath` instance to search. + """ + super(DistPathLocator, self).__init__(**kwargs) + assert isinstance(distpath, DistributionPath) + self.distpath = distpath + + def _get_project(self, name): + dist = self.distpath.get_distribution(name) + if dist is None: + result = {'urls': {}, 'digests': {}} + else: + result = { + dist.version: dist, + 'urls': {dist.version: set([dist.source_url])}, + 'digests': {dist.version: set([None])} + } + return result + + +class AggregatingLocator(Locator): + """ + This class allows you to chain and/or merge a list of locators. + """ + def __init__(self, *locators, **kwargs): + """ + Initialise an instance. + + :param locators: The list of locators to search. + :param kwargs: Passed to the superclass constructor, + except for: + * merge - if False (the default), the first successful + search from any of the locators is returned. If True, + the results from all locators are merged (this can be + slow). + """ + self.merge = kwargs.pop('merge', False) + self.locators = locators + super(AggregatingLocator, self).__init__(**kwargs) + + def clear_cache(self): + super(AggregatingLocator, self).clear_cache() + for locator in self.locators: + locator.clear_cache() + + def _set_scheme(self, value): + self._scheme = value + for locator in self.locators: + locator.scheme = value + + scheme = property(Locator.scheme.fget, _set_scheme) + + def _get_project(self, name): + result = {} + for locator in self.locators: + d = locator.get_project(name) + if d: + if self.merge: + files = result.get('urls', {}) + digests = result.get('digests', {}) + # next line could overwrite result['urls'], result['digests'] + result.update(d) + df = result.get('urls') + if files and df: + for k, v in files.items(): + if k in df: + df[k] |= v + else: + df[k] = v + dd = result.get('digests') + if digests and dd: + dd.update(digests) + else: + # See issue #18. If any dists are found and we're looking + # for specific constraints, we only return something if + # a match is found. For example, if a DirectoryLocator + # returns just foo (1.0) while we're looking for + # foo (>= 2.0), we'll pretend there was nothing there so + # that subsequent locators can be queried. Otherwise we + # would just return foo (1.0) which would then lead to a + # failure to find foo (>= 2.0), because other locators + # weren't searched. Note that this only matters when + # merge=False. + if self.matcher is None: + found = True + else: + found = False + for k in d: + if self.matcher.match(k): + found = True + break + if found: + result = d + break + return result + + def get_distribution_names(self): + """ + Return all the distribution names known to this locator. + """ + result = set() + for locator in self.locators: + try: + result |= locator.get_distribution_names() + except NotImplementedError: + pass + return result + + +# We use a legacy scheme simply because most of the dists on PyPI use legacy +# versions which don't conform to PEP 440. +default_locator = AggregatingLocator( + # JSONLocator(), # don't use as PEP 426 is withdrawn + SimpleScrapingLocator('https://pypi.org/simple/', + timeout=3.0), + scheme='legacy') + +locate = default_locator.locate + + +class DependencyFinder(object): + """ + Locate dependencies for distributions. + """ + + def __init__(self, locator=None): + """ + Initialise an instance, using the specified locator + to locate distributions. + """ + self.locator = locator or default_locator + self.scheme = get_scheme(self.locator.scheme) + + def add_distribution(self, dist): + """ + Add a distribution to the finder. This will update internal information + about who provides what. + :param dist: The distribution to add. + """ + logger.debug('adding distribution %s', dist) + name = dist.key + self.dists_by_name[name] = dist + self.dists[(name, dist.version)] = dist + for p in dist.provides: + name, version = parse_name_and_version(p) + logger.debug('Add to provided: %s, %s, %s', name, version, dist) + self.provided.setdefault(name, set()).add((version, dist)) + + def remove_distribution(self, dist): + """ + Remove a distribution from the finder. This will update internal + information about who provides what. + :param dist: The distribution to remove. + """ + logger.debug('removing distribution %s', dist) + name = dist.key + del self.dists_by_name[name] + del self.dists[(name, dist.version)] + for p in dist.provides: + name, version = parse_name_and_version(p) + logger.debug('Remove from provided: %s, %s, %s', name, version, dist) + s = self.provided[name] + s.remove((version, dist)) + if not s: + del self.provided[name] + + def get_matcher(self, reqt): + """ + Get a version matcher for a requirement. + :param reqt: The requirement + :type reqt: str + :return: A version matcher (an instance of + :class:`distlib.version.Matcher`). + """ + try: + matcher = self.scheme.matcher(reqt) + except UnsupportedVersionError: # pragma: no cover + # XXX compat-mode if cannot read the version + name = reqt.split()[0] + matcher = self.scheme.matcher(name) + return matcher + + def find_providers(self, reqt): + """ + Find the distributions which can fulfill a requirement. + + :param reqt: The requirement. + :type reqt: str + :return: A set of distribution which can fulfill the requirement. + """ + matcher = self.get_matcher(reqt) + name = matcher.key # case-insensitive + result = set() + provided = self.provided + if name in provided: + for version, provider in provided[name]: + try: + match = matcher.match(version) + except UnsupportedVersionError: + match = False + + if match: + result.add(provider) + break + return result + + def try_to_replace(self, provider, other, problems): + """ + Attempt to replace one provider with another. This is typically used + when resolving dependencies from multiple sources, e.g. A requires + (B >= 1.0) while C requires (B >= 1.1). + + For successful replacement, ``provider`` must meet all the requirements + which ``other`` fulfills. + + :param provider: The provider we are trying to replace with. + :param other: The provider we're trying to replace. + :param problems: If False is returned, this will contain what + problems prevented replacement. This is currently + a tuple of the literal string 'cantreplace', + ``provider``, ``other`` and the set of requirements + that ``provider`` couldn't fulfill. + :return: True if we can replace ``other`` with ``provider``, else + False. + """ + rlist = self.reqts[other] + unmatched = set() + for s in rlist: + matcher = self.get_matcher(s) + if not matcher.match(provider.version): + unmatched.add(s) + if unmatched: + # can't replace other with provider + problems.add(('cantreplace', provider, other, + frozenset(unmatched))) + result = False + else: + # can replace other with provider + self.remove_distribution(other) + del self.reqts[other] + for s in rlist: + self.reqts.setdefault(provider, set()).add(s) + self.add_distribution(provider) + result = True + return result + + def find(self, requirement, meta_extras=None, prereleases=False): + """ + Find a distribution and all distributions it depends on. + + :param requirement: The requirement specifying the distribution to + find, or a Distribution instance. + :param meta_extras: A list of meta extras such as :test:, :build: and + so on. + :param prereleases: If ``True``, allow pre-release versions to be + returned - otherwise, don't return prereleases + unless they're all that's available. + + Return a set of :class:`Distribution` instances and a set of + problems. + + The distributions returned should be such that they have the + :attr:`required` attribute set to ``True`` if they were + from the ``requirement`` passed to ``find()``, and they have the + :attr:`build_time_dependency` attribute set to ``True`` unless they + are post-installation dependencies of the ``requirement``. + + The problems should be a tuple consisting of the string + ``'unsatisfied'`` and the requirement which couldn't be satisfied + by any distribution known to the locator. + """ + + self.provided = {} + self.dists = {} + self.dists_by_name = {} + self.reqts = {} + + meta_extras = set(meta_extras or []) + if ':*:' in meta_extras: + meta_extras.remove(':*:') + # :meta: and :run: are implicitly included + meta_extras |= set([':test:', ':build:', ':dev:']) + + if isinstance(requirement, Distribution): + dist = odist = requirement + logger.debug('passed %s as requirement', odist) + else: + dist = odist = self.locator.locate(requirement, + prereleases=prereleases) + if dist is None: + raise DistlibException('Unable to locate %r' % requirement) + logger.debug('located %s', odist) + dist.requested = True + problems = set() + todo = set([dist]) + install_dists = set([odist]) + while todo: + dist = todo.pop() + name = dist.key # case-insensitive + if name not in self.dists_by_name: + self.add_distribution(dist) + else: + # import pdb; pdb.set_trace() + other = self.dists_by_name[name] + if other != dist: + self.try_to_replace(dist, other, problems) + + ireqts = dist.run_requires | dist.meta_requires + sreqts = dist.build_requires + ereqts = set() + if meta_extras and dist in install_dists: + for key in ('test', 'build', 'dev'): + e = ':%s:' % key + if e in meta_extras: + ereqts |= getattr(dist, '%s_requires' % key) + all_reqts = ireqts | sreqts | ereqts + for r in all_reqts: + providers = self.find_providers(r) + if not providers: + logger.debug('No providers found for %r', r) + provider = self.locator.locate(r, prereleases=prereleases) + # If no provider is found and we didn't consider + # prereleases, consider them now. + if provider is None and not prereleases: + provider = self.locator.locate(r, prereleases=True) + if provider is None: + logger.debug('Cannot satisfy %r', r) + problems.add(('unsatisfied', r)) + else: + n, v = provider.key, provider.version + if (n, v) not in self.dists: + todo.add(provider) + providers.add(provider) + if r in ireqts and dist in install_dists: + install_dists.add(provider) + logger.debug('Adding %s to install_dists', + provider.name_and_version) + for p in providers: + name = p.key + if name not in self.dists_by_name: + self.reqts.setdefault(p, set()).add(r) + else: + other = self.dists_by_name[name] + if other != p: + # see if other can be replaced by p + self.try_to_replace(p, other, problems) + + dists = set(self.dists.values()) + for dist in dists: + dist.build_time_dependency = dist not in install_dists + if dist.build_time_dependency: + logger.debug('%s is a build-time dependency only.', + dist.name_and_version) + logger.debug('find done for %s', odist) + return dists, problems diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/distlib/manifest.py b/.venv/lib/python3.11/site-packages/pip/_vendor/distlib/manifest.py new file mode 100644 index 0000000..420dcf1 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/distlib/manifest.py @@ -0,0 +1,384 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2012-2023 Python Software Foundation. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +""" +Class representing the list of files in a distribution. + +Equivalent to distutils.filelist, but fixes some problems. +""" +import fnmatch +import logging +import os +import re +import sys + +from . import DistlibException +from .compat import fsdecode +from .util import convert_path + + +__all__ = ['Manifest'] + +logger = logging.getLogger(__name__) + +# a \ followed by some spaces + EOL +_COLLAPSE_PATTERN = re.compile('\\\\w*\n', re.M) +_COMMENTED_LINE = re.compile('#.*?(?=\n)|\n(?=$)', re.M | re.S) + +# +# Due to the different results returned by fnmatch.translate, we need +# to do slightly different processing for Python 2.7 and 3.2 ... this needed +# to be brought in for Python 3.6 onwards. +# +_PYTHON_VERSION = sys.version_info[:2] + + +class Manifest(object): + """ + A list of files built by exploring the filesystem and filtered by applying various + patterns to what we find there. + """ + + def __init__(self, base=None): + """ + Initialise an instance. + + :param base: The base directory to explore under. + """ + self.base = os.path.abspath(os.path.normpath(base or os.getcwd())) + self.prefix = self.base + os.sep + self.allfiles = None + self.files = set() + + # + # Public API + # + + def findall(self): + """Find all files under the base and set ``allfiles`` to the absolute + pathnames of files found. + """ + from stat import S_ISREG, S_ISDIR, S_ISLNK + + self.allfiles = allfiles = [] + root = self.base + stack = [root] + pop = stack.pop + push = stack.append + + while stack: + root = pop() + names = os.listdir(root) + + for name in names: + fullname = os.path.join(root, name) + + # Avoid excess stat calls -- just one will do, thank you! + stat = os.stat(fullname) + mode = stat.st_mode + if S_ISREG(mode): + allfiles.append(fsdecode(fullname)) + elif S_ISDIR(mode) and not S_ISLNK(mode): + push(fullname) + + def add(self, item): + """ + Add a file to the manifest. + + :param item: The pathname to add. This can be relative to the base. + """ + if not item.startswith(self.prefix): + item = os.path.join(self.base, item) + self.files.add(os.path.normpath(item)) + + def add_many(self, items): + """ + Add a list of files to the manifest. + + :param items: The pathnames to add. These can be relative to the base. + """ + for item in items: + self.add(item) + + def sorted(self, wantdirs=False): + """ + Return sorted files in directory order + """ + + def add_dir(dirs, d): + dirs.add(d) + logger.debug('add_dir added %s', d) + if d != self.base: + parent, _ = os.path.split(d) + assert parent not in ('', '/') + add_dir(dirs, parent) + + result = set(self.files) # make a copy! + if wantdirs: + dirs = set() + for f in result: + add_dir(dirs, os.path.dirname(f)) + result |= dirs + return [os.path.join(*path_tuple) for path_tuple in + sorted(os.path.split(path) for path in result)] + + def clear(self): + """Clear all collected files.""" + self.files = set() + self.allfiles = [] + + def process_directive(self, directive): + """ + Process a directive which either adds some files from ``allfiles`` to + ``files``, or removes some files from ``files``. + + :param directive: The directive to process. This should be in a format + compatible with distutils ``MANIFEST.in`` files: + + http://docs.python.org/distutils/sourcedist.html#commands + """ + # Parse the line: split it up, make sure the right number of words + # is there, and return the relevant words. 'action' is always + # defined: it's the first word of the line. Which of the other + # three are defined depends on the action; it'll be either + # patterns, (dir and patterns), or (dirpattern). + action, patterns, thedir, dirpattern = self._parse_directive(directive) + + # OK, now we know that the action is valid and we have the + # right number of words on the line for that action -- so we + # can proceed with minimal error-checking. + if action == 'include': + for pattern in patterns: + if not self._include_pattern(pattern, anchor=True): + logger.warning('no files found matching %r', pattern) + + elif action == 'exclude': + for pattern in patterns: + self._exclude_pattern(pattern, anchor=True) + + elif action == 'global-include': + for pattern in patterns: + if not self._include_pattern(pattern, anchor=False): + logger.warning('no files found matching %r ' + 'anywhere in distribution', pattern) + + elif action == 'global-exclude': + for pattern in patterns: + self._exclude_pattern(pattern, anchor=False) + + elif action == 'recursive-include': + for pattern in patterns: + if not self._include_pattern(pattern, prefix=thedir): + logger.warning('no files found matching %r ' + 'under directory %r', pattern, thedir) + + elif action == 'recursive-exclude': + for pattern in patterns: + self._exclude_pattern(pattern, prefix=thedir) + + elif action == 'graft': + if not self._include_pattern(None, prefix=dirpattern): + logger.warning('no directories found matching %r', + dirpattern) + + elif action == 'prune': + if not self._exclude_pattern(None, prefix=dirpattern): + logger.warning('no previously-included directories found ' + 'matching %r', dirpattern) + else: # pragma: no cover + # This should never happen, as it should be caught in + # _parse_template_line + raise DistlibException( + 'invalid action %r' % action) + + # + # Private API + # + + def _parse_directive(self, directive): + """ + Validate a directive. + :param directive: The directive to validate. + :return: A tuple of action, patterns, thedir, dir_patterns + """ + words = directive.split() + if len(words) == 1 and words[0] not in ('include', 'exclude', + 'global-include', + 'global-exclude', + 'recursive-include', + 'recursive-exclude', + 'graft', 'prune'): + # no action given, let's use the default 'include' + words.insert(0, 'include') + + action = words[0] + patterns = thedir = dir_pattern = None + + if action in ('include', 'exclude', + 'global-include', 'global-exclude'): + if len(words) < 2: + raise DistlibException( + '%r expects ...' % action) + + patterns = [convert_path(word) for word in words[1:]] + + elif action in ('recursive-include', 'recursive-exclude'): + if len(words) < 3: + raise DistlibException( + '%r expects

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

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

qx{CqlSNQ_YhQ()VtG-D; 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 z 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 bB!6W7g#4-b3-g!cLzth+PZapSNrC?c%T_@< literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/distlib/wheel.py b/.venv/lib/python3.11/site-packages/pip/_vendor/distlib/wheel.py new file mode 100644 index 0000000..4a5a30e --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/distlib/wheel.py @@ -0,0 +1,1099 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2013-2023 Vinay Sajip. +# Licensed to the Python Software Foundation under a contributor agreement. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +from __future__ import unicode_literals + +import base64 +import codecs +import datetime +from email import message_from_file +import hashlib +import json +import logging +import os +import posixpath +import re +import shutil +import sys +import tempfile +import zipfile + +from . import __version__, DistlibException +from .compat import sysconfig, ZipFile, fsdecode, text_type, filter +from .database import InstalledDistribution +from .metadata import Metadata, WHEEL_METADATA_FILENAME, LEGACY_METADATA_FILENAME +from .util import (FileOperator, convert_path, CSVReader, CSVWriter, Cache, + cached_property, get_cache_base, read_exports, tempdir, + get_platform) +from .version import NormalizedVersion, UnsupportedVersionError + +logger = logging.getLogger(__name__) + +cache = None # created when needed + +if hasattr(sys, 'pypy_version_info'): # pragma: no cover + IMP_PREFIX = 'pp' +elif sys.platform.startswith('java'): # pragma: no cover + IMP_PREFIX = 'jy' +elif sys.platform == 'cli': # pragma: no cover + IMP_PREFIX = 'ip' +else: + IMP_PREFIX = 'cp' + +VER_SUFFIX = sysconfig.get_config_var('py_version_nodot') +if not VER_SUFFIX: # pragma: no cover + VER_SUFFIX = '%s%s' % sys.version_info[:2] +PYVER = 'py' + VER_SUFFIX +IMPVER = IMP_PREFIX + VER_SUFFIX + +ARCH = get_platform().replace('-', '_').replace('.', '_') + +ABI = sysconfig.get_config_var('SOABI') +if ABI and ABI.startswith('cpython-'): + ABI = ABI.replace('cpython-', 'cp').split('-')[0] +else: + + def _derive_abi(): + parts = ['cp', VER_SUFFIX] + if sysconfig.get_config_var('Py_DEBUG'): + parts.append('d') + if IMP_PREFIX == 'cp': + vi = sys.version_info[:2] + if vi < (3, 8): + wpm = sysconfig.get_config_var('WITH_PYMALLOC') + if wpm is None: + wpm = True + if wpm: + parts.append('m') + if vi < (3, 3): + us = sysconfig.get_config_var('Py_UNICODE_SIZE') + if us == 4 or (us is None and sys.maxunicode == 0x10FFFF): + parts.append('u') + return ''.join(parts) + + ABI = _derive_abi() + del _derive_abi + +FILENAME_RE = re.compile( + r''' +(?P[^-]+) +-(?P\d+[^-]*) +(-(?P\d+[^-]*))? +-(?P\w+\d+(\.\w+\d+)*) +-(?P\w+) +-(?P\w+(\.\w+)*) +\.whl$ +''', re.IGNORECASE | re.VERBOSE) + +NAME_VERSION_RE = re.compile( + r''' +(?P[^-]+) +-(?P\d+[^-]*) +(-(?P\d+[^-]*))?$ +''', re.IGNORECASE | re.VERBOSE) + +SHEBANG_RE = re.compile(br'\s*#![^\r\n]*') +SHEBANG_DETAIL_RE = re.compile(br'^(\s*#!("[^"]+"|\S+))\s+(.*)$') +SHEBANG_PYTHON = b'#!python' +SHEBANG_PYTHONW = b'#!pythonw' + +if os.sep == '/': + to_posix = lambda o: o +else: + to_posix = lambda o: o.replace(os.sep, '/') + +if sys.version_info[0] < 3: + import imp +else: + imp = None + import importlib.machinery + import importlib.util + + +def _get_suffixes(): + if imp: + return [s[0] for s in imp.get_suffixes()] + else: + return importlib.machinery.EXTENSION_SUFFIXES + + +def _load_dynamic(name, path): + # https://docs.python.org/3/library/importlib.html#importing-a-source-file-directly + if imp: + return imp.load_dynamic(name, path) + else: + spec = importlib.util.spec_from_file_location(name, path) + module = importlib.util.module_from_spec(spec) + sys.modules[name] = module + spec.loader.exec_module(module) + return module + + +class Mounter(object): + + def __init__(self): + self.impure_wheels = {} + self.libs = {} + + def add(self, pathname, extensions): + self.impure_wheels[pathname] = extensions + self.libs.update(extensions) + + def remove(self, pathname): + extensions = self.impure_wheels.pop(pathname) + for k, v in extensions: + if k in self.libs: + del self.libs[k] + + def find_module(self, fullname, path=None): + if fullname in self.libs: + result = self + else: + result = None + return result + + def load_module(self, fullname): + if fullname in sys.modules: + result = sys.modules[fullname] + else: + if fullname not in self.libs: + raise ImportError('unable to find extension for %s' % fullname) + result = _load_dynamic(fullname, self.libs[fullname]) + result.__loader__ = self + parts = fullname.rsplit('.', 1) + if len(parts) > 1: + result.__package__ = parts[0] + return result + + +_hook = Mounter() + + +class Wheel(object): + """ + Class to build and install from Wheel files (PEP 427). + """ + + wheel_version = (1, 1) + hash_kind = 'sha256' + + def __init__(self, filename=None, sign=False, verify=False): + """ + Initialise an instance using a (valid) filename. + """ + self.sign = sign + self.should_verify = verify + self.buildver = '' + self.pyver = [PYVER] + self.abi = ['none'] + self.arch = ['any'] + self.dirname = os.getcwd() + if filename is None: + self.name = 'dummy' + self.version = '0.1' + self._filename = self.filename + else: + m = NAME_VERSION_RE.match(filename) + if m: + info = m.groupdict('') + self.name = info['nm'] + # Reinstate the local version separator + self.version = info['vn'].replace('_', '-') + self.buildver = info['bn'] + self._filename = self.filename + else: + dirname, filename = os.path.split(filename) + m = FILENAME_RE.match(filename) + if not m: + raise DistlibException('Invalid name or ' + 'filename: %r' % filename) + if dirname: + self.dirname = os.path.abspath(dirname) + self._filename = filename + info = m.groupdict('') + self.name = info['nm'] + self.version = info['vn'] + self.buildver = info['bn'] + self.pyver = info['py'].split('.') + self.abi = info['bi'].split('.') + self.arch = info['ar'].split('.') + + @property + def filename(self): + """ + Build and return a filename from the various components. + """ + if self.buildver: + buildver = '-' + self.buildver + else: + buildver = '' + pyver = '.'.join(self.pyver) + abi = '.'.join(self.abi) + arch = '.'.join(self.arch) + # replace - with _ as a local version separator + version = self.version.replace('-', '_') + return '%s-%s%s-%s-%s-%s.whl' % (self.name, version, buildver, pyver, + abi, arch) + + @property + def exists(self): + path = os.path.join(self.dirname, self.filename) + return os.path.isfile(path) + + @property + def tags(self): + for pyver in self.pyver: + for abi in self.abi: + for arch in self.arch: + yield pyver, abi, arch + + @cached_property + def metadata(self): + pathname = os.path.join(self.dirname, self.filename) + name_ver = '%s-%s' % (self.name, self.version) + info_dir = '%s.dist-info' % name_ver + wrapper = codecs.getreader('utf-8') + with ZipFile(pathname, 'r') as zf: + self.get_wheel_metadata(zf) + # wv = wheel_metadata['Wheel-Version'].split('.', 1) + # file_version = tuple([int(i) for i in wv]) + # if file_version < (1, 1): + # fns = [WHEEL_METADATA_FILENAME, METADATA_FILENAME, + # LEGACY_METADATA_FILENAME] + # else: + # fns = [WHEEL_METADATA_FILENAME, METADATA_FILENAME] + fns = [WHEEL_METADATA_FILENAME, LEGACY_METADATA_FILENAME] + result = None + for fn in fns: + try: + metadata_filename = posixpath.join(info_dir, fn) + with zf.open(metadata_filename) as bf: + wf = wrapper(bf) + result = Metadata(fileobj=wf) + if result: + break + except KeyError: + pass + if not result: + raise ValueError('Invalid wheel, because metadata is ' + 'missing: looked in %s' % ', '.join(fns)) + return result + + def get_wheel_metadata(self, zf): + name_ver = '%s-%s' % (self.name, self.version) + info_dir = '%s.dist-info' % name_ver + metadata_filename = posixpath.join(info_dir, 'WHEEL') + with zf.open(metadata_filename) as bf: + wf = codecs.getreader('utf-8')(bf) + message = message_from_file(wf) + return dict(message) + + @cached_property + def info(self): + pathname = os.path.join(self.dirname, self.filename) + with ZipFile(pathname, 'r') as zf: + result = self.get_wheel_metadata(zf) + return result + + def process_shebang(self, data): + m = SHEBANG_RE.match(data) + if m: + end = m.end() + shebang, data_after_shebang = data[:end], data[end:] + # Preserve any arguments after the interpreter + if b'pythonw' in shebang.lower(): + shebang_python = SHEBANG_PYTHONW + else: + shebang_python = SHEBANG_PYTHON + m = SHEBANG_DETAIL_RE.match(shebang) + if m: + args = b' ' + m.groups()[-1] + else: + args = b'' + shebang = shebang_python + args + data = shebang + data_after_shebang + else: + cr = data.find(b'\r') + lf = data.find(b'\n') + if cr < 0 or cr > lf: + term = b'\n' + else: + if data[cr:cr + 2] == b'\r\n': + term = b'\r\n' + else: + term = b'\r' + data = SHEBANG_PYTHON + term + data + return data + + def get_hash(self, data, hash_kind=None): + if hash_kind is None: + hash_kind = self.hash_kind + try: + hasher = getattr(hashlib, hash_kind) + except AttributeError: + raise DistlibException('Unsupported hash algorithm: %r' % + hash_kind) + result = hasher(data).digest() + result = base64.urlsafe_b64encode(result).rstrip(b'=').decode('ascii') + return hash_kind, result + + def write_record(self, records, record_path, archive_record_path): + records = list(records) # make a copy, as mutated + records.append((archive_record_path, '', '')) + with CSVWriter(record_path) as writer: + for row in records: + writer.writerow(row) + + def write_records(self, info, libdir, archive_paths): + records = [] + distinfo, info_dir = info + # hasher = getattr(hashlib, self.hash_kind) + for ap, p in archive_paths: + with open(p, 'rb') as f: + data = f.read() + digest = '%s=%s' % self.get_hash(data) + size = os.path.getsize(p) + records.append((ap, digest, size)) + + p = os.path.join(distinfo, 'RECORD') + ap = to_posix(os.path.join(info_dir, 'RECORD')) + self.write_record(records, p, ap) + archive_paths.append((ap, p)) + + def build_zip(self, pathname, archive_paths): + with ZipFile(pathname, 'w', zipfile.ZIP_DEFLATED) as zf: + for ap, p in archive_paths: + logger.debug('Wrote %s to %s in wheel', p, ap) + zf.write(p, ap) + + def build(self, paths, tags=None, wheel_version=None): + """ + Build a wheel from files in specified paths, and use any specified tags + when determining the name of the wheel. + """ + if tags is None: + tags = {} + + libkey = list(filter(lambda o: o in paths, ('purelib', 'platlib')))[0] + if libkey == 'platlib': + is_pure = 'false' + default_pyver = [IMPVER] + default_abi = [ABI] + default_arch = [ARCH] + else: + is_pure = 'true' + default_pyver = [PYVER] + default_abi = ['none'] + default_arch = ['any'] + + self.pyver = tags.get('pyver', default_pyver) + self.abi = tags.get('abi', default_abi) + self.arch = tags.get('arch', default_arch) + + libdir = paths[libkey] + + name_ver = '%s-%s' % (self.name, self.version) + data_dir = '%s.data' % name_ver + info_dir = '%s.dist-info' % name_ver + + archive_paths = [] + + # First, stuff which is not in site-packages + for key in ('data', 'headers', 'scripts'): + if key not in paths: + continue + path = paths[key] + if os.path.isdir(path): + for root, dirs, files in os.walk(path): + for fn in files: + p = fsdecode(os.path.join(root, fn)) + rp = os.path.relpath(p, path) + ap = to_posix(os.path.join(data_dir, key, rp)) + archive_paths.append((ap, p)) + if key == 'scripts' and not p.endswith('.exe'): + with open(p, 'rb') as f: + data = f.read() + data = self.process_shebang(data) + with open(p, 'wb') as f: + f.write(data) + + # Now, stuff which is in site-packages, other than the + # distinfo stuff. + path = libdir + distinfo = None + for root, dirs, files in os.walk(path): + if root == path: + # At the top level only, save distinfo for later + # and skip it for now + for i, dn in enumerate(dirs): + dn = fsdecode(dn) + if dn.endswith('.dist-info'): + distinfo = os.path.join(root, dn) + del dirs[i] + break + assert distinfo, '.dist-info directory expected, not found' + + for fn in files: + # comment out next suite to leave .pyc files in + if fsdecode(fn).endswith(('.pyc', '.pyo')): + continue + p = os.path.join(root, fn) + rp = to_posix(os.path.relpath(p, path)) + archive_paths.append((rp, p)) + + # Now distinfo. Assumed to be flat, i.e. os.listdir is enough. + files = os.listdir(distinfo) + for fn in files: + if fn not in ('RECORD', 'INSTALLER', 'SHARED', 'WHEEL'): + p = fsdecode(os.path.join(distinfo, fn)) + ap = to_posix(os.path.join(info_dir, fn)) + archive_paths.append((ap, p)) + + wheel_metadata = [ + 'Wheel-Version: %d.%d' % (wheel_version or self.wheel_version), + 'Generator: distlib %s' % __version__, + 'Root-Is-Purelib: %s' % is_pure, + ] + for pyver, abi, arch in self.tags: + wheel_metadata.append('Tag: %s-%s-%s' % (pyver, abi, arch)) + p = os.path.join(distinfo, 'WHEEL') + with open(p, 'w') as f: + f.write('\n'.join(wheel_metadata)) + ap = to_posix(os.path.join(info_dir, 'WHEEL')) + archive_paths.append((ap, p)) + + # sort the entries by archive path. Not needed by any spec, but it + # keeps the archive listing and RECORD tidier than they would otherwise + # be. Use the number of path segments to keep directory entries together, + # and keep the dist-info stuff at the end. + def sorter(t): + ap = t[0] + n = ap.count('/') + if '.dist-info' in ap: + n += 10000 + return (n, ap) + + archive_paths = sorted(archive_paths, key=sorter) + + # Now, at last, RECORD. + # Paths in here are archive paths - nothing else makes sense. + self.write_records((distinfo, info_dir), libdir, archive_paths) + # Now, ready to build the zip file + pathname = os.path.join(self.dirname, self.filename) + self.build_zip(pathname, archive_paths) + return pathname + + def skip_entry(self, arcname): + """ + Determine whether an archive entry should be skipped when verifying + or installing. + """ + # The signature file won't be in RECORD, + # and we don't currently don't do anything with it + # We also skip directories, as they won't be in RECORD + # either. See: + # + # https://github.com/pypa/wheel/issues/294 + # https://github.com/pypa/wheel/issues/287 + # https://github.com/pypa/wheel/pull/289 + # + return arcname.endswith(('/', '/RECORD.jws')) + + def install(self, paths, maker, **kwargs): + """ + Install a wheel to the specified paths. If kwarg ``warner`` is + specified, it should be a callable, which will be called with two + tuples indicating the wheel version of this software and the wheel + version in the file, if there is a discrepancy in the versions. + This can be used to issue any warnings to raise any exceptions. + If kwarg ``lib_only`` is True, only the purelib/platlib files are + installed, and the headers, scripts, data and dist-info metadata are + not written. If kwarg ``bytecode_hashed_invalidation`` is True, written + bytecode will try to use file-hash based invalidation (PEP-552) on + supported interpreter versions (CPython 2.7+). + + The return value is a :class:`InstalledDistribution` instance unless + ``options.lib_only`` is True, in which case the return value is ``None``. + """ + + dry_run = maker.dry_run + warner = kwargs.get('warner') + lib_only = kwargs.get('lib_only', False) + bc_hashed_invalidation = kwargs.get('bytecode_hashed_invalidation', + False) + + pathname = os.path.join(self.dirname, self.filename) + name_ver = '%s-%s' % (self.name, self.version) + data_dir = '%s.data' % name_ver + info_dir = '%s.dist-info' % name_ver + + metadata_name = posixpath.join(info_dir, LEGACY_METADATA_FILENAME) + wheel_metadata_name = posixpath.join(info_dir, 'WHEEL') + record_name = posixpath.join(info_dir, 'RECORD') + + wrapper = codecs.getreader('utf-8') + + with ZipFile(pathname, 'r') as zf: + with zf.open(wheel_metadata_name) as bwf: + wf = wrapper(bwf) + message = message_from_file(wf) + wv = message['Wheel-Version'].split('.', 1) + file_version = tuple([int(i) for i in wv]) + if (file_version != self.wheel_version) and warner: + warner(self.wheel_version, file_version) + + if message['Root-Is-Purelib'] == 'true': + libdir = paths['purelib'] + else: + libdir = paths['platlib'] + + records = {} + with zf.open(record_name) as bf: + with CSVReader(stream=bf) as reader: + for row in reader: + p = row[0] + records[p] = row + + data_pfx = posixpath.join(data_dir, '') + info_pfx = posixpath.join(info_dir, '') + script_pfx = posixpath.join(data_dir, 'scripts', '') + + # make a new instance rather than a copy of maker's, + # as we mutate it + fileop = FileOperator(dry_run=dry_run) + fileop.record = True # so we can rollback if needed + + bc = not sys.dont_write_bytecode # Double negatives. Lovely! + + outfiles = [] # for RECORD writing + + # for script copying/shebang processing + workdir = tempfile.mkdtemp() + # set target dir later + # we default add_launchers to False, as the + # Python Launcher should be used instead + maker.source_dir = workdir + maker.target_dir = None + try: + for zinfo in zf.infolist(): + arcname = zinfo.filename + if isinstance(arcname, text_type): + u_arcname = arcname + else: + u_arcname = arcname.decode('utf-8') + if self.skip_entry(u_arcname): + continue + row = records[u_arcname] + if row[2] and str(zinfo.file_size) != row[2]: + raise DistlibException('size mismatch for ' + '%s' % u_arcname) + if row[1]: + kind, value = row[1].split('=', 1) + with zf.open(arcname) as bf: + data = bf.read() + _, digest = self.get_hash(data, kind) + if digest != value: + raise DistlibException('digest mismatch for ' + '%s' % arcname) + + if lib_only and u_arcname.startswith((info_pfx, data_pfx)): + logger.debug('lib_only: skipping %s', u_arcname) + continue + is_script = (u_arcname.startswith(script_pfx) + and not u_arcname.endswith('.exe')) + + if u_arcname.startswith(data_pfx): + _, where, rp = u_arcname.split('/', 2) + outfile = os.path.join(paths[where], convert_path(rp)) + else: + # meant for site-packages. + if u_arcname in (wheel_metadata_name, record_name): + continue + outfile = os.path.join(libdir, convert_path(u_arcname)) + if not is_script: + with zf.open(arcname) as bf: + fileop.copy_stream(bf, outfile) + # Issue #147: permission bits aren't preserved. Using + # zf.extract(zinfo, libdir) should have worked, but didn't, + # see https://www.thetopsites.net/article/53834422.shtml + # So ... manually preserve permission bits as given in zinfo + if os.name == 'posix': + # just set the normal permission bits + os.chmod(outfile, + (zinfo.external_attr >> 16) & 0x1FF) + outfiles.append(outfile) + # Double check the digest of the written file + if not dry_run and row[1]: + with open(outfile, 'rb') as bf: + data = bf.read() + _, newdigest = self.get_hash(data, kind) + if newdigest != digest: + raise DistlibException('digest mismatch ' + 'on write for ' + '%s' % outfile) + if bc and outfile.endswith('.py'): + try: + pyc = fileop.byte_compile( + outfile, + hashed_invalidation=bc_hashed_invalidation) + outfiles.append(pyc) + except Exception: + # Don't give up if byte-compilation fails, + # but log it and perhaps warn the user + logger.warning('Byte-compilation failed', + exc_info=True) + else: + fn = os.path.basename(convert_path(arcname)) + workname = os.path.join(workdir, fn) + with zf.open(arcname) as bf: + fileop.copy_stream(bf, workname) + + dn, fn = os.path.split(outfile) + maker.target_dir = dn + filenames = maker.make(fn) + fileop.set_executable_mode(filenames) + outfiles.extend(filenames) + + if lib_only: + logger.debug('lib_only: returning None') + dist = None + else: + # Generate scripts + + # Try to get pydist.json so we can see if there are + # any commands to generate. If this fails (e.g. because + # of a legacy wheel), log a warning but don't give up. + commands = None + file_version = self.info['Wheel-Version'] + if file_version == '1.0': + # Use legacy info + ep = posixpath.join(info_dir, 'entry_points.txt') + try: + with zf.open(ep) as bwf: + epdata = read_exports(bwf) + commands = {} + for key in ('console', 'gui'): + k = '%s_scripts' % key + if k in epdata: + commands['wrap_%s' % key] = d = {} + for v in epdata[k].values(): + s = '%s:%s' % (v.prefix, v.suffix) + if v.flags: + s += ' [%s]' % ','.join(v.flags) + d[v.name] = s + except Exception: + logger.warning('Unable to read legacy script ' + 'metadata, so cannot generate ' + 'scripts') + else: + try: + with zf.open(metadata_name) as bwf: + wf = wrapper(bwf) + commands = json.load(wf).get('extensions') + if commands: + commands = commands.get('python.commands') + except Exception: + logger.warning('Unable to read JSON metadata, so ' + 'cannot generate scripts') + if commands: + console_scripts = commands.get('wrap_console', {}) + gui_scripts = commands.get('wrap_gui', {}) + if console_scripts or gui_scripts: + script_dir = paths.get('scripts', '') + if not os.path.isdir(script_dir): + raise ValueError('Valid script path not ' + 'specified') + maker.target_dir = script_dir + for k, v in console_scripts.items(): + script = '%s = %s' % (k, v) + filenames = maker.make(script) + fileop.set_executable_mode(filenames) + + if gui_scripts: + options = {'gui': True} + for k, v in gui_scripts.items(): + script = '%s = %s' % (k, v) + filenames = maker.make(script, options) + fileop.set_executable_mode(filenames) + + p = os.path.join(libdir, info_dir) + dist = InstalledDistribution(p) + + # Write SHARED + paths = dict(paths) # don't change passed in dict + del paths['purelib'] + del paths['platlib'] + paths['lib'] = libdir + p = dist.write_shared_locations(paths, dry_run) + if p: + outfiles.append(p) + + # Write RECORD + dist.write_installed_files(outfiles, paths['prefix'], + dry_run) + return dist + except Exception: # pragma: no cover + logger.exception('installation failed.') + fileop.rollback() + raise + finally: + shutil.rmtree(workdir) + + def _get_dylib_cache(self): + global cache + if cache is None: + # Use native string to avoid issues on 2.x: see Python #20140. + base = os.path.join(get_cache_base(), str('dylib-cache'), + '%s.%s' % sys.version_info[:2]) + cache = Cache(base) + return cache + + def _get_extensions(self): + pathname = os.path.join(self.dirname, self.filename) + name_ver = '%s-%s' % (self.name, self.version) + info_dir = '%s.dist-info' % name_ver + arcname = posixpath.join(info_dir, 'EXTENSIONS') + wrapper = codecs.getreader('utf-8') + result = [] + with ZipFile(pathname, 'r') as zf: + try: + with zf.open(arcname) as bf: + wf = wrapper(bf) + extensions = json.load(wf) + cache = self._get_dylib_cache() + prefix = cache.prefix_to_dir(pathname) + cache_base = os.path.join(cache.base, prefix) + if not os.path.isdir(cache_base): + os.makedirs(cache_base) + for name, relpath in extensions.items(): + dest = os.path.join(cache_base, convert_path(relpath)) + if not os.path.exists(dest): + extract = True + else: + file_time = os.stat(dest).st_mtime + file_time = datetime.datetime.fromtimestamp( + file_time) + info = zf.getinfo(relpath) + wheel_time = datetime.datetime(*info.date_time) + extract = wheel_time > file_time + if extract: + zf.extract(relpath, cache_base) + result.append((name, dest)) + except KeyError: + pass + return result + + def is_compatible(self): + """ + Determine if a wheel is compatible with the running system. + """ + return is_compatible(self) + + def is_mountable(self): + """ + Determine if a wheel is asserted as mountable by its metadata. + """ + return True # for now - metadata details TBD + + def mount(self, append=False): + pathname = os.path.abspath(os.path.join(self.dirname, self.filename)) + if not self.is_compatible(): + msg = 'Wheel %s not compatible with this Python.' % pathname + raise DistlibException(msg) + if not self.is_mountable(): + msg = 'Wheel %s is marked as not mountable.' % pathname + raise DistlibException(msg) + if pathname in sys.path: + logger.debug('%s already in path', pathname) + else: + if append: + sys.path.append(pathname) + else: + sys.path.insert(0, pathname) + extensions = self._get_extensions() + if extensions: + if _hook not in sys.meta_path: + sys.meta_path.append(_hook) + _hook.add(pathname, extensions) + + def unmount(self): + pathname = os.path.abspath(os.path.join(self.dirname, self.filename)) + if pathname not in sys.path: + logger.debug('%s not in path', pathname) + else: + sys.path.remove(pathname) + if pathname in _hook.impure_wheels: + _hook.remove(pathname) + if not _hook.impure_wheels: + if _hook in sys.meta_path: + sys.meta_path.remove(_hook) + + def verify(self): + pathname = os.path.join(self.dirname, self.filename) + name_ver = '%s-%s' % (self.name, self.version) + # data_dir = '%s.data' % name_ver + info_dir = '%s.dist-info' % name_ver + + # metadata_name = posixpath.join(info_dir, LEGACY_METADATA_FILENAME) + wheel_metadata_name = posixpath.join(info_dir, 'WHEEL') + record_name = posixpath.join(info_dir, 'RECORD') + + wrapper = codecs.getreader('utf-8') + + with ZipFile(pathname, 'r') as zf: + with zf.open(wheel_metadata_name) as bwf: + wf = wrapper(bwf) + message_from_file(wf) + # wv = message['Wheel-Version'].split('.', 1) + # file_version = tuple([int(i) for i in wv]) + # TODO version verification + + records = {} + with zf.open(record_name) as bf: + with CSVReader(stream=bf) as reader: + for row in reader: + p = row[0] + records[p] = row + + for zinfo in zf.infolist(): + arcname = zinfo.filename + if isinstance(arcname, text_type): + u_arcname = arcname + else: + u_arcname = arcname.decode('utf-8') + # See issue #115: some wheels have .. in their entries, but + # in the filename ... e.g. __main__..py ! So the check is + # updated to look for .. in the directory portions + p = u_arcname.split('/') + if '..' in p: + raise DistlibException('invalid entry in ' + 'wheel: %r' % u_arcname) + + if self.skip_entry(u_arcname): + continue + row = records[u_arcname] + if row[2] and str(zinfo.file_size) != row[2]: + raise DistlibException('size mismatch for ' + '%s' % u_arcname) + if row[1]: + kind, value = row[1].split('=', 1) + with zf.open(arcname) as bf: + data = bf.read() + _, digest = self.get_hash(data, kind) + if digest != value: + raise DistlibException('digest mismatch for ' + '%s' % arcname) + + def update(self, modifier, dest_dir=None, **kwargs): + """ + Update the contents of a wheel in a generic way. The modifier should + be a callable which expects a dictionary argument: its keys are + archive-entry paths, and its values are absolute filesystem paths + where the contents the corresponding archive entries can be found. The + modifier is free to change the contents of the files pointed to, add + new entries and remove entries, before returning. This method will + extract the entire contents of the wheel to a temporary location, call + the modifier, and then use the passed (and possibly updated) + dictionary to write a new wheel. If ``dest_dir`` is specified, the new + wheel is written there -- otherwise, the original wheel is overwritten. + + The modifier should return True if it updated the wheel, else False. + This method returns the same value the modifier returns. + """ + + def get_version(path_map, info_dir): + version = path = None + key = '%s/%s' % (info_dir, LEGACY_METADATA_FILENAME) + if key not in path_map: + key = '%s/PKG-INFO' % info_dir + if key in path_map: + path = path_map[key] + version = Metadata(path=path).version + return version, path + + def update_version(version, path): + updated = None + try: + NormalizedVersion(version) + i = version.find('-') + if i < 0: + updated = '%s+1' % version + else: + parts = [int(s) for s in version[i + 1:].split('.')] + parts[-1] += 1 + updated = '%s+%s' % (version[:i], '.'.join( + str(i) for i in parts)) + except UnsupportedVersionError: + logger.debug( + 'Cannot update non-compliant (PEP-440) ' + 'version %r', version) + if updated: + md = Metadata(path=path) + md.version = updated + legacy = path.endswith(LEGACY_METADATA_FILENAME) + md.write(path=path, legacy=legacy) + logger.debug('Version updated from %r to %r', version, updated) + + pathname = os.path.join(self.dirname, self.filename) + name_ver = '%s-%s' % (self.name, self.version) + info_dir = '%s.dist-info' % name_ver + record_name = posixpath.join(info_dir, 'RECORD') + with tempdir() as workdir: + with ZipFile(pathname, 'r') as zf: + path_map = {} + for zinfo in zf.infolist(): + arcname = zinfo.filename + if isinstance(arcname, text_type): + u_arcname = arcname + else: + u_arcname = arcname.decode('utf-8') + if u_arcname == record_name: + continue + if '..' in u_arcname: + raise DistlibException('invalid entry in ' + 'wheel: %r' % u_arcname) + zf.extract(zinfo, workdir) + path = os.path.join(workdir, convert_path(u_arcname)) + path_map[u_arcname] = path + + # Remember the version. + original_version, _ = get_version(path_map, info_dir) + # Files extracted. Call the modifier. + modified = modifier(path_map, **kwargs) + if modified: + # Something changed - need to build a new wheel. + current_version, path = get_version(path_map, info_dir) + if current_version and (current_version == original_version): + # Add or update local version to signify changes. + update_version(current_version, path) + # Decide where the new wheel goes. + if dest_dir is None: + fd, newpath = tempfile.mkstemp(suffix='.whl', + prefix='wheel-update-', + dir=workdir) + os.close(fd) + else: + if not os.path.isdir(dest_dir): + raise DistlibException('Not a directory: %r' % + dest_dir) + newpath = os.path.join(dest_dir, self.filename) + archive_paths = list(path_map.items()) + distinfo = os.path.join(workdir, info_dir) + info = distinfo, info_dir + self.write_records(info, workdir, archive_paths) + self.build_zip(newpath, archive_paths) + if dest_dir is None: + shutil.copyfile(newpath, pathname) + return modified + + +def _get_glibc_version(): + import platform + ver = platform.libc_ver() + result = [] + if ver[0] == 'glibc': + for s in ver[1].split('.'): + result.append(int(s) if s.isdigit() else 0) + result = tuple(result) + return result + + +def compatible_tags(): + """ + Return (pyver, abi, arch) tuples compatible with this Python. + """ + versions = [VER_SUFFIX] + major = VER_SUFFIX[0] + for minor in range(sys.version_info[1] - 1, -1, -1): + versions.append(''.join([major, str(minor)])) + + abis = [] + for suffix in _get_suffixes(): + if suffix.startswith('.abi'): + abis.append(suffix.split('.', 2)[1]) + abis.sort() + if ABI != 'none': + abis.insert(0, ABI) + abis.append('none') + result = [] + + arches = [ARCH] + if sys.platform == 'darwin': + m = re.match(r'(\w+)_(\d+)_(\d+)_(\w+)$', ARCH) + if m: + name, major, minor, arch = m.groups() + minor = int(minor) + matches = [arch] + if arch in ('i386', 'ppc'): + matches.append('fat') + if arch in ('i386', 'ppc', 'x86_64'): + matches.append('fat3') + if arch in ('ppc64', 'x86_64'): + matches.append('fat64') + if arch in ('i386', 'x86_64'): + matches.append('intel') + if arch in ('i386', 'x86_64', 'intel', 'ppc', 'ppc64'): + matches.append('universal') + while minor >= 0: + for match in matches: + s = '%s_%s_%s_%s' % (name, major, minor, match) + if s != ARCH: # already there + arches.append(s) + minor -= 1 + + # Most specific - our Python version, ABI and arch + for abi in abis: + for arch in arches: + result.append((''.join((IMP_PREFIX, versions[0])), abi, arch)) + # manylinux + if abi != 'none' and sys.platform.startswith('linux'): + arch = arch.replace('linux_', '') + parts = _get_glibc_version() + if len(parts) == 2: + if parts >= (2, 5): + result.append((''.join((IMP_PREFIX, versions[0])), abi, + 'manylinux1_%s' % arch)) + if parts >= (2, 12): + result.append((''.join((IMP_PREFIX, versions[0])), abi, + 'manylinux2010_%s' % arch)) + if parts >= (2, 17): + result.append((''.join((IMP_PREFIX, versions[0])), abi, + 'manylinux2014_%s' % arch)) + result.append( + (''.join((IMP_PREFIX, versions[0])), abi, + 'manylinux_%s_%s_%s' % (parts[0], parts[1], arch))) + + # where no ABI / arch dependency, but IMP_PREFIX dependency + for i, version in enumerate(versions): + result.append((''.join((IMP_PREFIX, version)), 'none', 'any')) + if i == 0: + result.append((''.join((IMP_PREFIX, version[0])), 'none', 'any')) + + # no IMP_PREFIX, ABI or arch dependency + for i, version in enumerate(versions): + result.append((''.join(('py', version)), 'none', 'any')) + if i == 0: + result.append((''.join(('py', version[0])), 'none', 'any')) + + return set(result) + + +COMPATIBLE_TAGS = compatible_tags() + +del compatible_tags + + +def is_compatible(wheel, tags=None): + if not isinstance(wheel, Wheel): + wheel = Wheel(wheel) # assume it's a filename + result = False + if tags is None: + tags = COMPATIBLE_TAGS + for ver, abi, arch in tags: + if ver in wheel.pyver and abi in wheel.abi and arch in wheel.arch: + result = True + break + return result diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/distro/__init__.py b/.venv/lib/python3.11/site-packages/pip/_vendor/distro/__init__.py new file mode 100644 index 0000000..7686fe8 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/distro/__init__.py @@ -0,0 +1,54 @@ +from .distro import ( + NORMALIZED_DISTRO_ID, + NORMALIZED_LSB_ID, + NORMALIZED_OS_ID, + LinuxDistribution, + __version__, + build_number, + codename, + distro_release_attr, + distro_release_info, + id, + info, + like, + linux_distribution, + lsb_release_attr, + lsb_release_info, + major_version, + minor_version, + name, + os_release_attr, + os_release_info, + uname_attr, + uname_info, + version, + version_parts, +) + +__all__ = [ + "NORMALIZED_DISTRO_ID", + "NORMALIZED_LSB_ID", + "NORMALIZED_OS_ID", + "LinuxDistribution", + "build_number", + "codename", + "distro_release_attr", + "distro_release_info", + "id", + "info", + "like", + "linux_distribution", + "lsb_release_attr", + "lsb_release_info", + "major_version", + "minor_version", + "name", + "os_release_attr", + "os_release_info", + "uname_attr", + "uname_info", + "version", + "version_parts", +] + +__version__ = __version__ diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/distro/__main__.py b/.venv/lib/python3.11/site-packages/pip/_vendor/distro/__main__.py new file mode 100644 index 0000000..0c01d5b --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/distro/__main__.py @@ -0,0 +1,4 @@ +from .distro import main + +if __name__ == "__main__": + main() diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/distro/__pycache__/__init__.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/distro/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c5845c45159df5f7cd9798b92098523628119a65 GIT binary patch literal 1241 zcmd^-zi$&U6vus+Ymz3p=4YF<17cywK&=8|LX|*4qEcxq0z&d)IXSm=d++Y#yF`Sk z3x5L(6AR)GV)4qv7O7h&{4R}@3RWg;>7(bb?f0Ia-#6c{5Ieq*{qr9MLVn_6Iow<0 z`lB^IlYj(HNWftZxXgtDD}cv5SYvBYWJM^k5|mjP*4a8#SOu!A3N=;(pZT!CHlWVx z&|nQ{vL>`x3)-v=9oB(Owh3Eo3%aZeJ=Sx`842944%?R2b5IzPzW2+q3G{oWb9DUX z_4C66_Hw`n2gA2-j`_jBG*{Ha;R}=+E7I{WKXj;~$%lbTGp$CGOvRC@az2$hwI=7L zHkzm~;L!v|Qk(KP4rC-ins$I!Vy$AQACsx>j>-;T}9LoK4Jq=M>G&kL<`YIbP$_}Ekqa5Lu?~@uXPiEtDq2WZw7jm4X z^ws-E)OLlAcrwe*Z5t(v9lAS}(UgX2L>C*6clY*asxtX75#vj7CR3WIgxWujf>_f< z2`J|(QW@vF$?T^54B}uC%6)y`W`*saKCqk@9LJfv+m1UY|2LlYsklXPdKJ9oXw@x$kh^Wm+Oyri1L$bs literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/distro/__pycache__/distro.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/distro/__pycache__/distro.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b5d09d0a61312014acf0f2390bac32eaecd78fb9 GIT binary patch literal 57774 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%0AY+Jb`w`9TB)Zt)bPM|n$d@~tw3Rh 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 for more information. +""" + +import argparse +import json +import logging +import os +import re +import shlex +import subprocess +import sys +import warnings +from typing import ( + Any, + Callable, + Dict, + Iterable, + Optional, + Sequence, + TextIO, + Tuple, + Type, +) + +try: + from typing import TypedDict +except ImportError: + # Python 3.7 + TypedDict = dict + +__version__ = "1.8.0" + + +class VersionDict(TypedDict): + major: str + minor: str + build_number: str + + +class InfoDict(TypedDict): + id: str + version: str + version_parts: VersionDict + like: str + codename: str + + +_UNIXCONFDIR = os.environ.get("UNIXCONFDIR", "/etc") +_UNIXUSRLIBDIR = os.environ.get("UNIXUSRLIBDIR", "/usr/lib") +_OS_RELEASE_BASENAME = "os-release" + +#: Translation table for normalizing the "ID" attribute defined in os-release +#: files, for use by the :func:`distro.id` method. +#: +#: * Key: Value as defined in the os-release file, translated to lower case, +#: with blanks translated to underscores. +#: +#: * Value: Normalized value. +NORMALIZED_OS_ID = { + "ol": "oracle", # Oracle Linux + "opensuse-leap": "opensuse", # Newer versions of OpenSuSE report as opensuse-leap +} + +#: Translation table for normalizing the "Distributor ID" attribute returned by +#: the lsb_release command, for use by the :func:`distro.id` method. +#: +#: * Key: Value as returned by the lsb_release command, translated to lower +#: case, with blanks translated to underscores. +#: +#: * Value: Normalized value. +NORMALIZED_LSB_ID = { + "enterpriseenterpriseas": "oracle", # Oracle Enterprise Linux 4 + "enterpriseenterpriseserver": "oracle", # Oracle Linux 5 + "redhatenterpriseworkstation": "rhel", # RHEL 6, 7 Workstation + "redhatenterpriseserver": "rhel", # RHEL 6, 7 Server + "redhatenterprisecomputenode": "rhel", # RHEL 6 ComputeNode +} + +#: Translation table for normalizing the distro ID derived from the file name +#: of distro release files, for use by the :func:`distro.id` method. +#: +#: * Key: Value as derived from the file name of a distro release file, +#: translated to lower case, with blanks translated to underscores. +#: +#: * Value: Normalized value. +NORMALIZED_DISTRO_ID = { + "redhat": "rhel", # RHEL 6.x, 7.x +} + +# Pattern for content of distro release file (reversed) +_DISTRO_RELEASE_CONTENT_REVERSED_PATTERN = re.compile( + r"(?:[^)]*\)(.*)\()? *(?:STL )?([\d.+\-a-z]*\d) *(?:esaeler *)?(.+)" +) + +# Pattern for base file name of distro release file +_DISTRO_RELEASE_BASENAME_PATTERN = re.compile(r"(\w+)[-_](release|version)$") + +# Base file names to be looked up for if _UNIXCONFDIR is not readable. +_DISTRO_RELEASE_BASENAMES = [ + "SuSE-release", + "arch-release", + "base-release", + "centos-release", + "fedora-release", + "gentoo-release", + "mageia-release", + "mandrake-release", + "mandriva-release", + "mandrivalinux-release", + "manjaro-release", + "oracle-release", + "redhat-release", + "rocky-release", + "sl-release", + "slackware-version", +] + +# Base file names to be ignored when searching for distro release file +_DISTRO_RELEASE_IGNORE_BASENAMES = ( + "debian_version", + "lsb-release", + "oem-release", + _OS_RELEASE_BASENAME, + "system-release", + "plesk-release", + "iredmail-release", +) + + +def linux_distribution(full_distribution_name: bool = True) -> Tuple[str, str, str]: + """ + .. deprecated:: 1.6.0 + + :func:`distro.linux_distribution()` is deprecated. It should only be + used as a compatibility shim with Python's + :py:func:`platform.linux_distribution()`. Please use :func:`distro.id`, + :func:`distro.version` and :func:`distro.name` instead. + + Return information about the current OS distribution as a tuple + ``(id_name, version, codename)`` with items as follows: + + * ``id_name``: If *full_distribution_name* is false, the result of + :func:`distro.id`. Otherwise, the result of :func:`distro.name`. + + * ``version``: The result of :func:`distro.version`. + + * ``codename``: The extra item (usually in parentheses) after the + os-release version number, or the result of :func:`distro.codename`. + + The interface of this function is compatible with the original + :py:func:`platform.linux_distribution` function, supporting a subset of + its parameters. + + The data it returns may not exactly be the same, because it uses more data + sources than the original function, and that may lead to different data if + the OS distribution is not consistent across multiple data sources it + provides (there are indeed such distributions ...). + + Another reason for differences is the fact that the :func:`distro.id` + method normalizes the distro ID string to a reliable machine-readable value + for a number of popular OS distributions. + """ + warnings.warn( + "distro.linux_distribution() is deprecated. It should only be used as a " + "compatibility shim with Python's platform.linux_distribution(). Please use " + "distro.id(), distro.version() and distro.name() instead.", + DeprecationWarning, + stacklevel=2, + ) + return _distro.linux_distribution(full_distribution_name) + + +def id() -> str: + """ + Return the distro ID of the current distribution, as a + machine-readable string. + + For a number of OS distributions, the returned distro ID value is + *reliable*, in the sense that it is documented and that it does not change + across releases of the distribution. + + This package maintains the following reliable distro ID values: + + ============== ========================================= + Distro ID Distribution + ============== ========================================= + "ubuntu" Ubuntu + "debian" Debian + "rhel" RedHat Enterprise Linux + "centos" CentOS + "fedora" Fedora + "sles" SUSE Linux Enterprise Server + "opensuse" openSUSE + "amzn" Amazon Linux + "arch" Arch Linux + "buildroot" Buildroot + "cloudlinux" CloudLinux OS + "exherbo" Exherbo Linux + "gentoo" GenToo Linux + "ibm_powerkvm" IBM PowerKVM + "kvmibm" KVM for IBM z Systems + "linuxmint" Linux Mint + "mageia" Mageia + "mandriva" Mandriva Linux + "parallels" Parallels + "pidora" Pidora + "raspbian" Raspbian + "oracle" Oracle Linux (and Oracle Enterprise Linux) + "scientific" Scientific Linux + "slackware" Slackware + "xenserver" XenServer + "openbsd" OpenBSD + "netbsd" NetBSD + "freebsd" FreeBSD + "midnightbsd" MidnightBSD + "rocky" Rocky Linux + "aix" AIX + "guix" Guix System + ============== ========================================= + + If you have a need to get distros for reliable IDs added into this set, + or if you find that the :func:`distro.id` function returns a different + distro ID for one of the listed distros, please create an issue in the + `distro issue tracker`_. + + **Lookup hierarchy and transformations:** + + First, the ID is obtained from the following sources, in the specified + order. The first available and non-empty value is used: + + * the value of the "ID" attribute of the os-release file, + + * the value of the "Distributor ID" attribute returned by the lsb_release + command, + + * the first part of the file name of the distro release file, + + The so determined ID value then passes the following transformations, + before it is returned by this method: + + * it is translated to lower case, + + * blanks (which should not be there anyway) are translated to underscores, + + * a normalization of the ID is performed, based upon + `normalization tables`_. The purpose of this normalization is to ensure + that the ID is as reliable as possible, even across incompatible changes + in the OS distributions. A common reason for an incompatible change is + the addition of an os-release file, or the addition of the lsb_release + command, with ID values that differ from what was previously determined + from the distro release file name. + """ + return _distro.id() + + +def name(pretty: bool = False) -> str: + """ + Return the name of the current OS distribution, as a human-readable + string. + + If *pretty* is false, the name is returned without version or codename. + (e.g. "CentOS Linux") + + If *pretty* is true, the version and codename are appended. + (e.g. "CentOS Linux 7.1.1503 (Core)") + + **Lookup hierarchy:** + + The name is obtained from the following sources, in the specified order. + The first available and non-empty value is used: + + * If *pretty* is false: + + - the value of the "NAME" attribute of the os-release file, + + - the value of the "Distributor ID" attribute returned by the lsb_release + command, + + - the value of the "" field of the distro release file. + + * If *pretty* is true: + + - the value of the "PRETTY_NAME" attribute of the os-release file, + + - the value of the "Description" attribute returned by the lsb_release + command, + + - the value of the "" field of the distro release file, appended + with the value of the pretty version ("" and "" + fields) of the distro release file, if available. + """ + return _distro.name(pretty) + + +def version(pretty: bool = False, best: bool = False) -> str: + """ + Return the version of the current OS distribution, as a human-readable + string. + + If *pretty* is false, the version is returned without codename (e.g. + "7.0"). + + If *pretty* is true, the codename in parenthesis is appended, if the + codename is non-empty (e.g. "7.0 (Maipo)"). + + Some distributions provide version numbers with different precisions in + the different sources of distribution information. Examining the different + sources in a fixed priority order does not always yield the most precise + version (e.g. for Debian 8.2, or CentOS 7.1). + + Some other distributions may not provide this kind of information. In these + cases, an empty string would be returned. This behavior can be observed + with rolling releases distributions (e.g. Arch Linux). + + The *best* parameter can be used to control the approach for the returned + version: + + If *best* is false, the first non-empty version number in priority order of + the examined sources is returned. + + If *best* is true, the most precise version number out of all examined + sources is returned. + + **Lookup hierarchy:** + + In all cases, the version number is obtained from the following sources. + If *best* is false, this order represents the priority order: + + * the value of the "VERSION_ID" attribute of the os-release file, + * the value of the "Release" attribute returned by the lsb_release + command, + * the version number parsed from the "" field of the first line + of the distro release file, + * the version number parsed from the "PRETTY_NAME" attribute of the + os-release file, if it follows the format of the distro release files. + * the version number parsed from the "Description" attribute returned by + the lsb_release command, if it follows the format of the distro release + files. + """ + return _distro.version(pretty, best) + + +def version_parts(best: bool = False) -> Tuple[str, str, str]: + """ + Return the version of the current OS distribution as a tuple + ``(major, minor, build_number)`` with items as follows: + + * ``major``: The result of :func:`distro.major_version`. + + * ``minor``: The result of :func:`distro.minor_version`. + + * ``build_number``: The result of :func:`distro.build_number`. + + For a description of the *best* parameter, see the :func:`distro.version` + method. + """ + return _distro.version_parts(best) + + +def major_version(best: bool = False) -> str: + """ + Return the major version of the current OS distribution, as a string, + if provided. + Otherwise, the empty string is returned. The major version is the first + part of the dot-separated version string. + + For a description of the *best* parameter, see the :func:`distro.version` + method. + """ + return _distro.major_version(best) + + +def minor_version(best: bool = False) -> str: + """ + Return the minor version of the current OS distribution, as a string, + if provided. + Otherwise, the empty string is returned. The minor version is the second + part of the dot-separated version string. + + For a description of the *best* parameter, see the :func:`distro.version` + method. + """ + return _distro.minor_version(best) + + +def build_number(best: bool = False) -> str: + """ + Return the build number of the current OS distribution, as a string, + if provided. + Otherwise, the empty string is returned. The build number is the third part + of the dot-separated version string. + + For a description of the *best* parameter, see the :func:`distro.version` + method. + """ + return _distro.build_number(best) + + +def like() -> str: + """ + Return a space-separated list of distro IDs of distributions that are + closely related to the current OS distribution in regards to packaging + and programming interfaces, for example distributions the current + distribution is a derivative from. + + **Lookup hierarchy:** + + This information item is only provided by the os-release file. + For details, see the description of the "ID_LIKE" attribute in the + `os-release man page + `_. + """ + return _distro.like() + + +def codename() -> str: + """ + Return the codename for the release of the current OS distribution, + as a string. + + If the distribution does not have a codename, an empty string is returned. + + Note that the returned codename is not always really a codename. For + example, openSUSE returns "x86_64". This function does not handle such + cases in any special way and just returns the string it finds, if any. + + **Lookup hierarchy:** + + * the codename within the "VERSION" attribute of the os-release file, if + provided, + + * the value of the "Codename" attribute returned by the lsb_release + command, + + * the value of the "" field of the distro release file. + """ + return _distro.codename() + + +def info(pretty: bool = False, best: bool = False) -> InfoDict: + """ + Return certain machine-readable information items about the current OS + distribution in a dictionary, as shown in the following example: + + .. sourcecode:: python + + { + 'id': 'rhel', + 'version': '7.0', + 'version_parts': { + 'major': '7', + 'minor': '0', + 'build_number': '' + }, + 'like': 'fedora', + 'codename': 'Maipo' + } + + The dictionary structure and keys are always the same, regardless of which + information items are available in the underlying data sources. The values + for the various keys are as follows: + + * ``id``: The result of :func:`distro.id`. + + * ``version``: The result of :func:`distro.version`. + + * ``version_parts -> major``: The result of :func:`distro.major_version`. + + * ``version_parts -> minor``: The result of :func:`distro.minor_version`. + + * ``version_parts -> build_number``: The result of + :func:`distro.build_number`. + + * ``like``: The result of :func:`distro.like`. + + * ``codename``: The result of :func:`distro.codename`. + + For a description of the *pretty* and *best* parameters, see the + :func:`distro.version` method. + """ + return _distro.info(pretty, best) + + +def os_release_info() -> Dict[str, str]: + """ + Return a dictionary containing key-value pairs for the information items + from the os-release file data source of the current OS distribution. + + See `os-release file`_ for details about these information items. + """ + return _distro.os_release_info() + + +def lsb_release_info() -> Dict[str, str]: + """ + Return a dictionary containing key-value pairs for the information items + from the lsb_release command data source of the current OS distribution. + + See `lsb_release command output`_ for details about these information + items. + """ + return _distro.lsb_release_info() + + +def distro_release_info() -> Dict[str, str]: + """ + Return a dictionary containing key-value pairs for the information items + from the distro release file data source of the current OS distribution. + + See `distro release file`_ for details about these information items. + """ + return _distro.distro_release_info() + + +def uname_info() -> Dict[str, str]: + """ + Return a dictionary containing key-value pairs for the information items + from the distro release file data source of the current OS distribution. + """ + return _distro.uname_info() + + +def os_release_attr(attribute: str) -> str: + """ + Return a single named information item from the os-release file data source + of the current OS distribution. + + Parameters: + + * ``attribute`` (string): Key of the information item. + + Returns: + + * (string): Value of the information item, if the item exists. + The empty string, if the item does not exist. + + See `os-release file`_ for details about these information items. + """ + return _distro.os_release_attr(attribute) + + +def lsb_release_attr(attribute: str) -> str: + """ + Return a single named information item from the lsb_release command output + data source of the current OS distribution. + + Parameters: + + * ``attribute`` (string): Key of the information item. + + Returns: + + * (string): Value of the information item, if the item exists. + The empty string, if the item does not exist. + + See `lsb_release command output`_ for details about these information + items. + """ + return _distro.lsb_release_attr(attribute) + + +def distro_release_attr(attribute: str) -> str: + """ + Return a single named information item from the distro release file + data source of the current OS distribution. + + Parameters: + + * ``attribute`` (string): Key of the information item. + + Returns: + + * (string): Value of the information item, if the item exists. + The empty string, if the item does not exist. + + See `distro release file`_ for details about these information items. + """ + return _distro.distro_release_attr(attribute) + + +def uname_attr(attribute: str) -> str: + """ + Return a single named information item from the distro release file + data source of the current OS distribution. + + Parameters: + + * ``attribute`` (string): Key of the information item. + + Returns: + + * (string): Value of the information item, if the item exists. + The empty string, if the item does not exist. + """ + return _distro.uname_attr(attribute) + + +try: + from functools import cached_property +except ImportError: + # Python < 3.8 + class cached_property: # type: ignore + """A version of @property which caches the value. On access, it calls the + underlying function and sets the value in `__dict__` so future accesses + will not re-call the property. + """ + + def __init__(self, f: Callable[[Any], Any]) -> None: + self._fname = f.__name__ + self._f = f + + def __get__(self, obj: Any, owner: Type[Any]) -> Any: + assert obj is not None, f"call {self._fname} on an instance" + ret = obj.__dict__[self._fname] = self._f(obj) + return ret + + +class LinuxDistribution: + """ + Provides information about a OS distribution. + + This package creates a private module-global instance of this class with + default initialization arguments, that is used by the + `consolidated accessor functions`_ and `single source accessor functions`_. + By using default initialization arguments, that module-global instance + returns data about the current OS distribution (i.e. the distro this + package runs on). + + Normally, it is not necessary to create additional instances of this class. + However, in situations where control is needed over the exact data sources + that are used, instances of this class can be created with a specific + distro release file, or a specific os-release file, or without invoking the + lsb_release command. + """ + + def __init__( + self, + include_lsb: Optional[bool] = None, + os_release_file: str = "", + distro_release_file: str = "", + include_uname: Optional[bool] = None, + root_dir: Optional[str] = None, + include_oslevel: Optional[bool] = None, + ) -> None: + """ + The initialization method of this class gathers information from the + available data sources, and stores that in private instance attributes. + Subsequent access to the information items uses these private instance + attributes, so that the data sources are read only once. + + Parameters: + + * ``include_lsb`` (bool): Controls whether the + `lsb_release command output`_ is included as a data source. + + If the lsb_release command is not available in the program execution + path, the data source for the lsb_release command will be empty. + + * ``os_release_file`` (string): The path name of the + `os-release file`_ that is to be used as a data source. + + An empty string (the default) will cause the default path name to + be used (see `os-release file`_ for details). + + If the specified or defaulted os-release file does not exist, the + data source for the os-release file will be empty. + + * ``distro_release_file`` (string): The path name of the + `distro release file`_ that is to be used as a data source. + + An empty string (the default) will cause a default search algorithm + to be used (see `distro release file`_ for details). + + If the specified distro release file does not exist, or if no default + distro release file can be found, the data source for the distro + release file will be empty. + + * ``include_uname`` (bool): Controls whether uname command output is + included as a data source. If the uname command is not available in + the program execution path the data source for the uname command will + be empty. + + * ``root_dir`` (string): The absolute path to the root directory to use + to find distro-related information files. Note that ``include_*`` + parameters must not be enabled in combination with ``root_dir``. + + * ``include_oslevel`` (bool): Controls whether (AIX) oslevel command + output is included as a data source. If the oslevel command is not + available in the program execution path the data source will be + empty. + + Public instance attributes: + + * ``os_release_file`` (string): The path name of the + `os-release file`_ that is actually used as a data source. The + empty string if no distro release file is used as a data source. + + * ``distro_release_file`` (string): The path name of the + `distro release file`_ that is actually used as a data source. The + empty string if no distro release file is used as a data source. + + * ``include_lsb`` (bool): The result of the ``include_lsb`` parameter. + This controls whether the lsb information will be loaded. + + * ``include_uname`` (bool): The result of the ``include_uname`` + parameter. This controls whether the uname information will + be loaded. + + * ``include_oslevel`` (bool): The result of the ``include_oslevel`` + parameter. This controls whether (AIX) oslevel information will be + loaded. + + * ``root_dir`` (string): The result of the ``root_dir`` parameter. + The absolute path to the root directory to use to find distro-related + information files. + + Raises: + + * :py:exc:`ValueError`: Initialization parameters combination is not + supported. + + * :py:exc:`OSError`: Some I/O issue with an os-release file or distro + release file. + + * :py:exc:`UnicodeError`: A data source has unexpected characters or + uses an unexpected encoding. + """ + self.root_dir = root_dir + self.etc_dir = os.path.join(root_dir, "etc") if root_dir else _UNIXCONFDIR + self.usr_lib_dir = ( + os.path.join(root_dir, "usr/lib") if root_dir else _UNIXUSRLIBDIR + ) + + if os_release_file: + self.os_release_file = os_release_file + else: + etc_dir_os_release_file = os.path.join(self.etc_dir, _OS_RELEASE_BASENAME) + usr_lib_os_release_file = os.path.join( + self.usr_lib_dir, _OS_RELEASE_BASENAME + ) + + # NOTE: The idea is to respect order **and** have it set + # at all times for API backwards compatibility. + if os.path.isfile(etc_dir_os_release_file) or not os.path.isfile( + usr_lib_os_release_file + ): + self.os_release_file = etc_dir_os_release_file + else: + self.os_release_file = usr_lib_os_release_file + + self.distro_release_file = distro_release_file or "" # updated later + + is_root_dir_defined = root_dir is not None + if is_root_dir_defined and (include_lsb or include_uname or include_oslevel): + raise ValueError( + "Including subprocess data sources from specific root_dir is disallowed" + " to prevent false information" + ) + self.include_lsb = ( + include_lsb if include_lsb is not None else not is_root_dir_defined + ) + self.include_uname = ( + include_uname if include_uname is not None else not is_root_dir_defined + ) + self.include_oslevel = ( + include_oslevel if include_oslevel is not None else not is_root_dir_defined + ) + + def __repr__(self) -> str: + """Return repr of all info""" + return ( + "LinuxDistribution(" + "os_release_file={self.os_release_file!r}, " + "distro_release_file={self.distro_release_file!r}, " + "include_lsb={self.include_lsb!r}, " + "include_uname={self.include_uname!r}, " + "include_oslevel={self.include_oslevel!r}, " + "root_dir={self.root_dir!r}, " + "_os_release_info={self._os_release_info!r}, " + "_lsb_release_info={self._lsb_release_info!r}, " + "_distro_release_info={self._distro_release_info!r}, " + "_uname_info={self._uname_info!r}, " + "_oslevel_info={self._oslevel_info!r})".format(self=self) + ) + + def linux_distribution( + self, full_distribution_name: bool = True + ) -> Tuple[str, str, str]: + """ + Return information about the OS distribution that is compatible + with Python's :func:`platform.linux_distribution`, supporting a subset + of its parameters. + + For details, see :func:`distro.linux_distribution`. + """ + return ( + self.name() if full_distribution_name else self.id(), + self.version(), + self._os_release_info.get("release_codename") or self.codename(), + ) + + def id(self) -> str: + """Return the distro ID of the OS distribution, as a string. + + For details, see :func:`distro.id`. + """ + + def normalize(distro_id: str, table: Dict[str, str]) -> str: + distro_id = distro_id.lower().replace(" ", "_") + return table.get(distro_id, distro_id) + + distro_id = self.os_release_attr("id") + if distro_id: + return normalize(distro_id, NORMALIZED_OS_ID) + + distro_id = self.lsb_release_attr("distributor_id") + if distro_id: + return normalize(distro_id, NORMALIZED_LSB_ID) + + distro_id = self.distro_release_attr("id") + if distro_id: + return normalize(distro_id, NORMALIZED_DISTRO_ID) + + distro_id = self.uname_attr("id") + if distro_id: + return normalize(distro_id, NORMALIZED_DISTRO_ID) + + return "" + + def name(self, pretty: bool = False) -> str: + """ + Return the name of the OS distribution, as a string. + + For details, see :func:`distro.name`. + """ + name = ( + self.os_release_attr("name") + or self.lsb_release_attr("distributor_id") + or self.distro_release_attr("name") + or self.uname_attr("name") + ) + if pretty: + name = self.os_release_attr("pretty_name") or self.lsb_release_attr( + "description" + ) + if not name: + name = self.distro_release_attr("name") or self.uname_attr("name") + version = self.version(pretty=True) + if version: + name = f"{name} {version}" + return name or "" + + def version(self, pretty: bool = False, best: bool = False) -> str: + """ + Return the version of the OS distribution, as a string. + + For details, see :func:`distro.version`. + """ + versions = [ + self.os_release_attr("version_id"), + self.lsb_release_attr("release"), + self.distro_release_attr("version_id"), + self._parse_distro_release_content(self.os_release_attr("pretty_name")).get( + "version_id", "" + ), + self._parse_distro_release_content( + self.lsb_release_attr("description") + ).get("version_id", ""), + self.uname_attr("release"), + ] + if self.uname_attr("id").startswith("aix"): + # On AIX platforms, prefer oslevel command output. + versions.insert(0, self.oslevel_info()) + elif self.id() == "debian" or "debian" in self.like().split(): + # On Debian-like, add debian_version file content to candidates list. + versions.append(self._debian_version) + version = "" + if best: + # This algorithm uses the last version in priority order that has + # the best precision. If the versions are not in conflict, that + # does not matter; otherwise, using the last one instead of the + # first one might be considered a surprise. + for v in versions: + if v.count(".") > version.count(".") or version == "": + version = v + else: + for v in versions: + if v != "": + version = v + break + if pretty and version and self.codename(): + version = f"{version} ({self.codename()})" + return version + + def version_parts(self, best: bool = False) -> Tuple[str, str, str]: + """ + Return the version of the OS distribution, as a tuple of version + numbers. + + For details, see :func:`distro.version_parts`. + """ + version_str = self.version(best=best) + if version_str: + version_regex = re.compile(r"(\d+)\.?(\d+)?\.?(\d+)?") + matches = version_regex.match(version_str) + if matches: + major, minor, build_number = matches.groups() + return major, minor or "", build_number or "" + return "", "", "" + + def major_version(self, best: bool = False) -> str: + """ + Return the major version number of the current distribution. + + For details, see :func:`distro.major_version`. + """ + return self.version_parts(best)[0] + + def minor_version(self, best: bool = False) -> str: + """ + Return the minor version number of the current distribution. + + For details, see :func:`distro.minor_version`. + """ + return self.version_parts(best)[1] + + def build_number(self, best: bool = False) -> str: + """ + Return the build number of the current distribution. + + For details, see :func:`distro.build_number`. + """ + return self.version_parts(best)[2] + + def like(self) -> str: + """ + Return the IDs of distributions that are like the OS distribution. + + For details, see :func:`distro.like`. + """ + return self.os_release_attr("id_like") or "" + + def codename(self) -> str: + """ + Return the codename of the OS distribution. + + For details, see :func:`distro.codename`. + """ + try: + # Handle os_release specially since distros might purposefully set + # this to empty string to have no codename + return self._os_release_info["codename"] + except KeyError: + return ( + self.lsb_release_attr("codename") + or self.distro_release_attr("codename") + or "" + ) + + def info(self, pretty: bool = False, best: bool = False) -> InfoDict: + """ + Return certain machine-readable information about the OS + distribution. + + For details, see :func:`distro.info`. + """ + return dict( + id=self.id(), + version=self.version(pretty, best), + version_parts=dict( + major=self.major_version(best), + minor=self.minor_version(best), + build_number=self.build_number(best), + ), + like=self.like(), + codename=self.codename(), + ) + + def os_release_info(self) -> Dict[str, str]: + """ + Return a dictionary containing key-value pairs for the information + items from the os-release file data source of the OS distribution. + + For details, see :func:`distro.os_release_info`. + """ + return self._os_release_info + + def lsb_release_info(self) -> Dict[str, str]: + """ + Return a dictionary containing key-value pairs for the information + items from the lsb_release command data source of the OS + distribution. + + For details, see :func:`distro.lsb_release_info`. + """ + return self._lsb_release_info + + def distro_release_info(self) -> Dict[str, str]: + """ + Return a dictionary containing key-value pairs for the information + items from the distro release file data source of the OS + distribution. + + For details, see :func:`distro.distro_release_info`. + """ + return self._distro_release_info + + def uname_info(self) -> Dict[str, str]: + """ + Return a dictionary containing key-value pairs for the information + items from the uname command data source of the OS distribution. + + For details, see :func:`distro.uname_info`. + """ + return self._uname_info + + def oslevel_info(self) -> str: + """ + Return AIX' oslevel command output. + """ + return self._oslevel_info + + def os_release_attr(self, attribute: str) -> str: + """ + Return a single named information item from the os-release file data + source of the OS distribution. + + For details, see :func:`distro.os_release_attr`. + """ + return self._os_release_info.get(attribute, "") + + def lsb_release_attr(self, attribute: str) -> str: + """ + Return a single named information item from the lsb_release command + output data source of the OS distribution. + + For details, see :func:`distro.lsb_release_attr`. + """ + return self._lsb_release_info.get(attribute, "") + + def distro_release_attr(self, attribute: str) -> str: + """ + Return a single named information item from the distro release file + data source of the OS distribution. + + For details, see :func:`distro.distro_release_attr`. + """ + return self._distro_release_info.get(attribute, "") + + def uname_attr(self, attribute: str) -> str: + """ + Return a single named information item from the uname command + output data source of the OS distribution. + + For details, see :func:`distro.uname_attr`. + """ + return self._uname_info.get(attribute, "") + + @cached_property + def _os_release_info(self) -> Dict[str, str]: + """ + Get the information items from the specified os-release file. + + Returns: + A dictionary containing all information items. + """ + if os.path.isfile(self.os_release_file): + with open(self.os_release_file, encoding="utf-8") as release_file: + return self._parse_os_release_content(release_file) + return {} + + @staticmethod + def _parse_os_release_content(lines: TextIO) -> Dict[str, str]: + """ + Parse the lines of an os-release file. + + Parameters: + + * lines: Iterable through the lines in the os-release file. + Each line must be a unicode string or a UTF-8 encoded byte + string. + + Returns: + A dictionary containing all information items. + """ + props = {} + lexer = shlex.shlex(lines, posix=True) + lexer.whitespace_split = True + + tokens = list(lexer) + for token in tokens: + # At this point, all shell-like parsing has been done (i.e. + # comments processed, quotes and backslash escape sequences + # processed, multi-line values assembled, trailing newlines + # stripped, etc.), so the tokens are now either: + # * variable assignments: var=value + # * commands or their arguments (not allowed in os-release) + # Ignore any tokens that are not variable assignments + if "=" in token: + k, v = token.split("=", 1) + props[k.lower()] = v + + if "version" in props: + # extract release codename (if any) from version attribute + match = re.search(r"\((\D+)\)|,\s*(\D+)", props["version"]) + if match: + release_codename = match.group(1) or match.group(2) + props["codename"] = props["release_codename"] = release_codename + + if "version_codename" in props: + # os-release added a version_codename field. Use that in + # preference to anything else Note that some distros purposefully + # do not have code names. They should be setting + # version_codename="" + props["codename"] = props["version_codename"] + elif "ubuntu_codename" in props: + # Same as above but a non-standard field name used on older Ubuntus + props["codename"] = props["ubuntu_codename"] + + return props + + @cached_property + def _lsb_release_info(self) -> Dict[str, str]: + """ + Get the information items from the lsb_release command output. + + Returns: + A dictionary containing all information items. + """ + if not self.include_lsb: + return {} + try: + cmd = ("lsb_release", "-a") + stdout = subprocess.check_output(cmd, stderr=subprocess.DEVNULL) + # Command not found or lsb_release returned error + except (OSError, subprocess.CalledProcessError): + return {} + content = self._to_str(stdout).splitlines() + return self._parse_lsb_release_content(content) + + @staticmethod + def _parse_lsb_release_content(lines: Iterable[str]) -> Dict[str, str]: + """ + Parse the output of the lsb_release command. + + Parameters: + + * lines: Iterable through the lines of the lsb_release output. + Each line must be a unicode string or a UTF-8 encoded byte + string. + + Returns: + A dictionary containing all information items. + """ + props = {} + for line in lines: + kv = line.strip("\n").split(":", 1) + if len(kv) != 2: + # Ignore lines without colon. + continue + k, v = kv + props.update({k.replace(" ", "_").lower(): v.strip()}) + return props + + @cached_property + def _uname_info(self) -> Dict[str, str]: + if not self.include_uname: + return {} + try: + cmd = ("uname", "-rs") + stdout = subprocess.check_output(cmd, stderr=subprocess.DEVNULL) + except OSError: + return {} + content = self._to_str(stdout).splitlines() + return self._parse_uname_content(content) + + @cached_property + def _oslevel_info(self) -> str: + if not self.include_oslevel: + return "" + try: + stdout = subprocess.check_output("oslevel", stderr=subprocess.DEVNULL) + except (OSError, subprocess.CalledProcessError): + return "" + return self._to_str(stdout).strip() + + @cached_property + def _debian_version(self) -> str: + try: + with open( + os.path.join(self.etc_dir, "debian_version"), encoding="ascii" + ) as fp: + return fp.readline().rstrip() + except FileNotFoundError: + return "" + + @staticmethod + def _parse_uname_content(lines: Sequence[str]) -> Dict[str, str]: + if not lines: + return {} + props = {} + match = re.search(r"^([^\s]+)\s+([\d\.]+)", lines[0].strip()) + if match: + name, version = match.groups() + + # This is to prevent the Linux kernel version from + # appearing as the 'best' version on otherwise + # identifiable distributions. + if name == "Linux": + return {} + props["id"] = name.lower() + props["name"] = name + props["release"] = version + return props + + @staticmethod + def _to_str(bytestring: bytes) -> str: + encoding = sys.getfilesystemencoding() + return bytestring.decode(encoding) + + @cached_property + def _distro_release_info(self) -> Dict[str, str]: + """ + Get the information items from the specified distro release file. + + Returns: + A dictionary containing all information items. + """ + if self.distro_release_file: + # If it was specified, we use it and parse what we can, even if + # its file name or content does not match the expected pattern. + distro_info = self._parse_distro_release_file(self.distro_release_file) + basename = os.path.basename(self.distro_release_file) + # The file name pattern for user-specified distro release files + # is somewhat more tolerant (compared to when searching for the + # file), because we want to use what was specified as best as + # possible. + match = _DISTRO_RELEASE_BASENAME_PATTERN.match(basename) + else: + try: + basenames = [ + basename + for basename in os.listdir(self.etc_dir) + if basename not in _DISTRO_RELEASE_IGNORE_BASENAMES + and os.path.isfile(os.path.join(self.etc_dir, basename)) + ] + # We sort for repeatability in cases where there are multiple + # distro specific files; e.g. CentOS, Oracle, Enterprise all + # containing `redhat-release` on top of their own. + basenames.sort() + except OSError: + # This may occur when /etc is not readable but we can't be + # sure about the *-release files. Check common entries of + # /etc for information. If they turn out to not be there the + # error is handled in `_parse_distro_release_file()`. + basenames = _DISTRO_RELEASE_BASENAMES + for basename in basenames: + match = _DISTRO_RELEASE_BASENAME_PATTERN.match(basename) + if match is None: + continue + filepath = os.path.join(self.etc_dir, basename) + distro_info = self._parse_distro_release_file(filepath) + # The name is always present if the pattern matches. + if "name" not in distro_info: + continue + self.distro_release_file = filepath + break + else: # the loop didn't "break": no candidate. + return {} + + if match is not None: + distro_info["id"] = match.group(1) + + # CloudLinux < 7: manually enrich info with proper id. + if "cloudlinux" in distro_info.get("name", "").lower(): + distro_info["id"] = "cloudlinux" + + return distro_info + + def _parse_distro_release_file(self, filepath: str) -> Dict[str, str]: + """ + Parse a distro release file. + + Parameters: + + * filepath: Path name of the distro release file. + + Returns: + A dictionary containing all information items. + """ + try: + with open(filepath, encoding="utf-8") as fp: + # Only parse the first line. For instance, on SLES there + # are multiple lines. We don't want them... + return self._parse_distro_release_content(fp.readline()) + except OSError: + # Ignore not being able to read a specific, seemingly version + # related file. + # See https://github.com/python-distro/distro/issues/162 + return {} + + @staticmethod + def _parse_distro_release_content(line: str) -> Dict[str, str]: + """ + Parse a line from a distro release file. + + Parameters: + * line: Line from the distro release file. Must be a unicode string + or a UTF-8 encoded byte string. + + Returns: + A dictionary containing all information items. + """ + matches = _DISTRO_RELEASE_CONTENT_REVERSED_PATTERN.match(line.strip()[::-1]) + distro_info = {} + if matches: + # regexp ensures non-None + distro_info["name"] = matches.group(3)[::-1] + if matches.group(2): + distro_info["version_id"] = matches.group(2)[::-1] + if matches.group(1): + distro_info["codename"] = matches.group(1)[::-1] + elif line: + distro_info["name"] = line.strip() + return distro_info + + +_distro = LinuxDistribution() + + +def main() -> None: + logger = logging.getLogger(__name__) + logger.setLevel(logging.DEBUG) + logger.addHandler(logging.StreamHandler(sys.stdout)) + + parser = argparse.ArgumentParser(description="OS distro info tool") + parser.add_argument( + "--json", "-j", help="Output in machine readable format", action="store_true" + ) + + parser.add_argument( + "--root-dir", + "-r", + type=str, + dest="root_dir", + help="Path to the root filesystem directory (defaults to /)", + ) + + args = parser.parse_args() + + if args.root_dir: + dist = LinuxDistribution( + include_lsb=False, + include_uname=False, + include_oslevel=False, + root_dir=args.root_dir, + ) + else: + dist = _distro + + if args.json: + logger.info(json.dumps(dist.info(), indent=4, sort_keys=True)) + else: + logger.info("Name: %s", dist.name(pretty=True)) + distribution_version = dist.version(pretty=True) + logger.info("Version: %s", distribution_version) + distribution_codename = dist.codename() + logger.info("Codename: %s", distribution_codename) + + +if __name__ == "__main__": + main() diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/distro/py.typed b/.venv/lib/python3.11/site-packages/pip/_vendor/distro/py.typed new file mode 100644 index 0000000..e69de29 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/idna/__init__.py b/.venv/lib/python3.11/site-packages/pip/_vendor/idna/__init__.py new file mode 100644 index 0000000..a40eeaf --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/idna/__init__.py @@ -0,0 +1,44 @@ +from .package_data import __version__ +from .core import ( + IDNABidiError, + IDNAError, + InvalidCodepoint, + InvalidCodepointContext, + alabel, + check_bidi, + check_hyphen_ok, + check_initial_combiner, + check_label, + check_nfc, + decode, + encode, + ulabel, + uts46_remap, + valid_contextj, + valid_contexto, + valid_label_length, + valid_string_length, +) +from .intranges import intranges_contain + +__all__ = [ + "IDNABidiError", + "IDNAError", + "InvalidCodepoint", + "InvalidCodepointContext", + "alabel", + "check_bidi", + "check_hyphen_ok", + "check_initial_combiner", + "check_label", + "check_nfc", + "decode", + "encode", + "intranges_contain", + "ulabel", + "uts46_remap", + "valid_contextj", + "valid_contexto", + "valid_label_length", + "valid_string_length", +] diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..eaff66797db1a062625ece9c65ea48dab12a20db GIT binary patch literal 1142 zcmdUtyKfUQ7{Kj3E|1GQY07}ukeY#5ErlM&lpzjf3%6t&w`B)+WEXd3 z5BFpr_vHW&b@%3?>3@fddZ9oN`F=3lg!lDJ4Id`^O z$jLfQm?C;%$Ay6_o^vWlq~(k&W^7p43lEJ#QD>12Vivj3HejlFFN;sYWu85HObnAW zwViE>&e=AR^IN*MgW`PqClO4|^TZAdTb3KH=GR8on7%8~P&H@S)*a<)GBg#}G*k5m zJZc_wkA{c8aua&AJlY-|kFLkqqvz507DCH?~!>D3y5RVl_ zg!t(oWSXw8>QAJOmx3LddoCwGyjk6GQ-%7&-6`o!0E|(H%iliu8|39fEtF1)Dj#5L8-PVzvSg>igsvCzzN>JRTOoe}) zUD=RI6>8vvQV1> z_@pglO9~+&DTYLjD7<1zNFj-(_K+P?At5InAxE+$)WQ*-sP_5Ra>t6e2|eC}XoZlI zCvOo&xH$$}msufUe&p~+@$_Xf!>H?g% zf)ij&h*k)B8SW6^+zjU{Yc}g~KBWzMX)kMIyyCefg#3zahKzb2<4i|IQ&LmWw4$1l zqFQMr5t&sJrnF$Cjtf)4pP!>NO&?=N!BO56f3=WFsHS{5qsP;!NMgYWirgf*fT_l z6_l+BB>_rS>@XvTDZU94iJFq8(|A-j1tp?KV1D@Rnki9LU!bXIW$R!p5h9lN{{~{6 zWO;>qpXuq4UNHm$hO|*r0%$2@`FfM7FMYseISov3hUhp>xeZs3((PppA=w69jE89n zL5jBbwEt>KTgYV6R9BS&Hm8B>k(82%r{)HRe!o04%I{-OR0c6BQ0&%}VriO;=oIH< z+7fDN%Vr9inut*}RO$wyp>AMc;OR=>s-{vckb*@^#N!ctF`16V)wp^i61cJ$y&j>- zD>OZ?Ms+Rl_B+P|2{l4f;mo3bJq?Ma35?%RQ#S&M_-w#ZoEU%g)qob))v-(@`hH|i z)dHD#CJ+XglBR*Ul8OY->Z0SBMfR0TPPT{RmQf-NXh9Gw#Ax;8u03e&EwuJN^mZ3| ze)?t4`3F7cw{Pt91dBbv9q;9$_j18`dDrdRBb=kl@O9>1f8_S(ln=9O*-vLS+CO>s z&btNoa6ulXcwk;uL!ihCTfAAf(-aRmMTVe$6dfSSJ4=t0b>+piPC72acU#;}!*?V% z@uI~Ij&jUu;ZVxqa4M2i!(p=}98RW{g#_lE;qdPkB8ig51}ByxPnhEDqONMDEuONh zmd$C4upP4|f?PvUprLDj1hG>2+Y{{K$Q}WaKf#i_HkN!ovF*Qa+wLl!y2#3n!dq!J zVKsZjYIb$|1T;JOMYyp64pFVMz7D@B3b7K{B?hJa*Fn?}9|x3YQJ($u=6+n+d(UjPAubEDrM&fv@V0Ui|>z z)L0oPDcPt5bUt>F8X) z_Sb9q*pB~b(SP)=bI1SMYKtK|KepvA?z9aS+Xi>!K^W8BnSZU|?k~vwj9`MW>pi$} zxLC9gML!5rm`$e>j6LZfR!*Q8LV*l#k>(FDhXOm$E`g{aO}ouCPYJ{=a7eoMJv|4FNLS{XhM|%3I-Oraw9YbEu^@`a`Io zKSJ?i6nLpw{>>QX#zDN8e=J9*j(mCcbgD*@?@)M~(BPJ>ky#t2@CNijQT!I-KE9i({AmdC z%9QmHi1_v&@k=$Lz(-JAp2oHN8P=hg#SEIMH4;`?vHS-SSPh_*!l8$ zz&}iC-=mv=ya&+=^Vph&7hr@6rtINDg^uoTDd@Q5<$UFz9fbUo-vr<3Ud4Zcov;N> z0bhaO=nD84V2?oN^qbyz)$z3)30hZYom^@X6BZ|#>ftrioOlPg2}1sopd+pr){*IiKnnei>ii4{5EKJz} pK4X)}P2`7*U1LvBbx_sI%}CbzdGHoa%KaMr#61GJ=L%*@{{vUeh1~!E literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..80722d613096c561cfdae61e5afd87ec33d187fb GIT binary patch literal 1059 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..dd967e8cc4d4853e2f662d0c8a4570736c46d28b GIT binary patch literal 39018 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 Cl<6@5 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a378717f9d64f86a5b8de42190b3d651b6b37852 GIT binary patch literal 3027 zcmai0O>7&-6`tkplJwG)L=l$d*tLe1gNO-DMxq=9g`5I)U>C9F#+IF+a*OqvJCxR1 z?$WbM%TlR^C{ln5RFnZ~mfe%lGjHbo&D-z2;g`{{4?3_m ztaB9h!+I30}z;TxIcE&N?_} zs`pF8;ik^4YYu*h`{otH;@dVgRt!rs`2l}&24cdlQ6Tu|Gp4;VGtJ{pCez9b_C~HH z1D zUDy&`rqO>~d2fbLSs2zB=H5rYDs4$+Ne^s-%Ky?^<0k2evQU-=fMT4lJ6HoA0KFDq z3RKvc1sTzo*^~X<0eEf6C>SO$PAX(u7EH}-G@m^zGI3_t*w5`c!4BMf6yvsQ@nV+F(0hne~|$Cdi_ zKG0Mjc`Ab*!&(YErQ9l@NOOmv#I5Yr3DzjVx%?*&U9Re5}=y61=241)T%L@$H zzyR8@V*?0{w8D+u;NkhEtemYAogKk3tQB)mMg4NX3kx_qhs(?sglO3=lXV$foiw-h z;uSnE82Bj5bTa4#9h7eFF~bg)Ge&|L|$%mIJLMV`;8t8iwX>6zse~4DvwB ze7KQY)o9^EYTqL{*U9|s3t(X*ZC*&YhY$2qAA-N@1E_3iAVcq-9$T)eKwkHjb^)JlikVb#s|&&f4aIG z+nxP$ymfZIGkLxm?S@DG5dAFrsL)v4O?1xA?-u^@)6P4W|CVUKbEQ3TwKH+G9bW8& z7hB=Q?y-rgQdPc-jMXN#FYH`sNs}+(9LSS7-aHXo;HCm z3!8A2K}`j&y}+>Z70l=)Oem{chiPFqS!le2#yH&IehGHBBxtu%8Df1H zSYxM0G+37VtzEVP0h4kg|VgLWfbC7xNUklueF2O63H!r+TTtW+m z1sy4m@34g4!Fl*6;IMn%#x`v9Z*#x)*j0PSpWaFHPDI&Nar07A=4kSQcMbTf;Cc~% zR85k1`75PIK`t4hn4O%xG%v`zlIn>?+wmkO2))c$S#>=@by$8`zk!Ei)r$=(9{!HF znqko-$h-kR=Sv_J^j-9|`g|kSj!t)?)0Iolm9dU;s{T>qqqdUjD5=WDUJ!*N)$6}q zudF|xm~LEZW}%eNf3et}nCnc;ZAYq7m2@McwfRsta_e9HyQCls;b*L zRi$Sjc1XoW5iSPGa7!7)JdqujRe)cltSCI`u5FwA)V!3qDW04k!V3jkFPY>$ng&6J zF6Vn7Jy8&ZUO*P49%5t!2_uy#`*hLi)_?l;q_}XR?lvwy+2|pdHgD}_zZG}i{YK^N zVe+OROx5E(1Vbasho(R9`2i9Xgj8*bEu`wV8ri1Uc=rjI1okiqj|#E+#U6s8d93N| UUTi-6W{R`l-sHo7B|IPh0tTb+W&i*H literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d7de203f0bdb3f951db9d050de7a6f41d7e8cdb5 GIT binary patch literal 262 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 b=+5-jhQ2FsZC1(jk10In6vKb^J=OmY&a9Gw literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/idna/codec.py b/.venv/lib/python3.11/site-packages/pip/_vendor/idna/codec.py new file mode 100644 index 0000000..1ca9ba6 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/idna/codec.py @@ -0,0 +1,112 @@ +from .core import encode, decode, alabel, ulabel, IDNAError +import codecs +import re +from typing import Tuple, Optional + +_unicode_dots_re = re.compile('[\u002e\u3002\uff0e\uff61]') + +class Codec(codecs.Codec): + + def encode(self, data: str, errors: str = 'strict') -> Tuple[bytes, int]: + if errors != 'strict': + raise IDNAError('Unsupported error handling \"{}\"'.format(errors)) + + if not data: + return b"", 0 + + return encode(data), len(data) + + def decode(self, data: bytes, errors: str = 'strict') -> Tuple[str, int]: + if errors != 'strict': + raise IDNAError('Unsupported error handling \"{}\"'.format(errors)) + + if not data: + return '', 0 + + return decode(data), len(data) + +class IncrementalEncoder(codecs.BufferedIncrementalEncoder): + def _buffer_encode(self, data: str, errors: str, final: bool) -> Tuple[str, int]: # type: ignore + if errors != 'strict': + raise IDNAError('Unsupported error handling \"{}\"'.format(errors)) + + if not data: + return "", 0 + + labels = _unicode_dots_re.split(data) + trailing_dot = '' + if labels: + if not labels[-1]: + trailing_dot = '.' + del labels[-1] + elif not final: + # Keep potentially unfinished label until the next call + del labels[-1] + if labels: + trailing_dot = '.' + + result = [] + size = 0 + for label in labels: + result.append(alabel(label)) + if size: + size += 1 + size += len(label) + + # Join with U+002E + result_str = '.'.join(result) + trailing_dot # type: ignore + size += len(trailing_dot) + return result_str, size + +class IncrementalDecoder(codecs.BufferedIncrementalDecoder): + def _buffer_decode(self, data: str, errors: str, final: bool) -> Tuple[str, int]: # type: ignore + if errors != 'strict': + raise IDNAError('Unsupported error handling \"{}\"'.format(errors)) + + if not data: + return ('', 0) + + labels = _unicode_dots_re.split(data) + trailing_dot = '' + if labels: + if not labels[-1]: + trailing_dot = '.' + del labels[-1] + elif not final: + # Keep potentially unfinished label until the next call + del labels[-1] + if labels: + trailing_dot = '.' + + result = [] + size = 0 + for label in labels: + result.append(ulabel(label)) + if size: + size += 1 + size += len(label) + + result_str = '.'.join(result) + trailing_dot + size += len(trailing_dot) + return (result_str, size) + + +class StreamWriter(Codec, codecs.StreamWriter): + pass + + +class StreamReader(Codec, codecs.StreamReader): + pass + + +def getregentry() -> codecs.CodecInfo: + # Compatibility as a search_function for codecs.register() + return codecs.CodecInfo( + name='idna', + encode=Codec().encode, # type: ignore + decode=Codec().decode, # type: ignore + incrementalencoder=IncrementalEncoder, + incrementaldecoder=IncrementalDecoder, + streamwriter=StreamWriter, + streamreader=StreamReader, + ) diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/idna/compat.py b/.venv/lib/python3.11/site-packages/pip/_vendor/idna/compat.py new file mode 100644 index 0000000..786e6bd --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/idna/compat.py @@ -0,0 +1,13 @@ +from .core import * +from .codec import * +from typing import Any, Union + +def ToASCII(label: str) -> bytes: + return encode(label) + +def ToUnicode(label: Union[bytes, bytearray]) -> str: + return decode(label) + +def nameprep(s: Any) -> None: + raise NotImplementedError('IDNA 2008 does not utilise nameprep protocol') + diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/idna/core.py b/.venv/lib/python3.11/site-packages/pip/_vendor/idna/core.py new file mode 100644 index 0000000..4f30037 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/idna/core.py @@ -0,0 +1,400 @@ +from . import idnadata +import bisect +import unicodedata +import re +from typing import Union, Optional +from .intranges import intranges_contain + +_virama_combining_class = 9 +_alabel_prefix = b'xn--' +_unicode_dots_re = re.compile('[\u002e\u3002\uff0e\uff61]') + +class IDNAError(UnicodeError): + """ Base exception for all IDNA-encoding related problems """ + pass + + +class IDNABidiError(IDNAError): + """ Exception when bidirectional requirements are not satisfied """ + pass + + +class InvalidCodepoint(IDNAError): + """ Exception when a disallowed or unallocated codepoint is used """ + pass + + +class InvalidCodepointContext(IDNAError): + """ Exception when the codepoint is not valid in the context it is used """ + pass + + +def _combining_class(cp: int) -> int: + v = unicodedata.combining(chr(cp)) + if v == 0: + if not unicodedata.name(chr(cp)): + raise ValueError('Unknown character in unicodedata') + return v + +def _is_script(cp: str, script: str) -> bool: + return intranges_contain(ord(cp), idnadata.scripts[script]) + +def _punycode(s: str) -> bytes: + return s.encode('punycode') + +def _unot(s: int) -> str: + return 'U+{:04X}'.format(s) + + +def valid_label_length(label: Union[bytes, str]) -> bool: + if len(label) > 63: + return False + return True + + +def valid_string_length(label: Union[bytes, str], trailing_dot: bool) -> bool: + if len(label) > (254 if trailing_dot else 253): + return False + return True + + +def check_bidi(label: str, check_ltr: bool = False) -> bool: + # Bidi rules should only be applied if string contains RTL characters + bidi_label = False + for (idx, cp) in enumerate(label, 1): + direction = unicodedata.bidirectional(cp) + if direction == '': + # String likely comes from a newer version of Unicode + raise IDNABidiError('Unknown directionality in label {} at position {}'.format(repr(label), idx)) + if direction in ['R', 'AL', 'AN']: + bidi_label = True + if not bidi_label and not check_ltr: + return True + + # Bidi rule 1 + direction = unicodedata.bidirectional(label[0]) + if direction in ['R', 'AL']: + rtl = True + elif direction == 'L': + rtl = False + else: + raise IDNABidiError('First codepoint in label {} must be directionality L, R or AL'.format(repr(label))) + + valid_ending = False + number_type = None # type: Optional[str] + for (idx, cp) in enumerate(label, 1): + direction = unicodedata.bidirectional(cp) + + if rtl: + # Bidi rule 2 + if not direction in ['R', 'AL', 'AN', 'EN', 'ES', 'CS', 'ET', 'ON', 'BN', 'NSM']: + raise IDNABidiError('Invalid direction for codepoint at position {} in a right-to-left label'.format(idx)) + # Bidi rule 3 + if direction in ['R', 'AL', 'EN', 'AN']: + valid_ending = True + elif direction != 'NSM': + valid_ending = False + # Bidi rule 4 + if direction in ['AN', 'EN']: + if not number_type: + number_type = direction + else: + if number_type != direction: + raise IDNABidiError('Can not mix numeral types in a right-to-left label') + else: + # Bidi rule 5 + if not direction in ['L', 'EN', 'ES', 'CS', 'ET', 'ON', 'BN', 'NSM']: + raise IDNABidiError('Invalid direction for codepoint at position {} in a left-to-right label'.format(idx)) + # Bidi rule 6 + if direction in ['L', 'EN']: + valid_ending = True + elif direction != 'NSM': + valid_ending = False + + if not valid_ending: + raise IDNABidiError('Label ends with illegal codepoint directionality') + + return True + + +def check_initial_combiner(label: str) -> bool: + if unicodedata.category(label[0])[0] == 'M': + raise IDNAError('Label begins with an illegal combining character') + return True + + +def check_hyphen_ok(label: str) -> bool: + if label[2:4] == '--': + raise IDNAError('Label has disallowed hyphens in 3rd and 4th position') + if label[0] == '-' or label[-1] == '-': + raise IDNAError('Label must not start or end with a hyphen') + return True + + +def check_nfc(label: str) -> None: + if unicodedata.normalize('NFC', label) != label: + raise IDNAError('Label must be in Normalization Form C') + + +def valid_contextj(label: str, pos: int) -> bool: + cp_value = ord(label[pos]) + + if cp_value == 0x200c: + + if pos > 0: + if _combining_class(ord(label[pos - 1])) == _virama_combining_class: + return True + + ok = False + for i in range(pos-1, -1, -1): + joining_type = idnadata.joining_types.get(ord(label[i])) + if joining_type == ord('T'): + continue + if joining_type in [ord('L'), ord('D')]: + ok = True + break + + if not ok: + return False + + ok = False + for i in range(pos+1, len(label)): + joining_type = idnadata.joining_types.get(ord(label[i])) + if joining_type == ord('T'): + continue + if joining_type in [ord('R'), ord('D')]: + ok = True + break + return ok + + if cp_value == 0x200d: + + if pos > 0: + if _combining_class(ord(label[pos - 1])) == _virama_combining_class: + return True + return False + + else: + + return False + + +def valid_contexto(label: str, pos: int, exception: bool = False) -> bool: + cp_value = ord(label[pos]) + + if cp_value == 0x00b7: + if 0 < pos < len(label)-1: + if ord(label[pos - 1]) == 0x006c and ord(label[pos + 1]) == 0x006c: + return True + return False + + elif cp_value == 0x0375: + if pos < len(label)-1 and len(label) > 1: + return _is_script(label[pos + 1], 'Greek') + return False + + elif cp_value == 0x05f3 or cp_value == 0x05f4: + if pos > 0: + return _is_script(label[pos - 1], 'Hebrew') + return False + + elif cp_value == 0x30fb: + for cp in label: + if cp == '\u30fb': + continue + if _is_script(cp, 'Hiragana') or _is_script(cp, 'Katakana') or _is_script(cp, 'Han'): + return True + return False + + elif 0x660 <= cp_value <= 0x669: + for cp in label: + if 0x6f0 <= ord(cp) <= 0x06f9: + return False + return True + + elif 0x6f0 <= cp_value <= 0x6f9: + for cp in label: + if 0x660 <= ord(cp) <= 0x0669: + return False + return True + + return False + + +def check_label(label: Union[str, bytes, bytearray]) -> None: + if isinstance(label, (bytes, bytearray)): + label = label.decode('utf-8') + if len(label) == 0: + raise IDNAError('Empty Label') + + check_nfc(label) + check_hyphen_ok(label) + check_initial_combiner(label) + + for (pos, cp) in enumerate(label): + cp_value = ord(cp) + if intranges_contain(cp_value, idnadata.codepoint_classes['PVALID']): + continue + elif intranges_contain(cp_value, idnadata.codepoint_classes['CONTEXTJ']): + try: + if not valid_contextj(label, pos): + raise InvalidCodepointContext('Joiner {} not allowed at position {} in {}'.format( + _unot(cp_value), pos+1, repr(label))) + except ValueError: + raise IDNAError('Unknown codepoint adjacent to joiner {} at position {} in {}'.format( + _unot(cp_value), pos+1, repr(label))) + elif intranges_contain(cp_value, idnadata.codepoint_classes['CONTEXTO']): + if not valid_contexto(label, pos): + raise InvalidCodepointContext('Codepoint {} not allowed at position {} in {}'.format(_unot(cp_value), pos+1, repr(label))) + else: + raise InvalidCodepoint('Codepoint {} at position {} of {} not allowed'.format(_unot(cp_value), pos+1, repr(label))) + + check_bidi(label) + + +def alabel(label: str) -> bytes: + try: + label_bytes = label.encode('ascii') + ulabel(label_bytes) + if not valid_label_length(label_bytes): + raise IDNAError('Label too long') + return label_bytes + except UnicodeEncodeError: + pass + + if not label: + raise IDNAError('No Input') + + label = str(label) + check_label(label) + label_bytes = _punycode(label) + label_bytes = _alabel_prefix + label_bytes + + if not valid_label_length(label_bytes): + raise IDNAError('Label too long') + + return label_bytes + + +def ulabel(label: Union[str, bytes, bytearray]) -> str: + if not isinstance(label, (bytes, bytearray)): + try: + label_bytes = label.encode('ascii') + except UnicodeEncodeError: + check_label(label) + return label + else: + label_bytes = label + + label_bytes = label_bytes.lower() + if label_bytes.startswith(_alabel_prefix): + label_bytes = label_bytes[len(_alabel_prefix):] + if not label_bytes: + raise IDNAError('Malformed A-label, no Punycode eligible content found') + if label_bytes.decode('ascii')[-1] == '-': + raise IDNAError('A-label must not end with a hyphen') + else: + check_label(label_bytes) + return label_bytes.decode('ascii') + + try: + label = label_bytes.decode('punycode') + except UnicodeError: + raise IDNAError('Invalid A-label') + check_label(label) + return label + + +def uts46_remap(domain: str, std3_rules: bool = True, transitional: bool = False) -> str: + """Re-map the characters in the string according to UTS46 processing.""" + from .uts46data import uts46data + output = '' + + for pos, char in enumerate(domain): + code_point = ord(char) + try: + uts46row = uts46data[code_point if code_point < 256 else + bisect.bisect_left(uts46data, (code_point, 'Z')) - 1] + status = uts46row[1] + replacement = None # type: Optional[str] + if len(uts46row) == 3: + replacement = uts46row[2] # type: ignore + if (status == 'V' or + (status == 'D' and not transitional) or + (status == '3' and not std3_rules and replacement is None)): + output += char + elif replacement is not None and (status == 'M' or + (status == '3' and not std3_rules) or + (status == 'D' and transitional)): + output += replacement + elif status != 'I': + raise IndexError() + except IndexError: + raise InvalidCodepoint( + 'Codepoint {} not allowed at position {} in {}'.format( + _unot(code_point), pos + 1, repr(domain))) + + return unicodedata.normalize('NFC', output) + + +def encode(s: Union[str, bytes, bytearray], strict: bool = False, uts46: bool = False, std3_rules: bool = False, transitional: bool = False) -> bytes: + if isinstance(s, (bytes, bytearray)): + try: + s = s.decode('ascii') + except UnicodeDecodeError: + raise IDNAError('should pass a unicode string to the function rather than a byte string.') + if uts46: + s = uts46_remap(s, std3_rules, transitional) + trailing_dot = False + result = [] + if strict: + labels = s.split('.') + else: + labels = _unicode_dots_re.split(s) + if not labels or labels == ['']: + raise IDNAError('Empty domain') + if labels[-1] == '': + del labels[-1] + trailing_dot = True + for label in labels: + s = alabel(label) + if s: + result.append(s) + else: + raise IDNAError('Empty label') + if trailing_dot: + result.append(b'') + s = b'.'.join(result) + if not valid_string_length(s, trailing_dot): + raise IDNAError('Domain too long') + return s + + +def decode(s: Union[str, bytes, bytearray], strict: bool = False, uts46: bool = False, std3_rules: bool = False) -> str: + try: + if isinstance(s, (bytes, bytearray)): + s = s.decode('ascii') + except UnicodeDecodeError: + raise IDNAError('Invalid ASCII in A-label') + if uts46: + s = uts46_remap(s, std3_rules, False) + trailing_dot = False + result = [] + if not strict: + labels = _unicode_dots_re.split(s) + else: + labels = s.split('.') + if not labels or labels == ['']: + raise IDNAError('Empty domain') + if not labels[-1]: + del labels[-1] + trailing_dot = True + for label in labels: + s = ulabel(label) + if s: + result.append(s) + else: + raise IDNAError('Empty label') + if trailing_dot: + result.append('') + return '.'.join(result) diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/idna/idnadata.py b/.venv/lib/python3.11/site-packages/pip/_vendor/idna/idnadata.py new file mode 100644 index 0000000..67db462 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/idna/idnadata.py @@ -0,0 +1,2151 @@ +# This file is automatically generated by tools/idna-data + +__version__ = '15.0.0' +scripts = { + 'Greek': ( + 0x37000000374, + 0x37500000378, + 0x37a0000037e, + 0x37f00000380, + 0x38400000385, + 0x38600000387, + 0x3880000038b, + 0x38c0000038d, + 0x38e000003a2, + 0x3a3000003e2, + 0x3f000000400, + 0x1d2600001d2b, + 0x1d5d00001d62, + 0x1d6600001d6b, + 0x1dbf00001dc0, + 0x1f0000001f16, + 0x1f1800001f1e, + 0x1f2000001f46, + 0x1f4800001f4e, + 0x1f5000001f58, + 0x1f5900001f5a, + 0x1f5b00001f5c, + 0x1f5d00001f5e, + 0x1f5f00001f7e, + 0x1f8000001fb5, + 0x1fb600001fc5, + 0x1fc600001fd4, + 0x1fd600001fdc, + 0x1fdd00001ff0, + 0x1ff200001ff5, + 0x1ff600001fff, + 0x212600002127, + 0xab650000ab66, + 0x101400001018f, + 0x101a0000101a1, + 0x1d2000001d246, + ), + 'Han': ( + 0x2e8000002e9a, + 0x2e9b00002ef4, + 0x2f0000002fd6, + 0x300500003006, + 0x300700003008, + 0x30210000302a, + 0x30380000303c, + 0x340000004dc0, + 0x4e000000a000, + 0xf9000000fa6e, + 0xfa700000fada, + 0x16fe200016fe4, + 0x16ff000016ff2, + 0x200000002a6e0, + 0x2a7000002b73a, + 0x2b7400002b81e, + 0x2b8200002cea2, + 0x2ceb00002ebe1, + 0x2f8000002fa1e, + 0x300000003134b, + 0x31350000323b0, + ), + 'Hebrew': ( + 0x591000005c8, + 0x5d0000005eb, + 0x5ef000005f5, + 0xfb1d0000fb37, + 0xfb380000fb3d, + 0xfb3e0000fb3f, + 0xfb400000fb42, + 0xfb430000fb45, + 0xfb460000fb50, + ), + 'Hiragana': ( + 0x304100003097, + 0x309d000030a0, + 0x1b0010001b120, + 0x1b1320001b133, + 0x1b1500001b153, + 0x1f2000001f201, + ), + 'Katakana': ( + 0x30a1000030fb, + 0x30fd00003100, + 0x31f000003200, + 0x32d0000032ff, + 0x330000003358, + 0xff660000ff70, + 0xff710000ff9e, + 0x1aff00001aff4, + 0x1aff50001affc, + 0x1affd0001afff, + 0x1b0000001b001, + 0x1b1200001b123, + 0x1b1550001b156, + 0x1b1640001b168, + ), +} +joining_types = { + 0x600: 85, + 0x601: 85, + 0x602: 85, + 0x603: 85, + 0x604: 85, + 0x605: 85, + 0x608: 85, + 0x60b: 85, + 0x620: 68, + 0x621: 85, + 0x622: 82, + 0x623: 82, + 0x624: 82, + 0x625: 82, + 0x626: 68, + 0x627: 82, + 0x628: 68, + 0x629: 82, + 0x62a: 68, + 0x62b: 68, + 0x62c: 68, + 0x62d: 68, + 0x62e: 68, + 0x62f: 82, + 0x630: 82, + 0x631: 82, + 0x632: 82, + 0x633: 68, + 0x634: 68, + 0x635: 68, + 0x636: 68, + 0x637: 68, + 0x638: 68, + 0x639: 68, + 0x63a: 68, + 0x63b: 68, + 0x63c: 68, + 0x63d: 68, + 0x63e: 68, + 0x63f: 68, + 0x640: 67, + 0x641: 68, + 0x642: 68, + 0x643: 68, + 0x644: 68, + 0x645: 68, + 0x646: 68, + 0x647: 68, + 0x648: 82, + 0x649: 68, + 0x64a: 68, + 0x66e: 68, + 0x66f: 68, + 0x671: 82, + 0x672: 82, + 0x673: 82, + 0x674: 85, + 0x675: 82, + 0x676: 82, + 0x677: 82, + 0x678: 68, + 0x679: 68, + 0x67a: 68, + 0x67b: 68, + 0x67c: 68, + 0x67d: 68, + 0x67e: 68, + 0x67f: 68, + 0x680: 68, + 0x681: 68, + 0x682: 68, + 0x683: 68, + 0x684: 68, + 0x685: 68, + 0x686: 68, + 0x687: 68, + 0x688: 82, + 0x689: 82, + 0x68a: 82, + 0x68b: 82, + 0x68c: 82, + 0x68d: 82, + 0x68e: 82, + 0x68f: 82, + 0x690: 82, + 0x691: 82, + 0x692: 82, + 0x693: 82, + 0x694: 82, + 0x695: 82, + 0x696: 82, + 0x697: 82, + 0x698: 82, + 0x699: 82, + 0x69a: 68, + 0x69b: 68, + 0x69c: 68, + 0x69d: 68, + 0x69e: 68, + 0x69f: 68, + 0x6a0: 68, + 0x6a1: 68, + 0x6a2: 68, + 0x6a3: 68, + 0x6a4: 68, + 0x6a5: 68, + 0x6a6: 68, + 0x6a7: 68, + 0x6a8: 68, + 0x6a9: 68, + 0x6aa: 68, + 0x6ab: 68, + 0x6ac: 68, + 0x6ad: 68, + 0x6ae: 68, + 0x6af: 68, + 0x6b0: 68, + 0x6b1: 68, + 0x6b2: 68, + 0x6b3: 68, + 0x6b4: 68, + 0x6b5: 68, + 0x6b6: 68, + 0x6b7: 68, + 0x6b8: 68, + 0x6b9: 68, + 0x6ba: 68, + 0x6bb: 68, + 0x6bc: 68, + 0x6bd: 68, + 0x6be: 68, + 0x6bf: 68, + 0x6c0: 82, + 0x6c1: 68, + 0x6c2: 68, + 0x6c3: 82, + 0x6c4: 82, + 0x6c5: 82, + 0x6c6: 82, + 0x6c7: 82, + 0x6c8: 82, + 0x6c9: 82, + 0x6ca: 82, + 0x6cb: 82, + 0x6cc: 68, + 0x6cd: 82, + 0x6ce: 68, + 0x6cf: 82, + 0x6d0: 68, + 0x6d1: 68, + 0x6d2: 82, + 0x6d3: 82, + 0x6d5: 82, + 0x6dd: 85, + 0x6ee: 82, + 0x6ef: 82, + 0x6fa: 68, + 0x6fb: 68, + 0x6fc: 68, + 0x6ff: 68, + 0x70f: 84, + 0x710: 82, + 0x712: 68, + 0x713: 68, + 0x714: 68, + 0x715: 82, + 0x716: 82, + 0x717: 82, + 0x718: 82, + 0x719: 82, + 0x71a: 68, + 0x71b: 68, + 0x71c: 68, + 0x71d: 68, + 0x71e: 82, + 0x71f: 68, + 0x720: 68, + 0x721: 68, + 0x722: 68, + 0x723: 68, + 0x724: 68, + 0x725: 68, + 0x726: 68, + 0x727: 68, + 0x728: 82, + 0x729: 68, + 0x72a: 82, + 0x72b: 68, + 0x72c: 82, + 0x72d: 68, + 0x72e: 68, + 0x72f: 82, + 0x74d: 82, + 0x74e: 68, + 0x74f: 68, + 0x750: 68, + 0x751: 68, + 0x752: 68, + 0x753: 68, + 0x754: 68, + 0x755: 68, + 0x756: 68, + 0x757: 68, + 0x758: 68, + 0x759: 82, + 0x75a: 82, + 0x75b: 82, + 0x75c: 68, + 0x75d: 68, + 0x75e: 68, + 0x75f: 68, + 0x760: 68, + 0x761: 68, + 0x762: 68, + 0x763: 68, + 0x764: 68, + 0x765: 68, + 0x766: 68, + 0x767: 68, + 0x768: 68, + 0x769: 68, + 0x76a: 68, + 0x76b: 82, + 0x76c: 82, + 0x76d: 68, + 0x76e: 68, + 0x76f: 68, + 0x770: 68, + 0x771: 82, + 0x772: 68, + 0x773: 82, + 0x774: 82, + 0x775: 68, + 0x776: 68, + 0x777: 68, + 0x778: 82, + 0x779: 82, + 0x77a: 68, + 0x77b: 68, + 0x77c: 68, + 0x77d: 68, + 0x77e: 68, + 0x77f: 68, + 0x7ca: 68, + 0x7cb: 68, + 0x7cc: 68, + 0x7cd: 68, + 0x7ce: 68, + 0x7cf: 68, + 0x7d0: 68, + 0x7d1: 68, + 0x7d2: 68, + 0x7d3: 68, + 0x7d4: 68, + 0x7d5: 68, + 0x7d6: 68, + 0x7d7: 68, + 0x7d8: 68, + 0x7d9: 68, + 0x7da: 68, + 0x7db: 68, + 0x7dc: 68, + 0x7dd: 68, + 0x7de: 68, + 0x7df: 68, + 0x7e0: 68, + 0x7e1: 68, + 0x7e2: 68, + 0x7e3: 68, + 0x7e4: 68, + 0x7e5: 68, + 0x7e6: 68, + 0x7e7: 68, + 0x7e8: 68, + 0x7e9: 68, + 0x7ea: 68, + 0x7fa: 67, + 0x840: 82, + 0x841: 68, + 0x842: 68, + 0x843: 68, + 0x844: 68, + 0x845: 68, + 0x846: 82, + 0x847: 82, + 0x848: 68, + 0x849: 82, + 0x84a: 68, + 0x84b: 68, + 0x84c: 68, + 0x84d: 68, + 0x84e: 68, + 0x84f: 68, + 0x850: 68, + 0x851: 68, + 0x852: 68, + 0x853: 68, + 0x854: 82, + 0x855: 68, + 0x856: 82, + 0x857: 82, + 0x858: 82, + 0x860: 68, + 0x861: 85, + 0x862: 68, + 0x863: 68, + 0x864: 68, + 0x865: 68, + 0x866: 85, + 0x867: 82, + 0x868: 68, + 0x869: 82, + 0x86a: 82, + 0x870: 82, + 0x871: 82, + 0x872: 82, + 0x873: 82, + 0x874: 82, + 0x875: 82, + 0x876: 82, + 0x877: 82, + 0x878: 82, + 0x879: 82, + 0x87a: 82, + 0x87b: 82, + 0x87c: 82, + 0x87d: 82, + 0x87e: 82, + 0x87f: 82, + 0x880: 82, + 0x881: 82, + 0x882: 82, + 0x883: 67, + 0x884: 67, + 0x885: 67, + 0x886: 68, + 0x887: 85, + 0x888: 85, + 0x889: 68, + 0x88a: 68, + 0x88b: 68, + 0x88c: 68, + 0x88d: 68, + 0x88e: 82, + 0x890: 85, + 0x891: 85, + 0x8a0: 68, + 0x8a1: 68, + 0x8a2: 68, + 0x8a3: 68, + 0x8a4: 68, + 0x8a5: 68, + 0x8a6: 68, + 0x8a7: 68, + 0x8a8: 68, + 0x8a9: 68, + 0x8aa: 82, + 0x8ab: 82, + 0x8ac: 82, + 0x8ad: 85, + 0x8ae: 82, + 0x8af: 68, + 0x8b0: 68, + 0x8b1: 82, + 0x8b2: 82, + 0x8b3: 68, + 0x8b4: 68, + 0x8b5: 68, + 0x8b6: 68, + 0x8b7: 68, + 0x8b8: 68, + 0x8b9: 82, + 0x8ba: 68, + 0x8bb: 68, + 0x8bc: 68, + 0x8bd: 68, + 0x8be: 68, + 0x8bf: 68, + 0x8c0: 68, + 0x8c1: 68, + 0x8c2: 68, + 0x8c3: 68, + 0x8c4: 68, + 0x8c5: 68, + 0x8c6: 68, + 0x8c7: 68, + 0x8c8: 68, + 0x8e2: 85, + 0x1806: 85, + 0x1807: 68, + 0x180a: 67, + 0x180e: 85, + 0x1820: 68, + 0x1821: 68, + 0x1822: 68, + 0x1823: 68, + 0x1824: 68, + 0x1825: 68, + 0x1826: 68, + 0x1827: 68, + 0x1828: 68, + 0x1829: 68, + 0x182a: 68, + 0x182b: 68, + 0x182c: 68, + 0x182d: 68, + 0x182e: 68, + 0x182f: 68, + 0x1830: 68, + 0x1831: 68, + 0x1832: 68, + 0x1833: 68, + 0x1834: 68, + 0x1835: 68, + 0x1836: 68, + 0x1837: 68, + 0x1838: 68, + 0x1839: 68, + 0x183a: 68, + 0x183b: 68, + 0x183c: 68, + 0x183d: 68, + 0x183e: 68, + 0x183f: 68, + 0x1840: 68, + 0x1841: 68, + 0x1842: 68, + 0x1843: 68, + 0x1844: 68, + 0x1845: 68, + 0x1846: 68, + 0x1847: 68, + 0x1848: 68, + 0x1849: 68, + 0x184a: 68, + 0x184b: 68, + 0x184c: 68, + 0x184d: 68, + 0x184e: 68, + 0x184f: 68, + 0x1850: 68, + 0x1851: 68, + 0x1852: 68, + 0x1853: 68, + 0x1854: 68, + 0x1855: 68, + 0x1856: 68, + 0x1857: 68, + 0x1858: 68, + 0x1859: 68, + 0x185a: 68, + 0x185b: 68, + 0x185c: 68, + 0x185d: 68, + 0x185e: 68, + 0x185f: 68, + 0x1860: 68, + 0x1861: 68, + 0x1862: 68, + 0x1863: 68, + 0x1864: 68, + 0x1865: 68, + 0x1866: 68, + 0x1867: 68, + 0x1868: 68, + 0x1869: 68, + 0x186a: 68, + 0x186b: 68, + 0x186c: 68, + 0x186d: 68, + 0x186e: 68, + 0x186f: 68, + 0x1870: 68, + 0x1871: 68, + 0x1872: 68, + 0x1873: 68, + 0x1874: 68, + 0x1875: 68, + 0x1876: 68, + 0x1877: 68, + 0x1878: 68, + 0x1880: 85, + 0x1881: 85, + 0x1882: 85, + 0x1883: 85, + 0x1884: 85, + 0x1885: 84, + 0x1886: 84, + 0x1887: 68, + 0x1888: 68, + 0x1889: 68, + 0x188a: 68, + 0x188b: 68, + 0x188c: 68, + 0x188d: 68, + 0x188e: 68, + 0x188f: 68, + 0x1890: 68, + 0x1891: 68, + 0x1892: 68, + 0x1893: 68, + 0x1894: 68, + 0x1895: 68, + 0x1896: 68, + 0x1897: 68, + 0x1898: 68, + 0x1899: 68, + 0x189a: 68, + 0x189b: 68, + 0x189c: 68, + 0x189d: 68, + 0x189e: 68, + 0x189f: 68, + 0x18a0: 68, + 0x18a1: 68, + 0x18a2: 68, + 0x18a3: 68, + 0x18a4: 68, + 0x18a5: 68, + 0x18a6: 68, + 0x18a7: 68, + 0x18a8: 68, + 0x18aa: 68, + 0x200c: 85, + 0x200d: 67, + 0x202f: 85, + 0x2066: 85, + 0x2067: 85, + 0x2068: 85, + 0x2069: 85, + 0xa840: 68, + 0xa841: 68, + 0xa842: 68, + 0xa843: 68, + 0xa844: 68, + 0xa845: 68, + 0xa846: 68, + 0xa847: 68, + 0xa848: 68, + 0xa849: 68, + 0xa84a: 68, + 0xa84b: 68, + 0xa84c: 68, + 0xa84d: 68, + 0xa84e: 68, + 0xa84f: 68, + 0xa850: 68, + 0xa851: 68, + 0xa852: 68, + 0xa853: 68, + 0xa854: 68, + 0xa855: 68, + 0xa856: 68, + 0xa857: 68, + 0xa858: 68, + 0xa859: 68, + 0xa85a: 68, + 0xa85b: 68, + 0xa85c: 68, + 0xa85d: 68, + 0xa85e: 68, + 0xa85f: 68, + 0xa860: 68, + 0xa861: 68, + 0xa862: 68, + 0xa863: 68, + 0xa864: 68, + 0xa865: 68, + 0xa866: 68, + 0xa867: 68, + 0xa868: 68, + 0xa869: 68, + 0xa86a: 68, + 0xa86b: 68, + 0xa86c: 68, + 0xa86d: 68, + 0xa86e: 68, + 0xa86f: 68, + 0xa870: 68, + 0xa871: 68, + 0xa872: 76, + 0xa873: 85, + 0x10ac0: 68, + 0x10ac1: 68, + 0x10ac2: 68, + 0x10ac3: 68, + 0x10ac4: 68, + 0x10ac5: 82, + 0x10ac6: 85, + 0x10ac7: 82, + 0x10ac8: 85, + 0x10ac9: 82, + 0x10aca: 82, + 0x10acb: 85, + 0x10acc: 85, + 0x10acd: 76, + 0x10ace: 82, + 0x10acf: 82, + 0x10ad0: 82, + 0x10ad1: 82, + 0x10ad2: 82, + 0x10ad3: 68, + 0x10ad4: 68, + 0x10ad5: 68, + 0x10ad6: 68, + 0x10ad7: 76, + 0x10ad8: 68, + 0x10ad9: 68, + 0x10ada: 68, + 0x10adb: 68, + 0x10adc: 68, + 0x10add: 82, + 0x10ade: 68, + 0x10adf: 68, + 0x10ae0: 68, + 0x10ae1: 82, + 0x10ae2: 85, + 0x10ae3: 85, + 0x10ae4: 82, + 0x10aeb: 68, + 0x10aec: 68, + 0x10aed: 68, + 0x10aee: 68, + 0x10aef: 82, + 0x10b80: 68, + 0x10b81: 82, + 0x10b82: 68, + 0x10b83: 82, + 0x10b84: 82, + 0x10b85: 82, + 0x10b86: 68, + 0x10b87: 68, + 0x10b88: 68, + 0x10b89: 82, + 0x10b8a: 68, + 0x10b8b: 68, + 0x10b8c: 82, + 0x10b8d: 68, + 0x10b8e: 82, + 0x10b8f: 82, + 0x10b90: 68, + 0x10b91: 82, + 0x10ba9: 82, + 0x10baa: 82, + 0x10bab: 82, + 0x10bac: 82, + 0x10bad: 68, + 0x10bae: 68, + 0x10baf: 85, + 0x10d00: 76, + 0x10d01: 68, + 0x10d02: 68, + 0x10d03: 68, + 0x10d04: 68, + 0x10d05: 68, + 0x10d06: 68, + 0x10d07: 68, + 0x10d08: 68, + 0x10d09: 68, + 0x10d0a: 68, + 0x10d0b: 68, + 0x10d0c: 68, + 0x10d0d: 68, + 0x10d0e: 68, + 0x10d0f: 68, + 0x10d10: 68, + 0x10d11: 68, + 0x10d12: 68, + 0x10d13: 68, + 0x10d14: 68, + 0x10d15: 68, + 0x10d16: 68, + 0x10d17: 68, + 0x10d18: 68, + 0x10d19: 68, + 0x10d1a: 68, + 0x10d1b: 68, + 0x10d1c: 68, + 0x10d1d: 68, + 0x10d1e: 68, + 0x10d1f: 68, + 0x10d20: 68, + 0x10d21: 68, + 0x10d22: 82, + 0x10d23: 68, + 0x10f30: 68, + 0x10f31: 68, + 0x10f32: 68, + 0x10f33: 82, + 0x10f34: 68, + 0x10f35: 68, + 0x10f36: 68, + 0x10f37: 68, + 0x10f38: 68, + 0x10f39: 68, + 0x10f3a: 68, + 0x10f3b: 68, + 0x10f3c: 68, + 0x10f3d: 68, + 0x10f3e: 68, + 0x10f3f: 68, + 0x10f40: 68, + 0x10f41: 68, + 0x10f42: 68, + 0x10f43: 68, + 0x10f44: 68, + 0x10f45: 85, + 0x10f51: 68, + 0x10f52: 68, + 0x10f53: 68, + 0x10f54: 82, + 0x10f70: 68, + 0x10f71: 68, + 0x10f72: 68, + 0x10f73: 68, + 0x10f74: 82, + 0x10f75: 82, + 0x10f76: 68, + 0x10f77: 68, + 0x10f78: 68, + 0x10f79: 68, + 0x10f7a: 68, + 0x10f7b: 68, + 0x10f7c: 68, + 0x10f7d: 68, + 0x10f7e: 68, + 0x10f7f: 68, + 0x10f80: 68, + 0x10f81: 68, + 0x10fb0: 68, + 0x10fb1: 85, + 0x10fb2: 68, + 0x10fb3: 68, + 0x10fb4: 82, + 0x10fb5: 82, + 0x10fb6: 82, + 0x10fb7: 85, + 0x10fb8: 68, + 0x10fb9: 82, + 0x10fba: 82, + 0x10fbb: 68, + 0x10fbc: 68, + 0x10fbd: 82, + 0x10fbe: 68, + 0x10fbf: 68, + 0x10fc0: 85, + 0x10fc1: 68, + 0x10fc2: 82, + 0x10fc3: 82, + 0x10fc4: 68, + 0x10fc5: 85, + 0x10fc6: 85, + 0x10fc7: 85, + 0x10fc8: 85, + 0x10fc9: 82, + 0x10fca: 68, + 0x10fcb: 76, + 0x110bd: 85, + 0x110cd: 85, + 0x1e900: 68, + 0x1e901: 68, + 0x1e902: 68, + 0x1e903: 68, + 0x1e904: 68, + 0x1e905: 68, + 0x1e906: 68, + 0x1e907: 68, + 0x1e908: 68, + 0x1e909: 68, + 0x1e90a: 68, + 0x1e90b: 68, + 0x1e90c: 68, + 0x1e90d: 68, + 0x1e90e: 68, + 0x1e90f: 68, + 0x1e910: 68, + 0x1e911: 68, + 0x1e912: 68, + 0x1e913: 68, + 0x1e914: 68, + 0x1e915: 68, + 0x1e916: 68, + 0x1e917: 68, + 0x1e918: 68, + 0x1e919: 68, + 0x1e91a: 68, + 0x1e91b: 68, + 0x1e91c: 68, + 0x1e91d: 68, + 0x1e91e: 68, + 0x1e91f: 68, + 0x1e920: 68, + 0x1e921: 68, + 0x1e922: 68, + 0x1e923: 68, + 0x1e924: 68, + 0x1e925: 68, + 0x1e926: 68, + 0x1e927: 68, + 0x1e928: 68, + 0x1e929: 68, + 0x1e92a: 68, + 0x1e92b: 68, + 0x1e92c: 68, + 0x1e92d: 68, + 0x1e92e: 68, + 0x1e92f: 68, + 0x1e930: 68, + 0x1e931: 68, + 0x1e932: 68, + 0x1e933: 68, + 0x1e934: 68, + 0x1e935: 68, + 0x1e936: 68, + 0x1e937: 68, + 0x1e938: 68, + 0x1e939: 68, + 0x1e93a: 68, + 0x1e93b: 68, + 0x1e93c: 68, + 0x1e93d: 68, + 0x1e93e: 68, + 0x1e93f: 68, + 0x1e940: 68, + 0x1e941: 68, + 0x1e942: 68, + 0x1e943: 68, + 0x1e94b: 84, +} +codepoint_classes = { + 'PVALID': ( + 0x2d0000002e, + 0x300000003a, + 0x610000007b, + 0xdf000000f7, + 0xf800000100, + 0x10100000102, + 0x10300000104, + 0x10500000106, + 0x10700000108, + 0x1090000010a, + 0x10b0000010c, + 0x10d0000010e, + 0x10f00000110, + 0x11100000112, + 0x11300000114, + 0x11500000116, + 0x11700000118, + 0x1190000011a, + 0x11b0000011c, + 0x11d0000011e, + 0x11f00000120, + 0x12100000122, + 0x12300000124, + 0x12500000126, + 0x12700000128, + 0x1290000012a, + 0x12b0000012c, + 0x12d0000012e, + 0x12f00000130, + 0x13100000132, + 0x13500000136, + 0x13700000139, + 0x13a0000013b, + 0x13c0000013d, + 0x13e0000013f, + 0x14200000143, + 0x14400000145, + 0x14600000147, + 0x14800000149, + 0x14b0000014c, + 0x14d0000014e, + 0x14f00000150, + 0x15100000152, + 0x15300000154, + 0x15500000156, + 0x15700000158, + 0x1590000015a, + 0x15b0000015c, + 0x15d0000015e, + 0x15f00000160, + 0x16100000162, + 0x16300000164, + 0x16500000166, + 0x16700000168, + 0x1690000016a, + 0x16b0000016c, + 0x16d0000016e, + 0x16f00000170, + 0x17100000172, + 0x17300000174, + 0x17500000176, + 0x17700000178, + 0x17a0000017b, + 0x17c0000017d, + 0x17e0000017f, + 0x18000000181, + 0x18300000184, + 0x18500000186, + 0x18800000189, + 0x18c0000018e, + 0x19200000193, + 0x19500000196, + 0x1990000019c, + 0x19e0000019f, + 0x1a1000001a2, + 0x1a3000001a4, + 0x1a5000001a6, + 0x1a8000001a9, + 0x1aa000001ac, + 0x1ad000001ae, + 0x1b0000001b1, + 0x1b4000001b5, + 0x1b6000001b7, + 0x1b9000001bc, + 0x1bd000001c4, + 0x1ce000001cf, + 0x1d0000001d1, + 0x1d2000001d3, + 0x1d4000001d5, + 0x1d6000001d7, + 0x1d8000001d9, + 0x1da000001db, + 0x1dc000001de, + 0x1df000001e0, + 0x1e1000001e2, + 0x1e3000001e4, + 0x1e5000001e6, + 0x1e7000001e8, + 0x1e9000001ea, + 0x1eb000001ec, + 0x1ed000001ee, + 0x1ef000001f1, + 0x1f5000001f6, + 0x1f9000001fa, + 0x1fb000001fc, + 0x1fd000001fe, + 0x1ff00000200, + 0x20100000202, + 0x20300000204, + 0x20500000206, + 0x20700000208, + 0x2090000020a, + 0x20b0000020c, + 0x20d0000020e, + 0x20f00000210, + 0x21100000212, + 0x21300000214, + 0x21500000216, + 0x21700000218, + 0x2190000021a, + 0x21b0000021c, + 0x21d0000021e, + 0x21f00000220, + 0x22100000222, + 0x22300000224, + 0x22500000226, + 0x22700000228, + 0x2290000022a, + 0x22b0000022c, + 0x22d0000022e, + 0x22f00000230, + 0x23100000232, + 0x2330000023a, + 0x23c0000023d, + 0x23f00000241, + 0x24200000243, + 0x24700000248, + 0x2490000024a, + 0x24b0000024c, + 0x24d0000024e, + 0x24f000002b0, + 0x2b9000002c2, + 0x2c6000002d2, + 0x2ec000002ed, + 0x2ee000002ef, + 0x30000000340, + 0x34200000343, + 0x3460000034f, + 0x35000000370, + 0x37100000372, + 0x37300000374, + 0x37700000378, + 0x37b0000037e, + 0x39000000391, + 0x3ac000003cf, + 0x3d7000003d8, + 0x3d9000003da, + 0x3db000003dc, + 0x3dd000003de, + 0x3df000003e0, + 0x3e1000003e2, + 0x3e3000003e4, + 0x3e5000003e6, + 0x3e7000003e8, + 0x3e9000003ea, + 0x3eb000003ec, + 0x3ed000003ee, + 0x3ef000003f0, + 0x3f3000003f4, + 0x3f8000003f9, + 0x3fb000003fd, + 0x43000000460, + 0x46100000462, + 0x46300000464, + 0x46500000466, + 0x46700000468, + 0x4690000046a, + 0x46b0000046c, + 0x46d0000046e, + 0x46f00000470, + 0x47100000472, + 0x47300000474, + 0x47500000476, + 0x47700000478, + 0x4790000047a, + 0x47b0000047c, + 0x47d0000047e, + 0x47f00000480, + 0x48100000482, + 0x48300000488, + 0x48b0000048c, + 0x48d0000048e, + 0x48f00000490, + 0x49100000492, + 0x49300000494, + 0x49500000496, + 0x49700000498, + 0x4990000049a, + 0x49b0000049c, + 0x49d0000049e, + 0x49f000004a0, + 0x4a1000004a2, + 0x4a3000004a4, + 0x4a5000004a6, + 0x4a7000004a8, + 0x4a9000004aa, + 0x4ab000004ac, + 0x4ad000004ae, + 0x4af000004b0, + 0x4b1000004b2, + 0x4b3000004b4, + 0x4b5000004b6, + 0x4b7000004b8, + 0x4b9000004ba, + 0x4bb000004bc, + 0x4bd000004be, + 0x4bf000004c0, + 0x4c2000004c3, + 0x4c4000004c5, + 0x4c6000004c7, + 0x4c8000004c9, + 0x4ca000004cb, + 0x4cc000004cd, + 0x4ce000004d0, + 0x4d1000004d2, + 0x4d3000004d4, + 0x4d5000004d6, + 0x4d7000004d8, + 0x4d9000004da, + 0x4db000004dc, + 0x4dd000004de, + 0x4df000004e0, + 0x4e1000004e2, + 0x4e3000004e4, + 0x4e5000004e6, + 0x4e7000004e8, + 0x4e9000004ea, + 0x4eb000004ec, + 0x4ed000004ee, + 0x4ef000004f0, + 0x4f1000004f2, + 0x4f3000004f4, + 0x4f5000004f6, + 0x4f7000004f8, + 0x4f9000004fa, + 0x4fb000004fc, + 0x4fd000004fe, + 0x4ff00000500, + 0x50100000502, + 0x50300000504, + 0x50500000506, + 0x50700000508, + 0x5090000050a, + 0x50b0000050c, + 0x50d0000050e, + 0x50f00000510, + 0x51100000512, + 0x51300000514, + 0x51500000516, + 0x51700000518, + 0x5190000051a, + 0x51b0000051c, + 0x51d0000051e, + 0x51f00000520, + 0x52100000522, + 0x52300000524, + 0x52500000526, + 0x52700000528, + 0x5290000052a, + 0x52b0000052c, + 0x52d0000052e, + 0x52f00000530, + 0x5590000055a, + 0x56000000587, + 0x58800000589, + 0x591000005be, + 0x5bf000005c0, + 0x5c1000005c3, + 0x5c4000005c6, + 0x5c7000005c8, + 0x5d0000005eb, + 0x5ef000005f3, + 0x6100000061b, + 0x62000000640, + 0x64100000660, + 0x66e00000675, + 0x679000006d4, + 0x6d5000006dd, + 0x6df000006e9, + 0x6ea000006f0, + 0x6fa00000700, + 0x7100000074b, + 0x74d000007b2, + 0x7c0000007f6, + 0x7fd000007fe, + 0x8000000082e, + 0x8400000085c, + 0x8600000086b, + 0x87000000888, + 0x8890000088f, + 0x898000008e2, + 0x8e300000958, + 0x96000000964, + 0x96600000970, + 0x97100000984, + 0x9850000098d, + 0x98f00000991, + 0x993000009a9, + 0x9aa000009b1, + 0x9b2000009b3, + 0x9b6000009ba, + 0x9bc000009c5, + 0x9c7000009c9, + 0x9cb000009cf, + 0x9d7000009d8, + 0x9e0000009e4, + 0x9e6000009f2, + 0x9fc000009fd, + 0x9fe000009ff, + 0xa0100000a04, + 0xa0500000a0b, + 0xa0f00000a11, + 0xa1300000a29, + 0xa2a00000a31, + 0xa3200000a33, + 0xa3500000a36, + 0xa3800000a3a, + 0xa3c00000a3d, + 0xa3e00000a43, + 0xa4700000a49, + 0xa4b00000a4e, + 0xa5100000a52, + 0xa5c00000a5d, + 0xa6600000a76, + 0xa8100000a84, + 0xa8500000a8e, + 0xa8f00000a92, + 0xa9300000aa9, + 0xaaa00000ab1, + 0xab200000ab4, + 0xab500000aba, + 0xabc00000ac6, + 0xac700000aca, + 0xacb00000ace, + 0xad000000ad1, + 0xae000000ae4, + 0xae600000af0, + 0xaf900000b00, + 0xb0100000b04, + 0xb0500000b0d, + 0xb0f00000b11, + 0xb1300000b29, + 0xb2a00000b31, + 0xb3200000b34, + 0xb3500000b3a, + 0xb3c00000b45, + 0xb4700000b49, + 0xb4b00000b4e, + 0xb5500000b58, + 0xb5f00000b64, + 0xb6600000b70, + 0xb7100000b72, + 0xb8200000b84, + 0xb8500000b8b, + 0xb8e00000b91, + 0xb9200000b96, + 0xb9900000b9b, + 0xb9c00000b9d, + 0xb9e00000ba0, + 0xba300000ba5, + 0xba800000bab, + 0xbae00000bba, + 0xbbe00000bc3, + 0xbc600000bc9, + 0xbca00000bce, + 0xbd000000bd1, + 0xbd700000bd8, + 0xbe600000bf0, + 0xc0000000c0d, + 0xc0e00000c11, + 0xc1200000c29, + 0xc2a00000c3a, + 0xc3c00000c45, + 0xc4600000c49, + 0xc4a00000c4e, + 0xc5500000c57, + 0xc5800000c5b, + 0xc5d00000c5e, + 0xc6000000c64, + 0xc6600000c70, + 0xc8000000c84, + 0xc8500000c8d, + 0xc8e00000c91, + 0xc9200000ca9, + 0xcaa00000cb4, + 0xcb500000cba, + 0xcbc00000cc5, + 0xcc600000cc9, + 0xcca00000cce, + 0xcd500000cd7, + 0xcdd00000cdf, + 0xce000000ce4, + 0xce600000cf0, + 0xcf100000cf4, + 0xd0000000d0d, + 0xd0e00000d11, + 0xd1200000d45, + 0xd4600000d49, + 0xd4a00000d4f, + 0xd5400000d58, + 0xd5f00000d64, + 0xd6600000d70, + 0xd7a00000d80, + 0xd8100000d84, + 0xd8500000d97, + 0xd9a00000db2, + 0xdb300000dbc, + 0xdbd00000dbe, + 0xdc000000dc7, + 0xdca00000dcb, + 0xdcf00000dd5, + 0xdd600000dd7, + 0xdd800000de0, + 0xde600000df0, + 0xdf200000df4, + 0xe0100000e33, + 0xe3400000e3b, + 0xe4000000e4f, + 0xe5000000e5a, + 0xe8100000e83, + 0xe8400000e85, + 0xe8600000e8b, + 0xe8c00000ea4, + 0xea500000ea6, + 0xea700000eb3, + 0xeb400000ebe, + 0xec000000ec5, + 0xec600000ec7, + 0xec800000ecf, + 0xed000000eda, + 0xede00000ee0, + 0xf0000000f01, + 0xf0b00000f0c, + 0xf1800000f1a, + 0xf2000000f2a, + 0xf3500000f36, + 0xf3700000f38, + 0xf3900000f3a, + 0xf3e00000f43, + 0xf4400000f48, + 0xf4900000f4d, + 0xf4e00000f52, + 0xf5300000f57, + 0xf5800000f5c, + 0xf5d00000f69, + 0xf6a00000f6d, + 0xf7100000f73, + 0xf7400000f75, + 0xf7a00000f81, + 0xf8200000f85, + 0xf8600000f93, + 0xf9400000f98, + 0xf9900000f9d, + 0xf9e00000fa2, + 0xfa300000fa7, + 0xfa800000fac, + 0xfad00000fb9, + 0xfba00000fbd, + 0xfc600000fc7, + 0x10000000104a, + 0x10500000109e, + 0x10d0000010fb, + 0x10fd00001100, + 0x120000001249, + 0x124a0000124e, + 0x125000001257, + 0x125800001259, + 0x125a0000125e, + 0x126000001289, + 0x128a0000128e, + 0x1290000012b1, + 0x12b2000012b6, + 0x12b8000012bf, + 0x12c0000012c1, + 0x12c2000012c6, + 0x12c8000012d7, + 0x12d800001311, + 0x131200001316, + 0x13180000135b, + 0x135d00001360, + 0x138000001390, + 0x13a0000013f6, + 0x14010000166d, + 0x166f00001680, + 0x16810000169b, + 0x16a0000016eb, + 0x16f1000016f9, + 0x170000001716, + 0x171f00001735, + 0x174000001754, + 0x17600000176d, + 0x176e00001771, + 0x177200001774, + 0x1780000017b4, + 0x17b6000017d4, + 0x17d7000017d8, + 0x17dc000017de, + 0x17e0000017ea, + 0x18100000181a, + 0x182000001879, + 0x1880000018ab, + 0x18b0000018f6, + 0x19000000191f, + 0x19200000192c, + 0x19300000193c, + 0x19460000196e, + 0x197000001975, + 0x1980000019ac, + 0x19b0000019ca, + 0x19d0000019da, + 0x1a0000001a1c, + 0x1a2000001a5f, + 0x1a6000001a7d, + 0x1a7f00001a8a, + 0x1a9000001a9a, + 0x1aa700001aa8, + 0x1ab000001abe, + 0x1abf00001acf, + 0x1b0000001b4d, + 0x1b5000001b5a, + 0x1b6b00001b74, + 0x1b8000001bf4, + 0x1c0000001c38, + 0x1c4000001c4a, + 0x1c4d00001c7e, + 0x1cd000001cd3, + 0x1cd400001cfb, + 0x1d0000001d2c, + 0x1d2f00001d30, + 0x1d3b00001d3c, + 0x1d4e00001d4f, + 0x1d6b00001d78, + 0x1d7900001d9b, + 0x1dc000001e00, + 0x1e0100001e02, + 0x1e0300001e04, + 0x1e0500001e06, + 0x1e0700001e08, + 0x1e0900001e0a, + 0x1e0b00001e0c, + 0x1e0d00001e0e, + 0x1e0f00001e10, + 0x1e1100001e12, + 0x1e1300001e14, + 0x1e1500001e16, + 0x1e1700001e18, + 0x1e1900001e1a, + 0x1e1b00001e1c, + 0x1e1d00001e1e, + 0x1e1f00001e20, + 0x1e2100001e22, + 0x1e2300001e24, + 0x1e2500001e26, + 0x1e2700001e28, + 0x1e2900001e2a, + 0x1e2b00001e2c, + 0x1e2d00001e2e, + 0x1e2f00001e30, + 0x1e3100001e32, + 0x1e3300001e34, + 0x1e3500001e36, + 0x1e3700001e38, + 0x1e3900001e3a, + 0x1e3b00001e3c, + 0x1e3d00001e3e, + 0x1e3f00001e40, + 0x1e4100001e42, + 0x1e4300001e44, + 0x1e4500001e46, + 0x1e4700001e48, + 0x1e4900001e4a, + 0x1e4b00001e4c, + 0x1e4d00001e4e, + 0x1e4f00001e50, + 0x1e5100001e52, + 0x1e5300001e54, + 0x1e5500001e56, + 0x1e5700001e58, + 0x1e5900001e5a, + 0x1e5b00001e5c, + 0x1e5d00001e5e, + 0x1e5f00001e60, + 0x1e6100001e62, + 0x1e6300001e64, + 0x1e6500001e66, + 0x1e6700001e68, + 0x1e6900001e6a, + 0x1e6b00001e6c, + 0x1e6d00001e6e, + 0x1e6f00001e70, + 0x1e7100001e72, + 0x1e7300001e74, + 0x1e7500001e76, + 0x1e7700001e78, + 0x1e7900001e7a, + 0x1e7b00001e7c, + 0x1e7d00001e7e, + 0x1e7f00001e80, + 0x1e8100001e82, + 0x1e8300001e84, + 0x1e8500001e86, + 0x1e8700001e88, + 0x1e8900001e8a, + 0x1e8b00001e8c, + 0x1e8d00001e8e, + 0x1e8f00001e90, + 0x1e9100001e92, + 0x1e9300001e94, + 0x1e9500001e9a, + 0x1e9c00001e9e, + 0x1e9f00001ea0, + 0x1ea100001ea2, + 0x1ea300001ea4, + 0x1ea500001ea6, + 0x1ea700001ea8, + 0x1ea900001eaa, + 0x1eab00001eac, + 0x1ead00001eae, + 0x1eaf00001eb0, + 0x1eb100001eb2, + 0x1eb300001eb4, + 0x1eb500001eb6, + 0x1eb700001eb8, + 0x1eb900001eba, + 0x1ebb00001ebc, + 0x1ebd00001ebe, + 0x1ebf00001ec0, + 0x1ec100001ec2, + 0x1ec300001ec4, + 0x1ec500001ec6, + 0x1ec700001ec8, + 0x1ec900001eca, + 0x1ecb00001ecc, + 0x1ecd00001ece, + 0x1ecf00001ed0, + 0x1ed100001ed2, + 0x1ed300001ed4, + 0x1ed500001ed6, + 0x1ed700001ed8, + 0x1ed900001eda, + 0x1edb00001edc, + 0x1edd00001ede, + 0x1edf00001ee0, + 0x1ee100001ee2, + 0x1ee300001ee4, + 0x1ee500001ee6, + 0x1ee700001ee8, + 0x1ee900001eea, + 0x1eeb00001eec, + 0x1eed00001eee, + 0x1eef00001ef0, + 0x1ef100001ef2, + 0x1ef300001ef4, + 0x1ef500001ef6, + 0x1ef700001ef8, + 0x1ef900001efa, + 0x1efb00001efc, + 0x1efd00001efe, + 0x1eff00001f08, + 0x1f1000001f16, + 0x1f2000001f28, + 0x1f3000001f38, + 0x1f4000001f46, + 0x1f5000001f58, + 0x1f6000001f68, + 0x1f7000001f71, + 0x1f7200001f73, + 0x1f7400001f75, + 0x1f7600001f77, + 0x1f7800001f79, + 0x1f7a00001f7b, + 0x1f7c00001f7d, + 0x1fb000001fb2, + 0x1fb600001fb7, + 0x1fc600001fc7, + 0x1fd000001fd3, + 0x1fd600001fd8, + 0x1fe000001fe3, + 0x1fe400001fe8, + 0x1ff600001ff7, + 0x214e0000214f, + 0x218400002185, + 0x2c3000002c60, + 0x2c6100002c62, + 0x2c6500002c67, + 0x2c6800002c69, + 0x2c6a00002c6b, + 0x2c6c00002c6d, + 0x2c7100002c72, + 0x2c7300002c75, + 0x2c7600002c7c, + 0x2c8100002c82, + 0x2c8300002c84, + 0x2c8500002c86, + 0x2c8700002c88, + 0x2c8900002c8a, + 0x2c8b00002c8c, + 0x2c8d00002c8e, + 0x2c8f00002c90, + 0x2c9100002c92, + 0x2c9300002c94, + 0x2c9500002c96, + 0x2c9700002c98, + 0x2c9900002c9a, + 0x2c9b00002c9c, + 0x2c9d00002c9e, + 0x2c9f00002ca0, + 0x2ca100002ca2, + 0x2ca300002ca4, + 0x2ca500002ca6, + 0x2ca700002ca8, + 0x2ca900002caa, + 0x2cab00002cac, + 0x2cad00002cae, + 0x2caf00002cb0, + 0x2cb100002cb2, + 0x2cb300002cb4, + 0x2cb500002cb6, + 0x2cb700002cb8, + 0x2cb900002cba, + 0x2cbb00002cbc, + 0x2cbd00002cbe, + 0x2cbf00002cc0, + 0x2cc100002cc2, + 0x2cc300002cc4, + 0x2cc500002cc6, + 0x2cc700002cc8, + 0x2cc900002cca, + 0x2ccb00002ccc, + 0x2ccd00002cce, + 0x2ccf00002cd0, + 0x2cd100002cd2, + 0x2cd300002cd4, + 0x2cd500002cd6, + 0x2cd700002cd8, + 0x2cd900002cda, + 0x2cdb00002cdc, + 0x2cdd00002cde, + 0x2cdf00002ce0, + 0x2ce100002ce2, + 0x2ce300002ce5, + 0x2cec00002ced, + 0x2cee00002cf2, + 0x2cf300002cf4, + 0x2d0000002d26, + 0x2d2700002d28, + 0x2d2d00002d2e, + 0x2d3000002d68, + 0x2d7f00002d97, + 0x2da000002da7, + 0x2da800002daf, + 0x2db000002db7, + 0x2db800002dbf, + 0x2dc000002dc7, + 0x2dc800002dcf, + 0x2dd000002dd7, + 0x2dd800002ddf, + 0x2de000002e00, + 0x2e2f00002e30, + 0x300500003008, + 0x302a0000302e, + 0x303c0000303d, + 0x304100003097, + 0x30990000309b, + 0x309d0000309f, + 0x30a1000030fb, + 0x30fc000030ff, + 0x310500003130, + 0x31a0000031c0, + 0x31f000003200, + 0x340000004dc0, + 0x4e000000a48d, + 0xa4d00000a4fe, + 0xa5000000a60d, + 0xa6100000a62c, + 0xa6410000a642, + 0xa6430000a644, + 0xa6450000a646, + 0xa6470000a648, + 0xa6490000a64a, + 0xa64b0000a64c, + 0xa64d0000a64e, + 0xa64f0000a650, + 0xa6510000a652, + 0xa6530000a654, + 0xa6550000a656, + 0xa6570000a658, + 0xa6590000a65a, + 0xa65b0000a65c, + 0xa65d0000a65e, + 0xa65f0000a660, + 0xa6610000a662, + 0xa6630000a664, + 0xa6650000a666, + 0xa6670000a668, + 0xa6690000a66a, + 0xa66b0000a66c, + 0xa66d0000a670, + 0xa6740000a67e, + 0xa67f0000a680, + 0xa6810000a682, + 0xa6830000a684, + 0xa6850000a686, + 0xa6870000a688, + 0xa6890000a68a, + 0xa68b0000a68c, + 0xa68d0000a68e, + 0xa68f0000a690, + 0xa6910000a692, + 0xa6930000a694, + 0xa6950000a696, + 0xa6970000a698, + 0xa6990000a69a, + 0xa69b0000a69c, + 0xa69e0000a6e6, + 0xa6f00000a6f2, + 0xa7170000a720, + 0xa7230000a724, + 0xa7250000a726, + 0xa7270000a728, + 0xa7290000a72a, + 0xa72b0000a72c, + 0xa72d0000a72e, + 0xa72f0000a732, + 0xa7330000a734, + 0xa7350000a736, + 0xa7370000a738, + 0xa7390000a73a, + 0xa73b0000a73c, + 0xa73d0000a73e, + 0xa73f0000a740, + 0xa7410000a742, + 0xa7430000a744, + 0xa7450000a746, + 0xa7470000a748, + 0xa7490000a74a, + 0xa74b0000a74c, + 0xa74d0000a74e, + 0xa74f0000a750, + 0xa7510000a752, + 0xa7530000a754, + 0xa7550000a756, + 0xa7570000a758, + 0xa7590000a75a, + 0xa75b0000a75c, + 0xa75d0000a75e, + 0xa75f0000a760, + 0xa7610000a762, + 0xa7630000a764, + 0xa7650000a766, + 0xa7670000a768, + 0xa7690000a76a, + 0xa76b0000a76c, + 0xa76d0000a76e, + 0xa76f0000a770, + 0xa7710000a779, + 0xa77a0000a77b, + 0xa77c0000a77d, + 0xa77f0000a780, + 0xa7810000a782, + 0xa7830000a784, + 0xa7850000a786, + 0xa7870000a789, + 0xa78c0000a78d, + 0xa78e0000a790, + 0xa7910000a792, + 0xa7930000a796, + 0xa7970000a798, + 0xa7990000a79a, + 0xa79b0000a79c, + 0xa79d0000a79e, + 0xa79f0000a7a0, + 0xa7a10000a7a2, + 0xa7a30000a7a4, + 0xa7a50000a7a6, + 0xa7a70000a7a8, + 0xa7a90000a7aa, + 0xa7af0000a7b0, + 0xa7b50000a7b6, + 0xa7b70000a7b8, + 0xa7b90000a7ba, + 0xa7bb0000a7bc, + 0xa7bd0000a7be, + 0xa7bf0000a7c0, + 0xa7c10000a7c2, + 0xa7c30000a7c4, + 0xa7c80000a7c9, + 0xa7ca0000a7cb, + 0xa7d10000a7d2, + 0xa7d30000a7d4, + 0xa7d50000a7d6, + 0xa7d70000a7d8, + 0xa7d90000a7da, + 0xa7f20000a7f5, + 0xa7f60000a7f8, + 0xa7fa0000a828, + 0xa82c0000a82d, + 0xa8400000a874, + 0xa8800000a8c6, + 0xa8d00000a8da, + 0xa8e00000a8f8, + 0xa8fb0000a8fc, + 0xa8fd0000a92e, + 0xa9300000a954, + 0xa9800000a9c1, + 0xa9cf0000a9da, + 0xa9e00000a9ff, + 0xaa000000aa37, + 0xaa400000aa4e, + 0xaa500000aa5a, + 0xaa600000aa77, + 0xaa7a0000aac3, + 0xaadb0000aade, + 0xaae00000aaf0, + 0xaaf20000aaf7, + 0xab010000ab07, + 0xab090000ab0f, + 0xab110000ab17, + 0xab200000ab27, + 0xab280000ab2f, + 0xab300000ab5b, + 0xab600000ab69, + 0xabc00000abeb, + 0xabec0000abee, + 0xabf00000abfa, + 0xac000000d7a4, + 0xfa0e0000fa10, + 0xfa110000fa12, + 0xfa130000fa15, + 0xfa1f0000fa20, + 0xfa210000fa22, + 0xfa230000fa25, + 0xfa270000fa2a, + 0xfb1e0000fb1f, + 0xfe200000fe30, + 0xfe730000fe74, + 0x100000001000c, + 0x1000d00010027, + 0x100280001003b, + 0x1003c0001003e, + 0x1003f0001004e, + 0x100500001005e, + 0x10080000100fb, + 0x101fd000101fe, + 0x102800001029d, + 0x102a0000102d1, + 0x102e0000102e1, + 0x1030000010320, + 0x1032d00010341, + 0x103420001034a, + 0x103500001037b, + 0x103800001039e, + 0x103a0000103c4, + 0x103c8000103d0, + 0x104280001049e, + 0x104a0000104aa, + 0x104d8000104fc, + 0x1050000010528, + 0x1053000010564, + 0x10597000105a2, + 0x105a3000105b2, + 0x105b3000105ba, + 0x105bb000105bd, + 0x1060000010737, + 0x1074000010756, + 0x1076000010768, + 0x1078000010786, + 0x10787000107b1, + 0x107b2000107bb, + 0x1080000010806, + 0x1080800010809, + 0x1080a00010836, + 0x1083700010839, + 0x1083c0001083d, + 0x1083f00010856, + 0x1086000010877, + 0x108800001089f, + 0x108e0000108f3, + 0x108f4000108f6, + 0x1090000010916, + 0x109200001093a, + 0x10980000109b8, + 0x109be000109c0, + 0x10a0000010a04, + 0x10a0500010a07, + 0x10a0c00010a14, + 0x10a1500010a18, + 0x10a1900010a36, + 0x10a3800010a3b, + 0x10a3f00010a40, + 0x10a6000010a7d, + 0x10a8000010a9d, + 0x10ac000010ac8, + 0x10ac900010ae7, + 0x10b0000010b36, + 0x10b4000010b56, + 0x10b6000010b73, + 0x10b8000010b92, + 0x10c0000010c49, + 0x10cc000010cf3, + 0x10d0000010d28, + 0x10d3000010d3a, + 0x10e8000010eaa, + 0x10eab00010ead, + 0x10eb000010eb2, + 0x10efd00010f1d, + 0x10f2700010f28, + 0x10f3000010f51, + 0x10f7000010f86, + 0x10fb000010fc5, + 0x10fe000010ff7, + 0x1100000011047, + 0x1106600011076, + 0x1107f000110bb, + 0x110c2000110c3, + 0x110d0000110e9, + 0x110f0000110fa, + 0x1110000011135, + 0x1113600011140, + 0x1114400011148, + 0x1115000011174, + 0x1117600011177, + 0x11180000111c5, + 0x111c9000111cd, + 0x111ce000111db, + 0x111dc000111dd, + 0x1120000011212, + 0x1121300011238, + 0x1123e00011242, + 0x1128000011287, + 0x1128800011289, + 0x1128a0001128e, + 0x1128f0001129e, + 0x1129f000112a9, + 0x112b0000112eb, + 0x112f0000112fa, + 0x1130000011304, + 0x113050001130d, + 0x1130f00011311, + 0x1131300011329, + 0x1132a00011331, + 0x1133200011334, + 0x113350001133a, + 0x1133b00011345, + 0x1134700011349, + 0x1134b0001134e, + 0x1135000011351, + 0x1135700011358, + 0x1135d00011364, + 0x113660001136d, + 0x1137000011375, + 0x114000001144b, + 0x114500001145a, + 0x1145e00011462, + 0x11480000114c6, + 0x114c7000114c8, + 0x114d0000114da, + 0x11580000115b6, + 0x115b8000115c1, + 0x115d8000115de, + 0x1160000011641, + 0x1164400011645, + 0x116500001165a, + 0x11680000116b9, + 0x116c0000116ca, + 0x117000001171b, + 0x1171d0001172c, + 0x117300001173a, + 0x1174000011747, + 0x118000001183b, + 0x118c0000118ea, + 0x118ff00011907, + 0x119090001190a, + 0x1190c00011914, + 0x1191500011917, + 0x1191800011936, + 0x1193700011939, + 0x1193b00011944, + 0x119500001195a, + 0x119a0000119a8, + 0x119aa000119d8, + 0x119da000119e2, + 0x119e3000119e5, + 0x11a0000011a3f, + 0x11a4700011a48, + 0x11a5000011a9a, + 0x11a9d00011a9e, + 0x11ab000011af9, + 0x11c0000011c09, + 0x11c0a00011c37, + 0x11c3800011c41, + 0x11c5000011c5a, + 0x11c7200011c90, + 0x11c9200011ca8, + 0x11ca900011cb7, + 0x11d0000011d07, + 0x11d0800011d0a, + 0x11d0b00011d37, + 0x11d3a00011d3b, + 0x11d3c00011d3e, + 0x11d3f00011d48, + 0x11d5000011d5a, + 0x11d6000011d66, + 0x11d6700011d69, + 0x11d6a00011d8f, + 0x11d9000011d92, + 0x11d9300011d99, + 0x11da000011daa, + 0x11ee000011ef7, + 0x11f0000011f11, + 0x11f1200011f3b, + 0x11f3e00011f43, + 0x11f5000011f5a, + 0x11fb000011fb1, + 0x120000001239a, + 0x1248000012544, + 0x12f9000012ff1, + 0x1300000013430, + 0x1344000013456, + 0x1440000014647, + 0x1680000016a39, + 0x16a4000016a5f, + 0x16a6000016a6a, + 0x16a7000016abf, + 0x16ac000016aca, + 0x16ad000016aee, + 0x16af000016af5, + 0x16b0000016b37, + 0x16b4000016b44, + 0x16b5000016b5a, + 0x16b6300016b78, + 0x16b7d00016b90, + 0x16e6000016e80, + 0x16f0000016f4b, + 0x16f4f00016f88, + 0x16f8f00016fa0, + 0x16fe000016fe2, + 0x16fe300016fe5, + 0x16ff000016ff2, + 0x17000000187f8, + 0x1880000018cd6, + 0x18d0000018d09, + 0x1aff00001aff4, + 0x1aff50001affc, + 0x1affd0001afff, + 0x1b0000001b123, + 0x1b1320001b133, + 0x1b1500001b153, + 0x1b1550001b156, + 0x1b1640001b168, + 0x1b1700001b2fc, + 0x1bc000001bc6b, + 0x1bc700001bc7d, + 0x1bc800001bc89, + 0x1bc900001bc9a, + 0x1bc9d0001bc9f, + 0x1cf000001cf2e, + 0x1cf300001cf47, + 0x1da000001da37, + 0x1da3b0001da6d, + 0x1da750001da76, + 0x1da840001da85, + 0x1da9b0001daa0, + 0x1daa10001dab0, + 0x1df000001df1f, + 0x1df250001df2b, + 0x1e0000001e007, + 0x1e0080001e019, + 0x1e01b0001e022, + 0x1e0230001e025, + 0x1e0260001e02b, + 0x1e0300001e06e, + 0x1e08f0001e090, + 0x1e1000001e12d, + 0x1e1300001e13e, + 0x1e1400001e14a, + 0x1e14e0001e14f, + 0x1e2900001e2af, + 0x1e2c00001e2fa, + 0x1e4d00001e4fa, + 0x1e7e00001e7e7, + 0x1e7e80001e7ec, + 0x1e7ed0001e7ef, + 0x1e7f00001e7ff, + 0x1e8000001e8c5, + 0x1e8d00001e8d7, + 0x1e9220001e94c, + 0x1e9500001e95a, + 0x200000002a6e0, + 0x2a7000002b73a, + 0x2b7400002b81e, + 0x2b8200002cea2, + 0x2ceb00002ebe1, + 0x300000003134b, + 0x31350000323b0, + ), + 'CONTEXTJ': ( + 0x200c0000200e, + ), + 'CONTEXTO': ( + 0xb7000000b8, + 0x37500000376, + 0x5f3000005f5, + 0x6600000066a, + 0x6f0000006fa, + 0x30fb000030fc, + ), +} diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/idna/intranges.py b/.venv/lib/python3.11/site-packages/pip/_vendor/idna/intranges.py new file mode 100644 index 0000000..6a43b04 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/idna/intranges.py @@ -0,0 +1,54 @@ +""" +Given a list of integers, made up of (hopefully) a small number of long runs +of consecutive integers, compute a representation of the form +((start1, end1), (start2, end2) ...). Then answer the question "was x present +in the original list?" in time O(log(# runs)). +""" + +import bisect +from typing import List, Tuple + +def intranges_from_list(list_: List[int]) -> Tuple[int, ...]: + """Represent a list of integers as a sequence of ranges: + ((start_0, end_0), (start_1, end_1), ...), such that the original + integers are exactly those x such that start_i <= x < end_i for some i. + + Ranges are encoded as single integers (start << 32 | end), not as tuples. + """ + + sorted_list = sorted(list_) + ranges = [] + last_write = -1 + for i in range(len(sorted_list)): + if i+1 < len(sorted_list): + if sorted_list[i] == sorted_list[i+1]-1: + continue + current_range = sorted_list[last_write+1:i+1] + ranges.append(_encode_range(current_range[0], current_range[-1] + 1)) + last_write = i + + return tuple(ranges) + +def _encode_range(start: int, end: int) -> int: + return (start << 32) | end + +def _decode_range(r: int) -> Tuple[int, int]: + return (r >> 32), (r & ((1 << 32) - 1)) + + +def intranges_contain(int_: int, ranges: Tuple[int, ...]) -> bool: + """Determine if `int_` falls into one of the ranges in `ranges`.""" + tuple_ = _encode_range(int_, 0) + pos = bisect.bisect_left(ranges, tuple_) + # we could be immediately ahead of a tuple (start, end) + # with start < int_ <= end + if pos > 0: + left, right = _decode_range(ranges[pos-1]) + if left <= int_ < right: + return True + # or we could be immediately behind a tuple (int_, end) + if pos < len(ranges): + left, _ = _decode_range(ranges[pos]) + if left == int_: + return True + return False diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/idna/package_data.py b/.venv/lib/python3.11/site-packages/pip/_vendor/idna/package_data.py new file mode 100644 index 0000000..8501893 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/idna/package_data.py @@ -0,0 +1,2 @@ +__version__ = '3.4' + diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/idna/py.typed b/.venv/lib/python3.11/site-packages/pip/_vendor/idna/py.typed new file mode 100644 index 0000000..e69de29 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/idna/uts46data.py b/.venv/lib/python3.11/site-packages/pip/_vendor/idna/uts46data.py new file mode 100644 index 0000000..186796c --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/idna/uts46data.py @@ -0,0 +1,8600 @@ +# This file is automatically generated by tools/idna-data +# vim: set fileencoding=utf-8 : + +from typing import List, Tuple, Union + + +"""IDNA Mapping Table from UTS46.""" + + +__version__ = '15.0.0' +def _seg_0() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x0, '3'), + (0x1, '3'), + (0x2, '3'), + (0x3, '3'), + (0x4, '3'), + (0x5, '3'), + (0x6, '3'), + (0x7, '3'), + (0x8, '3'), + (0x9, '3'), + (0xA, '3'), + (0xB, '3'), + (0xC, '3'), + (0xD, '3'), + (0xE, '3'), + (0xF, '3'), + (0x10, '3'), + (0x11, '3'), + (0x12, '3'), + (0x13, '3'), + (0x14, '3'), + (0x15, '3'), + (0x16, '3'), + (0x17, '3'), + (0x18, '3'), + (0x19, '3'), + (0x1A, '3'), + (0x1B, '3'), + (0x1C, '3'), + (0x1D, '3'), + (0x1E, '3'), + (0x1F, '3'), + (0x20, '3'), + (0x21, '3'), + (0x22, '3'), + (0x23, '3'), + (0x24, '3'), + (0x25, '3'), + (0x26, '3'), + (0x27, '3'), + (0x28, '3'), + (0x29, '3'), + (0x2A, '3'), + (0x2B, '3'), + (0x2C, '3'), + (0x2D, 'V'), + (0x2E, 'V'), + (0x2F, '3'), + (0x30, 'V'), + (0x31, 'V'), + (0x32, 'V'), + (0x33, 'V'), + (0x34, 'V'), + (0x35, 'V'), + (0x36, 'V'), + (0x37, 'V'), + (0x38, 'V'), + (0x39, 'V'), + (0x3A, '3'), + (0x3B, '3'), + (0x3C, '3'), + (0x3D, '3'), + (0x3E, '3'), + (0x3F, '3'), + (0x40, '3'), + (0x41, 'M', 'a'), + (0x42, 'M', 'b'), + (0x43, 'M', 'c'), + (0x44, 'M', 'd'), + (0x45, 'M', 'e'), + (0x46, 'M', 'f'), + (0x47, 'M', 'g'), + (0x48, 'M', 'h'), + (0x49, 'M', 'i'), + (0x4A, 'M', 'j'), + (0x4B, 'M', 'k'), + (0x4C, 'M', 'l'), + (0x4D, 'M', 'm'), + (0x4E, 'M', 'n'), + (0x4F, 'M', 'o'), + (0x50, 'M', 'p'), + (0x51, 'M', 'q'), + (0x52, 'M', 'r'), + (0x53, 'M', 's'), + (0x54, 'M', 't'), + (0x55, 'M', 'u'), + (0x56, 'M', 'v'), + (0x57, 'M', 'w'), + (0x58, 'M', 'x'), + (0x59, 'M', 'y'), + (0x5A, 'M', 'z'), + (0x5B, '3'), + (0x5C, '3'), + (0x5D, '3'), + (0x5E, '3'), + (0x5F, '3'), + (0x60, '3'), + (0x61, 'V'), + (0x62, 'V'), + (0x63, 'V'), + ] + +def _seg_1() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x64, 'V'), + (0x65, 'V'), + (0x66, 'V'), + (0x67, 'V'), + (0x68, 'V'), + (0x69, 'V'), + (0x6A, 'V'), + (0x6B, 'V'), + (0x6C, 'V'), + (0x6D, 'V'), + (0x6E, 'V'), + (0x6F, 'V'), + (0x70, 'V'), + (0x71, 'V'), + (0x72, 'V'), + (0x73, 'V'), + (0x74, 'V'), + (0x75, 'V'), + (0x76, 'V'), + (0x77, 'V'), + (0x78, 'V'), + (0x79, 'V'), + (0x7A, 'V'), + (0x7B, '3'), + (0x7C, '3'), + (0x7D, '3'), + (0x7E, '3'), + (0x7F, '3'), + (0x80, 'X'), + (0x81, 'X'), + (0x82, 'X'), + (0x83, 'X'), + (0x84, 'X'), + (0x85, 'X'), + (0x86, 'X'), + (0x87, 'X'), + (0x88, 'X'), + (0x89, 'X'), + (0x8A, 'X'), + (0x8B, 'X'), + (0x8C, 'X'), + (0x8D, 'X'), + (0x8E, 'X'), + (0x8F, 'X'), + (0x90, 'X'), + (0x91, 'X'), + (0x92, 'X'), + (0x93, 'X'), + (0x94, 'X'), + (0x95, 'X'), + (0x96, 'X'), + (0x97, 'X'), + (0x98, 'X'), + (0x99, 'X'), + (0x9A, 'X'), + (0x9B, 'X'), + (0x9C, 'X'), + (0x9D, 'X'), + (0x9E, 'X'), + (0x9F, 'X'), + (0xA0, '3', ' '), + (0xA1, 'V'), + (0xA2, 'V'), + (0xA3, 'V'), + (0xA4, 'V'), + (0xA5, 'V'), + (0xA6, 'V'), + (0xA7, 'V'), + (0xA8, '3', ' ̈'), + (0xA9, 'V'), + (0xAA, 'M', 'a'), + (0xAB, 'V'), + (0xAC, 'V'), + (0xAD, 'I'), + (0xAE, 'V'), + (0xAF, '3', ' ̄'), + (0xB0, 'V'), + (0xB1, 'V'), + (0xB2, 'M', '2'), + (0xB3, 'M', '3'), + (0xB4, '3', ' ́'), + (0xB5, 'M', 'μ'), + (0xB6, 'V'), + (0xB7, 'V'), + (0xB8, '3', ' ̧'), + (0xB9, 'M', '1'), + (0xBA, 'M', 'o'), + (0xBB, 'V'), + (0xBC, 'M', '1⁄4'), + (0xBD, 'M', '1⁄2'), + (0xBE, 'M', '3⁄4'), + (0xBF, 'V'), + (0xC0, 'M', 'à'), + (0xC1, 'M', 'á'), + (0xC2, 'M', 'â'), + (0xC3, 'M', 'ã'), + (0xC4, 'M', 'ä'), + (0xC5, 'M', 'å'), + (0xC6, 'M', 'æ'), + (0xC7, 'M', 'ç'), + ] + +def _seg_2() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xC8, 'M', 'è'), + (0xC9, 'M', 'é'), + (0xCA, 'M', 'ê'), + (0xCB, 'M', 'ë'), + (0xCC, 'M', 'ì'), + (0xCD, 'M', 'í'), + (0xCE, 'M', 'î'), + (0xCF, 'M', 'ï'), + (0xD0, 'M', 'ð'), + (0xD1, 'M', 'ñ'), + (0xD2, 'M', 'ò'), + (0xD3, 'M', 'ó'), + (0xD4, 'M', 'ô'), + (0xD5, 'M', 'õ'), + (0xD6, 'M', 'ö'), + (0xD7, 'V'), + (0xD8, 'M', 'ø'), + (0xD9, 'M', 'ù'), + (0xDA, 'M', 'ú'), + (0xDB, 'M', 'û'), + (0xDC, 'M', 'ü'), + (0xDD, 'M', 'ý'), + (0xDE, 'M', 'þ'), + (0xDF, 'D', 'ss'), + (0xE0, 'V'), + (0xE1, 'V'), + (0xE2, 'V'), + (0xE3, 'V'), + (0xE4, 'V'), + (0xE5, 'V'), + (0xE6, 'V'), + (0xE7, 'V'), + (0xE8, 'V'), + (0xE9, 'V'), + (0xEA, 'V'), + (0xEB, 'V'), + (0xEC, 'V'), + (0xED, 'V'), + (0xEE, 'V'), + (0xEF, 'V'), + (0xF0, 'V'), + (0xF1, 'V'), + (0xF2, 'V'), + (0xF3, 'V'), + (0xF4, 'V'), + (0xF5, 'V'), + (0xF6, 'V'), + (0xF7, 'V'), + (0xF8, 'V'), + (0xF9, 'V'), + (0xFA, 'V'), + (0xFB, 'V'), + (0xFC, 'V'), + (0xFD, 'V'), + (0xFE, 'V'), + (0xFF, 'V'), + (0x100, 'M', 'ā'), + (0x101, 'V'), + (0x102, 'M', 'ă'), + (0x103, 'V'), + (0x104, 'M', 'ą'), + (0x105, 'V'), + (0x106, 'M', 'ć'), + (0x107, 'V'), + (0x108, 'M', 'ĉ'), + (0x109, 'V'), + (0x10A, 'M', 'ċ'), + (0x10B, 'V'), + (0x10C, 'M', 'č'), + (0x10D, 'V'), + (0x10E, 'M', 'ď'), + (0x10F, 'V'), + (0x110, 'M', 'đ'), + (0x111, 'V'), + (0x112, 'M', 'ē'), + (0x113, 'V'), + (0x114, 'M', 'ĕ'), + (0x115, 'V'), + (0x116, 'M', 'ė'), + (0x117, 'V'), + (0x118, 'M', 'ę'), + (0x119, 'V'), + (0x11A, 'M', 'ě'), + (0x11B, 'V'), + (0x11C, 'M', 'ĝ'), + (0x11D, 'V'), + (0x11E, 'M', 'ğ'), + (0x11F, 'V'), + (0x120, 'M', 'ġ'), + (0x121, 'V'), + (0x122, 'M', 'ģ'), + (0x123, 'V'), + (0x124, 'M', 'ĥ'), + (0x125, 'V'), + (0x126, 'M', 'ħ'), + (0x127, 'V'), + (0x128, 'M', 'ĩ'), + (0x129, 'V'), + (0x12A, 'M', 'ī'), + (0x12B, 'V'), + ] + +def _seg_3() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x12C, 'M', 'ĭ'), + (0x12D, 'V'), + (0x12E, 'M', 'į'), + (0x12F, 'V'), + (0x130, 'M', 'i̇'), + (0x131, 'V'), + (0x132, 'M', 'ij'), + (0x134, 'M', 'ĵ'), + (0x135, 'V'), + (0x136, 'M', 'ķ'), + (0x137, 'V'), + (0x139, 'M', 'ĺ'), + (0x13A, 'V'), + (0x13B, 'M', 'ļ'), + (0x13C, 'V'), + (0x13D, 'M', 'ľ'), + (0x13E, 'V'), + (0x13F, 'M', 'l·'), + (0x141, 'M', 'ł'), + (0x142, 'V'), + (0x143, 'M', 'ń'), + (0x144, 'V'), + (0x145, 'M', 'ņ'), + (0x146, 'V'), + (0x147, 'M', 'ň'), + (0x148, 'V'), + (0x149, 'M', 'ʼn'), + (0x14A, 'M', 'ŋ'), + (0x14B, 'V'), + (0x14C, 'M', 'ō'), + (0x14D, 'V'), + (0x14E, 'M', 'ŏ'), + (0x14F, 'V'), + (0x150, 'M', 'ő'), + (0x151, 'V'), + (0x152, 'M', 'œ'), + (0x153, 'V'), + (0x154, 'M', 'ŕ'), + (0x155, 'V'), + (0x156, 'M', 'ŗ'), + (0x157, 'V'), + (0x158, 'M', 'ř'), + (0x159, 'V'), + (0x15A, 'M', 'ś'), + (0x15B, 'V'), + (0x15C, 'M', 'ŝ'), + (0x15D, 'V'), + (0x15E, 'M', 'ş'), + (0x15F, 'V'), + (0x160, 'M', 'š'), + (0x161, 'V'), + (0x162, 'M', 'ţ'), + (0x163, 'V'), + (0x164, 'M', 'ť'), + (0x165, 'V'), + (0x166, 'M', 'ŧ'), + (0x167, 'V'), + (0x168, 'M', 'ũ'), + (0x169, 'V'), + (0x16A, 'M', 'ū'), + (0x16B, 'V'), + (0x16C, 'M', 'ŭ'), + (0x16D, 'V'), + (0x16E, 'M', 'ů'), + (0x16F, 'V'), + (0x170, 'M', 'ű'), + (0x171, 'V'), + (0x172, 'M', 'ų'), + (0x173, 'V'), + (0x174, 'M', 'ŵ'), + (0x175, 'V'), + (0x176, 'M', 'ŷ'), + (0x177, 'V'), + (0x178, 'M', 'ÿ'), + (0x179, 'M', 'ź'), + (0x17A, 'V'), + (0x17B, 'M', 'ż'), + (0x17C, 'V'), + (0x17D, 'M', 'ž'), + (0x17E, 'V'), + (0x17F, 'M', 's'), + (0x180, 'V'), + (0x181, 'M', 'ɓ'), + (0x182, 'M', 'ƃ'), + (0x183, 'V'), + (0x184, 'M', 'ƅ'), + (0x185, 'V'), + (0x186, 'M', 'ɔ'), + (0x187, 'M', 'ƈ'), + (0x188, 'V'), + (0x189, 'M', 'ɖ'), + (0x18A, 'M', 'ɗ'), + (0x18B, 'M', 'ƌ'), + (0x18C, 'V'), + (0x18E, 'M', 'ǝ'), + (0x18F, 'M', 'ə'), + (0x190, 'M', 'ɛ'), + (0x191, 'M', 'ƒ'), + (0x192, 'V'), + (0x193, 'M', 'ɠ'), + ] + +def _seg_4() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x194, 'M', 'ɣ'), + (0x195, 'V'), + (0x196, 'M', 'ɩ'), + (0x197, 'M', 'ɨ'), + (0x198, 'M', 'ƙ'), + (0x199, 'V'), + (0x19C, 'M', 'ɯ'), + (0x19D, 'M', 'ɲ'), + (0x19E, 'V'), + (0x19F, 'M', 'ɵ'), + (0x1A0, 'M', 'ơ'), + (0x1A1, 'V'), + (0x1A2, 'M', 'ƣ'), + (0x1A3, 'V'), + (0x1A4, 'M', 'ƥ'), + (0x1A5, 'V'), + (0x1A6, 'M', 'ʀ'), + (0x1A7, 'M', 'ƨ'), + (0x1A8, 'V'), + (0x1A9, 'M', 'ʃ'), + (0x1AA, 'V'), + (0x1AC, 'M', 'ƭ'), + (0x1AD, 'V'), + (0x1AE, 'M', 'ʈ'), + (0x1AF, 'M', 'ư'), + (0x1B0, 'V'), + (0x1B1, 'M', 'ʊ'), + (0x1B2, 'M', 'ʋ'), + (0x1B3, 'M', 'ƴ'), + (0x1B4, 'V'), + (0x1B5, 'M', 'ƶ'), + (0x1B6, 'V'), + (0x1B7, 'M', 'ʒ'), + (0x1B8, 'M', 'ƹ'), + (0x1B9, 'V'), + (0x1BC, 'M', 'ƽ'), + (0x1BD, 'V'), + (0x1C4, 'M', 'dž'), + (0x1C7, 'M', 'lj'), + (0x1CA, 'M', 'nj'), + (0x1CD, 'M', 'ǎ'), + (0x1CE, 'V'), + (0x1CF, 'M', 'ǐ'), + (0x1D0, 'V'), + (0x1D1, 'M', 'ǒ'), + (0x1D2, 'V'), + (0x1D3, 'M', 'ǔ'), + (0x1D4, 'V'), + (0x1D5, 'M', 'ǖ'), + (0x1D6, 'V'), + (0x1D7, 'M', 'ǘ'), + (0x1D8, 'V'), + (0x1D9, 'M', 'ǚ'), + (0x1DA, 'V'), + (0x1DB, 'M', 'ǜ'), + (0x1DC, 'V'), + (0x1DE, 'M', 'ǟ'), + (0x1DF, 'V'), + (0x1E0, 'M', 'ǡ'), + (0x1E1, 'V'), + (0x1E2, 'M', 'ǣ'), + (0x1E3, 'V'), + (0x1E4, 'M', 'ǥ'), + (0x1E5, 'V'), + (0x1E6, 'M', 'ǧ'), + (0x1E7, 'V'), + (0x1E8, 'M', 'ǩ'), + (0x1E9, 'V'), + (0x1EA, 'M', 'ǫ'), + (0x1EB, 'V'), + (0x1EC, 'M', 'ǭ'), + (0x1ED, 'V'), + (0x1EE, 'M', 'ǯ'), + (0x1EF, 'V'), + (0x1F1, 'M', 'dz'), + (0x1F4, 'M', 'ǵ'), + (0x1F5, 'V'), + (0x1F6, 'M', 'ƕ'), + (0x1F7, 'M', 'ƿ'), + (0x1F8, 'M', 'ǹ'), + (0x1F9, 'V'), + (0x1FA, 'M', 'ǻ'), + (0x1FB, 'V'), + (0x1FC, 'M', 'ǽ'), + (0x1FD, 'V'), + (0x1FE, 'M', 'ǿ'), + (0x1FF, 'V'), + (0x200, 'M', 'ȁ'), + (0x201, 'V'), + (0x202, 'M', 'ȃ'), + (0x203, 'V'), + (0x204, 'M', 'ȅ'), + (0x205, 'V'), + (0x206, 'M', 'ȇ'), + (0x207, 'V'), + (0x208, 'M', 'ȉ'), + (0x209, 'V'), + (0x20A, 'M', 'ȋ'), + (0x20B, 'V'), + (0x20C, 'M', 'ȍ'), + ] + +def _seg_5() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x20D, 'V'), + (0x20E, 'M', 'ȏ'), + (0x20F, 'V'), + (0x210, 'M', 'ȑ'), + (0x211, 'V'), + (0x212, 'M', 'ȓ'), + (0x213, 'V'), + (0x214, 'M', 'ȕ'), + (0x215, 'V'), + (0x216, 'M', 'ȗ'), + (0x217, 'V'), + (0x218, 'M', 'ș'), + (0x219, 'V'), + (0x21A, 'M', 'ț'), + (0x21B, 'V'), + (0x21C, 'M', 'ȝ'), + (0x21D, 'V'), + (0x21E, 'M', 'ȟ'), + (0x21F, 'V'), + (0x220, 'M', 'ƞ'), + (0x221, 'V'), + (0x222, 'M', 'ȣ'), + (0x223, 'V'), + (0x224, 'M', 'ȥ'), + (0x225, 'V'), + (0x226, 'M', 'ȧ'), + (0x227, 'V'), + (0x228, 'M', 'ȩ'), + (0x229, 'V'), + (0x22A, 'M', 'ȫ'), + (0x22B, 'V'), + (0x22C, 'M', 'ȭ'), + (0x22D, 'V'), + (0x22E, 'M', 'ȯ'), + (0x22F, 'V'), + (0x230, 'M', 'ȱ'), + (0x231, 'V'), + (0x232, 'M', 'ȳ'), + (0x233, 'V'), + (0x23A, 'M', 'ⱥ'), + (0x23B, 'M', 'ȼ'), + (0x23C, 'V'), + (0x23D, 'M', 'ƚ'), + (0x23E, 'M', 'ⱦ'), + (0x23F, 'V'), + (0x241, 'M', 'ɂ'), + (0x242, 'V'), + (0x243, 'M', 'ƀ'), + (0x244, 'M', 'ʉ'), + (0x245, 'M', 'ʌ'), + (0x246, 'M', 'ɇ'), + (0x247, 'V'), + (0x248, 'M', 'ɉ'), + (0x249, 'V'), + (0x24A, 'M', 'ɋ'), + (0x24B, 'V'), + (0x24C, 'M', 'ɍ'), + (0x24D, 'V'), + (0x24E, 'M', 'ɏ'), + (0x24F, 'V'), + (0x2B0, 'M', 'h'), + (0x2B1, 'M', 'ɦ'), + (0x2B2, 'M', 'j'), + (0x2B3, 'M', 'r'), + (0x2B4, 'M', 'ɹ'), + (0x2B5, 'M', 'ɻ'), + (0x2B6, 'M', 'ʁ'), + (0x2B7, 'M', 'w'), + (0x2B8, 'M', 'y'), + (0x2B9, 'V'), + (0x2D8, '3', ' ̆'), + (0x2D9, '3', ' ̇'), + (0x2DA, '3', ' ̊'), + (0x2DB, '3', ' ̨'), + (0x2DC, '3', ' ̃'), + (0x2DD, '3', ' ̋'), + (0x2DE, 'V'), + (0x2E0, 'M', 'ɣ'), + (0x2E1, 'M', 'l'), + (0x2E2, 'M', 's'), + (0x2E3, 'M', 'x'), + (0x2E4, 'M', 'ʕ'), + (0x2E5, 'V'), + (0x340, 'M', '̀'), + (0x341, 'M', '́'), + (0x342, 'V'), + (0x343, 'M', '̓'), + (0x344, 'M', '̈́'), + (0x345, 'M', 'ι'), + (0x346, 'V'), + (0x34F, 'I'), + (0x350, 'V'), + (0x370, 'M', 'ͱ'), + (0x371, 'V'), + (0x372, 'M', 'ͳ'), + (0x373, 'V'), + (0x374, 'M', 'ʹ'), + (0x375, 'V'), + (0x376, 'M', 'ͷ'), + (0x377, 'V'), + ] + +def _seg_6() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x378, 'X'), + (0x37A, '3', ' ι'), + (0x37B, 'V'), + (0x37E, '3', ';'), + (0x37F, 'M', 'ϳ'), + (0x380, 'X'), + (0x384, '3', ' ́'), + (0x385, '3', ' ̈́'), + (0x386, 'M', 'ά'), + (0x387, 'M', '·'), + (0x388, 'M', 'έ'), + (0x389, 'M', 'ή'), + (0x38A, 'M', 'ί'), + (0x38B, 'X'), + (0x38C, 'M', 'ό'), + (0x38D, 'X'), + (0x38E, 'M', 'ύ'), + (0x38F, 'M', 'ώ'), + (0x390, 'V'), + (0x391, 'M', 'α'), + (0x392, 'M', 'β'), + (0x393, 'M', 'γ'), + (0x394, 'M', 'δ'), + (0x395, 'M', 'ε'), + (0x396, 'M', 'ζ'), + (0x397, 'M', 'η'), + (0x398, 'M', 'θ'), + (0x399, 'M', 'ι'), + (0x39A, 'M', 'κ'), + (0x39B, 'M', 'λ'), + (0x39C, 'M', 'μ'), + (0x39D, 'M', 'ν'), + (0x39E, 'M', 'ξ'), + (0x39F, 'M', 'ο'), + (0x3A0, 'M', 'π'), + (0x3A1, 'M', 'ρ'), + (0x3A2, 'X'), + (0x3A3, 'M', 'σ'), + (0x3A4, 'M', 'τ'), + (0x3A5, 'M', 'υ'), + (0x3A6, 'M', 'φ'), + (0x3A7, 'M', 'χ'), + (0x3A8, 'M', 'ψ'), + (0x3A9, 'M', 'ω'), + (0x3AA, 'M', 'ϊ'), + (0x3AB, 'M', 'ϋ'), + (0x3AC, 'V'), + (0x3C2, 'D', 'σ'), + (0x3C3, 'V'), + (0x3CF, 'M', 'ϗ'), + (0x3D0, 'M', 'β'), + (0x3D1, 'M', 'θ'), + (0x3D2, 'M', 'υ'), + (0x3D3, 'M', 'ύ'), + (0x3D4, 'M', 'ϋ'), + (0x3D5, 'M', 'φ'), + (0x3D6, 'M', 'π'), + (0x3D7, 'V'), + (0x3D8, 'M', 'ϙ'), + (0x3D9, 'V'), + (0x3DA, 'M', 'ϛ'), + (0x3DB, 'V'), + (0x3DC, 'M', 'ϝ'), + (0x3DD, 'V'), + (0x3DE, 'M', 'ϟ'), + (0x3DF, 'V'), + (0x3E0, 'M', 'ϡ'), + (0x3E1, 'V'), + (0x3E2, 'M', 'ϣ'), + (0x3E3, 'V'), + (0x3E4, 'M', 'ϥ'), + (0x3E5, 'V'), + (0x3E6, 'M', 'ϧ'), + (0x3E7, 'V'), + (0x3E8, 'M', 'ϩ'), + (0x3E9, 'V'), + (0x3EA, 'M', 'ϫ'), + (0x3EB, 'V'), + (0x3EC, 'M', 'ϭ'), + (0x3ED, 'V'), + (0x3EE, 'M', 'ϯ'), + (0x3EF, 'V'), + (0x3F0, 'M', 'κ'), + (0x3F1, 'M', 'ρ'), + (0x3F2, 'M', 'σ'), + (0x3F3, 'V'), + (0x3F4, 'M', 'θ'), + (0x3F5, 'M', 'ε'), + (0x3F6, 'V'), + (0x3F7, 'M', 'ϸ'), + (0x3F8, 'V'), + (0x3F9, 'M', 'σ'), + (0x3FA, 'M', 'ϻ'), + (0x3FB, 'V'), + (0x3FD, 'M', 'ͻ'), + (0x3FE, 'M', 'ͼ'), + (0x3FF, 'M', 'ͽ'), + (0x400, 'M', 'ѐ'), + (0x401, 'M', 'ё'), + (0x402, 'M', 'ђ'), + ] + +def _seg_7() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x403, 'M', 'ѓ'), + (0x404, 'M', 'є'), + (0x405, 'M', 'ѕ'), + (0x406, 'M', 'і'), + (0x407, 'M', 'ї'), + (0x408, 'M', 'ј'), + (0x409, 'M', 'љ'), + (0x40A, 'M', 'њ'), + (0x40B, 'M', 'ћ'), + (0x40C, 'M', 'ќ'), + (0x40D, 'M', 'ѝ'), + (0x40E, 'M', 'ў'), + (0x40F, 'M', 'џ'), + (0x410, 'M', 'а'), + (0x411, 'M', 'б'), + (0x412, 'M', 'в'), + (0x413, 'M', 'г'), + (0x414, 'M', 'д'), + (0x415, 'M', 'е'), + (0x416, 'M', 'ж'), + (0x417, 'M', 'з'), + (0x418, 'M', 'и'), + (0x419, 'M', 'й'), + (0x41A, 'M', 'к'), + (0x41B, 'M', 'л'), + (0x41C, 'M', 'м'), + (0x41D, 'M', 'н'), + (0x41E, 'M', 'о'), + (0x41F, 'M', 'п'), + (0x420, 'M', 'р'), + (0x421, 'M', 'с'), + (0x422, 'M', 'т'), + (0x423, 'M', 'у'), + (0x424, 'M', 'ф'), + (0x425, 'M', 'х'), + (0x426, 'M', 'ц'), + (0x427, 'M', 'ч'), + (0x428, 'M', 'ш'), + (0x429, 'M', 'щ'), + (0x42A, 'M', 'ъ'), + (0x42B, 'M', 'ы'), + (0x42C, 'M', 'ь'), + (0x42D, 'M', 'э'), + (0x42E, 'M', 'ю'), + (0x42F, 'M', 'я'), + (0x430, 'V'), + (0x460, 'M', 'ѡ'), + (0x461, 'V'), + (0x462, 'M', 'ѣ'), + (0x463, 'V'), + (0x464, 'M', 'ѥ'), + (0x465, 'V'), + (0x466, 'M', 'ѧ'), + (0x467, 'V'), + (0x468, 'M', 'ѩ'), + (0x469, 'V'), + (0x46A, 'M', 'ѫ'), + (0x46B, 'V'), + (0x46C, 'M', 'ѭ'), + (0x46D, 'V'), + (0x46E, 'M', 'ѯ'), + (0x46F, 'V'), + (0x470, 'M', 'ѱ'), + (0x471, 'V'), + (0x472, 'M', 'ѳ'), + (0x473, 'V'), + (0x474, 'M', 'ѵ'), + (0x475, 'V'), + (0x476, 'M', 'ѷ'), + (0x477, 'V'), + (0x478, 'M', 'ѹ'), + (0x479, 'V'), + (0x47A, 'M', 'ѻ'), + (0x47B, 'V'), + (0x47C, 'M', 'ѽ'), + (0x47D, 'V'), + (0x47E, 'M', 'ѿ'), + (0x47F, 'V'), + (0x480, 'M', 'ҁ'), + (0x481, 'V'), + (0x48A, 'M', 'ҋ'), + (0x48B, 'V'), + (0x48C, 'M', 'ҍ'), + (0x48D, 'V'), + (0x48E, 'M', 'ҏ'), + (0x48F, 'V'), + (0x490, 'M', 'ґ'), + (0x491, 'V'), + (0x492, 'M', 'ғ'), + (0x493, 'V'), + (0x494, 'M', 'ҕ'), + (0x495, 'V'), + (0x496, 'M', 'җ'), + (0x497, 'V'), + (0x498, 'M', 'ҙ'), + (0x499, 'V'), + (0x49A, 'M', 'қ'), + (0x49B, 'V'), + (0x49C, 'M', 'ҝ'), + (0x49D, 'V'), + ] + +def _seg_8() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x49E, 'M', 'ҟ'), + (0x49F, 'V'), + (0x4A0, 'M', 'ҡ'), + (0x4A1, 'V'), + (0x4A2, 'M', 'ң'), + (0x4A3, 'V'), + (0x4A4, 'M', 'ҥ'), + (0x4A5, 'V'), + (0x4A6, 'M', 'ҧ'), + (0x4A7, 'V'), + (0x4A8, 'M', 'ҩ'), + (0x4A9, 'V'), + (0x4AA, 'M', 'ҫ'), + (0x4AB, 'V'), + (0x4AC, 'M', 'ҭ'), + (0x4AD, 'V'), + (0x4AE, 'M', 'ү'), + (0x4AF, 'V'), + (0x4B0, 'M', 'ұ'), + (0x4B1, 'V'), + (0x4B2, 'M', 'ҳ'), + (0x4B3, 'V'), + (0x4B4, 'M', 'ҵ'), + (0x4B5, 'V'), + (0x4B6, 'M', 'ҷ'), + (0x4B7, 'V'), + (0x4B8, 'M', 'ҹ'), + (0x4B9, 'V'), + (0x4BA, 'M', 'һ'), + (0x4BB, 'V'), + (0x4BC, 'M', 'ҽ'), + (0x4BD, 'V'), + (0x4BE, 'M', 'ҿ'), + (0x4BF, 'V'), + (0x4C0, 'X'), + (0x4C1, 'M', 'ӂ'), + (0x4C2, 'V'), + (0x4C3, 'M', 'ӄ'), + (0x4C4, 'V'), + (0x4C5, 'M', 'ӆ'), + (0x4C6, 'V'), + (0x4C7, 'M', 'ӈ'), + (0x4C8, 'V'), + (0x4C9, 'M', 'ӊ'), + (0x4CA, 'V'), + (0x4CB, 'M', 'ӌ'), + (0x4CC, 'V'), + (0x4CD, 'M', 'ӎ'), + (0x4CE, 'V'), + (0x4D0, 'M', 'ӑ'), + (0x4D1, 'V'), + (0x4D2, 'M', 'ӓ'), + (0x4D3, 'V'), + (0x4D4, 'M', 'ӕ'), + (0x4D5, 'V'), + (0x4D6, 'M', 'ӗ'), + (0x4D7, 'V'), + (0x4D8, 'M', 'ә'), + (0x4D9, 'V'), + (0x4DA, 'M', 'ӛ'), + (0x4DB, 'V'), + (0x4DC, 'M', 'ӝ'), + (0x4DD, 'V'), + (0x4DE, 'M', 'ӟ'), + (0x4DF, 'V'), + (0x4E0, 'M', 'ӡ'), + (0x4E1, 'V'), + (0x4E2, 'M', 'ӣ'), + (0x4E3, 'V'), + (0x4E4, 'M', 'ӥ'), + (0x4E5, 'V'), + (0x4E6, 'M', 'ӧ'), + (0x4E7, 'V'), + (0x4E8, 'M', 'ө'), + (0x4E9, 'V'), + (0x4EA, 'M', 'ӫ'), + (0x4EB, 'V'), + (0x4EC, 'M', 'ӭ'), + (0x4ED, 'V'), + (0x4EE, 'M', 'ӯ'), + (0x4EF, 'V'), + (0x4F0, 'M', 'ӱ'), + (0x4F1, 'V'), + (0x4F2, 'M', 'ӳ'), + (0x4F3, 'V'), + (0x4F4, 'M', 'ӵ'), + (0x4F5, 'V'), + (0x4F6, 'M', 'ӷ'), + (0x4F7, 'V'), + (0x4F8, 'M', 'ӹ'), + (0x4F9, 'V'), + (0x4FA, 'M', 'ӻ'), + (0x4FB, 'V'), + (0x4FC, 'M', 'ӽ'), + (0x4FD, 'V'), + (0x4FE, 'M', 'ӿ'), + (0x4FF, 'V'), + (0x500, 'M', 'ԁ'), + (0x501, 'V'), + (0x502, 'M', 'ԃ'), + ] + +def _seg_9() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x503, 'V'), + (0x504, 'M', 'ԅ'), + (0x505, 'V'), + (0x506, 'M', 'ԇ'), + (0x507, 'V'), + (0x508, 'M', 'ԉ'), + (0x509, 'V'), + (0x50A, 'M', 'ԋ'), + (0x50B, 'V'), + (0x50C, 'M', 'ԍ'), + (0x50D, 'V'), + (0x50E, 'M', 'ԏ'), + (0x50F, 'V'), + (0x510, 'M', 'ԑ'), + (0x511, 'V'), + (0x512, 'M', 'ԓ'), + (0x513, 'V'), + (0x514, 'M', 'ԕ'), + (0x515, 'V'), + (0x516, 'M', 'ԗ'), + (0x517, 'V'), + (0x518, 'M', 'ԙ'), + (0x519, 'V'), + (0x51A, 'M', 'ԛ'), + (0x51B, 'V'), + (0x51C, 'M', 'ԝ'), + (0x51D, 'V'), + (0x51E, 'M', 'ԟ'), + (0x51F, 'V'), + (0x520, 'M', 'ԡ'), + (0x521, 'V'), + (0x522, 'M', 'ԣ'), + (0x523, 'V'), + (0x524, 'M', 'ԥ'), + (0x525, 'V'), + (0x526, 'M', 'ԧ'), + (0x527, 'V'), + (0x528, 'M', 'ԩ'), + (0x529, 'V'), + (0x52A, 'M', 'ԫ'), + (0x52B, 'V'), + (0x52C, 'M', 'ԭ'), + (0x52D, 'V'), + (0x52E, 'M', 'ԯ'), + (0x52F, 'V'), + (0x530, 'X'), + (0x531, 'M', 'ա'), + (0x532, 'M', 'բ'), + (0x533, 'M', 'գ'), + (0x534, 'M', 'դ'), + (0x535, 'M', 'ե'), + (0x536, 'M', 'զ'), + (0x537, 'M', 'է'), + (0x538, 'M', 'ը'), + (0x539, 'M', 'թ'), + (0x53A, 'M', 'ժ'), + (0x53B, 'M', 'ի'), + (0x53C, 'M', 'լ'), + (0x53D, 'M', 'խ'), + (0x53E, 'M', 'ծ'), + (0x53F, 'M', 'կ'), + (0x540, 'M', 'հ'), + (0x541, 'M', 'ձ'), + (0x542, 'M', 'ղ'), + (0x543, 'M', 'ճ'), + (0x544, 'M', 'մ'), + (0x545, 'M', 'յ'), + (0x546, 'M', 'ն'), + (0x547, 'M', 'շ'), + (0x548, 'M', 'ո'), + (0x549, 'M', 'չ'), + (0x54A, 'M', 'պ'), + (0x54B, 'M', 'ջ'), + (0x54C, 'M', 'ռ'), + (0x54D, 'M', 'ս'), + (0x54E, 'M', 'վ'), + (0x54F, 'M', 'տ'), + (0x550, 'M', 'ր'), + (0x551, 'M', 'ց'), + (0x552, 'M', 'ւ'), + (0x553, 'M', 'փ'), + (0x554, 'M', 'ք'), + (0x555, 'M', 'օ'), + (0x556, 'M', 'ֆ'), + (0x557, 'X'), + (0x559, 'V'), + (0x587, 'M', 'եւ'), + (0x588, 'V'), + (0x58B, 'X'), + (0x58D, 'V'), + (0x590, 'X'), + (0x591, 'V'), + (0x5C8, 'X'), + (0x5D0, 'V'), + (0x5EB, 'X'), + (0x5EF, 'V'), + (0x5F5, 'X'), + (0x606, 'V'), + (0x61C, 'X'), + (0x61D, 'V'), + ] + +def _seg_10() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x675, 'M', 'اٴ'), + (0x676, 'M', 'وٴ'), + (0x677, 'M', 'ۇٴ'), + (0x678, 'M', 'يٴ'), + (0x679, 'V'), + (0x6DD, 'X'), + (0x6DE, 'V'), + (0x70E, 'X'), + (0x710, 'V'), + (0x74B, 'X'), + (0x74D, 'V'), + (0x7B2, 'X'), + (0x7C0, 'V'), + (0x7FB, 'X'), + (0x7FD, 'V'), + (0x82E, 'X'), + (0x830, 'V'), + (0x83F, 'X'), + (0x840, 'V'), + (0x85C, 'X'), + (0x85E, 'V'), + (0x85F, 'X'), + (0x860, 'V'), + (0x86B, 'X'), + (0x870, 'V'), + (0x88F, 'X'), + (0x898, 'V'), + (0x8E2, 'X'), + (0x8E3, 'V'), + (0x958, 'M', 'क़'), + (0x959, 'M', 'ख़'), + (0x95A, 'M', 'ग़'), + (0x95B, 'M', 'ज़'), + (0x95C, 'M', 'ड़'), + (0x95D, 'M', 'ढ़'), + (0x95E, 'M', 'फ़'), + (0x95F, 'M', 'य़'), + (0x960, 'V'), + (0x984, 'X'), + (0x985, 'V'), + (0x98D, 'X'), + (0x98F, 'V'), + (0x991, 'X'), + (0x993, 'V'), + (0x9A9, 'X'), + (0x9AA, 'V'), + (0x9B1, 'X'), + (0x9B2, 'V'), + (0x9B3, 'X'), + (0x9B6, 'V'), + (0x9BA, 'X'), + (0x9BC, 'V'), + (0x9C5, 'X'), + (0x9C7, 'V'), + (0x9C9, 'X'), + (0x9CB, 'V'), + (0x9CF, 'X'), + (0x9D7, 'V'), + (0x9D8, 'X'), + (0x9DC, 'M', 'ড়'), + (0x9DD, 'M', 'ঢ়'), + (0x9DE, 'X'), + (0x9DF, 'M', 'য়'), + (0x9E0, 'V'), + (0x9E4, 'X'), + (0x9E6, 'V'), + (0x9FF, 'X'), + (0xA01, 'V'), + (0xA04, 'X'), + (0xA05, 'V'), + (0xA0B, 'X'), + (0xA0F, 'V'), + (0xA11, 'X'), + (0xA13, 'V'), + (0xA29, 'X'), + (0xA2A, 'V'), + (0xA31, 'X'), + (0xA32, 'V'), + (0xA33, 'M', 'ਲ਼'), + (0xA34, 'X'), + (0xA35, 'V'), + (0xA36, 'M', 'ਸ਼'), + (0xA37, 'X'), + (0xA38, 'V'), + (0xA3A, 'X'), + (0xA3C, 'V'), + (0xA3D, 'X'), + (0xA3E, 'V'), + (0xA43, 'X'), + (0xA47, 'V'), + (0xA49, 'X'), + (0xA4B, 'V'), + (0xA4E, 'X'), + (0xA51, 'V'), + (0xA52, 'X'), + (0xA59, 'M', 'ਖ਼'), + (0xA5A, 'M', 'ਗ਼'), + (0xA5B, 'M', 'ਜ਼'), + (0xA5C, 'V'), + (0xA5D, 'X'), + ] + +def _seg_11() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xA5E, 'M', 'ਫ਼'), + (0xA5F, 'X'), + (0xA66, 'V'), + (0xA77, 'X'), + (0xA81, 'V'), + (0xA84, 'X'), + (0xA85, 'V'), + (0xA8E, 'X'), + (0xA8F, 'V'), + (0xA92, 'X'), + (0xA93, 'V'), + (0xAA9, 'X'), + (0xAAA, 'V'), + (0xAB1, 'X'), + (0xAB2, 'V'), + (0xAB4, 'X'), + (0xAB5, 'V'), + (0xABA, 'X'), + (0xABC, 'V'), + (0xAC6, 'X'), + (0xAC7, 'V'), + (0xACA, 'X'), + (0xACB, 'V'), + (0xACE, 'X'), + (0xAD0, 'V'), + (0xAD1, 'X'), + (0xAE0, 'V'), + (0xAE4, 'X'), + (0xAE6, 'V'), + (0xAF2, 'X'), + (0xAF9, 'V'), + (0xB00, 'X'), + (0xB01, 'V'), + (0xB04, 'X'), + (0xB05, 'V'), + (0xB0D, 'X'), + (0xB0F, 'V'), + (0xB11, 'X'), + (0xB13, 'V'), + (0xB29, 'X'), + (0xB2A, 'V'), + (0xB31, 'X'), + (0xB32, 'V'), + (0xB34, 'X'), + (0xB35, 'V'), + (0xB3A, 'X'), + (0xB3C, 'V'), + (0xB45, 'X'), + (0xB47, 'V'), + (0xB49, 'X'), + (0xB4B, 'V'), + (0xB4E, 'X'), + (0xB55, 'V'), + (0xB58, 'X'), + (0xB5C, 'M', 'ଡ଼'), + (0xB5D, 'M', 'ଢ଼'), + (0xB5E, 'X'), + (0xB5F, 'V'), + (0xB64, 'X'), + (0xB66, 'V'), + (0xB78, 'X'), + (0xB82, 'V'), + (0xB84, 'X'), + (0xB85, 'V'), + (0xB8B, 'X'), + (0xB8E, 'V'), + (0xB91, 'X'), + (0xB92, 'V'), + (0xB96, 'X'), + (0xB99, 'V'), + (0xB9B, 'X'), + (0xB9C, 'V'), + (0xB9D, 'X'), + (0xB9E, 'V'), + (0xBA0, 'X'), + (0xBA3, 'V'), + (0xBA5, 'X'), + (0xBA8, 'V'), + (0xBAB, 'X'), + (0xBAE, 'V'), + (0xBBA, 'X'), + (0xBBE, 'V'), + (0xBC3, 'X'), + (0xBC6, 'V'), + (0xBC9, 'X'), + (0xBCA, 'V'), + (0xBCE, 'X'), + (0xBD0, 'V'), + (0xBD1, 'X'), + (0xBD7, 'V'), + (0xBD8, 'X'), + (0xBE6, 'V'), + (0xBFB, 'X'), + (0xC00, 'V'), + (0xC0D, 'X'), + (0xC0E, 'V'), + (0xC11, 'X'), + (0xC12, 'V'), + (0xC29, 'X'), + (0xC2A, 'V'), + ] + +def _seg_12() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xC3A, 'X'), + (0xC3C, 'V'), + (0xC45, 'X'), + (0xC46, 'V'), + (0xC49, 'X'), + (0xC4A, 'V'), + (0xC4E, 'X'), + (0xC55, 'V'), + (0xC57, 'X'), + (0xC58, 'V'), + (0xC5B, 'X'), + (0xC5D, 'V'), + (0xC5E, 'X'), + (0xC60, 'V'), + (0xC64, 'X'), + (0xC66, 'V'), + (0xC70, 'X'), + (0xC77, 'V'), + (0xC8D, 'X'), + (0xC8E, 'V'), + (0xC91, 'X'), + (0xC92, 'V'), + (0xCA9, 'X'), + (0xCAA, 'V'), + (0xCB4, 'X'), + (0xCB5, 'V'), + (0xCBA, 'X'), + (0xCBC, 'V'), + (0xCC5, 'X'), + (0xCC6, 'V'), + (0xCC9, 'X'), + (0xCCA, 'V'), + (0xCCE, 'X'), + (0xCD5, 'V'), + (0xCD7, 'X'), + (0xCDD, 'V'), + (0xCDF, 'X'), + (0xCE0, 'V'), + (0xCE4, 'X'), + (0xCE6, 'V'), + (0xCF0, 'X'), + (0xCF1, 'V'), + (0xCF4, 'X'), + (0xD00, 'V'), + (0xD0D, 'X'), + (0xD0E, 'V'), + (0xD11, 'X'), + (0xD12, 'V'), + (0xD45, 'X'), + (0xD46, 'V'), + (0xD49, 'X'), + (0xD4A, 'V'), + (0xD50, 'X'), + (0xD54, 'V'), + (0xD64, 'X'), + (0xD66, 'V'), + (0xD80, 'X'), + (0xD81, 'V'), + (0xD84, 'X'), + (0xD85, 'V'), + (0xD97, 'X'), + (0xD9A, 'V'), + (0xDB2, 'X'), + (0xDB3, 'V'), + (0xDBC, 'X'), + (0xDBD, 'V'), + (0xDBE, 'X'), + (0xDC0, 'V'), + (0xDC7, 'X'), + (0xDCA, 'V'), + (0xDCB, 'X'), + (0xDCF, 'V'), + (0xDD5, 'X'), + (0xDD6, 'V'), + (0xDD7, 'X'), + (0xDD8, 'V'), + (0xDE0, 'X'), + (0xDE6, 'V'), + (0xDF0, 'X'), + (0xDF2, 'V'), + (0xDF5, 'X'), + (0xE01, 'V'), + (0xE33, 'M', 'ํา'), + (0xE34, 'V'), + (0xE3B, 'X'), + (0xE3F, 'V'), + (0xE5C, 'X'), + (0xE81, 'V'), + (0xE83, 'X'), + (0xE84, 'V'), + (0xE85, 'X'), + (0xE86, 'V'), + (0xE8B, 'X'), + (0xE8C, 'V'), + (0xEA4, 'X'), + (0xEA5, 'V'), + (0xEA6, 'X'), + (0xEA7, 'V'), + (0xEB3, 'M', 'ໍາ'), + (0xEB4, 'V'), + ] + +def _seg_13() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xEBE, 'X'), + (0xEC0, 'V'), + (0xEC5, 'X'), + (0xEC6, 'V'), + (0xEC7, 'X'), + (0xEC8, 'V'), + (0xECF, 'X'), + (0xED0, 'V'), + (0xEDA, 'X'), + (0xEDC, 'M', 'ຫນ'), + (0xEDD, 'M', 'ຫມ'), + (0xEDE, 'V'), + (0xEE0, 'X'), + (0xF00, 'V'), + (0xF0C, 'M', '་'), + (0xF0D, 'V'), + (0xF43, 'M', 'གྷ'), + (0xF44, 'V'), + (0xF48, 'X'), + (0xF49, 'V'), + (0xF4D, 'M', 'ཌྷ'), + (0xF4E, 'V'), + (0xF52, 'M', 'དྷ'), + (0xF53, 'V'), + (0xF57, 'M', 'བྷ'), + (0xF58, 'V'), + (0xF5C, 'M', 'ཛྷ'), + (0xF5D, 'V'), + (0xF69, 'M', 'ཀྵ'), + (0xF6A, 'V'), + (0xF6D, 'X'), + (0xF71, 'V'), + (0xF73, 'M', 'ཱི'), + (0xF74, 'V'), + (0xF75, 'M', 'ཱུ'), + (0xF76, 'M', 'ྲྀ'), + (0xF77, 'M', 'ྲཱྀ'), + (0xF78, 'M', 'ླྀ'), + (0xF79, 'M', 'ླཱྀ'), + (0xF7A, 'V'), + (0xF81, 'M', 'ཱྀ'), + (0xF82, 'V'), + (0xF93, 'M', 'ྒྷ'), + (0xF94, 'V'), + (0xF98, 'X'), + (0xF99, 'V'), + (0xF9D, 'M', 'ྜྷ'), + (0xF9E, 'V'), + (0xFA2, 'M', 'ྡྷ'), + (0xFA3, 'V'), + (0xFA7, 'M', 'ྦྷ'), + (0xFA8, 'V'), + (0xFAC, 'M', 'ྫྷ'), + (0xFAD, 'V'), + (0xFB9, 'M', 'ྐྵ'), + (0xFBA, 'V'), + (0xFBD, 'X'), + (0xFBE, 'V'), + (0xFCD, 'X'), + (0xFCE, 'V'), + (0xFDB, 'X'), + (0x1000, 'V'), + (0x10A0, 'X'), + (0x10C7, 'M', 'ⴧ'), + (0x10C8, 'X'), + (0x10CD, 'M', 'ⴭ'), + (0x10CE, 'X'), + (0x10D0, 'V'), + (0x10FC, 'M', 'ნ'), + (0x10FD, 'V'), + (0x115F, 'X'), + (0x1161, 'V'), + (0x1249, 'X'), + (0x124A, 'V'), + (0x124E, 'X'), + (0x1250, 'V'), + (0x1257, 'X'), + (0x1258, 'V'), + (0x1259, 'X'), + (0x125A, 'V'), + (0x125E, 'X'), + (0x1260, 'V'), + (0x1289, 'X'), + (0x128A, 'V'), + (0x128E, 'X'), + (0x1290, 'V'), + (0x12B1, 'X'), + (0x12B2, 'V'), + (0x12B6, 'X'), + (0x12B8, 'V'), + (0x12BF, 'X'), + (0x12C0, 'V'), + (0x12C1, 'X'), + (0x12C2, 'V'), + (0x12C6, 'X'), + (0x12C8, 'V'), + (0x12D7, 'X'), + (0x12D8, 'V'), + (0x1311, 'X'), + (0x1312, 'V'), + ] + +def _seg_14() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1316, 'X'), + (0x1318, 'V'), + (0x135B, 'X'), + (0x135D, 'V'), + (0x137D, 'X'), + (0x1380, 'V'), + (0x139A, 'X'), + (0x13A0, 'V'), + (0x13F6, 'X'), + (0x13F8, 'M', 'Ᏸ'), + (0x13F9, 'M', 'Ᏹ'), + (0x13FA, 'M', 'Ᏺ'), + (0x13FB, 'M', 'Ᏻ'), + (0x13FC, 'M', 'Ᏼ'), + (0x13FD, 'M', 'Ᏽ'), + (0x13FE, 'X'), + (0x1400, 'V'), + (0x1680, 'X'), + (0x1681, 'V'), + (0x169D, 'X'), + (0x16A0, 'V'), + (0x16F9, 'X'), + (0x1700, 'V'), + (0x1716, 'X'), + (0x171F, 'V'), + (0x1737, 'X'), + (0x1740, 'V'), + (0x1754, 'X'), + (0x1760, 'V'), + (0x176D, 'X'), + (0x176E, 'V'), + (0x1771, 'X'), + (0x1772, 'V'), + (0x1774, 'X'), + (0x1780, 'V'), + (0x17B4, 'X'), + (0x17B6, 'V'), + (0x17DE, 'X'), + (0x17E0, 'V'), + (0x17EA, 'X'), + (0x17F0, 'V'), + (0x17FA, 'X'), + (0x1800, 'V'), + (0x1806, 'X'), + (0x1807, 'V'), + (0x180B, 'I'), + (0x180E, 'X'), + (0x180F, 'I'), + (0x1810, 'V'), + (0x181A, 'X'), + (0x1820, 'V'), + (0x1879, 'X'), + (0x1880, 'V'), + (0x18AB, 'X'), + (0x18B0, 'V'), + (0x18F6, 'X'), + (0x1900, 'V'), + (0x191F, 'X'), + (0x1920, 'V'), + (0x192C, 'X'), + (0x1930, 'V'), + (0x193C, 'X'), + (0x1940, 'V'), + (0x1941, 'X'), + (0x1944, 'V'), + (0x196E, 'X'), + (0x1970, 'V'), + (0x1975, 'X'), + (0x1980, 'V'), + (0x19AC, 'X'), + (0x19B0, 'V'), + (0x19CA, 'X'), + (0x19D0, 'V'), + (0x19DB, 'X'), + (0x19DE, 'V'), + (0x1A1C, 'X'), + (0x1A1E, 'V'), + (0x1A5F, 'X'), + (0x1A60, 'V'), + (0x1A7D, 'X'), + (0x1A7F, 'V'), + (0x1A8A, 'X'), + (0x1A90, 'V'), + (0x1A9A, 'X'), + (0x1AA0, 'V'), + (0x1AAE, 'X'), + (0x1AB0, 'V'), + (0x1ACF, 'X'), + (0x1B00, 'V'), + (0x1B4D, 'X'), + (0x1B50, 'V'), + (0x1B7F, 'X'), + (0x1B80, 'V'), + (0x1BF4, 'X'), + (0x1BFC, 'V'), + (0x1C38, 'X'), + (0x1C3B, 'V'), + (0x1C4A, 'X'), + (0x1C4D, 'V'), + (0x1C80, 'M', 'в'), + ] + +def _seg_15() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1C81, 'M', 'д'), + (0x1C82, 'M', 'о'), + (0x1C83, 'M', 'с'), + (0x1C84, 'M', 'т'), + (0x1C86, 'M', 'ъ'), + (0x1C87, 'M', 'ѣ'), + (0x1C88, 'M', 'ꙋ'), + (0x1C89, 'X'), + (0x1C90, 'M', 'ა'), + (0x1C91, 'M', 'ბ'), + (0x1C92, 'M', 'გ'), + (0x1C93, 'M', 'დ'), + (0x1C94, 'M', 'ე'), + (0x1C95, 'M', 'ვ'), + (0x1C96, 'M', 'ზ'), + (0x1C97, 'M', 'თ'), + (0x1C98, 'M', 'ი'), + (0x1C99, 'M', 'კ'), + (0x1C9A, 'M', 'ლ'), + (0x1C9B, 'M', 'მ'), + (0x1C9C, 'M', 'ნ'), + (0x1C9D, 'M', 'ო'), + (0x1C9E, 'M', 'პ'), + (0x1C9F, 'M', 'ჟ'), + (0x1CA0, 'M', 'რ'), + (0x1CA1, 'M', 'ს'), + (0x1CA2, 'M', 'ტ'), + (0x1CA3, 'M', 'უ'), + (0x1CA4, 'M', 'ფ'), + (0x1CA5, 'M', 'ქ'), + (0x1CA6, 'M', 'ღ'), + (0x1CA7, 'M', 'ყ'), + (0x1CA8, 'M', 'შ'), + (0x1CA9, 'M', 'ჩ'), + (0x1CAA, 'M', 'ც'), + (0x1CAB, 'M', 'ძ'), + (0x1CAC, 'M', 'წ'), + (0x1CAD, 'M', 'ჭ'), + (0x1CAE, 'M', 'ხ'), + (0x1CAF, 'M', 'ჯ'), + (0x1CB0, 'M', 'ჰ'), + (0x1CB1, 'M', 'ჱ'), + (0x1CB2, 'M', 'ჲ'), + (0x1CB3, 'M', 'ჳ'), + (0x1CB4, 'M', 'ჴ'), + (0x1CB5, 'M', 'ჵ'), + (0x1CB6, 'M', 'ჶ'), + (0x1CB7, 'M', 'ჷ'), + (0x1CB8, 'M', 'ჸ'), + (0x1CB9, 'M', 'ჹ'), + (0x1CBA, 'M', 'ჺ'), + (0x1CBB, 'X'), + (0x1CBD, 'M', 'ჽ'), + (0x1CBE, 'M', 'ჾ'), + (0x1CBF, 'M', 'ჿ'), + (0x1CC0, 'V'), + (0x1CC8, 'X'), + (0x1CD0, 'V'), + (0x1CFB, 'X'), + (0x1D00, 'V'), + (0x1D2C, 'M', 'a'), + (0x1D2D, 'M', 'æ'), + (0x1D2E, 'M', 'b'), + (0x1D2F, 'V'), + (0x1D30, 'M', 'd'), + (0x1D31, 'M', 'e'), + (0x1D32, 'M', 'ǝ'), + (0x1D33, 'M', 'g'), + (0x1D34, 'M', 'h'), + (0x1D35, 'M', 'i'), + (0x1D36, 'M', 'j'), + (0x1D37, 'M', 'k'), + (0x1D38, 'M', 'l'), + (0x1D39, 'M', 'm'), + (0x1D3A, 'M', 'n'), + (0x1D3B, 'V'), + (0x1D3C, 'M', 'o'), + (0x1D3D, 'M', 'ȣ'), + (0x1D3E, 'M', 'p'), + (0x1D3F, 'M', 'r'), + (0x1D40, 'M', 't'), + (0x1D41, 'M', 'u'), + (0x1D42, 'M', 'w'), + (0x1D43, 'M', 'a'), + (0x1D44, 'M', 'ɐ'), + (0x1D45, 'M', 'ɑ'), + (0x1D46, 'M', 'ᴂ'), + (0x1D47, 'M', 'b'), + (0x1D48, 'M', 'd'), + (0x1D49, 'M', 'e'), + (0x1D4A, 'M', 'ə'), + (0x1D4B, 'M', 'ɛ'), + (0x1D4C, 'M', 'ɜ'), + (0x1D4D, 'M', 'g'), + (0x1D4E, 'V'), + (0x1D4F, 'M', 'k'), + (0x1D50, 'M', 'm'), + (0x1D51, 'M', 'ŋ'), + (0x1D52, 'M', 'o'), + (0x1D53, 'M', 'ɔ'), + ] + +def _seg_16() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D54, 'M', 'ᴖ'), + (0x1D55, 'M', 'ᴗ'), + (0x1D56, 'M', 'p'), + (0x1D57, 'M', 't'), + (0x1D58, 'M', 'u'), + (0x1D59, 'M', 'ᴝ'), + (0x1D5A, 'M', 'ɯ'), + (0x1D5B, 'M', 'v'), + (0x1D5C, 'M', 'ᴥ'), + (0x1D5D, 'M', 'β'), + (0x1D5E, 'M', 'γ'), + (0x1D5F, 'M', 'δ'), + (0x1D60, 'M', 'φ'), + (0x1D61, 'M', 'χ'), + (0x1D62, 'M', 'i'), + (0x1D63, 'M', 'r'), + (0x1D64, 'M', 'u'), + (0x1D65, 'M', 'v'), + (0x1D66, 'M', 'β'), + (0x1D67, 'M', 'γ'), + (0x1D68, 'M', 'ρ'), + (0x1D69, 'M', 'φ'), + (0x1D6A, 'M', 'χ'), + (0x1D6B, 'V'), + (0x1D78, 'M', 'н'), + (0x1D79, 'V'), + (0x1D9B, 'M', 'ɒ'), + (0x1D9C, 'M', 'c'), + (0x1D9D, 'M', 'ɕ'), + (0x1D9E, 'M', 'ð'), + (0x1D9F, 'M', 'ɜ'), + (0x1DA0, 'M', 'f'), + (0x1DA1, 'M', 'ɟ'), + (0x1DA2, 'M', 'ɡ'), + (0x1DA3, 'M', 'ɥ'), + (0x1DA4, 'M', 'ɨ'), + (0x1DA5, 'M', 'ɩ'), + (0x1DA6, 'M', 'ɪ'), + (0x1DA7, 'M', 'ᵻ'), + (0x1DA8, 'M', 'ʝ'), + (0x1DA9, 'M', 'ɭ'), + (0x1DAA, 'M', 'ᶅ'), + (0x1DAB, 'M', 'ʟ'), + (0x1DAC, 'M', 'ɱ'), + (0x1DAD, 'M', 'ɰ'), + (0x1DAE, 'M', 'ɲ'), + (0x1DAF, 'M', 'ɳ'), + (0x1DB0, 'M', 'ɴ'), + (0x1DB1, 'M', 'ɵ'), + (0x1DB2, 'M', 'ɸ'), + (0x1DB3, 'M', 'ʂ'), + (0x1DB4, 'M', 'ʃ'), + (0x1DB5, 'M', 'ƫ'), + (0x1DB6, 'M', 'ʉ'), + (0x1DB7, 'M', 'ʊ'), + (0x1DB8, 'M', 'ᴜ'), + (0x1DB9, 'M', 'ʋ'), + (0x1DBA, 'M', 'ʌ'), + (0x1DBB, 'M', 'z'), + (0x1DBC, 'M', 'ʐ'), + (0x1DBD, 'M', 'ʑ'), + (0x1DBE, 'M', 'ʒ'), + (0x1DBF, 'M', 'θ'), + (0x1DC0, 'V'), + (0x1E00, 'M', 'ḁ'), + (0x1E01, 'V'), + (0x1E02, 'M', 'ḃ'), + (0x1E03, 'V'), + (0x1E04, 'M', 'ḅ'), + (0x1E05, 'V'), + (0x1E06, 'M', 'ḇ'), + (0x1E07, 'V'), + (0x1E08, 'M', 'ḉ'), + (0x1E09, 'V'), + (0x1E0A, 'M', 'ḋ'), + (0x1E0B, 'V'), + (0x1E0C, 'M', 'ḍ'), + (0x1E0D, 'V'), + (0x1E0E, 'M', 'ḏ'), + (0x1E0F, 'V'), + (0x1E10, 'M', 'ḑ'), + (0x1E11, 'V'), + (0x1E12, 'M', 'ḓ'), + (0x1E13, 'V'), + (0x1E14, 'M', 'ḕ'), + (0x1E15, 'V'), + (0x1E16, 'M', 'ḗ'), + (0x1E17, 'V'), + (0x1E18, 'M', 'ḙ'), + (0x1E19, 'V'), + (0x1E1A, 'M', 'ḛ'), + (0x1E1B, 'V'), + (0x1E1C, 'M', 'ḝ'), + (0x1E1D, 'V'), + (0x1E1E, 'M', 'ḟ'), + (0x1E1F, 'V'), + (0x1E20, 'M', 'ḡ'), + (0x1E21, 'V'), + (0x1E22, 'M', 'ḣ'), + (0x1E23, 'V'), + ] + +def _seg_17() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1E24, 'M', 'ḥ'), + (0x1E25, 'V'), + (0x1E26, 'M', 'ḧ'), + (0x1E27, 'V'), + (0x1E28, 'M', 'ḩ'), + (0x1E29, 'V'), + (0x1E2A, 'M', 'ḫ'), + (0x1E2B, 'V'), + (0x1E2C, 'M', 'ḭ'), + (0x1E2D, 'V'), + (0x1E2E, 'M', 'ḯ'), + (0x1E2F, 'V'), + (0x1E30, 'M', 'ḱ'), + (0x1E31, 'V'), + (0x1E32, 'M', 'ḳ'), + (0x1E33, 'V'), + (0x1E34, 'M', 'ḵ'), + (0x1E35, 'V'), + (0x1E36, 'M', 'ḷ'), + (0x1E37, 'V'), + (0x1E38, 'M', 'ḹ'), + (0x1E39, 'V'), + (0x1E3A, 'M', 'ḻ'), + (0x1E3B, 'V'), + (0x1E3C, 'M', 'ḽ'), + (0x1E3D, 'V'), + (0x1E3E, 'M', 'ḿ'), + (0x1E3F, 'V'), + (0x1E40, 'M', 'ṁ'), + (0x1E41, 'V'), + (0x1E42, 'M', 'ṃ'), + (0x1E43, 'V'), + (0x1E44, 'M', 'ṅ'), + (0x1E45, 'V'), + (0x1E46, 'M', 'ṇ'), + (0x1E47, 'V'), + (0x1E48, 'M', 'ṉ'), + (0x1E49, 'V'), + (0x1E4A, 'M', 'ṋ'), + (0x1E4B, 'V'), + (0x1E4C, 'M', 'ṍ'), + (0x1E4D, 'V'), + (0x1E4E, 'M', 'ṏ'), + (0x1E4F, 'V'), + (0x1E50, 'M', 'ṑ'), + (0x1E51, 'V'), + (0x1E52, 'M', 'ṓ'), + (0x1E53, 'V'), + (0x1E54, 'M', 'ṕ'), + (0x1E55, 'V'), + (0x1E56, 'M', 'ṗ'), + (0x1E57, 'V'), + (0x1E58, 'M', 'ṙ'), + (0x1E59, 'V'), + (0x1E5A, 'M', 'ṛ'), + (0x1E5B, 'V'), + (0x1E5C, 'M', 'ṝ'), + (0x1E5D, 'V'), + (0x1E5E, 'M', 'ṟ'), + (0x1E5F, 'V'), + (0x1E60, 'M', 'ṡ'), + (0x1E61, 'V'), + (0x1E62, 'M', 'ṣ'), + (0x1E63, 'V'), + (0x1E64, 'M', 'ṥ'), + (0x1E65, 'V'), + (0x1E66, 'M', 'ṧ'), + (0x1E67, 'V'), + (0x1E68, 'M', 'ṩ'), + (0x1E69, 'V'), + (0x1E6A, 'M', 'ṫ'), + (0x1E6B, 'V'), + (0x1E6C, 'M', 'ṭ'), + (0x1E6D, 'V'), + (0x1E6E, 'M', 'ṯ'), + (0x1E6F, 'V'), + (0x1E70, 'M', 'ṱ'), + (0x1E71, 'V'), + (0x1E72, 'M', 'ṳ'), + (0x1E73, 'V'), + (0x1E74, 'M', 'ṵ'), + (0x1E75, 'V'), + (0x1E76, 'M', 'ṷ'), + (0x1E77, 'V'), + (0x1E78, 'M', 'ṹ'), + (0x1E79, 'V'), + (0x1E7A, 'M', 'ṻ'), + (0x1E7B, 'V'), + (0x1E7C, 'M', 'ṽ'), + (0x1E7D, 'V'), + (0x1E7E, 'M', 'ṿ'), + (0x1E7F, 'V'), + (0x1E80, 'M', 'ẁ'), + (0x1E81, 'V'), + (0x1E82, 'M', 'ẃ'), + (0x1E83, 'V'), + (0x1E84, 'M', 'ẅ'), + (0x1E85, 'V'), + (0x1E86, 'M', 'ẇ'), + (0x1E87, 'V'), + ] + +def _seg_18() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1E88, 'M', 'ẉ'), + (0x1E89, 'V'), + (0x1E8A, 'M', 'ẋ'), + (0x1E8B, 'V'), + (0x1E8C, 'M', 'ẍ'), + (0x1E8D, 'V'), + (0x1E8E, 'M', 'ẏ'), + (0x1E8F, 'V'), + (0x1E90, 'M', 'ẑ'), + (0x1E91, 'V'), + (0x1E92, 'M', 'ẓ'), + (0x1E93, 'V'), + (0x1E94, 'M', 'ẕ'), + (0x1E95, 'V'), + (0x1E9A, 'M', 'aʾ'), + (0x1E9B, 'M', 'ṡ'), + (0x1E9C, 'V'), + (0x1E9E, 'M', 'ss'), + (0x1E9F, 'V'), + (0x1EA0, 'M', 'ạ'), + (0x1EA1, 'V'), + (0x1EA2, 'M', 'ả'), + (0x1EA3, 'V'), + (0x1EA4, 'M', 'ấ'), + (0x1EA5, 'V'), + (0x1EA6, 'M', 'ầ'), + (0x1EA7, 'V'), + (0x1EA8, 'M', 'ẩ'), + (0x1EA9, 'V'), + (0x1EAA, 'M', 'ẫ'), + (0x1EAB, 'V'), + (0x1EAC, 'M', 'ậ'), + (0x1EAD, 'V'), + (0x1EAE, 'M', 'ắ'), + (0x1EAF, 'V'), + (0x1EB0, 'M', 'ằ'), + (0x1EB1, 'V'), + (0x1EB2, 'M', 'ẳ'), + (0x1EB3, 'V'), + (0x1EB4, 'M', 'ẵ'), + (0x1EB5, 'V'), + (0x1EB6, 'M', 'ặ'), + (0x1EB7, 'V'), + (0x1EB8, 'M', 'ẹ'), + (0x1EB9, 'V'), + (0x1EBA, 'M', 'ẻ'), + (0x1EBB, 'V'), + (0x1EBC, 'M', 'ẽ'), + (0x1EBD, 'V'), + (0x1EBE, 'M', 'ế'), + (0x1EBF, 'V'), + (0x1EC0, 'M', 'ề'), + (0x1EC1, 'V'), + (0x1EC2, 'M', 'ể'), + (0x1EC3, 'V'), + (0x1EC4, 'M', 'ễ'), + (0x1EC5, 'V'), + (0x1EC6, 'M', 'ệ'), + (0x1EC7, 'V'), + (0x1EC8, 'M', 'ỉ'), + (0x1EC9, 'V'), + (0x1ECA, 'M', 'ị'), + (0x1ECB, 'V'), + (0x1ECC, 'M', 'ọ'), + (0x1ECD, 'V'), + (0x1ECE, 'M', 'ỏ'), + (0x1ECF, 'V'), + (0x1ED0, 'M', 'ố'), + (0x1ED1, 'V'), + (0x1ED2, 'M', 'ồ'), + (0x1ED3, 'V'), + (0x1ED4, 'M', 'ổ'), + (0x1ED5, 'V'), + (0x1ED6, 'M', 'ỗ'), + (0x1ED7, 'V'), + (0x1ED8, 'M', 'ộ'), + (0x1ED9, 'V'), + (0x1EDA, 'M', 'ớ'), + (0x1EDB, 'V'), + (0x1EDC, 'M', 'ờ'), + (0x1EDD, 'V'), + (0x1EDE, 'M', 'ở'), + (0x1EDF, 'V'), + (0x1EE0, 'M', 'ỡ'), + (0x1EE1, 'V'), + (0x1EE2, 'M', 'ợ'), + (0x1EE3, 'V'), + (0x1EE4, 'M', 'ụ'), + (0x1EE5, 'V'), + (0x1EE6, 'M', 'ủ'), + (0x1EE7, 'V'), + (0x1EE8, 'M', 'ứ'), + (0x1EE9, 'V'), + (0x1EEA, 'M', 'ừ'), + (0x1EEB, 'V'), + (0x1EEC, 'M', 'ử'), + (0x1EED, 'V'), + (0x1EEE, 'M', 'ữ'), + (0x1EEF, 'V'), + (0x1EF0, 'M', 'ự'), + ] + +def _seg_19() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1EF1, 'V'), + (0x1EF2, 'M', 'ỳ'), + (0x1EF3, 'V'), + (0x1EF4, 'M', 'ỵ'), + (0x1EF5, 'V'), + (0x1EF6, 'M', 'ỷ'), + (0x1EF7, 'V'), + (0x1EF8, 'M', 'ỹ'), + (0x1EF9, 'V'), + (0x1EFA, 'M', 'ỻ'), + (0x1EFB, 'V'), + (0x1EFC, 'M', 'ỽ'), + (0x1EFD, 'V'), + (0x1EFE, 'M', 'ỿ'), + (0x1EFF, 'V'), + (0x1F08, 'M', 'ἀ'), + (0x1F09, 'M', 'ἁ'), + (0x1F0A, 'M', 'ἂ'), + (0x1F0B, 'M', 'ἃ'), + (0x1F0C, 'M', 'ἄ'), + (0x1F0D, 'M', 'ἅ'), + (0x1F0E, 'M', 'ἆ'), + (0x1F0F, 'M', 'ἇ'), + (0x1F10, 'V'), + (0x1F16, 'X'), + (0x1F18, 'M', 'ἐ'), + (0x1F19, 'M', 'ἑ'), + (0x1F1A, 'M', 'ἒ'), + (0x1F1B, 'M', 'ἓ'), + (0x1F1C, 'M', 'ἔ'), + (0x1F1D, 'M', 'ἕ'), + (0x1F1E, 'X'), + (0x1F20, 'V'), + (0x1F28, 'M', 'ἠ'), + (0x1F29, 'M', 'ἡ'), + (0x1F2A, 'M', 'ἢ'), + (0x1F2B, 'M', 'ἣ'), + (0x1F2C, 'M', 'ἤ'), + (0x1F2D, 'M', 'ἥ'), + (0x1F2E, 'M', 'ἦ'), + (0x1F2F, 'M', 'ἧ'), + (0x1F30, 'V'), + (0x1F38, 'M', 'ἰ'), + (0x1F39, 'M', 'ἱ'), + (0x1F3A, 'M', 'ἲ'), + (0x1F3B, 'M', 'ἳ'), + (0x1F3C, 'M', 'ἴ'), + (0x1F3D, 'M', 'ἵ'), + (0x1F3E, 'M', 'ἶ'), + (0x1F3F, 'M', 'ἷ'), + (0x1F40, 'V'), + (0x1F46, 'X'), + (0x1F48, 'M', 'ὀ'), + (0x1F49, 'M', 'ὁ'), + (0x1F4A, 'M', 'ὂ'), + (0x1F4B, 'M', 'ὃ'), + (0x1F4C, 'M', 'ὄ'), + (0x1F4D, 'M', 'ὅ'), + (0x1F4E, 'X'), + (0x1F50, 'V'), + (0x1F58, 'X'), + (0x1F59, 'M', 'ὑ'), + (0x1F5A, 'X'), + (0x1F5B, 'M', 'ὓ'), + (0x1F5C, 'X'), + (0x1F5D, 'M', 'ὕ'), + (0x1F5E, 'X'), + (0x1F5F, 'M', 'ὗ'), + (0x1F60, 'V'), + (0x1F68, 'M', 'ὠ'), + (0x1F69, 'M', 'ὡ'), + (0x1F6A, 'M', 'ὢ'), + (0x1F6B, 'M', 'ὣ'), + (0x1F6C, 'M', 'ὤ'), + (0x1F6D, 'M', 'ὥ'), + (0x1F6E, 'M', 'ὦ'), + (0x1F6F, 'M', 'ὧ'), + (0x1F70, 'V'), + (0x1F71, 'M', 'ά'), + (0x1F72, 'V'), + (0x1F73, 'M', 'έ'), + (0x1F74, 'V'), + (0x1F75, 'M', 'ή'), + (0x1F76, 'V'), + (0x1F77, 'M', 'ί'), + (0x1F78, 'V'), + (0x1F79, 'M', 'ό'), + (0x1F7A, 'V'), + (0x1F7B, 'M', 'ύ'), + (0x1F7C, 'V'), + (0x1F7D, 'M', 'ώ'), + (0x1F7E, 'X'), + (0x1F80, 'M', 'ἀι'), + (0x1F81, 'M', 'ἁι'), + (0x1F82, 'M', 'ἂι'), + (0x1F83, 'M', 'ἃι'), + (0x1F84, 'M', 'ἄι'), + (0x1F85, 'M', 'ἅι'), + (0x1F86, 'M', 'ἆι'), + (0x1F87, 'M', 'ἇι'), + ] + +def _seg_20() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1F88, 'M', 'ἀι'), + (0x1F89, 'M', 'ἁι'), + (0x1F8A, 'M', 'ἂι'), + (0x1F8B, 'M', 'ἃι'), + (0x1F8C, 'M', 'ἄι'), + (0x1F8D, 'M', 'ἅι'), + (0x1F8E, 'M', 'ἆι'), + (0x1F8F, 'M', 'ἇι'), + (0x1F90, 'M', 'ἠι'), + (0x1F91, 'M', 'ἡι'), + (0x1F92, 'M', 'ἢι'), + (0x1F93, 'M', 'ἣι'), + (0x1F94, 'M', 'ἤι'), + (0x1F95, 'M', 'ἥι'), + (0x1F96, 'M', 'ἦι'), + (0x1F97, 'M', 'ἧι'), + (0x1F98, 'M', 'ἠι'), + (0x1F99, 'M', 'ἡι'), + (0x1F9A, 'M', 'ἢι'), + (0x1F9B, 'M', 'ἣι'), + (0x1F9C, 'M', 'ἤι'), + (0x1F9D, 'M', 'ἥι'), + (0x1F9E, 'M', 'ἦι'), + (0x1F9F, 'M', 'ἧι'), + (0x1FA0, 'M', 'ὠι'), + (0x1FA1, 'M', 'ὡι'), + (0x1FA2, 'M', 'ὢι'), + (0x1FA3, 'M', 'ὣι'), + (0x1FA4, 'M', 'ὤι'), + (0x1FA5, 'M', 'ὥι'), + (0x1FA6, 'M', 'ὦι'), + (0x1FA7, 'M', 'ὧι'), + (0x1FA8, 'M', 'ὠι'), + (0x1FA9, 'M', 'ὡι'), + (0x1FAA, 'M', 'ὢι'), + (0x1FAB, 'M', 'ὣι'), + (0x1FAC, 'M', 'ὤι'), + (0x1FAD, 'M', 'ὥι'), + (0x1FAE, 'M', 'ὦι'), + (0x1FAF, 'M', 'ὧι'), + (0x1FB0, 'V'), + (0x1FB2, 'M', 'ὰι'), + (0x1FB3, 'M', 'αι'), + (0x1FB4, 'M', 'άι'), + (0x1FB5, 'X'), + (0x1FB6, 'V'), + (0x1FB7, 'M', 'ᾶι'), + (0x1FB8, 'M', 'ᾰ'), + (0x1FB9, 'M', 'ᾱ'), + (0x1FBA, 'M', 'ὰ'), + (0x1FBB, 'M', 'ά'), + (0x1FBC, 'M', 'αι'), + (0x1FBD, '3', ' ̓'), + (0x1FBE, 'M', 'ι'), + (0x1FBF, '3', ' ̓'), + (0x1FC0, '3', ' ͂'), + (0x1FC1, '3', ' ̈͂'), + (0x1FC2, 'M', 'ὴι'), + (0x1FC3, 'M', 'ηι'), + (0x1FC4, 'M', 'ήι'), + (0x1FC5, 'X'), + (0x1FC6, 'V'), + (0x1FC7, 'M', 'ῆι'), + (0x1FC8, 'M', 'ὲ'), + (0x1FC9, 'M', 'έ'), + (0x1FCA, 'M', 'ὴ'), + (0x1FCB, 'M', 'ή'), + (0x1FCC, 'M', 'ηι'), + (0x1FCD, '3', ' ̓̀'), + (0x1FCE, '3', ' ̓́'), + (0x1FCF, '3', ' ̓͂'), + (0x1FD0, 'V'), + (0x1FD3, 'M', 'ΐ'), + (0x1FD4, 'X'), + (0x1FD6, 'V'), + (0x1FD8, 'M', 'ῐ'), + (0x1FD9, 'M', 'ῑ'), + (0x1FDA, 'M', 'ὶ'), + (0x1FDB, 'M', 'ί'), + (0x1FDC, 'X'), + (0x1FDD, '3', ' ̔̀'), + (0x1FDE, '3', ' ̔́'), + (0x1FDF, '3', ' ̔͂'), + (0x1FE0, 'V'), + (0x1FE3, 'M', 'ΰ'), + (0x1FE4, 'V'), + (0x1FE8, 'M', 'ῠ'), + (0x1FE9, 'M', 'ῡ'), + (0x1FEA, 'M', 'ὺ'), + (0x1FEB, 'M', 'ύ'), + (0x1FEC, 'M', 'ῥ'), + (0x1FED, '3', ' ̈̀'), + (0x1FEE, '3', ' ̈́'), + (0x1FEF, '3', '`'), + (0x1FF0, 'X'), + (0x1FF2, 'M', 'ὼι'), + (0x1FF3, 'M', 'ωι'), + (0x1FF4, 'M', 'ώι'), + (0x1FF5, 'X'), + (0x1FF6, 'V'), + ] + +def _seg_21() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1FF7, 'M', 'ῶι'), + (0x1FF8, 'M', 'ὸ'), + (0x1FF9, 'M', 'ό'), + (0x1FFA, 'M', 'ὼ'), + (0x1FFB, 'M', 'ώ'), + (0x1FFC, 'M', 'ωι'), + (0x1FFD, '3', ' ́'), + (0x1FFE, '3', ' ̔'), + (0x1FFF, 'X'), + (0x2000, '3', ' '), + (0x200B, 'I'), + (0x200C, 'D', ''), + (0x200E, 'X'), + (0x2010, 'V'), + (0x2011, 'M', '‐'), + (0x2012, 'V'), + (0x2017, '3', ' ̳'), + (0x2018, 'V'), + (0x2024, 'X'), + (0x2027, 'V'), + (0x2028, 'X'), + (0x202F, '3', ' '), + (0x2030, 'V'), + (0x2033, 'M', '′′'), + (0x2034, 'M', '′′′'), + (0x2035, 'V'), + (0x2036, 'M', '‵‵'), + (0x2037, 'M', '‵‵‵'), + (0x2038, 'V'), + (0x203C, '3', '!!'), + (0x203D, 'V'), + (0x203E, '3', ' ̅'), + (0x203F, 'V'), + (0x2047, '3', '??'), + (0x2048, '3', '?!'), + (0x2049, '3', '!?'), + (0x204A, 'V'), + (0x2057, 'M', '′′′′'), + (0x2058, 'V'), + (0x205F, '3', ' '), + (0x2060, 'I'), + (0x2061, 'X'), + (0x2064, 'I'), + (0x2065, 'X'), + (0x2070, 'M', '0'), + (0x2071, 'M', 'i'), + (0x2072, 'X'), + (0x2074, 'M', '4'), + (0x2075, 'M', '5'), + (0x2076, 'M', '6'), + (0x2077, 'M', '7'), + (0x2078, 'M', '8'), + (0x2079, 'M', '9'), + (0x207A, '3', '+'), + (0x207B, 'M', '−'), + (0x207C, '3', '='), + (0x207D, '3', '('), + (0x207E, '3', ')'), + (0x207F, 'M', 'n'), + (0x2080, 'M', '0'), + (0x2081, 'M', '1'), + (0x2082, 'M', '2'), + (0x2083, 'M', '3'), + (0x2084, 'M', '4'), + (0x2085, 'M', '5'), + (0x2086, 'M', '6'), + (0x2087, 'M', '7'), + (0x2088, 'M', '8'), + (0x2089, 'M', '9'), + (0x208A, '3', '+'), + (0x208B, 'M', '−'), + (0x208C, '3', '='), + (0x208D, '3', '('), + (0x208E, '3', ')'), + (0x208F, 'X'), + (0x2090, 'M', 'a'), + (0x2091, 'M', 'e'), + (0x2092, 'M', 'o'), + (0x2093, 'M', 'x'), + (0x2094, 'M', 'ə'), + (0x2095, 'M', 'h'), + (0x2096, 'M', 'k'), + (0x2097, 'M', 'l'), + (0x2098, 'M', 'm'), + (0x2099, 'M', 'n'), + (0x209A, 'M', 'p'), + (0x209B, 'M', 's'), + (0x209C, 'M', 't'), + (0x209D, 'X'), + (0x20A0, 'V'), + (0x20A8, 'M', 'rs'), + (0x20A9, 'V'), + (0x20C1, 'X'), + (0x20D0, 'V'), + (0x20F1, 'X'), + (0x2100, '3', 'a/c'), + (0x2101, '3', 'a/s'), + (0x2102, 'M', 'c'), + (0x2103, 'M', '°c'), + (0x2104, 'V'), + ] + +def _seg_22() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x2105, '3', 'c/o'), + (0x2106, '3', 'c/u'), + (0x2107, 'M', 'ɛ'), + (0x2108, 'V'), + (0x2109, 'M', '°f'), + (0x210A, 'M', 'g'), + (0x210B, 'M', 'h'), + (0x210F, 'M', 'ħ'), + (0x2110, 'M', 'i'), + (0x2112, 'M', 'l'), + (0x2114, 'V'), + (0x2115, 'M', 'n'), + (0x2116, 'M', 'no'), + (0x2117, 'V'), + (0x2119, 'M', 'p'), + (0x211A, 'M', 'q'), + (0x211B, 'M', 'r'), + (0x211E, 'V'), + (0x2120, 'M', 'sm'), + (0x2121, 'M', 'tel'), + (0x2122, 'M', 'tm'), + (0x2123, 'V'), + (0x2124, 'M', 'z'), + (0x2125, 'V'), + (0x2126, 'M', 'ω'), + (0x2127, 'V'), + (0x2128, 'M', 'z'), + (0x2129, 'V'), + (0x212A, 'M', 'k'), + (0x212B, 'M', 'å'), + (0x212C, 'M', 'b'), + (0x212D, 'M', 'c'), + (0x212E, 'V'), + (0x212F, 'M', 'e'), + (0x2131, 'M', 'f'), + (0x2132, 'X'), + (0x2133, 'M', 'm'), + (0x2134, 'M', 'o'), + (0x2135, 'M', 'א'), + (0x2136, 'M', 'ב'), + (0x2137, 'M', 'ג'), + (0x2138, 'M', 'ד'), + (0x2139, 'M', 'i'), + (0x213A, 'V'), + (0x213B, 'M', 'fax'), + (0x213C, 'M', 'π'), + (0x213D, 'M', 'γ'), + (0x213F, 'M', 'π'), + (0x2140, 'M', '∑'), + (0x2141, 'V'), + (0x2145, 'M', 'd'), + (0x2147, 'M', 'e'), + (0x2148, 'M', 'i'), + (0x2149, 'M', 'j'), + (0x214A, 'V'), + (0x2150, 'M', '1⁄7'), + (0x2151, 'M', '1⁄9'), + (0x2152, 'M', '1⁄10'), + (0x2153, 'M', '1⁄3'), + (0x2154, 'M', '2⁄3'), + (0x2155, 'M', '1⁄5'), + (0x2156, 'M', '2⁄5'), + (0x2157, 'M', '3⁄5'), + (0x2158, 'M', '4⁄5'), + (0x2159, 'M', '1⁄6'), + (0x215A, 'M', '5⁄6'), + (0x215B, 'M', '1⁄8'), + (0x215C, 'M', '3⁄8'), + (0x215D, 'M', '5⁄8'), + (0x215E, 'M', '7⁄8'), + (0x215F, 'M', '1⁄'), + (0x2160, 'M', 'i'), + (0x2161, 'M', 'ii'), + (0x2162, 'M', 'iii'), + (0x2163, 'M', 'iv'), + (0x2164, 'M', 'v'), + (0x2165, 'M', 'vi'), + (0x2166, 'M', 'vii'), + (0x2167, 'M', 'viii'), + (0x2168, 'M', 'ix'), + (0x2169, 'M', 'x'), + (0x216A, 'M', 'xi'), + (0x216B, 'M', 'xii'), + (0x216C, 'M', 'l'), + (0x216D, 'M', 'c'), + (0x216E, 'M', 'd'), + (0x216F, 'M', 'm'), + (0x2170, 'M', 'i'), + (0x2171, 'M', 'ii'), + (0x2172, 'M', 'iii'), + (0x2173, 'M', 'iv'), + (0x2174, 'M', 'v'), + (0x2175, 'M', 'vi'), + (0x2176, 'M', 'vii'), + (0x2177, 'M', 'viii'), + (0x2178, 'M', 'ix'), + (0x2179, 'M', 'x'), + (0x217A, 'M', 'xi'), + (0x217B, 'M', 'xii'), + (0x217C, 'M', 'l'), + ] + +def _seg_23() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x217D, 'M', 'c'), + (0x217E, 'M', 'd'), + (0x217F, 'M', 'm'), + (0x2180, 'V'), + (0x2183, 'X'), + (0x2184, 'V'), + (0x2189, 'M', '0⁄3'), + (0x218A, 'V'), + (0x218C, 'X'), + (0x2190, 'V'), + (0x222C, 'M', '∫∫'), + (0x222D, 'M', '∫∫∫'), + (0x222E, 'V'), + (0x222F, 'M', '∮∮'), + (0x2230, 'M', '∮∮∮'), + (0x2231, 'V'), + (0x2260, '3'), + (0x2261, 'V'), + (0x226E, '3'), + (0x2270, 'V'), + (0x2329, 'M', '〈'), + (0x232A, 'M', '〉'), + (0x232B, 'V'), + (0x2427, 'X'), + (0x2440, 'V'), + (0x244B, 'X'), + (0x2460, 'M', '1'), + (0x2461, 'M', '2'), + (0x2462, 'M', '3'), + (0x2463, 'M', '4'), + (0x2464, 'M', '5'), + (0x2465, 'M', '6'), + (0x2466, 'M', '7'), + (0x2467, 'M', '8'), + (0x2468, 'M', '9'), + (0x2469, 'M', '10'), + (0x246A, 'M', '11'), + (0x246B, 'M', '12'), + (0x246C, 'M', '13'), + (0x246D, 'M', '14'), + (0x246E, 'M', '15'), + (0x246F, 'M', '16'), + (0x2470, 'M', '17'), + (0x2471, 'M', '18'), + (0x2472, 'M', '19'), + (0x2473, 'M', '20'), + (0x2474, '3', '(1)'), + (0x2475, '3', '(2)'), + (0x2476, '3', '(3)'), + (0x2477, '3', '(4)'), + (0x2478, '3', '(5)'), + (0x2479, '3', '(6)'), + (0x247A, '3', '(7)'), + (0x247B, '3', '(8)'), + (0x247C, '3', '(9)'), + (0x247D, '3', '(10)'), + (0x247E, '3', '(11)'), + (0x247F, '3', '(12)'), + (0x2480, '3', '(13)'), + (0x2481, '3', '(14)'), + (0x2482, '3', '(15)'), + (0x2483, '3', '(16)'), + (0x2484, '3', '(17)'), + (0x2485, '3', '(18)'), + (0x2486, '3', '(19)'), + (0x2487, '3', '(20)'), + (0x2488, 'X'), + (0x249C, '3', '(a)'), + (0x249D, '3', '(b)'), + (0x249E, '3', '(c)'), + (0x249F, '3', '(d)'), + (0x24A0, '3', '(e)'), + (0x24A1, '3', '(f)'), + (0x24A2, '3', '(g)'), + (0x24A3, '3', '(h)'), + (0x24A4, '3', '(i)'), + (0x24A5, '3', '(j)'), + (0x24A6, '3', '(k)'), + (0x24A7, '3', '(l)'), + (0x24A8, '3', '(m)'), + (0x24A9, '3', '(n)'), + (0x24AA, '3', '(o)'), + (0x24AB, '3', '(p)'), + (0x24AC, '3', '(q)'), + (0x24AD, '3', '(r)'), + (0x24AE, '3', '(s)'), + (0x24AF, '3', '(t)'), + (0x24B0, '3', '(u)'), + (0x24B1, '3', '(v)'), + (0x24B2, '3', '(w)'), + (0x24B3, '3', '(x)'), + (0x24B4, '3', '(y)'), + (0x24B5, '3', '(z)'), + (0x24B6, 'M', 'a'), + (0x24B7, 'M', 'b'), + (0x24B8, 'M', 'c'), + (0x24B9, 'M', 'd'), + (0x24BA, 'M', 'e'), + (0x24BB, 'M', 'f'), + (0x24BC, 'M', 'g'), + ] + +def _seg_24() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x24BD, 'M', 'h'), + (0x24BE, 'M', 'i'), + (0x24BF, 'M', 'j'), + (0x24C0, 'M', 'k'), + (0x24C1, 'M', 'l'), + (0x24C2, 'M', 'm'), + (0x24C3, 'M', 'n'), + (0x24C4, 'M', 'o'), + (0x24C5, 'M', 'p'), + (0x24C6, 'M', 'q'), + (0x24C7, 'M', 'r'), + (0x24C8, 'M', 's'), + (0x24C9, 'M', 't'), + (0x24CA, 'M', 'u'), + (0x24CB, 'M', 'v'), + (0x24CC, 'M', 'w'), + (0x24CD, 'M', 'x'), + (0x24CE, 'M', 'y'), + (0x24CF, 'M', 'z'), + (0x24D0, 'M', 'a'), + (0x24D1, 'M', 'b'), + (0x24D2, 'M', 'c'), + (0x24D3, 'M', 'd'), + (0x24D4, 'M', 'e'), + (0x24D5, 'M', 'f'), + (0x24D6, 'M', 'g'), + (0x24D7, 'M', 'h'), + (0x24D8, 'M', 'i'), + (0x24D9, 'M', 'j'), + (0x24DA, 'M', 'k'), + (0x24DB, 'M', 'l'), + (0x24DC, 'M', 'm'), + (0x24DD, 'M', 'n'), + (0x24DE, 'M', 'o'), + (0x24DF, 'M', 'p'), + (0x24E0, 'M', 'q'), + (0x24E1, 'M', 'r'), + (0x24E2, 'M', 's'), + (0x24E3, 'M', 't'), + (0x24E4, 'M', 'u'), + (0x24E5, 'M', 'v'), + (0x24E6, 'M', 'w'), + (0x24E7, 'M', 'x'), + (0x24E8, 'M', 'y'), + (0x24E9, 'M', 'z'), + (0x24EA, 'M', '0'), + (0x24EB, 'V'), + (0x2A0C, 'M', '∫∫∫∫'), + (0x2A0D, 'V'), + (0x2A74, '3', '::='), + (0x2A75, '3', '=='), + (0x2A76, '3', '==='), + (0x2A77, 'V'), + (0x2ADC, 'M', '⫝̸'), + (0x2ADD, 'V'), + (0x2B74, 'X'), + (0x2B76, 'V'), + (0x2B96, 'X'), + (0x2B97, 'V'), + (0x2C00, 'M', 'ⰰ'), + (0x2C01, 'M', 'ⰱ'), + (0x2C02, 'M', 'ⰲ'), + (0x2C03, 'M', 'ⰳ'), + (0x2C04, 'M', 'ⰴ'), + (0x2C05, 'M', 'ⰵ'), + (0x2C06, 'M', 'ⰶ'), + (0x2C07, 'M', 'ⰷ'), + (0x2C08, 'M', 'ⰸ'), + (0x2C09, 'M', 'ⰹ'), + (0x2C0A, 'M', 'ⰺ'), + (0x2C0B, 'M', 'ⰻ'), + (0x2C0C, 'M', 'ⰼ'), + (0x2C0D, 'M', 'ⰽ'), + (0x2C0E, 'M', 'ⰾ'), + (0x2C0F, 'M', 'ⰿ'), + (0x2C10, 'M', 'ⱀ'), + (0x2C11, 'M', 'ⱁ'), + (0x2C12, 'M', 'ⱂ'), + (0x2C13, 'M', 'ⱃ'), + (0x2C14, 'M', 'ⱄ'), + (0x2C15, 'M', 'ⱅ'), + (0x2C16, 'M', 'ⱆ'), + (0x2C17, 'M', 'ⱇ'), + (0x2C18, 'M', 'ⱈ'), + (0x2C19, 'M', 'ⱉ'), + (0x2C1A, 'M', 'ⱊ'), + (0x2C1B, 'M', 'ⱋ'), + (0x2C1C, 'M', 'ⱌ'), + (0x2C1D, 'M', 'ⱍ'), + (0x2C1E, 'M', 'ⱎ'), + (0x2C1F, 'M', 'ⱏ'), + (0x2C20, 'M', 'ⱐ'), + (0x2C21, 'M', 'ⱑ'), + (0x2C22, 'M', 'ⱒ'), + (0x2C23, 'M', 'ⱓ'), + (0x2C24, 'M', 'ⱔ'), + (0x2C25, 'M', 'ⱕ'), + (0x2C26, 'M', 'ⱖ'), + (0x2C27, 'M', 'ⱗ'), + (0x2C28, 'M', 'ⱘ'), + ] + +def _seg_25() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x2C29, 'M', 'ⱙ'), + (0x2C2A, 'M', 'ⱚ'), + (0x2C2B, 'M', 'ⱛ'), + (0x2C2C, 'M', 'ⱜ'), + (0x2C2D, 'M', 'ⱝ'), + (0x2C2E, 'M', 'ⱞ'), + (0x2C2F, 'M', 'ⱟ'), + (0x2C30, 'V'), + (0x2C60, 'M', 'ⱡ'), + (0x2C61, 'V'), + (0x2C62, 'M', 'ɫ'), + (0x2C63, 'M', 'ᵽ'), + (0x2C64, 'M', 'ɽ'), + (0x2C65, 'V'), + (0x2C67, 'M', 'ⱨ'), + (0x2C68, 'V'), + (0x2C69, 'M', 'ⱪ'), + (0x2C6A, 'V'), + (0x2C6B, 'M', 'ⱬ'), + (0x2C6C, 'V'), + (0x2C6D, 'M', 'ɑ'), + (0x2C6E, 'M', 'ɱ'), + (0x2C6F, 'M', 'ɐ'), + (0x2C70, 'M', 'ɒ'), + (0x2C71, 'V'), + (0x2C72, 'M', 'ⱳ'), + (0x2C73, 'V'), + (0x2C75, 'M', 'ⱶ'), + (0x2C76, 'V'), + (0x2C7C, 'M', 'j'), + (0x2C7D, 'M', 'v'), + (0x2C7E, 'M', 'ȿ'), + (0x2C7F, 'M', 'ɀ'), + (0x2C80, 'M', 'ⲁ'), + (0x2C81, 'V'), + (0x2C82, 'M', 'ⲃ'), + (0x2C83, 'V'), + (0x2C84, 'M', 'ⲅ'), + (0x2C85, 'V'), + (0x2C86, 'M', 'ⲇ'), + (0x2C87, 'V'), + (0x2C88, 'M', 'ⲉ'), + (0x2C89, 'V'), + (0x2C8A, 'M', 'ⲋ'), + (0x2C8B, 'V'), + (0x2C8C, 'M', 'ⲍ'), + (0x2C8D, 'V'), + (0x2C8E, 'M', 'ⲏ'), + (0x2C8F, 'V'), + (0x2C90, 'M', 'ⲑ'), + (0x2C91, 'V'), + (0x2C92, 'M', 'ⲓ'), + (0x2C93, 'V'), + (0x2C94, 'M', 'ⲕ'), + (0x2C95, 'V'), + (0x2C96, 'M', 'ⲗ'), + (0x2C97, 'V'), + (0x2C98, 'M', 'ⲙ'), + (0x2C99, 'V'), + (0x2C9A, 'M', 'ⲛ'), + (0x2C9B, 'V'), + (0x2C9C, 'M', 'ⲝ'), + (0x2C9D, 'V'), + (0x2C9E, 'M', 'ⲟ'), + (0x2C9F, 'V'), + (0x2CA0, 'M', 'ⲡ'), + (0x2CA1, 'V'), + (0x2CA2, 'M', 'ⲣ'), + (0x2CA3, 'V'), + (0x2CA4, 'M', 'ⲥ'), + (0x2CA5, 'V'), + (0x2CA6, 'M', 'ⲧ'), + (0x2CA7, 'V'), + (0x2CA8, 'M', 'ⲩ'), + (0x2CA9, 'V'), + (0x2CAA, 'M', 'ⲫ'), + (0x2CAB, 'V'), + (0x2CAC, 'M', 'ⲭ'), + (0x2CAD, 'V'), + (0x2CAE, 'M', 'ⲯ'), + (0x2CAF, 'V'), + (0x2CB0, 'M', 'ⲱ'), + (0x2CB1, 'V'), + (0x2CB2, 'M', 'ⲳ'), + (0x2CB3, 'V'), + (0x2CB4, 'M', 'ⲵ'), + (0x2CB5, 'V'), + (0x2CB6, 'M', 'ⲷ'), + (0x2CB7, 'V'), + (0x2CB8, 'M', 'ⲹ'), + (0x2CB9, 'V'), + (0x2CBA, 'M', 'ⲻ'), + (0x2CBB, 'V'), + (0x2CBC, 'M', 'ⲽ'), + (0x2CBD, 'V'), + (0x2CBE, 'M', 'ⲿ'), + (0x2CBF, 'V'), + (0x2CC0, 'M', 'ⳁ'), + (0x2CC1, 'V'), + (0x2CC2, 'M', 'ⳃ'), + ] + +def _seg_26() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x2CC3, 'V'), + (0x2CC4, 'M', 'ⳅ'), + (0x2CC5, 'V'), + (0x2CC6, 'M', 'ⳇ'), + (0x2CC7, 'V'), + (0x2CC8, 'M', 'ⳉ'), + (0x2CC9, 'V'), + (0x2CCA, 'M', 'ⳋ'), + (0x2CCB, 'V'), + (0x2CCC, 'M', 'ⳍ'), + (0x2CCD, 'V'), + (0x2CCE, 'M', 'ⳏ'), + (0x2CCF, 'V'), + (0x2CD0, 'M', 'ⳑ'), + (0x2CD1, 'V'), + (0x2CD2, 'M', 'ⳓ'), + (0x2CD3, 'V'), + (0x2CD4, 'M', 'ⳕ'), + (0x2CD5, 'V'), + (0x2CD6, 'M', 'ⳗ'), + (0x2CD7, 'V'), + (0x2CD8, 'M', 'ⳙ'), + (0x2CD9, 'V'), + (0x2CDA, 'M', 'ⳛ'), + (0x2CDB, 'V'), + (0x2CDC, 'M', 'ⳝ'), + (0x2CDD, 'V'), + (0x2CDE, 'M', 'ⳟ'), + (0x2CDF, 'V'), + (0x2CE0, 'M', 'ⳡ'), + (0x2CE1, 'V'), + (0x2CE2, 'M', 'ⳣ'), + (0x2CE3, 'V'), + (0x2CEB, 'M', 'ⳬ'), + (0x2CEC, 'V'), + (0x2CED, 'M', 'ⳮ'), + (0x2CEE, 'V'), + (0x2CF2, 'M', 'ⳳ'), + (0x2CF3, 'V'), + (0x2CF4, 'X'), + (0x2CF9, 'V'), + (0x2D26, 'X'), + (0x2D27, 'V'), + (0x2D28, 'X'), + (0x2D2D, 'V'), + (0x2D2E, 'X'), + (0x2D30, 'V'), + (0x2D68, 'X'), + (0x2D6F, 'M', 'ⵡ'), + (0x2D70, 'V'), + (0x2D71, 'X'), + (0x2D7F, 'V'), + (0x2D97, 'X'), + (0x2DA0, 'V'), + (0x2DA7, 'X'), + (0x2DA8, 'V'), + (0x2DAF, 'X'), + (0x2DB0, 'V'), + (0x2DB7, 'X'), + (0x2DB8, 'V'), + (0x2DBF, 'X'), + (0x2DC0, 'V'), + (0x2DC7, 'X'), + (0x2DC8, 'V'), + (0x2DCF, 'X'), + (0x2DD0, 'V'), + (0x2DD7, 'X'), + (0x2DD8, 'V'), + (0x2DDF, 'X'), + (0x2DE0, 'V'), + (0x2E5E, 'X'), + (0x2E80, 'V'), + (0x2E9A, 'X'), + (0x2E9B, 'V'), + (0x2E9F, 'M', '母'), + (0x2EA0, 'V'), + (0x2EF3, 'M', '龟'), + (0x2EF4, 'X'), + (0x2F00, 'M', '一'), + (0x2F01, 'M', '丨'), + (0x2F02, 'M', '丶'), + (0x2F03, 'M', '丿'), + (0x2F04, 'M', '乙'), + (0x2F05, 'M', '亅'), + (0x2F06, 'M', '二'), + (0x2F07, 'M', '亠'), + (0x2F08, 'M', '人'), + (0x2F09, 'M', '儿'), + (0x2F0A, 'M', '入'), + (0x2F0B, 'M', '八'), + (0x2F0C, 'M', '冂'), + (0x2F0D, 'M', '冖'), + (0x2F0E, 'M', '冫'), + (0x2F0F, 'M', '几'), + (0x2F10, 'M', '凵'), + (0x2F11, 'M', '刀'), + (0x2F12, 'M', '力'), + (0x2F13, 'M', '勹'), + (0x2F14, 'M', '匕'), + (0x2F15, 'M', '匚'), + ] + +def _seg_27() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x2F16, 'M', '匸'), + (0x2F17, 'M', '十'), + (0x2F18, 'M', '卜'), + (0x2F19, 'M', '卩'), + (0x2F1A, 'M', '厂'), + (0x2F1B, 'M', '厶'), + (0x2F1C, 'M', '又'), + (0x2F1D, 'M', '口'), + (0x2F1E, 'M', '囗'), + (0x2F1F, 'M', '土'), + (0x2F20, 'M', '士'), + (0x2F21, 'M', '夂'), + (0x2F22, 'M', '夊'), + (0x2F23, 'M', '夕'), + (0x2F24, 'M', '大'), + (0x2F25, 'M', '女'), + (0x2F26, 'M', '子'), + (0x2F27, 'M', '宀'), + (0x2F28, 'M', '寸'), + (0x2F29, 'M', '小'), + (0x2F2A, 'M', '尢'), + (0x2F2B, 'M', '尸'), + (0x2F2C, 'M', '屮'), + (0x2F2D, 'M', '山'), + (0x2F2E, 'M', '巛'), + (0x2F2F, 'M', '工'), + (0x2F30, 'M', '己'), + (0x2F31, 'M', '巾'), + (0x2F32, 'M', '干'), + (0x2F33, 'M', '幺'), + (0x2F34, 'M', '广'), + (0x2F35, 'M', '廴'), + (0x2F36, 'M', '廾'), + (0x2F37, 'M', '弋'), + (0x2F38, 'M', '弓'), + (0x2F39, 'M', '彐'), + (0x2F3A, 'M', '彡'), + (0x2F3B, 'M', '彳'), + (0x2F3C, 'M', '心'), + (0x2F3D, 'M', '戈'), + (0x2F3E, 'M', '戶'), + (0x2F3F, 'M', '手'), + (0x2F40, 'M', '支'), + (0x2F41, 'M', '攴'), + (0x2F42, 'M', '文'), + (0x2F43, 'M', '斗'), + (0x2F44, 'M', '斤'), + (0x2F45, 'M', '方'), + (0x2F46, 'M', '无'), + (0x2F47, 'M', '日'), + (0x2F48, 'M', '曰'), + (0x2F49, 'M', '月'), + (0x2F4A, 'M', '木'), + (0x2F4B, 'M', '欠'), + (0x2F4C, 'M', '止'), + (0x2F4D, 'M', '歹'), + (0x2F4E, 'M', '殳'), + (0x2F4F, 'M', '毋'), + (0x2F50, 'M', '比'), + (0x2F51, 'M', '毛'), + (0x2F52, 'M', '氏'), + (0x2F53, 'M', '气'), + (0x2F54, 'M', '水'), + (0x2F55, 'M', '火'), + (0x2F56, 'M', '爪'), + (0x2F57, 'M', '父'), + (0x2F58, 'M', '爻'), + (0x2F59, 'M', '爿'), + (0x2F5A, 'M', '片'), + (0x2F5B, 'M', '牙'), + (0x2F5C, 'M', '牛'), + (0x2F5D, 'M', '犬'), + (0x2F5E, 'M', '玄'), + (0x2F5F, 'M', '玉'), + (0x2F60, 'M', '瓜'), + (0x2F61, 'M', '瓦'), + (0x2F62, 'M', '甘'), + (0x2F63, 'M', '生'), + (0x2F64, 'M', '用'), + (0x2F65, 'M', '田'), + (0x2F66, 'M', '疋'), + (0x2F67, 'M', '疒'), + (0x2F68, 'M', '癶'), + (0x2F69, 'M', '白'), + (0x2F6A, 'M', '皮'), + (0x2F6B, 'M', '皿'), + (0x2F6C, 'M', '目'), + (0x2F6D, 'M', '矛'), + (0x2F6E, 'M', '矢'), + (0x2F6F, 'M', '石'), + (0x2F70, 'M', '示'), + (0x2F71, 'M', '禸'), + (0x2F72, 'M', '禾'), + (0x2F73, 'M', '穴'), + (0x2F74, 'M', '立'), + (0x2F75, 'M', '竹'), + (0x2F76, 'M', '米'), + (0x2F77, 'M', '糸'), + (0x2F78, 'M', '缶'), + (0x2F79, 'M', '网'), + ] + +def _seg_28() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x2F7A, 'M', '羊'), + (0x2F7B, 'M', '羽'), + (0x2F7C, 'M', '老'), + (0x2F7D, 'M', '而'), + (0x2F7E, 'M', '耒'), + (0x2F7F, 'M', '耳'), + (0x2F80, 'M', '聿'), + (0x2F81, 'M', '肉'), + (0x2F82, 'M', '臣'), + (0x2F83, 'M', '自'), + (0x2F84, 'M', '至'), + (0x2F85, 'M', '臼'), + (0x2F86, 'M', '舌'), + (0x2F87, 'M', '舛'), + (0x2F88, 'M', '舟'), + (0x2F89, 'M', '艮'), + (0x2F8A, 'M', '色'), + (0x2F8B, 'M', '艸'), + (0x2F8C, 'M', '虍'), + (0x2F8D, 'M', '虫'), + (0x2F8E, 'M', '血'), + (0x2F8F, 'M', '行'), + (0x2F90, 'M', '衣'), + (0x2F91, 'M', '襾'), + (0x2F92, 'M', '見'), + (0x2F93, 'M', '角'), + (0x2F94, 'M', '言'), + (0x2F95, 'M', '谷'), + (0x2F96, 'M', '豆'), + (0x2F97, 'M', '豕'), + (0x2F98, 'M', '豸'), + (0x2F99, 'M', '貝'), + (0x2F9A, 'M', '赤'), + (0x2F9B, 'M', '走'), + (0x2F9C, 'M', '足'), + (0x2F9D, 'M', '身'), + (0x2F9E, 'M', '車'), + (0x2F9F, 'M', '辛'), + (0x2FA0, 'M', '辰'), + (0x2FA1, 'M', '辵'), + (0x2FA2, 'M', '邑'), + (0x2FA3, 'M', '酉'), + (0x2FA4, 'M', '釆'), + (0x2FA5, 'M', '里'), + (0x2FA6, 'M', '金'), + (0x2FA7, 'M', '長'), + (0x2FA8, 'M', '門'), + (0x2FA9, 'M', '阜'), + (0x2FAA, 'M', '隶'), + (0x2FAB, 'M', '隹'), + (0x2FAC, 'M', '雨'), + (0x2FAD, 'M', '靑'), + (0x2FAE, 'M', '非'), + (0x2FAF, 'M', '面'), + (0x2FB0, 'M', '革'), + (0x2FB1, 'M', '韋'), + (0x2FB2, 'M', '韭'), + (0x2FB3, 'M', '音'), + (0x2FB4, 'M', '頁'), + (0x2FB5, 'M', '風'), + (0x2FB6, 'M', '飛'), + (0x2FB7, 'M', '食'), + (0x2FB8, 'M', '首'), + (0x2FB9, 'M', '香'), + (0x2FBA, 'M', '馬'), + (0x2FBB, 'M', '骨'), + (0x2FBC, 'M', '高'), + (0x2FBD, 'M', '髟'), + (0x2FBE, 'M', '鬥'), + (0x2FBF, 'M', '鬯'), + (0x2FC0, 'M', '鬲'), + (0x2FC1, 'M', '鬼'), + (0x2FC2, 'M', '魚'), + (0x2FC3, 'M', '鳥'), + (0x2FC4, 'M', '鹵'), + (0x2FC5, 'M', '鹿'), + (0x2FC6, 'M', '麥'), + (0x2FC7, 'M', '麻'), + (0x2FC8, 'M', '黃'), + (0x2FC9, 'M', '黍'), + (0x2FCA, 'M', '黑'), + (0x2FCB, 'M', '黹'), + (0x2FCC, 'M', '黽'), + (0x2FCD, 'M', '鼎'), + (0x2FCE, 'M', '鼓'), + (0x2FCF, 'M', '鼠'), + (0x2FD0, 'M', '鼻'), + (0x2FD1, 'M', '齊'), + (0x2FD2, 'M', '齒'), + (0x2FD3, 'M', '龍'), + (0x2FD4, 'M', '龜'), + (0x2FD5, 'M', '龠'), + (0x2FD6, 'X'), + (0x3000, '3', ' '), + (0x3001, 'V'), + (0x3002, 'M', '.'), + (0x3003, 'V'), + (0x3036, 'M', '〒'), + (0x3037, 'V'), + (0x3038, 'M', '十'), + ] + +def _seg_29() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x3039, 'M', '卄'), + (0x303A, 'M', '卅'), + (0x303B, 'V'), + (0x3040, 'X'), + (0x3041, 'V'), + (0x3097, 'X'), + (0x3099, 'V'), + (0x309B, '3', ' ゙'), + (0x309C, '3', ' ゚'), + (0x309D, 'V'), + (0x309F, 'M', 'より'), + (0x30A0, 'V'), + (0x30FF, 'M', 'コト'), + (0x3100, 'X'), + (0x3105, 'V'), + (0x3130, 'X'), + (0x3131, 'M', 'ᄀ'), + (0x3132, 'M', 'ᄁ'), + (0x3133, 'M', 'ᆪ'), + (0x3134, 'M', 'ᄂ'), + (0x3135, 'M', 'ᆬ'), + (0x3136, 'M', 'ᆭ'), + (0x3137, 'M', 'ᄃ'), + (0x3138, 'M', 'ᄄ'), + (0x3139, 'M', 'ᄅ'), + (0x313A, 'M', 'ᆰ'), + (0x313B, 'M', 'ᆱ'), + (0x313C, 'M', 'ᆲ'), + (0x313D, 'M', 'ᆳ'), + (0x313E, 'M', 'ᆴ'), + (0x313F, 'M', 'ᆵ'), + (0x3140, 'M', 'ᄚ'), + (0x3141, 'M', 'ᄆ'), + (0x3142, 'M', 'ᄇ'), + (0x3143, 'M', 'ᄈ'), + (0x3144, 'M', 'ᄡ'), + (0x3145, 'M', 'ᄉ'), + (0x3146, 'M', 'ᄊ'), + (0x3147, 'M', 'ᄋ'), + (0x3148, 'M', 'ᄌ'), + (0x3149, 'M', 'ᄍ'), + (0x314A, 'M', 'ᄎ'), + (0x314B, 'M', 'ᄏ'), + (0x314C, 'M', 'ᄐ'), + (0x314D, 'M', 'ᄑ'), + (0x314E, 'M', 'ᄒ'), + (0x314F, 'M', 'ᅡ'), + (0x3150, 'M', 'ᅢ'), + (0x3151, 'M', 'ᅣ'), + (0x3152, 'M', 'ᅤ'), + (0x3153, 'M', 'ᅥ'), + (0x3154, 'M', 'ᅦ'), + (0x3155, 'M', 'ᅧ'), + (0x3156, 'M', 'ᅨ'), + (0x3157, 'M', 'ᅩ'), + (0x3158, 'M', 'ᅪ'), + (0x3159, 'M', 'ᅫ'), + (0x315A, 'M', 'ᅬ'), + (0x315B, 'M', 'ᅭ'), + (0x315C, 'M', 'ᅮ'), + (0x315D, 'M', 'ᅯ'), + (0x315E, 'M', 'ᅰ'), + (0x315F, 'M', 'ᅱ'), + (0x3160, 'M', 'ᅲ'), + (0x3161, 'M', 'ᅳ'), + (0x3162, 'M', 'ᅴ'), + (0x3163, 'M', 'ᅵ'), + (0x3164, 'X'), + (0x3165, 'M', 'ᄔ'), + (0x3166, 'M', 'ᄕ'), + (0x3167, 'M', 'ᇇ'), + (0x3168, 'M', 'ᇈ'), + (0x3169, 'M', 'ᇌ'), + (0x316A, 'M', 'ᇎ'), + (0x316B, 'M', 'ᇓ'), + (0x316C, 'M', 'ᇗ'), + (0x316D, 'M', 'ᇙ'), + (0x316E, 'M', 'ᄜ'), + (0x316F, 'M', 'ᇝ'), + (0x3170, 'M', 'ᇟ'), + (0x3171, 'M', 'ᄝ'), + (0x3172, 'M', 'ᄞ'), + (0x3173, 'M', 'ᄠ'), + (0x3174, 'M', 'ᄢ'), + (0x3175, 'M', 'ᄣ'), + (0x3176, 'M', 'ᄧ'), + (0x3177, 'M', 'ᄩ'), + (0x3178, 'M', 'ᄫ'), + (0x3179, 'M', 'ᄬ'), + (0x317A, 'M', 'ᄭ'), + (0x317B, 'M', 'ᄮ'), + (0x317C, 'M', 'ᄯ'), + (0x317D, 'M', 'ᄲ'), + (0x317E, 'M', 'ᄶ'), + (0x317F, 'M', 'ᅀ'), + (0x3180, 'M', 'ᅇ'), + (0x3181, 'M', 'ᅌ'), + (0x3182, 'M', 'ᇱ'), + (0x3183, 'M', 'ᇲ'), + (0x3184, 'M', 'ᅗ'), + ] + +def _seg_30() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x3185, 'M', 'ᅘ'), + (0x3186, 'M', 'ᅙ'), + (0x3187, 'M', 'ᆄ'), + (0x3188, 'M', 'ᆅ'), + (0x3189, 'M', 'ᆈ'), + (0x318A, 'M', 'ᆑ'), + (0x318B, 'M', 'ᆒ'), + (0x318C, 'M', 'ᆔ'), + (0x318D, 'M', 'ᆞ'), + (0x318E, 'M', 'ᆡ'), + (0x318F, 'X'), + (0x3190, 'V'), + (0x3192, 'M', '一'), + (0x3193, 'M', '二'), + (0x3194, 'M', '三'), + (0x3195, 'M', '四'), + (0x3196, 'M', '上'), + (0x3197, 'M', '中'), + (0x3198, 'M', '下'), + (0x3199, 'M', '甲'), + (0x319A, 'M', '乙'), + (0x319B, 'M', '丙'), + (0x319C, 'M', '丁'), + (0x319D, 'M', '天'), + (0x319E, 'M', '地'), + (0x319F, 'M', '人'), + (0x31A0, 'V'), + (0x31E4, 'X'), + (0x31F0, 'V'), + (0x3200, '3', '(ᄀ)'), + (0x3201, '3', '(ᄂ)'), + (0x3202, '3', '(ᄃ)'), + (0x3203, '3', '(ᄅ)'), + (0x3204, '3', '(ᄆ)'), + (0x3205, '3', '(ᄇ)'), + (0x3206, '3', '(ᄉ)'), + (0x3207, '3', '(ᄋ)'), + (0x3208, '3', '(ᄌ)'), + (0x3209, '3', '(ᄎ)'), + (0x320A, '3', '(ᄏ)'), + (0x320B, '3', '(ᄐ)'), + (0x320C, '3', '(ᄑ)'), + (0x320D, '3', '(ᄒ)'), + (0x320E, '3', '(가)'), + (0x320F, '3', '(나)'), + (0x3210, '3', '(다)'), + (0x3211, '3', '(라)'), + (0x3212, '3', '(마)'), + (0x3213, '3', '(바)'), + (0x3214, '3', '(사)'), + (0x3215, '3', '(아)'), + (0x3216, '3', '(자)'), + (0x3217, '3', '(차)'), + (0x3218, '3', '(카)'), + (0x3219, '3', '(타)'), + (0x321A, '3', '(파)'), + (0x321B, '3', '(하)'), + (0x321C, '3', '(주)'), + (0x321D, '3', '(오전)'), + (0x321E, '3', '(오후)'), + (0x321F, 'X'), + (0x3220, '3', '(一)'), + (0x3221, '3', '(二)'), + (0x3222, '3', '(三)'), + (0x3223, '3', '(四)'), + (0x3224, '3', '(五)'), + (0x3225, '3', '(六)'), + (0x3226, '3', '(七)'), + (0x3227, '3', '(八)'), + (0x3228, '3', '(九)'), + (0x3229, '3', '(十)'), + (0x322A, '3', '(月)'), + (0x322B, '3', '(火)'), + (0x322C, '3', '(水)'), + (0x322D, '3', '(木)'), + (0x322E, '3', '(金)'), + (0x322F, '3', '(土)'), + (0x3230, '3', '(日)'), + (0x3231, '3', '(株)'), + (0x3232, '3', '(有)'), + (0x3233, '3', '(社)'), + (0x3234, '3', '(名)'), + (0x3235, '3', '(特)'), + (0x3236, '3', '(財)'), + (0x3237, '3', '(祝)'), + (0x3238, '3', '(労)'), + (0x3239, '3', '(代)'), + (0x323A, '3', '(呼)'), + (0x323B, '3', '(学)'), + (0x323C, '3', '(監)'), + (0x323D, '3', '(企)'), + (0x323E, '3', '(資)'), + (0x323F, '3', '(協)'), + (0x3240, '3', '(祭)'), + (0x3241, '3', '(休)'), + (0x3242, '3', '(自)'), + (0x3243, '3', '(至)'), + (0x3244, 'M', '問'), + (0x3245, 'M', '幼'), + (0x3246, 'M', '文'), + ] + +def _seg_31() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x3247, 'M', '箏'), + (0x3248, 'V'), + (0x3250, 'M', 'pte'), + (0x3251, 'M', '21'), + (0x3252, 'M', '22'), + (0x3253, 'M', '23'), + (0x3254, 'M', '24'), + (0x3255, 'M', '25'), + (0x3256, 'M', '26'), + (0x3257, 'M', '27'), + (0x3258, 'M', '28'), + (0x3259, 'M', '29'), + (0x325A, 'M', '30'), + (0x325B, 'M', '31'), + (0x325C, 'M', '32'), + (0x325D, 'M', '33'), + (0x325E, 'M', '34'), + (0x325F, 'M', '35'), + (0x3260, 'M', 'ᄀ'), + (0x3261, 'M', 'ᄂ'), + (0x3262, 'M', 'ᄃ'), + (0x3263, 'M', 'ᄅ'), + (0x3264, 'M', 'ᄆ'), + (0x3265, 'M', 'ᄇ'), + (0x3266, 'M', 'ᄉ'), + (0x3267, 'M', 'ᄋ'), + (0x3268, 'M', 'ᄌ'), + (0x3269, 'M', 'ᄎ'), + (0x326A, 'M', 'ᄏ'), + (0x326B, 'M', 'ᄐ'), + (0x326C, 'M', 'ᄑ'), + (0x326D, 'M', 'ᄒ'), + (0x326E, 'M', '가'), + (0x326F, 'M', '나'), + (0x3270, 'M', '다'), + (0x3271, 'M', '라'), + (0x3272, 'M', '마'), + (0x3273, 'M', '바'), + (0x3274, 'M', '사'), + (0x3275, 'M', '아'), + (0x3276, 'M', '자'), + (0x3277, 'M', '차'), + (0x3278, 'M', '카'), + (0x3279, 'M', '타'), + (0x327A, 'M', '파'), + (0x327B, 'M', '하'), + (0x327C, 'M', '참고'), + (0x327D, 'M', '주의'), + (0x327E, 'M', '우'), + (0x327F, 'V'), + (0x3280, 'M', '一'), + (0x3281, 'M', '二'), + (0x3282, 'M', '三'), + (0x3283, 'M', '四'), + (0x3284, 'M', '五'), + (0x3285, 'M', '六'), + (0x3286, 'M', '七'), + (0x3287, 'M', '八'), + (0x3288, 'M', '九'), + (0x3289, 'M', '十'), + (0x328A, 'M', '月'), + (0x328B, 'M', '火'), + (0x328C, 'M', '水'), + (0x328D, 'M', '木'), + (0x328E, 'M', '金'), + (0x328F, 'M', '土'), + (0x3290, 'M', '日'), + (0x3291, 'M', '株'), + (0x3292, 'M', '有'), + (0x3293, 'M', '社'), + (0x3294, 'M', '名'), + (0x3295, 'M', '特'), + (0x3296, 'M', '財'), + (0x3297, 'M', '祝'), + (0x3298, 'M', '労'), + (0x3299, 'M', '秘'), + (0x329A, 'M', '男'), + (0x329B, 'M', '女'), + (0x329C, 'M', '適'), + (0x329D, 'M', '優'), + (0x329E, 'M', '印'), + (0x329F, 'M', '注'), + (0x32A0, 'M', '項'), + (0x32A1, 'M', '休'), + (0x32A2, 'M', '写'), + (0x32A3, 'M', '正'), + (0x32A4, 'M', '上'), + (0x32A5, 'M', '中'), + (0x32A6, 'M', '下'), + (0x32A7, 'M', '左'), + (0x32A8, 'M', '右'), + (0x32A9, 'M', '医'), + (0x32AA, 'M', '宗'), + (0x32AB, 'M', '学'), + (0x32AC, 'M', '監'), + (0x32AD, 'M', '企'), + (0x32AE, 'M', '資'), + (0x32AF, 'M', '協'), + (0x32B0, 'M', '夜'), + (0x32B1, 'M', '36'), + ] + +def _seg_32() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x32B2, 'M', '37'), + (0x32B3, 'M', '38'), + (0x32B4, 'M', '39'), + (0x32B5, 'M', '40'), + (0x32B6, 'M', '41'), + (0x32B7, 'M', '42'), + (0x32B8, 'M', '43'), + (0x32B9, 'M', '44'), + (0x32BA, 'M', '45'), + (0x32BB, 'M', '46'), + (0x32BC, 'M', '47'), + (0x32BD, 'M', '48'), + (0x32BE, 'M', '49'), + (0x32BF, 'M', '50'), + (0x32C0, 'M', '1月'), + (0x32C1, 'M', '2月'), + (0x32C2, 'M', '3月'), + (0x32C3, 'M', '4月'), + (0x32C4, 'M', '5月'), + (0x32C5, 'M', '6月'), + (0x32C6, 'M', '7月'), + (0x32C7, 'M', '8月'), + (0x32C8, 'M', '9月'), + (0x32C9, 'M', '10月'), + (0x32CA, 'M', '11月'), + (0x32CB, 'M', '12月'), + (0x32CC, 'M', 'hg'), + (0x32CD, 'M', 'erg'), + (0x32CE, 'M', 'ev'), + (0x32CF, 'M', 'ltd'), + (0x32D0, 'M', 'ア'), + (0x32D1, 'M', 'イ'), + (0x32D2, 'M', 'ウ'), + (0x32D3, 'M', 'エ'), + (0x32D4, 'M', 'オ'), + (0x32D5, 'M', 'カ'), + (0x32D6, 'M', 'キ'), + (0x32D7, 'M', 'ク'), + (0x32D8, 'M', 'ケ'), + (0x32D9, 'M', 'コ'), + (0x32DA, 'M', 'サ'), + (0x32DB, 'M', 'シ'), + (0x32DC, 'M', 'ス'), + (0x32DD, 'M', 'セ'), + (0x32DE, 'M', 'ソ'), + (0x32DF, 'M', 'タ'), + (0x32E0, 'M', 'チ'), + (0x32E1, 'M', 'ツ'), + (0x32E2, 'M', 'テ'), + (0x32E3, 'M', 'ト'), + (0x32E4, 'M', 'ナ'), + (0x32E5, 'M', 'ニ'), + (0x32E6, 'M', 'ヌ'), + (0x32E7, 'M', 'ネ'), + (0x32E8, 'M', 'ノ'), + (0x32E9, 'M', 'ハ'), + (0x32EA, 'M', 'ヒ'), + (0x32EB, 'M', 'フ'), + (0x32EC, 'M', 'ヘ'), + (0x32ED, 'M', 'ホ'), + (0x32EE, 'M', 'マ'), + (0x32EF, 'M', 'ミ'), + (0x32F0, 'M', 'ム'), + (0x32F1, 'M', 'メ'), + (0x32F2, 'M', 'モ'), + (0x32F3, 'M', 'ヤ'), + (0x32F4, 'M', 'ユ'), + (0x32F5, 'M', 'ヨ'), + (0x32F6, 'M', 'ラ'), + (0x32F7, 'M', 'リ'), + (0x32F8, 'M', 'ル'), + (0x32F9, 'M', 'レ'), + (0x32FA, 'M', 'ロ'), + (0x32FB, 'M', 'ワ'), + (0x32FC, 'M', 'ヰ'), + (0x32FD, 'M', 'ヱ'), + (0x32FE, 'M', 'ヲ'), + (0x32FF, 'M', '令和'), + (0x3300, 'M', 'アパート'), + (0x3301, 'M', 'アルファ'), + (0x3302, 'M', 'アンペア'), + (0x3303, 'M', 'アール'), + (0x3304, 'M', 'イニング'), + (0x3305, 'M', 'インチ'), + (0x3306, 'M', 'ウォン'), + (0x3307, 'M', 'エスクード'), + (0x3308, 'M', 'エーカー'), + (0x3309, 'M', 'オンス'), + (0x330A, 'M', 'オーム'), + (0x330B, 'M', 'カイリ'), + (0x330C, 'M', 'カラット'), + (0x330D, 'M', 'カロリー'), + (0x330E, 'M', 'ガロン'), + (0x330F, 'M', 'ガンマ'), + (0x3310, 'M', 'ギガ'), + (0x3311, 'M', 'ギニー'), + (0x3312, 'M', 'キュリー'), + (0x3313, 'M', 'ギルダー'), + (0x3314, 'M', 'キロ'), + (0x3315, 'M', 'キログラム'), + ] + +def _seg_33() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x3316, 'M', 'キロメートル'), + (0x3317, 'M', 'キロワット'), + (0x3318, 'M', 'グラム'), + (0x3319, 'M', 'グラムトン'), + (0x331A, 'M', 'クルゼイロ'), + (0x331B, 'M', 'クローネ'), + (0x331C, 'M', 'ケース'), + (0x331D, 'M', 'コルナ'), + (0x331E, 'M', 'コーポ'), + (0x331F, 'M', 'サイクル'), + (0x3320, 'M', 'サンチーム'), + (0x3321, 'M', 'シリング'), + (0x3322, 'M', 'センチ'), + (0x3323, 'M', 'セント'), + (0x3324, 'M', 'ダース'), + (0x3325, 'M', 'デシ'), + (0x3326, 'M', 'ドル'), + (0x3327, 'M', 'トン'), + (0x3328, 'M', 'ナノ'), + (0x3329, 'M', 'ノット'), + (0x332A, 'M', 'ハイツ'), + (0x332B, 'M', 'パーセント'), + (0x332C, 'M', 'パーツ'), + (0x332D, 'M', 'バーレル'), + (0x332E, 'M', 'ピアストル'), + (0x332F, 'M', 'ピクル'), + (0x3330, 'M', 'ピコ'), + (0x3331, 'M', 'ビル'), + (0x3332, 'M', 'ファラッド'), + (0x3333, 'M', 'フィート'), + (0x3334, 'M', 'ブッシェル'), + (0x3335, 'M', 'フラン'), + (0x3336, 'M', 'ヘクタール'), + (0x3337, 'M', 'ペソ'), + (0x3338, 'M', 'ペニヒ'), + (0x3339, 'M', 'ヘルツ'), + (0x333A, 'M', 'ペンス'), + (0x333B, 'M', 'ページ'), + (0x333C, 'M', 'ベータ'), + (0x333D, 'M', 'ポイント'), + (0x333E, 'M', 'ボルト'), + (0x333F, 'M', 'ホン'), + (0x3340, 'M', 'ポンド'), + (0x3341, 'M', 'ホール'), + (0x3342, 'M', 'ホーン'), + (0x3343, 'M', 'マイクロ'), + (0x3344, 'M', 'マイル'), + (0x3345, 'M', 'マッハ'), + (0x3346, 'M', 'マルク'), + (0x3347, 'M', 'マンション'), + (0x3348, 'M', 'ミクロン'), + (0x3349, 'M', 'ミリ'), + (0x334A, 'M', 'ミリバール'), + (0x334B, 'M', 'メガ'), + (0x334C, 'M', 'メガトン'), + (0x334D, 'M', 'メートル'), + (0x334E, 'M', 'ヤード'), + (0x334F, 'M', 'ヤール'), + (0x3350, 'M', 'ユアン'), + (0x3351, 'M', 'リットル'), + (0x3352, 'M', 'リラ'), + (0x3353, 'M', 'ルピー'), + (0x3354, 'M', 'ルーブル'), + (0x3355, 'M', 'レム'), + (0x3356, 'M', 'レントゲン'), + (0x3357, 'M', 'ワット'), + (0x3358, 'M', '0点'), + (0x3359, 'M', '1点'), + (0x335A, 'M', '2点'), + (0x335B, 'M', '3点'), + (0x335C, 'M', '4点'), + (0x335D, 'M', '5点'), + (0x335E, 'M', '6点'), + (0x335F, 'M', '7点'), + (0x3360, 'M', '8点'), + (0x3361, 'M', '9点'), + (0x3362, 'M', '10点'), + (0x3363, 'M', '11点'), + (0x3364, 'M', '12点'), + (0x3365, 'M', '13点'), + (0x3366, 'M', '14点'), + (0x3367, 'M', '15点'), + (0x3368, 'M', '16点'), + (0x3369, 'M', '17点'), + (0x336A, 'M', '18点'), + (0x336B, 'M', '19点'), + (0x336C, 'M', '20点'), + (0x336D, 'M', '21点'), + (0x336E, 'M', '22点'), + (0x336F, 'M', '23点'), + (0x3370, 'M', '24点'), + (0x3371, 'M', 'hpa'), + (0x3372, 'M', 'da'), + (0x3373, 'M', 'au'), + (0x3374, 'M', 'bar'), + (0x3375, 'M', 'ov'), + (0x3376, 'M', 'pc'), + (0x3377, 'M', 'dm'), + (0x3378, 'M', 'dm2'), + (0x3379, 'M', 'dm3'), + ] + +def _seg_34() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x337A, 'M', 'iu'), + (0x337B, 'M', '平成'), + (0x337C, 'M', '昭和'), + (0x337D, 'M', '大正'), + (0x337E, 'M', '明治'), + (0x337F, 'M', '株式会社'), + (0x3380, 'M', 'pa'), + (0x3381, 'M', 'na'), + (0x3382, 'M', 'μa'), + (0x3383, 'M', 'ma'), + (0x3384, 'M', 'ka'), + (0x3385, 'M', 'kb'), + (0x3386, 'M', 'mb'), + (0x3387, 'M', 'gb'), + (0x3388, 'M', 'cal'), + (0x3389, 'M', 'kcal'), + (0x338A, 'M', 'pf'), + (0x338B, 'M', 'nf'), + (0x338C, 'M', 'μf'), + (0x338D, 'M', 'μg'), + (0x338E, 'M', 'mg'), + (0x338F, 'M', 'kg'), + (0x3390, 'M', 'hz'), + (0x3391, 'M', 'khz'), + (0x3392, 'M', 'mhz'), + (0x3393, 'M', 'ghz'), + (0x3394, 'M', 'thz'), + (0x3395, 'M', 'μl'), + (0x3396, 'M', 'ml'), + (0x3397, 'M', 'dl'), + (0x3398, 'M', 'kl'), + (0x3399, 'M', 'fm'), + (0x339A, 'M', 'nm'), + (0x339B, 'M', 'μm'), + (0x339C, 'M', 'mm'), + (0x339D, 'M', 'cm'), + (0x339E, 'M', 'km'), + (0x339F, 'M', 'mm2'), + (0x33A0, 'M', 'cm2'), + (0x33A1, 'M', 'm2'), + (0x33A2, 'M', 'km2'), + (0x33A3, 'M', 'mm3'), + (0x33A4, 'M', 'cm3'), + (0x33A5, 'M', 'm3'), + (0x33A6, 'M', 'km3'), + (0x33A7, 'M', 'm∕s'), + (0x33A8, 'M', 'm∕s2'), + (0x33A9, 'M', 'pa'), + (0x33AA, 'M', 'kpa'), + (0x33AB, 'M', 'mpa'), + (0x33AC, 'M', 'gpa'), + (0x33AD, 'M', 'rad'), + (0x33AE, 'M', 'rad∕s'), + (0x33AF, 'M', 'rad∕s2'), + (0x33B0, 'M', 'ps'), + (0x33B1, 'M', 'ns'), + (0x33B2, 'M', 'μs'), + (0x33B3, 'M', 'ms'), + (0x33B4, 'M', 'pv'), + (0x33B5, 'M', 'nv'), + (0x33B6, 'M', 'μv'), + (0x33B7, 'M', 'mv'), + (0x33B8, 'M', 'kv'), + (0x33B9, 'M', 'mv'), + (0x33BA, 'M', 'pw'), + (0x33BB, 'M', 'nw'), + (0x33BC, 'M', 'μw'), + (0x33BD, 'M', 'mw'), + (0x33BE, 'M', 'kw'), + (0x33BF, 'M', 'mw'), + (0x33C0, 'M', 'kω'), + (0x33C1, 'M', 'mω'), + (0x33C2, 'X'), + (0x33C3, 'M', 'bq'), + (0x33C4, 'M', 'cc'), + (0x33C5, 'M', 'cd'), + (0x33C6, 'M', 'c∕kg'), + (0x33C7, 'X'), + (0x33C8, 'M', 'db'), + (0x33C9, 'M', 'gy'), + (0x33CA, 'M', 'ha'), + (0x33CB, 'M', 'hp'), + (0x33CC, 'M', 'in'), + (0x33CD, 'M', 'kk'), + (0x33CE, 'M', 'km'), + (0x33CF, 'M', 'kt'), + (0x33D0, 'M', 'lm'), + (0x33D1, 'M', 'ln'), + (0x33D2, 'M', 'log'), + (0x33D3, 'M', 'lx'), + (0x33D4, 'M', 'mb'), + (0x33D5, 'M', 'mil'), + (0x33D6, 'M', 'mol'), + (0x33D7, 'M', 'ph'), + (0x33D8, 'X'), + (0x33D9, 'M', 'ppm'), + (0x33DA, 'M', 'pr'), + (0x33DB, 'M', 'sr'), + (0x33DC, 'M', 'sv'), + (0x33DD, 'M', 'wb'), + ] + +def _seg_35() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x33DE, 'M', 'v∕m'), + (0x33DF, 'M', 'a∕m'), + (0x33E0, 'M', '1日'), + (0x33E1, 'M', '2日'), + (0x33E2, 'M', '3日'), + (0x33E3, 'M', '4日'), + (0x33E4, 'M', '5日'), + (0x33E5, 'M', '6日'), + (0x33E6, 'M', '7日'), + (0x33E7, 'M', '8日'), + (0x33E8, 'M', '9日'), + (0x33E9, 'M', '10日'), + (0x33EA, 'M', '11日'), + (0x33EB, 'M', '12日'), + (0x33EC, 'M', '13日'), + (0x33ED, 'M', '14日'), + (0x33EE, 'M', '15日'), + (0x33EF, 'M', '16日'), + (0x33F0, 'M', '17日'), + (0x33F1, 'M', '18日'), + (0x33F2, 'M', '19日'), + (0x33F3, 'M', '20日'), + (0x33F4, 'M', '21日'), + (0x33F5, 'M', '22日'), + (0x33F6, 'M', '23日'), + (0x33F7, 'M', '24日'), + (0x33F8, 'M', '25日'), + (0x33F9, 'M', '26日'), + (0x33FA, 'M', '27日'), + (0x33FB, 'M', '28日'), + (0x33FC, 'M', '29日'), + (0x33FD, 'M', '30日'), + (0x33FE, 'M', '31日'), + (0x33FF, 'M', 'gal'), + (0x3400, 'V'), + (0xA48D, 'X'), + (0xA490, 'V'), + (0xA4C7, 'X'), + (0xA4D0, 'V'), + (0xA62C, 'X'), + (0xA640, 'M', 'ꙁ'), + (0xA641, 'V'), + (0xA642, 'M', 'ꙃ'), + (0xA643, 'V'), + (0xA644, 'M', 'ꙅ'), + (0xA645, 'V'), + (0xA646, 'M', 'ꙇ'), + (0xA647, 'V'), + (0xA648, 'M', 'ꙉ'), + (0xA649, 'V'), + (0xA64A, 'M', 'ꙋ'), + (0xA64B, 'V'), + (0xA64C, 'M', 'ꙍ'), + (0xA64D, 'V'), + (0xA64E, 'M', 'ꙏ'), + (0xA64F, 'V'), + (0xA650, 'M', 'ꙑ'), + (0xA651, 'V'), + (0xA652, 'M', 'ꙓ'), + (0xA653, 'V'), + (0xA654, 'M', 'ꙕ'), + (0xA655, 'V'), + (0xA656, 'M', 'ꙗ'), + (0xA657, 'V'), + (0xA658, 'M', 'ꙙ'), + (0xA659, 'V'), + (0xA65A, 'M', 'ꙛ'), + (0xA65B, 'V'), + (0xA65C, 'M', 'ꙝ'), + (0xA65D, 'V'), + (0xA65E, 'M', 'ꙟ'), + (0xA65F, 'V'), + (0xA660, 'M', 'ꙡ'), + (0xA661, 'V'), + (0xA662, 'M', 'ꙣ'), + (0xA663, 'V'), + (0xA664, 'M', 'ꙥ'), + (0xA665, 'V'), + (0xA666, 'M', 'ꙧ'), + (0xA667, 'V'), + (0xA668, 'M', 'ꙩ'), + (0xA669, 'V'), + (0xA66A, 'M', 'ꙫ'), + (0xA66B, 'V'), + (0xA66C, 'M', 'ꙭ'), + (0xA66D, 'V'), + (0xA680, 'M', 'ꚁ'), + (0xA681, 'V'), + (0xA682, 'M', 'ꚃ'), + (0xA683, 'V'), + (0xA684, 'M', 'ꚅ'), + (0xA685, 'V'), + (0xA686, 'M', 'ꚇ'), + (0xA687, 'V'), + (0xA688, 'M', 'ꚉ'), + (0xA689, 'V'), + (0xA68A, 'M', 'ꚋ'), + (0xA68B, 'V'), + (0xA68C, 'M', 'ꚍ'), + (0xA68D, 'V'), + ] + +def _seg_36() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xA68E, 'M', 'ꚏ'), + (0xA68F, 'V'), + (0xA690, 'M', 'ꚑ'), + (0xA691, 'V'), + (0xA692, 'M', 'ꚓ'), + (0xA693, 'V'), + (0xA694, 'M', 'ꚕ'), + (0xA695, 'V'), + (0xA696, 'M', 'ꚗ'), + (0xA697, 'V'), + (0xA698, 'M', 'ꚙ'), + (0xA699, 'V'), + (0xA69A, 'M', 'ꚛ'), + (0xA69B, 'V'), + (0xA69C, 'M', 'ъ'), + (0xA69D, 'M', 'ь'), + (0xA69E, 'V'), + (0xA6F8, 'X'), + (0xA700, 'V'), + (0xA722, 'M', 'ꜣ'), + (0xA723, 'V'), + (0xA724, 'M', 'ꜥ'), + (0xA725, 'V'), + (0xA726, 'M', 'ꜧ'), + (0xA727, 'V'), + (0xA728, 'M', 'ꜩ'), + (0xA729, 'V'), + (0xA72A, 'M', 'ꜫ'), + (0xA72B, 'V'), + (0xA72C, 'M', 'ꜭ'), + (0xA72D, 'V'), + (0xA72E, 'M', 'ꜯ'), + (0xA72F, 'V'), + (0xA732, 'M', 'ꜳ'), + (0xA733, 'V'), + (0xA734, 'M', 'ꜵ'), + (0xA735, 'V'), + (0xA736, 'M', 'ꜷ'), + (0xA737, 'V'), + (0xA738, 'M', 'ꜹ'), + (0xA739, 'V'), + (0xA73A, 'M', 'ꜻ'), + (0xA73B, 'V'), + (0xA73C, 'M', 'ꜽ'), + (0xA73D, 'V'), + (0xA73E, 'M', 'ꜿ'), + (0xA73F, 'V'), + (0xA740, 'M', 'ꝁ'), + (0xA741, 'V'), + (0xA742, 'M', 'ꝃ'), + (0xA743, 'V'), + (0xA744, 'M', 'ꝅ'), + (0xA745, 'V'), + (0xA746, 'M', 'ꝇ'), + (0xA747, 'V'), + (0xA748, 'M', 'ꝉ'), + (0xA749, 'V'), + (0xA74A, 'M', 'ꝋ'), + (0xA74B, 'V'), + (0xA74C, 'M', 'ꝍ'), + (0xA74D, 'V'), + (0xA74E, 'M', 'ꝏ'), + (0xA74F, 'V'), + (0xA750, 'M', 'ꝑ'), + (0xA751, 'V'), + (0xA752, 'M', 'ꝓ'), + (0xA753, 'V'), + (0xA754, 'M', 'ꝕ'), + (0xA755, 'V'), + (0xA756, 'M', 'ꝗ'), + (0xA757, 'V'), + (0xA758, 'M', 'ꝙ'), + (0xA759, 'V'), + (0xA75A, 'M', 'ꝛ'), + (0xA75B, 'V'), + (0xA75C, 'M', 'ꝝ'), + (0xA75D, 'V'), + (0xA75E, 'M', 'ꝟ'), + (0xA75F, 'V'), + (0xA760, 'M', 'ꝡ'), + (0xA761, 'V'), + (0xA762, 'M', 'ꝣ'), + (0xA763, 'V'), + (0xA764, 'M', 'ꝥ'), + (0xA765, 'V'), + (0xA766, 'M', 'ꝧ'), + (0xA767, 'V'), + (0xA768, 'M', 'ꝩ'), + (0xA769, 'V'), + (0xA76A, 'M', 'ꝫ'), + (0xA76B, 'V'), + (0xA76C, 'M', 'ꝭ'), + (0xA76D, 'V'), + (0xA76E, 'M', 'ꝯ'), + (0xA76F, 'V'), + (0xA770, 'M', 'ꝯ'), + (0xA771, 'V'), + (0xA779, 'M', 'ꝺ'), + (0xA77A, 'V'), + (0xA77B, 'M', 'ꝼ'), + ] + +def _seg_37() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xA77C, 'V'), + (0xA77D, 'M', 'ᵹ'), + (0xA77E, 'M', 'ꝿ'), + (0xA77F, 'V'), + (0xA780, 'M', 'ꞁ'), + (0xA781, 'V'), + (0xA782, 'M', 'ꞃ'), + (0xA783, 'V'), + (0xA784, 'M', 'ꞅ'), + (0xA785, 'V'), + (0xA786, 'M', 'ꞇ'), + (0xA787, 'V'), + (0xA78B, 'M', 'ꞌ'), + (0xA78C, 'V'), + (0xA78D, 'M', 'ɥ'), + (0xA78E, 'V'), + (0xA790, 'M', 'ꞑ'), + (0xA791, 'V'), + (0xA792, 'M', 'ꞓ'), + (0xA793, 'V'), + (0xA796, 'M', 'ꞗ'), + (0xA797, 'V'), + (0xA798, 'M', 'ꞙ'), + (0xA799, 'V'), + (0xA79A, 'M', 'ꞛ'), + (0xA79B, 'V'), + (0xA79C, 'M', 'ꞝ'), + (0xA79D, 'V'), + (0xA79E, 'M', 'ꞟ'), + (0xA79F, 'V'), + (0xA7A0, 'M', 'ꞡ'), + (0xA7A1, 'V'), + (0xA7A2, 'M', 'ꞣ'), + (0xA7A3, 'V'), + (0xA7A4, 'M', 'ꞥ'), + (0xA7A5, 'V'), + (0xA7A6, 'M', 'ꞧ'), + (0xA7A7, 'V'), + (0xA7A8, 'M', 'ꞩ'), + (0xA7A9, 'V'), + (0xA7AA, 'M', 'ɦ'), + (0xA7AB, 'M', 'ɜ'), + (0xA7AC, 'M', 'ɡ'), + (0xA7AD, 'M', 'ɬ'), + (0xA7AE, 'M', 'ɪ'), + (0xA7AF, 'V'), + (0xA7B0, 'M', 'ʞ'), + (0xA7B1, 'M', 'ʇ'), + (0xA7B2, 'M', 'ʝ'), + (0xA7B3, 'M', 'ꭓ'), + (0xA7B4, 'M', 'ꞵ'), + (0xA7B5, 'V'), + (0xA7B6, 'M', 'ꞷ'), + (0xA7B7, 'V'), + (0xA7B8, 'M', 'ꞹ'), + (0xA7B9, 'V'), + (0xA7BA, 'M', 'ꞻ'), + (0xA7BB, 'V'), + (0xA7BC, 'M', 'ꞽ'), + (0xA7BD, 'V'), + (0xA7BE, 'M', 'ꞿ'), + (0xA7BF, 'V'), + (0xA7C0, 'M', 'ꟁ'), + (0xA7C1, 'V'), + (0xA7C2, 'M', 'ꟃ'), + (0xA7C3, 'V'), + (0xA7C4, 'M', 'ꞔ'), + (0xA7C5, 'M', 'ʂ'), + (0xA7C6, 'M', 'ᶎ'), + (0xA7C7, 'M', 'ꟈ'), + (0xA7C8, 'V'), + (0xA7C9, 'M', 'ꟊ'), + (0xA7CA, 'V'), + (0xA7CB, 'X'), + (0xA7D0, 'M', 'ꟑ'), + (0xA7D1, 'V'), + (0xA7D2, 'X'), + (0xA7D3, 'V'), + (0xA7D4, 'X'), + (0xA7D5, 'V'), + (0xA7D6, 'M', 'ꟗ'), + (0xA7D7, 'V'), + (0xA7D8, 'M', 'ꟙ'), + (0xA7D9, 'V'), + (0xA7DA, 'X'), + (0xA7F2, 'M', 'c'), + (0xA7F3, 'M', 'f'), + (0xA7F4, 'M', 'q'), + (0xA7F5, 'M', 'ꟶ'), + (0xA7F6, 'V'), + (0xA7F8, 'M', 'ħ'), + (0xA7F9, 'M', 'œ'), + (0xA7FA, 'V'), + (0xA82D, 'X'), + (0xA830, 'V'), + (0xA83A, 'X'), + (0xA840, 'V'), + (0xA878, 'X'), + (0xA880, 'V'), + (0xA8C6, 'X'), + ] + +def _seg_38() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xA8CE, 'V'), + (0xA8DA, 'X'), + (0xA8E0, 'V'), + (0xA954, 'X'), + (0xA95F, 'V'), + (0xA97D, 'X'), + (0xA980, 'V'), + (0xA9CE, 'X'), + (0xA9CF, 'V'), + (0xA9DA, 'X'), + (0xA9DE, 'V'), + (0xA9FF, 'X'), + (0xAA00, 'V'), + (0xAA37, 'X'), + (0xAA40, 'V'), + (0xAA4E, 'X'), + (0xAA50, 'V'), + (0xAA5A, 'X'), + (0xAA5C, 'V'), + (0xAAC3, 'X'), + (0xAADB, 'V'), + (0xAAF7, 'X'), + (0xAB01, 'V'), + (0xAB07, 'X'), + (0xAB09, 'V'), + (0xAB0F, 'X'), + (0xAB11, 'V'), + (0xAB17, 'X'), + (0xAB20, 'V'), + (0xAB27, 'X'), + (0xAB28, 'V'), + (0xAB2F, 'X'), + (0xAB30, 'V'), + (0xAB5C, 'M', 'ꜧ'), + (0xAB5D, 'M', 'ꬷ'), + (0xAB5E, 'M', 'ɫ'), + (0xAB5F, 'M', 'ꭒ'), + (0xAB60, 'V'), + (0xAB69, 'M', 'ʍ'), + (0xAB6A, 'V'), + (0xAB6C, 'X'), + (0xAB70, 'M', 'Ꭰ'), + (0xAB71, 'M', 'Ꭱ'), + (0xAB72, 'M', 'Ꭲ'), + (0xAB73, 'M', 'Ꭳ'), + (0xAB74, 'M', 'Ꭴ'), + (0xAB75, 'M', 'Ꭵ'), + (0xAB76, 'M', 'Ꭶ'), + (0xAB77, 'M', 'Ꭷ'), + (0xAB78, 'M', 'Ꭸ'), + (0xAB79, 'M', 'Ꭹ'), + (0xAB7A, 'M', 'Ꭺ'), + (0xAB7B, 'M', 'Ꭻ'), + (0xAB7C, 'M', 'Ꭼ'), + (0xAB7D, 'M', 'Ꭽ'), + (0xAB7E, 'M', 'Ꭾ'), + (0xAB7F, 'M', 'Ꭿ'), + (0xAB80, 'M', 'Ꮀ'), + (0xAB81, 'M', 'Ꮁ'), + (0xAB82, 'M', 'Ꮂ'), + (0xAB83, 'M', 'Ꮃ'), + (0xAB84, 'M', 'Ꮄ'), + (0xAB85, 'M', 'Ꮅ'), + (0xAB86, 'M', 'Ꮆ'), + (0xAB87, 'M', 'Ꮇ'), + (0xAB88, 'M', 'Ꮈ'), + (0xAB89, 'M', 'Ꮉ'), + (0xAB8A, 'M', 'Ꮊ'), + (0xAB8B, 'M', 'Ꮋ'), + (0xAB8C, 'M', 'Ꮌ'), + (0xAB8D, 'M', 'Ꮍ'), + (0xAB8E, 'M', 'Ꮎ'), + (0xAB8F, 'M', 'Ꮏ'), + (0xAB90, 'M', 'Ꮐ'), + (0xAB91, 'M', 'Ꮑ'), + (0xAB92, 'M', 'Ꮒ'), + (0xAB93, 'M', 'Ꮓ'), + (0xAB94, 'M', 'Ꮔ'), + (0xAB95, 'M', 'Ꮕ'), + (0xAB96, 'M', 'Ꮖ'), + (0xAB97, 'M', 'Ꮗ'), + (0xAB98, 'M', 'Ꮘ'), + (0xAB99, 'M', 'Ꮙ'), + (0xAB9A, 'M', 'Ꮚ'), + (0xAB9B, 'M', 'Ꮛ'), + (0xAB9C, 'M', 'Ꮜ'), + (0xAB9D, 'M', 'Ꮝ'), + (0xAB9E, 'M', 'Ꮞ'), + (0xAB9F, 'M', 'Ꮟ'), + (0xABA0, 'M', 'Ꮠ'), + (0xABA1, 'M', 'Ꮡ'), + (0xABA2, 'M', 'Ꮢ'), + (0xABA3, 'M', 'Ꮣ'), + (0xABA4, 'M', 'Ꮤ'), + (0xABA5, 'M', 'Ꮥ'), + (0xABA6, 'M', 'Ꮦ'), + (0xABA7, 'M', 'Ꮧ'), + (0xABA8, 'M', 'Ꮨ'), + (0xABA9, 'M', 'Ꮩ'), + (0xABAA, 'M', 'Ꮪ'), + ] + +def _seg_39() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xABAB, 'M', 'Ꮫ'), + (0xABAC, 'M', 'Ꮬ'), + (0xABAD, 'M', 'Ꮭ'), + (0xABAE, 'M', 'Ꮮ'), + (0xABAF, 'M', 'Ꮯ'), + (0xABB0, 'M', 'Ꮰ'), + (0xABB1, 'M', 'Ꮱ'), + (0xABB2, 'M', 'Ꮲ'), + (0xABB3, 'M', 'Ꮳ'), + (0xABB4, 'M', 'Ꮴ'), + (0xABB5, 'M', 'Ꮵ'), + (0xABB6, 'M', 'Ꮶ'), + (0xABB7, 'M', 'Ꮷ'), + (0xABB8, 'M', 'Ꮸ'), + (0xABB9, 'M', 'Ꮹ'), + (0xABBA, 'M', 'Ꮺ'), + (0xABBB, 'M', 'Ꮻ'), + (0xABBC, 'M', 'Ꮼ'), + (0xABBD, 'M', 'Ꮽ'), + (0xABBE, 'M', 'Ꮾ'), + (0xABBF, 'M', 'Ꮿ'), + (0xABC0, 'V'), + (0xABEE, 'X'), + (0xABF0, 'V'), + (0xABFA, 'X'), + (0xAC00, 'V'), + (0xD7A4, 'X'), + (0xD7B0, 'V'), + (0xD7C7, 'X'), + (0xD7CB, 'V'), + (0xD7FC, 'X'), + (0xF900, 'M', '豈'), + (0xF901, 'M', '更'), + (0xF902, 'M', '車'), + (0xF903, 'M', '賈'), + (0xF904, 'M', '滑'), + (0xF905, 'M', '串'), + (0xF906, 'M', '句'), + (0xF907, 'M', '龜'), + (0xF909, 'M', '契'), + (0xF90A, 'M', '金'), + (0xF90B, 'M', '喇'), + (0xF90C, 'M', '奈'), + (0xF90D, 'M', '懶'), + (0xF90E, 'M', '癩'), + (0xF90F, 'M', '羅'), + (0xF910, 'M', '蘿'), + (0xF911, 'M', '螺'), + (0xF912, 'M', '裸'), + (0xF913, 'M', '邏'), + (0xF914, 'M', '樂'), + (0xF915, 'M', '洛'), + (0xF916, 'M', '烙'), + (0xF917, 'M', '珞'), + (0xF918, 'M', '落'), + (0xF919, 'M', '酪'), + (0xF91A, 'M', '駱'), + (0xF91B, 'M', '亂'), + (0xF91C, 'M', '卵'), + (0xF91D, 'M', '欄'), + (0xF91E, 'M', '爛'), + (0xF91F, 'M', '蘭'), + (0xF920, 'M', '鸞'), + (0xF921, 'M', '嵐'), + (0xF922, 'M', '濫'), + (0xF923, 'M', '藍'), + (0xF924, 'M', '襤'), + (0xF925, 'M', '拉'), + (0xF926, 'M', '臘'), + (0xF927, 'M', '蠟'), + (0xF928, 'M', '廊'), + (0xF929, 'M', '朗'), + (0xF92A, 'M', '浪'), + (0xF92B, 'M', '狼'), + (0xF92C, 'M', '郎'), + (0xF92D, 'M', '來'), + (0xF92E, 'M', '冷'), + (0xF92F, 'M', '勞'), + (0xF930, 'M', '擄'), + (0xF931, 'M', '櫓'), + (0xF932, 'M', '爐'), + (0xF933, 'M', '盧'), + (0xF934, 'M', '老'), + (0xF935, 'M', '蘆'), + (0xF936, 'M', '虜'), + (0xF937, 'M', '路'), + (0xF938, 'M', '露'), + (0xF939, 'M', '魯'), + (0xF93A, 'M', '鷺'), + (0xF93B, 'M', '碌'), + (0xF93C, 'M', '祿'), + (0xF93D, 'M', '綠'), + (0xF93E, 'M', '菉'), + (0xF93F, 'M', '錄'), + (0xF940, 'M', '鹿'), + (0xF941, 'M', '論'), + (0xF942, 'M', '壟'), + (0xF943, 'M', '弄'), + (0xF944, 'M', '籠'), + (0xF945, 'M', '聾'), + ] + +def _seg_40() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xF946, 'M', '牢'), + (0xF947, 'M', '磊'), + (0xF948, 'M', '賂'), + (0xF949, 'M', '雷'), + (0xF94A, 'M', '壘'), + (0xF94B, 'M', '屢'), + (0xF94C, 'M', '樓'), + (0xF94D, 'M', '淚'), + (0xF94E, 'M', '漏'), + (0xF94F, 'M', '累'), + (0xF950, 'M', '縷'), + (0xF951, 'M', '陋'), + (0xF952, 'M', '勒'), + (0xF953, 'M', '肋'), + (0xF954, 'M', '凜'), + (0xF955, 'M', '凌'), + (0xF956, 'M', '稜'), + (0xF957, 'M', '綾'), + (0xF958, 'M', '菱'), + (0xF959, 'M', '陵'), + (0xF95A, 'M', '讀'), + (0xF95B, 'M', '拏'), + (0xF95C, 'M', '樂'), + (0xF95D, 'M', '諾'), + (0xF95E, 'M', '丹'), + (0xF95F, 'M', '寧'), + (0xF960, 'M', '怒'), + (0xF961, 'M', '率'), + (0xF962, 'M', '異'), + (0xF963, 'M', '北'), + (0xF964, 'M', '磻'), + (0xF965, 'M', '便'), + (0xF966, 'M', '復'), + (0xF967, 'M', '不'), + (0xF968, 'M', '泌'), + (0xF969, 'M', '數'), + (0xF96A, 'M', '索'), + (0xF96B, 'M', '參'), + (0xF96C, 'M', '塞'), + (0xF96D, 'M', '省'), + (0xF96E, 'M', '葉'), + (0xF96F, 'M', '說'), + (0xF970, 'M', '殺'), + (0xF971, 'M', '辰'), + (0xF972, 'M', '沈'), + (0xF973, 'M', '拾'), + (0xF974, 'M', '若'), + (0xF975, 'M', '掠'), + (0xF976, 'M', '略'), + (0xF977, 'M', '亮'), + (0xF978, 'M', '兩'), + (0xF979, 'M', '凉'), + (0xF97A, 'M', '梁'), + (0xF97B, 'M', '糧'), + (0xF97C, 'M', '良'), + (0xF97D, 'M', '諒'), + (0xF97E, 'M', '量'), + (0xF97F, 'M', '勵'), + (0xF980, 'M', '呂'), + (0xF981, 'M', '女'), + (0xF982, 'M', '廬'), + (0xF983, 'M', '旅'), + (0xF984, 'M', '濾'), + (0xF985, 'M', '礪'), + (0xF986, 'M', '閭'), + (0xF987, 'M', '驪'), + (0xF988, 'M', '麗'), + (0xF989, 'M', '黎'), + (0xF98A, 'M', '力'), + (0xF98B, 'M', '曆'), + (0xF98C, 'M', '歷'), + (0xF98D, 'M', '轢'), + (0xF98E, 'M', '年'), + (0xF98F, 'M', '憐'), + (0xF990, 'M', '戀'), + (0xF991, 'M', '撚'), + (0xF992, 'M', '漣'), + (0xF993, 'M', '煉'), + (0xF994, 'M', '璉'), + (0xF995, 'M', '秊'), + (0xF996, 'M', '練'), + (0xF997, 'M', '聯'), + (0xF998, 'M', '輦'), + (0xF999, 'M', '蓮'), + (0xF99A, 'M', '連'), + (0xF99B, 'M', '鍊'), + (0xF99C, 'M', '列'), + (0xF99D, 'M', '劣'), + (0xF99E, 'M', '咽'), + (0xF99F, 'M', '烈'), + (0xF9A0, 'M', '裂'), + (0xF9A1, 'M', '說'), + (0xF9A2, 'M', '廉'), + (0xF9A3, 'M', '念'), + (0xF9A4, 'M', '捻'), + (0xF9A5, 'M', '殮'), + (0xF9A6, 'M', '簾'), + (0xF9A7, 'M', '獵'), + (0xF9A8, 'M', '令'), + (0xF9A9, 'M', '囹'), + ] + +def _seg_41() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xF9AA, 'M', '寧'), + (0xF9AB, 'M', '嶺'), + (0xF9AC, 'M', '怜'), + (0xF9AD, 'M', '玲'), + (0xF9AE, 'M', '瑩'), + (0xF9AF, 'M', '羚'), + (0xF9B0, 'M', '聆'), + (0xF9B1, 'M', '鈴'), + (0xF9B2, 'M', '零'), + (0xF9B3, 'M', '靈'), + (0xF9B4, 'M', '領'), + (0xF9B5, 'M', '例'), + (0xF9B6, 'M', '禮'), + (0xF9B7, 'M', '醴'), + (0xF9B8, 'M', '隸'), + (0xF9B9, 'M', '惡'), + (0xF9BA, 'M', '了'), + (0xF9BB, 'M', '僚'), + (0xF9BC, 'M', '寮'), + (0xF9BD, 'M', '尿'), + (0xF9BE, 'M', '料'), + (0xF9BF, 'M', '樂'), + (0xF9C0, 'M', '燎'), + (0xF9C1, 'M', '療'), + (0xF9C2, 'M', '蓼'), + (0xF9C3, 'M', '遼'), + (0xF9C4, 'M', '龍'), + (0xF9C5, 'M', '暈'), + (0xF9C6, 'M', '阮'), + (0xF9C7, 'M', '劉'), + (0xF9C8, 'M', '杻'), + (0xF9C9, 'M', '柳'), + (0xF9CA, 'M', '流'), + (0xF9CB, 'M', '溜'), + (0xF9CC, 'M', '琉'), + (0xF9CD, 'M', '留'), + (0xF9CE, 'M', '硫'), + (0xF9CF, 'M', '紐'), + (0xF9D0, 'M', '類'), + (0xF9D1, 'M', '六'), + (0xF9D2, 'M', '戮'), + (0xF9D3, 'M', '陸'), + (0xF9D4, 'M', '倫'), + (0xF9D5, 'M', '崙'), + (0xF9D6, 'M', '淪'), + (0xF9D7, 'M', '輪'), + (0xF9D8, 'M', '律'), + (0xF9D9, 'M', '慄'), + (0xF9DA, 'M', '栗'), + (0xF9DB, 'M', '率'), + (0xF9DC, 'M', '隆'), + (0xF9DD, 'M', '利'), + (0xF9DE, 'M', '吏'), + (0xF9DF, 'M', '履'), + (0xF9E0, 'M', '易'), + (0xF9E1, 'M', '李'), + (0xF9E2, 'M', '梨'), + (0xF9E3, 'M', '泥'), + (0xF9E4, 'M', '理'), + (0xF9E5, 'M', '痢'), + (0xF9E6, 'M', '罹'), + (0xF9E7, 'M', '裏'), + (0xF9E8, 'M', '裡'), + (0xF9E9, 'M', '里'), + (0xF9EA, 'M', '離'), + (0xF9EB, 'M', '匿'), + (0xF9EC, 'M', '溺'), + (0xF9ED, 'M', '吝'), + (0xF9EE, 'M', '燐'), + (0xF9EF, 'M', '璘'), + (0xF9F0, 'M', '藺'), + (0xF9F1, 'M', '隣'), + (0xF9F2, 'M', '鱗'), + (0xF9F3, 'M', '麟'), + (0xF9F4, 'M', '林'), + (0xF9F5, 'M', '淋'), + (0xF9F6, 'M', '臨'), + (0xF9F7, 'M', '立'), + (0xF9F8, 'M', '笠'), + (0xF9F9, 'M', '粒'), + (0xF9FA, 'M', '狀'), + (0xF9FB, 'M', '炙'), + (0xF9FC, 'M', '識'), + (0xF9FD, 'M', '什'), + (0xF9FE, 'M', '茶'), + (0xF9FF, 'M', '刺'), + (0xFA00, 'M', '切'), + (0xFA01, 'M', '度'), + (0xFA02, 'M', '拓'), + (0xFA03, 'M', '糖'), + (0xFA04, 'M', '宅'), + (0xFA05, 'M', '洞'), + (0xFA06, 'M', '暴'), + (0xFA07, 'M', '輻'), + (0xFA08, 'M', '行'), + (0xFA09, 'M', '降'), + (0xFA0A, 'M', '見'), + (0xFA0B, 'M', '廓'), + (0xFA0C, 'M', '兀'), + (0xFA0D, 'M', '嗀'), + ] + +def _seg_42() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFA0E, 'V'), + (0xFA10, 'M', '塚'), + (0xFA11, 'V'), + (0xFA12, 'M', '晴'), + (0xFA13, 'V'), + (0xFA15, 'M', '凞'), + (0xFA16, 'M', '猪'), + (0xFA17, 'M', '益'), + (0xFA18, 'M', '礼'), + (0xFA19, 'M', '神'), + (0xFA1A, 'M', '祥'), + (0xFA1B, 'M', '福'), + (0xFA1C, 'M', '靖'), + (0xFA1D, 'M', '精'), + (0xFA1E, 'M', '羽'), + (0xFA1F, 'V'), + (0xFA20, 'M', '蘒'), + (0xFA21, 'V'), + (0xFA22, 'M', '諸'), + (0xFA23, 'V'), + (0xFA25, 'M', '逸'), + (0xFA26, 'M', '都'), + (0xFA27, 'V'), + (0xFA2A, 'M', '飯'), + (0xFA2B, 'M', '飼'), + (0xFA2C, 'M', '館'), + (0xFA2D, 'M', '鶴'), + (0xFA2E, 'M', '郞'), + (0xFA2F, 'M', '隷'), + (0xFA30, 'M', '侮'), + (0xFA31, 'M', '僧'), + (0xFA32, 'M', '免'), + (0xFA33, 'M', '勉'), + (0xFA34, 'M', '勤'), + (0xFA35, 'M', '卑'), + (0xFA36, 'M', '喝'), + (0xFA37, 'M', '嘆'), + (0xFA38, 'M', '器'), + (0xFA39, 'M', '塀'), + (0xFA3A, 'M', '墨'), + (0xFA3B, 'M', '層'), + (0xFA3C, 'M', '屮'), + (0xFA3D, 'M', '悔'), + (0xFA3E, 'M', '慨'), + (0xFA3F, 'M', '憎'), + (0xFA40, 'M', '懲'), + (0xFA41, 'M', '敏'), + (0xFA42, 'M', '既'), + (0xFA43, 'M', '暑'), + (0xFA44, 'M', '梅'), + (0xFA45, 'M', '海'), + (0xFA46, 'M', '渚'), + (0xFA47, 'M', '漢'), + (0xFA48, 'M', '煮'), + (0xFA49, 'M', '爫'), + (0xFA4A, 'M', '琢'), + (0xFA4B, 'M', '碑'), + (0xFA4C, 'M', '社'), + (0xFA4D, 'M', '祉'), + (0xFA4E, 'M', '祈'), + (0xFA4F, 'M', '祐'), + (0xFA50, 'M', '祖'), + (0xFA51, 'M', '祝'), + (0xFA52, 'M', '禍'), + (0xFA53, 'M', '禎'), + (0xFA54, 'M', '穀'), + (0xFA55, 'M', '突'), + (0xFA56, 'M', '節'), + (0xFA57, 'M', '練'), + (0xFA58, 'M', '縉'), + (0xFA59, 'M', '繁'), + (0xFA5A, 'M', '署'), + (0xFA5B, 'M', '者'), + (0xFA5C, 'M', '臭'), + (0xFA5D, 'M', '艹'), + (0xFA5F, 'M', '著'), + (0xFA60, 'M', '褐'), + (0xFA61, 'M', '視'), + (0xFA62, 'M', '謁'), + (0xFA63, 'M', '謹'), + (0xFA64, 'M', '賓'), + (0xFA65, 'M', '贈'), + (0xFA66, 'M', '辶'), + (0xFA67, 'M', '逸'), + (0xFA68, 'M', '難'), + (0xFA69, 'M', '響'), + (0xFA6A, 'M', '頻'), + (0xFA6B, 'M', '恵'), + (0xFA6C, 'M', '𤋮'), + (0xFA6D, 'M', '舘'), + (0xFA6E, 'X'), + (0xFA70, 'M', '並'), + (0xFA71, 'M', '况'), + (0xFA72, 'M', '全'), + (0xFA73, 'M', '侀'), + (0xFA74, 'M', '充'), + (0xFA75, 'M', '冀'), + (0xFA76, 'M', '勇'), + (0xFA77, 'M', '勺'), + (0xFA78, 'M', '喝'), + ] + +def _seg_43() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFA79, 'M', '啕'), + (0xFA7A, 'M', '喙'), + (0xFA7B, 'M', '嗢'), + (0xFA7C, 'M', '塚'), + (0xFA7D, 'M', '墳'), + (0xFA7E, 'M', '奄'), + (0xFA7F, 'M', '奔'), + (0xFA80, 'M', '婢'), + (0xFA81, 'M', '嬨'), + (0xFA82, 'M', '廒'), + (0xFA83, 'M', '廙'), + (0xFA84, 'M', '彩'), + (0xFA85, 'M', '徭'), + (0xFA86, 'M', '惘'), + (0xFA87, 'M', '慎'), + (0xFA88, 'M', '愈'), + (0xFA89, 'M', '憎'), + (0xFA8A, 'M', '慠'), + (0xFA8B, 'M', '懲'), + (0xFA8C, 'M', '戴'), + (0xFA8D, 'M', '揄'), + (0xFA8E, 'M', '搜'), + (0xFA8F, 'M', '摒'), + (0xFA90, 'M', '敖'), + (0xFA91, 'M', '晴'), + (0xFA92, 'M', '朗'), + (0xFA93, 'M', '望'), + (0xFA94, 'M', '杖'), + (0xFA95, 'M', '歹'), + (0xFA96, 'M', '殺'), + (0xFA97, 'M', '流'), + (0xFA98, 'M', '滛'), + (0xFA99, 'M', '滋'), + (0xFA9A, 'M', '漢'), + (0xFA9B, 'M', '瀞'), + (0xFA9C, 'M', '煮'), + (0xFA9D, 'M', '瞧'), + (0xFA9E, 'M', '爵'), + (0xFA9F, 'M', '犯'), + (0xFAA0, 'M', '猪'), + (0xFAA1, 'M', '瑱'), + (0xFAA2, 'M', '甆'), + (0xFAA3, 'M', '画'), + (0xFAA4, 'M', '瘝'), + (0xFAA5, 'M', '瘟'), + (0xFAA6, 'M', '益'), + (0xFAA7, 'M', '盛'), + (0xFAA8, 'M', '直'), + (0xFAA9, 'M', '睊'), + (0xFAAA, 'M', '着'), + (0xFAAB, 'M', '磌'), + (0xFAAC, 'M', '窱'), + (0xFAAD, 'M', '節'), + (0xFAAE, 'M', '类'), + (0xFAAF, 'M', '絛'), + (0xFAB0, 'M', '練'), + (0xFAB1, 'M', '缾'), + (0xFAB2, 'M', '者'), + (0xFAB3, 'M', '荒'), + (0xFAB4, 'M', '華'), + (0xFAB5, 'M', '蝹'), + (0xFAB6, 'M', '襁'), + (0xFAB7, 'M', '覆'), + (0xFAB8, 'M', '視'), + (0xFAB9, 'M', '調'), + (0xFABA, 'M', '諸'), + (0xFABB, 'M', '請'), + (0xFABC, 'M', '謁'), + (0xFABD, 'M', '諾'), + (0xFABE, 'M', '諭'), + (0xFABF, 'M', '謹'), + (0xFAC0, 'M', '變'), + (0xFAC1, 'M', '贈'), + (0xFAC2, 'M', '輸'), + (0xFAC3, 'M', '遲'), + (0xFAC4, 'M', '醙'), + (0xFAC5, 'M', '鉶'), + (0xFAC6, 'M', '陼'), + (0xFAC7, 'M', '難'), + (0xFAC8, 'M', '靖'), + (0xFAC9, 'M', '韛'), + (0xFACA, 'M', '響'), + (0xFACB, 'M', '頋'), + (0xFACC, 'M', '頻'), + (0xFACD, 'M', '鬒'), + (0xFACE, 'M', '龜'), + (0xFACF, 'M', '𢡊'), + (0xFAD0, 'M', '𢡄'), + (0xFAD1, 'M', '𣏕'), + (0xFAD2, 'M', '㮝'), + (0xFAD3, 'M', '䀘'), + (0xFAD4, 'M', '䀹'), + (0xFAD5, 'M', '𥉉'), + (0xFAD6, 'M', '𥳐'), + (0xFAD7, 'M', '𧻓'), + (0xFAD8, 'M', '齃'), + (0xFAD9, 'M', '龎'), + (0xFADA, 'X'), + (0xFB00, 'M', 'ff'), + (0xFB01, 'M', 'fi'), + ] + +def _seg_44() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFB02, 'M', 'fl'), + (0xFB03, 'M', 'ffi'), + (0xFB04, 'M', 'ffl'), + (0xFB05, 'M', 'st'), + (0xFB07, 'X'), + (0xFB13, 'M', 'մն'), + (0xFB14, 'M', 'մե'), + (0xFB15, 'M', 'մի'), + (0xFB16, 'M', 'վն'), + (0xFB17, 'M', 'մխ'), + (0xFB18, 'X'), + (0xFB1D, 'M', 'יִ'), + (0xFB1E, 'V'), + (0xFB1F, 'M', 'ײַ'), + (0xFB20, 'M', 'ע'), + (0xFB21, 'M', 'א'), + (0xFB22, 'M', 'ד'), + (0xFB23, 'M', 'ה'), + (0xFB24, 'M', 'כ'), + (0xFB25, 'M', 'ל'), + (0xFB26, 'M', 'ם'), + (0xFB27, 'M', 'ר'), + (0xFB28, 'M', 'ת'), + (0xFB29, '3', '+'), + (0xFB2A, 'M', 'שׁ'), + (0xFB2B, 'M', 'שׂ'), + (0xFB2C, 'M', 'שּׁ'), + (0xFB2D, 'M', 'שּׂ'), + (0xFB2E, 'M', 'אַ'), + (0xFB2F, 'M', 'אָ'), + (0xFB30, 'M', 'אּ'), + (0xFB31, 'M', 'בּ'), + (0xFB32, 'M', 'גּ'), + (0xFB33, 'M', 'דּ'), + (0xFB34, 'M', 'הּ'), + (0xFB35, 'M', 'וּ'), + (0xFB36, 'M', 'זּ'), + (0xFB37, 'X'), + (0xFB38, 'M', 'טּ'), + (0xFB39, 'M', 'יּ'), + (0xFB3A, 'M', 'ךּ'), + (0xFB3B, 'M', 'כּ'), + (0xFB3C, 'M', 'לּ'), + (0xFB3D, 'X'), + (0xFB3E, 'M', 'מּ'), + (0xFB3F, 'X'), + (0xFB40, 'M', 'נּ'), + (0xFB41, 'M', 'סּ'), + (0xFB42, 'X'), + (0xFB43, 'M', 'ףּ'), + (0xFB44, 'M', 'פּ'), + (0xFB45, 'X'), + (0xFB46, 'M', 'צּ'), + (0xFB47, 'M', 'קּ'), + (0xFB48, 'M', 'רּ'), + (0xFB49, 'M', 'שּ'), + (0xFB4A, 'M', 'תּ'), + (0xFB4B, 'M', 'וֹ'), + (0xFB4C, 'M', 'בֿ'), + (0xFB4D, 'M', 'כֿ'), + (0xFB4E, 'M', 'פֿ'), + (0xFB4F, 'M', 'אל'), + (0xFB50, 'M', 'ٱ'), + (0xFB52, 'M', 'ٻ'), + (0xFB56, 'M', 'پ'), + (0xFB5A, 'M', 'ڀ'), + (0xFB5E, 'M', 'ٺ'), + (0xFB62, 'M', 'ٿ'), + (0xFB66, 'M', 'ٹ'), + (0xFB6A, 'M', 'ڤ'), + (0xFB6E, 'M', 'ڦ'), + (0xFB72, 'M', 'ڄ'), + (0xFB76, 'M', 'ڃ'), + (0xFB7A, 'M', 'چ'), + (0xFB7E, 'M', 'ڇ'), + (0xFB82, 'M', 'ڍ'), + (0xFB84, 'M', 'ڌ'), + (0xFB86, 'M', 'ڎ'), + (0xFB88, 'M', 'ڈ'), + (0xFB8A, 'M', 'ژ'), + (0xFB8C, 'M', 'ڑ'), + (0xFB8E, 'M', 'ک'), + (0xFB92, 'M', 'گ'), + (0xFB96, 'M', 'ڳ'), + (0xFB9A, 'M', 'ڱ'), + (0xFB9E, 'M', 'ں'), + (0xFBA0, 'M', 'ڻ'), + (0xFBA4, 'M', 'ۀ'), + (0xFBA6, 'M', 'ہ'), + (0xFBAA, 'M', 'ھ'), + (0xFBAE, 'M', 'ے'), + (0xFBB0, 'M', 'ۓ'), + (0xFBB2, 'V'), + (0xFBC3, 'X'), + (0xFBD3, 'M', 'ڭ'), + (0xFBD7, 'M', 'ۇ'), + (0xFBD9, 'M', 'ۆ'), + (0xFBDB, 'M', 'ۈ'), + (0xFBDD, 'M', 'ۇٴ'), + (0xFBDE, 'M', 'ۋ'), + ] + +def _seg_45() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFBE0, 'M', 'ۅ'), + (0xFBE2, 'M', 'ۉ'), + (0xFBE4, 'M', 'ې'), + (0xFBE8, 'M', 'ى'), + (0xFBEA, 'M', 'ئا'), + (0xFBEC, 'M', 'ئە'), + (0xFBEE, 'M', 'ئو'), + (0xFBF0, 'M', 'ئۇ'), + (0xFBF2, 'M', 'ئۆ'), + (0xFBF4, 'M', 'ئۈ'), + (0xFBF6, 'M', 'ئې'), + (0xFBF9, 'M', 'ئى'), + (0xFBFC, 'M', 'ی'), + (0xFC00, 'M', 'ئج'), + (0xFC01, 'M', 'ئح'), + (0xFC02, 'M', 'ئم'), + (0xFC03, 'M', 'ئى'), + (0xFC04, 'M', 'ئي'), + (0xFC05, 'M', 'بج'), + (0xFC06, 'M', 'بح'), + (0xFC07, 'M', 'بخ'), + (0xFC08, 'M', 'بم'), + (0xFC09, 'M', 'بى'), + (0xFC0A, 'M', 'بي'), + (0xFC0B, 'M', 'تج'), + (0xFC0C, 'M', 'تح'), + (0xFC0D, 'M', 'تخ'), + (0xFC0E, 'M', 'تم'), + (0xFC0F, 'M', 'تى'), + (0xFC10, 'M', 'تي'), + (0xFC11, 'M', 'ثج'), + (0xFC12, 'M', 'ثم'), + (0xFC13, 'M', 'ثى'), + (0xFC14, 'M', 'ثي'), + (0xFC15, 'M', 'جح'), + (0xFC16, 'M', 'جم'), + (0xFC17, 'M', 'حج'), + (0xFC18, 'M', 'حم'), + (0xFC19, 'M', 'خج'), + (0xFC1A, 'M', 'خح'), + (0xFC1B, 'M', 'خم'), + (0xFC1C, 'M', 'سج'), + (0xFC1D, 'M', 'سح'), + (0xFC1E, 'M', 'سخ'), + (0xFC1F, 'M', 'سم'), + (0xFC20, 'M', 'صح'), + (0xFC21, 'M', 'صم'), + (0xFC22, 'M', 'ضج'), + (0xFC23, 'M', 'ضح'), + (0xFC24, 'M', 'ضخ'), + (0xFC25, 'M', 'ضم'), + (0xFC26, 'M', 'طح'), + (0xFC27, 'M', 'طم'), + (0xFC28, 'M', 'ظم'), + (0xFC29, 'M', 'عج'), + (0xFC2A, 'M', 'عم'), + (0xFC2B, 'M', 'غج'), + (0xFC2C, 'M', 'غم'), + (0xFC2D, 'M', 'فج'), + (0xFC2E, 'M', 'فح'), + (0xFC2F, 'M', 'فخ'), + (0xFC30, 'M', 'فم'), + (0xFC31, 'M', 'فى'), + (0xFC32, 'M', 'في'), + (0xFC33, 'M', 'قح'), + (0xFC34, 'M', 'قم'), + (0xFC35, 'M', 'قى'), + (0xFC36, 'M', 'قي'), + (0xFC37, 'M', 'كا'), + (0xFC38, 'M', 'كج'), + (0xFC39, 'M', 'كح'), + (0xFC3A, 'M', 'كخ'), + (0xFC3B, 'M', 'كل'), + (0xFC3C, 'M', 'كم'), + (0xFC3D, 'M', 'كى'), + (0xFC3E, 'M', 'كي'), + (0xFC3F, 'M', 'لج'), + (0xFC40, 'M', 'لح'), + (0xFC41, 'M', 'لخ'), + (0xFC42, 'M', 'لم'), + (0xFC43, 'M', 'لى'), + (0xFC44, 'M', 'لي'), + (0xFC45, 'M', 'مج'), + (0xFC46, 'M', 'مح'), + (0xFC47, 'M', 'مخ'), + (0xFC48, 'M', 'مم'), + (0xFC49, 'M', 'مى'), + (0xFC4A, 'M', 'مي'), + (0xFC4B, 'M', 'نج'), + (0xFC4C, 'M', 'نح'), + (0xFC4D, 'M', 'نخ'), + (0xFC4E, 'M', 'نم'), + (0xFC4F, 'M', 'نى'), + (0xFC50, 'M', 'ني'), + (0xFC51, 'M', 'هج'), + (0xFC52, 'M', 'هم'), + (0xFC53, 'M', 'هى'), + (0xFC54, 'M', 'هي'), + (0xFC55, 'M', 'يج'), + (0xFC56, 'M', 'يح'), + ] + +def _seg_46() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFC57, 'M', 'يخ'), + (0xFC58, 'M', 'يم'), + (0xFC59, 'M', 'يى'), + (0xFC5A, 'M', 'يي'), + (0xFC5B, 'M', 'ذٰ'), + (0xFC5C, 'M', 'رٰ'), + (0xFC5D, 'M', 'ىٰ'), + (0xFC5E, '3', ' ٌّ'), + (0xFC5F, '3', ' ٍّ'), + (0xFC60, '3', ' َّ'), + (0xFC61, '3', ' ُّ'), + (0xFC62, '3', ' ِّ'), + (0xFC63, '3', ' ّٰ'), + (0xFC64, 'M', 'ئر'), + (0xFC65, 'M', 'ئز'), + (0xFC66, 'M', 'ئم'), + (0xFC67, 'M', 'ئن'), + (0xFC68, 'M', 'ئى'), + (0xFC69, 'M', 'ئي'), + (0xFC6A, 'M', 'بر'), + (0xFC6B, 'M', 'بز'), + (0xFC6C, 'M', 'بم'), + (0xFC6D, 'M', 'بن'), + (0xFC6E, 'M', 'بى'), + (0xFC6F, 'M', 'بي'), + (0xFC70, 'M', 'تر'), + (0xFC71, 'M', 'تز'), + (0xFC72, 'M', 'تم'), + (0xFC73, 'M', 'تن'), + (0xFC74, 'M', 'تى'), + (0xFC75, 'M', 'تي'), + (0xFC76, 'M', 'ثر'), + (0xFC77, 'M', 'ثز'), + (0xFC78, 'M', 'ثم'), + (0xFC79, 'M', 'ثن'), + (0xFC7A, 'M', 'ثى'), + (0xFC7B, 'M', 'ثي'), + (0xFC7C, 'M', 'فى'), + (0xFC7D, 'M', 'في'), + (0xFC7E, 'M', 'قى'), + (0xFC7F, 'M', 'قي'), + (0xFC80, 'M', 'كا'), + (0xFC81, 'M', 'كل'), + (0xFC82, 'M', 'كم'), + (0xFC83, 'M', 'كى'), + (0xFC84, 'M', 'كي'), + (0xFC85, 'M', 'لم'), + (0xFC86, 'M', 'لى'), + (0xFC87, 'M', 'لي'), + (0xFC88, 'M', 'ما'), + (0xFC89, 'M', 'مم'), + (0xFC8A, 'M', 'نر'), + (0xFC8B, 'M', 'نز'), + (0xFC8C, 'M', 'نم'), + (0xFC8D, 'M', 'نن'), + (0xFC8E, 'M', 'نى'), + (0xFC8F, 'M', 'ني'), + (0xFC90, 'M', 'ىٰ'), + (0xFC91, 'M', 'ير'), + (0xFC92, 'M', 'يز'), + (0xFC93, 'M', 'يم'), + (0xFC94, 'M', 'ين'), + (0xFC95, 'M', 'يى'), + (0xFC96, 'M', 'يي'), + (0xFC97, 'M', 'ئج'), + (0xFC98, 'M', 'ئح'), + (0xFC99, 'M', 'ئخ'), + (0xFC9A, 'M', 'ئم'), + (0xFC9B, 'M', 'ئه'), + (0xFC9C, 'M', 'بج'), + (0xFC9D, 'M', 'بح'), + (0xFC9E, 'M', 'بخ'), + (0xFC9F, 'M', 'بم'), + (0xFCA0, 'M', 'به'), + (0xFCA1, 'M', 'تج'), + (0xFCA2, 'M', 'تح'), + (0xFCA3, 'M', 'تخ'), + (0xFCA4, 'M', 'تم'), + (0xFCA5, 'M', 'ته'), + (0xFCA6, 'M', 'ثم'), + (0xFCA7, 'M', 'جح'), + (0xFCA8, 'M', 'جم'), + (0xFCA9, 'M', 'حج'), + (0xFCAA, 'M', 'حم'), + (0xFCAB, 'M', 'خج'), + (0xFCAC, 'M', 'خم'), + (0xFCAD, 'M', 'سج'), + (0xFCAE, 'M', 'سح'), + (0xFCAF, 'M', 'سخ'), + (0xFCB0, 'M', 'سم'), + (0xFCB1, 'M', 'صح'), + (0xFCB2, 'M', 'صخ'), + (0xFCB3, 'M', 'صم'), + (0xFCB4, 'M', 'ضج'), + (0xFCB5, 'M', 'ضح'), + (0xFCB6, 'M', 'ضخ'), + (0xFCB7, 'M', 'ضم'), + (0xFCB8, 'M', 'طح'), + (0xFCB9, 'M', 'ظم'), + (0xFCBA, 'M', 'عج'), + ] + +def _seg_47() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFCBB, 'M', 'عم'), + (0xFCBC, 'M', 'غج'), + (0xFCBD, 'M', 'غم'), + (0xFCBE, 'M', 'فج'), + (0xFCBF, 'M', 'فح'), + (0xFCC0, 'M', 'فخ'), + (0xFCC1, 'M', 'فم'), + (0xFCC2, 'M', 'قح'), + (0xFCC3, 'M', 'قم'), + (0xFCC4, 'M', 'كج'), + (0xFCC5, 'M', 'كح'), + (0xFCC6, 'M', 'كخ'), + (0xFCC7, 'M', 'كل'), + (0xFCC8, 'M', 'كم'), + (0xFCC9, 'M', 'لج'), + (0xFCCA, 'M', 'لح'), + (0xFCCB, 'M', 'لخ'), + (0xFCCC, 'M', 'لم'), + (0xFCCD, 'M', 'له'), + (0xFCCE, 'M', 'مج'), + (0xFCCF, 'M', 'مح'), + (0xFCD0, 'M', 'مخ'), + (0xFCD1, 'M', 'مم'), + (0xFCD2, 'M', 'نج'), + (0xFCD3, 'M', 'نح'), + (0xFCD4, 'M', 'نخ'), + (0xFCD5, 'M', 'نم'), + (0xFCD6, 'M', 'نه'), + (0xFCD7, 'M', 'هج'), + (0xFCD8, 'M', 'هم'), + (0xFCD9, 'M', 'هٰ'), + (0xFCDA, 'M', 'يج'), + (0xFCDB, 'M', 'يح'), + (0xFCDC, 'M', 'يخ'), + (0xFCDD, 'M', 'يم'), + (0xFCDE, 'M', 'يه'), + (0xFCDF, 'M', 'ئم'), + (0xFCE0, 'M', 'ئه'), + (0xFCE1, 'M', 'بم'), + (0xFCE2, 'M', 'به'), + (0xFCE3, 'M', 'تم'), + (0xFCE4, 'M', 'ته'), + (0xFCE5, 'M', 'ثم'), + (0xFCE6, 'M', 'ثه'), + (0xFCE7, 'M', 'سم'), + (0xFCE8, 'M', 'سه'), + (0xFCE9, 'M', 'شم'), + (0xFCEA, 'M', 'شه'), + (0xFCEB, 'M', 'كل'), + (0xFCEC, 'M', 'كم'), + (0xFCED, 'M', 'لم'), + (0xFCEE, 'M', 'نم'), + (0xFCEF, 'M', 'نه'), + (0xFCF0, 'M', 'يم'), + (0xFCF1, 'M', 'يه'), + (0xFCF2, 'M', 'ـَّ'), + (0xFCF3, 'M', 'ـُّ'), + (0xFCF4, 'M', 'ـِّ'), + (0xFCF5, 'M', 'طى'), + (0xFCF6, 'M', 'طي'), + (0xFCF7, 'M', 'عى'), + (0xFCF8, 'M', 'عي'), + (0xFCF9, 'M', 'غى'), + (0xFCFA, 'M', 'غي'), + (0xFCFB, 'M', 'سى'), + (0xFCFC, 'M', 'سي'), + (0xFCFD, 'M', 'شى'), + (0xFCFE, 'M', 'شي'), + (0xFCFF, 'M', 'حى'), + (0xFD00, 'M', 'حي'), + (0xFD01, 'M', 'جى'), + (0xFD02, 'M', 'جي'), + (0xFD03, 'M', 'خى'), + (0xFD04, 'M', 'خي'), + (0xFD05, 'M', 'صى'), + (0xFD06, 'M', 'صي'), + (0xFD07, 'M', 'ضى'), + (0xFD08, 'M', 'ضي'), + (0xFD09, 'M', 'شج'), + (0xFD0A, 'M', 'شح'), + (0xFD0B, 'M', 'شخ'), + (0xFD0C, 'M', 'شم'), + (0xFD0D, 'M', 'شر'), + (0xFD0E, 'M', 'سر'), + (0xFD0F, 'M', 'صر'), + (0xFD10, 'M', 'ضر'), + (0xFD11, 'M', 'طى'), + (0xFD12, 'M', 'طي'), + (0xFD13, 'M', 'عى'), + (0xFD14, 'M', 'عي'), + (0xFD15, 'M', 'غى'), + (0xFD16, 'M', 'غي'), + (0xFD17, 'M', 'سى'), + (0xFD18, 'M', 'سي'), + (0xFD19, 'M', 'شى'), + (0xFD1A, 'M', 'شي'), + (0xFD1B, 'M', 'حى'), + (0xFD1C, 'M', 'حي'), + (0xFD1D, 'M', 'جى'), + (0xFD1E, 'M', 'جي'), + ] + +def _seg_48() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFD1F, 'M', 'خى'), + (0xFD20, 'M', 'خي'), + (0xFD21, 'M', 'صى'), + (0xFD22, 'M', 'صي'), + (0xFD23, 'M', 'ضى'), + (0xFD24, 'M', 'ضي'), + (0xFD25, 'M', 'شج'), + (0xFD26, 'M', 'شح'), + (0xFD27, 'M', 'شخ'), + (0xFD28, 'M', 'شم'), + (0xFD29, 'M', 'شر'), + (0xFD2A, 'M', 'سر'), + (0xFD2B, 'M', 'صر'), + (0xFD2C, 'M', 'ضر'), + (0xFD2D, 'M', 'شج'), + (0xFD2E, 'M', 'شح'), + (0xFD2F, 'M', 'شخ'), + (0xFD30, 'M', 'شم'), + (0xFD31, 'M', 'سه'), + (0xFD32, 'M', 'شه'), + (0xFD33, 'M', 'طم'), + (0xFD34, 'M', 'سج'), + (0xFD35, 'M', 'سح'), + (0xFD36, 'M', 'سخ'), + (0xFD37, 'M', 'شج'), + (0xFD38, 'M', 'شح'), + (0xFD39, 'M', 'شخ'), + (0xFD3A, 'M', 'طم'), + (0xFD3B, 'M', 'ظم'), + (0xFD3C, 'M', 'اً'), + (0xFD3E, 'V'), + (0xFD50, 'M', 'تجم'), + (0xFD51, 'M', 'تحج'), + (0xFD53, 'M', 'تحم'), + (0xFD54, 'M', 'تخم'), + (0xFD55, 'M', 'تمج'), + (0xFD56, 'M', 'تمح'), + (0xFD57, 'M', 'تمخ'), + (0xFD58, 'M', 'جمح'), + (0xFD5A, 'M', 'حمي'), + (0xFD5B, 'M', 'حمى'), + (0xFD5C, 'M', 'سحج'), + (0xFD5D, 'M', 'سجح'), + (0xFD5E, 'M', 'سجى'), + (0xFD5F, 'M', 'سمح'), + (0xFD61, 'M', 'سمج'), + (0xFD62, 'M', 'سمم'), + (0xFD64, 'M', 'صحح'), + (0xFD66, 'M', 'صمم'), + (0xFD67, 'M', 'شحم'), + (0xFD69, 'M', 'شجي'), + (0xFD6A, 'M', 'شمخ'), + (0xFD6C, 'M', 'شمم'), + (0xFD6E, 'M', 'ضحى'), + (0xFD6F, 'M', 'ضخم'), + (0xFD71, 'M', 'طمح'), + (0xFD73, 'M', 'طمم'), + (0xFD74, 'M', 'طمي'), + (0xFD75, 'M', 'عجم'), + (0xFD76, 'M', 'عمم'), + (0xFD78, 'M', 'عمى'), + (0xFD79, 'M', 'غمم'), + (0xFD7A, 'M', 'غمي'), + (0xFD7B, 'M', 'غمى'), + (0xFD7C, 'M', 'فخم'), + (0xFD7E, 'M', 'قمح'), + (0xFD7F, 'M', 'قمم'), + (0xFD80, 'M', 'لحم'), + (0xFD81, 'M', 'لحي'), + (0xFD82, 'M', 'لحى'), + (0xFD83, 'M', 'لجج'), + (0xFD85, 'M', 'لخم'), + (0xFD87, 'M', 'لمح'), + (0xFD89, 'M', 'محج'), + (0xFD8A, 'M', 'محم'), + (0xFD8B, 'M', 'محي'), + (0xFD8C, 'M', 'مجح'), + (0xFD8D, 'M', 'مجم'), + (0xFD8E, 'M', 'مخج'), + (0xFD8F, 'M', 'مخم'), + (0xFD90, 'X'), + (0xFD92, 'M', 'مجخ'), + (0xFD93, 'M', 'همج'), + (0xFD94, 'M', 'همم'), + (0xFD95, 'M', 'نحم'), + (0xFD96, 'M', 'نحى'), + (0xFD97, 'M', 'نجم'), + (0xFD99, 'M', 'نجى'), + (0xFD9A, 'M', 'نمي'), + (0xFD9B, 'M', 'نمى'), + (0xFD9C, 'M', 'يمم'), + (0xFD9E, 'M', 'بخي'), + (0xFD9F, 'M', 'تجي'), + (0xFDA0, 'M', 'تجى'), + (0xFDA1, 'M', 'تخي'), + (0xFDA2, 'M', 'تخى'), + (0xFDA3, 'M', 'تمي'), + (0xFDA4, 'M', 'تمى'), + (0xFDA5, 'M', 'جمي'), + (0xFDA6, 'M', 'جحى'), + ] + +def _seg_49() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFDA7, 'M', 'جمى'), + (0xFDA8, 'M', 'سخى'), + (0xFDA9, 'M', 'صحي'), + (0xFDAA, 'M', 'شحي'), + (0xFDAB, 'M', 'ضحي'), + (0xFDAC, 'M', 'لجي'), + (0xFDAD, 'M', 'لمي'), + (0xFDAE, 'M', 'يحي'), + (0xFDAF, 'M', 'يجي'), + (0xFDB0, 'M', 'يمي'), + (0xFDB1, 'M', 'ممي'), + (0xFDB2, 'M', 'قمي'), + (0xFDB3, 'M', 'نحي'), + (0xFDB4, 'M', 'قمح'), + (0xFDB5, 'M', 'لحم'), + (0xFDB6, 'M', 'عمي'), + (0xFDB7, 'M', 'كمي'), + (0xFDB8, 'M', 'نجح'), + (0xFDB9, 'M', 'مخي'), + (0xFDBA, 'M', 'لجم'), + (0xFDBB, 'M', 'كمم'), + (0xFDBC, 'M', 'لجم'), + (0xFDBD, 'M', 'نجح'), + (0xFDBE, 'M', 'جحي'), + (0xFDBF, 'M', 'حجي'), + (0xFDC0, 'M', 'مجي'), + (0xFDC1, 'M', 'فمي'), + (0xFDC2, 'M', 'بحي'), + (0xFDC3, 'M', 'كمم'), + (0xFDC4, 'M', 'عجم'), + (0xFDC5, 'M', 'صمم'), + (0xFDC6, 'M', 'سخي'), + (0xFDC7, 'M', 'نجي'), + (0xFDC8, 'X'), + (0xFDCF, 'V'), + (0xFDD0, 'X'), + (0xFDF0, 'M', 'صلے'), + (0xFDF1, 'M', 'قلے'), + (0xFDF2, 'M', 'الله'), + (0xFDF3, 'M', 'اكبر'), + (0xFDF4, 'M', 'محمد'), + (0xFDF5, 'M', 'صلعم'), + (0xFDF6, 'M', 'رسول'), + (0xFDF7, 'M', 'عليه'), + (0xFDF8, 'M', 'وسلم'), + (0xFDF9, 'M', 'صلى'), + (0xFDFA, '3', 'صلى الله عليه وسلم'), + (0xFDFB, '3', 'جل جلاله'), + (0xFDFC, 'M', 'ریال'), + (0xFDFD, 'V'), + (0xFE00, 'I'), + (0xFE10, '3', ','), + (0xFE11, 'M', '、'), + (0xFE12, 'X'), + (0xFE13, '3', ':'), + (0xFE14, '3', ';'), + (0xFE15, '3', '!'), + (0xFE16, '3', '?'), + (0xFE17, 'M', '〖'), + (0xFE18, 'M', '〗'), + (0xFE19, 'X'), + (0xFE20, 'V'), + (0xFE30, 'X'), + (0xFE31, 'M', '—'), + (0xFE32, 'M', '–'), + (0xFE33, '3', '_'), + (0xFE35, '3', '('), + (0xFE36, '3', ')'), + (0xFE37, '3', '{'), + (0xFE38, '3', '}'), + (0xFE39, 'M', '〔'), + (0xFE3A, 'M', '〕'), + (0xFE3B, 'M', '【'), + (0xFE3C, 'M', '】'), + (0xFE3D, 'M', '《'), + (0xFE3E, 'M', '》'), + (0xFE3F, 'M', '〈'), + (0xFE40, 'M', '〉'), + (0xFE41, 'M', '「'), + (0xFE42, 'M', '」'), + (0xFE43, 'M', '『'), + (0xFE44, 'M', '』'), + (0xFE45, 'V'), + (0xFE47, '3', '['), + (0xFE48, '3', ']'), + (0xFE49, '3', ' ̅'), + (0xFE4D, '3', '_'), + (0xFE50, '3', ','), + (0xFE51, 'M', '、'), + (0xFE52, 'X'), + (0xFE54, '3', ';'), + (0xFE55, '3', ':'), + (0xFE56, '3', '?'), + (0xFE57, '3', '!'), + (0xFE58, 'M', '—'), + (0xFE59, '3', '('), + (0xFE5A, '3', ')'), + (0xFE5B, '3', '{'), + (0xFE5C, '3', '}'), + (0xFE5D, 'M', '〔'), + ] + +def _seg_50() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFE5E, 'M', '〕'), + (0xFE5F, '3', '#'), + (0xFE60, '3', '&'), + (0xFE61, '3', '*'), + (0xFE62, '3', '+'), + (0xFE63, 'M', '-'), + (0xFE64, '3', '<'), + (0xFE65, '3', '>'), + (0xFE66, '3', '='), + (0xFE67, 'X'), + (0xFE68, '3', '\\'), + (0xFE69, '3', '$'), + (0xFE6A, '3', '%'), + (0xFE6B, '3', '@'), + (0xFE6C, 'X'), + (0xFE70, '3', ' ً'), + (0xFE71, 'M', 'ـً'), + (0xFE72, '3', ' ٌ'), + (0xFE73, 'V'), + (0xFE74, '3', ' ٍ'), + (0xFE75, 'X'), + (0xFE76, '3', ' َ'), + (0xFE77, 'M', 'ـَ'), + (0xFE78, '3', ' ُ'), + (0xFE79, 'M', 'ـُ'), + (0xFE7A, '3', ' ِ'), + (0xFE7B, 'M', 'ـِ'), + (0xFE7C, '3', ' ّ'), + (0xFE7D, 'M', 'ـّ'), + (0xFE7E, '3', ' ْ'), + (0xFE7F, 'M', 'ـْ'), + (0xFE80, 'M', 'ء'), + (0xFE81, 'M', 'آ'), + (0xFE83, 'M', 'أ'), + (0xFE85, 'M', 'ؤ'), + (0xFE87, 'M', 'إ'), + (0xFE89, 'M', 'ئ'), + (0xFE8D, 'M', 'ا'), + (0xFE8F, 'M', 'ب'), + (0xFE93, 'M', 'ة'), + (0xFE95, 'M', 'ت'), + (0xFE99, 'M', 'ث'), + (0xFE9D, 'M', 'ج'), + (0xFEA1, 'M', 'ح'), + (0xFEA5, 'M', 'خ'), + (0xFEA9, 'M', 'د'), + (0xFEAB, 'M', 'ذ'), + (0xFEAD, 'M', 'ر'), + (0xFEAF, 'M', 'ز'), + (0xFEB1, 'M', 'س'), + (0xFEB5, 'M', 'ش'), + (0xFEB9, 'M', 'ص'), + (0xFEBD, 'M', 'ض'), + (0xFEC1, 'M', 'ط'), + (0xFEC5, 'M', 'ظ'), + (0xFEC9, 'M', 'ع'), + (0xFECD, 'M', 'غ'), + (0xFED1, 'M', 'ف'), + (0xFED5, 'M', 'ق'), + (0xFED9, 'M', 'ك'), + (0xFEDD, 'M', 'ل'), + (0xFEE1, 'M', 'م'), + (0xFEE5, 'M', 'ن'), + (0xFEE9, 'M', 'ه'), + (0xFEED, 'M', 'و'), + (0xFEEF, 'M', 'ى'), + (0xFEF1, 'M', 'ي'), + (0xFEF5, 'M', 'لآ'), + (0xFEF7, 'M', 'لأ'), + (0xFEF9, 'M', 'لإ'), + (0xFEFB, 'M', 'لا'), + (0xFEFD, 'X'), + (0xFEFF, 'I'), + (0xFF00, 'X'), + (0xFF01, '3', '!'), + (0xFF02, '3', '"'), + (0xFF03, '3', '#'), + (0xFF04, '3', '$'), + (0xFF05, '3', '%'), + (0xFF06, '3', '&'), + (0xFF07, '3', '\''), + (0xFF08, '3', '('), + (0xFF09, '3', ')'), + (0xFF0A, '3', '*'), + (0xFF0B, '3', '+'), + (0xFF0C, '3', ','), + (0xFF0D, 'M', '-'), + (0xFF0E, 'M', '.'), + (0xFF0F, '3', '/'), + (0xFF10, 'M', '0'), + (0xFF11, 'M', '1'), + (0xFF12, 'M', '2'), + (0xFF13, 'M', '3'), + (0xFF14, 'M', '4'), + (0xFF15, 'M', '5'), + (0xFF16, 'M', '6'), + (0xFF17, 'M', '7'), + (0xFF18, 'M', '8'), + (0xFF19, 'M', '9'), + (0xFF1A, '3', ':'), + ] + +def _seg_51() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFF1B, '3', ';'), + (0xFF1C, '3', '<'), + (0xFF1D, '3', '='), + (0xFF1E, '3', '>'), + (0xFF1F, '3', '?'), + (0xFF20, '3', '@'), + (0xFF21, 'M', 'a'), + (0xFF22, 'M', 'b'), + (0xFF23, 'M', 'c'), + (0xFF24, 'M', 'd'), + (0xFF25, 'M', 'e'), + (0xFF26, 'M', 'f'), + (0xFF27, 'M', 'g'), + (0xFF28, 'M', 'h'), + (0xFF29, 'M', 'i'), + (0xFF2A, 'M', 'j'), + (0xFF2B, 'M', 'k'), + (0xFF2C, 'M', 'l'), + (0xFF2D, 'M', 'm'), + (0xFF2E, 'M', 'n'), + (0xFF2F, 'M', 'o'), + (0xFF30, 'M', 'p'), + (0xFF31, 'M', 'q'), + (0xFF32, 'M', 'r'), + (0xFF33, 'M', 's'), + (0xFF34, 'M', 't'), + (0xFF35, 'M', 'u'), + (0xFF36, 'M', 'v'), + (0xFF37, 'M', 'w'), + (0xFF38, 'M', 'x'), + (0xFF39, 'M', 'y'), + (0xFF3A, 'M', 'z'), + (0xFF3B, '3', '['), + (0xFF3C, '3', '\\'), + (0xFF3D, '3', ']'), + (0xFF3E, '3', '^'), + (0xFF3F, '3', '_'), + (0xFF40, '3', '`'), + (0xFF41, 'M', 'a'), + (0xFF42, 'M', 'b'), + (0xFF43, 'M', 'c'), + (0xFF44, 'M', 'd'), + (0xFF45, 'M', 'e'), + (0xFF46, 'M', 'f'), + (0xFF47, 'M', 'g'), + (0xFF48, 'M', 'h'), + (0xFF49, 'M', 'i'), + (0xFF4A, 'M', 'j'), + (0xFF4B, 'M', 'k'), + (0xFF4C, 'M', 'l'), + (0xFF4D, 'M', 'm'), + (0xFF4E, 'M', 'n'), + (0xFF4F, 'M', 'o'), + (0xFF50, 'M', 'p'), + (0xFF51, 'M', 'q'), + (0xFF52, 'M', 'r'), + (0xFF53, 'M', 's'), + (0xFF54, 'M', 't'), + (0xFF55, 'M', 'u'), + (0xFF56, 'M', 'v'), + (0xFF57, 'M', 'w'), + (0xFF58, 'M', 'x'), + (0xFF59, 'M', 'y'), + (0xFF5A, 'M', 'z'), + (0xFF5B, '3', '{'), + (0xFF5C, '3', '|'), + (0xFF5D, '3', '}'), + (0xFF5E, '3', '~'), + (0xFF5F, 'M', '⦅'), + (0xFF60, 'M', '⦆'), + (0xFF61, 'M', '.'), + (0xFF62, 'M', '「'), + (0xFF63, 'M', '」'), + (0xFF64, 'M', '、'), + (0xFF65, 'M', '・'), + (0xFF66, 'M', 'ヲ'), + (0xFF67, 'M', 'ァ'), + (0xFF68, 'M', 'ィ'), + (0xFF69, 'M', 'ゥ'), + (0xFF6A, 'M', 'ェ'), + (0xFF6B, 'M', 'ォ'), + (0xFF6C, 'M', 'ャ'), + (0xFF6D, 'M', 'ュ'), + (0xFF6E, 'M', 'ョ'), + (0xFF6F, 'M', 'ッ'), + (0xFF70, 'M', 'ー'), + (0xFF71, 'M', 'ア'), + (0xFF72, 'M', 'イ'), + (0xFF73, 'M', 'ウ'), + (0xFF74, 'M', 'エ'), + (0xFF75, 'M', 'オ'), + (0xFF76, 'M', 'カ'), + (0xFF77, 'M', 'キ'), + (0xFF78, 'M', 'ク'), + (0xFF79, 'M', 'ケ'), + (0xFF7A, 'M', 'コ'), + (0xFF7B, 'M', 'サ'), + (0xFF7C, 'M', 'シ'), + (0xFF7D, 'M', 'ス'), + (0xFF7E, 'M', 'セ'), + ] + +def _seg_52() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFF7F, 'M', 'ソ'), + (0xFF80, 'M', 'タ'), + (0xFF81, 'M', 'チ'), + (0xFF82, 'M', 'ツ'), + (0xFF83, 'M', 'テ'), + (0xFF84, 'M', 'ト'), + (0xFF85, 'M', 'ナ'), + (0xFF86, 'M', 'ニ'), + (0xFF87, 'M', 'ヌ'), + (0xFF88, 'M', 'ネ'), + (0xFF89, 'M', 'ノ'), + (0xFF8A, 'M', 'ハ'), + (0xFF8B, 'M', 'ヒ'), + (0xFF8C, 'M', 'フ'), + (0xFF8D, 'M', 'ヘ'), + (0xFF8E, 'M', 'ホ'), + (0xFF8F, 'M', 'マ'), + (0xFF90, 'M', 'ミ'), + (0xFF91, 'M', 'ム'), + (0xFF92, 'M', 'メ'), + (0xFF93, 'M', 'モ'), + (0xFF94, 'M', 'ヤ'), + (0xFF95, 'M', 'ユ'), + (0xFF96, 'M', 'ヨ'), + (0xFF97, 'M', 'ラ'), + (0xFF98, 'M', 'リ'), + (0xFF99, 'M', 'ル'), + (0xFF9A, 'M', 'レ'), + (0xFF9B, 'M', 'ロ'), + (0xFF9C, 'M', 'ワ'), + (0xFF9D, 'M', 'ン'), + (0xFF9E, 'M', '゙'), + (0xFF9F, 'M', '゚'), + (0xFFA0, 'X'), + (0xFFA1, 'M', 'ᄀ'), + (0xFFA2, 'M', 'ᄁ'), + (0xFFA3, 'M', 'ᆪ'), + (0xFFA4, 'M', 'ᄂ'), + (0xFFA5, 'M', 'ᆬ'), + (0xFFA6, 'M', 'ᆭ'), + (0xFFA7, 'M', 'ᄃ'), + (0xFFA8, 'M', 'ᄄ'), + (0xFFA9, 'M', 'ᄅ'), + (0xFFAA, 'M', 'ᆰ'), + (0xFFAB, 'M', 'ᆱ'), + (0xFFAC, 'M', 'ᆲ'), + (0xFFAD, 'M', 'ᆳ'), + (0xFFAE, 'M', 'ᆴ'), + (0xFFAF, 'M', 'ᆵ'), + (0xFFB0, 'M', 'ᄚ'), + (0xFFB1, 'M', 'ᄆ'), + (0xFFB2, 'M', 'ᄇ'), + (0xFFB3, 'M', 'ᄈ'), + (0xFFB4, 'M', 'ᄡ'), + (0xFFB5, 'M', 'ᄉ'), + (0xFFB6, 'M', 'ᄊ'), + (0xFFB7, 'M', 'ᄋ'), + (0xFFB8, 'M', 'ᄌ'), + (0xFFB9, 'M', 'ᄍ'), + (0xFFBA, 'M', 'ᄎ'), + (0xFFBB, 'M', 'ᄏ'), + (0xFFBC, 'M', 'ᄐ'), + (0xFFBD, 'M', 'ᄑ'), + (0xFFBE, 'M', 'ᄒ'), + (0xFFBF, 'X'), + (0xFFC2, 'M', 'ᅡ'), + (0xFFC3, 'M', 'ᅢ'), + (0xFFC4, 'M', 'ᅣ'), + (0xFFC5, 'M', 'ᅤ'), + (0xFFC6, 'M', 'ᅥ'), + (0xFFC7, 'M', 'ᅦ'), + (0xFFC8, 'X'), + (0xFFCA, 'M', 'ᅧ'), + (0xFFCB, 'M', 'ᅨ'), + (0xFFCC, 'M', 'ᅩ'), + (0xFFCD, 'M', 'ᅪ'), + (0xFFCE, 'M', 'ᅫ'), + (0xFFCF, 'M', 'ᅬ'), + (0xFFD0, 'X'), + (0xFFD2, 'M', 'ᅭ'), + (0xFFD3, 'M', 'ᅮ'), + (0xFFD4, 'M', 'ᅯ'), + (0xFFD5, 'M', 'ᅰ'), + (0xFFD6, 'M', 'ᅱ'), + (0xFFD7, 'M', 'ᅲ'), + (0xFFD8, 'X'), + (0xFFDA, 'M', 'ᅳ'), + (0xFFDB, 'M', 'ᅴ'), + (0xFFDC, 'M', 'ᅵ'), + (0xFFDD, 'X'), + (0xFFE0, 'M', '¢'), + (0xFFE1, 'M', '£'), + (0xFFE2, 'M', '¬'), + (0xFFE3, '3', ' ̄'), + (0xFFE4, 'M', '¦'), + (0xFFE5, 'M', '¥'), + (0xFFE6, 'M', '₩'), + (0xFFE7, 'X'), + (0xFFE8, 'M', '│'), + (0xFFE9, 'M', '←'), + ] + +def _seg_53() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFFEA, 'M', '↑'), + (0xFFEB, 'M', '→'), + (0xFFEC, 'M', '↓'), + (0xFFED, 'M', '■'), + (0xFFEE, 'M', '○'), + (0xFFEF, 'X'), + (0x10000, 'V'), + (0x1000C, 'X'), + (0x1000D, 'V'), + (0x10027, 'X'), + (0x10028, 'V'), + (0x1003B, 'X'), + (0x1003C, 'V'), + (0x1003E, 'X'), + (0x1003F, 'V'), + (0x1004E, 'X'), + (0x10050, 'V'), + (0x1005E, 'X'), + (0x10080, 'V'), + (0x100FB, 'X'), + (0x10100, 'V'), + (0x10103, 'X'), + (0x10107, 'V'), + (0x10134, 'X'), + (0x10137, 'V'), + (0x1018F, 'X'), + (0x10190, 'V'), + (0x1019D, 'X'), + (0x101A0, 'V'), + (0x101A1, 'X'), + (0x101D0, 'V'), + (0x101FE, 'X'), + (0x10280, 'V'), + (0x1029D, 'X'), + (0x102A0, 'V'), + (0x102D1, 'X'), + (0x102E0, 'V'), + (0x102FC, 'X'), + (0x10300, 'V'), + (0x10324, 'X'), + (0x1032D, 'V'), + (0x1034B, 'X'), + (0x10350, 'V'), + (0x1037B, 'X'), + (0x10380, 'V'), + (0x1039E, 'X'), + (0x1039F, 'V'), + (0x103C4, 'X'), + (0x103C8, 'V'), + (0x103D6, 'X'), + (0x10400, 'M', '𐐨'), + (0x10401, 'M', '𐐩'), + (0x10402, 'M', '𐐪'), + (0x10403, 'M', '𐐫'), + (0x10404, 'M', '𐐬'), + (0x10405, 'M', '𐐭'), + (0x10406, 'M', '𐐮'), + (0x10407, 'M', '𐐯'), + (0x10408, 'M', '𐐰'), + (0x10409, 'M', '𐐱'), + (0x1040A, 'M', '𐐲'), + (0x1040B, 'M', '𐐳'), + (0x1040C, 'M', '𐐴'), + (0x1040D, 'M', '𐐵'), + (0x1040E, 'M', '𐐶'), + (0x1040F, 'M', '𐐷'), + (0x10410, 'M', '𐐸'), + (0x10411, 'M', '𐐹'), + (0x10412, 'M', '𐐺'), + (0x10413, 'M', '𐐻'), + (0x10414, 'M', '𐐼'), + (0x10415, 'M', '𐐽'), + (0x10416, 'M', '𐐾'), + (0x10417, 'M', '𐐿'), + (0x10418, 'M', '𐑀'), + (0x10419, 'M', '𐑁'), + (0x1041A, 'M', '𐑂'), + (0x1041B, 'M', '𐑃'), + (0x1041C, 'M', '𐑄'), + (0x1041D, 'M', '𐑅'), + (0x1041E, 'M', '𐑆'), + (0x1041F, 'M', '𐑇'), + (0x10420, 'M', '𐑈'), + (0x10421, 'M', '𐑉'), + (0x10422, 'M', '𐑊'), + (0x10423, 'M', '𐑋'), + (0x10424, 'M', '𐑌'), + (0x10425, 'M', '𐑍'), + (0x10426, 'M', '𐑎'), + (0x10427, 'M', '𐑏'), + (0x10428, 'V'), + (0x1049E, 'X'), + (0x104A0, 'V'), + (0x104AA, 'X'), + (0x104B0, 'M', '𐓘'), + (0x104B1, 'M', '𐓙'), + (0x104B2, 'M', '𐓚'), + (0x104B3, 'M', '𐓛'), + (0x104B4, 'M', '𐓜'), + (0x104B5, 'M', '𐓝'), + ] + +def _seg_54() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x104B6, 'M', '𐓞'), + (0x104B7, 'M', '𐓟'), + (0x104B8, 'M', '𐓠'), + (0x104B9, 'M', '𐓡'), + (0x104BA, 'M', '𐓢'), + (0x104BB, 'M', '𐓣'), + (0x104BC, 'M', '𐓤'), + (0x104BD, 'M', '𐓥'), + (0x104BE, 'M', '𐓦'), + (0x104BF, 'M', '𐓧'), + (0x104C0, 'M', '𐓨'), + (0x104C1, 'M', '𐓩'), + (0x104C2, 'M', '𐓪'), + (0x104C3, 'M', '𐓫'), + (0x104C4, 'M', '𐓬'), + (0x104C5, 'M', '𐓭'), + (0x104C6, 'M', '𐓮'), + (0x104C7, 'M', '𐓯'), + (0x104C8, 'M', '𐓰'), + (0x104C9, 'M', '𐓱'), + (0x104CA, 'M', '𐓲'), + (0x104CB, 'M', '𐓳'), + (0x104CC, 'M', '𐓴'), + (0x104CD, 'M', '𐓵'), + (0x104CE, 'M', '𐓶'), + (0x104CF, 'M', '𐓷'), + (0x104D0, 'M', '𐓸'), + (0x104D1, 'M', '𐓹'), + (0x104D2, 'M', '𐓺'), + (0x104D3, 'M', '𐓻'), + (0x104D4, 'X'), + (0x104D8, 'V'), + (0x104FC, 'X'), + (0x10500, 'V'), + (0x10528, 'X'), + (0x10530, 'V'), + (0x10564, 'X'), + (0x1056F, 'V'), + (0x10570, 'M', '𐖗'), + (0x10571, 'M', '𐖘'), + (0x10572, 'M', '𐖙'), + (0x10573, 'M', '𐖚'), + (0x10574, 'M', '𐖛'), + (0x10575, 'M', '𐖜'), + (0x10576, 'M', '𐖝'), + (0x10577, 'M', '𐖞'), + (0x10578, 'M', '𐖟'), + (0x10579, 'M', '𐖠'), + (0x1057A, 'M', '𐖡'), + (0x1057B, 'X'), + (0x1057C, 'M', '𐖣'), + (0x1057D, 'M', '𐖤'), + (0x1057E, 'M', '𐖥'), + (0x1057F, 'M', '𐖦'), + (0x10580, 'M', '𐖧'), + (0x10581, 'M', '𐖨'), + (0x10582, 'M', '𐖩'), + (0x10583, 'M', '𐖪'), + (0x10584, 'M', '𐖫'), + (0x10585, 'M', '𐖬'), + (0x10586, 'M', '𐖭'), + (0x10587, 'M', '𐖮'), + (0x10588, 'M', '𐖯'), + (0x10589, 'M', '𐖰'), + (0x1058A, 'M', '𐖱'), + (0x1058B, 'X'), + (0x1058C, 'M', '𐖳'), + (0x1058D, 'M', '𐖴'), + (0x1058E, 'M', '𐖵'), + (0x1058F, 'M', '𐖶'), + (0x10590, 'M', '𐖷'), + (0x10591, 'M', '𐖸'), + (0x10592, 'M', '𐖹'), + (0x10593, 'X'), + (0x10594, 'M', '𐖻'), + (0x10595, 'M', '𐖼'), + (0x10596, 'X'), + (0x10597, 'V'), + (0x105A2, 'X'), + (0x105A3, 'V'), + (0x105B2, 'X'), + (0x105B3, 'V'), + (0x105BA, 'X'), + (0x105BB, 'V'), + (0x105BD, 'X'), + (0x10600, 'V'), + (0x10737, 'X'), + (0x10740, 'V'), + (0x10756, 'X'), + (0x10760, 'V'), + (0x10768, 'X'), + (0x10780, 'V'), + (0x10781, 'M', 'ː'), + (0x10782, 'M', 'ˑ'), + (0x10783, 'M', 'æ'), + (0x10784, 'M', 'ʙ'), + (0x10785, 'M', 'ɓ'), + (0x10786, 'X'), + (0x10787, 'M', 'ʣ'), + (0x10788, 'M', 'ꭦ'), + ] + +def _seg_55() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x10789, 'M', 'ʥ'), + (0x1078A, 'M', 'ʤ'), + (0x1078B, 'M', 'ɖ'), + (0x1078C, 'M', 'ɗ'), + (0x1078D, 'M', 'ᶑ'), + (0x1078E, 'M', 'ɘ'), + (0x1078F, 'M', 'ɞ'), + (0x10790, 'M', 'ʩ'), + (0x10791, 'M', 'ɤ'), + (0x10792, 'M', 'ɢ'), + (0x10793, 'M', 'ɠ'), + (0x10794, 'M', 'ʛ'), + (0x10795, 'M', 'ħ'), + (0x10796, 'M', 'ʜ'), + (0x10797, 'M', 'ɧ'), + (0x10798, 'M', 'ʄ'), + (0x10799, 'M', 'ʪ'), + (0x1079A, 'M', 'ʫ'), + (0x1079B, 'M', 'ɬ'), + (0x1079C, 'M', '𝼄'), + (0x1079D, 'M', 'ꞎ'), + (0x1079E, 'M', 'ɮ'), + (0x1079F, 'M', '𝼅'), + (0x107A0, 'M', 'ʎ'), + (0x107A1, 'M', '𝼆'), + (0x107A2, 'M', 'ø'), + (0x107A3, 'M', 'ɶ'), + (0x107A4, 'M', 'ɷ'), + (0x107A5, 'M', 'q'), + (0x107A6, 'M', 'ɺ'), + (0x107A7, 'M', '𝼈'), + (0x107A8, 'M', 'ɽ'), + (0x107A9, 'M', 'ɾ'), + (0x107AA, 'M', 'ʀ'), + (0x107AB, 'M', 'ʨ'), + (0x107AC, 'M', 'ʦ'), + (0x107AD, 'M', 'ꭧ'), + (0x107AE, 'M', 'ʧ'), + (0x107AF, 'M', 'ʈ'), + (0x107B0, 'M', 'ⱱ'), + (0x107B1, 'X'), + (0x107B2, 'M', 'ʏ'), + (0x107B3, 'M', 'ʡ'), + (0x107B4, 'M', 'ʢ'), + (0x107B5, 'M', 'ʘ'), + (0x107B6, 'M', 'ǀ'), + (0x107B7, 'M', 'ǁ'), + (0x107B8, 'M', 'ǂ'), + (0x107B9, 'M', '𝼊'), + (0x107BA, 'M', '𝼞'), + (0x107BB, 'X'), + (0x10800, 'V'), + (0x10806, 'X'), + (0x10808, 'V'), + (0x10809, 'X'), + (0x1080A, 'V'), + (0x10836, 'X'), + (0x10837, 'V'), + (0x10839, 'X'), + (0x1083C, 'V'), + (0x1083D, 'X'), + (0x1083F, 'V'), + (0x10856, 'X'), + (0x10857, 'V'), + (0x1089F, 'X'), + (0x108A7, 'V'), + (0x108B0, 'X'), + (0x108E0, 'V'), + (0x108F3, 'X'), + (0x108F4, 'V'), + (0x108F6, 'X'), + (0x108FB, 'V'), + (0x1091C, 'X'), + (0x1091F, 'V'), + (0x1093A, 'X'), + (0x1093F, 'V'), + (0x10940, 'X'), + (0x10980, 'V'), + (0x109B8, 'X'), + (0x109BC, 'V'), + (0x109D0, 'X'), + (0x109D2, 'V'), + (0x10A04, 'X'), + (0x10A05, 'V'), + (0x10A07, 'X'), + (0x10A0C, 'V'), + (0x10A14, 'X'), + (0x10A15, 'V'), + (0x10A18, 'X'), + (0x10A19, 'V'), + (0x10A36, 'X'), + (0x10A38, 'V'), + (0x10A3B, 'X'), + (0x10A3F, 'V'), + (0x10A49, 'X'), + (0x10A50, 'V'), + (0x10A59, 'X'), + (0x10A60, 'V'), + (0x10AA0, 'X'), + (0x10AC0, 'V'), + ] + +def _seg_56() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x10AE7, 'X'), + (0x10AEB, 'V'), + (0x10AF7, 'X'), + (0x10B00, 'V'), + (0x10B36, 'X'), + (0x10B39, 'V'), + (0x10B56, 'X'), + (0x10B58, 'V'), + (0x10B73, 'X'), + (0x10B78, 'V'), + (0x10B92, 'X'), + (0x10B99, 'V'), + (0x10B9D, 'X'), + (0x10BA9, 'V'), + (0x10BB0, 'X'), + (0x10C00, 'V'), + (0x10C49, 'X'), + (0x10C80, 'M', '𐳀'), + (0x10C81, 'M', '𐳁'), + (0x10C82, 'M', '𐳂'), + (0x10C83, 'M', '𐳃'), + (0x10C84, 'M', '𐳄'), + (0x10C85, 'M', '𐳅'), + (0x10C86, 'M', '𐳆'), + (0x10C87, 'M', '𐳇'), + (0x10C88, 'M', '𐳈'), + (0x10C89, 'M', '𐳉'), + (0x10C8A, 'M', '𐳊'), + (0x10C8B, 'M', '𐳋'), + (0x10C8C, 'M', '𐳌'), + (0x10C8D, 'M', '𐳍'), + (0x10C8E, 'M', '𐳎'), + (0x10C8F, 'M', '𐳏'), + (0x10C90, 'M', '𐳐'), + (0x10C91, 'M', '𐳑'), + (0x10C92, 'M', '𐳒'), + (0x10C93, 'M', '𐳓'), + (0x10C94, 'M', '𐳔'), + (0x10C95, 'M', '𐳕'), + (0x10C96, 'M', '𐳖'), + (0x10C97, 'M', '𐳗'), + (0x10C98, 'M', '𐳘'), + (0x10C99, 'M', '𐳙'), + (0x10C9A, 'M', '𐳚'), + (0x10C9B, 'M', '𐳛'), + (0x10C9C, 'M', '𐳜'), + (0x10C9D, 'M', '𐳝'), + (0x10C9E, 'M', '𐳞'), + (0x10C9F, 'M', '𐳟'), + (0x10CA0, 'M', '𐳠'), + (0x10CA1, 'M', '𐳡'), + (0x10CA2, 'M', '𐳢'), + (0x10CA3, 'M', '𐳣'), + (0x10CA4, 'M', '𐳤'), + (0x10CA5, 'M', '𐳥'), + (0x10CA6, 'M', '𐳦'), + (0x10CA7, 'M', '𐳧'), + (0x10CA8, 'M', '𐳨'), + (0x10CA9, 'M', '𐳩'), + (0x10CAA, 'M', '𐳪'), + (0x10CAB, 'M', '𐳫'), + (0x10CAC, 'M', '𐳬'), + (0x10CAD, 'M', '𐳭'), + (0x10CAE, 'M', '𐳮'), + (0x10CAF, 'M', '𐳯'), + (0x10CB0, 'M', '𐳰'), + (0x10CB1, 'M', '𐳱'), + (0x10CB2, 'M', '𐳲'), + (0x10CB3, 'X'), + (0x10CC0, 'V'), + (0x10CF3, 'X'), + (0x10CFA, 'V'), + (0x10D28, 'X'), + (0x10D30, 'V'), + (0x10D3A, 'X'), + (0x10E60, 'V'), + (0x10E7F, 'X'), + (0x10E80, 'V'), + (0x10EAA, 'X'), + (0x10EAB, 'V'), + (0x10EAE, 'X'), + (0x10EB0, 'V'), + (0x10EB2, 'X'), + (0x10EFD, 'V'), + (0x10F28, 'X'), + (0x10F30, 'V'), + (0x10F5A, 'X'), + (0x10F70, 'V'), + (0x10F8A, 'X'), + (0x10FB0, 'V'), + (0x10FCC, 'X'), + (0x10FE0, 'V'), + (0x10FF7, 'X'), + (0x11000, 'V'), + (0x1104E, 'X'), + (0x11052, 'V'), + (0x11076, 'X'), + (0x1107F, 'V'), + (0x110BD, 'X'), + (0x110BE, 'V'), + ] + +def _seg_57() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x110C3, 'X'), + (0x110D0, 'V'), + (0x110E9, 'X'), + (0x110F0, 'V'), + (0x110FA, 'X'), + (0x11100, 'V'), + (0x11135, 'X'), + (0x11136, 'V'), + (0x11148, 'X'), + (0x11150, 'V'), + (0x11177, 'X'), + (0x11180, 'V'), + (0x111E0, 'X'), + (0x111E1, 'V'), + (0x111F5, 'X'), + (0x11200, 'V'), + (0x11212, 'X'), + (0x11213, 'V'), + (0x11242, 'X'), + (0x11280, 'V'), + (0x11287, 'X'), + (0x11288, 'V'), + (0x11289, 'X'), + (0x1128A, 'V'), + (0x1128E, 'X'), + (0x1128F, 'V'), + (0x1129E, 'X'), + (0x1129F, 'V'), + (0x112AA, 'X'), + (0x112B0, 'V'), + (0x112EB, 'X'), + (0x112F0, 'V'), + (0x112FA, 'X'), + (0x11300, 'V'), + (0x11304, 'X'), + (0x11305, 'V'), + (0x1130D, 'X'), + (0x1130F, 'V'), + (0x11311, 'X'), + (0x11313, 'V'), + (0x11329, 'X'), + (0x1132A, 'V'), + (0x11331, 'X'), + (0x11332, 'V'), + (0x11334, 'X'), + (0x11335, 'V'), + (0x1133A, 'X'), + (0x1133B, 'V'), + (0x11345, 'X'), + (0x11347, 'V'), + (0x11349, 'X'), + (0x1134B, 'V'), + (0x1134E, 'X'), + (0x11350, 'V'), + (0x11351, 'X'), + (0x11357, 'V'), + (0x11358, 'X'), + (0x1135D, 'V'), + (0x11364, 'X'), + (0x11366, 'V'), + (0x1136D, 'X'), + (0x11370, 'V'), + (0x11375, 'X'), + (0x11400, 'V'), + (0x1145C, 'X'), + (0x1145D, 'V'), + (0x11462, 'X'), + (0x11480, 'V'), + (0x114C8, 'X'), + (0x114D0, 'V'), + (0x114DA, 'X'), + (0x11580, 'V'), + (0x115B6, 'X'), + (0x115B8, 'V'), + (0x115DE, 'X'), + (0x11600, 'V'), + (0x11645, 'X'), + (0x11650, 'V'), + (0x1165A, 'X'), + (0x11660, 'V'), + (0x1166D, 'X'), + (0x11680, 'V'), + (0x116BA, 'X'), + (0x116C0, 'V'), + (0x116CA, 'X'), + (0x11700, 'V'), + (0x1171B, 'X'), + (0x1171D, 'V'), + (0x1172C, 'X'), + (0x11730, 'V'), + (0x11747, 'X'), + (0x11800, 'V'), + (0x1183C, 'X'), + (0x118A0, 'M', '𑣀'), + (0x118A1, 'M', '𑣁'), + (0x118A2, 'M', '𑣂'), + (0x118A3, 'M', '𑣃'), + (0x118A4, 'M', '𑣄'), + (0x118A5, 'M', '𑣅'), + (0x118A6, 'M', '𑣆'), + ] + +def _seg_58() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x118A7, 'M', '𑣇'), + (0x118A8, 'M', '𑣈'), + (0x118A9, 'M', '𑣉'), + (0x118AA, 'M', '𑣊'), + (0x118AB, 'M', '𑣋'), + (0x118AC, 'M', '𑣌'), + (0x118AD, 'M', '𑣍'), + (0x118AE, 'M', '𑣎'), + (0x118AF, 'M', '𑣏'), + (0x118B0, 'M', '𑣐'), + (0x118B1, 'M', '𑣑'), + (0x118B2, 'M', '𑣒'), + (0x118B3, 'M', '𑣓'), + (0x118B4, 'M', '𑣔'), + (0x118B5, 'M', '𑣕'), + (0x118B6, 'M', '𑣖'), + (0x118B7, 'M', '𑣗'), + (0x118B8, 'M', '𑣘'), + (0x118B9, 'M', '𑣙'), + (0x118BA, 'M', '𑣚'), + (0x118BB, 'M', '𑣛'), + (0x118BC, 'M', '𑣜'), + (0x118BD, 'M', '𑣝'), + (0x118BE, 'M', '𑣞'), + (0x118BF, 'M', '𑣟'), + (0x118C0, 'V'), + (0x118F3, 'X'), + (0x118FF, 'V'), + (0x11907, 'X'), + (0x11909, 'V'), + (0x1190A, 'X'), + (0x1190C, 'V'), + (0x11914, 'X'), + (0x11915, 'V'), + (0x11917, 'X'), + (0x11918, 'V'), + (0x11936, 'X'), + (0x11937, 'V'), + (0x11939, 'X'), + (0x1193B, 'V'), + (0x11947, 'X'), + (0x11950, 'V'), + (0x1195A, 'X'), + (0x119A0, 'V'), + (0x119A8, 'X'), + (0x119AA, 'V'), + (0x119D8, 'X'), + (0x119DA, 'V'), + (0x119E5, 'X'), + (0x11A00, 'V'), + (0x11A48, 'X'), + (0x11A50, 'V'), + (0x11AA3, 'X'), + (0x11AB0, 'V'), + (0x11AF9, 'X'), + (0x11B00, 'V'), + (0x11B0A, 'X'), + (0x11C00, 'V'), + (0x11C09, 'X'), + (0x11C0A, 'V'), + (0x11C37, 'X'), + (0x11C38, 'V'), + (0x11C46, 'X'), + (0x11C50, 'V'), + (0x11C6D, 'X'), + (0x11C70, 'V'), + (0x11C90, 'X'), + (0x11C92, 'V'), + (0x11CA8, 'X'), + (0x11CA9, 'V'), + (0x11CB7, 'X'), + (0x11D00, 'V'), + (0x11D07, 'X'), + (0x11D08, 'V'), + (0x11D0A, 'X'), + (0x11D0B, 'V'), + (0x11D37, 'X'), + (0x11D3A, 'V'), + (0x11D3B, 'X'), + (0x11D3C, 'V'), + (0x11D3E, 'X'), + (0x11D3F, 'V'), + (0x11D48, 'X'), + (0x11D50, 'V'), + (0x11D5A, 'X'), + (0x11D60, 'V'), + (0x11D66, 'X'), + (0x11D67, 'V'), + (0x11D69, 'X'), + (0x11D6A, 'V'), + (0x11D8F, 'X'), + (0x11D90, 'V'), + (0x11D92, 'X'), + (0x11D93, 'V'), + (0x11D99, 'X'), + (0x11DA0, 'V'), + (0x11DAA, 'X'), + (0x11EE0, 'V'), + (0x11EF9, 'X'), + (0x11F00, 'V'), + ] + +def _seg_59() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x11F11, 'X'), + (0x11F12, 'V'), + (0x11F3B, 'X'), + (0x11F3E, 'V'), + (0x11F5A, 'X'), + (0x11FB0, 'V'), + (0x11FB1, 'X'), + (0x11FC0, 'V'), + (0x11FF2, 'X'), + (0x11FFF, 'V'), + (0x1239A, 'X'), + (0x12400, 'V'), + (0x1246F, 'X'), + (0x12470, 'V'), + (0x12475, 'X'), + (0x12480, 'V'), + (0x12544, 'X'), + (0x12F90, 'V'), + (0x12FF3, 'X'), + (0x13000, 'V'), + (0x13430, 'X'), + (0x13440, 'V'), + (0x13456, 'X'), + (0x14400, 'V'), + (0x14647, 'X'), + (0x16800, 'V'), + (0x16A39, 'X'), + (0x16A40, 'V'), + (0x16A5F, 'X'), + (0x16A60, 'V'), + (0x16A6A, 'X'), + (0x16A6E, 'V'), + (0x16ABF, 'X'), + (0x16AC0, 'V'), + (0x16ACA, 'X'), + (0x16AD0, 'V'), + (0x16AEE, 'X'), + (0x16AF0, 'V'), + (0x16AF6, 'X'), + (0x16B00, 'V'), + (0x16B46, 'X'), + (0x16B50, 'V'), + (0x16B5A, 'X'), + (0x16B5B, 'V'), + (0x16B62, 'X'), + (0x16B63, 'V'), + (0x16B78, 'X'), + (0x16B7D, 'V'), + (0x16B90, 'X'), + (0x16E40, 'M', '𖹠'), + (0x16E41, 'M', '𖹡'), + (0x16E42, 'M', '𖹢'), + (0x16E43, 'M', '𖹣'), + (0x16E44, 'M', '𖹤'), + (0x16E45, 'M', '𖹥'), + (0x16E46, 'M', '𖹦'), + (0x16E47, 'M', '𖹧'), + (0x16E48, 'M', '𖹨'), + (0x16E49, 'M', '𖹩'), + (0x16E4A, 'M', '𖹪'), + (0x16E4B, 'M', '𖹫'), + (0x16E4C, 'M', '𖹬'), + (0x16E4D, 'M', '𖹭'), + (0x16E4E, 'M', '𖹮'), + (0x16E4F, 'M', '𖹯'), + (0x16E50, 'M', '𖹰'), + (0x16E51, 'M', '𖹱'), + (0x16E52, 'M', '𖹲'), + (0x16E53, 'M', '𖹳'), + (0x16E54, 'M', '𖹴'), + (0x16E55, 'M', '𖹵'), + (0x16E56, 'M', '𖹶'), + (0x16E57, 'M', '𖹷'), + (0x16E58, 'M', '𖹸'), + (0x16E59, 'M', '𖹹'), + (0x16E5A, 'M', '𖹺'), + (0x16E5B, 'M', '𖹻'), + (0x16E5C, 'M', '𖹼'), + (0x16E5D, 'M', '𖹽'), + (0x16E5E, 'M', '𖹾'), + (0x16E5F, 'M', '𖹿'), + (0x16E60, 'V'), + (0x16E9B, 'X'), + (0x16F00, 'V'), + (0x16F4B, 'X'), + (0x16F4F, 'V'), + (0x16F88, 'X'), + (0x16F8F, 'V'), + (0x16FA0, 'X'), + (0x16FE0, 'V'), + (0x16FE5, 'X'), + (0x16FF0, 'V'), + (0x16FF2, 'X'), + (0x17000, 'V'), + (0x187F8, 'X'), + (0x18800, 'V'), + (0x18CD6, 'X'), + (0x18D00, 'V'), + (0x18D09, 'X'), + (0x1AFF0, 'V'), + ] + +def _seg_60() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1AFF4, 'X'), + (0x1AFF5, 'V'), + (0x1AFFC, 'X'), + (0x1AFFD, 'V'), + (0x1AFFF, 'X'), + (0x1B000, 'V'), + (0x1B123, 'X'), + (0x1B132, 'V'), + (0x1B133, 'X'), + (0x1B150, 'V'), + (0x1B153, 'X'), + (0x1B155, 'V'), + (0x1B156, 'X'), + (0x1B164, 'V'), + (0x1B168, 'X'), + (0x1B170, 'V'), + (0x1B2FC, 'X'), + (0x1BC00, 'V'), + (0x1BC6B, 'X'), + (0x1BC70, 'V'), + (0x1BC7D, 'X'), + (0x1BC80, 'V'), + (0x1BC89, 'X'), + (0x1BC90, 'V'), + (0x1BC9A, 'X'), + (0x1BC9C, 'V'), + (0x1BCA0, 'I'), + (0x1BCA4, 'X'), + (0x1CF00, 'V'), + (0x1CF2E, 'X'), + (0x1CF30, 'V'), + (0x1CF47, 'X'), + (0x1CF50, 'V'), + (0x1CFC4, 'X'), + (0x1D000, 'V'), + (0x1D0F6, 'X'), + (0x1D100, 'V'), + (0x1D127, 'X'), + (0x1D129, 'V'), + (0x1D15E, 'M', '𝅗𝅥'), + (0x1D15F, 'M', '𝅘𝅥'), + (0x1D160, 'M', '𝅘𝅥𝅮'), + (0x1D161, 'M', '𝅘𝅥𝅯'), + (0x1D162, 'M', '𝅘𝅥𝅰'), + (0x1D163, 'M', '𝅘𝅥𝅱'), + (0x1D164, 'M', '𝅘𝅥𝅲'), + (0x1D165, 'V'), + (0x1D173, 'X'), + (0x1D17B, 'V'), + (0x1D1BB, 'M', '𝆹𝅥'), + (0x1D1BC, 'M', '𝆺𝅥'), + (0x1D1BD, 'M', '𝆹𝅥𝅮'), + (0x1D1BE, 'M', '𝆺𝅥𝅮'), + (0x1D1BF, 'M', '𝆹𝅥𝅯'), + (0x1D1C0, 'M', '𝆺𝅥𝅯'), + (0x1D1C1, 'V'), + (0x1D1EB, 'X'), + (0x1D200, 'V'), + (0x1D246, 'X'), + (0x1D2C0, 'V'), + (0x1D2D4, 'X'), + (0x1D2E0, 'V'), + (0x1D2F4, 'X'), + (0x1D300, 'V'), + (0x1D357, 'X'), + (0x1D360, 'V'), + (0x1D379, 'X'), + (0x1D400, 'M', 'a'), + (0x1D401, 'M', 'b'), + (0x1D402, 'M', 'c'), + (0x1D403, 'M', 'd'), + (0x1D404, 'M', 'e'), + (0x1D405, 'M', 'f'), + (0x1D406, 'M', 'g'), + (0x1D407, 'M', 'h'), + (0x1D408, 'M', 'i'), + (0x1D409, 'M', 'j'), + (0x1D40A, 'M', 'k'), + (0x1D40B, 'M', 'l'), + (0x1D40C, 'M', 'm'), + (0x1D40D, 'M', 'n'), + (0x1D40E, 'M', 'o'), + (0x1D40F, 'M', 'p'), + (0x1D410, 'M', 'q'), + (0x1D411, 'M', 'r'), + (0x1D412, 'M', 's'), + (0x1D413, 'M', 't'), + (0x1D414, 'M', 'u'), + (0x1D415, 'M', 'v'), + (0x1D416, 'M', 'w'), + (0x1D417, 'M', 'x'), + (0x1D418, 'M', 'y'), + (0x1D419, 'M', 'z'), + (0x1D41A, 'M', 'a'), + (0x1D41B, 'M', 'b'), + (0x1D41C, 'M', 'c'), + (0x1D41D, 'M', 'd'), + (0x1D41E, 'M', 'e'), + (0x1D41F, 'M', 'f'), + (0x1D420, 'M', 'g'), + ] + +def _seg_61() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D421, 'M', 'h'), + (0x1D422, 'M', 'i'), + (0x1D423, 'M', 'j'), + (0x1D424, 'M', 'k'), + (0x1D425, 'M', 'l'), + (0x1D426, 'M', 'm'), + (0x1D427, 'M', 'n'), + (0x1D428, 'M', 'o'), + (0x1D429, 'M', 'p'), + (0x1D42A, 'M', 'q'), + (0x1D42B, 'M', 'r'), + (0x1D42C, 'M', 's'), + (0x1D42D, 'M', 't'), + (0x1D42E, 'M', 'u'), + (0x1D42F, 'M', 'v'), + (0x1D430, 'M', 'w'), + (0x1D431, 'M', 'x'), + (0x1D432, 'M', 'y'), + (0x1D433, 'M', 'z'), + (0x1D434, 'M', 'a'), + (0x1D435, 'M', 'b'), + (0x1D436, 'M', 'c'), + (0x1D437, 'M', 'd'), + (0x1D438, 'M', 'e'), + (0x1D439, 'M', 'f'), + (0x1D43A, 'M', 'g'), + (0x1D43B, 'M', 'h'), + (0x1D43C, 'M', 'i'), + (0x1D43D, 'M', 'j'), + (0x1D43E, 'M', 'k'), + (0x1D43F, 'M', 'l'), + (0x1D440, 'M', 'm'), + (0x1D441, 'M', 'n'), + (0x1D442, 'M', 'o'), + (0x1D443, 'M', 'p'), + (0x1D444, 'M', 'q'), + (0x1D445, 'M', 'r'), + (0x1D446, 'M', 's'), + (0x1D447, 'M', 't'), + (0x1D448, 'M', 'u'), + (0x1D449, 'M', 'v'), + (0x1D44A, 'M', 'w'), + (0x1D44B, 'M', 'x'), + (0x1D44C, 'M', 'y'), + (0x1D44D, 'M', 'z'), + (0x1D44E, 'M', 'a'), + (0x1D44F, 'M', 'b'), + (0x1D450, 'M', 'c'), + (0x1D451, 'M', 'd'), + (0x1D452, 'M', 'e'), + (0x1D453, 'M', 'f'), + (0x1D454, 'M', 'g'), + (0x1D455, 'X'), + (0x1D456, 'M', 'i'), + (0x1D457, 'M', 'j'), + (0x1D458, 'M', 'k'), + (0x1D459, 'M', 'l'), + (0x1D45A, 'M', 'm'), + (0x1D45B, 'M', 'n'), + (0x1D45C, 'M', 'o'), + (0x1D45D, 'M', 'p'), + (0x1D45E, 'M', 'q'), + (0x1D45F, 'M', 'r'), + (0x1D460, 'M', 's'), + (0x1D461, 'M', 't'), + (0x1D462, 'M', 'u'), + (0x1D463, 'M', 'v'), + (0x1D464, 'M', 'w'), + (0x1D465, 'M', 'x'), + (0x1D466, 'M', 'y'), + (0x1D467, 'M', 'z'), + (0x1D468, 'M', 'a'), + (0x1D469, 'M', 'b'), + (0x1D46A, 'M', 'c'), + (0x1D46B, 'M', 'd'), + (0x1D46C, 'M', 'e'), + (0x1D46D, 'M', 'f'), + (0x1D46E, 'M', 'g'), + (0x1D46F, 'M', 'h'), + (0x1D470, 'M', 'i'), + (0x1D471, 'M', 'j'), + (0x1D472, 'M', 'k'), + (0x1D473, 'M', 'l'), + (0x1D474, 'M', 'm'), + (0x1D475, 'M', 'n'), + (0x1D476, 'M', 'o'), + (0x1D477, 'M', 'p'), + (0x1D478, 'M', 'q'), + (0x1D479, 'M', 'r'), + (0x1D47A, 'M', 's'), + (0x1D47B, 'M', 't'), + (0x1D47C, 'M', 'u'), + (0x1D47D, 'M', 'v'), + (0x1D47E, 'M', 'w'), + (0x1D47F, 'M', 'x'), + (0x1D480, 'M', 'y'), + (0x1D481, 'M', 'z'), + (0x1D482, 'M', 'a'), + (0x1D483, 'M', 'b'), + (0x1D484, 'M', 'c'), + ] + +def _seg_62() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D485, 'M', 'd'), + (0x1D486, 'M', 'e'), + (0x1D487, 'M', 'f'), + (0x1D488, 'M', 'g'), + (0x1D489, 'M', 'h'), + (0x1D48A, 'M', 'i'), + (0x1D48B, 'M', 'j'), + (0x1D48C, 'M', 'k'), + (0x1D48D, 'M', 'l'), + (0x1D48E, 'M', 'm'), + (0x1D48F, 'M', 'n'), + (0x1D490, 'M', 'o'), + (0x1D491, 'M', 'p'), + (0x1D492, 'M', 'q'), + (0x1D493, 'M', 'r'), + (0x1D494, 'M', 's'), + (0x1D495, 'M', 't'), + (0x1D496, 'M', 'u'), + (0x1D497, 'M', 'v'), + (0x1D498, 'M', 'w'), + (0x1D499, 'M', 'x'), + (0x1D49A, 'M', 'y'), + (0x1D49B, 'M', 'z'), + (0x1D49C, 'M', 'a'), + (0x1D49D, 'X'), + (0x1D49E, 'M', 'c'), + (0x1D49F, 'M', 'd'), + (0x1D4A0, 'X'), + (0x1D4A2, 'M', 'g'), + (0x1D4A3, 'X'), + (0x1D4A5, 'M', 'j'), + (0x1D4A6, 'M', 'k'), + (0x1D4A7, 'X'), + (0x1D4A9, 'M', 'n'), + (0x1D4AA, 'M', 'o'), + (0x1D4AB, 'M', 'p'), + (0x1D4AC, 'M', 'q'), + (0x1D4AD, 'X'), + (0x1D4AE, 'M', 's'), + (0x1D4AF, 'M', 't'), + (0x1D4B0, 'M', 'u'), + (0x1D4B1, 'M', 'v'), + (0x1D4B2, 'M', 'w'), + (0x1D4B3, 'M', 'x'), + (0x1D4B4, 'M', 'y'), + (0x1D4B5, 'M', 'z'), + (0x1D4B6, 'M', 'a'), + (0x1D4B7, 'M', 'b'), + (0x1D4B8, 'M', 'c'), + (0x1D4B9, 'M', 'd'), + (0x1D4BA, 'X'), + (0x1D4BB, 'M', 'f'), + (0x1D4BC, 'X'), + (0x1D4BD, 'M', 'h'), + (0x1D4BE, 'M', 'i'), + (0x1D4BF, 'M', 'j'), + (0x1D4C0, 'M', 'k'), + (0x1D4C1, 'M', 'l'), + (0x1D4C2, 'M', 'm'), + (0x1D4C3, 'M', 'n'), + (0x1D4C4, 'X'), + (0x1D4C5, 'M', 'p'), + (0x1D4C6, 'M', 'q'), + (0x1D4C7, 'M', 'r'), + (0x1D4C8, 'M', 's'), + (0x1D4C9, 'M', 't'), + (0x1D4CA, 'M', 'u'), + (0x1D4CB, 'M', 'v'), + (0x1D4CC, 'M', 'w'), + (0x1D4CD, 'M', 'x'), + (0x1D4CE, 'M', 'y'), + (0x1D4CF, 'M', 'z'), + (0x1D4D0, 'M', 'a'), + (0x1D4D1, 'M', 'b'), + (0x1D4D2, 'M', 'c'), + (0x1D4D3, 'M', 'd'), + (0x1D4D4, 'M', 'e'), + (0x1D4D5, 'M', 'f'), + (0x1D4D6, 'M', 'g'), + (0x1D4D7, 'M', 'h'), + (0x1D4D8, 'M', 'i'), + (0x1D4D9, 'M', 'j'), + (0x1D4DA, 'M', 'k'), + (0x1D4DB, 'M', 'l'), + (0x1D4DC, 'M', 'm'), + (0x1D4DD, 'M', 'n'), + (0x1D4DE, 'M', 'o'), + (0x1D4DF, 'M', 'p'), + (0x1D4E0, 'M', 'q'), + (0x1D4E1, 'M', 'r'), + (0x1D4E2, 'M', 's'), + (0x1D4E3, 'M', 't'), + (0x1D4E4, 'M', 'u'), + (0x1D4E5, 'M', 'v'), + (0x1D4E6, 'M', 'w'), + (0x1D4E7, 'M', 'x'), + (0x1D4E8, 'M', 'y'), + (0x1D4E9, 'M', 'z'), + (0x1D4EA, 'M', 'a'), + (0x1D4EB, 'M', 'b'), + ] + +def _seg_63() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D4EC, 'M', 'c'), + (0x1D4ED, 'M', 'd'), + (0x1D4EE, 'M', 'e'), + (0x1D4EF, 'M', 'f'), + (0x1D4F0, 'M', 'g'), + (0x1D4F1, 'M', 'h'), + (0x1D4F2, 'M', 'i'), + (0x1D4F3, 'M', 'j'), + (0x1D4F4, 'M', 'k'), + (0x1D4F5, 'M', 'l'), + (0x1D4F6, 'M', 'm'), + (0x1D4F7, 'M', 'n'), + (0x1D4F8, 'M', 'o'), + (0x1D4F9, 'M', 'p'), + (0x1D4FA, 'M', 'q'), + (0x1D4FB, 'M', 'r'), + (0x1D4FC, 'M', 's'), + (0x1D4FD, 'M', 't'), + (0x1D4FE, 'M', 'u'), + (0x1D4FF, 'M', 'v'), + (0x1D500, 'M', 'w'), + (0x1D501, 'M', 'x'), + (0x1D502, 'M', 'y'), + (0x1D503, 'M', 'z'), + (0x1D504, 'M', 'a'), + (0x1D505, 'M', 'b'), + (0x1D506, 'X'), + (0x1D507, 'M', 'd'), + (0x1D508, 'M', 'e'), + (0x1D509, 'M', 'f'), + (0x1D50A, 'M', 'g'), + (0x1D50B, 'X'), + (0x1D50D, 'M', 'j'), + (0x1D50E, 'M', 'k'), + (0x1D50F, 'M', 'l'), + (0x1D510, 'M', 'm'), + (0x1D511, 'M', 'n'), + (0x1D512, 'M', 'o'), + (0x1D513, 'M', 'p'), + (0x1D514, 'M', 'q'), + (0x1D515, 'X'), + (0x1D516, 'M', 's'), + (0x1D517, 'M', 't'), + (0x1D518, 'M', 'u'), + (0x1D519, 'M', 'v'), + (0x1D51A, 'M', 'w'), + (0x1D51B, 'M', 'x'), + (0x1D51C, 'M', 'y'), + (0x1D51D, 'X'), + (0x1D51E, 'M', 'a'), + (0x1D51F, 'M', 'b'), + (0x1D520, 'M', 'c'), + (0x1D521, 'M', 'd'), + (0x1D522, 'M', 'e'), + (0x1D523, 'M', 'f'), + (0x1D524, 'M', 'g'), + (0x1D525, 'M', 'h'), + (0x1D526, 'M', 'i'), + (0x1D527, 'M', 'j'), + (0x1D528, 'M', 'k'), + (0x1D529, 'M', 'l'), + (0x1D52A, 'M', 'm'), + (0x1D52B, 'M', 'n'), + (0x1D52C, 'M', 'o'), + (0x1D52D, 'M', 'p'), + (0x1D52E, 'M', 'q'), + (0x1D52F, 'M', 'r'), + (0x1D530, 'M', 's'), + (0x1D531, 'M', 't'), + (0x1D532, 'M', 'u'), + (0x1D533, 'M', 'v'), + (0x1D534, 'M', 'w'), + (0x1D535, 'M', 'x'), + (0x1D536, 'M', 'y'), + (0x1D537, 'M', 'z'), + (0x1D538, 'M', 'a'), + (0x1D539, 'M', 'b'), + (0x1D53A, 'X'), + (0x1D53B, 'M', 'd'), + (0x1D53C, 'M', 'e'), + (0x1D53D, 'M', 'f'), + (0x1D53E, 'M', 'g'), + (0x1D53F, 'X'), + (0x1D540, 'M', 'i'), + (0x1D541, 'M', 'j'), + (0x1D542, 'M', 'k'), + (0x1D543, 'M', 'l'), + (0x1D544, 'M', 'm'), + (0x1D545, 'X'), + (0x1D546, 'M', 'o'), + (0x1D547, 'X'), + (0x1D54A, 'M', 's'), + (0x1D54B, 'M', 't'), + (0x1D54C, 'M', 'u'), + (0x1D54D, 'M', 'v'), + (0x1D54E, 'M', 'w'), + (0x1D54F, 'M', 'x'), + (0x1D550, 'M', 'y'), + (0x1D551, 'X'), + (0x1D552, 'M', 'a'), + ] + +def _seg_64() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D553, 'M', 'b'), + (0x1D554, 'M', 'c'), + (0x1D555, 'M', 'd'), + (0x1D556, 'M', 'e'), + (0x1D557, 'M', 'f'), + (0x1D558, 'M', 'g'), + (0x1D559, 'M', 'h'), + (0x1D55A, 'M', 'i'), + (0x1D55B, 'M', 'j'), + (0x1D55C, 'M', 'k'), + (0x1D55D, 'M', 'l'), + (0x1D55E, 'M', 'm'), + (0x1D55F, 'M', 'n'), + (0x1D560, 'M', 'o'), + (0x1D561, 'M', 'p'), + (0x1D562, 'M', 'q'), + (0x1D563, 'M', 'r'), + (0x1D564, 'M', 's'), + (0x1D565, 'M', 't'), + (0x1D566, 'M', 'u'), + (0x1D567, 'M', 'v'), + (0x1D568, 'M', 'w'), + (0x1D569, 'M', 'x'), + (0x1D56A, 'M', 'y'), + (0x1D56B, 'M', 'z'), + (0x1D56C, 'M', 'a'), + (0x1D56D, 'M', 'b'), + (0x1D56E, 'M', 'c'), + (0x1D56F, 'M', 'd'), + (0x1D570, 'M', 'e'), + (0x1D571, 'M', 'f'), + (0x1D572, 'M', 'g'), + (0x1D573, 'M', 'h'), + (0x1D574, 'M', 'i'), + (0x1D575, 'M', 'j'), + (0x1D576, 'M', 'k'), + (0x1D577, 'M', 'l'), + (0x1D578, 'M', 'm'), + (0x1D579, 'M', 'n'), + (0x1D57A, 'M', 'o'), + (0x1D57B, 'M', 'p'), + (0x1D57C, 'M', 'q'), + (0x1D57D, 'M', 'r'), + (0x1D57E, 'M', 's'), + (0x1D57F, 'M', 't'), + (0x1D580, 'M', 'u'), + (0x1D581, 'M', 'v'), + (0x1D582, 'M', 'w'), + (0x1D583, 'M', 'x'), + (0x1D584, 'M', 'y'), + (0x1D585, 'M', 'z'), + (0x1D586, 'M', 'a'), + (0x1D587, 'M', 'b'), + (0x1D588, 'M', 'c'), + (0x1D589, 'M', 'd'), + (0x1D58A, 'M', 'e'), + (0x1D58B, 'M', 'f'), + (0x1D58C, 'M', 'g'), + (0x1D58D, 'M', 'h'), + (0x1D58E, 'M', 'i'), + (0x1D58F, 'M', 'j'), + (0x1D590, 'M', 'k'), + (0x1D591, 'M', 'l'), + (0x1D592, 'M', 'm'), + (0x1D593, 'M', 'n'), + (0x1D594, 'M', 'o'), + (0x1D595, 'M', 'p'), + (0x1D596, 'M', 'q'), + (0x1D597, 'M', 'r'), + (0x1D598, 'M', 's'), + (0x1D599, 'M', 't'), + (0x1D59A, 'M', 'u'), + (0x1D59B, 'M', 'v'), + (0x1D59C, 'M', 'w'), + (0x1D59D, 'M', 'x'), + (0x1D59E, 'M', 'y'), + (0x1D59F, 'M', 'z'), + (0x1D5A0, 'M', 'a'), + (0x1D5A1, 'M', 'b'), + (0x1D5A2, 'M', 'c'), + (0x1D5A3, 'M', 'd'), + (0x1D5A4, 'M', 'e'), + (0x1D5A5, 'M', 'f'), + (0x1D5A6, 'M', 'g'), + (0x1D5A7, 'M', 'h'), + (0x1D5A8, 'M', 'i'), + (0x1D5A9, 'M', 'j'), + (0x1D5AA, 'M', 'k'), + (0x1D5AB, 'M', 'l'), + (0x1D5AC, 'M', 'm'), + (0x1D5AD, 'M', 'n'), + (0x1D5AE, 'M', 'o'), + (0x1D5AF, 'M', 'p'), + (0x1D5B0, 'M', 'q'), + (0x1D5B1, 'M', 'r'), + (0x1D5B2, 'M', 's'), + (0x1D5B3, 'M', 't'), + (0x1D5B4, 'M', 'u'), + (0x1D5B5, 'M', 'v'), + (0x1D5B6, 'M', 'w'), + ] + +def _seg_65() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D5B7, 'M', 'x'), + (0x1D5B8, 'M', 'y'), + (0x1D5B9, 'M', 'z'), + (0x1D5BA, 'M', 'a'), + (0x1D5BB, 'M', 'b'), + (0x1D5BC, 'M', 'c'), + (0x1D5BD, 'M', 'd'), + (0x1D5BE, 'M', 'e'), + (0x1D5BF, 'M', 'f'), + (0x1D5C0, 'M', 'g'), + (0x1D5C1, 'M', 'h'), + (0x1D5C2, 'M', 'i'), + (0x1D5C3, 'M', 'j'), + (0x1D5C4, 'M', 'k'), + (0x1D5C5, 'M', 'l'), + (0x1D5C6, 'M', 'm'), + (0x1D5C7, 'M', 'n'), + (0x1D5C8, 'M', 'o'), + (0x1D5C9, 'M', 'p'), + (0x1D5CA, 'M', 'q'), + (0x1D5CB, 'M', 'r'), + (0x1D5CC, 'M', 's'), + (0x1D5CD, 'M', 't'), + (0x1D5CE, 'M', 'u'), + (0x1D5CF, 'M', 'v'), + (0x1D5D0, 'M', 'w'), + (0x1D5D1, 'M', 'x'), + (0x1D5D2, 'M', 'y'), + (0x1D5D3, 'M', 'z'), + (0x1D5D4, 'M', 'a'), + (0x1D5D5, 'M', 'b'), + (0x1D5D6, 'M', 'c'), + (0x1D5D7, 'M', 'd'), + (0x1D5D8, 'M', 'e'), + (0x1D5D9, 'M', 'f'), + (0x1D5DA, 'M', 'g'), + (0x1D5DB, 'M', 'h'), + (0x1D5DC, 'M', 'i'), + (0x1D5DD, 'M', 'j'), + (0x1D5DE, 'M', 'k'), + (0x1D5DF, 'M', 'l'), + (0x1D5E0, 'M', 'm'), + (0x1D5E1, 'M', 'n'), + (0x1D5E2, 'M', 'o'), + (0x1D5E3, 'M', 'p'), + (0x1D5E4, 'M', 'q'), + (0x1D5E5, 'M', 'r'), + (0x1D5E6, 'M', 's'), + (0x1D5E7, 'M', 't'), + (0x1D5E8, 'M', 'u'), + (0x1D5E9, 'M', 'v'), + (0x1D5EA, 'M', 'w'), + (0x1D5EB, 'M', 'x'), + (0x1D5EC, 'M', 'y'), + (0x1D5ED, 'M', 'z'), + (0x1D5EE, 'M', 'a'), + (0x1D5EF, 'M', 'b'), + (0x1D5F0, 'M', 'c'), + (0x1D5F1, 'M', 'd'), + (0x1D5F2, 'M', 'e'), + (0x1D5F3, 'M', 'f'), + (0x1D5F4, 'M', 'g'), + (0x1D5F5, 'M', 'h'), + (0x1D5F6, 'M', 'i'), + (0x1D5F7, 'M', 'j'), + (0x1D5F8, 'M', 'k'), + (0x1D5F9, 'M', 'l'), + (0x1D5FA, 'M', 'm'), + (0x1D5FB, 'M', 'n'), + (0x1D5FC, 'M', 'o'), + (0x1D5FD, 'M', 'p'), + (0x1D5FE, 'M', 'q'), + (0x1D5FF, 'M', 'r'), + (0x1D600, 'M', 's'), + (0x1D601, 'M', 't'), + (0x1D602, 'M', 'u'), + (0x1D603, 'M', 'v'), + (0x1D604, 'M', 'w'), + (0x1D605, 'M', 'x'), + (0x1D606, 'M', 'y'), + (0x1D607, 'M', 'z'), + (0x1D608, 'M', 'a'), + (0x1D609, 'M', 'b'), + (0x1D60A, 'M', 'c'), + (0x1D60B, 'M', 'd'), + (0x1D60C, 'M', 'e'), + (0x1D60D, 'M', 'f'), + (0x1D60E, 'M', 'g'), + (0x1D60F, 'M', 'h'), + (0x1D610, 'M', 'i'), + (0x1D611, 'M', 'j'), + (0x1D612, 'M', 'k'), + (0x1D613, 'M', 'l'), + (0x1D614, 'M', 'm'), + (0x1D615, 'M', 'n'), + (0x1D616, 'M', 'o'), + (0x1D617, 'M', 'p'), + (0x1D618, 'M', 'q'), + (0x1D619, 'M', 'r'), + (0x1D61A, 'M', 's'), + ] + +def _seg_66() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D61B, 'M', 't'), + (0x1D61C, 'M', 'u'), + (0x1D61D, 'M', 'v'), + (0x1D61E, 'M', 'w'), + (0x1D61F, 'M', 'x'), + (0x1D620, 'M', 'y'), + (0x1D621, 'M', 'z'), + (0x1D622, 'M', 'a'), + (0x1D623, 'M', 'b'), + (0x1D624, 'M', 'c'), + (0x1D625, 'M', 'd'), + (0x1D626, 'M', 'e'), + (0x1D627, 'M', 'f'), + (0x1D628, 'M', 'g'), + (0x1D629, 'M', 'h'), + (0x1D62A, 'M', 'i'), + (0x1D62B, 'M', 'j'), + (0x1D62C, 'M', 'k'), + (0x1D62D, 'M', 'l'), + (0x1D62E, 'M', 'm'), + (0x1D62F, 'M', 'n'), + (0x1D630, 'M', 'o'), + (0x1D631, 'M', 'p'), + (0x1D632, 'M', 'q'), + (0x1D633, 'M', 'r'), + (0x1D634, 'M', 's'), + (0x1D635, 'M', 't'), + (0x1D636, 'M', 'u'), + (0x1D637, 'M', 'v'), + (0x1D638, 'M', 'w'), + (0x1D639, 'M', 'x'), + (0x1D63A, 'M', 'y'), + (0x1D63B, 'M', 'z'), + (0x1D63C, 'M', 'a'), + (0x1D63D, 'M', 'b'), + (0x1D63E, 'M', 'c'), + (0x1D63F, 'M', 'd'), + (0x1D640, 'M', 'e'), + (0x1D641, 'M', 'f'), + (0x1D642, 'M', 'g'), + (0x1D643, 'M', 'h'), + (0x1D644, 'M', 'i'), + (0x1D645, 'M', 'j'), + (0x1D646, 'M', 'k'), + (0x1D647, 'M', 'l'), + (0x1D648, 'M', 'm'), + (0x1D649, 'M', 'n'), + (0x1D64A, 'M', 'o'), + (0x1D64B, 'M', 'p'), + (0x1D64C, 'M', 'q'), + (0x1D64D, 'M', 'r'), + (0x1D64E, 'M', 's'), + (0x1D64F, 'M', 't'), + (0x1D650, 'M', 'u'), + (0x1D651, 'M', 'v'), + (0x1D652, 'M', 'w'), + (0x1D653, 'M', 'x'), + (0x1D654, 'M', 'y'), + (0x1D655, 'M', 'z'), + (0x1D656, 'M', 'a'), + (0x1D657, 'M', 'b'), + (0x1D658, 'M', 'c'), + (0x1D659, 'M', 'd'), + (0x1D65A, 'M', 'e'), + (0x1D65B, 'M', 'f'), + (0x1D65C, 'M', 'g'), + (0x1D65D, 'M', 'h'), + (0x1D65E, 'M', 'i'), + (0x1D65F, 'M', 'j'), + (0x1D660, 'M', 'k'), + (0x1D661, 'M', 'l'), + (0x1D662, 'M', 'm'), + (0x1D663, 'M', 'n'), + (0x1D664, 'M', 'o'), + (0x1D665, 'M', 'p'), + (0x1D666, 'M', 'q'), + (0x1D667, 'M', 'r'), + (0x1D668, 'M', 's'), + (0x1D669, 'M', 't'), + (0x1D66A, 'M', 'u'), + (0x1D66B, 'M', 'v'), + (0x1D66C, 'M', 'w'), + (0x1D66D, 'M', 'x'), + (0x1D66E, 'M', 'y'), + (0x1D66F, 'M', 'z'), + (0x1D670, 'M', 'a'), + (0x1D671, 'M', 'b'), + (0x1D672, 'M', 'c'), + (0x1D673, 'M', 'd'), + (0x1D674, 'M', 'e'), + (0x1D675, 'M', 'f'), + (0x1D676, 'M', 'g'), + (0x1D677, 'M', 'h'), + (0x1D678, 'M', 'i'), + (0x1D679, 'M', 'j'), + (0x1D67A, 'M', 'k'), + (0x1D67B, 'M', 'l'), + (0x1D67C, 'M', 'm'), + (0x1D67D, 'M', 'n'), + (0x1D67E, 'M', 'o'), + ] + +def _seg_67() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D67F, 'M', 'p'), + (0x1D680, 'M', 'q'), + (0x1D681, 'M', 'r'), + (0x1D682, 'M', 's'), + (0x1D683, 'M', 't'), + (0x1D684, 'M', 'u'), + (0x1D685, 'M', 'v'), + (0x1D686, 'M', 'w'), + (0x1D687, 'M', 'x'), + (0x1D688, 'M', 'y'), + (0x1D689, 'M', 'z'), + (0x1D68A, 'M', 'a'), + (0x1D68B, 'M', 'b'), + (0x1D68C, 'M', 'c'), + (0x1D68D, 'M', 'd'), + (0x1D68E, 'M', 'e'), + (0x1D68F, 'M', 'f'), + (0x1D690, 'M', 'g'), + (0x1D691, 'M', 'h'), + (0x1D692, 'M', 'i'), + (0x1D693, 'M', 'j'), + (0x1D694, 'M', 'k'), + (0x1D695, 'M', 'l'), + (0x1D696, 'M', 'm'), + (0x1D697, 'M', 'n'), + (0x1D698, 'M', 'o'), + (0x1D699, 'M', 'p'), + (0x1D69A, 'M', 'q'), + (0x1D69B, 'M', 'r'), + (0x1D69C, 'M', 's'), + (0x1D69D, 'M', 't'), + (0x1D69E, 'M', 'u'), + (0x1D69F, 'M', 'v'), + (0x1D6A0, 'M', 'w'), + (0x1D6A1, 'M', 'x'), + (0x1D6A2, 'M', 'y'), + (0x1D6A3, 'M', 'z'), + (0x1D6A4, 'M', 'ı'), + (0x1D6A5, 'M', 'ȷ'), + (0x1D6A6, 'X'), + (0x1D6A8, 'M', 'α'), + (0x1D6A9, 'M', 'β'), + (0x1D6AA, 'M', 'γ'), + (0x1D6AB, 'M', 'δ'), + (0x1D6AC, 'M', 'ε'), + (0x1D6AD, 'M', 'ζ'), + (0x1D6AE, 'M', 'η'), + (0x1D6AF, 'M', 'θ'), + (0x1D6B0, 'M', 'ι'), + (0x1D6B1, 'M', 'κ'), + (0x1D6B2, 'M', 'λ'), + (0x1D6B3, 'M', 'μ'), + (0x1D6B4, 'M', 'ν'), + (0x1D6B5, 'M', 'ξ'), + (0x1D6B6, 'M', 'ο'), + (0x1D6B7, 'M', 'π'), + (0x1D6B8, 'M', 'ρ'), + (0x1D6B9, 'M', 'θ'), + (0x1D6BA, 'M', 'σ'), + (0x1D6BB, 'M', 'τ'), + (0x1D6BC, 'M', 'υ'), + (0x1D6BD, 'M', 'φ'), + (0x1D6BE, 'M', 'χ'), + (0x1D6BF, 'M', 'ψ'), + (0x1D6C0, 'M', 'ω'), + (0x1D6C1, 'M', '∇'), + (0x1D6C2, 'M', 'α'), + (0x1D6C3, 'M', 'β'), + (0x1D6C4, 'M', 'γ'), + (0x1D6C5, 'M', 'δ'), + (0x1D6C6, 'M', 'ε'), + (0x1D6C7, 'M', 'ζ'), + (0x1D6C8, 'M', 'η'), + (0x1D6C9, 'M', 'θ'), + (0x1D6CA, 'M', 'ι'), + (0x1D6CB, 'M', 'κ'), + (0x1D6CC, 'M', 'λ'), + (0x1D6CD, 'M', 'μ'), + (0x1D6CE, 'M', 'ν'), + (0x1D6CF, 'M', 'ξ'), + (0x1D6D0, 'M', 'ο'), + (0x1D6D1, 'M', 'π'), + (0x1D6D2, 'M', 'ρ'), + (0x1D6D3, 'M', 'σ'), + (0x1D6D5, 'M', 'τ'), + (0x1D6D6, 'M', 'υ'), + (0x1D6D7, 'M', 'φ'), + (0x1D6D8, 'M', 'χ'), + (0x1D6D9, 'M', 'ψ'), + (0x1D6DA, 'M', 'ω'), + (0x1D6DB, 'M', '∂'), + (0x1D6DC, 'M', 'ε'), + (0x1D6DD, 'M', 'θ'), + (0x1D6DE, 'M', 'κ'), + (0x1D6DF, 'M', 'φ'), + (0x1D6E0, 'M', 'ρ'), + (0x1D6E1, 'M', 'π'), + (0x1D6E2, 'M', 'α'), + (0x1D6E3, 'M', 'β'), + (0x1D6E4, 'M', 'γ'), + ] + +def _seg_68() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D6E5, 'M', 'δ'), + (0x1D6E6, 'M', 'ε'), + (0x1D6E7, 'M', 'ζ'), + (0x1D6E8, 'M', 'η'), + (0x1D6E9, 'M', 'θ'), + (0x1D6EA, 'M', 'ι'), + (0x1D6EB, 'M', 'κ'), + (0x1D6EC, 'M', 'λ'), + (0x1D6ED, 'M', 'μ'), + (0x1D6EE, 'M', 'ν'), + (0x1D6EF, 'M', 'ξ'), + (0x1D6F0, 'M', 'ο'), + (0x1D6F1, 'M', 'π'), + (0x1D6F2, 'M', 'ρ'), + (0x1D6F3, 'M', 'θ'), + (0x1D6F4, 'M', 'σ'), + (0x1D6F5, 'M', 'τ'), + (0x1D6F6, 'M', 'υ'), + (0x1D6F7, 'M', 'φ'), + (0x1D6F8, 'M', 'χ'), + (0x1D6F9, 'M', 'ψ'), + (0x1D6FA, 'M', 'ω'), + (0x1D6FB, 'M', '∇'), + (0x1D6FC, 'M', 'α'), + (0x1D6FD, 'M', 'β'), + (0x1D6FE, 'M', 'γ'), + (0x1D6FF, 'M', 'δ'), + (0x1D700, 'M', 'ε'), + (0x1D701, 'M', 'ζ'), + (0x1D702, 'M', 'η'), + (0x1D703, 'M', 'θ'), + (0x1D704, 'M', 'ι'), + (0x1D705, 'M', 'κ'), + (0x1D706, 'M', 'λ'), + (0x1D707, 'M', 'μ'), + (0x1D708, 'M', 'ν'), + (0x1D709, 'M', 'ξ'), + (0x1D70A, 'M', 'ο'), + (0x1D70B, 'M', 'π'), + (0x1D70C, 'M', 'ρ'), + (0x1D70D, 'M', 'σ'), + (0x1D70F, 'M', 'τ'), + (0x1D710, 'M', 'υ'), + (0x1D711, 'M', 'φ'), + (0x1D712, 'M', 'χ'), + (0x1D713, 'M', 'ψ'), + (0x1D714, 'M', 'ω'), + (0x1D715, 'M', '∂'), + (0x1D716, 'M', 'ε'), + (0x1D717, 'M', 'θ'), + (0x1D718, 'M', 'κ'), + (0x1D719, 'M', 'φ'), + (0x1D71A, 'M', 'ρ'), + (0x1D71B, 'M', 'π'), + (0x1D71C, 'M', 'α'), + (0x1D71D, 'M', 'β'), + (0x1D71E, 'M', 'γ'), + (0x1D71F, 'M', 'δ'), + (0x1D720, 'M', 'ε'), + (0x1D721, 'M', 'ζ'), + (0x1D722, 'M', 'η'), + (0x1D723, 'M', 'θ'), + (0x1D724, 'M', 'ι'), + (0x1D725, 'M', 'κ'), + (0x1D726, 'M', 'λ'), + (0x1D727, 'M', 'μ'), + (0x1D728, 'M', 'ν'), + (0x1D729, 'M', 'ξ'), + (0x1D72A, 'M', 'ο'), + (0x1D72B, 'M', 'π'), + (0x1D72C, 'M', 'ρ'), + (0x1D72D, 'M', 'θ'), + (0x1D72E, 'M', 'σ'), + (0x1D72F, 'M', 'τ'), + (0x1D730, 'M', 'υ'), + (0x1D731, 'M', 'φ'), + (0x1D732, 'M', 'χ'), + (0x1D733, 'M', 'ψ'), + (0x1D734, 'M', 'ω'), + (0x1D735, 'M', '∇'), + (0x1D736, 'M', 'α'), + (0x1D737, 'M', 'β'), + (0x1D738, 'M', 'γ'), + (0x1D739, 'M', 'δ'), + (0x1D73A, 'M', 'ε'), + (0x1D73B, 'M', 'ζ'), + (0x1D73C, 'M', 'η'), + (0x1D73D, 'M', 'θ'), + (0x1D73E, 'M', 'ι'), + (0x1D73F, 'M', 'κ'), + (0x1D740, 'M', 'λ'), + (0x1D741, 'M', 'μ'), + (0x1D742, 'M', 'ν'), + (0x1D743, 'M', 'ξ'), + (0x1D744, 'M', 'ο'), + (0x1D745, 'M', 'π'), + (0x1D746, 'M', 'ρ'), + (0x1D747, 'M', 'σ'), + (0x1D749, 'M', 'τ'), + (0x1D74A, 'M', 'υ'), + ] + +def _seg_69() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D74B, 'M', 'φ'), + (0x1D74C, 'M', 'χ'), + (0x1D74D, 'M', 'ψ'), + (0x1D74E, 'M', 'ω'), + (0x1D74F, 'M', '∂'), + (0x1D750, 'M', 'ε'), + (0x1D751, 'M', 'θ'), + (0x1D752, 'M', 'κ'), + (0x1D753, 'M', 'φ'), + (0x1D754, 'M', 'ρ'), + (0x1D755, 'M', 'π'), + (0x1D756, 'M', 'α'), + (0x1D757, 'M', 'β'), + (0x1D758, 'M', 'γ'), + (0x1D759, 'M', 'δ'), + (0x1D75A, 'M', 'ε'), + (0x1D75B, 'M', 'ζ'), + (0x1D75C, 'M', 'η'), + (0x1D75D, 'M', 'θ'), + (0x1D75E, 'M', 'ι'), + (0x1D75F, 'M', 'κ'), + (0x1D760, 'M', 'λ'), + (0x1D761, 'M', 'μ'), + (0x1D762, 'M', 'ν'), + (0x1D763, 'M', 'ξ'), + (0x1D764, 'M', 'ο'), + (0x1D765, 'M', 'π'), + (0x1D766, 'M', 'ρ'), + (0x1D767, 'M', 'θ'), + (0x1D768, 'M', 'σ'), + (0x1D769, 'M', 'τ'), + (0x1D76A, 'M', 'υ'), + (0x1D76B, 'M', 'φ'), + (0x1D76C, 'M', 'χ'), + (0x1D76D, 'M', 'ψ'), + (0x1D76E, 'M', 'ω'), + (0x1D76F, 'M', '∇'), + (0x1D770, 'M', 'α'), + (0x1D771, 'M', 'β'), + (0x1D772, 'M', 'γ'), + (0x1D773, 'M', 'δ'), + (0x1D774, 'M', 'ε'), + (0x1D775, 'M', 'ζ'), + (0x1D776, 'M', 'η'), + (0x1D777, 'M', 'θ'), + (0x1D778, 'M', 'ι'), + (0x1D779, 'M', 'κ'), + (0x1D77A, 'M', 'λ'), + (0x1D77B, 'M', 'μ'), + (0x1D77C, 'M', 'ν'), + (0x1D77D, 'M', 'ξ'), + (0x1D77E, 'M', 'ο'), + (0x1D77F, 'M', 'π'), + (0x1D780, 'M', 'ρ'), + (0x1D781, 'M', 'σ'), + (0x1D783, 'M', 'τ'), + (0x1D784, 'M', 'υ'), + (0x1D785, 'M', 'φ'), + (0x1D786, 'M', 'χ'), + (0x1D787, 'M', 'ψ'), + (0x1D788, 'M', 'ω'), + (0x1D789, 'M', '∂'), + (0x1D78A, 'M', 'ε'), + (0x1D78B, 'M', 'θ'), + (0x1D78C, 'M', 'κ'), + (0x1D78D, 'M', 'φ'), + (0x1D78E, 'M', 'ρ'), + (0x1D78F, 'M', 'π'), + (0x1D790, 'M', 'α'), + (0x1D791, 'M', 'β'), + (0x1D792, 'M', 'γ'), + (0x1D793, 'M', 'δ'), + (0x1D794, 'M', 'ε'), + (0x1D795, 'M', 'ζ'), + (0x1D796, 'M', 'η'), + (0x1D797, 'M', 'θ'), + (0x1D798, 'M', 'ι'), + (0x1D799, 'M', 'κ'), + (0x1D79A, 'M', 'λ'), + (0x1D79B, 'M', 'μ'), + (0x1D79C, 'M', 'ν'), + (0x1D79D, 'M', 'ξ'), + (0x1D79E, 'M', 'ο'), + (0x1D79F, 'M', 'π'), + (0x1D7A0, 'M', 'ρ'), + (0x1D7A1, 'M', 'θ'), + (0x1D7A2, 'M', 'σ'), + (0x1D7A3, 'M', 'τ'), + (0x1D7A4, 'M', 'υ'), + (0x1D7A5, 'M', 'φ'), + (0x1D7A6, 'M', 'χ'), + (0x1D7A7, 'M', 'ψ'), + (0x1D7A8, 'M', 'ω'), + (0x1D7A9, 'M', '∇'), + (0x1D7AA, 'M', 'α'), + (0x1D7AB, 'M', 'β'), + (0x1D7AC, 'M', 'γ'), + (0x1D7AD, 'M', 'δ'), + (0x1D7AE, 'M', 'ε'), + (0x1D7AF, 'M', 'ζ'), + ] + +def _seg_70() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D7B0, 'M', 'η'), + (0x1D7B1, 'M', 'θ'), + (0x1D7B2, 'M', 'ι'), + (0x1D7B3, 'M', 'κ'), + (0x1D7B4, 'M', 'λ'), + (0x1D7B5, 'M', 'μ'), + (0x1D7B6, 'M', 'ν'), + (0x1D7B7, 'M', 'ξ'), + (0x1D7B8, 'M', 'ο'), + (0x1D7B9, 'M', 'π'), + (0x1D7BA, 'M', 'ρ'), + (0x1D7BB, 'M', 'σ'), + (0x1D7BD, 'M', 'τ'), + (0x1D7BE, 'M', 'υ'), + (0x1D7BF, 'M', 'φ'), + (0x1D7C0, 'M', 'χ'), + (0x1D7C1, 'M', 'ψ'), + (0x1D7C2, 'M', 'ω'), + (0x1D7C3, 'M', '∂'), + (0x1D7C4, 'M', 'ε'), + (0x1D7C5, 'M', 'θ'), + (0x1D7C6, 'M', 'κ'), + (0x1D7C7, 'M', 'φ'), + (0x1D7C8, 'M', 'ρ'), + (0x1D7C9, 'M', 'π'), + (0x1D7CA, 'M', 'ϝ'), + (0x1D7CC, 'X'), + (0x1D7CE, 'M', '0'), + (0x1D7CF, 'M', '1'), + (0x1D7D0, 'M', '2'), + (0x1D7D1, 'M', '3'), + (0x1D7D2, 'M', '4'), + (0x1D7D3, 'M', '5'), + (0x1D7D4, 'M', '6'), + (0x1D7D5, 'M', '7'), + (0x1D7D6, 'M', '8'), + (0x1D7D7, 'M', '9'), + (0x1D7D8, 'M', '0'), + (0x1D7D9, 'M', '1'), + (0x1D7DA, 'M', '2'), + (0x1D7DB, 'M', '3'), + (0x1D7DC, 'M', '4'), + (0x1D7DD, 'M', '5'), + (0x1D7DE, 'M', '6'), + (0x1D7DF, 'M', '7'), + (0x1D7E0, 'M', '8'), + (0x1D7E1, 'M', '9'), + (0x1D7E2, 'M', '0'), + (0x1D7E3, 'M', '1'), + (0x1D7E4, 'M', '2'), + (0x1D7E5, 'M', '3'), + (0x1D7E6, 'M', '4'), + (0x1D7E7, 'M', '5'), + (0x1D7E8, 'M', '6'), + (0x1D7E9, 'M', '7'), + (0x1D7EA, 'M', '8'), + (0x1D7EB, 'M', '9'), + (0x1D7EC, 'M', '0'), + (0x1D7ED, 'M', '1'), + (0x1D7EE, 'M', '2'), + (0x1D7EF, 'M', '3'), + (0x1D7F0, 'M', '4'), + (0x1D7F1, 'M', '5'), + (0x1D7F2, 'M', '6'), + (0x1D7F3, 'M', '7'), + (0x1D7F4, 'M', '8'), + (0x1D7F5, 'M', '9'), + (0x1D7F6, 'M', '0'), + (0x1D7F7, 'M', '1'), + (0x1D7F8, 'M', '2'), + (0x1D7F9, 'M', '3'), + (0x1D7FA, 'M', '4'), + (0x1D7FB, 'M', '5'), + (0x1D7FC, 'M', '6'), + (0x1D7FD, 'M', '7'), + (0x1D7FE, 'M', '8'), + (0x1D7FF, 'M', '9'), + (0x1D800, 'V'), + (0x1DA8C, 'X'), + (0x1DA9B, 'V'), + (0x1DAA0, 'X'), + (0x1DAA1, 'V'), + (0x1DAB0, 'X'), + (0x1DF00, 'V'), + (0x1DF1F, 'X'), + (0x1DF25, 'V'), + (0x1DF2B, 'X'), + (0x1E000, 'V'), + (0x1E007, 'X'), + (0x1E008, 'V'), + (0x1E019, 'X'), + (0x1E01B, 'V'), + (0x1E022, 'X'), + (0x1E023, 'V'), + (0x1E025, 'X'), + (0x1E026, 'V'), + (0x1E02B, 'X'), + (0x1E030, 'M', 'а'), + (0x1E031, 'M', 'б'), + (0x1E032, 'M', 'в'), + ] + +def _seg_71() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1E033, 'M', 'г'), + (0x1E034, 'M', 'д'), + (0x1E035, 'M', 'е'), + (0x1E036, 'M', 'ж'), + (0x1E037, 'M', 'з'), + (0x1E038, 'M', 'и'), + (0x1E039, 'M', 'к'), + (0x1E03A, 'M', 'л'), + (0x1E03B, 'M', 'м'), + (0x1E03C, 'M', 'о'), + (0x1E03D, 'M', 'п'), + (0x1E03E, 'M', 'р'), + (0x1E03F, 'M', 'с'), + (0x1E040, 'M', 'т'), + (0x1E041, 'M', 'у'), + (0x1E042, 'M', 'ф'), + (0x1E043, 'M', 'х'), + (0x1E044, 'M', 'ц'), + (0x1E045, 'M', 'ч'), + (0x1E046, 'M', 'ш'), + (0x1E047, 'M', 'ы'), + (0x1E048, 'M', 'э'), + (0x1E049, 'M', 'ю'), + (0x1E04A, 'M', 'ꚉ'), + (0x1E04B, 'M', 'ә'), + (0x1E04C, 'M', 'і'), + (0x1E04D, 'M', 'ј'), + (0x1E04E, 'M', 'ө'), + (0x1E04F, 'M', 'ү'), + (0x1E050, 'M', 'ӏ'), + (0x1E051, 'M', 'а'), + (0x1E052, 'M', 'б'), + (0x1E053, 'M', 'в'), + (0x1E054, 'M', 'г'), + (0x1E055, 'M', 'д'), + (0x1E056, 'M', 'е'), + (0x1E057, 'M', 'ж'), + (0x1E058, 'M', 'з'), + (0x1E059, 'M', 'и'), + (0x1E05A, 'M', 'к'), + (0x1E05B, 'M', 'л'), + (0x1E05C, 'M', 'о'), + (0x1E05D, 'M', 'п'), + (0x1E05E, 'M', 'с'), + (0x1E05F, 'M', 'у'), + (0x1E060, 'M', 'ф'), + (0x1E061, 'M', 'х'), + (0x1E062, 'M', 'ц'), + (0x1E063, 'M', 'ч'), + (0x1E064, 'M', 'ш'), + (0x1E065, 'M', 'ъ'), + (0x1E066, 'M', 'ы'), + (0x1E067, 'M', 'ґ'), + (0x1E068, 'M', 'і'), + (0x1E069, 'M', 'ѕ'), + (0x1E06A, 'M', 'џ'), + (0x1E06B, 'M', 'ҫ'), + (0x1E06C, 'M', 'ꙑ'), + (0x1E06D, 'M', 'ұ'), + (0x1E06E, 'X'), + (0x1E08F, 'V'), + (0x1E090, 'X'), + (0x1E100, 'V'), + (0x1E12D, 'X'), + (0x1E130, 'V'), + (0x1E13E, 'X'), + (0x1E140, 'V'), + (0x1E14A, 'X'), + (0x1E14E, 'V'), + (0x1E150, 'X'), + (0x1E290, 'V'), + (0x1E2AF, 'X'), + (0x1E2C0, 'V'), + (0x1E2FA, 'X'), + (0x1E2FF, 'V'), + (0x1E300, 'X'), + (0x1E4D0, 'V'), + (0x1E4FA, 'X'), + (0x1E7E0, 'V'), + (0x1E7E7, 'X'), + (0x1E7E8, 'V'), + (0x1E7EC, 'X'), + (0x1E7ED, 'V'), + (0x1E7EF, 'X'), + (0x1E7F0, 'V'), + (0x1E7FF, 'X'), + (0x1E800, 'V'), + (0x1E8C5, 'X'), + (0x1E8C7, 'V'), + (0x1E8D7, 'X'), + (0x1E900, 'M', '𞤢'), + (0x1E901, 'M', '𞤣'), + (0x1E902, 'M', '𞤤'), + (0x1E903, 'M', '𞤥'), + (0x1E904, 'M', '𞤦'), + (0x1E905, 'M', '𞤧'), + (0x1E906, 'M', '𞤨'), + (0x1E907, 'M', '𞤩'), + (0x1E908, 'M', '𞤪'), + (0x1E909, 'M', '𞤫'), + ] + +def _seg_72() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1E90A, 'M', '𞤬'), + (0x1E90B, 'M', '𞤭'), + (0x1E90C, 'M', '𞤮'), + (0x1E90D, 'M', '𞤯'), + (0x1E90E, 'M', '𞤰'), + (0x1E90F, 'M', '𞤱'), + (0x1E910, 'M', '𞤲'), + (0x1E911, 'M', '𞤳'), + (0x1E912, 'M', '𞤴'), + (0x1E913, 'M', '𞤵'), + (0x1E914, 'M', '𞤶'), + (0x1E915, 'M', '𞤷'), + (0x1E916, 'M', '𞤸'), + (0x1E917, 'M', '𞤹'), + (0x1E918, 'M', '𞤺'), + (0x1E919, 'M', '𞤻'), + (0x1E91A, 'M', '𞤼'), + (0x1E91B, 'M', '𞤽'), + (0x1E91C, 'M', '𞤾'), + (0x1E91D, 'M', '𞤿'), + (0x1E91E, 'M', '𞥀'), + (0x1E91F, 'M', '𞥁'), + (0x1E920, 'M', '𞥂'), + (0x1E921, 'M', '𞥃'), + (0x1E922, 'V'), + (0x1E94C, 'X'), + (0x1E950, 'V'), + (0x1E95A, 'X'), + (0x1E95E, 'V'), + (0x1E960, 'X'), + (0x1EC71, 'V'), + (0x1ECB5, 'X'), + (0x1ED01, 'V'), + (0x1ED3E, 'X'), + (0x1EE00, 'M', 'ا'), + (0x1EE01, 'M', 'ب'), + (0x1EE02, 'M', 'ج'), + (0x1EE03, 'M', 'د'), + (0x1EE04, 'X'), + (0x1EE05, 'M', 'و'), + (0x1EE06, 'M', 'ز'), + (0x1EE07, 'M', 'ح'), + (0x1EE08, 'M', 'ط'), + (0x1EE09, 'M', 'ي'), + (0x1EE0A, 'M', 'ك'), + (0x1EE0B, 'M', 'ل'), + (0x1EE0C, 'M', 'م'), + (0x1EE0D, 'M', 'ن'), + (0x1EE0E, 'M', 'س'), + (0x1EE0F, 'M', 'ع'), + (0x1EE10, 'M', 'ف'), + (0x1EE11, 'M', 'ص'), + (0x1EE12, 'M', 'ق'), + (0x1EE13, 'M', 'ر'), + (0x1EE14, 'M', 'ش'), + (0x1EE15, 'M', 'ت'), + (0x1EE16, 'M', 'ث'), + (0x1EE17, 'M', 'خ'), + (0x1EE18, 'M', 'ذ'), + (0x1EE19, 'M', 'ض'), + (0x1EE1A, 'M', 'ظ'), + (0x1EE1B, 'M', 'غ'), + (0x1EE1C, 'M', 'ٮ'), + (0x1EE1D, 'M', 'ں'), + (0x1EE1E, 'M', 'ڡ'), + (0x1EE1F, 'M', 'ٯ'), + (0x1EE20, 'X'), + (0x1EE21, 'M', 'ب'), + (0x1EE22, 'M', 'ج'), + (0x1EE23, 'X'), + (0x1EE24, 'M', 'ه'), + (0x1EE25, 'X'), + (0x1EE27, 'M', 'ح'), + (0x1EE28, 'X'), + (0x1EE29, 'M', 'ي'), + (0x1EE2A, 'M', 'ك'), + (0x1EE2B, 'M', 'ل'), + (0x1EE2C, 'M', 'م'), + (0x1EE2D, 'M', 'ن'), + (0x1EE2E, 'M', 'س'), + (0x1EE2F, 'M', 'ع'), + (0x1EE30, 'M', 'ف'), + (0x1EE31, 'M', 'ص'), + (0x1EE32, 'M', 'ق'), + (0x1EE33, 'X'), + (0x1EE34, 'M', 'ش'), + (0x1EE35, 'M', 'ت'), + (0x1EE36, 'M', 'ث'), + (0x1EE37, 'M', 'خ'), + (0x1EE38, 'X'), + (0x1EE39, 'M', 'ض'), + (0x1EE3A, 'X'), + (0x1EE3B, 'M', 'غ'), + (0x1EE3C, 'X'), + (0x1EE42, 'M', 'ج'), + (0x1EE43, 'X'), + (0x1EE47, 'M', 'ح'), + (0x1EE48, 'X'), + (0x1EE49, 'M', 'ي'), + (0x1EE4A, 'X'), + ] + +def _seg_73() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1EE4B, 'M', 'ل'), + (0x1EE4C, 'X'), + (0x1EE4D, 'M', 'ن'), + (0x1EE4E, 'M', 'س'), + (0x1EE4F, 'M', 'ع'), + (0x1EE50, 'X'), + (0x1EE51, 'M', 'ص'), + (0x1EE52, 'M', 'ق'), + (0x1EE53, 'X'), + (0x1EE54, 'M', 'ش'), + (0x1EE55, 'X'), + (0x1EE57, 'M', 'خ'), + (0x1EE58, 'X'), + (0x1EE59, 'M', 'ض'), + (0x1EE5A, 'X'), + (0x1EE5B, 'M', 'غ'), + (0x1EE5C, 'X'), + (0x1EE5D, 'M', 'ں'), + (0x1EE5E, 'X'), + (0x1EE5F, 'M', 'ٯ'), + (0x1EE60, 'X'), + (0x1EE61, 'M', 'ب'), + (0x1EE62, 'M', 'ج'), + (0x1EE63, 'X'), + (0x1EE64, 'M', 'ه'), + (0x1EE65, 'X'), + (0x1EE67, 'M', 'ح'), + (0x1EE68, 'M', 'ط'), + (0x1EE69, 'M', 'ي'), + (0x1EE6A, 'M', 'ك'), + (0x1EE6B, 'X'), + (0x1EE6C, 'M', 'م'), + (0x1EE6D, 'M', 'ن'), + (0x1EE6E, 'M', 'س'), + (0x1EE6F, 'M', 'ع'), + (0x1EE70, 'M', 'ف'), + (0x1EE71, 'M', 'ص'), + (0x1EE72, 'M', 'ق'), + (0x1EE73, 'X'), + (0x1EE74, 'M', 'ش'), + (0x1EE75, 'M', 'ت'), + (0x1EE76, 'M', 'ث'), + (0x1EE77, 'M', 'خ'), + (0x1EE78, 'X'), + (0x1EE79, 'M', 'ض'), + (0x1EE7A, 'M', 'ظ'), + (0x1EE7B, 'M', 'غ'), + (0x1EE7C, 'M', 'ٮ'), + (0x1EE7D, 'X'), + (0x1EE7E, 'M', 'ڡ'), + (0x1EE7F, 'X'), + (0x1EE80, 'M', 'ا'), + (0x1EE81, 'M', 'ب'), + (0x1EE82, 'M', 'ج'), + (0x1EE83, 'M', 'د'), + (0x1EE84, 'M', 'ه'), + (0x1EE85, 'M', 'و'), + (0x1EE86, 'M', 'ز'), + (0x1EE87, 'M', 'ح'), + (0x1EE88, 'M', 'ط'), + (0x1EE89, 'M', 'ي'), + (0x1EE8A, 'X'), + (0x1EE8B, 'M', 'ل'), + (0x1EE8C, 'M', 'م'), + (0x1EE8D, 'M', 'ن'), + (0x1EE8E, 'M', 'س'), + (0x1EE8F, 'M', 'ع'), + (0x1EE90, 'M', 'ف'), + (0x1EE91, 'M', 'ص'), + (0x1EE92, 'M', 'ق'), + (0x1EE93, 'M', 'ر'), + (0x1EE94, 'M', 'ش'), + (0x1EE95, 'M', 'ت'), + (0x1EE96, 'M', 'ث'), + (0x1EE97, 'M', 'خ'), + (0x1EE98, 'M', 'ذ'), + (0x1EE99, 'M', 'ض'), + (0x1EE9A, 'M', 'ظ'), + (0x1EE9B, 'M', 'غ'), + (0x1EE9C, 'X'), + (0x1EEA1, 'M', 'ب'), + (0x1EEA2, 'M', 'ج'), + (0x1EEA3, 'M', 'د'), + (0x1EEA4, 'X'), + (0x1EEA5, 'M', 'و'), + (0x1EEA6, 'M', 'ز'), + (0x1EEA7, 'M', 'ح'), + (0x1EEA8, 'M', 'ط'), + (0x1EEA9, 'M', 'ي'), + (0x1EEAA, 'X'), + (0x1EEAB, 'M', 'ل'), + (0x1EEAC, 'M', 'م'), + (0x1EEAD, 'M', 'ن'), + (0x1EEAE, 'M', 'س'), + (0x1EEAF, 'M', 'ع'), + (0x1EEB0, 'M', 'ف'), + (0x1EEB1, 'M', 'ص'), + (0x1EEB2, 'M', 'ق'), + (0x1EEB3, 'M', 'ر'), + (0x1EEB4, 'M', 'ش'), + ] + +def _seg_74() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1EEB5, 'M', 'ت'), + (0x1EEB6, 'M', 'ث'), + (0x1EEB7, 'M', 'خ'), + (0x1EEB8, 'M', 'ذ'), + (0x1EEB9, 'M', 'ض'), + (0x1EEBA, 'M', 'ظ'), + (0x1EEBB, 'M', 'غ'), + (0x1EEBC, 'X'), + (0x1EEF0, 'V'), + (0x1EEF2, 'X'), + (0x1F000, 'V'), + (0x1F02C, 'X'), + (0x1F030, 'V'), + (0x1F094, 'X'), + (0x1F0A0, 'V'), + (0x1F0AF, 'X'), + (0x1F0B1, 'V'), + (0x1F0C0, 'X'), + (0x1F0C1, 'V'), + (0x1F0D0, 'X'), + (0x1F0D1, 'V'), + (0x1F0F6, 'X'), + (0x1F101, '3', '0,'), + (0x1F102, '3', '1,'), + (0x1F103, '3', '2,'), + (0x1F104, '3', '3,'), + (0x1F105, '3', '4,'), + (0x1F106, '3', '5,'), + (0x1F107, '3', '6,'), + (0x1F108, '3', '7,'), + (0x1F109, '3', '8,'), + (0x1F10A, '3', '9,'), + (0x1F10B, 'V'), + (0x1F110, '3', '(a)'), + (0x1F111, '3', '(b)'), + (0x1F112, '3', '(c)'), + (0x1F113, '3', '(d)'), + (0x1F114, '3', '(e)'), + (0x1F115, '3', '(f)'), + (0x1F116, '3', '(g)'), + (0x1F117, '3', '(h)'), + (0x1F118, '3', '(i)'), + (0x1F119, '3', '(j)'), + (0x1F11A, '3', '(k)'), + (0x1F11B, '3', '(l)'), + (0x1F11C, '3', '(m)'), + (0x1F11D, '3', '(n)'), + (0x1F11E, '3', '(o)'), + (0x1F11F, '3', '(p)'), + (0x1F120, '3', '(q)'), + (0x1F121, '3', '(r)'), + (0x1F122, '3', '(s)'), + (0x1F123, '3', '(t)'), + (0x1F124, '3', '(u)'), + (0x1F125, '3', '(v)'), + (0x1F126, '3', '(w)'), + (0x1F127, '3', '(x)'), + (0x1F128, '3', '(y)'), + (0x1F129, '3', '(z)'), + (0x1F12A, 'M', '〔s〕'), + (0x1F12B, 'M', 'c'), + (0x1F12C, 'M', 'r'), + (0x1F12D, 'M', 'cd'), + (0x1F12E, 'M', 'wz'), + (0x1F12F, 'V'), + (0x1F130, 'M', 'a'), + (0x1F131, 'M', 'b'), + (0x1F132, 'M', 'c'), + (0x1F133, 'M', 'd'), + (0x1F134, 'M', 'e'), + (0x1F135, 'M', 'f'), + (0x1F136, 'M', 'g'), + (0x1F137, 'M', 'h'), + (0x1F138, 'M', 'i'), + (0x1F139, 'M', 'j'), + (0x1F13A, 'M', 'k'), + (0x1F13B, 'M', 'l'), + (0x1F13C, 'M', 'm'), + (0x1F13D, 'M', 'n'), + (0x1F13E, 'M', 'o'), + (0x1F13F, 'M', 'p'), + (0x1F140, 'M', 'q'), + (0x1F141, 'M', 'r'), + (0x1F142, 'M', 's'), + (0x1F143, 'M', 't'), + (0x1F144, 'M', 'u'), + (0x1F145, 'M', 'v'), + (0x1F146, 'M', 'w'), + (0x1F147, 'M', 'x'), + (0x1F148, 'M', 'y'), + (0x1F149, 'M', 'z'), + (0x1F14A, 'M', 'hv'), + (0x1F14B, 'M', 'mv'), + (0x1F14C, 'M', 'sd'), + (0x1F14D, 'M', 'ss'), + (0x1F14E, 'M', 'ppv'), + (0x1F14F, 'M', 'wc'), + (0x1F150, 'V'), + (0x1F16A, 'M', 'mc'), + (0x1F16B, 'M', 'md'), + ] + +def _seg_75() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1F16C, 'M', 'mr'), + (0x1F16D, 'V'), + (0x1F190, 'M', 'dj'), + (0x1F191, 'V'), + (0x1F1AE, 'X'), + (0x1F1E6, 'V'), + (0x1F200, 'M', 'ほか'), + (0x1F201, 'M', 'ココ'), + (0x1F202, 'M', 'サ'), + (0x1F203, 'X'), + (0x1F210, 'M', '手'), + (0x1F211, 'M', '字'), + (0x1F212, 'M', '双'), + (0x1F213, 'M', 'デ'), + (0x1F214, 'M', '二'), + (0x1F215, 'M', '多'), + (0x1F216, 'M', '解'), + (0x1F217, 'M', '天'), + (0x1F218, 'M', '交'), + (0x1F219, 'M', '映'), + (0x1F21A, 'M', '無'), + (0x1F21B, 'M', '料'), + (0x1F21C, 'M', '前'), + (0x1F21D, 'M', '後'), + (0x1F21E, 'M', '再'), + (0x1F21F, 'M', '新'), + (0x1F220, 'M', '初'), + (0x1F221, 'M', '終'), + (0x1F222, 'M', '生'), + (0x1F223, 'M', '販'), + (0x1F224, 'M', '声'), + (0x1F225, 'M', '吹'), + (0x1F226, 'M', '演'), + (0x1F227, 'M', '投'), + (0x1F228, 'M', '捕'), + (0x1F229, 'M', '一'), + (0x1F22A, 'M', '三'), + (0x1F22B, 'M', '遊'), + (0x1F22C, 'M', '左'), + (0x1F22D, 'M', '中'), + (0x1F22E, 'M', '右'), + (0x1F22F, 'M', '指'), + (0x1F230, 'M', '走'), + (0x1F231, 'M', '打'), + (0x1F232, 'M', '禁'), + (0x1F233, 'M', '空'), + (0x1F234, 'M', '合'), + (0x1F235, 'M', '満'), + (0x1F236, 'M', '有'), + (0x1F237, 'M', '月'), + (0x1F238, 'M', '申'), + (0x1F239, 'M', '割'), + (0x1F23A, 'M', '営'), + (0x1F23B, 'M', '配'), + (0x1F23C, 'X'), + (0x1F240, 'M', '〔本〕'), + (0x1F241, 'M', '〔三〕'), + (0x1F242, 'M', '〔二〕'), + (0x1F243, 'M', '〔安〕'), + (0x1F244, 'M', '〔点〕'), + (0x1F245, 'M', '〔打〕'), + (0x1F246, 'M', '〔盗〕'), + (0x1F247, 'M', '〔勝〕'), + (0x1F248, 'M', '〔敗〕'), + (0x1F249, 'X'), + (0x1F250, 'M', '得'), + (0x1F251, 'M', '可'), + (0x1F252, 'X'), + (0x1F260, 'V'), + (0x1F266, 'X'), + (0x1F300, 'V'), + (0x1F6D8, 'X'), + (0x1F6DC, 'V'), + (0x1F6ED, 'X'), + (0x1F6F0, 'V'), + (0x1F6FD, 'X'), + (0x1F700, 'V'), + (0x1F777, 'X'), + (0x1F77B, 'V'), + (0x1F7DA, 'X'), + (0x1F7E0, 'V'), + (0x1F7EC, 'X'), + (0x1F7F0, 'V'), + (0x1F7F1, 'X'), + (0x1F800, 'V'), + (0x1F80C, 'X'), + (0x1F810, 'V'), + (0x1F848, 'X'), + (0x1F850, 'V'), + (0x1F85A, 'X'), + (0x1F860, 'V'), + (0x1F888, 'X'), + (0x1F890, 'V'), + (0x1F8AE, 'X'), + (0x1F8B0, 'V'), + (0x1F8B2, 'X'), + (0x1F900, 'V'), + (0x1FA54, 'X'), + (0x1FA60, 'V'), + (0x1FA6E, 'X'), + ] + +def _seg_76() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1FA70, 'V'), + (0x1FA7D, 'X'), + (0x1FA80, 'V'), + (0x1FA89, 'X'), + (0x1FA90, 'V'), + (0x1FABE, 'X'), + (0x1FABF, 'V'), + (0x1FAC6, 'X'), + (0x1FACE, 'V'), + (0x1FADC, 'X'), + (0x1FAE0, 'V'), + (0x1FAE9, 'X'), + (0x1FAF0, 'V'), + (0x1FAF9, 'X'), + (0x1FB00, 'V'), + (0x1FB93, 'X'), + (0x1FB94, 'V'), + (0x1FBCB, 'X'), + (0x1FBF0, 'M', '0'), + (0x1FBF1, 'M', '1'), + (0x1FBF2, 'M', '2'), + (0x1FBF3, 'M', '3'), + (0x1FBF4, 'M', '4'), + (0x1FBF5, 'M', '5'), + (0x1FBF6, 'M', '6'), + (0x1FBF7, 'M', '7'), + (0x1FBF8, 'M', '8'), + (0x1FBF9, 'M', '9'), + (0x1FBFA, 'X'), + (0x20000, 'V'), + (0x2A6E0, 'X'), + (0x2A700, 'V'), + (0x2B73A, 'X'), + (0x2B740, 'V'), + (0x2B81E, 'X'), + (0x2B820, 'V'), + (0x2CEA2, 'X'), + (0x2CEB0, 'V'), + (0x2EBE1, 'X'), + (0x2F800, 'M', '丽'), + (0x2F801, 'M', '丸'), + (0x2F802, 'M', '乁'), + (0x2F803, 'M', '𠄢'), + (0x2F804, 'M', '你'), + (0x2F805, 'M', '侮'), + (0x2F806, 'M', '侻'), + (0x2F807, 'M', '倂'), + (0x2F808, 'M', '偺'), + (0x2F809, 'M', '備'), + (0x2F80A, 'M', '僧'), + (0x2F80B, 'M', '像'), + (0x2F80C, 'M', '㒞'), + (0x2F80D, 'M', '𠘺'), + (0x2F80E, 'M', '免'), + (0x2F80F, 'M', '兔'), + (0x2F810, 'M', '兤'), + (0x2F811, 'M', '具'), + (0x2F812, 'M', '𠔜'), + (0x2F813, 'M', '㒹'), + (0x2F814, 'M', '內'), + (0x2F815, 'M', '再'), + (0x2F816, 'M', '𠕋'), + (0x2F817, 'M', '冗'), + (0x2F818, 'M', '冤'), + (0x2F819, 'M', '仌'), + (0x2F81A, 'M', '冬'), + (0x2F81B, 'M', '况'), + (0x2F81C, 'M', '𩇟'), + (0x2F81D, 'M', '凵'), + (0x2F81E, 'M', '刃'), + (0x2F81F, 'M', '㓟'), + (0x2F820, 'M', '刻'), + (0x2F821, 'M', '剆'), + (0x2F822, 'M', '割'), + (0x2F823, 'M', '剷'), + (0x2F824, 'M', '㔕'), + (0x2F825, 'M', '勇'), + (0x2F826, 'M', '勉'), + (0x2F827, 'M', '勤'), + (0x2F828, 'M', '勺'), + (0x2F829, 'M', '包'), + (0x2F82A, 'M', '匆'), + (0x2F82B, 'M', '北'), + (0x2F82C, 'M', '卉'), + (0x2F82D, 'M', '卑'), + (0x2F82E, 'M', '博'), + (0x2F82F, 'M', '即'), + (0x2F830, 'M', '卽'), + (0x2F831, 'M', '卿'), + (0x2F834, 'M', '𠨬'), + (0x2F835, 'M', '灰'), + (0x2F836, 'M', '及'), + (0x2F837, 'M', '叟'), + (0x2F838, 'M', '𠭣'), + (0x2F839, 'M', '叫'), + (0x2F83A, 'M', '叱'), + (0x2F83B, 'M', '吆'), + (0x2F83C, 'M', '咞'), + (0x2F83D, 'M', '吸'), + (0x2F83E, 'M', '呈'), + ] + +def _seg_77() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x2F83F, 'M', '周'), + (0x2F840, 'M', '咢'), + (0x2F841, 'M', '哶'), + (0x2F842, 'M', '唐'), + (0x2F843, 'M', '啓'), + (0x2F844, 'M', '啣'), + (0x2F845, 'M', '善'), + (0x2F847, 'M', '喙'), + (0x2F848, 'M', '喫'), + (0x2F849, 'M', '喳'), + (0x2F84A, 'M', '嗂'), + (0x2F84B, 'M', '圖'), + (0x2F84C, 'M', '嘆'), + (0x2F84D, 'M', '圗'), + (0x2F84E, 'M', '噑'), + (0x2F84F, 'M', '噴'), + (0x2F850, 'M', '切'), + (0x2F851, 'M', '壮'), + (0x2F852, 'M', '城'), + (0x2F853, 'M', '埴'), + (0x2F854, 'M', '堍'), + (0x2F855, 'M', '型'), + (0x2F856, 'M', '堲'), + (0x2F857, 'M', '報'), + (0x2F858, 'M', '墬'), + (0x2F859, 'M', '𡓤'), + (0x2F85A, 'M', '売'), + (0x2F85B, 'M', '壷'), + (0x2F85C, 'M', '夆'), + (0x2F85D, 'M', '多'), + (0x2F85E, 'M', '夢'), + (0x2F85F, 'M', '奢'), + (0x2F860, 'M', '𡚨'), + (0x2F861, 'M', '𡛪'), + (0x2F862, 'M', '姬'), + (0x2F863, 'M', '娛'), + (0x2F864, 'M', '娧'), + (0x2F865, 'M', '姘'), + (0x2F866, 'M', '婦'), + (0x2F867, 'M', '㛮'), + (0x2F868, 'X'), + (0x2F869, 'M', '嬈'), + (0x2F86A, 'M', '嬾'), + (0x2F86C, 'M', '𡧈'), + (0x2F86D, 'M', '寃'), + (0x2F86E, 'M', '寘'), + (0x2F86F, 'M', '寧'), + (0x2F870, 'M', '寳'), + (0x2F871, 'M', '𡬘'), + (0x2F872, 'M', '寿'), + (0x2F873, 'M', '将'), + (0x2F874, 'X'), + (0x2F875, 'M', '尢'), + (0x2F876, 'M', '㞁'), + (0x2F877, 'M', '屠'), + (0x2F878, 'M', '屮'), + (0x2F879, 'M', '峀'), + (0x2F87A, 'M', '岍'), + (0x2F87B, 'M', '𡷤'), + (0x2F87C, 'M', '嵃'), + (0x2F87D, 'M', '𡷦'), + (0x2F87E, 'M', '嵮'), + (0x2F87F, 'M', '嵫'), + (0x2F880, 'M', '嵼'), + (0x2F881, 'M', '巡'), + (0x2F882, 'M', '巢'), + (0x2F883, 'M', '㠯'), + (0x2F884, 'M', '巽'), + (0x2F885, 'M', '帨'), + (0x2F886, 'M', '帽'), + (0x2F887, 'M', '幩'), + (0x2F888, 'M', '㡢'), + (0x2F889, 'M', '𢆃'), + (0x2F88A, 'M', '㡼'), + (0x2F88B, 'M', '庰'), + (0x2F88C, 'M', '庳'), + (0x2F88D, 'M', '庶'), + (0x2F88E, 'M', '廊'), + (0x2F88F, 'M', '𪎒'), + (0x2F890, 'M', '廾'), + (0x2F891, 'M', '𢌱'), + (0x2F893, 'M', '舁'), + (0x2F894, 'M', '弢'), + (0x2F896, 'M', '㣇'), + (0x2F897, 'M', '𣊸'), + (0x2F898, 'M', '𦇚'), + (0x2F899, 'M', '形'), + (0x2F89A, 'M', '彫'), + (0x2F89B, 'M', '㣣'), + (0x2F89C, 'M', '徚'), + (0x2F89D, 'M', '忍'), + (0x2F89E, 'M', '志'), + (0x2F89F, 'M', '忹'), + (0x2F8A0, 'M', '悁'), + (0x2F8A1, 'M', '㤺'), + (0x2F8A2, 'M', '㤜'), + (0x2F8A3, 'M', '悔'), + (0x2F8A4, 'M', '𢛔'), + (0x2F8A5, 'M', '惇'), + (0x2F8A6, 'M', '慈'), + ] + +def _seg_78() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x2F8A7, 'M', '慌'), + (0x2F8A8, 'M', '慎'), + (0x2F8A9, 'M', '慌'), + (0x2F8AA, 'M', '慺'), + (0x2F8AB, 'M', '憎'), + (0x2F8AC, 'M', '憲'), + (0x2F8AD, 'M', '憤'), + (0x2F8AE, 'M', '憯'), + (0x2F8AF, 'M', '懞'), + (0x2F8B0, 'M', '懲'), + (0x2F8B1, 'M', '懶'), + (0x2F8B2, 'M', '成'), + (0x2F8B3, 'M', '戛'), + (0x2F8B4, 'M', '扝'), + (0x2F8B5, 'M', '抱'), + (0x2F8B6, 'M', '拔'), + (0x2F8B7, 'M', '捐'), + (0x2F8B8, 'M', '𢬌'), + (0x2F8B9, 'M', '挽'), + (0x2F8BA, 'M', '拼'), + (0x2F8BB, 'M', '捨'), + (0x2F8BC, 'M', '掃'), + (0x2F8BD, 'M', '揤'), + (0x2F8BE, 'M', '𢯱'), + (0x2F8BF, 'M', '搢'), + (0x2F8C0, 'M', '揅'), + (0x2F8C1, 'M', '掩'), + (0x2F8C2, 'M', '㨮'), + (0x2F8C3, 'M', '摩'), + (0x2F8C4, 'M', '摾'), + (0x2F8C5, 'M', '撝'), + (0x2F8C6, 'M', '摷'), + (0x2F8C7, 'M', '㩬'), + (0x2F8C8, 'M', '敏'), + (0x2F8C9, 'M', '敬'), + (0x2F8CA, 'M', '𣀊'), + (0x2F8CB, 'M', '旣'), + (0x2F8CC, 'M', '書'), + (0x2F8CD, 'M', '晉'), + (0x2F8CE, 'M', '㬙'), + (0x2F8CF, 'M', '暑'), + (0x2F8D0, 'M', '㬈'), + (0x2F8D1, 'M', '㫤'), + (0x2F8D2, 'M', '冒'), + (0x2F8D3, 'M', '冕'), + (0x2F8D4, 'M', '最'), + (0x2F8D5, 'M', '暜'), + (0x2F8D6, 'M', '肭'), + (0x2F8D7, 'M', '䏙'), + (0x2F8D8, 'M', '朗'), + (0x2F8D9, 'M', '望'), + (0x2F8DA, 'M', '朡'), + (0x2F8DB, 'M', '杞'), + (0x2F8DC, 'M', '杓'), + (0x2F8DD, 'M', '𣏃'), + (0x2F8DE, 'M', '㭉'), + (0x2F8DF, 'M', '柺'), + (0x2F8E0, 'M', '枅'), + (0x2F8E1, 'M', '桒'), + (0x2F8E2, 'M', '梅'), + (0x2F8E3, 'M', '𣑭'), + (0x2F8E4, 'M', '梎'), + (0x2F8E5, 'M', '栟'), + (0x2F8E6, 'M', '椔'), + (0x2F8E7, 'M', '㮝'), + (0x2F8E8, 'M', '楂'), + (0x2F8E9, 'M', '榣'), + (0x2F8EA, 'M', '槪'), + (0x2F8EB, 'M', '檨'), + (0x2F8EC, 'M', '𣚣'), + (0x2F8ED, 'M', '櫛'), + (0x2F8EE, 'M', '㰘'), + (0x2F8EF, 'M', '次'), + (0x2F8F0, 'M', '𣢧'), + (0x2F8F1, 'M', '歔'), + (0x2F8F2, 'M', '㱎'), + (0x2F8F3, 'M', '歲'), + (0x2F8F4, 'M', '殟'), + (0x2F8F5, 'M', '殺'), + (0x2F8F6, 'M', '殻'), + (0x2F8F7, 'M', '𣪍'), + (0x2F8F8, 'M', '𡴋'), + (0x2F8F9, 'M', '𣫺'), + (0x2F8FA, 'M', '汎'), + (0x2F8FB, 'M', '𣲼'), + (0x2F8FC, 'M', '沿'), + (0x2F8FD, 'M', '泍'), + (0x2F8FE, 'M', '汧'), + (0x2F8FF, 'M', '洖'), + (0x2F900, 'M', '派'), + (0x2F901, 'M', '海'), + (0x2F902, 'M', '流'), + (0x2F903, 'M', '浩'), + (0x2F904, 'M', '浸'), + (0x2F905, 'M', '涅'), + (0x2F906, 'M', '𣴞'), + (0x2F907, 'M', '洴'), + (0x2F908, 'M', '港'), + (0x2F909, 'M', '湮'), + (0x2F90A, 'M', '㴳'), + ] + +def _seg_79() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x2F90B, 'M', '滋'), + (0x2F90C, 'M', '滇'), + (0x2F90D, 'M', '𣻑'), + (0x2F90E, 'M', '淹'), + (0x2F90F, 'M', '潮'), + (0x2F910, 'M', '𣽞'), + (0x2F911, 'M', '𣾎'), + (0x2F912, 'M', '濆'), + (0x2F913, 'M', '瀹'), + (0x2F914, 'M', '瀞'), + (0x2F915, 'M', '瀛'), + (0x2F916, 'M', '㶖'), + (0x2F917, 'M', '灊'), + (0x2F918, 'M', '災'), + (0x2F919, 'M', '灷'), + (0x2F91A, 'M', '炭'), + (0x2F91B, 'M', '𠔥'), + (0x2F91C, 'M', '煅'), + (0x2F91D, 'M', '𤉣'), + (0x2F91E, 'M', '熜'), + (0x2F91F, 'X'), + (0x2F920, 'M', '爨'), + (0x2F921, 'M', '爵'), + (0x2F922, 'M', '牐'), + (0x2F923, 'M', '𤘈'), + (0x2F924, 'M', '犀'), + (0x2F925, 'M', '犕'), + (0x2F926, 'M', '𤜵'), + (0x2F927, 'M', '𤠔'), + (0x2F928, 'M', '獺'), + (0x2F929, 'M', '王'), + (0x2F92A, 'M', '㺬'), + (0x2F92B, 'M', '玥'), + (0x2F92C, 'M', '㺸'), + (0x2F92E, 'M', '瑇'), + (0x2F92F, 'M', '瑜'), + (0x2F930, 'M', '瑱'), + (0x2F931, 'M', '璅'), + (0x2F932, 'M', '瓊'), + (0x2F933, 'M', '㼛'), + (0x2F934, 'M', '甤'), + (0x2F935, 'M', '𤰶'), + (0x2F936, 'M', '甾'), + (0x2F937, 'M', '𤲒'), + (0x2F938, 'M', '異'), + (0x2F939, 'M', '𢆟'), + (0x2F93A, 'M', '瘐'), + (0x2F93B, 'M', '𤾡'), + (0x2F93C, 'M', '𤾸'), + (0x2F93D, 'M', '𥁄'), + (0x2F93E, 'M', '㿼'), + (0x2F93F, 'M', '䀈'), + (0x2F940, 'M', '直'), + (0x2F941, 'M', '𥃳'), + (0x2F942, 'M', '𥃲'), + (0x2F943, 'M', '𥄙'), + (0x2F944, 'M', '𥄳'), + (0x2F945, 'M', '眞'), + (0x2F946, 'M', '真'), + (0x2F948, 'M', '睊'), + (0x2F949, 'M', '䀹'), + (0x2F94A, 'M', '瞋'), + (0x2F94B, 'M', '䁆'), + (0x2F94C, 'M', '䂖'), + (0x2F94D, 'M', '𥐝'), + (0x2F94E, 'M', '硎'), + (0x2F94F, 'M', '碌'), + (0x2F950, 'M', '磌'), + (0x2F951, 'M', '䃣'), + (0x2F952, 'M', '𥘦'), + (0x2F953, 'M', '祖'), + (0x2F954, 'M', '𥚚'), + (0x2F955, 'M', '𥛅'), + (0x2F956, 'M', '福'), + (0x2F957, 'M', '秫'), + (0x2F958, 'M', '䄯'), + (0x2F959, 'M', '穀'), + (0x2F95A, 'M', '穊'), + (0x2F95B, 'M', '穏'), + (0x2F95C, 'M', '𥥼'), + (0x2F95D, 'M', '𥪧'), + (0x2F95F, 'X'), + (0x2F960, 'M', '䈂'), + (0x2F961, 'M', '𥮫'), + (0x2F962, 'M', '篆'), + (0x2F963, 'M', '築'), + (0x2F964, 'M', '䈧'), + (0x2F965, 'M', '𥲀'), + (0x2F966, 'M', '糒'), + (0x2F967, 'M', '䊠'), + (0x2F968, 'M', '糨'), + (0x2F969, 'M', '糣'), + (0x2F96A, 'M', '紀'), + (0x2F96B, 'M', '𥾆'), + (0x2F96C, 'M', '絣'), + (0x2F96D, 'M', '䌁'), + (0x2F96E, 'M', '緇'), + (0x2F96F, 'M', '縂'), + (0x2F970, 'M', '繅'), + (0x2F971, 'M', '䌴'), + ] + +def _seg_80() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x2F972, 'M', '𦈨'), + (0x2F973, 'M', '𦉇'), + (0x2F974, 'M', '䍙'), + (0x2F975, 'M', '𦋙'), + (0x2F976, 'M', '罺'), + (0x2F977, 'M', '𦌾'), + (0x2F978, 'M', '羕'), + (0x2F979, 'M', '翺'), + (0x2F97A, 'M', '者'), + (0x2F97B, 'M', '𦓚'), + (0x2F97C, 'M', '𦔣'), + (0x2F97D, 'M', '聠'), + (0x2F97E, 'M', '𦖨'), + (0x2F97F, 'M', '聰'), + (0x2F980, 'M', '𣍟'), + (0x2F981, 'M', '䏕'), + (0x2F982, 'M', '育'), + (0x2F983, 'M', '脃'), + (0x2F984, 'M', '䐋'), + (0x2F985, 'M', '脾'), + (0x2F986, 'M', '媵'), + (0x2F987, 'M', '𦞧'), + (0x2F988, 'M', '𦞵'), + (0x2F989, 'M', '𣎓'), + (0x2F98A, 'M', '𣎜'), + (0x2F98B, 'M', '舁'), + (0x2F98C, 'M', '舄'), + (0x2F98D, 'M', '辞'), + (0x2F98E, 'M', '䑫'), + (0x2F98F, 'M', '芑'), + (0x2F990, 'M', '芋'), + (0x2F991, 'M', '芝'), + (0x2F992, 'M', '劳'), + (0x2F993, 'M', '花'), + (0x2F994, 'M', '芳'), + (0x2F995, 'M', '芽'), + (0x2F996, 'M', '苦'), + (0x2F997, 'M', '𦬼'), + (0x2F998, 'M', '若'), + (0x2F999, 'M', '茝'), + (0x2F99A, 'M', '荣'), + (0x2F99B, 'M', '莭'), + (0x2F99C, 'M', '茣'), + (0x2F99D, 'M', '莽'), + (0x2F99E, 'M', '菧'), + (0x2F99F, 'M', '著'), + (0x2F9A0, 'M', '荓'), + (0x2F9A1, 'M', '菊'), + (0x2F9A2, 'M', '菌'), + (0x2F9A3, 'M', '菜'), + (0x2F9A4, 'M', '𦰶'), + (0x2F9A5, 'M', '𦵫'), + (0x2F9A6, 'M', '𦳕'), + (0x2F9A7, 'M', '䔫'), + (0x2F9A8, 'M', '蓱'), + (0x2F9A9, 'M', '蓳'), + (0x2F9AA, 'M', '蔖'), + (0x2F9AB, 'M', '𧏊'), + (0x2F9AC, 'M', '蕤'), + (0x2F9AD, 'M', '𦼬'), + (0x2F9AE, 'M', '䕝'), + (0x2F9AF, 'M', '䕡'), + (0x2F9B0, 'M', '𦾱'), + (0x2F9B1, 'M', '𧃒'), + (0x2F9B2, 'M', '䕫'), + (0x2F9B3, 'M', '虐'), + (0x2F9B4, 'M', '虜'), + (0x2F9B5, 'M', '虧'), + (0x2F9B6, 'M', '虩'), + (0x2F9B7, 'M', '蚩'), + (0x2F9B8, 'M', '蚈'), + (0x2F9B9, 'M', '蜎'), + (0x2F9BA, 'M', '蛢'), + (0x2F9BB, 'M', '蝹'), + (0x2F9BC, 'M', '蜨'), + (0x2F9BD, 'M', '蝫'), + (0x2F9BE, 'M', '螆'), + (0x2F9BF, 'X'), + (0x2F9C0, 'M', '蟡'), + (0x2F9C1, 'M', '蠁'), + (0x2F9C2, 'M', '䗹'), + (0x2F9C3, 'M', '衠'), + (0x2F9C4, 'M', '衣'), + (0x2F9C5, 'M', '𧙧'), + (0x2F9C6, 'M', '裗'), + (0x2F9C7, 'M', '裞'), + (0x2F9C8, 'M', '䘵'), + (0x2F9C9, 'M', '裺'), + (0x2F9CA, 'M', '㒻'), + (0x2F9CB, 'M', '𧢮'), + (0x2F9CC, 'M', '𧥦'), + (0x2F9CD, 'M', '䚾'), + (0x2F9CE, 'M', '䛇'), + (0x2F9CF, 'M', '誠'), + (0x2F9D0, 'M', '諭'), + (0x2F9D1, 'M', '變'), + (0x2F9D2, 'M', '豕'), + (0x2F9D3, 'M', '𧲨'), + (0x2F9D4, 'M', '貫'), + (0x2F9D5, 'M', '賁'), + ] + +def _seg_81() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x2F9D6, 'M', '贛'), + (0x2F9D7, 'M', '起'), + (0x2F9D8, 'M', '𧼯'), + (0x2F9D9, 'M', '𠠄'), + (0x2F9DA, 'M', '跋'), + (0x2F9DB, 'M', '趼'), + (0x2F9DC, 'M', '跰'), + (0x2F9DD, 'M', '𠣞'), + (0x2F9DE, 'M', '軔'), + (0x2F9DF, 'M', '輸'), + (0x2F9E0, 'M', '𨗒'), + (0x2F9E1, 'M', '𨗭'), + (0x2F9E2, 'M', '邔'), + (0x2F9E3, 'M', '郱'), + (0x2F9E4, 'M', '鄑'), + (0x2F9E5, 'M', '𨜮'), + (0x2F9E6, 'M', '鄛'), + (0x2F9E7, 'M', '鈸'), + (0x2F9E8, 'M', '鋗'), + (0x2F9E9, 'M', '鋘'), + (0x2F9EA, 'M', '鉼'), + (0x2F9EB, 'M', '鏹'), + (0x2F9EC, 'M', '鐕'), + (0x2F9ED, 'M', '𨯺'), + (0x2F9EE, 'M', '開'), + (0x2F9EF, 'M', '䦕'), + (0x2F9F0, 'M', '閷'), + (0x2F9F1, 'M', '𨵷'), + (0x2F9F2, 'M', '䧦'), + (0x2F9F3, 'M', '雃'), + (0x2F9F4, 'M', '嶲'), + (0x2F9F5, 'M', '霣'), + (0x2F9F6, 'M', '𩅅'), + (0x2F9F7, 'M', '𩈚'), + (0x2F9F8, 'M', '䩮'), + (0x2F9F9, 'M', '䩶'), + (0x2F9FA, 'M', '韠'), + (0x2F9FB, 'M', '𩐊'), + (0x2F9FC, 'M', '䪲'), + (0x2F9FD, 'M', '𩒖'), + (0x2F9FE, 'M', '頋'), + (0x2FA00, 'M', '頩'), + (0x2FA01, 'M', '𩖶'), + (0x2FA02, 'M', '飢'), + (0x2FA03, 'M', '䬳'), + (0x2FA04, 'M', '餩'), + (0x2FA05, 'M', '馧'), + (0x2FA06, 'M', '駂'), + (0x2FA07, 'M', '駾'), + (0x2FA08, 'M', '䯎'), + (0x2FA09, 'M', '𩬰'), + (0x2FA0A, 'M', '鬒'), + (0x2FA0B, 'M', '鱀'), + (0x2FA0C, 'M', '鳽'), + (0x2FA0D, 'M', '䳎'), + (0x2FA0E, 'M', '䳭'), + (0x2FA0F, 'M', '鵧'), + (0x2FA10, 'M', '𪃎'), + (0x2FA11, 'M', '䳸'), + (0x2FA12, 'M', '𪄅'), + (0x2FA13, 'M', '𪈎'), + (0x2FA14, 'M', '𪊑'), + (0x2FA15, 'M', '麻'), + (0x2FA16, 'M', '䵖'), + (0x2FA17, 'M', '黹'), + (0x2FA18, 'M', '黾'), + (0x2FA19, 'M', '鼅'), + (0x2FA1A, 'M', '鼏'), + (0x2FA1B, 'M', '鼖'), + (0x2FA1C, 'M', '鼻'), + (0x2FA1D, 'M', '𪘀'), + (0x2FA1E, 'X'), + (0x30000, 'V'), + (0x3134B, 'X'), + (0x31350, 'V'), + (0x323B0, 'X'), + (0xE0100, 'I'), + (0xE01F0, 'X'), + ] + +uts46data = tuple( + _seg_0() + + _seg_1() + + _seg_2() + + _seg_3() + + _seg_4() + + _seg_5() + + _seg_6() + + _seg_7() + + _seg_8() + + _seg_9() + + _seg_10() + + _seg_11() + + _seg_12() + + _seg_13() + + _seg_14() + + _seg_15() + + _seg_16() + + _seg_17() + + _seg_18() + + _seg_19() + + _seg_20() + + _seg_21() + + _seg_22() + + _seg_23() + + _seg_24() + + _seg_25() + + _seg_26() + + _seg_27() + + _seg_28() + + _seg_29() + + _seg_30() + + _seg_31() + + _seg_32() + + _seg_33() + + _seg_34() + + _seg_35() + + _seg_36() + + _seg_37() + + _seg_38() + + _seg_39() + + _seg_40() + + _seg_41() + + _seg_42() + + _seg_43() + + _seg_44() + + _seg_45() + + _seg_46() + + _seg_47() + + _seg_48() + + _seg_49() + + _seg_50() + + _seg_51() + + _seg_52() + + _seg_53() + + _seg_54() + + _seg_55() + + _seg_56() + + _seg_57() + + _seg_58() + + _seg_59() + + _seg_60() + + _seg_61() + + _seg_62() + + _seg_63() + + _seg_64() + + _seg_65() + + _seg_66() + + _seg_67() + + _seg_68() + + _seg_69() + + _seg_70() + + _seg_71() + + _seg_72() + + _seg_73() + + _seg_74() + + _seg_75() + + _seg_76() + + _seg_77() + + _seg_78() + + _seg_79() + + _seg_80() + + _seg_81() +) # type: Tuple[Union[Tuple[int, str], Tuple[int, str, str]], ...] diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/msgpack/__init__.py b/.venv/lib/python3.11/site-packages/pip/_vendor/msgpack/__init__.py new file mode 100644 index 0000000..1300b86 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/msgpack/__init__.py @@ -0,0 +1,57 @@ +# coding: utf-8 +from .exceptions import * +from .ext import ExtType, Timestamp + +import os +import sys + + +version = (1, 0, 5) +__version__ = "1.0.5" + + +if os.environ.get("MSGPACK_PUREPYTHON") or sys.version_info[0] == 2: + from .fallback import Packer, unpackb, Unpacker +else: + try: + from ._cmsgpack import Packer, unpackb, Unpacker + except ImportError: + from .fallback import Packer, unpackb, Unpacker + + +def pack(o, stream, **kwargs): + """ + Pack object `o` and write it to `stream` + + See :class:`Packer` for options. + """ + packer = Packer(**kwargs) + stream.write(packer.pack(o)) + + +def packb(o, **kwargs): + """ + Pack object `o` and return packed bytes + + See :class:`Packer` for options. + """ + return Packer(**kwargs).pack(o) + + +def unpack(stream, **kwargs): + """ + Unpack an object from `stream`. + + Raises `ExtraData` when `stream` contains extra bytes. + See :class:`Unpacker` for options. + """ + data = stream.read() + return unpackb(data, **kwargs) + + +# alias for compatibility to simplejson/marshal/pickle. +load = unpack +loads = unpackb + +dump = pack +dumps = packb diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1cdb23fd4db6ae27df8a428c554662dc58d65628 GIT binary patch literal 2121 zcmb6ZU2has^v=%5e$4Jdw;w{PWS|7H*6xV-Q9-H=1u-I4+6I}I-RaKVc3?g>_fA{3 zDanQqiH2x3Cgs70J{Z*S2Yi%&Fpws0Zel{>Q{OfrCJj%XJJVeY7L0e!J?GqW&zw1* z^HVODL9l*6WAl!L(4YL!S#XZlV?{t{4Oz$%95l^o!V%nrk#I#r6p$rak|P;XL}f#^ zWJ9qOBZ;Lesg9}jbcfqXt>j&>d=GZKXb+aJME>xzCGOvr1E0E@;0L0@*VB&bW{s?y zGjeX;$P36jnC4!kojuRU`-c$Tdl-=%c)81amystep=;u0v?N%Wo5<*~RKNu*3%D2e z8htot^y40502hpxENKcAbDP}TqQHb#iwTxIb1j%|)G

+b*Vo>DD*7n-_{A;rJz4R6;YOsK{tDlrG$-E5 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..886979a3607328bf90b148b7999122cbf6192892 GIT binary patch literal 47194 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/msgpack/exceptions.py b/.venv/lib/python3.11/site-packages/pip/_vendor/msgpack/exceptions.py new file mode 100644 index 0000000..d6d2615 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/msgpack/exceptions.py @@ -0,0 +1,48 @@ +class UnpackException(Exception): + """Base class for some exceptions raised while unpacking. + + NOTE: unpack may raise exception other than subclass of + UnpackException. If you want to catch all error, catch + Exception instead. + """ + + +class BufferFull(UnpackException): + pass + + +class OutOfData(UnpackException): + pass + + +class FormatError(ValueError, UnpackException): + """Invalid msgpack format""" + + +class StackError(ValueError, UnpackException): + """Too nested""" + + +# Deprecated. Use ValueError instead +UnpackValueError = ValueError + + +class ExtraData(UnpackValueError): + """ExtraData is raised when there is trailing data. + + This exception is raised while only one-shot (not streaming) + unpack. + """ + + def __init__(self, unpacked, extra): + self.unpacked = unpacked + self.extra = extra + + def __str__(self): + return "unpack(b) received extra data." + + +# Deprecated. Use Exception instead to catch all exception during packing. +PackException = Exception +PackValueError = ValueError +PackOverflowError = OverflowError diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/msgpack/ext.py b/.venv/lib/python3.11/site-packages/pip/_vendor/msgpack/ext.py new file mode 100644 index 0000000..23e0d6b --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/msgpack/ext.py @@ -0,0 +1,193 @@ +# coding: utf-8 +from collections import namedtuple +import datetime +import sys +import struct + + +PY2 = sys.version_info[0] == 2 + +if PY2: + int_types = (int, long) + _utc = None +else: + int_types = int + try: + _utc = datetime.timezone.utc + except AttributeError: + _utc = datetime.timezone(datetime.timedelta(0)) + + +class ExtType(namedtuple("ExtType", "code data")): + """ExtType represents ext type in msgpack.""" + + def __new__(cls, code, data): + if not isinstance(code, int): + raise TypeError("code must be int") + if not isinstance(data, bytes): + raise TypeError("data must be bytes") + if not 0 <= code <= 127: + raise ValueError("code must be 0~127") + return super(ExtType, cls).__new__(cls, code, data) + + +class Timestamp(object): + """Timestamp represents the Timestamp extension type in msgpack. + + When built with Cython, msgpack uses C methods to pack and unpack `Timestamp`. When using pure-Python + msgpack, :func:`to_bytes` and :func:`from_bytes` are used to pack and unpack `Timestamp`. + + This class is immutable: Do not override seconds and nanoseconds. + """ + + __slots__ = ["seconds", "nanoseconds"] + + def __init__(self, seconds, nanoseconds=0): + """Initialize a Timestamp object. + + :param int seconds: + Number of seconds since the UNIX epoch (00:00:00 UTC Jan 1 1970, minus leap seconds). + May be negative. + + :param int nanoseconds: + Number of nanoseconds to add to `seconds` to get fractional time. + Maximum is 999_999_999. Default is 0. + + Note: Negative times (before the UNIX epoch) are represented as negative seconds + positive ns. + """ + if not isinstance(seconds, int_types): + raise TypeError("seconds must be an integer") + if not isinstance(nanoseconds, int_types): + raise TypeError("nanoseconds must be an integer") + if not (0 <= nanoseconds < 10**9): + raise ValueError( + "nanoseconds must be a non-negative integer less than 999999999." + ) + self.seconds = seconds + self.nanoseconds = nanoseconds + + def __repr__(self): + """String representation of Timestamp.""" + return "Timestamp(seconds={0}, nanoseconds={1})".format( + self.seconds, self.nanoseconds + ) + + def __eq__(self, other): + """Check for equality with another Timestamp object""" + if type(other) is self.__class__: + return ( + self.seconds == other.seconds and self.nanoseconds == other.nanoseconds + ) + return False + + def __ne__(self, other): + """not-equals method (see :func:`__eq__()`)""" + return not self.__eq__(other) + + def __hash__(self): + return hash((self.seconds, self.nanoseconds)) + + @staticmethod + def from_bytes(b): + """Unpack bytes into a `Timestamp` object. + + Used for pure-Python msgpack unpacking. + + :param b: Payload from msgpack ext message with code -1 + :type b: bytes + + :returns: Timestamp object unpacked from msgpack ext payload + :rtype: Timestamp + """ + if len(b) == 4: + seconds = struct.unpack("!L", b)[0] + nanoseconds = 0 + elif len(b) == 8: + data64 = struct.unpack("!Q", b)[0] + seconds = data64 & 0x00000003FFFFFFFF + nanoseconds = data64 >> 34 + elif len(b) == 12: + nanoseconds, seconds = struct.unpack("!Iq", b) + else: + raise ValueError( + "Timestamp type can only be created from 32, 64, or 96-bit byte objects" + ) + return Timestamp(seconds, nanoseconds) + + def to_bytes(self): + """Pack this Timestamp object into bytes. + + Used for pure-Python msgpack packing. + + :returns data: Payload for EXT message with code -1 (timestamp type) + :rtype: bytes + """ + if (self.seconds >> 34) == 0: # seconds is non-negative and fits in 34 bits + data64 = self.nanoseconds << 34 | self.seconds + if data64 & 0xFFFFFFFF00000000 == 0: + # nanoseconds is zero and seconds < 2**32, so timestamp 32 + data = struct.pack("!L", data64) + else: + # timestamp 64 + data = struct.pack("!Q", data64) + else: + # timestamp 96 + data = struct.pack("!Iq", self.nanoseconds, self.seconds) + return data + + @staticmethod + def from_unix(unix_sec): + """Create a Timestamp from posix timestamp in seconds. + + :param unix_float: Posix timestamp in seconds. + :type unix_float: int or float. + """ + seconds = int(unix_sec // 1) + nanoseconds = int((unix_sec % 1) * 10**9) + return Timestamp(seconds, nanoseconds) + + def to_unix(self): + """Get the timestamp as a floating-point value. + + :returns: posix timestamp + :rtype: float + """ + return self.seconds + self.nanoseconds / 1e9 + + @staticmethod + def from_unix_nano(unix_ns): + """Create a Timestamp from posix timestamp in nanoseconds. + + :param int unix_ns: Posix timestamp in nanoseconds. + :rtype: Timestamp + """ + return Timestamp(*divmod(unix_ns, 10**9)) + + def to_unix_nano(self): + """Get the timestamp as a unixtime in nanoseconds. + + :returns: posix timestamp in nanoseconds + :rtype: int + """ + return self.seconds * 10**9 + self.nanoseconds + + def to_datetime(self): + """Get the timestamp as a UTC datetime. + + Python 2 is not supported. + + :rtype: datetime. + """ + return datetime.datetime.fromtimestamp(0, _utc) + datetime.timedelta( + seconds=self.to_unix() + ) + + @staticmethod + def from_datetime(dt): + """Create a Timestamp from datetime with tzinfo. + + Python 2 is not supported. + + :rtype: Timestamp + """ + return Timestamp.from_unix(dt.timestamp()) diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/msgpack/fallback.py b/.venv/lib/python3.11/site-packages/pip/_vendor/msgpack/fallback.py new file mode 100644 index 0000000..e8cebc1 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/msgpack/fallback.py @@ -0,0 +1,1010 @@ +"""Fallback pure Python implementation of msgpack""" +from datetime import datetime as _DateTime +import sys +import struct + + +PY2 = sys.version_info[0] == 2 +if PY2: + int_types = (int, long) + + def dict_iteritems(d): + return d.iteritems() + +else: + int_types = int + unicode = str + xrange = range + + def dict_iteritems(d): + return d.items() + + +if sys.version_info < (3, 5): + # Ugly hack... + RecursionError = RuntimeError + + def _is_recursionerror(e): + return ( + len(e.args) == 1 + and isinstance(e.args[0], str) + and e.args[0].startswith("maximum recursion depth exceeded") + ) + +else: + + def _is_recursionerror(e): + return True + + +if hasattr(sys, "pypy_version_info"): + # StringIO is slow on PyPy, StringIO is faster. However: PyPy's own + # StringBuilder is fastest. + from __pypy__ import newlist_hint + + try: + from __pypy__.builders import BytesBuilder as StringBuilder + except ImportError: + from __pypy__.builders import StringBuilder + USING_STRINGBUILDER = True + + class StringIO(object): + def __init__(self, s=b""): + if s: + self.builder = StringBuilder(len(s)) + self.builder.append(s) + else: + self.builder = StringBuilder() + + def write(self, s): + if isinstance(s, memoryview): + s = s.tobytes() + elif isinstance(s, bytearray): + s = bytes(s) + self.builder.append(s) + + def getvalue(self): + return self.builder.build() + +else: + USING_STRINGBUILDER = False + from io import BytesIO as StringIO + + newlist_hint = lambda size: [] + + +from .exceptions import BufferFull, OutOfData, ExtraData, FormatError, StackError + +from .ext import ExtType, Timestamp + + +EX_SKIP = 0 +EX_CONSTRUCT = 1 +EX_READ_ARRAY_HEADER = 2 +EX_READ_MAP_HEADER = 3 + +TYPE_IMMEDIATE = 0 +TYPE_ARRAY = 1 +TYPE_MAP = 2 +TYPE_RAW = 3 +TYPE_BIN = 4 +TYPE_EXT = 5 + +DEFAULT_RECURSE_LIMIT = 511 + + +def _check_type_strict(obj, t, type=type, tuple=tuple): + if type(t) is tuple: + return type(obj) in t + else: + return type(obj) is t + + +def _get_data_from_buffer(obj): + view = memoryview(obj) + if view.itemsize != 1: + raise ValueError("cannot unpack from multi-byte object") + return view + + +def unpackb(packed, **kwargs): + """ + Unpack an object from `packed`. + + Raises ``ExtraData`` when *packed* contains extra bytes. + Raises ``ValueError`` when *packed* is incomplete. + Raises ``FormatError`` when *packed* is not valid msgpack. + Raises ``StackError`` when *packed* contains too nested. + Other exceptions can be raised during unpacking. + + See :class:`Unpacker` for options. + """ + unpacker = Unpacker(None, max_buffer_size=len(packed), **kwargs) + unpacker.feed(packed) + try: + ret = unpacker._unpack() + except OutOfData: + raise ValueError("Unpack failed: incomplete input") + except RecursionError as e: + if _is_recursionerror(e): + raise StackError + raise + if unpacker._got_extradata(): + raise ExtraData(ret, unpacker._get_extradata()) + return ret + + +if sys.version_info < (2, 7, 6): + + def _unpack_from(f, b, o=0): + """Explicit type cast for legacy struct.unpack_from""" + return struct.unpack_from(f, bytes(b), o) + +else: + _unpack_from = struct.unpack_from + +_NO_FORMAT_USED = "" +_MSGPACK_HEADERS = { + 0xC4: (1, _NO_FORMAT_USED, TYPE_BIN), + 0xC5: (2, ">H", TYPE_BIN), + 0xC6: (4, ">I", TYPE_BIN), + 0xC7: (2, "Bb", TYPE_EXT), + 0xC8: (3, ">Hb", TYPE_EXT), + 0xC9: (5, ">Ib", TYPE_EXT), + 0xCA: (4, ">f"), + 0xCB: (8, ">d"), + 0xCC: (1, _NO_FORMAT_USED), + 0xCD: (2, ">H"), + 0xCE: (4, ">I"), + 0xCF: (8, ">Q"), + 0xD0: (1, "b"), + 0xD1: (2, ">h"), + 0xD2: (4, ">i"), + 0xD3: (8, ">q"), + 0xD4: (1, "b1s", TYPE_EXT), + 0xD5: (2, "b2s", TYPE_EXT), + 0xD6: (4, "b4s", TYPE_EXT), + 0xD7: (8, "b8s", TYPE_EXT), + 0xD8: (16, "b16s", TYPE_EXT), + 0xD9: (1, _NO_FORMAT_USED, TYPE_RAW), + 0xDA: (2, ">H", TYPE_RAW), + 0xDB: (4, ">I", TYPE_RAW), + 0xDC: (2, ">H", TYPE_ARRAY), + 0xDD: (4, ">I", TYPE_ARRAY), + 0xDE: (2, ">H", TYPE_MAP), + 0xDF: (4, ">I", TYPE_MAP), +} + + +class Unpacker(object): + """Streaming unpacker. + + Arguments: + + :param file_like: + File-like object having `.read(n)` method. + If specified, unpacker reads serialized data from it and :meth:`feed()` is not usable. + + :param int read_size: + Used as `file_like.read(read_size)`. (default: `min(16*1024, max_buffer_size)`) + + :param bool use_list: + If true, unpack msgpack array to Python list. + Otherwise, unpack to Python tuple. (default: True) + + :param bool raw: + If true, unpack msgpack raw to Python bytes. + Otherwise, unpack to Python str by decoding with UTF-8 encoding (default). + + :param int timestamp: + Control how timestamp type is unpacked: + + 0 - Timestamp + 1 - float (Seconds from the EPOCH) + 2 - int (Nanoseconds from the EPOCH) + 3 - datetime.datetime (UTC). Python 2 is not supported. + + :param bool strict_map_key: + If true (default), only str or bytes are accepted for map (dict) keys. + + :param callable object_hook: + When specified, it should be callable. + Unpacker calls it with a dict argument after unpacking msgpack map. + (See also simplejson) + + :param callable object_pairs_hook: + When specified, it should be callable. + Unpacker calls it with a list of key-value pairs after unpacking msgpack map. + (See also simplejson) + + :param str unicode_errors: + The error handler for decoding unicode. (default: 'strict') + This option should be used only when you have msgpack data which + contains invalid UTF-8 string. + + :param int max_buffer_size: + Limits size of data waiting unpacked. 0 means 2**32-1. + The default value is 100*1024*1024 (100MiB). + Raises `BufferFull` exception when it is insufficient. + You should set this parameter when unpacking data from untrusted source. + + :param int max_str_len: + Deprecated, use *max_buffer_size* instead. + Limits max length of str. (default: max_buffer_size) + + :param int max_bin_len: + Deprecated, use *max_buffer_size* instead. + Limits max length of bin. (default: max_buffer_size) + + :param int max_array_len: + Limits max length of array. + (default: max_buffer_size) + + :param int max_map_len: + Limits max length of map. + (default: max_buffer_size//2) + + :param int max_ext_len: + Deprecated, use *max_buffer_size* instead. + Limits max size of ext type. (default: max_buffer_size) + + Example of streaming deserialize from file-like object:: + + unpacker = Unpacker(file_like) + for o in unpacker: + process(o) + + Example of streaming deserialize from socket:: + + unpacker = Unpacker() + while True: + buf = sock.recv(1024**2) + if not buf: + break + unpacker.feed(buf) + for o in unpacker: + process(o) + + Raises ``ExtraData`` when *packed* contains extra bytes. + Raises ``OutOfData`` when *packed* is incomplete. + Raises ``FormatError`` when *packed* is not valid msgpack. + Raises ``StackError`` when *packed* contains too nested. + Other exceptions can be raised during unpacking. + """ + + def __init__( + self, + file_like=None, + read_size=0, + use_list=True, + raw=False, + timestamp=0, + strict_map_key=True, + object_hook=None, + object_pairs_hook=None, + list_hook=None, + unicode_errors=None, + max_buffer_size=100 * 1024 * 1024, + ext_hook=ExtType, + max_str_len=-1, + max_bin_len=-1, + max_array_len=-1, + max_map_len=-1, + max_ext_len=-1, + ): + if unicode_errors is None: + unicode_errors = "strict" + + if file_like is None: + self._feeding = True + else: + if not callable(file_like.read): + raise TypeError("`file_like.read` must be callable") + self.file_like = file_like + self._feeding = False + + #: array of bytes fed. + self._buffer = bytearray() + #: Which position we currently reads + self._buff_i = 0 + + # When Unpacker is used as an iterable, between the calls to next(), + # the buffer is not "consumed" completely, for efficiency sake. + # Instead, it is done sloppily. To make sure we raise BufferFull at + # the correct moments, we have to keep track of how sloppy we were. + # Furthermore, when the buffer is incomplete (that is: in the case + # we raise an OutOfData) we need to rollback the buffer to the correct + # state, which _buf_checkpoint records. + self._buf_checkpoint = 0 + + if not max_buffer_size: + max_buffer_size = 2**31 - 1 + if max_str_len == -1: + max_str_len = max_buffer_size + if max_bin_len == -1: + max_bin_len = max_buffer_size + if max_array_len == -1: + max_array_len = max_buffer_size + if max_map_len == -1: + max_map_len = max_buffer_size // 2 + if max_ext_len == -1: + max_ext_len = max_buffer_size + + self._max_buffer_size = max_buffer_size + if read_size > self._max_buffer_size: + raise ValueError("read_size must be smaller than max_buffer_size") + self._read_size = read_size or min(self._max_buffer_size, 16 * 1024) + self._raw = bool(raw) + self._strict_map_key = bool(strict_map_key) + self._unicode_errors = unicode_errors + self._use_list = use_list + if not (0 <= timestamp <= 3): + raise ValueError("timestamp must be 0..3") + self._timestamp = timestamp + self._list_hook = list_hook + self._object_hook = object_hook + self._object_pairs_hook = object_pairs_hook + self._ext_hook = ext_hook + self._max_str_len = max_str_len + self._max_bin_len = max_bin_len + self._max_array_len = max_array_len + self._max_map_len = max_map_len + self._max_ext_len = max_ext_len + self._stream_offset = 0 + + if list_hook is not None and not callable(list_hook): + raise TypeError("`list_hook` is not callable") + if object_hook is not None and not callable(object_hook): + raise TypeError("`object_hook` is not callable") + if object_pairs_hook is not None and not callable(object_pairs_hook): + raise TypeError("`object_pairs_hook` is not callable") + if object_hook is not None and object_pairs_hook is not None: + raise TypeError( + "object_pairs_hook and object_hook are mutually " "exclusive" + ) + if not callable(ext_hook): + raise TypeError("`ext_hook` is not callable") + + def feed(self, next_bytes): + assert self._feeding + view = _get_data_from_buffer(next_bytes) + if len(self._buffer) - self._buff_i + len(view) > self._max_buffer_size: + raise BufferFull + + # Strip buffer before checkpoint before reading file. + if self._buf_checkpoint > 0: + del self._buffer[: self._buf_checkpoint] + self._buff_i -= self._buf_checkpoint + self._buf_checkpoint = 0 + + # Use extend here: INPLACE_ADD += doesn't reliably typecast memoryview in jython + self._buffer.extend(view) + + def _consume(self): + """Gets rid of the used parts of the buffer.""" + self._stream_offset += self._buff_i - self._buf_checkpoint + self._buf_checkpoint = self._buff_i + + def _got_extradata(self): + return self._buff_i < len(self._buffer) + + def _get_extradata(self): + return self._buffer[self._buff_i :] + + def read_bytes(self, n): + ret = self._read(n, raise_outofdata=False) + self._consume() + return ret + + def _read(self, n, raise_outofdata=True): + # (int) -> bytearray + self._reserve(n, raise_outofdata=raise_outofdata) + i = self._buff_i + ret = self._buffer[i : i + n] + self._buff_i = i + len(ret) + return ret + + def _reserve(self, n, raise_outofdata=True): + remain_bytes = len(self._buffer) - self._buff_i - n + + # Fast path: buffer has n bytes already + if remain_bytes >= 0: + return + + if self._feeding: + self._buff_i = self._buf_checkpoint + raise OutOfData + + # Strip buffer before checkpoint before reading file. + if self._buf_checkpoint > 0: + del self._buffer[: self._buf_checkpoint] + self._buff_i -= self._buf_checkpoint + self._buf_checkpoint = 0 + + # Read from file + remain_bytes = -remain_bytes + if remain_bytes + len(self._buffer) > self._max_buffer_size: + raise BufferFull + while remain_bytes > 0: + to_read_bytes = max(self._read_size, remain_bytes) + read_data = self.file_like.read(to_read_bytes) + if not read_data: + break + assert isinstance(read_data, bytes) + self._buffer += read_data + remain_bytes -= len(read_data) + + if len(self._buffer) < n + self._buff_i and raise_outofdata: + self._buff_i = 0 # rollback + raise OutOfData + + def _read_header(self): + typ = TYPE_IMMEDIATE + n = 0 + obj = None + self._reserve(1) + b = self._buffer[self._buff_i] + self._buff_i += 1 + if b & 0b10000000 == 0: + obj = b + elif b & 0b11100000 == 0b11100000: + obj = -1 - (b ^ 0xFF) + elif b & 0b11100000 == 0b10100000: + n = b & 0b00011111 + typ = TYPE_RAW + if n > self._max_str_len: + raise ValueError("%s exceeds max_str_len(%s)" % (n, self._max_str_len)) + obj = self._read(n) + elif b & 0b11110000 == 0b10010000: + n = b & 0b00001111 + typ = TYPE_ARRAY + if n > self._max_array_len: + raise ValueError( + "%s exceeds max_array_len(%s)" % (n, self._max_array_len) + ) + elif b & 0b11110000 == 0b10000000: + n = b & 0b00001111 + typ = TYPE_MAP + if n > self._max_map_len: + raise ValueError("%s exceeds max_map_len(%s)" % (n, self._max_map_len)) + elif b == 0xC0: + obj = None + elif b == 0xC2: + obj = False + elif b == 0xC3: + obj = True + elif 0xC4 <= b <= 0xC6: + size, fmt, typ = _MSGPACK_HEADERS[b] + self._reserve(size) + if len(fmt) > 0: + n = _unpack_from(fmt, self._buffer, self._buff_i)[0] + else: + n = self._buffer[self._buff_i] + self._buff_i += size + if n > self._max_bin_len: + raise ValueError("%s exceeds max_bin_len(%s)" % (n, self._max_bin_len)) + obj = self._read(n) + elif 0xC7 <= b <= 0xC9: + size, fmt, typ = _MSGPACK_HEADERS[b] + self._reserve(size) + L, n = _unpack_from(fmt, self._buffer, self._buff_i) + self._buff_i += size + if L > self._max_ext_len: + raise ValueError("%s exceeds max_ext_len(%s)" % (L, self._max_ext_len)) + obj = self._read(L) + elif 0xCA <= b <= 0xD3: + size, fmt = _MSGPACK_HEADERS[b] + self._reserve(size) + if len(fmt) > 0: + obj = _unpack_from(fmt, self._buffer, self._buff_i)[0] + else: + obj = self._buffer[self._buff_i] + self._buff_i += size + elif 0xD4 <= b <= 0xD8: + size, fmt, typ = _MSGPACK_HEADERS[b] + if self._max_ext_len < size: + raise ValueError( + "%s exceeds max_ext_len(%s)" % (size, self._max_ext_len) + ) + self._reserve(size + 1) + n, obj = _unpack_from(fmt, self._buffer, self._buff_i) + self._buff_i += size + 1 + elif 0xD9 <= b <= 0xDB: + size, fmt, typ = _MSGPACK_HEADERS[b] + self._reserve(size) + if len(fmt) > 0: + (n,) = _unpack_from(fmt, self._buffer, self._buff_i) + else: + n = self._buffer[self._buff_i] + self._buff_i += size + if n > self._max_str_len: + raise ValueError("%s exceeds max_str_len(%s)" % (n, self._max_str_len)) + obj = self._read(n) + elif 0xDC <= b <= 0xDD: + size, fmt, typ = _MSGPACK_HEADERS[b] + self._reserve(size) + (n,) = _unpack_from(fmt, self._buffer, self._buff_i) + self._buff_i += size + if n > self._max_array_len: + raise ValueError( + "%s exceeds max_array_len(%s)" % (n, self._max_array_len) + ) + elif 0xDE <= b <= 0xDF: + size, fmt, typ = _MSGPACK_HEADERS[b] + self._reserve(size) + (n,) = _unpack_from(fmt, self._buffer, self._buff_i) + self._buff_i += size + if n > self._max_map_len: + raise ValueError("%s exceeds max_map_len(%s)" % (n, self._max_map_len)) + else: + raise FormatError("Unknown header: 0x%x" % b) + return typ, n, obj + + def _unpack(self, execute=EX_CONSTRUCT): + typ, n, obj = self._read_header() + + if execute == EX_READ_ARRAY_HEADER: + if typ != TYPE_ARRAY: + raise ValueError("Expected array") + return n + if execute == EX_READ_MAP_HEADER: + if typ != TYPE_MAP: + raise ValueError("Expected map") + return n + # TODO should we eliminate the recursion? + if typ == TYPE_ARRAY: + if execute == EX_SKIP: + for i in xrange(n): + # TODO check whether we need to call `list_hook` + self._unpack(EX_SKIP) + return + ret = newlist_hint(n) + for i in xrange(n): + ret.append(self._unpack(EX_CONSTRUCT)) + if self._list_hook is not None: + ret = self._list_hook(ret) + # TODO is the interaction between `list_hook` and `use_list` ok? + return ret if self._use_list else tuple(ret) + if typ == TYPE_MAP: + if execute == EX_SKIP: + for i in xrange(n): + # TODO check whether we need to call hooks + self._unpack(EX_SKIP) + self._unpack(EX_SKIP) + return + if self._object_pairs_hook is not None: + ret = self._object_pairs_hook( + (self._unpack(EX_CONSTRUCT), self._unpack(EX_CONSTRUCT)) + for _ in xrange(n) + ) + else: + ret = {} + for _ in xrange(n): + key = self._unpack(EX_CONSTRUCT) + if self._strict_map_key and type(key) not in (unicode, bytes): + raise ValueError( + "%s is not allowed for map key" % str(type(key)) + ) + if not PY2 and type(key) is str: + key = sys.intern(key) + ret[key] = self._unpack(EX_CONSTRUCT) + if self._object_hook is not None: + ret = self._object_hook(ret) + return ret + if execute == EX_SKIP: + return + if typ == TYPE_RAW: + if self._raw: + obj = bytes(obj) + else: + obj = obj.decode("utf_8", self._unicode_errors) + return obj + if typ == TYPE_BIN: + return bytes(obj) + if typ == TYPE_EXT: + if n == -1: # timestamp + ts = Timestamp.from_bytes(bytes(obj)) + if self._timestamp == 1: + return ts.to_unix() + elif self._timestamp == 2: + return ts.to_unix_nano() + elif self._timestamp == 3: + return ts.to_datetime() + else: + return ts + else: + return self._ext_hook(n, bytes(obj)) + assert typ == TYPE_IMMEDIATE + return obj + + def __iter__(self): + return self + + def __next__(self): + try: + ret = self._unpack(EX_CONSTRUCT) + self._consume() + return ret + except OutOfData: + self._consume() + raise StopIteration + except RecursionError: + raise StackError + + next = __next__ + + def skip(self): + self._unpack(EX_SKIP) + self._consume() + + def unpack(self): + try: + ret = self._unpack(EX_CONSTRUCT) + except RecursionError: + raise StackError + self._consume() + return ret + + def read_array_header(self): + ret = self._unpack(EX_READ_ARRAY_HEADER) + self._consume() + return ret + + def read_map_header(self): + ret = self._unpack(EX_READ_MAP_HEADER) + self._consume() + return ret + + def tell(self): + return self._stream_offset + + +class Packer(object): + """ + MessagePack Packer + + Usage:: + + packer = Packer() + astream.write(packer.pack(a)) + astream.write(packer.pack(b)) + + Packer's constructor has some keyword arguments: + + :param callable default: + Convert user type to builtin type that Packer supports. + See also simplejson's document. + + :param bool use_single_float: + Use single precision float type for float. (default: False) + + :param bool autoreset: + Reset buffer after each pack and return its content as `bytes`. (default: True). + If set this to false, use `bytes()` to get content and `.reset()` to clear buffer. + + :param bool use_bin_type: + Use bin type introduced in msgpack spec 2.0 for bytes. + It also enables str8 type for unicode. (default: True) + + :param bool strict_types: + If set to true, types will be checked to be exact. Derived classes + from serializable types will not be serialized and will be + treated as unsupported type and forwarded to default. + Additionally tuples will not be serialized as lists. + This is useful when trying to implement accurate serialization + for python types. + + :param bool datetime: + If set to true, datetime with tzinfo is packed into Timestamp type. + Note that the tzinfo is stripped in the timestamp. + You can get UTC datetime with `timestamp=3` option of the Unpacker. + (Python 2 is not supported). + + :param str unicode_errors: + The error handler for encoding unicode. (default: 'strict') + DO NOT USE THIS!! This option is kept for very specific usage. + + Example of streaming deserialize from file-like object:: + + unpacker = Unpacker(file_like) + for o in unpacker: + process(o) + + Example of streaming deserialize from socket:: + + unpacker = Unpacker() + while True: + buf = sock.recv(1024**2) + if not buf: + break + unpacker.feed(buf) + for o in unpacker: + process(o) + + Raises ``ExtraData`` when *packed* contains extra bytes. + Raises ``OutOfData`` when *packed* is incomplete. + Raises ``FormatError`` when *packed* is not valid msgpack. + Raises ``StackError`` when *packed* contains too nested. + Other exceptions can be raised during unpacking. + """ + + def __init__( + self, + default=None, + use_single_float=False, + autoreset=True, + use_bin_type=True, + strict_types=False, + datetime=False, + unicode_errors=None, + ): + self._strict_types = strict_types + self._use_float = use_single_float + self._autoreset = autoreset + self._use_bin_type = use_bin_type + self._buffer = StringIO() + if PY2 and datetime: + raise ValueError("datetime is not supported in Python 2") + self._datetime = bool(datetime) + self._unicode_errors = unicode_errors or "strict" + if default is not None: + if not callable(default): + raise TypeError("default must be callable") + self._default = default + + def _pack( + self, + obj, + nest_limit=DEFAULT_RECURSE_LIMIT, + check=isinstance, + check_type_strict=_check_type_strict, + ): + default_used = False + if self._strict_types: + check = check_type_strict + list_types = list + else: + list_types = (list, tuple) + while True: + if nest_limit < 0: + raise ValueError("recursion limit exceeded") + if obj is None: + return self._buffer.write(b"\xc0") + if check(obj, bool): + if obj: + return self._buffer.write(b"\xc3") + return self._buffer.write(b"\xc2") + if check(obj, int_types): + if 0 <= obj < 0x80: + return self._buffer.write(struct.pack("B", obj)) + if -0x20 <= obj < 0: + return self._buffer.write(struct.pack("b", obj)) + if 0x80 <= obj <= 0xFF: + return self._buffer.write(struct.pack("BB", 0xCC, obj)) + if -0x80 <= obj < 0: + return self._buffer.write(struct.pack(">Bb", 0xD0, obj)) + if 0xFF < obj <= 0xFFFF: + return self._buffer.write(struct.pack(">BH", 0xCD, obj)) + if -0x8000 <= obj < -0x80: + return self._buffer.write(struct.pack(">Bh", 0xD1, obj)) + if 0xFFFF < obj <= 0xFFFFFFFF: + return self._buffer.write(struct.pack(">BI", 0xCE, obj)) + if -0x80000000 <= obj < -0x8000: + return self._buffer.write(struct.pack(">Bi", 0xD2, obj)) + if 0xFFFFFFFF < obj <= 0xFFFFFFFFFFFFFFFF: + return self._buffer.write(struct.pack(">BQ", 0xCF, obj)) + if -0x8000000000000000 <= obj < -0x80000000: + return self._buffer.write(struct.pack(">Bq", 0xD3, obj)) + if not default_used and self._default is not None: + obj = self._default(obj) + default_used = True + continue + raise OverflowError("Integer value out of range") + if check(obj, (bytes, bytearray)): + n = len(obj) + if n >= 2**32: + raise ValueError("%s is too large" % type(obj).__name__) + self._pack_bin_header(n) + return self._buffer.write(obj) + if check(obj, unicode): + obj = obj.encode("utf-8", self._unicode_errors) + n = len(obj) + if n >= 2**32: + raise ValueError("String is too large") + self._pack_raw_header(n) + return self._buffer.write(obj) + if check(obj, memoryview): + n = obj.nbytes + if n >= 2**32: + raise ValueError("Memoryview is too large") + self._pack_bin_header(n) + return self._buffer.write(obj) + if check(obj, float): + if self._use_float: + return self._buffer.write(struct.pack(">Bf", 0xCA, obj)) + return self._buffer.write(struct.pack(">Bd", 0xCB, obj)) + if check(obj, (ExtType, Timestamp)): + if check(obj, Timestamp): + code = -1 + data = obj.to_bytes() + else: + code = obj.code + data = obj.data + assert isinstance(code, int) + assert isinstance(data, bytes) + L = len(data) + if L == 1: + self._buffer.write(b"\xd4") + elif L == 2: + self._buffer.write(b"\xd5") + elif L == 4: + self._buffer.write(b"\xd6") + elif L == 8: + self._buffer.write(b"\xd7") + elif L == 16: + self._buffer.write(b"\xd8") + elif L <= 0xFF: + self._buffer.write(struct.pack(">BB", 0xC7, L)) + elif L <= 0xFFFF: + self._buffer.write(struct.pack(">BH", 0xC8, L)) + else: + self._buffer.write(struct.pack(">BI", 0xC9, L)) + self._buffer.write(struct.pack("b", code)) + self._buffer.write(data) + return + if check(obj, list_types): + n = len(obj) + self._pack_array_header(n) + for i in xrange(n): + self._pack(obj[i], nest_limit - 1) + return + if check(obj, dict): + return self._pack_map_pairs( + len(obj), dict_iteritems(obj), nest_limit - 1 + ) + + if self._datetime and check(obj, _DateTime) and obj.tzinfo is not None: + obj = Timestamp.from_datetime(obj) + default_used = 1 + continue + + if not default_used and self._default is not None: + obj = self._default(obj) + default_used = 1 + continue + + if self._datetime and check(obj, _DateTime): + raise ValueError("Cannot serialize %r where tzinfo=None" % (obj,)) + + raise TypeError("Cannot serialize %r" % (obj,)) + + def pack(self, obj): + try: + self._pack(obj) + except: + self._buffer = StringIO() # force reset + raise + if self._autoreset: + ret = self._buffer.getvalue() + self._buffer = StringIO() + return ret + + def pack_map_pairs(self, pairs): + self._pack_map_pairs(len(pairs), pairs) + if self._autoreset: + ret = self._buffer.getvalue() + self._buffer = StringIO() + return ret + + def pack_array_header(self, n): + if n >= 2**32: + raise ValueError + self._pack_array_header(n) + if self._autoreset: + ret = self._buffer.getvalue() + self._buffer = StringIO() + return ret + + def pack_map_header(self, n): + if n >= 2**32: + raise ValueError + self._pack_map_header(n) + if self._autoreset: + ret = self._buffer.getvalue() + self._buffer = StringIO() + return ret + + def pack_ext_type(self, typecode, data): + if not isinstance(typecode, int): + raise TypeError("typecode must have int type.") + if not 0 <= typecode <= 127: + raise ValueError("typecode should be 0-127") + if not isinstance(data, bytes): + raise TypeError("data must have bytes type") + L = len(data) + if L > 0xFFFFFFFF: + raise ValueError("Too large data") + if L == 1: + self._buffer.write(b"\xd4") + elif L == 2: + self._buffer.write(b"\xd5") + elif L == 4: + self._buffer.write(b"\xd6") + elif L == 8: + self._buffer.write(b"\xd7") + elif L == 16: + self._buffer.write(b"\xd8") + elif L <= 0xFF: + self._buffer.write(b"\xc7" + struct.pack("B", L)) + elif L <= 0xFFFF: + self._buffer.write(b"\xc8" + struct.pack(">H", L)) + else: + self._buffer.write(b"\xc9" + struct.pack(">I", L)) + self._buffer.write(struct.pack("B", typecode)) + self._buffer.write(data) + + def _pack_array_header(self, n): + if n <= 0x0F: + return self._buffer.write(struct.pack("B", 0x90 + n)) + if n <= 0xFFFF: + return self._buffer.write(struct.pack(">BH", 0xDC, n)) + if n <= 0xFFFFFFFF: + return self._buffer.write(struct.pack(">BI", 0xDD, n)) + raise ValueError("Array is too large") + + def _pack_map_header(self, n): + if n <= 0x0F: + return self._buffer.write(struct.pack("B", 0x80 + n)) + if n <= 0xFFFF: + return self._buffer.write(struct.pack(">BH", 0xDE, n)) + if n <= 0xFFFFFFFF: + return self._buffer.write(struct.pack(">BI", 0xDF, n)) + raise ValueError("Dict is too large") + + def _pack_map_pairs(self, n, pairs, nest_limit=DEFAULT_RECURSE_LIMIT): + self._pack_map_header(n) + for (k, v) in pairs: + self._pack(k, nest_limit - 1) + self._pack(v, nest_limit - 1) + + def _pack_raw_header(self, n): + if n <= 0x1F: + self._buffer.write(struct.pack("B", 0xA0 + n)) + elif self._use_bin_type and n <= 0xFF: + self._buffer.write(struct.pack(">BB", 0xD9, n)) + elif n <= 0xFFFF: + self._buffer.write(struct.pack(">BH", 0xDA, n)) + elif n <= 0xFFFFFFFF: + self._buffer.write(struct.pack(">BI", 0xDB, n)) + else: + raise ValueError("Raw is too large") + + def _pack_bin_header(self, n): + if not self._use_bin_type: + return self._pack_raw_header(n) + elif n <= 0xFF: + return self._buffer.write(struct.pack(">BB", 0xC4, n)) + elif n <= 0xFFFF: + return self._buffer.write(struct.pack(">BH", 0xC5, n)) + elif n <= 0xFFFFFFFF: + return self._buffer.write(struct.pack(">BI", 0xC6, n)) + else: + raise ValueError("Bin is too large") + + def bytes(self): + """Return internal buffer contents as bytes object""" + return self._buffer.getvalue() + + def reset(self): + """Reset internal buffer. + + This method is useful only when autoreset=False. + """ + self._buffer = StringIO() + + def getbuffer(self): + """Return view of internal buffer.""" + if USING_STRINGBUILDER or PY2: + return memoryview(self.bytes()) + else: + return self._buffer.getbuffer() diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/packaging/__about__.py b/.venv/lib/python3.11/site-packages/pip/_vendor/packaging/__about__.py new file mode 100644 index 0000000..3551bc2 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/packaging/__about__.py @@ -0,0 +1,26 @@ +# This file is dual licensed under the terms of the Apache License, Version +# 2.0, and the BSD License. See the LICENSE file in the root of this repository +# for complete details. + +__all__ = [ + "__title__", + "__summary__", + "__uri__", + "__version__", + "__author__", + "__email__", + "__license__", + "__copyright__", +] + +__title__ = "packaging" +__summary__ = "Core utilities for Python packages" +__uri__ = "https://github.com/pypa/packaging" + +__version__ = "21.3" + +__author__ = "Donald Stufft and individual contributors" +__email__ = "donald@stufft.io" + +__license__ = "BSD-2-Clause or Apache-2.0" +__copyright__ = "2014-2019 %s" % __author__ diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/packaging/__init__.py b/.venv/lib/python3.11/site-packages/pip/_vendor/packaging/__init__.py new file mode 100644 index 0000000..3c50c5d --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/packaging/__init__.py @@ -0,0 +1,25 @@ +# This file is dual licensed under the terms of the Apache License, Version +# 2.0, and the BSD License. See the LICENSE file in the root of this repository +# for complete details. + +from .__about__ import ( + __author__, + __copyright__, + __email__, + __license__, + __summary__, + __title__, + __uri__, + __version__, +) + +__all__ = [ + "__title__", + "__summary__", + "__uri__", + "__version__", + "__author__", + "__email__", + "__license__", + "__copyright__", +] diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/packaging/__pycache__/__about__.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/packaging/__pycache__/__about__.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..48e861a02ed9be775c07ad395a803518cc4a0ef6 GIT binary patch literal 686 zcmYL`Pm9w)7{(|4pLSDw5RpABQSeZunQeCuDzd1%2faw4h>*)L%}kroBok&Ph2)g0 zA3(f#5HI4#@mBU!@Cy|7wkO}Tlzl^flQ;9s!<#3+9jA++exQr+TMeOqRdXolcXe|P z%XhRy4E?fv#4O)pHNVE{ew{V^25b6F*794d?YCKnH;WcReuvpJH0%yL*ES(Wn1~Z{ z-6KS2aZFVXO`DKRiT&FZS6avfnl2$UGoe)Q3@3R^MYPvMBH)RxY#c%YndV9?LsQ98 z8hoKkkt~bHmr`*zGa?d3aP2Ona;G`iCGK9tb@3=PCe<%7UJ4Utb1#rFPV0-ck(${(?^@J>r-_EW^lhI{F zGtFHX;|p?mAI-`XjEucfHaY6SLjr*0e{d9 z5Z!*oA2lS06KZHA1T}dq7lI4EqIjAIAyx5I$%_S!h!?9+;4al%yo_UMY_f|B8${pV*a*!c`wY)YT%l0IMNDoEME%>7v3k z0+2>1jo|=5t5{~GY?HD!M%bnmRjSgi9stx`|adhg~l1*$p*z_`^2tGG-sKpgjPyajmdA7RB|cU ztce%Gnwib-WL%Z(;^u^DDQpHsgMWZWd&9;{nJt-CbJkv*jwcgVs!ARgBEA=?ELoun z1}IB%%i5yKQU;(hh2xKlW*eTHJgK#u+Cv=7{df6*So@UHbw8rsn*1-0qJi_+<1ujC H9^eSylD?l; literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..456fc1e35d2f7fddf05a06126b78afc0f0e3e36a GIT binary patch literal 13273 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 a3w;vnffv>Tuk~j(raqY<=wkudy8j1WRKo25 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b809da22e6e86e4e26233bf063c7034a59bfa95a GIT binary patch literal 8041 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7f59440e49f83bd87cebb0d2f82f22d0d3f1fac4 GIT binary patch literal 3729 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 L|M?!d#IpMzP1)6) literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..25be5efb19632341c45266cfe4655b2921532db7 GIT binary patch literal 7684 zcmcgQOH3Qtmbd&V{QqD+G2q}NbchMy5FpTy1`Kfm9WaDXlCG$q<#tsPgFob!34}+| z?pB`0iIBoP%_yGfMB|ZK-8{XFltmU9DT{v6EZ(vzDk)Y;k&tH9iy0B6M|xs4=a#Xt zNti_zb6r07-1EEtbI-j$o6QCU=?NORd9D(n|0IP%((NMeRWw465sO$VikN&(F_cnP zF>1(FQB6$CXk#=}5z{d`ipZ#=`j~++#Egsy=yc4?m}3^k60glfc!*(JpA*CX#{x_t1qW!-35MW{u31bTqH0@6ive?XdYEGjh~=- zOwlxbf@YJVY5oMw&lF9|Cukm5G_9YY*$kRi)>f{`oZ!f8*|-zsbgq%i>uLo;j0gCJ zT`5nw)JNvN1*BV8d$}BQl51gFRj|f53tL&vV;$vXrj2Xn+K6SQodX?c+h<(shczh@ zUf`28Lv!A8D}>7(C6KKu=P;*8D>&zT2QZbyq50D#cxM48z5huC>l6O@#B?dThdxQS zo9p7bS545bGs;L9ILMXWo%wk0STkGwtfqV~vbFnq)1&nM7}ulpxJiLMO3TalWG~m7 z{k+hR(wseXf8YKkz5uM+x!&@+SZ8^e>ErqiuvvGIO|V;CzURwrvi0R}#8Rbf) zJj4xUeWl}Bz*$$hrCkqu7(8s_zEw5MQZvZo{*|Z(JZf1p9^sR+ZgMdhNyI}@Sv|ug zJqEdABoX^266fTK@ko-xp(xgXf^3-zVV?7^ggHfC)=qObxD{D*C4pJlz;HM*i6;`6 zldTCHxe)<_v)oGZd;-gQK8Yjo8~!*e8}sN)GK7=A5>M_?$;Jua^hN)4(0_GmTBavL zc!9&vI_o%hBNV48m#0A#%boDwcv1P6fSJ z%avpC+o5QLo#t*WMKBlR;>p!74Q@!jxI2>Px$z#;y&U4**Aq)|w$;7FbC`GYHxo-y z7G$n-*quzcr~Fgy?o++(ijjavBkO{}cqqmNgR&tQj3wBmD8Ws^;H{-lbeB^R46=!E zF!(3*p0syo-8)B&d*h)bv@Q}#-ialk+Y#<|$UAi>d^3b&Q#ditg_FE@^vY>(lndc_ zaPdy^W&*N2$J>6Ji{JJ}Bj0%QjL!Cs4lfV0*tQr7FNAJzymv9O=naAxo50>Y5vIml z(qF!P@eZzmCMlpE5S|>usp4;2rPAuQQ5nDu1%(~z+79*g4s~LO^6XHpJ5>J;HMFX3 z3%1J|()CsCwcokFJ}Il0a8#yYh2Ri>9#(;2J`st}C<{f_h1mH}7$!#62XSaQ$io^4 z7vlt|iOe!7zpn!D7_F)1Ar}$Ve2+ zfEQ1cKdAN^R_-sLnG`q!YzKYW8Z7MHAWycaY~CZllKH>-Z~^prGOQ`|kLNQTnM;zZ z{ki=`qu?5n>V0C>uvAqT&QeUuHH?;3bDHZa zmIj>O#VY`>U^UPaoop=K)_+l4mOE6so!bq{HZ5>&L|`wJ^4)n41)czQb|lHW7hxRu zRyV&CzUc-}K-Msn3hSX&u{Jk7-s%p;S$BRtx4Wl95uW4SAG#WMA`b2OCd5YXv|Uf& z7)Sg_(Ge-e@(sv)6S=a43v)vJs7zxnxrF0^aB+HJ)JT}GEDIXoW28sP-7zIuwzw!t zh-i%}UkZ0sao;hNEKCN7HX+<~SDl1IsgPJ|japOB7iCIuRz;4g(xvu;idBOIS+Yv{ z0X@}}*ZDoT=ez2A>Sbyft*F03%M>hIx*)%Xf_u1XzSs`@bJA9jL1ZFw8Mr{bNZt-#e# zB7R6o*iy>l50~=z+A_OzY0WUws{Qqp@?m6)V-l}m!FBAFlf?@dxD?eqabfwkI7>^} zk{KvSKp+d~-bE`;-PjlOK|Mu#$zywZV3{~kC6%`uG>ROMaulR+MQJGx>j)%^To!>l zs0ggu@*ADQIDy@vr2FWvWTULAkM_A`&Gkr>Tea_QQa5a3x8e>~%_XEhx2FocivQBw z*tCDbADESm;1PH(e^g;&O*trKbuT>v~zFu8Sq%3Lo05n9fQm0w7e zU!+IUBY%5qb!{WH-m(YYRyO5qSA?cB&u_h0dU@;B(l59E{f^KxDm9G>K!pk1ZsBd`dY<$x2#@YVb*}lm? zTNa%?lCvlMWzOo9tnTdj*VY!n+Va-n{D-q|94)UMEt`F!Y%Be~|5AD7eT)<@H$TebBBdFwv*vh!7+&@_=9`SHs) zP2I1Xy2Yj*si{Y3>iO$w(H)T70qCXiZFA@IkrxwU^RU!B3J>h>(NtnxdugAS3C}I^FjK_q5~vR z&7MZNwepf;yXe&L=LgwlHDIwQ_o1Uy>=a(j5V+%m`nb=L@6&S~s7FKnMf)GCpRM@# z9PK}_NyHPtM`64%3DI#QfK}Cydxvtbs`}ly70Moc-XAFrMMHvYndTEX$+0pWT3jSi z9q}x(8vKmnwDLYijV}@^aa>7WwvkXJlmw+39*hZATeOK_QBQyKtccQaZa<+=5Hp$c`nA(U`FY#GN zccn6o8TQFdfQ_QbBbhvc$&<4>)_)I{%tv#!>c^%(nldw@?TBPMBG``XHkH!16`OMs z3@ixFlkkbAR>{;Vm|C~2_D9PPmp7Ik+*`jV=v>OZp=_6uP=Ng3TL8d2EbL3zA*!cp zm_>D9)pE9E>`pYVs+&Cn%EbY0F=Q%uvWN2*7vj({w@3zjpF_`6|DK4GlMqJS>d9&Z zt7rGqd6af}bhsAS_z(f)Vu0%im?L14fU5*B1SnS*<#I=Y0!$uA6mSI)ehomX_=CfP z+zSafRI44QHaoWw$)9)S^N+yOmDjIBSEQ879D5tt?xEzWu zaefk>?9Fm@p@Iqe_u0d4`}4AdBe2a~R@Q+wrc{{`R3SF*9dpA7hAQ=u^73w#Cl&_Z!$ z%0D7oAViuXQJ61G-mdn96|QafL21ShW8j;eB(F-!6O&w7u;L4x3+~b^(4k;S*-pBA zE?5%r;XyK8Lj)-6zkE-?GeZ7}X8@-`gltou+>f@^6h%R3Lm5(f^2;G}O8MoGLnwSX z)F~YNZEK8_3ZkL^cTk5YkAO~m_~p=$aPYTHt10jRAA(HXJ3{?!k7Yt8Te@q5mTXPg z+dtkFZC#?VTQYX1bX!JKx+6XF;LQ4&M}rRsMPq|xY)I*H2axrKv_0MVpk}@1QRBl# zQC}zN>r!;?0J2V>rqahA(ChRg>qD!kb4ogAN}Ds8)4p{0!TI&`k0u{ZiYAw2a>0yg z>C~kZ|J~*Lm;WyKeNfcaNZOi|YRgiYW;ePYEUYi2j5)hA!(^CEqv-0ATwTvsMAx8b zA4*wr=Bo6SjjLHh*04Dsy89$|pIF@|n)@Ylf6A~`VNb1Y92YB`QiU_6$>}On+AX>| z#ih9P=y!?xi49Jq8zj0RrOwg1bmwE;s%Yqj#^{G6{ZNYDve#@>Z`_e;Pi{^>V_qJ8)h4!G5bdLq zeH2=%Fu#>*JD#6@(f5n$Kg?q1glG>)_CU(AWogLV6D@5iBRu=rRO#jPa!zC2XxV7V z%w?~Mu2W)Vhg8`iYC2wq|LWgXgUmYw03v;xYD;B)r&Zakq+m^%wrON{Zs;<{vuDLR z@AKngUGK|r(K#yG#w6QV$_zW?4QhCe8U)t>d?Ff@(4c?@x2$dHZ`0pq?uynn$=bHL zAX@t*YhTKgL#8*V{xzx>8cx9{q7Dgl2&iMr(wa`B6Pbm~!av2H#6(N0WNC#Vv7C`C zXJEikUCJn-x}0WM&d0A}glA5~2 z>Mj9Q=Im7)D;q0WTC8oBYMVuSGmKT$p-gY4H+x>JKPlCp6st~d-V=tVMenp&H6tMV zmc=PFw83CL*Nc|VVMJ*}K?iDIquPvCM297GSU`uj>3#~1ybr-ULi_C_4CNU7UoorJ Aod5s; literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6c10d5d6a33ad54cacf0ebb2058e8839651f35ad GIT binary patch literal 34407 zcmd^o3ve9AncmF4umET-{u)J5wWo94qo3XY}xuizq8D_XQ0rxd| z_0=JXLqa(8V?uQxT$*w3i;Rs$PL9bL$NuPOJmWqTmlgKTUGYgJ<9IR}L&%YH@#y44 zWGqv3G!jRwiHv?k!<_euG5Wc1QA+#^$@Ih^MrN=(j_W#6-zA|vO?$*Boxlvgo_T8-bW!21?>f2JgaYwtuT%0ogiEhuy$5(}N8kE{<( z#ei2Rc4l&FObRLTDOm}{CqqXcKN{-o?df7!41^sS_sGaZWLzE@$&`$Yj895aW90UX zjC^h?GL{V~8X1u$M@L59748z&_g?FMnlkU6h{Sy=fZQR%$i^k;*=OUvo zMNZ4H?sL&|-Kg&gX;SItp3#ZZ-Fj(bUFR+-)j)`WW;kL^0CW1^ip}P9uLvffG-wG- z?Vxiq1uc?m2lNpK;{3}V4nn0P zH?iKkE&vQS#0G5BUuLvSU1E?WiG|{4iP}*{^+6Q@gNPpPZZotC+}DIl6o3 z!Wo&e451tolW|u0@e7lN2B1dNGvkdJ3q=$;BohnEYZ#l-O4w3u#|X_(wsl-1Bl71^ z&VaR?q!rIn4p8O>MMiOBGO)#sf}->caSUgZ7i1}P@)B!0Ju98_ zSqqidY^BIv%YC}eTp~kIpQ%_GCnK4GhiE-X#|gt{%-Tjj*Rs8vZLls&gDD%}ai6m7 zGndVQk!75v86_5?U4@BrP%qwo8B)S{bOMbOTcL%nO~)VC4eXUN0|8E_5GA>7&QV%FZK`9DGFbUMtqfd-Rw9->Td>Sa0}d5LI_ z6@sNErbY!KPbqXNI)+>s7ab49CQ+hDJTy5mb}1X@!kOsk89g)VXb-3a6HTLvqH!zz zhO^bex*4^rxmsKtC2QB@zDG?}@~$`#4k$I`S4)5fr;I&vax_yGISK9?8I6yFpG-;_ zJKmHw795?3E9=PR;_M^iAWo!ol9yjg2D#;&ti&%VZg{h{%eZ1P36V-K`8Www64*w7 z1_3T>5bsxLX21Y_C-yqXE+?j>oo>}xvtn~NJ&Tnq0vDo}DNv-W+KIuINZ#usBdFH-T zT)xny7B{arwWut9uFxiL-d5C15Y&r7BazXuNGvuA5B;K+r|a$=v|mn0d|HSK!*3kRx=V z5%VNs1QEAc}k(QWnL>WE9 z=71UJX=QTiT*e9B9>rsX+60qXgUAzh@DcbR(sC~D9FN3D&%~%UFc51a@yJMYA{vK0 z*jR`NAhYw}5u}R!1AsXp?GL~Bf*ru^-yzkS}B_JN~`#rwqD6)nluz1Q0S z_?@bFOs#k<>3M9$C3q`dKm6L^#gde#RrR#q@`RT?;gqLS^>n5^r$hC0tT^rKO6DDxOTda7+vgpsyDrJ@{FwvQGo!yTIIajr`uhUrig?$l@Ef+b zY!jknn-wKH{B=S8tWHy)I!9caFC)Jh!AuL^urbPXzU4xjx(4o*tq&RMzh60kH21{5 zdt&=NTX=Wasjv~8M*U3j$Oz-QBO`nW-v!UC{FkvK6O+J>sR>Q+?$bm(n93YG4lpO6 zs{H}g7fSlpuh<3erp4oG`6U^;Ygh(7iXmuBo0_U5DVfBG@oZ&GmL;O@Ena-Zn7pczO2a*|06+!c+~Us2o8$ zt3b~LmFb36NRiDdp_>(AB!7SseGT*HFV8MYSI;JW;iNm9kEPC$sPfGeA&EJL8P{8# z+BsJa$uP{BTmKZ(S`8>fI7%5n*v3ml`Uz{XGQJUAx5oPFbX(yfnqyr=R6%%%vIqd#C1L`2yKE=A_{R$6he-pw&y^}7le!U=Y$KQ zsXmFb=opysixnC37$WM*jSXVX{Sr&B)xRrK5{*SCV)4ktsH_lsP(Dk5w1Anifywxx zaVT=fq4JR>-bmESMz+DE`srX{GGiKmU!@eU0L%%uORE;-w}w)s&1z{gq{rfx6`S4r zNV>M+n`K`wdndNEb|xCaN^O)ap@5$ErqMy80R%)8zZF>YQJks+T%}FYz8Bn zTso;XZG;>5Cw5zR$xj3TjCaJ+o0IMkm){Q~p{Z*0-t#;{ELCIbJ#hyjWUo_}YKi&c zMOqlRgr&#KLK4&H)1izaqT(k|PJq<(=m_L~IRnM2@vw!MTY>*-We0BEEXo0cv zcg4cv(i2F(3eVF><4r`lOCy1STPNKOe@CP!LuHac3xGjosZceqGE`0cgK8&%XZ~gF zA-S3(O^MbWD0d^ywCJSixggXv7pzKSly{K9U8)?Ccq(6?eQkE}c*@tJ`dX6i7T&ak ztadrzV95U_96;VSS7a1v!25)UpN!>(HN`Pwi($czhOmV3d)jwtXrphl%QCz=Y{HCV zh6HV5R6GXSJvWRGp}GbRgk5}MIgS_^Z!~6@&?sl&r%*R!gb#7LmE5|5G2@#cv67Z9 zr4gnBjUqfopQG6hpYAXX)+*gtYmy~OMhHNRE)hI6$F@Jc)EdU-7t-gzHI3aX{;#F6T*1=%BAS-Y?WvAZ|l>Uwm!>(Lv5A2z1Cj;LKnz{%4j zmxmH-uC;x*KIPk^`t~H(DG~0@{NeAw|cC4 z#*xt58mQ^ljO8n$aQU!g$F$z{jBrK7+aM8d_-Y|V)YrBDuw&o=qlM#W zX=)9we4Hg0aiEMVa_$^fOv7$Y2f9WzQ**8Y%g74)RQS=OV^UN z$Q>gwkEnz$rlMxb%~ixFu8;izlEg?>{jc}~t+<8C+WDe%Llc_#PFZm2aB}^=#S@Ds zZU&Oxfq5IkYeOr7526(Tj987$w;DGtH*UPPF4eeGZQMCOa0m05IOa1iCViW5FDd-F zB6z$lNFQiXE4x<&cX>-Xux7t^PJd{Fhst-$)_!1|?UQ-LjNU`vwSNVukT z;b6MHdEqJg`xFH0ufb|@aZ@t5o;}m_6unIhEEJ`y8yCF%Z^emdERF%#w5W_|!RBbD zJHRInEf$?L6QvX)6(+?(6c~w2V10|NRK_r~r3p4yHSZ?ZAb}GE+5j?cT^mhf372&H z$VKX9rJq12K*q0`MjXkitQfn<_@18N4Xv3hc#o3Ff|Pybgr)No&U+rEOfL~2CjJ0* z_dbe3U>N_g>tJbfhQB+_t#eN-I2MK$TNgh2Mp@F)iaX_KO?xUA_FaB5>8Qn>a@4Lk zN}b>z0Hi6#BP zrxkeY&YHxpl1{wlI@04|1<>;|tQ$ERjf4va222~#3$$pg@DGaCyqH}85S^I!XuyzT zGv&zj|Dv;n^#6E}{vVGVpafk1Pu{4k)&%=}>k>=AD$WSp!hZ2H;)=b>`6w!#U^>vs zU(=g*Uhn;|i@)3{_O3W{k$BWB>=BNMPa}_JCpsuVZhe4WwDkeFbL#_IR2JU?_y9zt zJc@t)(&htqL(mv}3B!-katF3mj@*DQ*<|}P5=smrM4wH=t>q(3!)2a~4Z9^+he$4{ z#obb|RC3idTrAZ?iC+R6vQpWT)6&2a!*j|tFPsvg$cN<|6!~RP?)$Qed_U~C$X25S zeu&3x!^$mwP|punSp2HtS84Hsa(*~q@gtkCDvKYf>8t03i{fw%CK17mkK0P=TJ*?& zLcQsWi0ylh_G#0F-R=GTGtK=oef=}L0cUoH!+N~uV;#Di(q!fN-MS}@Qzu?rzw7x} z_=S#8YiKA6Jpo^n#bRwF)H23Qwpw!f<@IdMlT13YnVIsU{P@*M7A0hl098~7W+7*% zV)0M}23>#?uxvum`p^YA#FWV)8JTgXj>_la%svAvs&P363nv-agkth|bi?T6 z7%W!Ecw;=Gyae-y*wndmlS+L3s`*7iqhpiMjhqhAw0$B3CyJge6c(yE+VTX&!g6(V zV%3~b8RNWKkmuz1I8b7FMdRzJ4zpPTPke}$L2|3Pxt6-;coB_t&jHYuaWYGcOfkkc zXjrhAlJSknvDgS!mM5|v6{i(Bg0)nmU$Gu3<1q$@UH5GL{r7Cm`0vC2?tbNI^sjs3 z?(B$r5N~|Y3c+O(9BIV0Z80-dBq*7u|B#F1u?N1B)-G+?}esGwJU9*zLdU z#Te@C`PkF+Ns*%%`WyfZe@4K0?_p$SnuStrvo<^fhq(o3OgbHNoyQuCdQW4US?8;k z34uYsV^>D;O|IWz+DEpyKr?ksJ|>xbdQD#Km=!%vkXDT5(3%RTKjqt~`Zi+ZEZ%gx zy7irXOGV#$^6e*6)f?67jYcg_29`aOw5k<{8A@TwCh?4`3lebUU!Y%n{ym+#O&V5c zH>d=fok{|3g}RejtyiXN2U&NXZYoe-u03SoP#6n$gUE#@>h+7#t)@-Oq^?gjZC9JN zFZ;G9-P>7P|C|a$#G&g){wdtbuLGEiP@xw==StHps}@6#<3&-FcPLAyI$~eK8(lhU z`KcR#HHD_nSq0x(9bcU*a@INBzADz1n6RS%`Qy%5-ve+D>bM)(cozN6RngCnT!|9I z$exBT22v@k)GVg`;1hbeROW2G}fz3UwGepVw{+Y)IA3HMi zc&6mg!GR-#kMG+%^f+7L=Tl|IZAl%W9zn$&JAuzL45JnDP#(-l4ezm>v15(`9w(vNh?lmbAAv?G3JYiz-~0 zl2*8oPeqXvqa6UvZ1K=$ws6wSRtqiYs(A3EP;~BC+CcNL9oJ**aRXCOyjcOJWIL9| zd5q2MakJMNhoz&4*Ph}r*c5I@^4QabW7?fN(!ur>J3V`#gu#=|*YKpts}Yol&h7m3 z+i$SXZ|9%KWEdd^fX{Eg#wM-XZ;Ud3swH!r)m}L@Qp09!rzSGR`W%GY=@12I7b#tc zrQbadK(jjIYG%$x;#G^q1FY>~@o!u~f`x=W%frmiX_N#{x!Fw3^@_(VZ}N4daM1wQ z++7C>N`e3rXG3tAhDTz&wA_F9NdT)PdtW(-DXVS5t57>LX%;2U?Pvn8n?Z(Q8<%uw z5lfQ_6L526{uNwisW4M?K_ShfG#y3<|J+m*D~H*Mg2qz1`o<=)N*LSSm5thhs*lmK z2m0B^Sjp;q=R(TYt@@zLgUXociqpRGd1aw(u`~hAeuwJoNV+>%dqTD?J~cHl8i%1~ zEaRjcW6EoUAY&B7BTxjwQ~B2bY@Oj(xC%2DotWMMGn zgc_q3i@(m!g_nqmJ3sQW$L|fX$DbT$k3xWSAaz<|Qi@m34RE%OZ|E0M9$j~d@BAXP z2~w%#x#}J+hE~8UmqMf9fp)+P?Ep*x&2%}8y<3(z<#};@d2wJuXvxQ)7boAausknL zzJXyyHcpj}Gc*;JZ(-*e!#Nix->fiz7*&RnlOCg5u3`0HBSS+=p0#rASzYNOk(r}U zqCId8`7xy+v>uHL_2GyUOZfU++pOvMeE*C^*@5?dgTiA~B}e<7oqC=*6~%GP1EUhG zAENO~Ax)uzIXmqqV9Eq20p!?d}FX4rIL#0?r4Hg|Ck*-dGDb_;WIrU}Qi7y1A) zy)S?pR4$|^iJ+vTp>gaPp$YUUWfC^|*_}Lk@ySYGipEAKrxa`|%WYi9VRjNa94I)( zrm#8^qRPYk`4ZccVXm#5o&^}+ATD+Mm^@T=JYz0 z;f(1st5ae-c1?!a1aLKS1UX1(ZiOp0*zjP=o4(enDV(q)VUp;EX1}x%QliZXD9)J( zwq+qml23tHNEZ?Vyf9fHr(BoFDzB)akyM_b?V_wVm)*hKTIWsz=jLt;H&Yi&vY=&l#A^o3^$`{NuL@DUH zUyiIOIfXAz5DJC!zmJk@p@t{QGYKVaRvVUA2^13vH)LyUhN_&GubtA(0PPtiob}?k zYW~z>;E;rV<{e* z^cTX1te@5U;hy_+ZXidzs8H`VH{Zi_puJd_VEcddz7yku1{XjhSj0Ms{(#+tr?6!d zy{T}|Sxs(`CcCt4zhrGnn`7lmA&99o-m*^==!Pa1n=eAZIEr#$IdLqhzhTHa6}?y> zHztRXtf@2fSiz3n%*A?R_h!Nz>nTitiHu={puN9YVKJ7^L#z$T-&+lp%LSkd5Q9mI zVIx6o3S&4GClCA8vXdq!*3rrl%?B{n$X&lQ*3tnK|9=-+tgZBaJ@d%15#=9ZI;?yd zAXAbXXO-8g}@>KTK-kY zs`s89)3N($%}Njn`Yz$_BTUaCi3z;qU#qPY=1l#J8ohXFE(h!Cnt2VRc{}$Ih zTUQ6KacYHdQO0q0GCGlQjM3pb#k3in>*I>!5K3Xy0JVPE2+UP!`7Abd3Op6>np!Y+ zZVU~3mNLrj$xFb^6pR@c=fIkdF{`+%)KrQ5$;7njMqQuVRUr5ZY4eCsuwqm#R8(E5 z{c7!PkN?d&wY=?}7e9LO#{SfnL+X}8sq!b(@+VTB!>Z@-&3!iqZ|+k)N3qeMf;Jjd zl+3%JxhwW9w7pt3@4Dk#Hy^*{YhLy>C)!fJb*gXOQt34)D0iy9ov;V=mn8Q*dp&+@ z&#~n_$C883r1m_k?s+!tsadQ>j*p6zB_LT2mT*lVQKWW}UYAkmG^5ZNTS5ylJtfO7 z1m%K}W@p5lnX0*kXGPOq2HS&Z&=}ja>(BCi%U2vTIOWUKFD$!HjdVZjjDyOx3+B*H zGYvkE1@>9jY|%{7j7wXsHkH=0qCM-Lapx?nVgXa!`_v4m->u~zwht)(4k-QjZ$S59 zcg78)+8CYj!1i^3K&MWQMMsrCK@@JmX&;j(Xsc;Nx1P;7neY)V<_i4;MI~K+ri76` z-<(>`-G){DOcf5FQQ|TVm7v3tNLrx9eysdQBxtC3vWo1BF@lGpYTYYF8fASj;VWFU zKsH@lpuaF>#Rt??{uEJ|(XPk;djD(vi-A;WlUfQ(x|ZVZkL#NgooY*Os(y=Fzh(X~ zwBz;dOOBKgV?oQsqQ^$_nuVfQ8n~v($k0@w03K9 z>%s5auRrl!-}iiQs%@Xarl-G#LHMq;zdqTpk+$}f(bk?aY=50UoUH34``$;Eg3Fb? zNl!1n*wC8j{aXLk{`n`7Um&DbuElDBcjxVm zUHM(ifkLt_)&s}=wlP>ueLULwDV7hZGV|>U*!tsiLxDOb9?0tXM^w*2R?l}TYi?CO zvRwH{;^k}mQ7b9`nK!Iy z{09QR4q!5tVC$*VEd>gtFJ|+i{TUT4gydK{!6w?8g_qTuFkiU&;Pf@=-SPLwmwmgE z?p?o#@|i3X{&V4i(Hime+5!d3w>|iCL)rWfEL+AMqs|Des%g4d#;^hn~klmtT(mvsw~bF%f8wW!C9cfzDbABy=xyha2(tI7=_SIgN)}S zrY;(%dDl34|2cvglQR$9Y#qK}x6mo*zf=95Msm;&S>i8TO!-3CAT{qmNB0L8k7Kw^ z`kMI`5)c>malFU8;8@&1nA+Vh)xQk{KjXLbWK?`G&w`b8v5|93wG zpwXA60Q~xbX-6L06t1UaLZFCUdZHwrhs=eiEz7B}53BG-ck7WSO34ffybhD_X)}tr z)=@IIa}WH`iG5gfs728LHea!MD4Ttauqp6!nod{NsFiI=PaFIio3B2R za@Wnf7uKaqE0Z-_lcjXSGRa@N*t_golk}}g9K6-myWG}`$xGW#wQVQ7upcVXn%Ia3Oxj7nq-7Evu0IhWW%eV8+`w00%cj{VDgY z7B2E$WUNdfPxj$(y~VOj`R5e$F9>{x08y9n5rM}E>?c6>9TqDQg(O}s%>4$r3Yd=Z zf$zUj=$8mkvnY=eASsSl0~sZ<<$eY_X)GHDzH|EDisOXHEXby94{t&iOqW$ztjJ(M zyHZ|EhGYORB&!x&O)IuaXUWp+ih#$Bee7{_KYQc=nV~eP*cwD}S2|d#wa#v`62pV6 z#PA?1F+6f0mx{axM3zi+?&L;WJGs%;PHwb?sV_np$R#5m7|{Slr?Za?$ndxc12R0A z0U4g`g@If$@-Ab^ikyASnv9-gO@=44Cc~4A<2cAAB%cbFu*Ml6Eb+L3!r^ffg~KBU za;eCB6HC?T43M1}9yhTu2@lNQ*)s=n$q>Aou*RvUxzIa9yeeMgohRI9az=Q zszrq3kpq+=+fqipJwNrfDtwG@xnh(!-SlF6c15!tD*)P}Y&h%J#@LK$%e$^{_)F06 z6#;u_vC}*Ocm8EnI$)>jiCLTR5R$@t*veH&wWYMrhzS}8@-7@Y<;e4dhk3*_&vdYZ z_5kvuvgBRXuOsgBbYuh0xln!&vBNIxlOSbO#!I_mp{3$BstQfDGA`_^z}!FMVhgY_ zWsXuf_;y(wQX88Zi}T&q#}Hr zrxTlC0p=aI{f)Q$ZOi^Pn7sKrRDTB!kt+4WvaC3i_Efz7)N4;IuKnivudn}F*VV3+ zC#-tHNp|1K2DYU=2y64=8vfm1dbCXkHP`tLkL=y%sEOMk1`ZKA^e~!sdT~RCzqda_7HHoc$+)M zGYQb0`f1T0?oK_CO7?%#8)86nbmgY9%_CQ z1@!X#55ealzGcI=#GmS0tCVX-FsU?Q#H-u)SxtNeqs;iQWq}#4X4r|6kvjip%->d+ zv(X08)1py%3Nz$~{Gut|eM&xEV%?ZJ4K8c0eb$-8eO0 z!x`I`Ev^0#Y3$ZC>;N>EnH!>4b6f2WI969Ung=*dH790@qA_M|fSP1{SV5-=Wlfw44 zQI>qsMk#{(LFkPb&};rd__xE~?fhP67Cm?|Zw)1aOUK@BN;USVjXlZ6O}N#X%_&E(>gY{6 zdX4!;7F!pq-l@iqc=Kk9{b^j)b69|?xU&pqp9X&YV)yF z-LaHoP<0F@9fP?Ker|E|;@Wpw6Oj)pmxhtY3#srfHB5PQ-i-XPE4BNWy8Bovd@R*6 zsJ0BI>IYMfA=NRIbPRn=3vX|%NpvL3H>5mWs;BEC$4Ae7ICA5q8XJn4Ad3b_&?Cae(R%d-^^$bqv}yl~hl;>SU^gu6q^x3LdM6*%&iV*$(g;Tn{_ zmigtC9+=WTf9G&5i&G`n$@Mu5^J~i-jC_MczDR?X^ z-qxY~@*_C!P@^_riSrKEVt89E=h9q3uxg2tzK4H)ncqa=IpOkg{ggzn77Jp5bp>A- zF$_sK^h?Kv?HMm1XjdY$yDtKeBnKh8gSHYSa$hjG%$4_B)ejf%E4Is>7>-EY0qJ!B z4=fn{FFZ10%y@*?y^=mM1t8;&-P2(s+35SjjboD*m9mJDR%K2|1_$}Q)O=I?)1p5t z`h(&>E{4zI-ftfK`oXUqx_U^D!I;E7aXr>o|0khhhh-TAY)RsJm}>a3?R?lMq)blB z7#!j_ubJpJ#!hgff5wZaR)~8;+yIXKO+USE_oQTD=Yj3YTKd)pVe6tQ=+dPRrhE+wWAb zf6VFpU55ymH{WBueGpMCO5OXMFl?Mmta6U9<1IRj+c}^dN6w7x^xKu7Gu-kr6|$*XHG~QcSI_fzBV?6|X1<9uIQ5%MBqW9HIc|ZEK`d6<2#-J^JibgH<(ww%t9bq5 zYZu>gWxpJM|7EyRO}kXU+FfdG_C!q_!kXWl)Re3_xj=8KKEv5@)<)4*XCg>m81;38 zx|N&ovxC0^+}Y2Bk!k>E2fuNcFOcddNK$2*X88^c%ilyxS=XqHT08S>PVt+%rDZh> zM*=sP$}7g{JK4*e6At+$!p~kqrh`(x4d3^)AOTuLz-tCO8bGCuvuck(g;4UHnYwxPqT|q91HIfK9c`W;we!6vDAEih`Y7 zu`bM)M)5h`U)lK&61~==4mtf1&&-rOLq8SuxS~ud+KLp>lG21|rWGmr2`hY&ekI9> z5PCWDeS><}pCKhE)O>QX9S0l-LW!zWV4WIRH~;wjCc6)%*M`-#Tg}0VwXkDa_Vy;dz2@MLD;jVtO?l%d zc6%iZkpQ51^_G#%08ZDh<(vS;)Gwk<#tBG$cfUSn>?PI%hLuL6h-w@JtjyR+@31k zp_bC20E|R1H+}kB^>5dw0_)Yl`uh` z1hDlh&#n!~Jg^h3Y!(q8uJ!(=Y z>l=TAlu8SLQ8ppr!(f9+LZ|_W@6s1PgD9&m>-z(jUnX{0i?#lRURt29b&jvdDQt4k zZfYX!Xz2o7?|)E7Ae^&Ha>HeT8J)t!sdwbF&1smeaJvX6%tA@7M<$;VIV z(EOEK-LUB)vthJjyBBAj^cgPZ{7QB`j;2QzzNz85Oo+XV@K5P{5Qqi!i*4^TepHkU zZBO}js6IMkr+CfnN}PB1m0fS_n%__6Ii|z1VLZxD!(NQ5YuJ%*{HznQm_=Wva_aXD z>4z`jB~>w~0{RA3AM^x+yi;!h5+>tPUE_8Y?SM{Q;DGZSFIIX$Qi#VdXwV*^Mft+| zGc052#0PzqMO*j2Whrh}yu6N<*Xb~B{PP32XJ%a{0pArb(Y}o(KU$8=URKd4<~It= z)?>71izaL{*co8TyU3Wgc|xLyFcT;`>(;)e)Z+;6+8IZzYQ~u`OhB}7ls5n1?$gi) zK5X1sH#(!n*~-1YTciHqMqexozhKcMyxEbdALkEp>T3+@GXx-vL_1pT0^XZ|zkt=sut zfI3+3mV0puGr)r5;~MOx`JnOpMalL@Q#E_l8d!DO%R6qb?O5vl)`_=IEDS6R+*uo5 z7{C^QK-1#H2jjf=1B3F$bf6)347j7b<2um8BORo(g{!uuYs0r{dzNc^t_5&fms-0u zS-bVqJAsBPN4|O_u|E|EtATKm-IPlM6)KzzQP1>-uf3GqdMI7fp7gihp;GX!_eHAX z?Ev8hs}m))4|57Plhp}~QOouK%;|r39y_pNucqU*0n+u2>?OT%$Mv=ko0ywfS!oeiEDm~# zoLl$-+gr#0%Ls6|c0WH{JKy>VXGrrCs?qFl8-T0IS-1FfV)wPp$=0nn`Hs$UuDgy? zzVWbvE|;^D4%Nnk4%NoP3jCro#BqQ@4crERL&TaF+mo%^)OvQdm=Otv6F1TFIk#!2 zU&D!0>9asL(;|z zSNzgBY>HM$uHt9flf=O(nFbEtABbft#PtvtE#KPQ{~RF@^LZ%&f}F`(C2} z)~^`#SJLZl0`mkOpW@F%s~>@J>Te`&!t z$NpAq9?^y$E%+sZ20?633hRt_TG*6a{k{YH-_wh;$?Em0f5V(NT~ULR4;!!9leL@G zirzV2y1aIwCRrE0wkBD=H&wn@E#Es=27bTz!qUEEL(jFgWW!dqavN%B#bp=WVCs2b zVfqvDg|bBp^7M%KZP$FTIC}LZ=Kl!={v;RUlz6} zY>VpLy5d9tOmt14_OlKVrhbKC(%<$83;KyM!g;q)9$c`!QIZVyrTqP>zkklV;&O`> zi~I0{7h*+X|5D}KhnUj}s_mkSV&Rd1F)$uh;PK(0{Dt`9zBev`%fY=ASQ>pFJeS

Zg#OtP;+;-2VZwaQw3X literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..157f52cc84bef78a78303bfe7dd35d790efeeb02 GIT binary patch literal 21392 zcmch9dvF`qx!*3{Z;${V;#1&D6eW=~AEIPgrmY8M(~>B~lI)mG0z+7kfbQq zG3%Uk&blUDv+havtY^|Q>z(w@R!vp`-z1o4s%L$ZzFGgIpXUr*gu7Z(>`J8eeV*e! zz)v|Q>mu$*eM9kdR0le>kgNRv<$`!?J+;=U90G$BW+#~EqT z)zFL@y6hbN2?qtg&~lf@^RCFQGM3Pad%N~IP1)|RC{tQ==-$mC1a4U;_n?0cZH-d~ zp$&cQuINcSYS;AlkKB_E^kgp^o66ppgiiFPr_`Iu5vlCgSB(PIt({$)(1kJI7ipd1 zg*}+LZZ^M7Qx;(_^7jipkp^KOo6*X-+K)aRz&wor#}#SN%)*|EajJYDi*NvS_p&yX z_VlA~5_(bIx5KRTq0Rms^81nh81k_SgvXE`P-#b*bE3t8Tb9W|^pt3k?gxQ2q{GsW zi%A&56Tej#D(#56Tu6YPMsS6=GcWEhip0-4JT#$DKWkn ziCu^!W!rc%B8D!{MATF=F3P4e(F97)%_XDpSZGGJU5LCgABlw{viait98k@dVknVK z;ZP#^87-hGGjd(b)V=O3x=|l(b=PK{kZvWWyYOQT(nh^q6JK+(PmSs<4LD zglTR8h>oZjkEuD9s|rf}_{7Dr=g&Vs1{l2X?78PJ1}Bc49lJ1NRCobr;=*c*U2N*j z!@ou1Eif@+lVFkjq;VST@hAMGNiastf(bt}eqd2kHo=BLwnVIgC1S?J*l(HM$I~CE zRdL*;tyJdNR%S1iIk%NL1Xsj~T3wh(H`;I`?LiA3q`hiuUZktkbQRLof)!I)EgLU} zrWfCF1aKS+h>-IxGRVgl5l2R!{b~`$9wmngj zECw!Ryjpr@8(xv-xTL*=#HF~aaG=v;pgXhK}96; zBQ^9O!}A*#SJ#*smYNQ%2_Hu9)qK>NYkW3eJ1*6Zqu8;6zlW%t3zsGXHR($kh2BEUflow z&9WKpr}{LF(xfh0sZlJD6I4k0A!}@PA!pn52euVJC1Pb;oyb(CsJITFL5`-u@8)bR ztU=iv2fGo&CE5m_2|qTp3ZqSGhCRh6HJEzcEn!X4lj?DSri5x?M~W|}udy29{U|Tt zqr8+>%Xg!^w31L>N~`5wlv_0Qm(ogkkqE4iJ&CBwFhx>DWzR%BIX(;4It#8F5!eD` z3sPB{v`BjljA+C`q!ZNNfI>R5B^Zpn0{V9-^iS#2gd+efbDQ3VOxJt$asK^hD_w{)s5=C zTV`b7Azz(T-JXp|dk$|@AKtQ??T$Z?O4`u9N-Ck%Obn>Jnw7g3=zSF0EO`B^i#c1v z_Et+AoYua6`TZES4CbapHR^qdZhp+YZH5>$Onk}r_82R8;2J$mHruv10v@jVsa(}4&gJnflimCrpFOd~(RD4XT<={_uJnm*^xO#y>Vod>{1Ep zcypstM*NouOGde;F#2zC zT8h={G)tiAY-tVRsnQ|vddmJ5>RU1_8JA4Zs&;?AEFO#W!W??JCxEpQ4}=0!%;HK!lBBtV zMIm2R&Q)dod8YqDivlvCLD?2zc11~F7v`bq$CVc2iA3~rlqu)QE1_h`3Lxd2buS#B zB}*Zp_6l_=YPxs?ul^<92kXm-Oxc{6LoKo~BnXPUvzPkVV-wE+SvKLd60%F9{Ul@) z)RKg3FDeX)GQTKi1`}k2kwQubV+tswVG9zqeiMZ+xRf zGT|RQb?2!q&R|CYz{-h2%btG`{84c2LcV1{Y8k*Syk+~L?QMVNAFXw) zE#w;>ml__=R~?b6j^x<6Wh7)H>iLa@bJeCVzW&teQ#n&3TX&~q6R}j;bOXBc&Kl7S zUQEC0%5pAMAu*N=DZ_G0iWi%-dQrAStEj4UkOb0eQ#_Y4Fe$k>dLka1icSZvhr}qe z?Yg@X-9$$7F--S?zxja7&aZI9BoCJ`~*F!V&kp%U(G}+#u{&_Kk(mDJRPXa&za@9(% z&g{j!YoFxWw>(y`x|WwRHOotzHqRTb+pdD^%*Vp#7=OpFF_{jUQ3sf_t9tnin*!Ma z!G*P=<9Q}jO}%(XnhEI|SzNat0xuZ!W0>8JgdD+GiHC7EO^6dHlldT9PLS(X$n2R= zI07@`GD|8*};FU?+@x~3<)N@5fEYcxz;+?S*$)MFc# z;TkD!FiXMot}?E2k}Uh#Xbcpicpg-8Qu|Z%34jS*jt;3T?flsJz|i60z>QEMFclRO zU}|M`8kAQg$)UbMl|^~bXpiAD>e^?-*x^?)&O~CeIZ1ve4DmEFwL|PCSHn;+GzVT5 zNr;5o-Kd}9#loZwKO+oyZZx$QY;$|<-MQ!C+1IhTFfewPh1xcu3eqhFpS zORO@(^~^tZpQ0;8E1 zeYg>6bQasgbFZo-y7VgJ#7nQvEr7$!#KTLk&W97jOJL(x6-5kE%eEqdY$Ajnhe*On z_7rIyJW7Zs8H1Lsu*A?IEw z+2aypKxNWEyhN!*0@S+rDuEP$?6?t4UJ0^J%PzD7%SRb9)@m?vGby_nN~ymtwcTI> z3^d_FC6F(rL(wYSLDhjwd>|pd4x~TBFL4%Y6=J5kF1?tqZijWe{9M85UOu_$Y0gZp z8P=-T40pei_Z*Ns2bP~Hv<7mf!15Tt%CqU@W_2LjxOOpLJt$QVEu=U>Ijh+*^o)Zu18`GvQ3U&`^L!A(jcJ~|3+s^bv zranE9p2*ueBwI($)=@CozJK~pP8V$Ug6+U3wxJE%P@$$NdvN{m{mv~TXCMBYL@X1w zpPS8Q%dcUfS;$PYY=MVXEuUsQ5|X5?G#=nSjYuVCY#Vv4GoPRLgs`Y_XCh3noS2iPbvo9$sGkB46TT z1~6|vNv=Kh05ijTeL(NVjwN0&!=~B0WU`Yl+EUEdUQ;IhGq5chI=CbWHudP_L?h3= z#I1JS;BFdU;%?~MG|ah^)kWM&Pqn^oXpTJk(+Gxaz_k_v#9w~$bsMoZz1{Ny_ZE*H z)vY!qYs;9GVkrGjwD#XW!PW{;4w&}-G za6MuykFB1f$Qz5kxkF7LeWowH6phRXijhc0lp38mp=wPUi%Qj%E?!~5oP-jlfvOar zI>IXI4TR^8>XpCI-lO1lfJGy0^wF549(^rDX0q;7;|y#`Sec<%pt2Vgbq4|+fpas6 zFctMWRSqQrLi|RI3|OY0;`a$@osvDZnAJN0xXm&TA(R~RUJweTa1bUMZ*uw#StH&xEux4V(}!9m}P!BG98V@p!q8buA)LH z5?#@CnLRxOixOSeDfPr%hVXkxX8W6bk(*+b^IC7t>)87NJ_SBp_HGncIipE~xQYrU zz`Ds@^i!j3=zC0j5lLpat7h9WlcrzVk4{Hok(+bk=;H38TqWx5I|>B@p}*0-62d2_ zAwltkFaCl12Z-97{{qf?<8PkGII}OTy_ByxB-I>JaCcFS2Qd!tV%(&c?4tWXB6+UXO_)0`uGy0}HZ&t*x7NNku+}a$^saaw_?~$4 zyV= zzjo#1rqi1?y?$i%$nwbtyWkr&nW2CIthlxeMtgO^RrSW{+ov-Ok1>!BF zZ;`5|0^qHjgqO!&{lynwz{gWvn|>)*JMdobJN@tW=c@*#s=?)Pgf-xKFb^@XVk|VY zQw6vMSQ+2+)uyjyht}+Q-=O3h%(==ZRXp^mwI=M_kl6i~Ky7*NISF~D9Zp?C7W0wKmiFxEdYjZSy#7kQUGdAvI4xL)<+C z4RN;*8sctW+KCaXZ_Mn^UWfCn?s2K^@my8;+_F=>X7pr>BVZ`DnjlN&KRi}@++z5p z#c|wk{-uux3?sL6(3|TP^h01tHeWag zVF7OzH70(Wz!U)d4Acd!pTPx(RxBb$!)*DygVMhzjNs((sopXy@S5Sn!5;{rJV$SJM+pG6&5(;p=H3$7ELnO8L1OR?hPHOsQ;)gv)g!0 zkzA`2BFVoVn_Q)7nuP^rzcxn|J+kR)JQ@>;l*P9Q{D{E!2#}(H5I{SnnLSUYo+3un zEj&uK9;Mon@E~Gks>KfOe^+t+Fv+zB%+K&k{2hR@fVNsWS3Oy=Pj1%j$=B_b>h`WU zHyaMDcjg)n~unOSBLD$Glm zV*wb+mHpN9A;ni3Ugch`?xw}a7Nm9YZ?p?i?`uwwmM%mRVfdmbUKST&bEqrw*c8?% z)4Z|wECMr1rS=0XkC_y`%+e^@6~#rTD)$G}9dVHuYagC9thdPZXdGMQ)JGD^-a9Dx zItxYP!4}DWS5NZoQVNR(wqb&(NEr*?nuzuZ7m0f4491ACUY5InNNCHuWqx zT2~e`ZL3Q;M=PBs_1v^N^p$PaHfD}wLwBEC8^~kd)#df}eCBtC#Cu)bH1nObd}F7GlxZHZA47I^t7^2Gz89-F7 z-;1OpTaro|C-Uzhl`5iiAnnE_qbgraT1l5O!c}kD*#cW_LR`F2>3R4f?g^zmjj~Ym!l(vPM$9Ou0kvG-Hg z8Oc7xvSSN97G`3J{|p%#!A5IG5o~6~K4Q|12{vY(kuj8@@C!416r;yWp>$LaY zt$dO?s-UqI3BQCGz9QSAiQv%Si|0LXva=-=;7#|_-|0wPZQFM1cg)C zwwf9U@f9cR%J0ASC$FXF^VSy0+Cn2xTkzJb%s+5euZ$=U8f&AsF_K z)OUKvX`cM85X;1=u`?IK)j%8_X?TwD_J%CGs|46|Zv07wCeCxQdDLb41L`vGP}e!s zWl`(uM8B-psP`NKe%t$qx7mKczl!`1N@eI@7wWXDbz+Yt0)DK{uYOkn!M;j6g0yqN zeVv0o|EPUKp32tog!e0-sM_`fQB(DVY`J-OBsemRATk`soOlzU$0(bLt<1>gsZerc zm|cbj#edDp#J?rHj{syNie)p%k)9X-EwVl%jv)R!0)GWi%(YMkJtF>lfKeg{*^I5# zBg5i7N;?p_B5ffwGdRj>podv|N^8HMTZU;bVItIRK@bc&4O7CQE-=3IH&mZh3A80t zkCwWl#?RKlIaoGZyS<|YQh71b^3)3dsEK-=*J$*)zg``4M?_u96RZ;7dPz9 zIeYVia%)-ZTK7g^AQu?Wwwu0@x9yf}yL0TMCogT-8*}!?NAxpe&DQ4XyYsfal5KC! zw)cV6oAd9q{r$Yy4rRK6<-b@DyCQe(f1EZ{nxLH ziWnCc1D|GgeU;8auCS*m7M9{E+Lhw2F`gh^00*$B-0rM4K1JL{V;JB=8oh1PBV{>?0wJb zagyC%qo2(s?Ij$JtQ$1!V&i+vLW!yQm_MMKT~%i8r#eNZ~7H z*fK%6xCbK=PuvW?%8cSATq&-At4=;Gkt}8yBE=76x2{yFnB?MTRaASFz%K!Moa{3v z*@{NU+a$WFWClPs&W7g1=jir40a6G>vaXpRR01LnMUs*-DLd6Eqy2cIKzJlz#kZ-< zqp15ucb4qYbuJzntaPCspZtlM4_!8&N?^n0MhP4-RLKEV;gm2g~sOW+50Vs7}THQ5i+Q! zkU>4r4At8JK4)-LDBCE>pV=7^yC6vEkp;aP8gt zK3Qo(0JME71Pnx?tZgI>;tjZ6(&dx}jcdK1$Q zK;U$ceZcgl8su)*o3u{M@;8!t9ZIjg(6w6koY32)kXl@@|(Tu^si$JXN8e>7PmQ<*-wabwYNr zucCvBl_EQoyXeT_5!tPzLnH}cq^O9nDy|=zQCJn*F<@mODi*Pl;Z#qSIE}&pDe$4V z@`;7^n3(yD?@H;rY^4_BgQX8f6-P%^P-(j;w-Vz20Ma|ew8(N%nAWDNg{M1!q-yf^D#EFVqB9#^4kL8OArEhiD1mAu_+=Cx$rJ1lvJbEX|m70HzM_DbH~oN0%%;P5V=F8(RR ziLRH95^+u->yJU4@hCWE>b zzamzMnlur=%2u$+{0XL?oL4@lQNOKGzaB3uamg#t%-DA`GbqDu8^z}?TTX_=8&T{M zKSNaBV^)*}i=yi>`OD~8q~WfZ7G#oeR8`jR8 zwR6+k{Q7IFujOp5oA&C}-FbVXWN*w&Z`iwX_O4Cu?!326^0wt{ZJ&DE^4<=~OWQ8D zPZdoQn<@%9W2yj)M|ptD>~V=pYK+1xQSr8;GIBHrwh7gkUmRhBs(e_aj46G$qJ%FZ z0dbyfOwxxnNsYk(vP~+U(r$e=*vcm#O=w;=g6|+m{u0ufAi4M#xM$!OG?sgD$Hvm- zm7Fb-vmLu{o$a4E_iQ-#WRrR40m*qF=Nw))Va4mmiHMGjI5tlI6bU^^(?>8LR(!%i zLO`t2ikR(TD=%fj=LHD-iS|3|a<~&F9o}-fI zDEWZcCgDT0Z)N%i2ksmoo$*s&;5|Ronf3N{{G_&ndEbcS8-X5K_KnbV6b~XsHZ9L1 z@fLPHW{V}dt9Bx^Up0YL!K)tSt-#P4Cd4_^1n<{-xQPFS02_@rkWayBp4Mdl z7S!$h{@vM&Isd-Af1l*vm$U7Be(K--gV8&q5DD8)#Ba)#wXeYMSUdC|l{MJZ;J)8ZAG4od2$Y=@vY!@e98 zk5S2Y2oR5w-AXXA=x_L#3P`rF)h>I3!B7nQUYOva57lA$-=xn#WIw`D!QgPQ*e zq-=!zCOth)AVgq_z$}5+2{3Yahf<6tXk|0PP&@{|qFXZ5HHrc$1qvy>ODV>1h(;%j~bfRpp9jfg8-}&n<(K zH*9hL|3M?icjdUw?dJn~<4QfLJ%{u5PRZW6YhR^oWgU|5mCzb0C(AUOSZE*mZS$0_; zW|#XXKlcB}ah9wE&+%OUP@!{gp{IAtI>H|TMfvKtoRs207mlqz?P?n*T(siQ9b zX+Dc?(e<9~zW*b)lHLIZXb9W7*bvt72yz3I#|$?Q)J~eIw4zUxWh)Mno$lyy4H)G1 zgWjw>d0u#5`UJaVF|oM24@xVRXi_yTyg%Ex#o@A^V3&Kz`zJnHV982woac`5WBitJ zjHfmT7TmSztCG7-$tyf|_@4i-;p3vB2WB^$PIDPsc}9ij4O}-!$3b)mkioyNz~$bR z`-zV*n8j>Os*#BQSuCov8hWRtpxoN*d}sP*)_7+L{{n-@PG>#XW#$jka>Jz(RB=7{ zkl)Vx%OG3B((8CYm#^IJ;`u!p){8y#4?=KP32g9YZgJH_s6~(#SUP)i-S{rLSj^rj I#boFI0p8OpvH$=8 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bc0593d0c5707c0e5c773bacfca150a9ad8bdb65 GIT binary patch literal 6727 zcmb_AZEPFIm9x8C?(#zvDT%Zs%htwJOfj-4Cys6TRwtxvEBh2!#W)s0}bco61drxe={S|3!*qfPGYL!Bl3>GZ!Wy)i9+ck~la6648M&u;d7c@d&!dH31ZW>)cBL5K*ZIb5;25|6IaUCYk z4mihCxK7}Q=DTXNqVo$F*_ZHD+j?8@Z7q18=#pGwyX2m+i0+Rp;XR@UM&xWB0pMML z?*M$a*lE&RBsWmCOSHr{jMUOt7Q2AHr;)yKCV-z8@Vz2+1qFSNh`19$*07z&sjQT| zA}IzpAuYVIn3fFojZ8WY*_+8&Drs1zqq6ddj4((W%p1{J!S&AspS*UT1CvQgM zF>y-5G9l-xg$KxRO{8!Fa9K&5h$f`z$`n;#ZN?sV!2eyC(=a8XFfCGHMx;SP#^|at zzB(sK@$<2`lms5xAK3+XUQP1Ooi_>#aoS4L^d1+dahsUnIFdUbnI2lPV zDsw5wDwyHWO(}VEI3Bw(TtOTSJ^%c$98;vj>FD%((OF3zPRG*25g-#&c(_s-OU@2w zlvrF2r57=195O*Wk!(MJeElucG|QJ!6TrS&ga6}lToGfkQeTeit;-=3^#5WxlsQSL z56fIKVKx&JrRw@%4-uEldPVR(q|{pjUQ+0;BT0SM`p)4<=-r{LZSa~n6dVja7c?wn z6%8wvlnhQz*LEHdBMW>)?;rmwfV)TmSbK_%bhS#bUpdrlNs4uwQYV7K7w~;quUMiK zuKt4*e!HBbnz_Nwrzf6Jhe0ztBh%4jDjAzLH7J6mS?QL+$e9}k8&54r7!#J*1t3V{ zy^t9!C}KvEi9mvY$y6DhCLUxSu%DpelaB((qpzL)8&3ba(_egbwM%n`bZ2P8`Qp0s zMa_9!cOK7=ZaUgOa}`<5aZq<0R4oV1g)q3A6@71-PT~m6>HG`G0Mpqpg*l`&OjPrr zvEPOi7TQ)Hm||$TZB&=2WS1W))*2q60fbo!<fZ0MtcC9skD7vPxg)6Km@KfAP4$iA#T^YsNL4oqZ=4U1f(K}fWI zMEa|_MRcxZqcr#2?3S8wAQd%lI$py4gA=>SC|Y)r1YBPuhyOv6ru8uUcGO1o!LBna z+MtIz-7nA%GfT}ozXu;X@Tt@7!l%9#|BXBj;8UmDiO+7cm224(pr+332d3?NV=g8O zkU$?61v!?8#iOR5sk*^XBqA#~5;-K?$SA@bc&AiS5L zff&Sv=%NrK)JZWe$z~Onz=6onQkqRjNu^>QF;S@})H7Lb@LK3daA?4QzfhA(5=9`2 z{`f@zuOSN5GKb#n1dG(DoK*AXnnHIe3VqTgf^t2eCLT~=cNF}9Ht5h1gSypdVV>B| z%t}e=RvMqp2AYgb)j)*K#8Y6xAc=`9fKlm#D zjnFhX6aT;C!q0&Kc!+?*M4kq#iH|_V_a4nlq;;L#kSN`JLJb97hCL?7lClzo?SKyfQ%trzCi-KrQaUv~XIP`@G@Jws8pBzJ z)LZ6LF*tHnH;2Kbv1C{XUxNX*#8JT12N^s-h^^+aO*B}@6s)^sacobSw%GP=dix4jHSe>!_u1w1%jdt{Y~KgR z4%^;su+`bSJVD+v3-#ZA`)!#=9X-p|EvG9#TDBtI^-*r+$Ln0T%5|6cwoje6odxSX zr|Jz!^^kx3ok;G{k{ zsd+Bzp39o$b=~s1YI(iVRaWKpReM=^{qEJDU9GIp>eO$;P}2HFbb#Iw-8-W3Cw2a$ z%Ac$>d|&1ER~xF{=L%Ez-hm8~#t-TIkjf7|#b5Of7S7-MA!Lv=KB)6Sl@C@&taANz zZh?aDUSG>#w;XMsp16Ht<=9WpesWf|^vGmK+-(n_UptR8f258x246e)HYo@3J*FQf zkSKf+DxQAC7PXf<6w_B$C`CGlp0<%6f|rHxjrq7C;94R*GP9MgCho3EcR znmup6Sz5==(kkQxUVU;*%eXBHImp(qwCLOp+*&AE7+c$W=4|4RVLaS6<&sq)(Ngu< z6RiTN%SftG7!Dokc0qf5D1J&FJF$iWW>`w_<7Q$d5@PrDOA<`od^}ArZ!Gn*G$zj3_3=MV~;$g*L<#arz;N!s0 zU=vXV{0aBw#Q3Y1&W)Nef$44xcf{<11oxGY!wfSF{uRnKUNn&!8Q@ zL|9tIs5~dh_$>LcnQ=22yBV2O{ExlDnbaDNO1UBiYyKD(=u?&nPjE}sr|O-c4O}>w zp?;)h@$g$fc^N+WH>P(2o9gV^aP+M^`U+E;V?cKdlo7+)H(dux&Wm3Ss?Lj$zG3Kg z``-`%;+*W@PTbuErqEGfK3U3-mD;?YUcY_4@T%4(=xsv&e2HsYnNqpEkW4<~YqwPA zIHaffK+}oa6NRHi>#FB-yXG9yokRK2lH0oyy~F3nw>Zc0B6v4Q_g}d;R=oc3?LX6h zvTJ>>>3y%MeOG|J>Oa3W1^|-gx}du*sQiUZ7|q+7BcMA1`E#2t?}}7-`Oci?>epTU z`3pom&xh~l-!FN43(wzqYuUc(JGkLHwC+2!8rFOxx^HCJQF8cH$NtTZgC+OqYOm@Z zg|s$U$pOMhI$ba$oi3P>HrL;+$m9L&tzR+4*ER-@tq&Y~7}W+w^nnpgIH?OK*G_Mo zzPNt+;=f(iPG8bbUsC%gHTPxReR-K(X1ClO%j~A3Yvs+t3wJ>3e%;ZZKUZ?PR|17& z#R1h3P%Q!T_|xRBh(?+2DhCVs{oNJrA+D&&w6!=i2WoOtRPv==U17@se+S+z6i@N) zXbfRRW@jgnqjqy?%_i&`%*PVF#4K5I47laG%K{V2?##K-#kGbjORQ24!yw>ob;?#S zmev_^>t>zEav>#(L$g`1nb}x6`%=v|wOs7%XfrD<140Ue0fpAYfSR^5+r2ZJQ$o;+ z$6@&m2JZLFiygy`iG_$MV2-!#Qjn`y85_}lh^V9lzG60$rL^I!h8mG(gCmoWd?!0% z4rSYpM1U*j17jezy*IjP~6P;a>5s;5$8q(W1X77YFZMQawYu<4~S2dAe8js6D~eqnc+}_YCJ< zWh+C$jqB5(aOxXU3u|1%JL{$GI#Sw!676|r<;I=)Vvpt<(tSfJ>fGwwxAMZBQ-!$J zIiz<&jhplwD7;Gg4iqQMtQ9y1sovtVtK7rRRi}R7SQ)|p8tiV!TEP_c3^iDCdCCmr zTdaNgY~e(4Y&EvV{5GjN&gkqvm07@)Q8O5$I;p+Iqh$oy>amCWzuKcdKc)|jn-#kP Hb36VQGSlu! literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d643354a27730f5dd516f0c589fa504aea16379a GIT binary patch literal 21919 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 JRsd`+`9I7>Y4iX9 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/packaging/_manylinux.py b/.venv/lib/python3.11/site-packages/pip/_vendor/packaging/_manylinux.py new file mode 100644 index 0000000..4c379aa --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/packaging/_manylinux.py @@ -0,0 +1,301 @@ +import collections +import functools +import os +import re +import struct +import sys +import warnings +from typing import IO, Dict, Iterator, NamedTuple, Optional, Tuple + + +# Python does not provide platform information at sufficient granularity to +# identify the architecture of the running executable in some cases, so we +# determine it dynamically by reading the information from the running +# process. This only applies on Linux, which uses the ELF format. +class _ELFFileHeader: + # https://en.wikipedia.org/wiki/Executable_and_Linkable_Format#File_header + class _InvalidELFFileHeader(ValueError): + """ + An invalid ELF file header was found. + """ + + ELF_MAGIC_NUMBER = 0x7F454C46 + ELFCLASS32 = 1 + ELFCLASS64 = 2 + ELFDATA2LSB = 1 + ELFDATA2MSB = 2 + EM_386 = 3 + EM_S390 = 22 + EM_ARM = 40 + EM_X86_64 = 62 + EF_ARM_ABIMASK = 0xFF000000 + EF_ARM_ABI_VER5 = 0x05000000 + EF_ARM_ABI_FLOAT_HARD = 0x00000400 + + def __init__(self, file: IO[bytes]) -> None: + def unpack(fmt: str) -> int: + try: + data = file.read(struct.calcsize(fmt)) + result: Tuple[int, ...] = struct.unpack(fmt, data) + except struct.error: + raise _ELFFileHeader._InvalidELFFileHeader() + return result[0] + + self.e_ident_magic = unpack(">I") + if self.e_ident_magic != self.ELF_MAGIC_NUMBER: + raise _ELFFileHeader._InvalidELFFileHeader() + self.e_ident_class = unpack("B") + if self.e_ident_class not in {self.ELFCLASS32, self.ELFCLASS64}: + raise _ELFFileHeader._InvalidELFFileHeader() + self.e_ident_data = unpack("B") + if self.e_ident_data not in {self.ELFDATA2LSB, self.ELFDATA2MSB}: + raise _ELFFileHeader._InvalidELFFileHeader() + self.e_ident_version = unpack("B") + self.e_ident_osabi = unpack("B") + self.e_ident_abiversion = unpack("B") + self.e_ident_pad = file.read(7) + format_h = "H" + format_i = "I" + format_q = "Q" + format_p = format_i if self.e_ident_class == self.ELFCLASS32 else format_q + self.e_type = unpack(format_h) + self.e_machine = unpack(format_h) + self.e_version = unpack(format_i) + self.e_entry = unpack(format_p) + self.e_phoff = unpack(format_p) + self.e_shoff = unpack(format_p) + self.e_flags = unpack(format_i) + self.e_ehsize = unpack(format_h) + self.e_phentsize = unpack(format_h) + self.e_phnum = unpack(format_h) + self.e_shentsize = unpack(format_h) + self.e_shnum = unpack(format_h) + self.e_shstrndx = unpack(format_h) + + +def _get_elf_header() -> Optional[_ELFFileHeader]: + try: + with open(sys.executable, "rb") as f: + elf_header = _ELFFileHeader(f) + except (OSError, TypeError, _ELFFileHeader._InvalidELFFileHeader): + return None + return elf_header + + +def _is_linux_armhf() -> bool: + # hard-float ABI can be detected from the ELF header of the running + # process + # https://static.docs.arm.com/ihi0044/g/aaelf32.pdf + elf_header = _get_elf_header() + if elf_header is None: + return False + result = elf_header.e_ident_class == elf_header.ELFCLASS32 + result &= elf_header.e_ident_data == elf_header.ELFDATA2LSB + result &= elf_header.e_machine == elf_header.EM_ARM + result &= ( + elf_header.e_flags & elf_header.EF_ARM_ABIMASK + ) == elf_header.EF_ARM_ABI_VER5 + result &= ( + elf_header.e_flags & elf_header.EF_ARM_ABI_FLOAT_HARD + ) == elf_header.EF_ARM_ABI_FLOAT_HARD + return result + + +def _is_linux_i686() -> bool: + elf_header = _get_elf_header() + if elf_header is None: + return False + result = elf_header.e_ident_class == elf_header.ELFCLASS32 + result &= elf_header.e_ident_data == elf_header.ELFDATA2LSB + result &= elf_header.e_machine == elf_header.EM_386 + return result + + +def _have_compatible_abi(arch: str) -> bool: + if arch == "armv7l": + return _is_linux_armhf() + if arch == "i686": + return _is_linux_i686() + return arch in {"x86_64", "aarch64", "ppc64", "ppc64le", "s390x"} + + +# If glibc ever changes its major version, we need to know what the last +# minor version was, so we can build the complete list of all versions. +# For now, guess what the highest minor version might be, assume it will +# be 50 for testing. Once this actually happens, update the dictionary +# with the actual value. +_LAST_GLIBC_MINOR: Dict[int, int] = collections.defaultdict(lambda: 50) + + +class _GLibCVersion(NamedTuple): + major: int + minor: int + + +def _glibc_version_string_confstr() -> Optional[str]: + """ + Primary implementation of glibc_version_string using os.confstr. + """ + # os.confstr is quite a bit faster than ctypes.DLL. It's also less likely + # to be broken or missing. This strategy is used in the standard library + # platform module. + # https://github.com/python/cpython/blob/fcf1d003bf4f0100c/Lib/platform.py#L175-L183 + try: + # os.confstr("CS_GNU_LIBC_VERSION") returns a string like "glibc 2.17". + version_string = os.confstr("CS_GNU_LIBC_VERSION") + assert version_string is not None + _, version = version_string.split() + except (AssertionError, AttributeError, OSError, ValueError): + # os.confstr() or CS_GNU_LIBC_VERSION not available (or a bad value)... + return None + return version + + +def _glibc_version_string_ctypes() -> Optional[str]: + """ + Fallback implementation of glibc_version_string using ctypes. + """ + try: + import ctypes + except ImportError: + return None + + # ctypes.CDLL(None) internally calls dlopen(NULL), and as the dlopen + # manpage says, "If filename is NULL, then the returned handle is for the + # main program". This way we can let the linker do the work to figure out + # which libc our process is actually using. + # + # We must also handle the special case where the executable is not a + # dynamically linked executable. This can occur when using musl libc, + # for example. In this situation, dlopen() will error, leading to an + # OSError. Interestingly, at least in the case of musl, there is no + # errno set on the OSError. The single string argument used to construct + # OSError comes from libc itself and is therefore not portable to + # hard code here. In any case, failure to call dlopen() means we + # can proceed, so we bail on our attempt. + try: + process_namespace = ctypes.CDLL(None) + except OSError: + return None + + try: + gnu_get_libc_version = process_namespace.gnu_get_libc_version + except AttributeError: + # Symbol doesn't exist -> therefore, we are not linked to + # glibc. + return None + + # Call gnu_get_libc_version, which returns a string like "2.5" + gnu_get_libc_version.restype = ctypes.c_char_p + version_str: str = gnu_get_libc_version() + # py2 / py3 compatibility: + if not isinstance(version_str, str): + version_str = version_str.decode("ascii") + + return version_str + + +def _glibc_version_string() -> Optional[str]: + """Returns glibc version string, or None if not using glibc.""" + return _glibc_version_string_confstr() or _glibc_version_string_ctypes() + + +def _parse_glibc_version(version_str: str) -> Tuple[int, int]: + """Parse glibc version. + + We use a regexp instead of str.split because we want to discard any + random junk that might come after the minor version -- this might happen + in patched/forked versions of glibc (e.g. Linaro's version of glibc + uses version strings like "2.20-2014.11"). See gh-3588. + """ + m = re.match(r"(?P[0-9]+)\.(?P[0-9]+)", version_str) + if not m: + warnings.warn( + "Expected glibc version with 2 components major.minor," + " got: %s" % version_str, + RuntimeWarning, + ) + return -1, -1 + return int(m.group("major")), int(m.group("minor")) + + +@functools.lru_cache() +def _get_glibc_version() -> Tuple[int, int]: + version_str = _glibc_version_string() + if version_str is None: + return (-1, -1) + return _parse_glibc_version(version_str) + + +# From PEP 513, PEP 600 +def _is_compatible(name: str, arch: str, version: _GLibCVersion) -> bool: + sys_glibc = _get_glibc_version() + if sys_glibc < version: + return False + # Check for presence of _manylinux module. + try: + import _manylinux # noqa + except ImportError: + return True + if hasattr(_manylinux, "manylinux_compatible"): + result = _manylinux.manylinux_compatible(version[0], version[1], arch) + if result is not None: + return bool(result) + return True + if version == _GLibCVersion(2, 5): + if hasattr(_manylinux, "manylinux1_compatible"): + return bool(_manylinux.manylinux1_compatible) + if version == _GLibCVersion(2, 12): + if hasattr(_manylinux, "manylinux2010_compatible"): + return bool(_manylinux.manylinux2010_compatible) + if version == _GLibCVersion(2, 17): + if hasattr(_manylinux, "manylinux2014_compatible"): + return bool(_manylinux.manylinux2014_compatible) + return True + + +_LEGACY_MANYLINUX_MAP = { + # CentOS 7 w/ glibc 2.17 (PEP 599) + (2, 17): "manylinux2014", + # CentOS 6 w/ glibc 2.12 (PEP 571) + (2, 12): "manylinux2010", + # CentOS 5 w/ glibc 2.5 (PEP 513) + (2, 5): "manylinux1", +} + + +def platform_tags(linux: str, arch: str) -> Iterator[str]: + if not _have_compatible_abi(arch): + return + # Oldest glibc to be supported regardless of architecture is (2, 17). + too_old_glibc2 = _GLibCVersion(2, 16) + if arch in {"x86_64", "i686"}: + # On x86/i686 also oldest glibc to be supported is (2, 5). + too_old_glibc2 = _GLibCVersion(2, 4) + current_glibc = _GLibCVersion(*_get_glibc_version()) + glibc_max_list = [current_glibc] + # We can assume compatibility across glibc major versions. + # https://sourceware.org/bugzilla/show_bug.cgi?id=24636 + # + # Build a list of maximum glibc versions so that we can + # output the canonical list of all glibc from current_glibc + # down to too_old_glibc2, including all intermediary versions. + for glibc_major in range(current_glibc.major - 1, 1, -1): + glibc_minor = _LAST_GLIBC_MINOR[glibc_major] + glibc_max_list.append(_GLibCVersion(glibc_major, glibc_minor)) + for glibc_max in glibc_max_list: + if glibc_max.major == too_old_glibc2.major: + min_minor = too_old_glibc2.minor + else: + # For other glibc major versions oldest supported is (x, 0). + min_minor = -1 + for glibc_minor in range(glibc_max.minor, min_minor, -1): + glibc_version = _GLibCVersion(glibc_max.major, glibc_minor) + tag = "manylinux_{}_{}".format(*glibc_version) + if _is_compatible(tag, arch, glibc_version): + yield linux.replace("linux", tag) + # Handle the legacy manylinux1, manylinux2010, manylinux2014 tags. + if glibc_version in _LEGACY_MANYLINUX_MAP: + legacy_tag = _LEGACY_MANYLINUX_MAP[glibc_version] + if _is_compatible(legacy_tag, arch, glibc_version): + yield linux.replace("linux", legacy_tag) diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/packaging/_musllinux.py b/.venv/lib/python3.11/site-packages/pip/_vendor/packaging/_musllinux.py new file mode 100644 index 0000000..8ac3059 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/packaging/_musllinux.py @@ -0,0 +1,136 @@ +"""PEP 656 support. + +This module implements logic to detect if the currently running Python is +linked against musl, and what musl version is used. +""" + +import contextlib +import functools +import operator +import os +import re +import struct +import subprocess +import sys +from typing import IO, Iterator, NamedTuple, Optional, Tuple + + +def _read_unpacked(f: IO[bytes], fmt: str) -> Tuple[int, ...]: + return struct.unpack(fmt, f.read(struct.calcsize(fmt))) + + +def _parse_ld_musl_from_elf(f: IO[bytes]) -> Optional[str]: + """Detect musl libc location by parsing the Python executable. + + Based on: https://gist.github.com/lyssdod/f51579ae8d93c8657a5564aefc2ffbca + ELF header: https://refspecs.linuxfoundation.org/elf/gabi4+/ch4.eheader.html + """ + f.seek(0) + try: + ident = _read_unpacked(f, "16B") + except struct.error: + return None + if ident[:4] != tuple(b"\x7fELF"): # Invalid magic, not ELF. + return None + f.seek(struct.calcsize("HHI"), 1) # Skip file type, machine, and version. + + try: + # e_fmt: Format for program header. + # p_fmt: Format for section header. + # p_idx: Indexes to find p_type, p_offset, and p_filesz. + e_fmt, p_fmt, p_idx = { + 1: ("IIIIHHH", "IIIIIIII", (0, 1, 4)), # 32-bit. + 2: ("QQQIHHH", "IIQQQQQQ", (0, 2, 5)), # 64-bit. + }[ident[4]] + except KeyError: + return None + else: + p_get = operator.itemgetter(*p_idx) + + # Find the interpreter section and return its content. + try: + _, e_phoff, _, _, _, e_phentsize, e_phnum = _read_unpacked(f, e_fmt) + except struct.error: + return None + for i in range(e_phnum + 1): + f.seek(e_phoff + e_phentsize * i) + try: + p_type, p_offset, p_filesz = p_get(_read_unpacked(f, p_fmt)) + except struct.error: + return None + if p_type != 3: # Not PT_INTERP. + continue + f.seek(p_offset) + interpreter = os.fsdecode(f.read(p_filesz)).strip("\0") + if "musl" not in interpreter: + return None + return interpreter + return None + + +class _MuslVersion(NamedTuple): + major: int + minor: int + + +def _parse_musl_version(output: str) -> Optional[_MuslVersion]: + lines = [n for n in (n.strip() for n in output.splitlines()) if n] + if len(lines) < 2 or lines[0][:4] != "musl": + return None + m = re.match(r"Version (\d+)\.(\d+)", lines[1]) + if not m: + return None + return _MuslVersion(major=int(m.group(1)), minor=int(m.group(2))) + + +@functools.lru_cache() +def _get_musl_version(executable: str) -> Optional[_MuslVersion]: + """Detect currently-running musl runtime version. + + This is done by checking the specified executable's dynamic linking + information, and invoking the loader to parse its output for a version + string. If the loader is musl, the output would be something like:: + + musl libc (x86_64) + Version 1.2.2 + Dynamic Program Loader + """ + with contextlib.ExitStack() as stack: + try: + f = stack.enter_context(open(executable, "rb")) + except OSError: + return None + ld = _parse_ld_musl_from_elf(f) + if not ld: + return None + proc = subprocess.run([ld], stderr=subprocess.PIPE, universal_newlines=True) + return _parse_musl_version(proc.stderr) + + +def platform_tags(arch: str) -> Iterator[str]: + """Generate musllinux tags compatible to the current platform. + + :param arch: Should be the part of platform tag after the ``linux_`` + prefix, e.g. ``x86_64``. The ``linux_`` prefix is assumed as a + prerequisite for the current platform to be musllinux-compatible. + + :returns: An iterator of compatible musllinux tags. + """ + sys_musl = _get_musl_version(sys.executable) + if sys_musl is None: # Python not dynamically linked against musl. + return + for minor in range(sys_musl.minor, -1, -1): + yield f"musllinux_{sys_musl.major}_{minor}_{arch}" + + +if __name__ == "__main__": # pragma: no cover + import sysconfig + + plat = sysconfig.get_platform() + assert plat.startswith("linux-"), "not linux" + + print("plat:", plat) + print("musl:", _get_musl_version(sys.executable)) + print("tags:", end=" ") + for t in platform_tags(re.sub(r"[.-]", "_", plat.split("-", 1)[-1])): + print(t, end="\n ") diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/packaging/_structures.py b/.venv/lib/python3.11/site-packages/pip/_vendor/packaging/_structures.py new file mode 100644 index 0000000..90a6465 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/packaging/_structures.py @@ -0,0 +1,61 @@ +# This file is dual licensed under the terms of the Apache License, Version +# 2.0, and the BSD License. See the LICENSE file in the root of this repository +# for complete details. + + +class InfinityType: + def __repr__(self) -> str: + return "Infinity" + + def __hash__(self) -> int: + return hash(repr(self)) + + def __lt__(self, other: object) -> bool: + return False + + def __le__(self, other: object) -> bool: + return False + + def __eq__(self, other: object) -> bool: + return isinstance(other, self.__class__) + + def __gt__(self, other: object) -> bool: + return True + + def __ge__(self, other: object) -> bool: + return True + + def __neg__(self: object) -> "NegativeInfinityType": + return NegativeInfinity + + +Infinity = InfinityType() + + +class NegativeInfinityType: + def __repr__(self) -> str: + return "-Infinity" + + def __hash__(self) -> int: + return hash(repr(self)) + + def __lt__(self, other: object) -> bool: + return True + + def __le__(self, other: object) -> bool: + return True + + def __eq__(self, other: object) -> bool: + return isinstance(other, self.__class__) + + def __gt__(self, other: object) -> bool: + return False + + def __ge__(self, other: object) -> bool: + return False + + def __neg__(self: object) -> InfinityType: + return Infinity + + +NegativeInfinity = NegativeInfinityType() diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/packaging/markers.py b/.venv/lib/python3.11/site-packages/pip/_vendor/packaging/markers.py new file mode 100644 index 0000000..540e7a4 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/packaging/markers.py @@ -0,0 +1,304 @@ +# This file is dual licensed under the terms of the Apache License, Version +# 2.0, and the BSD License. See the LICENSE file in the root of this repository +# for complete details. + +import operator +import os +import platform +import sys +from typing import Any, Callable, Dict, List, Optional, Tuple, Union + +from pip._vendor.pyparsing import ( # noqa: N817 + Forward, + Group, + Literal as L, + ParseException, + ParseResults, + QuotedString, + ZeroOrMore, + stringEnd, + stringStart, +) + +from .specifiers import InvalidSpecifier, Specifier + +__all__ = [ + "InvalidMarker", + "UndefinedComparison", + "UndefinedEnvironmentName", + "Marker", + "default_environment", +] + +Operator = Callable[[str, str], bool] + + +class InvalidMarker(ValueError): + """ + An invalid marker was found, users should refer to PEP 508. + """ + + +class UndefinedComparison(ValueError): + """ + An invalid operation was attempted on a value that doesn't support it. + """ + + +class UndefinedEnvironmentName(ValueError): + """ + A name was attempted to be used that does not exist inside of the + environment. + """ + + +class Node: + def __init__(self, value: Any) -> None: + self.value = value + + def __str__(self) -> str: + return str(self.value) + + def __repr__(self) -> str: + return f"<{self.__class__.__name__}('{self}')>" + + def serialize(self) -> str: + raise NotImplementedError + + +class Variable(Node): + def serialize(self) -> str: + return str(self) + + +class Value(Node): + def serialize(self) -> str: + return f'"{self}"' + + +class Op(Node): + def serialize(self) -> str: + return str(self) + + +VARIABLE = ( + L("implementation_version") + | L("platform_python_implementation") + | L("implementation_name") + | L("python_full_version") + | L("platform_release") + | L("platform_version") + | L("platform_machine") + | L("platform_system") + | L("python_version") + | L("sys_platform") + | L("os_name") + | L("os.name") # PEP-345 + | L("sys.platform") # PEP-345 + | L("platform.version") # PEP-345 + | L("platform.machine") # PEP-345 + | L("platform.python_implementation") # PEP-345 + | L("python_implementation") # undocumented setuptools legacy + | L("extra") # PEP-508 +) +ALIASES = { + "os.name": "os_name", + "sys.platform": "sys_platform", + "platform.version": "platform_version", + "platform.machine": "platform_machine", + "platform.python_implementation": "platform_python_implementation", + "python_implementation": "platform_python_implementation", +} +VARIABLE.setParseAction(lambda s, l, t: Variable(ALIASES.get(t[0], t[0]))) + +VERSION_CMP = ( + L("===") | L("==") | L(">=") | L("<=") | L("!=") | L("~=") | L(">") | L("<") +) + +MARKER_OP = VERSION_CMP | L("not in") | L("in") +MARKER_OP.setParseAction(lambda s, l, t: Op(t[0])) + +MARKER_VALUE = QuotedString("'") | QuotedString('"') +MARKER_VALUE.setParseAction(lambda s, l, t: Value(t[0])) + +BOOLOP = L("and") | L("or") + +MARKER_VAR = VARIABLE | MARKER_VALUE + +MARKER_ITEM = Group(MARKER_VAR + MARKER_OP + MARKER_VAR) +MARKER_ITEM.setParseAction(lambda s, l, t: tuple(t[0])) + +LPAREN = L("(").suppress() +RPAREN = L(")").suppress() + +MARKER_EXPR = Forward() +MARKER_ATOM = MARKER_ITEM | Group(LPAREN + MARKER_EXPR + RPAREN) +MARKER_EXPR << MARKER_ATOM + ZeroOrMore(BOOLOP + MARKER_EXPR) + +MARKER = stringStart + MARKER_EXPR + stringEnd + + +def _coerce_parse_result(results: Union[ParseResults, List[Any]]) -> List[Any]: + if isinstance(results, ParseResults): + return [_coerce_parse_result(i) for i in results] + else: + return results + + +def _format_marker( + marker: Union[List[str], Tuple[Node, ...], str], first: Optional[bool] = True +) -> str: + + assert isinstance(marker, (list, tuple, str)) + + # Sometimes we have a structure like [[...]] which is a single item list + # where the single item is itself it's own list. In that case we want skip + # the rest of this function so that we don't get extraneous () on the + # outside. + if ( + isinstance(marker, list) + and len(marker) == 1 + and isinstance(marker[0], (list, tuple)) + ): + return _format_marker(marker[0]) + + if isinstance(marker, list): + inner = (_format_marker(m, first=False) for m in marker) + if first: + return " ".join(inner) + else: + return "(" + " ".join(inner) + ")" + elif isinstance(marker, tuple): + return " ".join([m.serialize() for m in marker]) + else: + return marker + + +_operators: Dict[str, Operator] = { + "in": lambda lhs, rhs: lhs in rhs, + "not in": lambda lhs, rhs: lhs not in rhs, + "<": operator.lt, + "<=": operator.le, + "==": operator.eq, + "!=": operator.ne, + ">=": operator.ge, + ">": operator.gt, +} + + +def _eval_op(lhs: str, op: Op, rhs: str) -> bool: + try: + spec = Specifier("".join([op.serialize(), rhs])) + except InvalidSpecifier: + pass + else: + return spec.contains(lhs) + + oper: Optional[Operator] = _operators.get(op.serialize()) + if oper is None: + raise UndefinedComparison(f"Undefined {op!r} on {lhs!r} and {rhs!r}.") + + return oper(lhs, rhs) + + +class Undefined: + pass + + +_undefined = Undefined() + + +def _get_env(environment: Dict[str, str], name: str) -> str: + value: Union[str, Undefined] = environment.get(name, _undefined) + + if isinstance(value, Undefined): + raise UndefinedEnvironmentName( + f"{name!r} does not exist in evaluation environment." + ) + + return value + + +def _evaluate_markers(markers: List[Any], environment: Dict[str, str]) -> bool: + groups: List[List[bool]] = [[]] + + for marker in markers: + assert isinstance(marker, (list, tuple, str)) + + if isinstance(marker, list): + groups[-1].append(_evaluate_markers(marker, environment)) + elif isinstance(marker, tuple): + lhs, op, rhs = marker + + if isinstance(lhs, Variable): + lhs_value = _get_env(environment, lhs.value) + rhs_value = rhs.value + else: + lhs_value = lhs.value + rhs_value = _get_env(environment, rhs.value) + + groups[-1].append(_eval_op(lhs_value, op, rhs_value)) + else: + assert marker in ["and", "or"] + if marker == "or": + groups.append([]) + + return any(all(item) for item in groups) + + +def format_full_version(info: "sys._version_info") -> str: + version = "{0.major}.{0.minor}.{0.micro}".format(info) + kind = info.releaselevel + if kind != "final": + version += kind[0] + str(info.serial) + return version + + +def default_environment() -> Dict[str, str]: + iver = format_full_version(sys.implementation.version) + implementation_name = sys.implementation.name + return { + "implementation_name": implementation_name, + "implementation_version": iver, + "os_name": os.name, + "platform_machine": platform.machine(), + "platform_release": platform.release(), + "platform_system": platform.system(), + "platform_version": platform.version(), + "python_full_version": platform.python_version(), + "platform_python_implementation": platform.python_implementation(), + "python_version": ".".join(platform.python_version_tuple()[:2]), + "sys_platform": sys.platform, + } + + +class Marker: + def __init__(self, marker: str) -> None: + try: + self._markers = _coerce_parse_result(MARKER.parseString(marker)) + except ParseException as e: + raise InvalidMarker( + f"Invalid marker: {marker!r}, parse error at " + f"{marker[e.loc : e.loc + 8]!r}" + ) + + def __str__(self) -> str: + return _format_marker(self._markers) + + def __repr__(self) -> str: + return f"" + + def evaluate(self, environment: Optional[Dict[str, str]] = None) -> bool: + """Evaluate a marker. + + Return the boolean from evaluating the given marker against the + environment. environment is an optional argument to override all or + part of the determined environment. + + The environment is determined from the current Python process. + """ + current_environment = default_environment() + if environment is not None: + current_environment.update(environment) + + return _evaluate_markers(self._markers, current_environment) diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/packaging/py.typed b/.venv/lib/python3.11/site-packages/pip/_vendor/packaging/py.typed new file mode 100644 index 0000000..e69de29 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/packaging/requirements.py b/.venv/lib/python3.11/site-packages/pip/_vendor/packaging/requirements.py new file mode 100644 index 0000000..1eab7dd --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/packaging/requirements.py @@ -0,0 +1,146 @@ +# This file is dual licensed under the terms of the Apache License, Version +# 2.0, and the BSD License. See the LICENSE file in the root of this repository +# for complete details. + +import re +import string +import urllib.parse +from typing import List, Optional as TOptional, Set + +from pip._vendor.pyparsing import ( # noqa + Combine, + Literal as L, + Optional, + ParseException, + Regex, + Word, + ZeroOrMore, + originalTextFor, + stringEnd, + stringStart, +) + +from .markers import MARKER_EXPR, Marker +from .specifiers import LegacySpecifier, Specifier, SpecifierSet + + +class InvalidRequirement(ValueError): + """ + An invalid requirement was found, users should refer to PEP 508. + """ + + +ALPHANUM = Word(string.ascii_letters + string.digits) + +LBRACKET = L("[").suppress() +RBRACKET = L("]").suppress() +LPAREN = L("(").suppress() +RPAREN = L(")").suppress() +COMMA = L(",").suppress() +SEMICOLON = L(";").suppress() +AT = L("@").suppress() + +PUNCTUATION = Word("-_.") +IDENTIFIER_END = ALPHANUM | (ZeroOrMore(PUNCTUATION) + ALPHANUM) +IDENTIFIER = Combine(ALPHANUM + ZeroOrMore(IDENTIFIER_END)) + +NAME = IDENTIFIER("name") +EXTRA = IDENTIFIER + +URI = Regex(r"[^ ]+")("url") +URL = AT + URI + +EXTRAS_LIST = EXTRA + ZeroOrMore(COMMA + EXTRA) +EXTRAS = (LBRACKET + Optional(EXTRAS_LIST) + RBRACKET)("extras") + +VERSION_PEP440 = Regex(Specifier._regex_str, re.VERBOSE | re.IGNORECASE) +VERSION_LEGACY = Regex(LegacySpecifier._regex_str, re.VERBOSE | re.IGNORECASE) + +VERSION_ONE = VERSION_PEP440 ^ VERSION_LEGACY +VERSION_MANY = Combine( + VERSION_ONE + ZeroOrMore(COMMA + VERSION_ONE), joinString=",", adjacent=False +)("_raw_spec") +_VERSION_SPEC = Optional((LPAREN + VERSION_MANY + RPAREN) | VERSION_MANY) +_VERSION_SPEC.setParseAction(lambda s, l, t: t._raw_spec or "") + +VERSION_SPEC = originalTextFor(_VERSION_SPEC)("specifier") +VERSION_SPEC.setParseAction(lambda s, l, t: t[1]) + +MARKER_EXPR = originalTextFor(MARKER_EXPR())("marker") +MARKER_EXPR.setParseAction( + lambda s, l, t: Marker(s[t._original_start : t._original_end]) +) +MARKER_SEPARATOR = SEMICOLON +MARKER = MARKER_SEPARATOR + MARKER_EXPR + +VERSION_AND_MARKER = VERSION_SPEC + Optional(MARKER) +URL_AND_MARKER = URL + Optional(MARKER) + +NAMED_REQUIREMENT = NAME + Optional(EXTRAS) + (URL_AND_MARKER | VERSION_AND_MARKER) + +REQUIREMENT = stringStart + NAMED_REQUIREMENT + stringEnd +# pyparsing isn't thread safe during initialization, so we do it eagerly, see +# issue #104 +REQUIREMENT.parseString("x[]") + + +class Requirement: + """Parse a requirement. + + Parse a given requirement string into its parts, such as name, specifier, + URL, and extras. Raises InvalidRequirement on a badly-formed requirement + string. + """ + + # TODO: Can we test whether something is contained within a requirement? + # If so how do we do that? Do we need to test against the _name_ of + # the thing as well as the version? What about the markers? + # TODO: Can we normalize the name and extra name? + + def __init__(self, requirement_string: str) -> None: + try: + req = REQUIREMENT.parseString(requirement_string) + except ParseException as e: + raise InvalidRequirement( + f'Parse error at "{ requirement_string[e.loc : e.loc + 8]!r}": {e.msg}' + ) + + self.name: str = req.name + if req.url: + parsed_url = urllib.parse.urlparse(req.url) + if parsed_url.scheme == "file": + if urllib.parse.urlunparse(parsed_url) != req.url: + raise InvalidRequirement("Invalid URL given") + elif not (parsed_url.scheme and parsed_url.netloc) or ( + not parsed_url.scheme and not parsed_url.netloc + ): + raise InvalidRequirement(f"Invalid URL: {req.url}") + self.url: TOptional[str] = req.url + else: + self.url = None + self.extras: Set[str] = set(req.extras.asList() if req.extras else []) + self.specifier: SpecifierSet = SpecifierSet(req.specifier) + self.marker: TOptional[Marker] = req.marker if req.marker else None + + def __str__(self) -> str: + parts: List[str] = [self.name] + + if self.extras: + formatted_extras = ",".join(sorted(self.extras)) + parts.append(f"[{formatted_extras}]") + + if self.specifier: + parts.append(str(self.specifier)) + + if self.url: + parts.append(f"@ {self.url}") + if self.marker: + parts.append(" ") + + if self.marker: + parts.append(f"; {self.marker}") + + return "".join(parts) + + def __repr__(self) -> str: + return f"" diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/packaging/specifiers.py b/.venv/lib/python3.11/site-packages/pip/_vendor/packaging/specifiers.py new file mode 100644 index 0000000..0e218a6 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/packaging/specifiers.py @@ -0,0 +1,802 @@ +# This file is dual licensed under the terms of the Apache License, Version +# 2.0, and the BSD License. See the LICENSE file in the root of this repository +# for complete details. + +import abc +import functools +import itertools +import re +import warnings +from typing import ( + Callable, + Dict, + Iterable, + Iterator, + List, + Optional, + Pattern, + Set, + Tuple, + TypeVar, + Union, +) + +from .utils import canonicalize_version +from .version import LegacyVersion, Version, parse + +ParsedVersion = Union[Version, LegacyVersion] +UnparsedVersion = Union[Version, LegacyVersion, str] +VersionTypeVar = TypeVar("VersionTypeVar", bound=UnparsedVersion) +CallableOperator = Callable[[ParsedVersion, str], bool] + + +class InvalidSpecifier(ValueError): + """ + An invalid specifier was found, users should refer to PEP 440. + """ + + +class BaseSpecifier(metaclass=abc.ABCMeta): + @abc.abstractmethod + def __str__(self) -> str: + """ + Returns the str representation of this Specifier like object. This + should be representative of the Specifier itself. + """ + + @abc.abstractmethod + def __hash__(self) -> int: + """ + Returns a hash value for this Specifier like object. + """ + + @abc.abstractmethod + def __eq__(self, other: object) -> bool: + """ + Returns a boolean representing whether or not the two Specifier like + objects are equal. + """ + + @abc.abstractproperty + def prereleases(self) -> Optional[bool]: + """ + Returns whether or not pre-releases as a whole are allowed by this + specifier. + """ + + @prereleases.setter + def prereleases(self, value: bool) -> None: + """ + Sets whether or not pre-releases as a whole are allowed by this + specifier. + """ + + @abc.abstractmethod + def contains(self, item: str, prereleases: Optional[bool] = None) -> bool: + """ + Determines if the given item is contained within this specifier. + """ + + @abc.abstractmethod + def filter( + self, iterable: Iterable[VersionTypeVar], prereleases: Optional[bool] = None + ) -> Iterable[VersionTypeVar]: + """ + Takes an iterable of items and filters them so that only items which + are contained within this specifier are allowed in it. + """ + + +class _IndividualSpecifier(BaseSpecifier): + + _operators: Dict[str, str] = {} + _regex: Pattern[str] + + def __init__(self, spec: str = "", prereleases: Optional[bool] = None) -> None: + match = self._regex.search(spec) + if not match: + raise InvalidSpecifier(f"Invalid specifier: '{spec}'") + + self._spec: Tuple[str, str] = ( + match.group("operator").strip(), + match.group("version").strip(), + ) + + # Store whether or not this Specifier should accept prereleases + self._prereleases = prereleases + + def __repr__(self) -> str: + pre = ( + f", prereleases={self.prereleases!r}" + if self._prereleases is not None + else "" + ) + + return f"<{self.__class__.__name__}({str(self)!r}{pre})>" + + def __str__(self) -> str: + return "{}{}".format(*self._spec) + + @property + def _canonical_spec(self) -> Tuple[str, str]: + return self._spec[0], canonicalize_version(self._spec[1]) + + def __hash__(self) -> int: + return hash(self._canonical_spec) + + def __eq__(self, other: object) -> bool: + if isinstance(other, str): + try: + other = self.__class__(str(other)) + except InvalidSpecifier: + return NotImplemented + elif not isinstance(other, self.__class__): + return NotImplemented + + return self._canonical_spec == other._canonical_spec + + def _get_operator(self, op: str) -> CallableOperator: + operator_callable: CallableOperator = getattr( + self, f"_compare_{self._operators[op]}" + ) + return operator_callable + + def _coerce_version(self, version: UnparsedVersion) -> ParsedVersion: + if not isinstance(version, (LegacyVersion, Version)): + version = parse(version) + return version + + @property + def operator(self) -> str: + return self._spec[0] + + @property + def version(self) -> str: + return self._spec[1] + + @property + def prereleases(self) -> Optional[bool]: + return self._prereleases + + @prereleases.setter + def prereleases(self, value: bool) -> None: + self._prereleases = value + + def __contains__(self, item: str) -> bool: + return self.contains(item) + + def contains( + self, item: UnparsedVersion, prereleases: Optional[bool] = None + ) -> bool: + + # Determine if prereleases are to be allowed or not. + if prereleases is None: + prereleases = self.prereleases + + # Normalize item to a Version or LegacyVersion, this allows us to have + # a shortcut for ``"2.0" in Specifier(">=2") + normalized_item = self._coerce_version(item) + + # Determine if we should be supporting prereleases in this specifier + # or not, if we do not support prereleases than we can short circuit + # logic if this version is a prereleases. + if normalized_item.is_prerelease and not prereleases: + return False + + # Actually do the comparison to determine if this item is contained + # within this Specifier or not. + operator_callable: CallableOperator = self._get_operator(self.operator) + return operator_callable(normalized_item, self.version) + + def filter( + self, iterable: Iterable[VersionTypeVar], prereleases: Optional[bool] = None + ) -> Iterable[VersionTypeVar]: + + yielded = False + found_prereleases = [] + + kw = {"prereleases": prereleases if prereleases is not None else True} + + # Attempt to iterate over all the values in the iterable and if any of + # them match, yield them. + for version in iterable: + parsed_version = self._coerce_version(version) + + if self.contains(parsed_version, **kw): + # If our version is a prerelease, and we were not set to allow + # prereleases, then we'll store it for later in case nothing + # else matches this specifier. + if parsed_version.is_prerelease and not ( + prereleases or self.prereleases + ): + found_prereleases.append(version) + # Either this is not a prerelease, or we should have been + # accepting prereleases from the beginning. + else: + yielded = True + yield version + + # Now that we've iterated over everything, determine if we've yielded + # any values, and if we have not and we have any prereleases stored up + # then we will go ahead and yield the prereleases. + if not yielded and found_prereleases: + for version in found_prereleases: + yield version + + +class LegacySpecifier(_IndividualSpecifier): + + _regex_str = r""" + (?P(==|!=|<=|>=|<|>)) + \s* + (?P + [^,;\s)]* # Since this is a "legacy" specifier, and the version + # string can be just about anything, we match everything + # except for whitespace, a semi-colon for marker support, + # a closing paren since versions can be enclosed in + # them, and a comma since it's a version separator. + ) + """ + + _regex = re.compile(r"^\s*" + _regex_str + r"\s*$", re.VERBOSE | re.IGNORECASE) + + _operators = { + "==": "equal", + "!=": "not_equal", + "<=": "less_than_equal", + ">=": "greater_than_equal", + "<": "less_than", + ">": "greater_than", + } + + def __init__(self, spec: str = "", prereleases: Optional[bool] = None) -> None: + super().__init__(spec, prereleases) + + warnings.warn( + "Creating a LegacyVersion has been deprecated and will be " + "removed in the next major release", + DeprecationWarning, + ) + + def _coerce_version(self, version: UnparsedVersion) -> LegacyVersion: + if not isinstance(version, LegacyVersion): + version = LegacyVersion(str(version)) + return version + + def _compare_equal(self, prospective: LegacyVersion, spec: str) -> bool: + return prospective == self._coerce_version(spec) + + def _compare_not_equal(self, prospective: LegacyVersion, spec: str) -> bool: + return prospective != self._coerce_version(spec) + + def _compare_less_than_equal(self, prospective: LegacyVersion, spec: str) -> bool: + return prospective <= self._coerce_version(spec) + + def _compare_greater_than_equal( + self, prospective: LegacyVersion, spec: str + ) -> bool: + return prospective >= self._coerce_version(spec) + + def _compare_less_than(self, prospective: LegacyVersion, spec: str) -> bool: + return prospective < self._coerce_version(spec) + + def _compare_greater_than(self, prospective: LegacyVersion, spec: str) -> bool: + return prospective > self._coerce_version(spec) + + +def _require_version_compare( + fn: Callable[["Specifier", ParsedVersion, str], bool] +) -> Callable[["Specifier", ParsedVersion, str], bool]: + @functools.wraps(fn) + def wrapped(self: "Specifier", prospective: ParsedVersion, spec: str) -> bool: + if not isinstance(prospective, Version): + return False + return fn(self, prospective, spec) + + return wrapped + + +class Specifier(_IndividualSpecifier): + + _regex_str = r""" + (?P(~=|==|!=|<=|>=|<|>|===)) + (?P + (?: + # The identity operators allow for an escape hatch that will + # do an exact string match of the version you wish to install. + # This will not be parsed by PEP 440 and we cannot determine + # any semantic meaning from it. This operator is discouraged + # but included entirely as an escape hatch. + (?<====) # Only match for the identity operator + \s* + [^\s]* # We just match everything, except for whitespace + # since we are only testing for strict identity. + ) + | + (?: + # The (non)equality operators allow for wild card and local + # versions to be specified so we have to define these two + # operators separately to enable that. + (?<===|!=) # Only match for equals and not equals + + \s* + v? + (?:[0-9]+!)? # epoch + [0-9]+(?:\.[0-9]+)* # release + (?: # pre release + [-_\.]? + (a|b|c|rc|alpha|beta|pre|preview) + [-_\.]? + [0-9]* + )? + (?: # post release + (?:-[0-9]+)|(?:[-_\.]?(post|rev|r)[-_\.]?[0-9]*) + )? + + # You cannot use a wild card and a dev or local version + # together so group them with a | and make them optional. + (?: + (?:[-_\.]?dev[-_\.]?[0-9]*)? # dev release + (?:\+[a-z0-9]+(?:[-_\.][a-z0-9]+)*)? # local + | + \.\* # Wild card syntax of .* + )? + ) + | + (?: + # The compatible operator requires at least two digits in the + # release segment. + (?<=~=) # Only match for the compatible operator + + \s* + v? + (?:[0-9]+!)? # epoch + [0-9]+(?:\.[0-9]+)+ # release (We have a + instead of a *) + (?: # pre release + [-_\.]? + (a|b|c|rc|alpha|beta|pre|preview) + [-_\.]? + [0-9]* + )? + (?: # post release + (?:-[0-9]+)|(?:[-_\.]?(post|rev|r)[-_\.]?[0-9]*) + )? + (?:[-_\.]?dev[-_\.]?[0-9]*)? # dev release + ) + | + (?: + # All other operators only allow a sub set of what the + # (non)equality operators do. Specifically they do not allow + # local versions to be specified nor do they allow the prefix + # matching wild cards. + (?=": "greater_than_equal", + "<": "less_than", + ">": "greater_than", + "===": "arbitrary", + } + + @_require_version_compare + def _compare_compatible(self, prospective: ParsedVersion, spec: str) -> bool: + + # Compatible releases have an equivalent combination of >= and ==. That + # is that ~=2.2 is equivalent to >=2.2,==2.*. This allows us to + # implement this in terms of the other specifiers instead of + # implementing it ourselves. The only thing we need to do is construct + # the other specifiers. + + # We want everything but the last item in the version, but we want to + # ignore suffix segments. + prefix = ".".join( + list(itertools.takewhile(_is_not_suffix, _version_split(spec)))[:-1] + ) + + # Add the prefix notation to the end of our string + prefix += ".*" + + return self._get_operator(">=")(prospective, spec) and self._get_operator("==")( + prospective, prefix + ) + + @_require_version_compare + def _compare_equal(self, prospective: ParsedVersion, spec: str) -> bool: + + # We need special logic to handle prefix matching + if spec.endswith(".*"): + # In the case of prefix matching we want to ignore local segment. + prospective = Version(prospective.public) + # Split the spec out by dots, and pretend that there is an implicit + # dot in between a release segment and a pre-release segment. + split_spec = _version_split(spec[:-2]) # Remove the trailing .* + + # Split the prospective version out by dots, and pretend that there + # is an implicit dot in between a release segment and a pre-release + # segment. + split_prospective = _version_split(str(prospective)) + + # Shorten the prospective version to be the same length as the spec + # so that we can determine if the specifier is a prefix of the + # prospective version or not. + shortened_prospective = split_prospective[: len(split_spec)] + + # Pad out our two sides with zeros so that they both equal the same + # length. + padded_spec, padded_prospective = _pad_version( + split_spec, shortened_prospective + ) + + return padded_prospective == padded_spec + else: + # Convert our spec string into a Version + spec_version = Version(spec) + + # If the specifier does not have a local segment, then we want to + # act as if the prospective version also does not have a local + # segment. + if not spec_version.local: + prospective = Version(prospective.public) + + return prospective == spec_version + + @_require_version_compare + def _compare_not_equal(self, prospective: ParsedVersion, spec: str) -> bool: + return not self._compare_equal(prospective, spec) + + @_require_version_compare + def _compare_less_than_equal(self, prospective: ParsedVersion, spec: str) -> bool: + + # NB: Local version identifiers are NOT permitted in the version + # specifier, so local version labels can be universally removed from + # the prospective version. + return Version(prospective.public) <= Version(spec) + + @_require_version_compare + def _compare_greater_than_equal( + self, prospective: ParsedVersion, spec: str + ) -> bool: + + # NB: Local version identifiers are NOT permitted in the version + # specifier, so local version labels can be universally removed from + # the prospective version. + return Version(prospective.public) >= Version(spec) + + @_require_version_compare + def _compare_less_than(self, prospective: ParsedVersion, spec_str: str) -> bool: + + # Convert our spec to a Version instance, since we'll want to work with + # it as a version. + spec = Version(spec_str) + + # Check to see if the prospective version is less than the spec + # version. If it's not we can short circuit and just return False now + # instead of doing extra unneeded work. + if not prospective < spec: + return False + + # This special case is here so that, unless the specifier itself + # includes is a pre-release version, that we do not accept pre-release + # versions for the version mentioned in the specifier (e.g. <3.1 should + # not match 3.1.dev0, but should match 3.0.dev0). + if not spec.is_prerelease and prospective.is_prerelease: + if Version(prospective.base_version) == Version(spec.base_version): + return False + + # If we've gotten to here, it means that prospective version is both + # less than the spec version *and* it's not a pre-release of the same + # version in the spec. + return True + + @_require_version_compare + def _compare_greater_than(self, prospective: ParsedVersion, spec_str: str) -> bool: + + # Convert our spec to a Version instance, since we'll want to work with + # it as a version. + spec = Version(spec_str) + + # Check to see if the prospective version is greater than the spec + # version. If it's not we can short circuit and just return False now + # instead of doing extra unneeded work. + if not prospective > spec: + return False + + # This special case is here so that, unless the specifier itself + # includes is a post-release version, that we do not accept + # post-release versions for the version mentioned in the specifier + # (e.g. >3.1 should not match 3.0.post0, but should match 3.2.post0). + if not spec.is_postrelease and prospective.is_postrelease: + if Version(prospective.base_version) == Version(spec.base_version): + return False + + # Ensure that we do not allow a local version of the version mentioned + # in the specifier, which is technically greater than, to match. + if prospective.local is not None: + if Version(prospective.base_version) == Version(spec.base_version): + return False + + # If we've gotten to here, it means that prospective version is both + # greater than the spec version *and* it's not a pre-release of the + # same version in the spec. + return True + + def _compare_arbitrary(self, prospective: Version, spec: str) -> bool: + return str(prospective).lower() == str(spec).lower() + + @property + def prereleases(self) -> bool: + + # If there is an explicit prereleases set for this, then we'll just + # blindly use that. + if self._prereleases is not None: + return self._prereleases + + # Look at all of our specifiers and determine if they are inclusive + # operators, and if they are if they are including an explicit + # prerelease. + operator, version = self._spec + if operator in ["==", ">=", "<=", "~=", "==="]: + # The == specifier can include a trailing .*, if it does we + # want to remove before parsing. + if operator == "==" and version.endswith(".*"): + version = version[:-2] + + # Parse the version, and if it is a pre-release than this + # specifier allows pre-releases. + if parse(version).is_prerelease: + return True + + return False + + @prereleases.setter + def prereleases(self, value: bool) -> None: + self._prereleases = value + + +_prefix_regex = re.compile(r"^([0-9]+)((?:a|b|c|rc)[0-9]+)$") + + +def _version_split(version: str) -> List[str]: + result: List[str] = [] + for item in version.split("."): + match = _prefix_regex.search(item) + if match: + result.extend(match.groups()) + else: + result.append(item) + return result + + +def _is_not_suffix(segment: str) -> bool: + return not any( + segment.startswith(prefix) for prefix in ("dev", "a", "b", "rc", "post") + ) + + +def _pad_version(left: List[str], right: List[str]) -> Tuple[List[str], List[str]]: + left_split, right_split = [], [] + + # Get the release segment of our versions + left_split.append(list(itertools.takewhile(lambda x: x.isdigit(), left))) + right_split.append(list(itertools.takewhile(lambda x: x.isdigit(), right))) + + # Get the rest of our versions + left_split.append(left[len(left_split[0]) :]) + right_split.append(right[len(right_split[0]) :]) + + # Insert our padding + left_split.insert(1, ["0"] * max(0, len(right_split[0]) - len(left_split[0]))) + right_split.insert(1, ["0"] * max(0, len(left_split[0]) - len(right_split[0]))) + + return (list(itertools.chain(*left_split)), list(itertools.chain(*right_split))) + + +class SpecifierSet(BaseSpecifier): + def __init__( + self, specifiers: str = "", prereleases: Optional[bool] = None + ) -> None: + + # Split on , to break each individual specifier into it's own item, and + # strip each item to remove leading/trailing whitespace. + split_specifiers = [s.strip() for s in specifiers.split(",") if s.strip()] + + # Parsed each individual specifier, attempting first to make it a + # Specifier and falling back to a LegacySpecifier. + parsed: Set[_IndividualSpecifier] = set() + for specifier in split_specifiers: + try: + parsed.add(Specifier(specifier)) + except InvalidSpecifier: + parsed.add(LegacySpecifier(specifier)) + + # Turn our parsed specifiers into a frozen set and save them for later. + self._specs = frozenset(parsed) + + # Store our prereleases value so we can use it later to determine if + # we accept prereleases or not. + self._prereleases = prereleases + + def __repr__(self) -> str: + pre = ( + f", prereleases={self.prereleases!r}" + if self._prereleases is not None + else "" + ) + + return f"" + + def __str__(self) -> str: + return ",".join(sorted(str(s) for s in self._specs)) + + def __hash__(self) -> int: + return hash(self._specs) + + def __and__(self, other: Union["SpecifierSet", str]) -> "SpecifierSet": + if isinstance(other, str): + other = SpecifierSet(other) + elif not isinstance(other, SpecifierSet): + return NotImplemented + + specifier = SpecifierSet() + specifier._specs = frozenset(self._specs | other._specs) + + if self._prereleases is None and other._prereleases is not None: + specifier._prereleases = other._prereleases + elif self._prereleases is not None and other._prereleases is None: + specifier._prereleases = self._prereleases + elif self._prereleases == other._prereleases: + specifier._prereleases = self._prereleases + else: + raise ValueError( + "Cannot combine SpecifierSets with True and False prerelease " + "overrides." + ) + + return specifier + + def __eq__(self, other: object) -> bool: + if isinstance(other, (str, _IndividualSpecifier)): + other = SpecifierSet(str(other)) + elif not isinstance(other, SpecifierSet): + return NotImplemented + + return self._specs == other._specs + + def __len__(self) -> int: + return len(self._specs) + + def __iter__(self) -> Iterator[_IndividualSpecifier]: + return iter(self._specs) + + @property + def prereleases(self) -> Optional[bool]: + + # If we have been given an explicit prerelease modifier, then we'll + # pass that through here. + if self._prereleases is not None: + return self._prereleases + + # If we don't have any specifiers, and we don't have a forced value, + # then we'll just return None since we don't know if this should have + # pre-releases or not. + if not self._specs: + return None + + # Otherwise we'll see if any of the given specifiers accept + # prereleases, if any of them do we'll return True, otherwise False. + return any(s.prereleases for s in self._specs) + + @prereleases.setter + def prereleases(self, value: bool) -> None: + self._prereleases = value + + def __contains__(self, item: UnparsedVersion) -> bool: + return self.contains(item) + + def contains( + self, item: UnparsedVersion, prereleases: Optional[bool] = None + ) -> bool: + + # Ensure that our item is a Version or LegacyVersion instance. + if not isinstance(item, (LegacyVersion, Version)): + item = parse(item) + + # Determine if we're forcing a prerelease or not, if we're not forcing + # one for this particular filter call, then we'll use whatever the + # SpecifierSet thinks for whether or not we should support prereleases. + if prereleases is None: + prereleases = self.prereleases + + # We can determine if we're going to allow pre-releases by looking to + # see if any of the underlying items supports them. If none of them do + # and this item is a pre-release then we do not allow it and we can + # short circuit that here. + # Note: This means that 1.0.dev1 would not be contained in something + # like >=1.0.devabc however it would be in >=1.0.debabc,>0.0.dev0 + if not prereleases and item.is_prerelease: + return False + + # We simply dispatch to the underlying specs here to make sure that the + # given version is contained within all of them. + # Note: This use of all() here means that an empty set of specifiers + # will always return True, this is an explicit design decision. + return all(s.contains(item, prereleases=prereleases) for s in self._specs) + + def filter( + self, iterable: Iterable[VersionTypeVar], prereleases: Optional[bool] = None + ) -> Iterable[VersionTypeVar]: + + # Determine if we're forcing a prerelease or not, if we're not forcing + # one for this particular filter call, then we'll use whatever the + # SpecifierSet thinks for whether or not we should support prereleases. + if prereleases is None: + prereleases = self.prereleases + + # If we have any specifiers, then we want to wrap our iterable in the + # filter method for each one, this will act as a logical AND amongst + # each specifier. + if self._specs: + for spec in self._specs: + iterable = spec.filter(iterable, prereleases=bool(prereleases)) + return iterable + # If we do not have any specifiers, then we need to have a rough filter + # which will filter out any pre-releases, unless there are no final + # releases, and which will filter out LegacyVersion in general. + else: + filtered: List[VersionTypeVar] = [] + found_prereleases: List[VersionTypeVar] = [] + + item: UnparsedVersion + parsed_version: Union[Version, LegacyVersion] + + for item in iterable: + # Ensure that we some kind of Version class for this item. + if not isinstance(item, (LegacyVersion, Version)): + parsed_version = parse(item) + else: + parsed_version = item + + # Filter out any item which is parsed as a LegacyVersion + if isinstance(parsed_version, LegacyVersion): + continue + + # Store any item which is a pre-release for later unless we've + # already found a final version or we are accepting prereleases + if parsed_version.is_prerelease and not prereleases: + if not filtered: + found_prereleases.append(item) + else: + filtered.append(item) + + # If we've found no items except for pre-releases, then we'll go + # ahead and use the pre-releases + if not filtered and found_prereleases and prereleases is None: + return found_prereleases + + return filtered diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/packaging/tags.py b/.venv/lib/python3.11/site-packages/pip/_vendor/packaging/tags.py new file mode 100644 index 0000000..9a3d25a --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/packaging/tags.py @@ -0,0 +1,487 @@ +# This file is dual licensed under the terms of the Apache License, Version +# 2.0, and the BSD License. See the LICENSE file in the root of this repository +# for complete details. + +import logging +import platform +import sys +import sysconfig +from importlib.machinery import EXTENSION_SUFFIXES +from typing import ( + Dict, + FrozenSet, + Iterable, + Iterator, + List, + Optional, + Sequence, + Tuple, + Union, + cast, +) + +from . import _manylinux, _musllinux + +logger = logging.getLogger(__name__) + +PythonVersion = Sequence[int] +MacVersion = Tuple[int, int] + +INTERPRETER_SHORT_NAMES: Dict[str, str] = { + "python": "py", # Generic. + "cpython": "cp", + "pypy": "pp", + "ironpython": "ip", + "jython": "jy", +} + + +_32_BIT_INTERPRETER = sys.maxsize <= 2 ** 32 + + +class Tag: + """ + A representation of the tag triple for a wheel. + + Instances are considered immutable and thus are hashable. Equality checking + is also supported. + """ + + __slots__ = ["_interpreter", "_abi", "_platform", "_hash"] + + def __init__(self, interpreter: str, abi: str, platform: str) -> None: + self._interpreter = interpreter.lower() + self._abi = abi.lower() + self._platform = platform.lower() + # The __hash__ of every single element in a Set[Tag] will be evaluated each time + # that a set calls its `.disjoint()` method, which may be called hundreds of + # times when scanning a page of links for packages with tags matching that + # Set[Tag]. Pre-computing the value here produces significant speedups for + # downstream consumers. + self._hash = hash((self._interpreter, self._abi, self._platform)) + + @property + def interpreter(self) -> str: + return self._interpreter + + @property + def abi(self) -> str: + return self._abi + + @property + def platform(self) -> str: + return self._platform + + def __eq__(self, other: object) -> bool: + if not isinstance(other, Tag): + return NotImplemented + + return ( + (self._hash == other._hash) # Short-circuit ASAP for perf reasons. + and (self._platform == other._platform) + and (self._abi == other._abi) + and (self._interpreter == other._interpreter) + ) + + def __hash__(self) -> int: + return self._hash + + def __str__(self) -> str: + return f"{self._interpreter}-{self._abi}-{self._platform}" + + def __repr__(self) -> str: + return f"<{self} @ {id(self)}>" + + +def parse_tag(tag: str) -> FrozenSet[Tag]: + """ + Parses the provided tag (e.g. `py3-none-any`) into a frozenset of Tag instances. + + Returning a set is required due to the possibility that the tag is a + compressed tag set. + """ + tags = set() + interpreters, abis, platforms = tag.split("-") + for interpreter in interpreters.split("."): + for abi in abis.split("."): + for platform_ in platforms.split("."): + tags.add(Tag(interpreter, abi, platform_)) + return frozenset(tags) + + +def _get_config_var(name: str, warn: bool = False) -> Union[int, str, None]: + value = sysconfig.get_config_var(name) + if value is None and warn: + logger.debug( + "Config variable '%s' is unset, Python ABI tag may be incorrect", name + ) + return value + + +def _normalize_string(string: str) -> str: + return string.replace(".", "_").replace("-", "_") + + +def _abi3_applies(python_version: PythonVersion) -> bool: + """ + Determine if the Python version supports abi3. + + PEP 384 was first implemented in Python 3.2. + """ + return len(python_version) > 1 and tuple(python_version) >= (3, 2) + + +def _cpython_abis(py_version: PythonVersion, warn: bool = False) -> List[str]: + py_version = tuple(py_version) # To allow for version comparison. + abis = [] + version = _version_nodot(py_version[:2]) + debug = pymalloc = ucs4 = "" + with_debug = _get_config_var("Py_DEBUG", warn) + has_refcount = hasattr(sys, "gettotalrefcount") + # Windows doesn't set Py_DEBUG, so checking for support of debug-compiled + # extension modules is the best option. + # https://github.com/pypa/pip/issues/3383#issuecomment-173267692 + has_ext = "_d.pyd" in EXTENSION_SUFFIXES + if with_debug or (with_debug is None and (has_refcount or has_ext)): + debug = "d" + if py_version < (3, 8): + with_pymalloc = _get_config_var("WITH_PYMALLOC", warn) + if with_pymalloc or with_pymalloc is None: + pymalloc = "m" + if py_version < (3, 3): + unicode_size = _get_config_var("Py_UNICODE_SIZE", warn) + if unicode_size == 4 or ( + unicode_size is None and sys.maxunicode == 0x10FFFF + ): + ucs4 = "u" + elif debug: + # Debug builds can also load "normal" extension modules. + # We can also assume no UCS-4 or pymalloc requirement. + abis.append(f"cp{version}") + abis.insert( + 0, + "cp{version}{debug}{pymalloc}{ucs4}".format( + version=version, debug=debug, pymalloc=pymalloc, ucs4=ucs4 + ), + ) + return abis + + +def cpython_tags( + python_version: Optional[PythonVersion] = None, + abis: Optional[Iterable[str]] = None, + platforms: Optional[Iterable[str]] = None, + *, + warn: bool = False, +) -> Iterator[Tag]: + """ + Yields the tags for a CPython interpreter. + + The tags consist of: + - cp-- + - cp-abi3- + - cp-none- + - cp-abi3- # Older Python versions down to 3.2. + + If python_version only specifies a major version then user-provided ABIs and + the 'none' ABItag will be used. + + If 'abi3' or 'none' are specified in 'abis' then they will be yielded at + their normal position and not at the beginning. + """ + if not python_version: + python_version = sys.version_info[:2] + + interpreter = f"cp{_version_nodot(python_version[:2])}" + + if abis is None: + if len(python_version) > 1: + abis = _cpython_abis(python_version, warn) + else: + abis = [] + abis = list(abis) + # 'abi3' and 'none' are explicitly handled later. + for explicit_abi in ("abi3", "none"): + try: + abis.remove(explicit_abi) + except ValueError: + pass + + platforms = list(platforms or platform_tags()) + for abi in abis: + for platform_ in platforms: + yield Tag(interpreter, abi, platform_) + if _abi3_applies(python_version): + yield from (Tag(interpreter, "abi3", platform_) for platform_ in platforms) + yield from (Tag(interpreter, "none", platform_) for platform_ in platforms) + + if _abi3_applies(python_version): + for minor_version in range(python_version[1] - 1, 1, -1): + for platform_ in platforms: + interpreter = "cp{version}".format( + version=_version_nodot((python_version[0], minor_version)) + ) + yield Tag(interpreter, "abi3", platform_) + + +def _generic_abi() -> Iterator[str]: + abi = sysconfig.get_config_var("SOABI") + if abi: + yield _normalize_string(abi) + + +def generic_tags( + interpreter: Optional[str] = None, + abis: Optional[Iterable[str]] = None, + platforms: Optional[Iterable[str]] = None, + *, + warn: bool = False, +) -> Iterator[Tag]: + """ + Yields the tags for a generic interpreter. + + The tags consist of: + - -- + + The "none" ABI will be added if it was not explicitly provided. + """ + if not interpreter: + interp_name = interpreter_name() + interp_version = interpreter_version(warn=warn) + interpreter = "".join([interp_name, interp_version]) + if abis is None: + abis = _generic_abi() + platforms = list(platforms or platform_tags()) + abis = list(abis) + if "none" not in abis: + abis.append("none") + for abi in abis: + for platform_ in platforms: + yield Tag(interpreter, abi, platform_) + + +def _py_interpreter_range(py_version: PythonVersion) -> Iterator[str]: + """ + Yields Python versions in descending order. + + After the latest version, the major-only version will be yielded, and then + all previous versions of that major version. + """ + if len(py_version) > 1: + yield f"py{_version_nodot(py_version[:2])}" + yield f"py{py_version[0]}" + if len(py_version) > 1: + for minor in range(py_version[1] - 1, -1, -1): + yield f"py{_version_nodot((py_version[0], minor))}" + + +def compatible_tags( + python_version: Optional[PythonVersion] = None, + interpreter: Optional[str] = None, + platforms: Optional[Iterable[str]] = None, +) -> Iterator[Tag]: + """ + Yields the sequence of tags that are compatible with a specific version of Python. + + The tags consist of: + - py*-none- + - -none-any # ... if `interpreter` is provided. + - py*-none-any + """ + if not python_version: + python_version = sys.version_info[:2] + platforms = list(platforms or platform_tags()) + for version in _py_interpreter_range(python_version): + for platform_ in platforms: + yield Tag(version, "none", platform_) + if interpreter: + yield Tag(interpreter, "none", "any") + for version in _py_interpreter_range(python_version): + yield Tag(version, "none", "any") + + +def _mac_arch(arch: str, is_32bit: bool = _32_BIT_INTERPRETER) -> str: + if not is_32bit: + return arch + + if arch.startswith("ppc"): + return "ppc" + + return "i386" + + +def _mac_binary_formats(version: MacVersion, cpu_arch: str) -> List[str]: + formats = [cpu_arch] + if cpu_arch == "x86_64": + if version < (10, 4): + return [] + formats.extend(["intel", "fat64", "fat32"]) + + elif cpu_arch == "i386": + if version < (10, 4): + return [] + formats.extend(["intel", "fat32", "fat"]) + + elif cpu_arch == "ppc64": + # TODO: Need to care about 32-bit PPC for ppc64 through 10.2? + if version > (10, 5) or version < (10, 4): + return [] + formats.append("fat64") + + elif cpu_arch == "ppc": + if version > (10, 6): + return [] + formats.extend(["fat32", "fat"]) + + if cpu_arch in {"arm64", "x86_64"}: + formats.append("universal2") + + if cpu_arch in {"x86_64", "i386", "ppc64", "ppc", "intel"}: + formats.append("universal") + + return formats + + +def mac_platforms( + version: Optional[MacVersion] = None, arch: Optional[str] = None +) -> Iterator[str]: + """ + Yields the platform tags for a macOS system. + + The `version` parameter is a two-item tuple specifying the macOS version to + generate platform tags for. The `arch` parameter is the CPU architecture to + generate platform tags for. Both parameters default to the appropriate value + for the current system. + """ + version_str, _, cpu_arch = platform.mac_ver() + if version is None: + version = cast("MacVersion", tuple(map(int, version_str.split(".")[:2]))) + else: + version = version + if arch is None: + arch = _mac_arch(cpu_arch) + else: + arch = arch + + if (10, 0) <= version and version < (11, 0): + # Prior to Mac OS 11, each yearly release of Mac OS bumped the + # "minor" version number. The major version was always 10. + for minor_version in range(version[1], -1, -1): + compat_version = 10, minor_version + binary_formats = _mac_binary_formats(compat_version, arch) + for binary_format in binary_formats: + yield "macosx_{major}_{minor}_{binary_format}".format( + major=10, minor=minor_version, binary_format=binary_format + ) + + if version >= (11, 0): + # Starting with Mac OS 11, each yearly release bumps the major version + # number. The minor versions are now the midyear updates. + for major_version in range(version[0], 10, -1): + compat_version = major_version, 0 + binary_formats = _mac_binary_formats(compat_version, arch) + for binary_format in binary_formats: + yield "macosx_{major}_{minor}_{binary_format}".format( + major=major_version, minor=0, binary_format=binary_format + ) + + if version >= (11, 0): + # Mac OS 11 on x86_64 is compatible with binaries from previous releases. + # Arm64 support was introduced in 11.0, so no Arm binaries from previous + # releases exist. + # + # However, the "universal2" binary format can have a + # macOS version earlier than 11.0 when the x86_64 part of the binary supports + # that version of macOS. + if arch == "x86_64": + for minor_version in range(16, 3, -1): + compat_version = 10, minor_version + binary_formats = _mac_binary_formats(compat_version, arch) + for binary_format in binary_formats: + yield "macosx_{major}_{minor}_{binary_format}".format( + major=compat_version[0], + minor=compat_version[1], + binary_format=binary_format, + ) + else: + for minor_version in range(16, 3, -1): + compat_version = 10, minor_version + binary_format = "universal2" + yield "macosx_{major}_{minor}_{binary_format}".format( + major=compat_version[0], + minor=compat_version[1], + binary_format=binary_format, + ) + + +def _linux_platforms(is_32bit: bool = _32_BIT_INTERPRETER) -> Iterator[str]: + linux = _normalize_string(sysconfig.get_platform()) + if is_32bit: + if linux == "linux_x86_64": + linux = "linux_i686" + elif linux == "linux_aarch64": + linux = "linux_armv7l" + _, arch = linux.split("_", 1) + yield from _manylinux.platform_tags(linux, arch) + yield from _musllinux.platform_tags(arch) + yield linux + + +def _generic_platforms() -> Iterator[str]: + yield _normalize_string(sysconfig.get_platform()) + + +def platform_tags() -> Iterator[str]: + """ + Provides the platform tags for this installation. + """ + if platform.system() == "Darwin": + return mac_platforms() + elif platform.system() == "Linux": + return _linux_platforms() + else: + return _generic_platforms() + + +def interpreter_name() -> str: + """ + Returns the name of the running interpreter. + """ + name = sys.implementation.name + return INTERPRETER_SHORT_NAMES.get(name) or name + + +def interpreter_version(*, warn: bool = False) -> str: + """ + Returns the version of the running interpreter. + """ + version = _get_config_var("py_version_nodot", warn=warn) + if version: + version = str(version) + else: + version = _version_nodot(sys.version_info[:2]) + return version + + +def _version_nodot(version: PythonVersion) -> str: + return "".join(map(str, version)) + + +def sys_tags(*, warn: bool = False) -> Iterator[Tag]: + """ + Returns the sequence of tag triples for the running interpreter. + + The order of the sequence corresponds to priority order for the + interpreter, from most to least important. + """ + + interp_name = interpreter_name() + if interp_name == "cp": + yield from cpython_tags(warn=warn) + else: + yield from generic_tags() + + if interp_name == "pp": + yield from compatible_tags(interpreter="pp3") + else: + yield from compatible_tags() diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/packaging/utils.py b/.venv/lib/python3.11/site-packages/pip/_vendor/packaging/utils.py new file mode 100644 index 0000000..bab11b8 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/packaging/utils.py @@ -0,0 +1,136 @@ +# This file is dual licensed under the terms of the Apache License, Version +# 2.0, and the BSD License. See the LICENSE file in the root of this repository +# for complete details. + +import re +from typing import FrozenSet, NewType, Tuple, Union, cast + +from .tags import Tag, parse_tag +from .version import InvalidVersion, Version + +BuildTag = Union[Tuple[()], Tuple[int, str]] +NormalizedName = NewType("NormalizedName", str) + + +class InvalidWheelFilename(ValueError): + """ + An invalid wheel filename was found, users should refer to PEP 427. + """ + + +class InvalidSdistFilename(ValueError): + """ + An invalid sdist filename was found, users should refer to the packaging user guide. + """ + + +_canonicalize_regex = re.compile(r"[-_.]+") +# PEP 427: The build number must start with a digit. +_build_tag_regex = re.compile(r"(\d+)(.*)") + + +def canonicalize_name(name: str) -> NormalizedName: + # This is taken from PEP 503. + value = _canonicalize_regex.sub("-", name).lower() + return cast(NormalizedName, value) + + +def canonicalize_version(version: Union[Version, str]) -> str: + """ + This is very similar to Version.__str__, but has one subtle difference + with the way it handles the release segment. + """ + if isinstance(version, str): + try: + parsed = Version(version) + except InvalidVersion: + # Legacy versions cannot be normalized + return version + else: + parsed = version + + parts = [] + + # Epoch + if parsed.epoch != 0: + parts.append(f"{parsed.epoch}!") + + # Release segment + # NB: This strips trailing '.0's to normalize + parts.append(re.sub(r"(\.0)+$", "", ".".join(str(x) for x in parsed.release))) + + # Pre-release + if parsed.pre is not None: + parts.append("".join(str(x) for x in parsed.pre)) + + # Post-release + if parsed.post is not None: + parts.append(f".post{parsed.post}") + + # Development release + if parsed.dev is not None: + parts.append(f".dev{parsed.dev}") + + # Local version segment + if parsed.local is not None: + parts.append(f"+{parsed.local}") + + return "".join(parts) + + +def parse_wheel_filename( + filename: str, +) -> Tuple[NormalizedName, Version, BuildTag, FrozenSet[Tag]]: + if not filename.endswith(".whl"): + raise InvalidWheelFilename( + f"Invalid wheel filename (extension must be '.whl'): {filename}" + ) + + filename = filename[:-4] + dashes = filename.count("-") + if dashes not in (4, 5): + raise InvalidWheelFilename( + f"Invalid wheel filename (wrong number of parts): {filename}" + ) + + parts = filename.split("-", dashes - 2) + name_part = parts[0] + # See PEP 427 for the rules on escaping the project name + if "__" in name_part or re.match(r"^[\w\d._]*$", name_part, re.UNICODE) is None: + raise InvalidWheelFilename(f"Invalid project name: {filename}") + name = canonicalize_name(name_part) + version = Version(parts[1]) + if dashes == 5: + build_part = parts[2] + build_match = _build_tag_regex.match(build_part) + if build_match is None: + raise InvalidWheelFilename( + f"Invalid build number: {build_part} in '{filename}'" + ) + build = cast(BuildTag, (int(build_match.group(1)), build_match.group(2))) + else: + build = () + tags = parse_tag(parts[-1]) + return (name, version, build, tags) + + +def parse_sdist_filename(filename: str) -> Tuple[NormalizedName, Version]: + if filename.endswith(".tar.gz"): + file_stem = filename[: -len(".tar.gz")] + elif filename.endswith(".zip"): + file_stem = filename[: -len(".zip")] + else: + raise InvalidSdistFilename( + f"Invalid sdist filename (extension must be '.tar.gz' or '.zip'):" + f" {filename}" + ) + + # We are requiring a PEP 440 version, which cannot contain dashes, + # so we split on the last dash. + name_part, sep, version_part = file_stem.rpartition("-") + if not sep: + raise InvalidSdistFilename(f"Invalid sdist filename: {filename}") + + name = canonicalize_name(name_part) + version = Version(version_part) + return (name, version) diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/packaging/version.py b/.venv/lib/python3.11/site-packages/pip/_vendor/packaging/version.py new file mode 100644 index 0000000..de9a09a --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/packaging/version.py @@ -0,0 +1,504 @@ +# This file is dual licensed under the terms of the Apache License, Version +# 2.0, and the BSD License. See the LICENSE file in the root of this repository +# for complete details. + +import collections +import itertools +import re +import warnings +from typing import Callable, Iterator, List, Optional, SupportsInt, Tuple, Union + +from ._structures import Infinity, InfinityType, NegativeInfinity, NegativeInfinityType + +__all__ = ["parse", "Version", "LegacyVersion", "InvalidVersion", "VERSION_PATTERN"] + +InfiniteTypes = Union[InfinityType, NegativeInfinityType] +PrePostDevType = Union[InfiniteTypes, Tuple[str, int]] +SubLocalType = Union[InfiniteTypes, int, str] +LocalType = Union[ + NegativeInfinityType, + Tuple[ + Union[ + SubLocalType, + Tuple[SubLocalType, str], + Tuple[NegativeInfinityType, SubLocalType], + ], + ..., + ], +] +CmpKey = Tuple[ + int, Tuple[int, ...], PrePostDevType, PrePostDevType, PrePostDevType, LocalType +] +LegacyCmpKey = Tuple[int, Tuple[str, ...]] +VersionComparisonMethod = Callable[ + [Union[CmpKey, LegacyCmpKey], Union[CmpKey, LegacyCmpKey]], bool +] + +_Version = collections.namedtuple( + "_Version", ["epoch", "release", "dev", "pre", "post", "local"] +) + + +def parse(version: str) -> Union["LegacyVersion", "Version"]: + """ + Parse the given version string and return either a :class:`Version` object + or a :class:`LegacyVersion` object depending on if the given version is + a valid PEP 440 version or a legacy version. + """ + try: + return Version(version) + except InvalidVersion: + return LegacyVersion(version) + + +class InvalidVersion(ValueError): + """ + An invalid version was found, users should refer to PEP 440. + """ + + +class _BaseVersion: + _key: Union[CmpKey, LegacyCmpKey] + + def __hash__(self) -> int: + return hash(self._key) + + # Please keep the duplicated `isinstance` check + # in the six comparisons hereunder + # unless you find a way to avoid adding overhead function calls. + def __lt__(self, other: "_BaseVersion") -> bool: + if not isinstance(other, _BaseVersion): + return NotImplemented + + return self._key < other._key + + def __le__(self, other: "_BaseVersion") -> bool: + if not isinstance(other, _BaseVersion): + return NotImplemented + + return self._key <= other._key + + def __eq__(self, other: object) -> bool: + if not isinstance(other, _BaseVersion): + return NotImplemented + + return self._key == other._key + + def __ge__(self, other: "_BaseVersion") -> bool: + if not isinstance(other, _BaseVersion): + return NotImplemented + + return self._key >= other._key + + def __gt__(self, other: "_BaseVersion") -> bool: + if not isinstance(other, _BaseVersion): + return NotImplemented + + return self._key > other._key + + def __ne__(self, other: object) -> bool: + if not isinstance(other, _BaseVersion): + return NotImplemented + + return self._key != other._key + + +class LegacyVersion(_BaseVersion): + def __init__(self, version: str) -> None: + self._version = str(version) + self._key = _legacy_cmpkey(self._version) + + warnings.warn( + "Creating a LegacyVersion has been deprecated and will be " + "removed in the next major release", + DeprecationWarning, + ) + + def __str__(self) -> str: + return self._version + + def __repr__(self) -> str: + return f"" + + @property + def public(self) -> str: + return self._version + + @property + def base_version(self) -> str: + return self._version + + @property + def epoch(self) -> int: + return -1 + + @property + def release(self) -> None: + return None + + @property + def pre(self) -> None: + return None + + @property + def post(self) -> None: + return None + + @property + def dev(self) -> None: + return None + + @property + def local(self) -> None: + return None + + @property + def is_prerelease(self) -> bool: + return False + + @property + def is_postrelease(self) -> bool: + return False + + @property + def is_devrelease(self) -> bool: + return False + + +_legacy_version_component_re = re.compile(r"(\d+ | [a-z]+ | \.| -)", re.VERBOSE) + +_legacy_version_replacement_map = { + "pre": "c", + "preview": "c", + "-": "final-", + "rc": "c", + "dev": "@", +} + + +def _parse_version_parts(s: str) -> Iterator[str]: + for part in _legacy_version_component_re.split(s): + part = _legacy_version_replacement_map.get(part, part) + + if not part or part == ".": + continue + + if part[:1] in "0123456789": + # pad for numeric comparison + yield part.zfill(8) + else: + yield "*" + part + + # ensure that alpha/beta/candidate are before final + yield "*final" + + +def _legacy_cmpkey(version: str) -> LegacyCmpKey: + + # We hardcode an epoch of -1 here. A PEP 440 version can only have a epoch + # greater than or equal to 0. This will effectively put the LegacyVersion, + # which uses the defacto standard originally implemented by setuptools, + # as before all PEP 440 versions. + epoch = -1 + + # This scheme is taken from pkg_resources.parse_version setuptools prior to + # it's adoption of the packaging library. + parts: List[str] = [] + for part in _parse_version_parts(version.lower()): + if part.startswith("*"): + # remove "-" before a prerelease tag + if part < "*final": + while parts and parts[-1] == "*final-": + parts.pop() + + # remove trailing zeros from each series of numeric parts + while parts and parts[-1] == "00000000": + parts.pop() + + parts.append(part) + + return epoch, tuple(parts) + + +# Deliberately not anchored to the start and end of the string, to make it +# easier for 3rd party code to reuse +VERSION_PATTERN = r""" + v? + (?: + (?:(?P[0-9]+)!)? # epoch + (?P[0-9]+(?:\.[0-9]+)*) # release segment + (?P

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

literal 0
HcmV?d00001

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

literal 0
HcmV?d00001

diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/__pycache__/__main__.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/__pycache__/__main__.cpython-311.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..32bc65457c88f37b8621c34da61962b0ee79416c
GIT binary patch
literal 2320
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

literal 0
HcmV?d00001

diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/__pycache__/api.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/__pycache__/api.cpython-311.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..f056011a4fff14d73659d4dee700ca0d3d3e9c2d
GIT binary patch
literal 10599
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

literal 0
HcmV?d00001

diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/__pycache__/version.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/__pycache__/version.cpython-311.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..bd83e6f9abbcc68f2025f546483cac3be79a4a5e
GIT binary patch
literal 357
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. Makes use of the
+    `appname `,
+    `version `,
+    `ensure_exists `.
+    """
+
+    @property
+    def user_data_dir(self) -> str:
+        """:return: data directory tied to the user, e.g. ``/data/user///files/``"""
+        return self._append_app_name_and_version(cast(str, _android_folder()), "files")
+
+    @property
+    def site_data_dir(self) -> str:
+        """:return: data directory shared by users, same as `user_data_dir`"""
+        return self.user_data_dir
+
+    @property
+    def user_config_dir(self) -> str:
+        """
+        :return: config directory tied to the user, e.g. \
+        ``/data/user///shared_prefs/``
+        """
+        return self._append_app_name_and_version(cast(str, _android_folder()), "shared_prefs")
+
+    @property
+    def site_config_dir(self) -> str:
+        """:return: config directory shared by the users, same as `user_config_dir`"""
+        return self.user_config_dir
+
+    @property
+    def user_cache_dir(self) -> str:
+        """:return: cache directory tied to the user, e.g. e.g. ``/data/user///cache/``"""
+        return self._append_app_name_and_version(cast(str, _android_folder()), "cache")
+
+    @property
+    def site_cache_dir(self) -> str:
+        """:return: cache directory shared by users, same as `user_cache_dir`"""
+        return self.user_cache_dir
+
+    @property
+    def user_state_dir(self) -> str:
+        """:return: state directory tied to the user, same as `user_data_dir`"""
+        return self.user_data_dir
+
+    @property
+    def user_log_dir(self) -> str:
+        """
+        :return: log directory tied to the user, same as `user_cache_dir` if not opinionated else ``log`` in it,
+          e.g. ``/data/user///cache//log``
+        """
+        path = self.user_cache_dir
+        if self.opinion:
+            path = os.path.join(path, "log")  # noqa: PTH118
+        return path
+
+    @property
+    def user_documents_dir(self) -> str:
+        """:return: documents directory tied to the user e.g. ``/storage/emulated/0/Documents``"""
+        return _android_documents_folder()
+
+    @property
+    def user_downloads_dir(self) -> str:
+        """:return: downloads directory tied to the user e.g. ``/storage/emulated/0/Downloads``"""
+        return _android_downloads_folder()
+
+    @property
+    def user_pictures_dir(self) -> str:
+        """:return: pictures directory tied to the user e.g. ``/storage/emulated/0/Pictures``"""
+        return _android_pictures_folder()
+
+    @property
+    def user_videos_dir(self) -> str:
+        """:return: videos directory tied to the user e.g. ``/storage/emulated/0/DCIM/Camera``"""
+        return _android_videos_folder()
+
+    @property
+    def user_music_dir(self) -> str:
+        """:return: music directory tied to the user e.g. ``/storage/emulated/0/Music``"""
+        return _android_music_folder()
+
+    @property
+    def user_runtime_dir(self) -> str:
+        """
+        :return: runtime directory tied to the user, same as `user_cache_dir` if not opinionated else ``tmp`` in it,
+          e.g. ``/data/user///cache//tmp``
+        """
+        path = self.user_cache_dir
+        if self.opinion:
+            path = os.path.join(path, "tmp")  # noqa: PTH118
+        return path
+
+
+@lru_cache(maxsize=1)
+def _android_folder() -> str | None:
+    """:return: base folder for the Android OS or None if it cannot be found"""
+    try:
+        # First try to get path to android app via pyjnius
+        from jnius import autoclass
+
+        context = autoclass("android.content.Context")
+        result: str | None = context.getFilesDir().getParentFile().getAbsolutePath()
+    except Exception:  # noqa: BLE001
+        # if fails find an android folder looking path on the sys.path
+        pattern = re.compile(r"/data/(data|user/\d+)/(.+)/files")
+        for path in sys.path:
+            if pattern.match(path):
+                result = path.split("/files")[0]
+                break
+        else:
+            result = None
+    return result
+
+
+@lru_cache(maxsize=1)
+def _android_documents_folder() -> str:
+    """:return: documents folder for the Android OS"""
+    # Get directories with pyjnius
+    try:
+        from jnius import autoclass
+
+        context = autoclass("android.content.Context")
+        environment = autoclass("android.os.Environment")
+        documents_dir: str = context.getExternalFilesDir(environment.DIRECTORY_DOCUMENTS).getAbsolutePath()
+    except Exception:  # noqa: BLE001
+        documents_dir = "/storage/emulated/0/Documents"
+
+    return documents_dir
+
+
+@lru_cache(maxsize=1)
+def _android_downloads_folder() -> str:
+    """:return: downloads folder for the Android OS"""
+    # Get directories with pyjnius
+    try:
+        from jnius import autoclass
+
+        context = autoclass("android.content.Context")
+        environment = autoclass("android.os.Environment")
+        downloads_dir: str = context.getExternalFilesDir(environment.DIRECTORY_DOWNLOADS).getAbsolutePath()
+    except Exception:  # noqa: BLE001
+        downloads_dir = "/storage/emulated/0/Downloads"
+
+    return downloads_dir
+
+
+@lru_cache(maxsize=1)
+def _android_pictures_folder() -> str:
+    """:return: pictures folder for the Android OS"""
+    # Get directories with pyjnius
+    try:
+        from jnius import autoclass
+
+        context = autoclass("android.content.Context")
+        environment = autoclass("android.os.Environment")
+        pictures_dir: str = context.getExternalFilesDir(environment.DIRECTORY_PICTURES).getAbsolutePath()
+    except Exception:  # noqa: BLE001
+        pictures_dir = "/storage/emulated/0/Pictures"
+
+    return pictures_dir
+
+
+@lru_cache(maxsize=1)
+def _android_videos_folder() -> str:
+    """:return: videos folder for the Android OS"""
+    # Get directories with pyjnius
+    try:
+        from jnius import autoclass
+
+        context = autoclass("android.content.Context")
+        environment = autoclass("android.os.Environment")
+        videos_dir: str = context.getExternalFilesDir(environment.DIRECTORY_DCIM).getAbsolutePath()
+    except Exception:  # noqa: BLE001
+        videos_dir = "/storage/emulated/0/DCIM/Camera"
+
+    return videos_dir
+
+
+@lru_cache(maxsize=1)
+def _android_music_folder() -> str:
+    """:return: music folder for the Android OS"""
+    # Get directories with pyjnius
+    try:
+        from jnius import autoclass
+
+        context = autoclass("android.content.Context")
+        environment = autoclass("android.os.Environment")
+        music_dir: str = context.getExternalFilesDir(environment.DIRECTORY_MUSIC).getAbsolutePath()
+    except Exception:  # noqa: BLE001
+        music_dir = "/storage/emulated/0/Music"
+
+    return music_dir
+
+
+__all__ = [
+    "Android",
+]
diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/api.py b/.venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/api.py
new file mode 100644
index 0000000..d64ebb9
--- /dev/null
+++ b/.venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/api.py
@@ -0,0 +1,223 @@
+"""Base API."""
+from __future__ import annotations
+
+import os
+from abc import ABC, abstractmethod
+from pathlib import Path
+from typing import TYPE_CHECKING
+
+if TYPE_CHECKING:
+    import sys
+
+    if sys.version_info >= (3, 8):  # pragma: no cover (py38+)
+        from typing import Literal
+    else:  # pragma: no cover (py38+)
+        from pip._vendor.typing_extensions import Literal
+
+
+class PlatformDirsABC(ABC):
+    """Abstract base class for platform directories."""
+
+    def __init__(  # noqa: PLR0913
+        self,
+        appname: str | None = None,
+        appauthor: str | None | Literal[False] = None,
+        version: str | None = None,
+        roaming: bool = False,  # noqa: FBT001, FBT002
+        multipath: bool = False,  # noqa: FBT001, FBT002
+        opinion: bool = True,  # noqa: FBT001, FBT002
+        ensure_exists: bool = False,  # noqa: FBT001, FBT002
+    ) -> None:
+        """
+        Create a new platform directory.
+
+        :param appname: See `appname`.
+        :param appauthor: See `appauthor`.
+        :param version: See `version`.
+        :param roaming: See `roaming`.
+        :param multipath: See `multipath`.
+        :param opinion: See `opinion`.
+        :param ensure_exists: See `ensure_exists`.
+        """
+        self.appname = appname  #: The name of application.
+        self.appauthor = appauthor
+        """
+        The name of the app author or distributing body for this application. Typically, it is the owning company name.
+        Defaults to `appname`. You may pass ``False`` to disable it.
+        """
+        self.version = version
+        """
+        An optional version path element to append to the path. You might want to use this if you want multiple versions
+        of your app to be able to run independently. If used, this would typically be ``.``.
+        """
+        self.roaming = roaming
+        """
+        Whether to use the roaming appdata directory on Windows. That means that for users on a Windows network setup
+        for roaming profiles, this user data will be synced on login (see
+        `here `_).
+        """
+        self.multipath = multipath
+        """
+        An optional parameter only applicable to Unix/Linux which indicates that the entire list of data dirs should be
+        returned. By default, the first item would only be returned.
+        """
+        self.opinion = opinion  #: A flag to indicating to use opinionated values.
+        self.ensure_exists = ensure_exists
+        """
+        Optionally create the directory (and any missing parents) upon access if it does not exist.
+        By default, no directories are created.
+        """
+
+    def _append_app_name_and_version(self, *base: str) -> str:
+        params = list(base[1:])
+        if self.appname:
+            params.append(self.appname)
+            if self.version:
+                params.append(self.version)
+        path = os.path.join(base[0], *params)  # noqa: PTH118
+        self._optionally_create_directory(path)
+        return path
+
+    def _optionally_create_directory(self, path: str) -> None:
+        if self.ensure_exists:
+            Path(path).mkdir(parents=True, exist_ok=True)
+
+    @property
+    @abstractmethod
+    def user_data_dir(self) -> str:
+        """:return: data directory tied to the user"""
+
+    @property
+    @abstractmethod
+    def site_data_dir(self) -> str:
+        """:return: data directory shared by users"""
+
+    @property
+    @abstractmethod
+    def user_config_dir(self) -> str:
+        """:return: config directory tied to the user"""
+
+    @property
+    @abstractmethod
+    def site_config_dir(self) -> str:
+        """:return: config directory shared by the users"""
+
+    @property
+    @abstractmethod
+    def user_cache_dir(self) -> str:
+        """:return: cache directory tied to the user"""
+
+    @property
+    @abstractmethod
+    def site_cache_dir(self) -> str:
+        """:return: cache directory shared by users"""
+
+    @property
+    @abstractmethod
+    def user_state_dir(self) -> str:
+        """:return: state directory tied to the user"""
+
+    @property
+    @abstractmethod
+    def user_log_dir(self) -> str:
+        """:return: log directory tied to the user"""
+
+    @property
+    @abstractmethod
+    def user_documents_dir(self) -> str:
+        """:return: documents directory tied to the user"""
+
+    @property
+    @abstractmethod
+    def user_downloads_dir(self) -> str:
+        """:return: downloads directory tied to the user"""
+
+    @property
+    @abstractmethod
+    def user_pictures_dir(self) -> str:
+        """:return: pictures directory tied to the user"""
+
+    @property
+    @abstractmethod
+    def user_videos_dir(self) -> str:
+        """:return: videos directory tied to the user"""
+
+    @property
+    @abstractmethod
+    def user_music_dir(self) -> str:
+        """:return: music directory tied to the user"""
+
+    @property
+    @abstractmethod
+    def user_runtime_dir(self) -> str:
+        """:return: runtime directory tied to the user"""
+
+    @property
+    def user_data_path(self) -> Path:
+        """:return: data path tied to the user"""
+        return Path(self.user_data_dir)
+
+    @property
+    def site_data_path(self) -> Path:
+        """:return: data path shared by users"""
+        return Path(self.site_data_dir)
+
+    @property
+    def user_config_path(self) -> Path:
+        """:return: config path tied to the user"""
+        return Path(self.user_config_dir)
+
+    @property
+    def site_config_path(self) -> Path:
+        """:return: config path shared by the users"""
+        return Path(self.site_config_dir)
+
+    @property
+    def user_cache_path(self) -> Path:
+        """:return: cache path tied to the user"""
+        return Path(self.user_cache_dir)
+
+    @property
+    def site_cache_path(self) -> Path:
+        """:return: cache path shared by users"""
+        return Path(self.site_cache_dir)
+
+    @property
+    def user_state_path(self) -> Path:
+        """:return: state path tied to the user"""
+        return Path(self.user_state_dir)
+
+    @property
+    def user_log_path(self) -> Path:
+        """:return: log path tied to the user"""
+        return Path(self.user_log_dir)
+
+    @property
+    def user_documents_path(self) -> Path:
+        """:return: documents path tied to the user"""
+        return Path(self.user_documents_dir)
+
+    @property
+    def user_downloads_path(self) -> Path:
+        """:return: downloads path tied to the user"""
+        return Path(self.user_downloads_dir)
+
+    @property
+    def user_pictures_path(self) -> Path:
+        """:return: pictures path tied to the user"""
+        return Path(self.user_pictures_dir)
+
+    @property
+    def user_videos_path(self) -> Path:
+        """:return: videos path tied to the user"""
+        return Path(self.user_videos_dir)
+
+    @property
+    def user_music_path(self) -> Path:
+        """:return: music path tied to the user"""
+        return Path(self.user_music_dir)
+
+    @property
+    def user_runtime_path(self) -> Path:
+        """:return: runtime path tied to the user"""
+        return Path(self.user_runtime_dir)
diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/macos.py b/.venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/macos.py
new file mode 100644
index 0000000..a753e2a
--- /dev/null
+++ b/.venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/macos.py
@@ -0,0 +1,91 @@
+"""macOS."""
+from __future__ import annotations
+
+import os.path
+
+from .api import PlatformDirsABC
+
+
+class MacOS(PlatformDirsABC):
+    """
+    Platform directories for the macOS operating system. Follows the guidance from `Apple documentation
+    `_.
+    Makes use of the `appname `,
+    `version `,
+    `ensure_exists `.
+    """
+
+    @property
+    def user_data_dir(self) -> str:
+        """:return: data directory tied to the user, e.g. ``~/Library/Application Support/$appname/$version``"""
+        return self._append_app_name_and_version(os.path.expanduser("~/Library/Application Support"))  # noqa: PTH111
+
+    @property
+    def site_data_dir(self) -> str:
+        """:return: data directory shared by users, e.g. ``/Library/Application Support/$appname/$version``"""
+        return self._append_app_name_and_version("/Library/Application Support")
+
+    @property
+    def user_config_dir(self) -> str:
+        """:return: config directory tied to the user, same as `user_data_dir`"""
+        return self.user_data_dir
+
+    @property
+    def site_config_dir(self) -> str:
+        """:return: config directory shared by the users, same as `site_data_dir`"""
+        return self.site_data_dir
+
+    @property
+    def user_cache_dir(self) -> str:
+        """:return: cache directory tied to the user, e.g. ``~/Library/Caches/$appname/$version``"""
+        return self._append_app_name_and_version(os.path.expanduser("~/Library/Caches"))  # noqa: PTH111
+
+    @property
+    def site_cache_dir(self) -> str:
+        """:return: cache directory shared by users, e.g. ``/Library/Caches/$appname/$version``"""
+        return self._append_app_name_and_version("/Library/Caches")
+
+    @property
+    def user_state_dir(self) -> str:
+        """:return: state directory tied to the user, same as `user_data_dir`"""
+        return self.user_data_dir
+
+    @property
+    def user_log_dir(self) -> str:
+        """:return: log directory tied to the user, e.g. ``~/Library/Logs/$appname/$version``"""
+        return self._append_app_name_and_version(os.path.expanduser("~/Library/Logs"))  # noqa: PTH111
+
+    @property
+    def user_documents_dir(self) -> str:
+        """:return: documents directory tied to the user, e.g. ``~/Documents``"""
+        return os.path.expanduser("~/Documents")  # noqa: PTH111
+
+    @property
+    def user_downloads_dir(self) -> str:
+        """:return: downloads directory tied to the user, e.g. ``~/Downloads``"""
+        return os.path.expanduser("~/Downloads")  # noqa: PTH111
+
+    @property
+    def user_pictures_dir(self) -> str:
+        """:return: pictures directory tied to the user, e.g. ``~/Pictures``"""
+        return os.path.expanduser("~/Pictures")  # noqa: PTH111
+
+    @property
+    def user_videos_dir(self) -> str:
+        """:return: videos directory tied to the user, e.g. ``~/Movies``"""
+        return os.path.expanduser("~/Movies")  # noqa: PTH111
+
+    @property
+    def user_music_dir(self) -> str:
+        """:return: music directory tied to the user, e.g. ``~/Music``"""
+        return os.path.expanduser("~/Music")  # noqa: PTH111
+
+    @property
+    def user_runtime_dir(self) -> str:
+        """:return: runtime directory tied to the user, e.g. ``~/Library/Caches/TemporaryItems/$appname/$version``"""
+        return self._append_app_name_and_version(os.path.expanduser("~/Library/Caches/TemporaryItems"))  # noqa: PTH111
+
+
+__all__ = [
+    "MacOS",
+]
diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/py.typed b/.venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/py.typed
new file mode 100644
index 0000000..e69de29
diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/unix.py b/.venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/unix.py
new file mode 100644
index 0000000..468b0ab
--- /dev/null
+++ b/.venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/unix.py
@@ -0,0 +1,223 @@
+"""Unix."""
+from __future__ import annotations
+
+import os
+import sys
+from configparser import ConfigParser
+from pathlib import Path
+
+from .api import PlatformDirsABC
+
+if sys.platform == "win32":
+
+    def getuid() -> int:
+        msg = "should only be used on Unix"
+        raise RuntimeError(msg)
+
+else:
+    from os import getuid
+
+
+class Unix(PlatformDirsABC):
+    """
+    On Unix/Linux, we follow the
+    `XDG Basedir Spec `_. The spec allows
+    overriding directories with environment variables. The examples show are the default values, alongside the name of
+    the environment variable that overrides them. Makes use of the
+    `appname `,
+    `version `,
+    `multipath `,
+    `opinion `,
+    `ensure_exists `.
+    """
+
+    @property
+    def user_data_dir(self) -> str:
+        """
+        :return: data directory tied to the user, e.g. ``~/.local/share/$appname/$version`` or
+         ``$XDG_DATA_HOME/$appname/$version``
+        """
+        path = os.environ.get("XDG_DATA_HOME", "")
+        if not path.strip():
+            path = os.path.expanduser("~/.local/share")  # noqa: PTH111
+        return self._append_app_name_and_version(path)
+
+    @property
+    def site_data_dir(self) -> str:
+        """
+        :return: data directories shared by users (if `multipath ` is
+         enabled and ``XDG_DATA_DIR`` is set and a multi path the response is also a multi path separated by the OS
+         path separator), e.g. ``/usr/local/share/$appname/$version`` or ``/usr/share/$appname/$version``
+        """
+        # XDG default for $XDG_DATA_DIRS; only first, if multipath is False
+        path = os.environ.get("XDG_DATA_DIRS", "")
+        if not path.strip():
+            path = f"/usr/local/share{os.pathsep}/usr/share"
+        return self._with_multi_path(path)
+
+    def _with_multi_path(self, path: str) -> str:
+        path_list = path.split(os.pathsep)
+        if not self.multipath:
+            path_list = path_list[0:1]
+        path_list = [self._append_app_name_and_version(os.path.expanduser(p)) for p in path_list]  # noqa: PTH111
+        return os.pathsep.join(path_list)
+
+    @property
+    def user_config_dir(self) -> str:
+        """
+        :return: config directory tied to the user, e.g. ``~/.config/$appname/$version`` or
+         ``$XDG_CONFIG_HOME/$appname/$version``
+        """
+        path = os.environ.get("XDG_CONFIG_HOME", "")
+        if not path.strip():
+            path = os.path.expanduser("~/.config")  # noqa: PTH111
+        return self._append_app_name_and_version(path)
+
+    @property
+    def site_config_dir(self) -> str:
+        """
+        :return: config directories shared by users (if `multipath `
+         is enabled and ``XDG_DATA_DIR`` is set and a multi path the response is also a multi path separated by the OS
+         path separator), e.g. ``/etc/xdg/$appname/$version``
+        """
+        # XDG default for $XDG_CONFIG_DIRS only first, if multipath is False
+        path = os.environ.get("XDG_CONFIG_DIRS", "")
+        if not path.strip():
+            path = "/etc/xdg"
+        return self._with_multi_path(path)
+
+    @property
+    def user_cache_dir(self) -> str:
+        """
+        :return: cache directory tied to the user, e.g. ``~/.cache/$appname/$version`` or
+         ``~/$XDG_CACHE_HOME/$appname/$version``
+        """
+        path = os.environ.get("XDG_CACHE_HOME", "")
+        if not path.strip():
+            path = os.path.expanduser("~/.cache")  # noqa: PTH111
+        return self._append_app_name_and_version(path)
+
+    @property
+    def site_cache_dir(self) -> str:
+        """:return: cache directory shared by users, e.g. ``/var/tmp/$appname/$version``"""
+        return self._append_app_name_and_version("/var/tmp")  # noqa: S108
+
+    @property
+    def user_state_dir(self) -> str:
+        """
+        :return: state directory tied to the user, e.g. ``~/.local/state/$appname/$version`` or
+         ``$XDG_STATE_HOME/$appname/$version``
+        """
+        path = os.environ.get("XDG_STATE_HOME", "")
+        if not path.strip():
+            path = os.path.expanduser("~/.local/state")  # noqa: PTH111
+        return self._append_app_name_and_version(path)
+
+    @property
+    def user_log_dir(self) -> str:
+        """:return: log directory tied to the user, same as `user_state_dir` if not opinionated else ``log`` in it"""
+        path = self.user_state_dir
+        if self.opinion:
+            path = os.path.join(path, "log")  # noqa: PTH118
+        return path
+
+    @property
+    def user_documents_dir(self) -> str:
+        """:return: documents directory tied to the user, e.g. ``~/Documents``"""
+        return _get_user_media_dir("XDG_DOCUMENTS_DIR", "~/Documents")
+
+    @property
+    def user_downloads_dir(self) -> str:
+        """:return: downloads directory tied to the user, e.g. ``~/Downloads``"""
+        return _get_user_media_dir("XDG_DOWNLOAD_DIR", "~/Downloads")
+
+    @property
+    def user_pictures_dir(self) -> str:
+        """:return: pictures directory tied to the user, e.g. ``~/Pictures``"""
+        return _get_user_media_dir("XDG_PICTURES_DIR", "~/Pictures")
+
+    @property
+    def user_videos_dir(self) -> str:
+        """:return: videos directory tied to the user, e.g. ``~/Videos``"""
+        return _get_user_media_dir("XDG_VIDEOS_DIR", "~/Videos")
+
+    @property
+    def user_music_dir(self) -> str:
+        """:return: music directory tied to the user, e.g. ``~/Music``"""
+        return _get_user_media_dir("XDG_MUSIC_DIR", "~/Music")
+
+    @property
+    def user_runtime_dir(self) -> str:
+        """
+        :return: runtime directory tied to the user, e.g. ``/run/user/$(id -u)/$appname/$version`` or
+         ``$XDG_RUNTIME_DIR/$appname/$version``.
+
+         For FreeBSD/OpenBSD/NetBSD, it would return ``/var/run/user/$(id -u)/$appname/$version`` if
+         exists, otherwise ``/tmp/runtime-$(id -u)/$appname/$version``, if``$XDG_RUNTIME_DIR``
+         is not set.
+        """
+        path = os.environ.get("XDG_RUNTIME_DIR", "")
+        if not path.strip():
+            if sys.platform.startswith(("freebsd", "openbsd", "netbsd")):
+                path = f"/var/run/user/{getuid()}"
+                if not Path(path).exists():
+                    path = f"/tmp/runtime-{getuid()}"  # noqa: S108
+            else:
+                path = f"/run/user/{getuid()}"
+        return self._append_app_name_and_version(path)
+
+    @property
+    def site_data_path(self) -> Path:
+        """:return: data path shared by users. Only return first item, even if ``multipath`` is set to ``True``"""
+        return self._first_item_as_path_if_multipath(self.site_data_dir)
+
+    @property
+    def site_config_path(self) -> Path:
+        """:return: config path shared by the users. Only return first item, even if ``multipath`` is set to ``True``"""
+        return self._first_item_as_path_if_multipath(self.site_config_dir)
+
+    @property
+    def site_cache_path(self) -> Path:
+        """:return: cache path shared by users. Only return first item, even if ``multipath`` is set to ``True``"""
+        return self._first_item_as_path_if_multipath(self.site_cache_dir)
+
+    def _first_item_as_path_if_multipath(self, directory: str) -> Path:
+        if self.multipath:
+            # If multipath is True, the first path is returned.
+            directory = directory.split(os.pathsep)[0]
+        return Path(directory)
+
+
+def _get_user_media_dir(env_var: str, fallback_tilde_path: str) -> str:
+    media_dir = _get_user_dirs_folder(env_var)
+    if media_dir is None:
+        media_dir = os.environ.get(env_var, "").strip()
+        if not media_dir:
+            media_dir = os.path.expanduser(fallback_tilde_path)  # noqa: PTH111
+
+    return media_dir
+
+
+def _get_user_dirs_folder(key: str) -> str | None:
+    """Return directory from user-dirs.dirs config file. See https://freedesktop.org/wiki/Software/xdg-user-dirs/."""
+    user_dirs_config_path = Path(Unix().user_config_dir) / "user-dirs.dirs"
+    if user_dirs_config_path.exists():
+        parser = ConfigParser()
+
+        with user_dirs_config_path.open() as stream:
+            # Add fake section header, so ConfigParser doesn't complain
+            parser.read_string(f"[top]\n{stream.read()}")
+
+        if key not in parser["top"]:
+            return None
+
+        path = parser["top"][key].strip('"')
+        # Handle relative home paths
+        return path.replace("$HOME", os.path.expanduser("~"))  # noqa: PTH111
+
+    return None
+
+
+__all__ = [
+    "Unix",
+]
diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/version.py b/.venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/version.py
new file mode 100644
index 0000000..dc8c44c
--- /dev/null
+++ b/.venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/version.py
@@ -0,0 +1,4 @@
+# file generated by setuptools_scm
+# don't change, don't track in version control
+__version__ = version = '3.8.1'
+__version_tuple__ = version_tuple = (3, 8, 1)
diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/windows.py b/.venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/windows.py
new file mode 100644
index 0000000..b52c9c6
--- /dev/null
+++ b/.venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/windows.py
@@ -0,0 +1,255 @@
+"""Windows."""
+from __future__ import annotations
+
+import ctypes
+import os
+import sys
+from functools import lru_cache
+from typing import TYPE_CHECKING
+
+from .api import PlatformDirsABC
+
+if TYPE_CHECKING:
+    from collections.abc import Callable
+
+
+class Windows(PlatformDirsABC):
+    """
+    `MSDN on where to store app data files
+    `_.
+    Makes use of the
+    `appname `,
+    `appauthor `,
+    `version `,
+    `roaming `,
+    `opinion `,
+    `ensure_exists `.
+    """
+
+    @property
+    def user_data_dir(self) -> str:
+        """
+        :return: data directory tied to the user, e.g.
+         ``%USERPROFILE%\\AppData\\Local\\$appauthor\\$appname`` (not roaming) or
+         ``%USERPROFILE%\\AppData\\Roaming\\$appauthor\\$appname`` (roaming)
+        """
+        const = "CSIDL_APPDATA" if self.roaming else "CSIDL_LOCAL_APPDATA"
+        path = os.path.normpath(get_win_folder(const))
+        return self._append_parts(path)
+
+    def _append_parts(self, path: str, *, opinion_value: str | None = None) -> str:
+        params = []
+        if self.appname:
+            if self.appauthor is not False:
+                author = self.appauthor or self.appname
+                params.append(author)
+            params.append(self.appname)
+            if opinion_value is not None and self.opinion:
+                params.append(opinion_value)
+            if self.version:
+                params.append(self.version)
+        path = os.path.join(path, *params)  # noqa: PTH118
+        self._optionally_create_directory(path)
+        return path
+
+    @property
+    def site_data_dir(self) -> str:
+        """:return: data directory shared by users, e.g. ``C:\\ProgramData\\$appauthor\\$appname``"""
+        path = os.path.normpath(get_win_folder("CSIDL_COMMON_APPDATA"))
+        return self._append_parts(path)
+
+    @property
+    def user_config_dir(self) -> str:
+        """:return: config directory tied to the user, same as `user_data_dir`"""
+        return self.user_data_dir
+
+    @property
+    def site_config_dir(self) -> str:
+        """:return: config directory shared by the users, same as `site_data_dir`"""
+        return self.site_data_dir
+
+    @property
+    def user_cache_dir(self) -> str:
+        """
+        :return: cache directory tied to the user (if opinionated with ``Cache`` folder within ``$appname``) e.g.
+         ``%USERPROFILE%\\AppData\\Local\\$appauthor\\$appname\\Cache\\$version``
+        """
+        path = os.path.normpath(get_win_folder("CSIDL_LOCAL_APPDATA"))
+        return self._append_parts(path, opinion_value="Cache")
+
+    @property
+    def site_cache_dir(self) -> str:
+        """:return: cache directory shared by users, e.g. ``C:\\ProgramData\\$appauthor\\$appname\\Cache\\$version``"""
+        path = os.path.normpath(get_win_folder("CSIDL_COMMON_APPDATA"))
+        return self._append_parts(path, opinion_value="Cache")
+
+    @property
+    def user_state_dir(self) -> str:
+        """:return: state directory tied to the user, same as `user_data_dir`"""
+        return self.user_data_dir
+
+    @property
+    def user_log_dir(self) -> str:
+        """:return: log directory tied to the user, same as `user_data_dir` if not opinionated else ``Logs`` in it"""
+        path = self.user_data_dir
+        if self.opinion:
+            path = os.path.join(path, "Logs")  # noqa: PTH118
+            self._optionally_create_directory(path)
+        return path
+
+    @property
+    def user_documents_dir(self) -> str:
+        """:return: documents directory tied to the user e.g. ``%USERPROFILE%\\Documents``"""
+        return os.path.normpath(get_win_folder("CSIDL_PERSONAL"))
+
+    @property
+    def user_downloads_dir(self) -> str:
+        """:return: downloads directory tied to the user e.g. ``%USERPROFILE%\\Downloads``"""
+        return os.path.normpath(get_win_folder("CSIDL_DOWNLOADS"))
+
+    @property
+    def user_pictures_dir(self) -> str:
+        """:return: pictures directory tied to the user e.g. ``%USERPROFILE%\\Pictures``"""
+        return os.path.normpath(get_win_folder("CSIDL_MYPICTURES"))
+
+    @property
+    def user_videos_dir(self) -> str:
+        """:return: videos directory tied to the user e.g. ``%USERPROFILE%\\Videos``"""
+        return os.path.normpath(get_win_folder("CSIDL_MYVIDEO"))
+
+    @property
+    def user_music_dir(self) -> str:
+        """:return: music directory tied to the user e.g. ``%USERPROFILE%\\Music``"""
+        return os.path.normpath(get_win_folder("CSIDL_MYMUSIC"))
+
+    @property
+    def user_runtime_dir(self) -> str:
+        """
+        :return: runtime directory tied to the user, e.g.
+         ``%USERPROFILE%\\AppData\\Local\\Temp\\$appauthor\\$appname``
+        """
+        path = os.path.normpath(os.path.join(get_win_folder("CSIDL_LOCAL_APPDATA"), "Temp"))  # noqa: PTH118
+        return self._append_parts(path)
+
+
+def get_win_folder_from_env_vars(csidl_name: str) -> str:
+    """Get folder from environment variables."""
+    result = get_win_folder_if_csidl_name_not_env_var(csidl_name)
+    if result is not None:
+        return result
+
+    env_var_name = {
+        "CSIDL_APPDATA": "APPDATA",
+        "CSIDL_COMMON_APPDATA": "ALLUSERSPROFILE",
+        "CSIDL_LOCAL_APPDATA": "LOCALAPPDATA",
+    }.get(csidl_name)
+    if env_var_name is None:
+        msg = f"Unknown CSIDL name: {csidl_name}"
+        raise ValueError(msg)
+    result = os.environ.get(env_var_name)
+    if result is None:
+        msg = f"Unset environment variable: {env_var_name}"
+        raise ValueError(msg)
+    return result
+
+
+def get_win_folder_if_csidl_name_not_env_var(csidl_name: str) -> str | None:
+    """Get folder for a CSIDL name that does not exist as an environment variable."""
+    if csidl_name == "CSIDL_PERSONAL":
+        return os.path.join(os.path.normpath(os.environ["USERPROFILE"]), "Documents")  # noqa: PTH118
+
+    if csidl_name == "CSIDL_DOWNLOADS":
+        return os.path.join(os.path.normpath(os.environ["USERPROFILE"]), "Downloads")  # noqa: PTH118
+
+    if csidl_name == "CSIDL_MYPICTURES":
+        return os.path.join(os.path.normpath(os.environ["USERPROFILE"]), "Pictures")  # noqa: PTH118
+
+    if csidl_name == "CSIDL_MYVIDEO":
+        return os.path.join(os.path.normpath(os.environ["USERPROFILE"]), "Videos")  # noqa: PTH118
+
+    if csidl_name == "CSIDL_MYMUSIC":
+        return os.path.join(os.path.normpath(os.environ["USERPROFILE"]), "Music")  # noqa: PTH118
+    return None
+
+
+def get_win_folder_from_registry(csidl_name: str) -> str:
+    """
+    Get folder from the registry.
+
+    This is a fallback technique at best. I'm not sure if using the registry for these guarantees us the correct answer
+    for all CSIDL_* names.
+    """
+    shell_folder_name = {
+        "CSIDL_APPDATA": "AppData",
+        "CSIDL_COMMON_APPDATA": "Common AppData",
+        "CSIDL_LOCAL_APPDATA": "Local AppData",
+        "CSIDL_PERSONAL": "Personal",
+        "CSIDL_DOWNLOADS": "{374DE290-123F-4565-9164-39C4925E467B}",
+        "CSIDL_MYPICTURES": "My Pictures",
+        "CSIDL_MYVIDEO": "My Video",
+        "CSIDL_MYMUSIC": "My Music",
+    }.get(csidl_name)
+    if shell_folder_name is None:
+        msg = f"Unknown CSIDL name: {csidl_name}"
+        raise ValueError(msg)
+    if sys.platform != "win32":  # only needed for mypy type checker to know that this code runs only on Windows
+        raise NotImplementedError
+    import winreg
+
+    key = winreg.OpenKey(winreg.HKEY_CURRENT_USER, r"Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders")
+    directory, _ = winreg.QueryValueEx(key, shell_folder_name)
+    return str(directory)
+
+
+def get_win_folder_via_ctypes(csidl_name: str) -> str:
+    """Get folder with ctypes."""
+    # There is no 'CSIDL_DOWNLOADS'.
+    # Use 'CSIDL_PROFILE' (40) and append the default folder 'Downloads' instead.
+    # https://learn.microsoft.com/en-us/windows/win32/shell/knownfolderid
+
+    csidl_const = {
+        "CSIDL_APPDATA": 26,
+        "CSIDL_COMMON_APPDATA": 35,
+        "CSIDL_LOCAL_APPDATA": 28,
+        "CSIDL_PERSONAL": 5,
+        "CSIDL_MYPICTURES": 39,
+        "CSIDL_MYVIDEO": 14,
+        "CSIDL_MYMUSIC": 13,
+        "CSIDL_DOWNLOADS": 40,
+    }.get(csidl_name)
+    if csidl_const is None:
+        msg = f"Unknown CSIDL name: {csidl_name}"
+        raise ValueError(msg)
+
+    buf = ctypes.create_unicode_buffer(1024)
+    windll = getattr(ctypes, "windll")  # noqa: B009 # using getattr to avoid false positive with mypy type checker
+    windll.shell32.SHGetFolderPathW(None, csidl_const, None, 0, buf)
+
+    # Downgrade to short path name if it has highbit chars.
+    if any(ord(c) > 255 for c in buf):  # noqa: PLR2004
+        buf2 = ctypes.create_unicode_buffer(1024)
+        if windll.kernel32.GetShortPathNameW(buf.value, buf2, 1024):
+            buf = buf2
+
+    if csidl_name == "CSIDL_DOWNLOADS":
+        return os.path.join(buf.value, "Downloads")  # noqa: PTH118
+
+    return buf.value
+
+
+def _pick_get_win_folder() -> Callable[[str], str]:
+    if hasattr(ctypes, "windll"):
+        return get_win_folder_via_ctypes
+    try:
+        import winreg  # noqa: F401
+    except ImportError:
+        return get_win_folder_from_env_vars
+    else:
+        return get_win_folder_from_registry
+
+
+get_win_folder = lru_cache(maxsize=None)(_pick_get_win_folder())
+
+__all__ = [
+    "Windows",
+]
diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/pygments/__init__.py b/.venv/lib/python3.11/site-packages/pip/_vendor/pygments/__init__.py
new file mode 100644
index 0000000..39c84aa
--- /dev/null
+++ b/.venv/lib/python3.11/site-packages/pip/_vendor/pygments/__init__.py
@@ -0,0 +1,82 @@
+"""
+    Pygments
+    ~~~~~~~~
+
+    Pygments is a syntax highlighting package written in Python.
+
+    It is a generic syntax highlighter for general use in all kinds of software
+    such as forum systems, wikis or other applications that need to prettify
+    source code. Highlights are:
+
+    * a wide range of common languages and markup formats is supported
+    * special attention is paid to details, increasing quality by a fair amount
+    * support for new languages and formats are added easily
+    * a number of output formats, presently HTML, LaTeX, RTF, SVG, all image
+      formats that PIL supports, and ANSI sequences
+    * it is usable as a command-line tool and as a library
+    * ... and it highlights even Brainfuck!
+
+    The `Pygments master branch`_ is installable with ``easy_install Pygments==dev``.
+
+    .. _Pygments master branch:
+       https://github.com/pygments/pygments/archive/master.zip#egg=Pygments-dev
+
+    :copyright: Copyright 2006-2023 by the Pygments team, see AUTHORS.
+    :license: BSD, see LICENSE for details.
+"""
+from io import StringIO, BytesIO
+
+__version__ = '2.15.1'
+__docformat__ = 'restructuredtext'
+
+__all__ = ['lex', 'format', 'highlight']
+
+
+def lex(code, lexer):
+    """
+    Lex `code` with the `lexer` (must be a `Lexer` instance)
+    and return an iterable of tokens. Currently, this only calls
+    `lexer.get_tokens()`.
+    """
+    try:
+        return lexer.get_tokens(code)
+    except TypeError:
+        # Heuristic to catch a common mistake.
+        from pip._vendor.pygments.lexer import RegexLexer
+        if isinstance(lexer, type) and issubclass(lexer, RegexLexer):
+            raise TypeError('lex() argument must be a lexer instance, '
+                            'not a class')
+        raise
+
+
+def format(tokens, formatter, outfile=None):  # pylint: disable=redefined-builtin
+    """
+    Format ``tokens`` (an iterable of tokens) with the formatter ``formatter``
+    (a `Formatter` instance).
+
+    If ``outfile`` is given and a valid file object (an object with a
+    ``write`` method), the result will be written to it, otherwise it
+    is returned as a string.
+    """
+    try:
+        if not outfile:
+            realoutfile = getattr(formatter, 'encoding', None) and BytesIO() or StringIO()
+            formatter.format(tokens, realoutfile)
+            return realoutfile.getvalue()
+        else:
+            formatter.format(tokens, outfile)
+    except TypeError:
+        # Heuristic to catch a common mistake.
+        from pip._vendor.pygments.formatter import Formatter
+        if isinstance(formatter, type) and issubclass(formatter, Formatter):
+            raise TypeError('format() argument must be a formatter instance, '
+                            'not a class')
+        raise
+
+
+def highlight(code, lexer, formatter, outfile=None):
+    """
+    This is the most high-level highlighting function. It combines `lex` and
+    `format` in one function.
+    """
+    return format(lex(code, lexer), formatter, outfile)
diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/pygments/__main__.py b/.venv/lib/python3.11/site-packages/pip/_vendor/pygments/__main__.py
new file mode 100644
index 0000000..2f7f8cb
--- /dev/null
+++ b/.venv/lib/python3.11/site-packages/pip/_vendor/pygments/__main__.py
@@ -0,0 +1,17 @@
+"""
+    pygments.__main__
+    ~~~~~~~~~~~~~~~~~
+
+    Main entry point for ``python -m pygments``.
+
+    :copyright: Copyright 2006-2023 by the Pygments team, see AUTHORS.
+    :license: BSD, see LICENSE for details.
+"""
+
+import sys
+from pip._vendor.pygments.cmdline import main
+
+try:
+    sys.exit(main(sys.argv))
+except KeyboardInterrupt:
+    sys.exit(1)
diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-311.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..5cdfc0b279a672becf73679f74730585db8fa79f
GIT binary patch
literal 3876
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

literal 0
HcmV?d00001

diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/pygments/__pycache__/__main__.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/pygments/__pycache__/__main__.cpython-311.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..ce83a8012ab99d2e4b4b4e7af8a14bc446d44851
GIT binary patch
literal 825
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
T3O*ba_dnRj-sj(;Qttf^i7-@S

literal 0
HcmV?d00001

diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/pygments/__pycache__/formatter.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/pygments/__pycache__/formatter.cpython-311.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..e9c6ec932aa2f22f17f0ed6c383426c5b1263f3c
GIT binary patch
literal 4864
zcmb7I&2JmW6(4?y)R*NiDN5=jQ#pyOLZTc6PE#gv5zF~1Y{iHa6lD(Na(5`Mz1(GH
zXQfb3108bE!H1w|VW4PGp(vabx%kjSPW>CCKtPQJ0vPC_$c=^DOHTd0*$>u=!lzjZ~@CF|4FpE{0m9er;rkcTT&dIiO
z)m(C*vwQ%tdUPywU}jZGpqP1+U{l<`wHKvR7+NNoh_7h{x-%@I^E5-
zaFt(fda`XOC8Tct#yju5zh2fWR2nOaRqIX|)9Z_p^Yp&52;pkh*=FCiN2Kpfj=kR^F
zhUyMe1AV(pr50ms*n)CO6)+$!yX-E;eU*+~XS)pc&8#it!ZF*oU0)flDZ-quq@)$0
zVnM6t(-{8!{_+RDkp8l3D8sRBLv`C;(-yYaGL~<2&6XkCH>7t{n95&%=a(zXjxeNK
z>vUDi!%x(+T;3Ay*0N(amZOfB$}hgS?AuB#bqw>Cu_^rJj@?4uXv$MbFloydA}9O|9H*PlnV$G$C|`t147&m0w>J}y4pW0}H*Z>RXd^wHG(@znfb
zY5xBB$-Qe2A<9gul9HJ5;mc^b!vq6-Sv6~AsyQoL&2O@50pAfTS1nq30Jmh70N_k@
zl)zgZ(_kHyWN>2!wZ_P*=WYq9d~R^%-4ZT`ZGk4d097BW7?A0q``mANfn)KOu_ZV_
zF6~C3girD<;dB5(2j;ciO+sk9%r{!X7kVW_3hvu&+cBh`9RM~xDTUwhT#E)&v@cbLv99|Df)H*v}Ir_Pez{mhU4_9
z0b@;5bQD<>l+iGJ+f1g7_f@ZJH>gKeA~J&Aag^{}S|jkqqSmN^GouqGbAtg4zOF_5
zprLJ_7=d4~MAHZy(9c}_G`CRZYo4O1EaD$g-Yk5vT}+qP>sDO94J)a%W_aRwC=
zjsv(rz0_eyMK4gDKtZE9lAq(2XKEWQa=R>|sc2gUFw^chLSc8pX)c+b3lejoQ!;=c
zXZv^+zB{ipPE#EX7m7EV0H`KF-)j$O;ScP(X*j-ENOquX<%oeTyxZi-wm6o;$-%s|
zBQ1z0LnUqkgKLW^FIB=cG$QnXMCpO0=jYRPg=>1`8N*9&+F+hV-VS`l={#MY$Z6=u
z``@+!p+~JA`MX~I1J}j^gpk=hq6In*NGZrNsww>@l&8kQXU79<*)t#O>(^;A0E4>}!B
zssXdn`l;bCZ(@@H+r0;(lePu2s@MD7+-`Dh(wI@!HiiP*2-uR?`(Xni=6?cP<{%AK
zkVp&Ci0p8f8xCu`td=l2Q^j-`+eIp3`E$yg
zZ`-QHbr|r;#Q-;We8QDn8MknnhHThM8nPRcqT%!zb}^mIa4kCOF1Xo?fdBw6>V`O`
zHEjv-ArCMGh#QiUd)sb8wc5q|5H<}s7=ajkj7Ub=8@Gv?h}jL|{61^RQ5ZBV##9>S
ziQ?W03z{xM7M2n;t}SH4!e)Tg!y;uX$k28Qfod+j5{?gGdZDBfiZF-tOiwKdFA`ZV
zlc%VnR3j|Lkq2|;i7VwST75zu=aO>euvDwruB~ddozs2RPTJN<`g2r!>^~E1=KR4=
zzj*aeuYS4x_2|+0E63-r98IqtPp|IhZ;yR@mLELv9M7&C&aU3G{@T{!PdtO4iG6(J1T>VVQJJYv;f4H?Z1Ru*jD$Y}
zWMz#!L{dEHDA5*3{j7*frBH#S{KruG3=z61N5;uYeVj;r0$Ul4D5T;n5q8qq2nc3?
zY{muk>zIn@h5-#k)SP*+fjZy#CI{^=s+5)Io0P
zY8%9zI*JTno!609)RQnDM;-8~WjCYi!lrOVv=symE1e8J)sMuM=pd~ng)c~B0XFS=%k_s(4#5pzyd%;PBDlniucGXAe=zU;viigtVqe8?m&!>!#l5o+$iSP
z2QZ%6JmFsrIm-8>=kS)d&Be!tshkMgv5s`dfC$}agw;Rr@5m?%`G^-sDCaT#a3s2+
zg(o8wYk{k2SXc|W2p8i6`vjXtD*7}P648i3N20MiCsS?X%fEz_e-#ywae_^py#0EQ
zWk-MhVCK^An!jxyT>bO)qnVZCnU#Al9?x95w|O*k`FQ5?{@eGb&isAqxo@VPJNWS4
z{Lxh9c&c((s%TIxWHik!j1z6s^`lk`$7(hBcYy18Eu5&;J_-yc?kU!4a3nP6sUa-J
zx14Y^y}X2zL6rVsW5~SaQ&3huL)8mZouf*VD}@SuY19>=&u^pJOFzBre4*51RBdFi
z*S)K~5}P`;_jYfLojSAkF5ae}+`Hb(pC~-rV`;@F3#WT*xO!%+@M@3!u!<}&Dt|({
z{1{dEB<|ql_zsQ>cl@81K-rEChT)GM*{`YD*Z(^RVImMvt)^pXw87y`e_whnvhHQM
zf+Z=Y_@ANb#okCRbE?PE
WYQoH9u=PjR|I+RMeoU`6&VK3;7Xbo%zuzFmwOo17l&UHgukXA%4Lyn9{FSx9
z^EIL{CAh8M7SGoj1dn*BPN}5Z_8n0WzK?%?ov%l_LZoXzx<TcT
zcaf+0J4U>VfBD@O7FUe85>Ly$(wtZ)i!DQJxyP9k*UI855LfAG%Zb~>;;Il={T=k=
z_wg^6*N!^2e+NIluRIdYcd*noNL}mc%*m;X#nmCMJ}0Mccf+f~`5qSEi1?
zR_NIp`k>H>Yj%EW#^VbH`lmhDJQ92KvhFHm&knl+9w$rUoS1e60-iuWj~Jft&(2HU
zsf)p3=ZJFa+_rV=Q(Lxe-L~C%Vcr?M=y5(P7vl_iTr+*nfXCxJ^xU}<&wT!DKg)l3
z+B@O#1w6yf!)K51_|qpxj*gx^>YVgTPPZrM@=l}752^D;dkmQ(*X-={{Me*-I_QxC
z8Ot$t(<5fer#wOV@z{m=F`sM3(__wKi>zeRn
z3dhd*FME9F=4U-UmW+e)xZw9skNIbV89V**`hx5Si<+HrzHQ}Y#?Kv3*fDcDR|Kv
z$P~CeldidGwEL=Ga^v^3*XJ3NJRwtm?}5S|bB`fFYyZFe(LevhJQtkYvI`Grn*QqV
z1R-RhC)>Blj|AcGeigFvM;APJNQ?Maf5%e|J|#a;(hNRz!84(PB&4K!D(W%8RDe_XYHncr8H5oS(cp@LT{xJK%E#UDIB#D>y&npY(dXo-3|_XXhs_x}=$B
zCI2PQL@+RL;tSgbradmnH#R#Tyy(Xlj~VE{;_+P>nD$;6;1S#V2L}fN81^j~_RFp*
zPheoyJ3BCjWNyENM0_%ggDS3;JhV
zQ{D;J^z^)Q!tcA{k%9r|_&A?yo-vvN4ec<{nY<6&Au`*bp}A;Ub$78Hcu=Jw~Y*?_fG(d1ea6#(bWuV`Jz=
zk#o4N$qq;|X`^&tqAslDAVzq}cb160jLA#JaVeJ){d#%I+z
zuq-b3r?wtSIuECuha-m~zNDjRwWQ)3;Tz%DNW3yWx8zEeY)zGHO<1=|oycGm(8Y>e
zQHilJz>%>Tzk6<)?j2)eFU`58Oa!BC*$bExYL_1vJS5TM#U&f9nRL
z*}5)JP-rv{(p_%AbE5ZklTqpQ$LA1}I~mWLriAlm{9Eu}fPbsoc;4nVoG)~nFj4Jp
zGeU>kg0RS4fUwwYciUbS&zHCh@vD?!5r&;er6Ec2h8KLfJA+51mtUUbn{?^gFKt
z!~v+Wa@b1>3gU&zXvulebp`ncgOc~c9H6^%F5q#q8ckgE`w1#Cd^F<^1f4)3l7ChL
zXz^rob<#v~JN-Va5XtMG3pgiGFyO08u77_&Tb*hV!^2J*VwMA@-LTKUg{`e&_9Rbg
zKr@=FpZx_OIS&=_8@$5GAT+3XF;7)yyZ|6rRKG#a=r2DyWS*mc*7pQ{7%Fn(CX4C=
z7yWb7Zh1g_PM6z_0rUe`W`}2(=aQ#pbJBF44q}g9@Xt9XTt4S4=ny9`D)J1_1R**D
zkTMXI<|crP`<>_T0HcX1sHBpBkEeXzkjKq(0&xQP%ITVb)8%tJF(D>^xG@1_!i8po
zbDTAEoRdCIm*kP_JwA@YytBUP@o}ZH&a?CcS-RXb*C@}R1lomu0BjNJ4LBzy{|u|H
z*Ec&Cbau-Kdf0hRn)CE3l<9zPiu`Rot1J2WakQpB5fST25B02|&
z>IQX%F7J0bN6Oyn1$ku_Bn*|H|cPt|-tcS$a3Ueg3GmM5mK$E{3qjP%A1
zeg;D=0qoP{pyIMgs598W^7lt2!f`qp(~Jjp{6D?}g5^yjF@!Pv3=xcmLc(G=|5EkN^mTBHF
z=t~uao3-vDka@+fTWEqhS=frvz;9;|00^^Hy5I!_mF86-?g}_Bd*+FkLF5#m2C=Vd
zHb*gc<^i`Za6+1`&`Ga^bt=PlEGD3htG;Z01fwqkRuHkR=EG*50{6361-vPc9RQV@
zpFB$$qEX*g5YDt0KvcyNG6g{^{}3R?H5Xfk(|-TufRm*R0&2*(g%Sbi1^jc;1mhwB
z@;DE}p&rHK0_t#%fjjjE$Huw?p6SUxXK$}udJiW-ctRFZg8m8r%&Y_?=iH}sK|eU$
z?k?qdSD&-1t4D2${5tCjkk3yjDqE>TY}EoHD1E?&fN&N-hfEZ@E&$$O968Ji0Da6c
z8V{YWmW%4l5SS)p00;vDvZs&62?z-oSf$S9f<(2wma!@rGE*R98wPslImZtfGXu7n
z!Yo9~6v*NUM(&UHI5GutpGdS)q@5J(qF^@#4hn`5WQ-UOX%GF}PeBnqD+Jz?;thQlVn~$o(U{6Zmrki^6)RP}>qQ-E^$hY>FRWdf~n)
zS+g%yvyVNhZI6Fp>C*joODC6KO4jU7)$FDh
z)3q(%vcGMQKfPR#tlgEW-9_n?ho_UZgQ?oVMD5|_b056OVruH>Eu{vAWX+yb&7O5Z
zv~{o`ay;!Q{l+slo{1e#I@(i?_5}N^8?IZ2e-k2IZOU&N+{SmzX9c$@fBFz$G+>x{G*q@%ks5FrTA)8<;WO7}{5Z?(F6sU}gq7oX+h
z{2SBR>bU86Xl+=rHegCy+f&x|g!0)qmuaT5xlAO1A~AFQ1jD4Z?-05{BlD3dJ@f;i
zGnw9IT>@4bP#@H#1`VAII%PIZ7Pv5qi-b#za+W1VE?H(I6U!19`YfDg%*^=s*8Z)W
z7#trTq+8I8Ai{wrc^)LYVo4Yb=VPQcfsw~V-4cd?&~qY)dILQW4rZJ>Q1=A}$^AZ+
zAeQr0Gm*;$u^GhjlhKWmnRjN!<0eLbdL9*Hqy~D3k>eNUvsrMdE$gjuO)s4zDwGXA
zN$i-^O(&;=#0`Bt4-tiHmTHZx6?6myu4d0T9jcvQQV_l?XYjgxesmN8cXTEM-{a#G
z(*X_ZG3$~b2mmwF!&ysIOdca9b098(iw>14$s7jyQ^R(QGZ7$$2qQ#&ydet^M;A!4
zidZmb$drWP95Ej`VTP?>XRDgmATGnj2+{G$?O?XYzgRSeI0=A-JVE1()
zixAx6Wd;nT%Ake>zn%l0zKk?C#06ti^c~Z^ZIIvonN4tmbs(+af=Lv7ZJUH3A$s|0
z7o@5MbC58+e7Vhf02nrZ-Qcz?m|r$u6|V}{j4udR!89ybf+P}^FA(6zsU`~r3)bsm
zTqWt1c=`?(=<}7fpf@VADRSf8mftdDWxR2wAI+xbcVR1-7nGZ2Ll!J(qj>W~*s^#c
zY|76NTqmZ-s?A+rvjrR4kiR@zT+?^i+T?0KXGM46#+rpKH$-3HNqK8WPhX!K;*`Y8?WzE)TZyhRnEv)Gp95?N=Y{F?A>>8
z`+fB%+S!QSEma;o`8|{eg!g?ydh9~ogiB@0FSqeBRyELbJ<27y^M*^CI!{jOY-c%C
zZg?FJa%&JUW40EB&_6fCh!7Dc4epXxtqX+)AzY|$<$^tI2vi3*XLAkPQJ-q%_jN(f
zG$Xwo1Z1hpg9W6*Q-+ziQis4Ufl@BPgo4K-O+r=a^iMinGL7Q|`bH`l(Q6PHy*Exm
z^l8$}cK3{{_y{mR$i-F)J4|UeAbg)%Ba(e{)H?|n-W?=0DT$2xxCW^Qcxu)K{+df1
z$C+MAgE~k3(hT9oKIc5dwr;<#D+tn!p(CeX7W1H)Xa#RIm)gn#(QGA%Q6@$ogbpP0
zij9>#BxXq+KZs3ZJ7@Rv+3NV0%=uV)%!PRfNf
zIhzZocStA9BgW=@N`2huX^7fLG|EO`+zXZNHS~}hdWKmNdZ{e}<{h8&amv->9;aap
zcz|z#{z(XoY$yjFPXfUi4}@zzZ(s%~)l4qTlMEc42~CNQP_N8yG6ora2v$@Uv=I|8
zk-jTaAPeaj``RN)&*EX|@;N_*m28;h=&bBgp&I*~7z2`q%Q8GxK_#^;>En~&VlX&6
zJTM@~^-p5BLAOAe+wYgA21YXlU}2^)mAwMiGv{+#P>VUj+|WXY3`K>Xi1-vu;DLJ4
z+TV`<$5i7t45y$?ep9$^jN{kF>$*w5{(&JKUq=25!h#4<74(jihUbMhMF^vc++gJ1
z7e_&fROcU6Fc9KcMhs@eE1XFfMS%gLHPEYzi!!IinGuf^YU7kkHn0A@(1EL=m&!-l6;8lGAXCL8vq8o;N
zADB5g0V9KYYNS)hE@MOqyhjP#X6#UI_shy{HqsgU$(dQd6y)X*MPrKeVr<4Wn<)e%
z0WCAl-;5EOql|^yFVHthf~AAVQ~DeQB(=zx*>d7y3?{cI4Y#(L{vr9nw0;Qm_&4^I)@{-*d;|2c=Yf#3Bx=QCM-om>vK(qiBmwNGmD9m=e
z!m(wa`~y|5BR&~26-m_A+IZ?KG-C!;|C#Ea6CpLUOUae_^sut1OaJ3#%4MW#y
z@sVI?I3s?$m#f?q8~0@+<|HJog%s^*d7aJE9}$=C*HLe*5y$rXO~FuWPwC
z*}E^*yD!mu;z3Qicl#rw*s|jz0YUWmT1_*0#k7VBef9OP#)t0iOV$jgY6hdGbVbdZ
z2VOrA-<7QBOI7q?CYNo+B!ABsKk;tS-J*DLyg1b`5Iyqo8g%Qg+;}B+Em_i?D(R*v
z--iaiGZMGHb>_~Q*l27NZH$^Auqdr$TKHq}BgvAUR7p?7gu!Buj>OxOC0(hKENLk)i-ukNm`BIb;`pVlO<@Yy3%7
z>7fqePdd!FpTO)@FI7H3%N@*)8X*W@7kfn4StL-=g_gLGx&BWl0>DbE$Y0F`L;yo;
zz)*Q;f#4jl1UNn>ryW-jpiIj!00VTUW;P3zJVWWAY8W9xSuzZ&Q_K-np+%lD2?KF~
zOhdTw7LdLo_J?7MOdAnV0N$TWtF#<2Q-BdcLDB+nr!MD|$A`8;Z%jCN#&yj*1C657
zGdT&sN18;4PO`i!a7D$aKL}XL$r6v70n{Et7Pc|dD8&lpd5lY_F&8grDF+b)6(FVu
zV5wXvX-imJIbau$^^`H`ptKFK5@A4Th=P6unF86EAY%jS=eqt(NsjVAV^h`q8LOhc
z&lsU$myS?ICn-2Y0WsdvGzC=QTq6}CxtYBO$tnYXfM8MmTQ>}nkqQMDMZrq<=p{8!}8LVRV3yZmI@dT3COBP4gO^s%NMK#!KHj^Y%6Bb)2ff|&S
zm>uha8no>1X`nB$^v`bhDUn48INfaf?`;~
znB7KL!C2fT5&}!4AagmDwZ_)jG)W<49aiwFpVOjjs;N3F=OL%$ht!KF1?kC_1&Dju
zU`C5|m6BS56
zD=t)F2e?w7Hl5XA-^Cy~j;j>)8zayrUwIN;I
zglPM!wdiJXG?=h<;S;;cztxaUejWZGX&RAck8hx4k}oe9ri29}{z>nF2!6%Y4p*Mg
zcdo1+MD}xx$Tlxn77D_oT~?NoFb9AYHc6dfW1Py{a0OLuGxE*R7>7-hIZwz89yK(C
z3y3veFx=b+VN>3G!)DZ@VA7~(2SD~ekJ_~VL)Av7)5ny&ME%OHC-huSd-Nh1fE2@M
zM(8P!Ldb)|;;+)(X$r;>WQyE===Z=yv#;5lF}nA?y(Qc0F6oc2wP
z@tBP0mA**Xy?`J<5<`WIW>hpQG}M_pPqT!y7I!t#tR>5A%-V{oh&5eR6Dj0DO+%`t
z_hHSUm6}5j+LJZMQ#Hreg#z0a7F<6L1Iw49t?3ewP`6JdN?PzqS2Tf$Dr-+yHb1QF
zSgGs)UAybug}V#OmlBso33!_wB3($@H3
z+_h8|?@5;SrAqq}?31=v5xuo1?Wlg}Xj*YJy%UJtqsk!(7XYB~dwxAYkh>l9Kx&xmXxjbeZZ73Lyl>P(JV^I=g!
z6%1b#QLoX6YO!bmVNnXoh5e+fGnqjW>jOuLnW~XLk^tqwWAlpeM{dX}H1r#&foKH6Ob4oCBm63r9svFRIJROJgqwkyY_6=cF
zUdML2qf%KgM4i!qU)s(vP-jqJ5zMy5Bm6yjC4bw9XwGdLaI|7_ZN-9NcJiT-4b6n=
zBDa++DVJxE!AM|k)*~@xt>&E=8dN-4pbAOv_%;(v3<~Ax=b{z@1jZK_pkGOsNpS
zKUeA=pk5#xhJ{p88<}Slpb9-WcyPz69cj#;5|(5
z=kMWW#N_W`^s|}MLK!Ov?h7P&3UTw3>~vE4SV_QpcLrM%yr84`04Nse+U_->Sn8F>
zyIA>JCg%y@l~5B{B=aXa2>WBcBBHd_@CGX^*25=aZGed4t1O-PaJ8l7=XNFis0z7J9F_?>JDdq-z
z!cca)34^X@*JH{*?}V|z$ef618_di_kkK|6nv3TPn4!7VZN+r5v7Hiyu%dr9;F)v#
z&$xmU7v(8+$T`cNfltFjMOUfXj)9zILRuH56j@WsE0$KMa#0Q0ily#>jRId-0EMr@%05S>z&^*@|zyE~Vn_1GFzGlx{)B-1OfxVb$iT>5{
z#@JZ0d`qf)OTw{*+7(Jz>v&UW(3OksSyMO)*G_;*?4#l{ROB_vK{pu--xe0C(Df*P
zI7wAd=0*Z*asZ%5
zGIw2I5zQc0^?}7`u7`+G7Zi$S(5-5K*UITESSS)sR{3Ba#3GlThTVY6E=m-lSWy=^ZajK-q&6T8-C+54P(UXvkL+X
z@XuPaj^D8UWq@f;(^w|>455D4P0cMPl+VUkvOA+bKTz+C^6AUy}@S5~n
zl+eQGW5(ph9?pyj(&QP5kvqg90ZY=QsLx1=O%pp*uk2#Ys?C(RmuNNjB9PT)t95Ph
zp|@J@w16G5b+O?3N$`|cNQ(Y4xWm=5s_5jc#@mhW)k9r_Pr9a&sVWBJFTJ}XS<{oM
z>0!zWtktqT>H3y$ZGL+*_{Y|FJzVXxG`Z|f)DI^r<$9`r?
zcAZIeo%vY+yk_e;;x!Qh##EtI2x6wS1~gKv>w=;u_B8!{{BfFNkTwtwZ+c(%-nxAI
za%AM@@d*CNJQm_l1X;MsU?hl68UX2s2pGm4mr0d6dP>0z^>H_DK8As?wVb4=PYOB(
zN9E!(tb_@?pk6eK=z1cznK6%%j5PE`2GY*bMnUWfBT448CkXvMv&*A>-%vCVE2@Y%
zX&!*j)UaXC$y>F?$C)4$W```xQHfxFE>`#vJ)__?Y9lc-TCAY%vSeE=Dd2raFX*Ux
zRc!fZloc|2&Ge?=6>gZ^FciX8+5Iq2LCnT0m)uw|=%A)S3nznwXXOjhFVJFHW=67v
z4cAR>!(PPu3fx9gW-Gt13qe|3@&#xM6Rn7e8LpUtOpHGIEwCp>(A;#La+rGsh9_>qD)E;y~-CZQ*rQHx-A8kUQJI+va^^k3*OWsGta^VqK<6GEe
zAVbnQkx?t=bkILbraM$E%9eAxvUDA)BzQhJM!F}q)ef6oVIm46l`$q*fx#*5Gm{Nu
z$qMu625$lK#Am!n5Zj^A)``m*6BRY8!}T1!D=zz}0r@|v+t1;;L9Sxmu)1^;He7{`skjvPHQcpa)?
zFm5ASBzh_E0AFcjOCY8YC6?hn88`(OIeiyyq0Xm}Q%2VVXS3{ymC
zrl?J8rP6xK6Z>3Tj9yNZwyK|W36a7@orGh1-tKv8^PSC6YT2lSOh=qNNSh
z*;+}n)hHYN6volmjn}8o)azC@KMVQ%#LU$4w`ykkxggI>wMI{(;`DE^naS3{Z!j}I
z!;HtwROhdLW)?_)h!*f^$#|rEGt!2txlA+;uGuS-;u*>
z|G&>b&W4(a&Yk6ERVMQIBK>3P4iZvBBKtqnJ#`K5K%%EucQLat=tG?cxd^D9A}EMb
ze^6(`wg;3|JyV3I3yPziiGo^u(&(S3Z#*5nnsl_J94!%X)m{~Kz0>}lIo6c4cctt^
z3EH-#TiYThqf<#obHdTQ*4Dk$8gGyvtQ8c!QMvf?;>+uXA{!ReuMe7SlTue%HQ`W%^)0B!R`tOA5L;lR8WL2A2tnhl8fc`YX?+XMBQ{I3hJnCWsTF1
zDw7(cEBU22MaYi0k+nEu!JgYm?==`NLNn{VhE;JG@3A=PPwDQb2m&Sq1ZOq!<6>TS
zWk2U%(b#cKnLHQL)r}-LmcLZ_@dloS%}$yZ`b{xftf{5uaIfOMd!k}R-nTA!G@D2J_QaV$?)_66cfVZLbnCoY|j*DU4or~xl-sVTRL>hcerC!
zII~Im;I4+eU2uMl?e~`L)U#e!n0AEa!s2CHAmUNLobbK!e79r}JLbs!1BZ4dv_`q;
zp3SESZgS?+r);v4DnBFLC2BWaX*mN(!muW@yznKJZbD~?p~KITCYAYcVXXmFn45MH
z+F)DWY4ZRSYqQu!2rL2E-~y^3i$i8C&nyx9F}Y5mQ4;NJVY4Y?fJ3(edJQIajG)JC
z{{~_+W(IUJ7HM+YH5HH;G^d_XS8%47Jdu${8EAOn>@C!k9Vr^Yetq-2HdWG}u=ca*s6$FL
zL~NKY;U;&O^kP=+hTb_L(5TJv8S7azbu2};~}kq^4C
zMUUY0?T5M8K^T%5!zP*vFh@h*=Cryvn{Q658(HmZSnV-ZfwHj0?Z7v+pa?C%i@7~|
zvzA5=@x}Rjyr(3zFK2zp#4M3X+@M;frt`zNPfSD+fA}k0pO`nz&IK-xen@~cgdhId
z;bWo7Ip1X;IZ5H$?15069a5-ZEI2be*5Q_@!l9}OuQb7+D=!@M4H9AL{S{)Rhm@pz
zV>Y4Mjn4pm=}jvKykEkb86&7XW~Ts87ATb5pJgnt0*4w{vxHf}j4uOW$yU4#6(;RG
zWMFp9#;lA@5oEeEHfjV
z2sj}3zE_d7ccknvVs5b=64yZM99w~ncS&2irYP??MfE)rHZf{qk?Kt+ZrFa3y&OIBPY|2lE~?sr(=iU
z?T~KL)wS?cP`?S(P|-2cLm-S=(lt%-x)l_`KYb$)CX;=qlQq4t@x!xpY0aC(uNTJx
z4_gLTS_YRlr?>67|2z~L&ZDHzK==q+mSc2}5I9W@*EaQnhxH~MKyppdy$MGPukVgz
zQBSInegRTvA(<)sgf|#;w-SWPzIhhLuh&Fo{%U0KNF#zJSgB2W1agNL|0#Bht0GMj
zjA~T`Ine49V63)gfO>h`V)_kXEbx?0*`77#kZwr`5>SoNbEw!xP{!Gi5&Th^BW>R6G@HG7BLi?ZFR&u5`9*rQFUk98Nz
zG>#Ev75JK-Jj(9kYze=~IESs_!h9na6>r`T(~gjmP=^LTyJXd-Ea%ej8lj4-k{|mw
z81iAB1AzzG&fHJLO`$5U5ArN8v|ogql;}{yM!XA4Z*oe8cNftw@JYn8B^zDlAq=>?
z0{*cW3&VE#GH%2fDkReoo_okd{7}d+>}1&eLn1PJsyK1YFtV95IgB@|L8SC=Dfo93
zki{qyEJ=S&cf<#ATlIfIcmI+CrUzjH)PIGa8QW2&^aDSZDSVzh5p#R0e@#ip5%ky@
zI+y-EJ^0@#piDCsj;^J@q#vdrdQw`YTchN;2BR@al2-6jC#_a6IjiZDseRT76=-x|
z3IWizO6^Z1N?PU5rd{`UBsU#Qmb9kWvvf&i^m8|_#kSvgC4#?%b0_>|IS*Wa59hKbJ%K_aBNDqcP6Zz5lgf#wj){Anl7unU55>Ul`U~|suIH3R@?SR
z6hw}!megTyYJsvZ(p*%BeU`Dg*B7GrOLUGr@FY7=-CDSfUujv*Gx4x_>q_(1<%av-
z)xn|Vb3dy4ppN!y?gh$i*-O}WA0c1b%UHH=4dxN72rJ)C2|M$mI&8@*tIH|bSX7s8
zYm;0^)=3x21e&zpYiMs(o15xl)Neze|ViUQJdGq$&p@M}JXL9v!+q
ze{()|=*G*iDrs~^ZBg4=wny%ZAM8wT-~Ygdu5LO-qq(;DDShDB!T_h#QMDsziBT`DQ#)jsr|^MfJ>h
zKn!isK|5yO2S=^svk~Ig905z9AD+AIW8lS@=DIjP9qe1D^jy^VDq
z$U*^S=e+9L=%$rJm*Il8!wo$DRcHz;Zuft>rYO
zIu0m{C@?mHDLkbSTz~?b+-7FS5M%If$si*;e)*M@q{!6MGGvCAf8_MMB}#ao8SY_=
z){{hW;T#V{pmz!ucM|U%HWR%Gy226%UA*xM7G|I6aq@!IR|<-P=xX@_MPU?$7lfN9
z6|Y9Xss>)d&9h-celxZ(xmLyKeINh)TCj$#FhHC}{R)r+yqFV5{aeg9=I>Qg8*;Hx
z9%^mgenQQ^qtyK7zvDKVE2%f|7${a79-_b|Q?%fUblbp}?R;c803BMUywe$eI(%
zMdvgO9@5S-ZkVf6df{%fSDT}f9~wb9_Mwz)9r;-keagmcovux`L(O&rcM_+oVc;Uk
zuCq?l$?`|Z
zuuJaKEUkt*K|!cyrFuMPuCWo!`XRBPK_wwN8xSrwr`}}{Zj{kgFe1T805g&w2L!-J
zCk-if{~W}0%b3YN5@&b7=*@GDZyx#(&!ztb0nAAlP$W>9vCGXMN-iT#fDnQMSx$BR
zlH#osbL6rfc_}H!eC}%*JBcUoD*ezInJ9p?NZsB?05{Z_14VVQ#|eZUXA+L}TA{oW
zGz?@0cA{rsL)~Jd&1)3Gh@_(O_VAngU*8|^UIMZoNL36(j;uM`zgzh2!gn2av6H)z
z98$9ImLqD8&ZQe#zcu{!aNLt@=u0*9MXl+I2H00(D|tt6^jK`itur_ip{h0Ax%s=7
zzkT_~UCGYjROfKa9+D4)<%yI@li(<$9C56
zy)f2+%ZGN1+)rBS4-K1sGF*7Lpx}=!B85ZsBQ>T!sVN+3FZh#9BEk)7y%N0m_&*|`
zjb~bHaz&KRV$Za8D+_INQ6Z;}Plm<09|1Sl1HR)dY?%*G~(;@YDsl8kZ9~nmTXCtU}u7<=(M=JDYfkgzg;V>Tx)K9
z*t~6}dE4@~<-o(8CsuZzNbY<(we#s@^QlzxDOg?E!Q9-$-nB%@*7y(t{#jCP<%3PQ
zy@EaOW{iJDZD-8dU(+390<%3s&CFH7{spC@;NK%M@H%c5)j#bCCnoa%ZFrRfhslhc
zyK3NQH6H?`(1gdtUUL4R2455{w5w4clnziDHMk(!=>(OH0i)SiB_~in^->nh<32pn
zt8+c3tp4%5#fyVfphzK;2P@kQX^|@MO6W%nYaAxuS){C$^;rx@OwLUM_2=p+w~*Te
zc)n&17dRR@OCC$SIRA(%b`eF>TqbPcWR#<7^0CIetNDG?948~i6*@o#UL|A$3sx=}
zN4WEpEN{PrC*mKY<~qYs;y^ax|MA}%1%VslxpR1s1(Qz3m&0K|Hi>N+TFH}!H?a_{
z#-x?A%#;(JEEjAr3oRgdrXF%E6ow0n$kLog;THO3nz1_bk#dzW!Riws;RFJxVNpyThRwL;w=sJj&YVR{fOzQdgSr>
zC%%{C8xv_S`et+5U#*m~K{nf`m8FJrPB;9tez?rW0w(fUh@{ipC-`spF;cnDKi|NQJ;r|P{K^t$>`lSd3>AQg;OG}5_h3?WrU5v`fNYB
zZOZJ#b}1use*y2aH{(dvm`$ZGVdERVGVnASNiw)G%;Xm^ug?k!SA$%C-eV8FtkS$^
z0fAtr&wV_?Wg*#NX&pk6m!=->4N}9Pz@0JKqK`8lheRCHc4oHUgC1*6ju{{S61TX2
zaeO>``~XAM(*K60G5UElt6eEWml@QD=LC?e`1rwKWyKz(!OK)(u493e988ssrI7@
z_E}S-JjwRGsrJ1I_E|4Malb4Tn!A^5Ki-~f+L>xXh3u#hT)jIt#dnjm^T!p-=YQ1l
zLCZ?Z!9>eJ6teWvlC&hnN8_W&c4>Yov=mCT595<=>RjqtX&Ov44W=7AA2x1TY21S2
z70U1Vl8yUPjr$Vpv(|Vj(R<)QPqOz^vhh@^@l-=^aa|b0^X_x4t*L6ihU0)T2-vzx0+h
zX8bp`&UAg#J9BaO()PRFMEyXbQvReXYhr`9PDDqdBk*HL%oNH~16GG9lcCmwjd|n}
zF{7Bvx<6~_KHe()xvhr6*23ch#y{^D5sreMFoW*vvE`*ENlTEioq6u`xs#_)jvkf%
zhSmvjx_RA@5lO}9s^6yhe;B{Cl%$D_`6wtAib`&tUOc+KRVXf9JhpDyL;H1~5OB(m
za-P7ydZ7Sz|`N=K?%BtmDQ-3(qHVkeG(FVQ+uzvw5QvV2F9>iLfLMsgZ&
zbV5r`H7JH`O2gNMO|!*1N+@SvJJM2a>K(x>bV2&j(Ad4pQ!4LU5Q=9udL0pjs;f5s=JV7E(;7rBnenC
z_4pqYSmBx1p(0J2ms7PDe?vSC+`H9#Aj&2mM^4?&rJ%OJaT)E`7lz7pxvHycw
z+J*EqLDw9mH%~_J7Y*LN7R4X=E{Nj~;($`xVs6{QW+8l&J;|xZ5vs{a3fd^>q@bMw
zns+St8!GV-eo=}1PrKdSWX2`}ec&+A{`QRl&z&;Pzaoet(epwuHRHzKv=+=#B@%>=
z%4;FZ@^U@}0yl6Vbo?3fJguw|cv^r1Mmk)Hjs^mMudEAo_99cl#+&f}cpR&R^C4QP
z2k2}=piak!z-CTQT|-)~v&C32`x?UrdKxxmU6#2uHWwOt4D?ynFnU1*HD_jg%fDuP
z3ml&iC&v~LD-hx>%X2p
zRp~(6XW>}FrYwZ;bu(T}2;0IrS|IR3W(_Z74OD!_UbIHVukFyCKwu5hq>(TEh)J)8
zt>A|iiT6|K_iaJaL(7+TVI-TSJ2hf)Lj
z)~3+TAAOCG@1!-E*FCO^7W+p
zeb&4g|JSbMCI~A3hqkNypW&tt{NF2oKmJc)X~@z2xD4ny56I4M?2}bB*tf;$Aq5xE
z&I6oqsZpK)r*VcZKNlz!V1+QQucv}Dd<-2jWSzy`jN!{+0zZ}ildP02Q5PEi&#rN?
zh#dh8dolKpZSj=~=@mN#Dyt_s=;t3GoBUQO&m$((vvEK76L`M=hY)-L(4oxp6$({#
z#O|d_AmOyw8duAkW5M|6lI2~g@~+4TOgQ7mQuUi7ry{4;%Io-pk-I0CF5Eqns^1nl
z1)A&jF8HoCY?qnBZNwBJ*vJ&#-MKV!?|8CuC{;Nmvxcpo#v0!3T6$`E@DF$X{>~rm
z{$O{aZEvDc{-is*zU%q6=iRBhQxJ0>j~!Q8#pOVNl4>7Gu+Lh1Hu||_`<_($
zo&@_42f23x2WdmSe$mpV@{h>zN6jBJue2OUv>ZrNUQ4c}3riQ`XX0mA)=S={OYl?K
zz8fDM7uj;>)0GW0e>bo9g}%y>b>C7xkNLL
z_LDzpu$cvS3gUxrIp~`+n|He2+p*NX6u5Ww-j+oD&P1jB0mB(Re*1XrrCX=zJ9_*x
zu$>+eb2dOY?q~I-Pd5oa>pNt?*I#VyL-_Ni!lySIf8Hx1lq#?UL6Hv9THZ#%b_#|l
zpyiiKO%oBq$k+di78|h@3N4L&yICiS)`KE(l%E!IBAW8k?aEOpSPK?1r(ks!pE+(8
z7GQCqqi1vCnLURAu084?(_@ql3d9AN4&W0OL7|CR3Jo$o>@84WJS6yVBqHyy_}eT6
z8#XN(!WP6C7i@69^n0)wCQv9}xzt1m&%*{8fBp{HPk=wQgdk7W?kOSKjc72)^ffq8
zmv0Wm!=#&_%0cBZ03cNH7@&Z6|4cJ77E%g@kn`tLEjrm#vGsc`~FwL)-0
zsxn3z&}jnRiHm$c7;IR{xhU9357buy_zuNkzLW3|1MlcAetIv=Q}}zb5SmUQP+TB$
z3M8ux%N}MR?*viLGvWluQF5Y&47eRZ2(S4@qES%Jwqz2NiPiY+Uv8P1(NBH8>
zxc`&x{sRI!!N)ZX309^6T|4cW4CZ=}FhSDgg}Ls`EG%#`R-8`EtXkL|YbU#7);Sq*
zHb6EE3c)CUbIHcns7MM908|FP3V_TB9~|9MULCyz3))m!>*CY2iMM36t|@jYS=W=Q
z>$zSWF-NXOu712~ucaNmCD~xDq7MEQH-6IA;)o?;Sua3pGR`OzN-7qQr;E#Rh5^n?
z0i>^@LkJLDFNlbd!H8?kULHAsV|lPs27-4}x)`eJB3pH=^__`$>sym|Cg18^GOyGF
z(QQdrRY!xdqwzy;os7Pms_JCte2^h)7yP!zUW#`ns=E`V@(259-q{|z^46X^dy=J{
z(Sr0=2%ZhJ4F&<+xIkFn9X~-YUR$b7R1YRf`Rt*lWUc9MJ)umyNSRv
z6;-dccEm3wTL)p*c&iwOHdmwQpb97D3+hn`;GqRCmR3dSu$ZE1>WdnI$jc|RZM_la
zJ-o3AhvRhK?!2)tvM*g;7aNSZ;@Bb*H{ZFKDDO--!st2kV^EOIn*6fL!tQ%lQ~s<8Ux1c9xXh`(Fj
zDSW4Vuknw>y~aP@T|VM4{E5Rc(qR6RdJ*AIYs!!I3P0_2933|Pbhn6b0`I67KpeXs
zf4akrOwF^B9|w9s#h;a&vCZH6_4~f_B*O-9KfI((04~C?z;n$>P7=r>#y9Ej*ZDRe
zffQDi@OT9Q{FoVEGrwlZ+3fUbd%4^6BIm4>H7sTYWVlyJl3XtWH!ScHCEl=Tz2|2=
z=U<1HGrdUThFL2F%br|6Nk{XUv3iY@AZFmx492iPDaKLh&(X38YNK*dn@P<7xEw?A
z2K=^NFSw+{0TE>x{kSqzYAoGcFT8HU5rB{yPvz8Y!Km$xtPoKzP+Blux8^s~g^|I=
zjYj6rlqWW9xeeFwm#w{<3lnfw&|cIU@g{vd#FHk4P?%6sk$VpFC}*-6&)tf5xzVC2
zQ%L(DC&!p0$3mP`2W_hh$QQPUUU-W99#UeFS6!kH*4&ZtB
z$JJnEWW|Y8#R+V_z%gHSw;FCYL=LCR>)-5uy+2+V
z4=f!^mTym$Z;y;<<8c5~8Nr^L$D=RdASm2jr$futhf?hDEqL{5mSdpoc$zT=(1tMy
z1o@BP-ZTD`?tV(azo6h>BEX4m^FXsWkSG9GC-N>=>3^l@zodYAPTGpeDh*ITy~#GQ
zjys*>&VvUz7A147Q0Hgsy{}VG{SICLI7DZW7b4F)&n4}fQg&NjFDeGHyP{$cJ0B_rBO{R!K=g`QbW%mt?cvx&{HbI`Z>pj<}uw4-c**ar>bop+(2=01>&Q7GW?Q$6I|!P?afFb?}Xtv`tjWmr>oa?b36VYKR}@9?OuF=q!&zrfuo1mH}R^XP9BnDN0=WqyK^RP{^{+8
zPi;L>!L7uys1wMN97tknD&N=vZ5M<|v+PRpJUf`c5;Dwng$!T*@+ab#M?XA-CV9y&
zvd0LYn^68r1UlGJnK(Su(7%;=iOYymM)Wa1dpY{@Pi%YX{5d$O*-xGwHqd@gkOpTl
zo%%Xa7lCh}a9Kbs7-|l}WR}AJ(6ITfW8|6f-DC03Es5)9p|1X&p}6?g&O1B5weRhH
zOE9|`z^RN68+NWV?7VMzU`jR|O*I^SF!4ZoFp+9_I$c{A8v<*yD}HY2(7Rt;7T^6c
zfIl|aYYKVNJp-z``9ScLrrKjNLwf@!wTFf4Vir(kM?`gcD+y@87E@r(H7_+^+qkU`k0mombbbqK8gG@8Benf_`d>Le
z-lJwwz4-h{)NIBlUKSH$t#?fPmo{X>7TTtEq%3n`!kG@Hx*^`8!|kNQe%YR;j{fbF
z&Y3{Sx9`8}6>9I;vTbX?*|FuRp@7pz_V@uOq$5G1Pn}NM*MmoxFMoixGx{my+w$M_
z3N@%T+<|)Ta63D8^$)@E35BpMJWdtsqH#Y>ceFIPc$(}I;WiGF9^~>b>4y=%g)?Rx
z

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

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

' : '\U0001d507', + '\\' : '\U0001d508', + '\\' : '\U0001d509', + '\\' : '\U0001d50a', + '\\' : '\U0000210c', + '\\' : '\U00002111', + '\\' : '\U0001d50d', + '\\' : '\U0001d50e', + '\\' : '\U0001d50f', + '\\' : '\U0001d510', + '\\' : '\U0001d511', + '\\' : '\U0001d512', + '\\' : '\U0001d513', + '\\' : '\U0001d514', + '\\' : '\U0000211c', + '\\' : '\U0001d516', + '\\' : '\U0001d517', + '\\' : '\U0001d518', + '\\' : '\U0001d519', + '\\' : '\U0001d51a', + '\\' : '\U0001d51b', + '\\' : '\U0001d51c', + '\\' : '\U00002128', + '\\' : '\U0001d51e', + '\\' : '\U0001d51f', + '\\' : '\U0001d520', + '\\
' : '\U0001d521', + '\\' : '\U0001d522', + '\\' : '\U0001d523', + '\\' : '\U0001d524', + '\\' : '\U0001d525', + '\\' : '\U0001d526', + '\\' : '\U0001d527', + '\\' : '\U0001d528', + '\\' : '\U0001d529', + '\\' : '\U0001d52a', + '\\' : '\U0001d52b', + '\\' : '\U0001d52c', + '\\' : '\U0001d52d', + '\\' : '\U0001d52e', + '\\' : '\U0001d52f', + '\\' : '\U0001d530', + '\\' : '\U0001d531', + '\\' : '\U0001d532', + '\\' : '\U0001d533', + '\\' : '\U0001d534', + '\\' : '\U0001d535', + '\\' : '\U0001d536', + '\\' : '\U0001d537', + '\\' : '\U000003b1', + '\\' : '\U000003b2', + '\\' : '\U000003b3', + '\\' : '\U000003b4', + '\\' : '\U000003b5', + '\\' : '\U000003b6', + '\\' : '\U000003b7', + '\\' : '\U000003b8', + '\\' : '\U000003b9', + '\\' : '\U000003ba', + '\\' : '\U000003bb', + '\\' : '\U000003bc', + '\\' : '\U000003bd', + '\\' : '\U000003be', + '\\' : '\U000003c0', + '\\' : '\U000003c1', + '\\' : '\U000003c3', + '\\' : '\U000003c4', + '\\' : '\U000003c5', + '\\' : '\U000003c6', + '\\' : '\U000003c7', + '\\' : '\U000003c8', + '\\' : '\U000003c9', + '\\' : '\U00000393', + '\\' : '\U00000394', + '\\' : '\U00000398', + '\\' : '\U0000039b', + '\\' : '\U0000039e', + '\\' : '\U000003a0', + '\\' : '\U000003a3', + '\\' : '\U000003a5', + '\\' : '\U000003a6', + '\\' : '\U000003a8', + '\\' : '\U000003a9', + '\\' : '\U0001d539', + '\\' : '\U00002102', + '\\' : '\U00002115', + '\\' : '\U0000211a', + '\\' : '\U0000211d', + '\\' : '\U00002124', + '\\' : '\U00002190', + '\\' : '\U000027f5', + '\\' : '\U00002192', + '\\' : '\U000027f6', + '\\' : '\U000021d0', + '\\' : '\U000027f8', + '\\' : '\U000021d2', + '\\' : '\U000027f9', + '\\' : '\U00002194', + '\\' : '\U000027f7', + '\\' : '\U000021d4', + '\\' : '\U000027fa', + '\\' : '\U000021a6', + '\\' : '\U000027fc', + '\\' : '\U00002500', + '\\' : '\U00002550', + '\\' : '\U000021a9', + '\\' : '\U000021aa', + '\\' : '\U000021bd', + '\\' : '\U000021c1', + '\\' : '\U000021bc', + '\\' : '\U000021c0', + '\\' : '\U000021cc', + '\\' : '\U0000219d', + '\\' : '\U000021c3', + '\\' : '\U000021c2', + '\\' : '\U000021bf', + '\\' : '\U000021be', + '\\' : '\U000021be', + '\\' : '\U00002237', + '\\' : '\U00002191', + '\\' : '\U000021d1', + '\\' : '\U00002193', + '\\' : '\U000021d3', + '\\' : '\U00002195', + '\\' : '\U000021d5', + '\\' : '\U000027e8', + '\\' : '\U000027e9', + '\\' : '\U00002308', + '\\' : '\U00002309', + '\\' : '\U0000230a', + '\\' : '\U0000230b', + '\\' : '\U00002987', + '\\' : '\U00002988', + '\\' : '\U000027e6', + '\\' : '\U000027e7', + '\\' : '\U00002983', + '\\' : '\U00002984', + '\\' : '\U000000ab', + '\\' : '\U000000bb', + '\\' : '\U000022a5', + '\\' : '\U000022a4', + '\\' : '\U00002227', + '\\' : '\U000022c0', + '\\' : '\U00002228', + '\\' : '\U000022c1', + '\\' : '\U00002200', + '\\' : '\U00002203', + '\\' : '\U00002204', + '\\' : '\U000000ac', + '\\' : '\U000025a1', + '\\' : '\U000025c7', + '\\' : '\U000022a2', + '\\' : '\U000022a8', + '\\' : '\U000022a9', + '\\' : '\U000022ab', + '\\' : '\U000022a3', + '\\' : '\U0000221a', + '\\' : '\U00002264', + '\\' : '\U00002265', + '\\' : '\U0000226a', + '\\' : '\U0000226b', + '\\' : '\U00002272', + '\\' : '\U00002273', + '\\' : '\U00002a85', + '\\' : '\U00002a86', + '\\' : '\U00002208', + '\\' : '\U00002209', + '\\' : '\U00002282', + '\\' : '\U00002283', + '\\' : '\U00002286', + '\\' : '\U00002287', + '\\' : '\U0000228f', + '\\' : '\U00002290', + '\\' : '\U00002291', + '\\' : '\U00002292', + '\\' : '\U00002229', + '\\' : '\U000022c2', + '\\' : '\U0000222a', + '\\' : '\U000022c3', + '\\' : '\U00002294', + '\\' : '\U00002a06', + '\\' : '\U00002293', + '\\' : '\U00002a05', + '\\' : '\U00002216', + '\\' : '\U0000221d', + '\\' : '\U0000228e', + '\\' : '\U00002a04', + '\\' : '\U00002260', + '\\' : '\U0000223c', + '\\' : '\U00002250', + '\\' : '\U00002243', + '\\' : '\U00002248', + '\\' : '\U0000224d', + '\\' : '\U00002245', + '\\' : '\U00002323', + '\\' : '\U00002261', + '\\' : '\U00002322', + '\\' : '\U000022c8', + '\\' : '\U00002a1d', + '\\' : '\U0000227a', + '\\' : '\U0000227b', + '\\' : '\U0000227c', + '\\' : '\U0000227d', + '\\' : '\U00002225', + '\\' : '\U000000a6', + '\\' : '\U000000b1', + '\\' : '\U00002213', + '\\' : '\U000000d7', + '\\
' : '\U000000f7', + '\\' : '\U000022c5', + '\\' : '\U000022c6', + '\\' : '\U00002219', + '\\' : '\U00002218', + '\\' : '\U00002020', + '\\' : '\U00002021', + '\\' : '\U000022b2', + '\\' : '\U000022b3', + '\\' : '\U000022b4', + '\\' : '\U000022b5', + '\\' : '\U000025c3', + '\\' : '\U000025b9', + '\\' : '\U000025b3', + '\\' : '\U0000225c', + '\\' : '\U00002295', + '\\' : '\U00002a01', + '\\' : '\U00002297', + '\\' : '\U00002a02', + '\\' : '\U00002299', + '\\' : '\U00002a00', + '\\' : '\U00002296', + '\\' : '\U00002298', + '\\' : '\U00002026', + '\\' : '\U000022ef', + '\\' : '\U00002211', + '\\' : '\U0000220f', + '\\' : '\U00002210', + '\\' : '\U0000221e', + '\\' : '\U0000222b', + '\\' : '\U0000222e', + '\\' : '\U00002663', + '\\' : '\U00002662', + '\\' : '\U00002661', + '\\' : '\U00002660', + '\\' : '\U00002135', + '\\' : '\U00002205', + '\\' : '\U00002207', + '\\' : '\U00002202', + '\\' : '\U0000266d', + '\\' : '\U0000266e', + '\\' : '\U0000266f', + '\\' : '\U00002220', + '\\' : '\U000000a9', + '\\' : '\U000000ae', + '\\' : '\U000000ad', + '\\' : '\U000000af', + '\\' : '\U000000bc', + '\\' : '\U000000bd', + '\\' : '\U000000be', + '\\' : '\U000000aa', + '\\' : '\U000000ba', + '\\
' : '\U000000a7', + '\\' : '\U000000b6', + '\\' : '\U000000a1', + '\\' : '\U000000bf', + '\\' : '\U000020ac', + '\\' : '\U000000a3', + '\\' : '\U000000a5', + '\\' : '\U000000a2', + '\\' : '\U000000a4', + '\\' : '\U000000b0', + '\\' : '\U00002a3f', + '\\' : '\U00002127', + '\\' : '\U000025ca', + '\\' : '\U00002118', + '\\' : '\U00002240', + '\\' : '\U000022c4', + '\\' : '\U000000b4', + '\\' : '\U00000131', + '\\' : '\U000000a8', + '\\' : '\U000000b8', + '\\' : '\U000002dd', + '\\' : '\U000003f5', + '\\' : '\U000023ce', + '\\' : '\U00002039', + '\\' : '\U0000203a', + '\\' : '\U00002302', + '\\<^sub>' : '\U000021e9', + '\\<^sup>' : '\U000021e7', + '\\<^bold>' : '\U00002759', + '\\<^bsub>' : '\U000021d8', + '\\<^esub>' : '\U000021d9', + '\\<^bsup>' : '\U000021d7', + '\\<^esup>' : '\U000021d6', + } + + lang_map = {'isabelle' : isabelle_symbols, 'latex' : latex_symbols} + + def __init__(self, **options): + Filter.__init__(self, **options) + lang = get_choice_opt(options, 'lang', + ['isabelle', 'latex'], 'isabelle') + self.symbols = self.lang_map[lang] + + def filter(self, lexer, stream): + for ttype, value in stream: + if value in self.symbols: + yield ttype, self.symbols[value] + else: + yield ttype, value + + +class KeywordCaseFilter(Filter): + """Convert keywords to lowercase or uppercase or capitalize them, which + means first letter uppercase, rest lowercase. + + This can be useful e.g. if you highlight Pascal code and want to adapt the + code to your styleguide. + + Options accepted: + + `case` : string + The casing to convert keywords to. Must be one of ``'lower'``, + ``'upper'`` or ``'capitalize'``. The default is ``'lower'``. + """ + + def __init__(self, **options): + Filter.__init__(self, **options) + case = get_choice_opt(options, 'case', + ['lower', 'upper', 'capitalize'], 'lower') + self.convert = getattr(str, case) + + def filter(self, lexer, stream): + for ttype, value in stream: + if ttype in Keyword: + yield ttype, self.convert(value) + else: + yield ttype, value + + +class NameHighlightFilter(Filter): + """Highlight a normal Name (and Name.*) token with a different token type. + + Example:: + + filter = NameHighlightFilter( + names=['foo', 'bar', 'baz'], + tokentype=Name.Function, + ) + + This would highlight the names "foo", "bar" and "baz" + as functions. `Name.Function` is the default token type. + + Options accepted: + + `names` : list of strings + A list of names that should be given the different token type. + There is no default. + `tokentype` : TokenType or string + A token type or a string containing a token type name that is + used for highlighting the strings in `names`. The default is + `Name.Function`. + """ + + def __init__(self, **options): + Filter.__init__(self, **options) + self.names = set(get_list_opt(options, 'names', [])) + tokentype = options.get('tokentype') + if tokentype: + self.tokentype = string_to_tokentype(tokentype) + else: + self.tokentype = Name.Function + + def filter(self, lexer, stream): + for ttype, value in stream: + if ttype in Name and value in self.names: + yield self.tokentype, value + else: + yield ttype, value + + +class ErrorToken(Exception): + pass + + +class RaiseOnErrorTokenFilter(Filter): + """Raise an exception when the lexer generates an error token. + + Options accepted: + + `excclass` : Exception class + The exception class to raise. + The default is `pygments.filters.ErrorToken`. + + .. versionadded:: 0.8 + """ + + def __init__(self, **options): + Filter.__init__(self, **options) + self.exception = options.get('excclass', ErrorToken) + try: + # issubclass() will raise TypeError if first argument is not a class + if not issubclass(self.exception, Exception): + raise TypeError + except TypeError: + raise OptionError('excclass option is not an exception class') + + def filter(self, lexer, stream): + for ttype, value in stream: + if ttype is Error: + raise self.exception(value) + yield ttype, value + + +class VisibleWhitespaceFilter(Filter): + """Convert tabs, newlines and/or spaces to visible characters. + + Options accepted: + + `spaces` : string or bool + If this is a one-character string, spaces will be replaces by this string. + If it is another true value, spaces will be replaced by ``·`` (unicode + MIDDLE DOT). If it is a false value, spaces will not be replaced. The + default is ``False``. + `tabs` : string or bool + The same as for `spaces`, but the default replacement character is ``»`` + (unicode RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK). The default value + is ``False``. Note: this will not work if the `tabsize` option for the + lexer is nonzero, as tabs will already have been expanded then. + `tabsize` : int + If tabs are to be replaced by this filter (see the `tabs` option), this + is the total number of characters that a tab should be expanded to. + The default is ``8``. + `newlines` : string or bool + The same as for `spaces`, but the default replacement character is ``¶`` + (unicode PILCROW SIGN). The default value is ``False``. + `wstokentype` : bool + If true, give whitespace the special `Whitespace` token type. This allows + styling the visible whitespace differently (e.g. greyed out), but it can + disrupt background colors. The default is ``True``. + + .. versionadded:: 0.8 + """ + + def __init__(self, **options): + Filter.__init__(self, **options) + for name, default in [('spaces', '·'), + ('tabs', '»'), + ('newlines', '¶')]: + opt = options.get(name, False) + if isinstance(opt, str) and len(opt) == 1: + setattr(self, name, opt) + else: + setattr(self, name, (opt and default or '')) + tabsize = get_int_opt(options, 'tabsize', 8) + if self.tabs: + self.tabs += ' ' * (tabsize - 1) + if self.newlines: + self.newlines += '\n' + self.wstt = get_bool_opt(options, 'wstokentype', True) + + def filter(self, lexer, stream): + if self.wstt: + spaces = self.spaces or ' ' + tabs = self.tabs or '\t' + newlines = self.newlines or '\n' + regex = re.compile(r'\s') + + def replacefunc(wschar): + if wschar == ' ': + return spaces + elif wschar == '\t': + return tabs + elif wschar == '\n': + return newlines + return wschar + + for ttype, value in stream: + yield from _replace_special(ttype, value, regex, Whitespace, + replacefunc) + else: + spaces, tabs, newlines = self.spaces, self.tabs, self.newlines + # simpler processing + for ttype, value in stream: + if spaces: + value = value.replace(' ', spaces) + if tabs: + value = value.replace('\t', tabs) + if newlines: + value = value.replace('\n', newlines) + yield ttype, value + + +class GobbleFilter(Filter): + """Gobbles source code lines (eats initial characters). + + This filter drops the first ``n`` characters off every line of code. This + may be useful when the source code fed to the lexer is indented by a fixed + amount of space that isn't desired in the output. + + Options accepted: + + `n` : int + The number of characters to gobble. + + .. versionadded:: 1.2 + """ + def __init__(self, **options): + Filter.__init__(self, **options) + self.n = get_int_opt(options, 'n', 0) + + def gobble(self, value, left): + if left < len(value): + return value[left:], 0 + else: + return '', left - len(value) + + def filter(self, lexer, stream): + n = self.n + left = n # How many characters left to gobble. + for ttype, value in stream: + # Remove ``left`` tokens from first line, ``n`` from all others. + parts = value.split('\n') + (parts[0], left) = self.gobble(parts[0], left) + for i in range(1, len(parts)): + (parts[i], left) = self.gobble(parts[i], n) + value = '\n'.join(parts) + + if value != '': + yield ttype, value + + +class TokenMergeFilter(Filter): + """Merges consecutive tokens with the same token type in the output + stream of a lexer. + + .. versionadded:: 1.2 + """ + def __init__(self, **options): + Filter.__init__(self, **options) + + def filter(self, lexer, stream): + current_type = None + current_value = None + for ttype, value in stream: + if ttype is current_type: + current_value += value + else: + if current_type is not None: + yield current_type, current_value + current_type = ttype + current_value = value + if current_type is not None: + yield current_type, current_value + + +FILTERS = { + 'codetagify': CodeTagFilter, + 'keywordcase': KeywordCaseFilter, + 'highlight': NameHighlightFilter, + 'raiseonerror': RaiseOnErrorTokenFilter, + 'whitespace': VisibleWhitespaceFilter, + 'gobble': GobbleFilter, + 'tokenmerge': TokenMergeFilter, + 'symbols': SymbolFilter, +} diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..632b4126ab827d65ef851811ede28b5462f76477 GIT binary patch literal 40149 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 B-0=Va literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatter.py b/.venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatter.py new file mode 100644 index 0000000..3ca4892 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatter.py @@ -0,0 +1,124 @@ +""" + pygments.formatter + ~~~~~~~~~~~~~~~~~~ + + Base formatter class. + + :copyright: Copyright 2006-2023 by the Pygments team, see AUTHORS. + :license: BSD, see LICENSE for details. +""" + +import codecs + +from pip._vendor.pygments.util import get_bool_opt +from pip._vendor.pygments.styles import get_style_by_name + +__all__ = ['Formatter'] + + +def _lookup_style(style): + if isinstance(style, str): + return get_style_by_name(style) + return style + + +class Formatter: + """ + Converts a token stream to text. + + Formatters should have attributes to help selecting them. These + are similar to the corresponding :class:`~pygments.lexer.Lexer` + attributes. + + .. autoattribute:: name + :no-value: + + .. autoattribute:: aliases + :no-value: + + .. autoattribute:: filenames + :no-value: + + You can pass options as keyword arguments to the constructor. + All formatters accept these basic options: + + ``style`` + The style to use, can be a string or a Style subclass + (default: "default"). Not used by e.g. the + TerminalFormatter. + ``full`` + Tells the formatter to output a "full" document, i.e. + a complete self-contained document. This doesn't have + any effect for some formatters (default: false). + ``title`` + If ``full`` is true, the title that should be used to + caption the document (default: ''). + ``encoding`` + If given, must be an encoding name. This will be used to + convert the Unicode token strings to byte strings in the + output. If it is "" or None, Unicode strings will be written + to the output file, which most file-like objects do not + support (default: None). + ``outencoding`` + Overrides ``encoding`` if given. + + """ + + #: Full name for the formatter, in human-readable form. + name = None + + #: A list of short, unique identifiers that can be used to lookup + #: the formatter from a list, e.g. using :func:`.get_formatter_by_name()`. + aliases = [] + + #: A list of fnmatch patterns that match filenames for which this + #: formatter can produce output. The patterns in this list should be unique + #: among all formatters. + filenames = [] + + #: If True, this formatter outputs Unicode strings when no encoding + #: option is given. + unicodeoutput = True + + def __init__(self, **options): + """ + As with lexers, this constructor takes arbitrary optional arguments, + and if you override it, you should first process your own options, then + call the base class implementation. + """ + self.style = _lookup_style(options.get('style', 'default')) + self.full = get_bool_opt(options, 'full', False) + self.title = options.get('title', '') + self.encoding = options.get('encoding', None) or None + if self.encoding in ('guess', 'chardet'): + # can happen for e.g. pygmentize -O encoding=guess + self.encoding = 'utf-8' + self.encoding = options.get('outencoding') or self.encoding + self.options = options + + def get_style_defs(self, arg=''): + """ + This method must return statements or declarations suitable to define + the current style for subsequent highlighted text (e.g. CSS classes + in the `HTMLFormatter`). + + The optional argument `arg` can be used to modify the generation and + is formatter dependent (it is standardized because it can be given on + the command line). + + This method is called by the ``-S`` :doc:`command-line option `, + the `arg` is then given by the ``-a`` option. + """ + return '' + + def format(self, tokensource, outfile): + """ + This method must format the tokens from the `tokensource` iterable and + write the formatted version to the file object `outfile`. + + Formatter options can control how exactly the tokens are converted. + """ + if self.encoding: + # wrap the outfile in a StreamWriter + outfile = codecs.lookup(self.encoding)[3](outfile) + return self.format_unencoded(tokensource, outfile) diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/__init__.py b/.venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/__init__.py new file mode 100644 index 0000000..39db842 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/__init__.py @@ -0,0 +1,158 @@ +""" + pygments.formatters + ~~~~~~~~~~~~~~~~~~~ + + Pygments formatters. + + :copyright: Copyright 2006-2023 by the Pygments team, see AUTHORS. + :license: BSD, see LICENSE for details. +""" + +import re +import sys +import types +import fnmatch +from os.path import basename + +from pip._vendor.pygments.formatters._mapping import FORMATTERS +from pip._vendor.pygments.plugin import find_plugin_formatters +from pip._vendor.pygments.util import ClassNotFound + +__all__ = ['get_formatter_by_name', 'get_formatter_for_filename', + 'get_all_formatters', 'load_formatter_from_file'] + list(FORMATTERS) + +_formatter_cache = {} # classes by name +_pattern_cache = {} + + +def _fn_matches(fn, glob): + """Return whether the supplied file name fn matches pattern filename.""" + if glob not in _pattern_cache: + pattern = _pattern_cache[glob] = re.compile(fnmatch.translate(glob)) + return pattern.match(fn) + return _pattern_cache[glob].match(fn) + + +def _load_formatters(module_name): + """Load a formatter (and all others in the module too).""" + mod = __import__(module_name, None, None, ['__all__']) + for formatter_name in mod.__all__: + cls = getattr(mod, formatter_name) + _formatter_cache[cls.name] = cls + + +def get_all_formatters(): + """Return a generator for all formatter classes.""" + # NB: this returns formatter classes, not info like get_all_lexers(). + for info in FORMATTERS.values(): + if info[1] not in _formatter_cache: + _load_formatters(info[0]) + yield _formatter_cache[info[1]] + for _, formatter in find_plugin_formatters(): + yield formatter + + +def find_formatter_class(alias): + """Lookup a formatter by alias. + + Returns None if not found. + """ + for module_name, name, aliases, _, _ in FORMATTERS.values(): + if alias in aliases: + if name not in _formatter_cache: + _load_formatters(module_name) + return _formatter_cache[name] + for _, cls in find_plugin_formatters(): + if alias in cls.aliases: + return cls + + +def get_formatter_by_name(_alias, **options): + """ + Return an instance of a :class:`.Formatter` subclass that has `alias` in its + aliases list. The formatter is given the `options` at its instantiation. + + Will raise :exc:`pygments.util.ClassNotFound` if no formatter with that + alias is found. + """ + cls = find_formatter_class(_alias) + if cls is None: + raise ClassNotFound("no formatter found for name %r" % _alias) + return cls(**options) + + +def load_formatter_from_file(filename, formattername="CustomFormatter", **options): + """ + Return a `Formatter` subclass instance loaded from the provided file, relative + to the current directory. + + The file is expected to contain a Formatter class named ``formattername`` + (by default, CustomFormatter). Users should be very careful with the input, because + this method is equivalent to running ``eval()`` on the input file. The formatter is + given the `options` at its instantiation. + + :exc:`pygments.util.ClassNotFound` is raised if there are any errors loading + the formatter. + + .. versionadded:: 2.2 + """ + try: + # This empty dict will contain the namespace for the exec'd file + custom_namespace = {} + with open(filename, 'rb') as f: + exec(f.read(), custom_namespace) + # Retrieve the class `formattername` from that namespace + if formattername not in custom_namespace: + raise ClassNotFound('no valid %s class found in %s' % + (formattername, filename)) + formatter_class = custom_namespace[formattername] + # And finally instantiate it with the options + return formatter_class(**options) + except OSError as err: + raise ClassNotFound('cannot read %s: %s' % (filename, err)) + except ClassNotFound: + raise + except Exception as err: + raise ClassNotFound('error when loading custom formatter: %s' % err) + + +def get_formatter_for_filename(fn, **options): + """ + Return a :class:`.Formatter` subclass instance that has a filename pattern + matching `fn`. The formatter is given the `options` at its instantiation. + + Will raise :exc:`pygments.util.ClassNotFound` if no formatter for that filename + is found. + """ + fn = basename(fn) + for modname, name, _, filenames, _ in FORMATTERS.values(): + for filename in filenames: + if _fn_matches(fn, filename): + if name not in _formatter_cache: + _load_formatters(modname) + return _formatter_cache[name](**options) + for cls in find_plugin_formatters(): + for filename in cls.filenames: + if _fn_matches(fn, filename): + return cls(**options) + raise ClassNotFound("no formatter found for file name %r" % fn) + + +class _automodule(types.ModuleType): + """Automatically import formatters.""" + + def __getattr__(self, name): + info = FORMATTERS.get(name) + if info: + _load_formatters(info[0]) + cls = _formatter_cache[info[1]] + setattr(self, name, cls) + return cls + raise AttributeError(name) + + +oldmod = sys.modules[__name__] +newmod = _automodule(__name__) +newmod.__dict__.update(oldmod.__dict__) +sys.modules[__name__] = newmod +del newmod.newmod, newmod.oldmod, newmod.sys, newmod.types diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b0ca9df45b4af989e2097a81d7ca3b5806f6fa31 GIT binary patch literal 7807 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/__pycache__/bbcode.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/__pycache__/bbcode.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..dec86e0a29dfb5df4b0889fbd86022d4523150f4 GIT binary patch literal 4523 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/__pycache__/groff.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/__pycache__/groff.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7672fed534382f51c0aa2866047bf86841e8335c GIT binary patch literal 7896 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/__pycache__/img.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/__pycache__/img.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4792898bab3b784aec9a8a52fe31257c89b1ecf8 GIT binary patch literal 28613 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ǹ_Stb}9LaI832Yws?d zszv&Ck~?fC`Pf$yYmuYX$mom6$>))iPd=_h&Qv33N}?fh9g)&0!^MR<4bC4N!a3ye zS~W5TQ@VP$*B-6y4pzEGs$C-`p?386uCUv_D?GkpaL%>~6O?9a-Mt3KcfMDP9RF4D z7s0Pn&%|e1W%yEc_);Zuxf;1#j$E#Vd$+GYx(>3!Bh~OoIXnW2zX%UM4-fC&x3n&Y zWALkWbd}gYod$ej2{4XnCNtd3!$${5URc&761p#uNM}hNYDIiMPkf%2m3ogmks#S5u${=z z-S9#ot5ns!7(LCR$jnvN1zLe~`WMcWZ>2FTVXZnAPjC^ymi=cqIz*4bAsFQXZCkUo z)^LdyGg}|xE5KF5=@O3^oDD*P2+`68z77#~^IcHi+%QvMG5r|4qKwyHQQ%eN@aH2d zhxfd3ka@|O6QnSVEDTEyX1>JZeP-rcIu<3&d?ClzaE7r)Kk`Otc`c<_B?1^!RunL( z`zE9CvX#`Gx6yf=ckuI%`+ciu)IA^MGiI%-d*`wA#1A^UIHSla*naK{th1qL(7m%X z2_G2nOOWRinWf|hKiiNW~xSjVApyQh-$a08b$~TYpwday`W8Pzb2Rsao>JS8YL*RMdaCms9 z!6689{JAoBw)tl`c>Xlp zbFBWUHBHce|$ri=|=wx4Zlo; literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/__pycache__/latex.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/__pycache__/latex.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b609ecbc1e1d96ae8ed136d97259ae36cbc45348 GIT binary patch literal 21849 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 Ml5e*tXY2TX0m5vY2><{9 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/__pycache__/other.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/__pycache__/other.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..351f1d33ba8b5015b6685417dabccf11cf49d4e3 GIT binary patch literal 7677 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fbb65b672507a0fb2d5bf4fa7f5fa00ea10462ef GIT binary patch literal 6087 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal256.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal256.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..624912985b15d361450bb52aa33d42570638880e GIT binary patch literal 16453 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 tags. By default, the content is enclosed in a ``
`` tag, itself wrapped in a ``
`` tag (but see the `nowrap` option). The ``
``'s CSS class can be set by the `cssclass` option."), + 'IRCFormatter': ('pygments.formatters.irc', 'IRC', ('irc', 'IRC'), (), 'Format tokens with IRC color sequences'), + 'ImageFormatter': ('pygments.formatters.img', 'img', ('img', 'IMG', 'png'), ('*.png',), 'Create a PNG image from source code. This uses the Python Imaging Library to generate a pixmap from the source code.'), + 'JpgImageFormatter': ('pygments.formatters.img', 'img_jpg', ('jpg', 'jpeg'), ('*.jpg',), 'Create a JPEG image from source code. This uses the Python Imaging Library to generate a pixmap from the source code.'), + 'LatexFormatter': ('pygments.formatters.latex', 'LaTeX', ('latex', 'tex'), ('*.tex',), 'Format tokens as LaTeX code. This needs the `fancyvrb` and `color` standard packages.'), + 'NullFormatter': ('pygments.formatters.other', 'Text only', ('text', 'null'), ('*.txt',), 'Output the text unchanged without any formatting.'), + 'PangoMarkupFormatter': ('pygments.formatters.pangomarkup', 'Pango Markup', ('pango', 'pangomarkup'), (), 'Format tokens as Pango Markup code. It can then be rendered to an SVG.'), + 'RawTokenFormatter': ('pygments.formatters.other', 'Raw tokens', ('raw', 'tokens'), ('*.raw',), 'Format tokens as a raw representation for storing token streams.'), + 'RtfFormatter': ('pygments.formatters.rtf', 'RTF', ('rtf',), ('*.rtf',), 'Format tokens as RTF markup. This formatter automatically outputs full RTF documents with color information and other useful stuff. Perfect for Copy and Paste into Microsoft(R) Word(R) documents.'), + 'SvgFormatter': ('pygments.formatters.svg', 'SVG', ('svg',), ('*.svg',), 'Format tokens as an SVG graphics file. This formatter is still experimental. Each line of code is a ```` element with explicit ``x`` and ``y`` coordinates containing ```` elements with the individual token styles.'), + 'Terminal256Formatter': ('pygments.formatters.terminal256', 'Terminal256', ('terminal256', 'console256', '256'), (), 'Format tokens with ANSI color sequences, for output in a 256-color terminal or console. Like in `TerminalFormatter` color sequences are terminated at newlines, so that paging the output works correctly.'), + 'TerminalFormatter': ('pygments.formatters.terminal', 'Terminal', ('terminal', 'console'), (), 'Format tokens with ANSI color sequences, for output in a text console. Color sequences are terminated at newlines, so that paging the output works correctly.'), + 'TerminalTrueColorFormatter': ('pygments.formatters.terminal256', 'TerminalTrueColor', ('terminal16m', 'console16m', '16m'), (), 'Format tokens with ANSI color sequences, for output in a true-color terminal or console. Like in `TerminalFormatter` color sequences are terminated at newlines, so that paging the output works correctly.'), + 'TestcaseFormatter': ('pygments.formatters.other', 'Testcase', ('testcase',), (), 'Format tokens as appropriate for a new testcase.'), +} diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/bbcode.py b/.venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/bbcode.py new file mode 100644 index 0000000..c4db8f4 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/bbcode.py @@ -0,0 +1,108 @@ +""" + pygments.formatters.bbcode + ~~~~~~~~~~~~~~~~~~~~~~~~~~ + + BBcode formatter. + + :copyright: Copyright 2006-2023 by the Pygments team, see AUTHORS. + :license: BSD, see LICENSE for details. +""" + + +from pip._vendor.pygments.formatter import Formatter +from pip._vendor.pygments.util import get_bool_opt + +__all__ = ['BBCodeFormatter'] + + +class BBCodeFormatter(Formatter): + """ + Format tokens with BBcodes. These formatting codes are used by many + bulletin boards, so you can highlight your sourcecode with pygments before + posting it there. + + This formatter has no support for background colors and borders, as there + are no common BBcode tags for that. + + Some board systems (e.g. phpBB) don't support colors in their [code] tag, + so you can't use the highlighting together with that tag. + Text in a [code] tag usually is shown with a monospace font (which this + formatter can do with the ``monofont`` option) and no spaces (which you + need for indentation) are removed. + + Additional options accepted: + + `style` + The style to use, can be a string or a Style subclass (default: + ``'default'``). + + `codetag` + If set to true, put the output into ``[code]`` tags (default: + ``false``) + + `monofont` + If set to true, add a tag to show the code with a monospace font + (default: ``false``). + """ + name = 'BBCode' + aliases = ['bbcode', 'bb'] + filenames = [] + + def __init__(self, **options): + Formatter.__init__(self, **options) + self._code = get_bool_opt(options, 'codetag', False) + self._mono = get_bool_opt(options, 'monofont', False) + + self.styles = {} + self._make_styles() + + def _make_styles(self): + for ttype, ndef in self.style: + start = end = '' + if ndef['color']: + start += '[color=#%s]' % ndef['color'] + end = '[/color]' + end + if ndef['bold']: + start += '[b]' + end = '[/b]' + end + if ndef['italic']: + start += '[i]' + end = '[/i]' + end + if ndef['underline']: + start += '[u]' + end = '[/u]' + end + # there are no common BBcodes for background-color and border + + self.styles[ttype] = start, end + + def format_unencoded(self, tokensource, outfile): + if self._code: + outfile.write('[code]') + if self._mono: + outfile.write('[font=monospace]') + + lastval = '' + lasttype = None + + for ttype, value in tokensource: + while ttype not in self.styles: + ttype = ttype.parent + if ttype == lasttype: + lastval += value + else: + if lastval: + start, end = self.styles[lasttype] + outfile.write(''.join((start, lastval, end))) + lastval = value + lasttype = ttype + + if lastval: + start, end = self.styles[lasttype] + outfile.write(''.join((start, lastval, end))) + + if self._mono: + outfile.write('[/font]') + if self._code: + outfile.write('[/code]') + if self._code or self._mono: + outfile.write('\n') diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/groff.py b/.venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/groff.py new file mode 100644 index 0000000..30a528e --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/groff.py @@ -0,0 +1,170 @@ +""" + pygments.formatters.groff + ~~~~~~~~~~~~~~~~~~~~~~~~~ + + Formatter for groff output. + + :copyright: Copyright 2006-2023 by the Pygments team, see AUTHORS. + :license: BSD, see LICENSE for details. +""" + +import math +from pip._vendor.pygments.formatter import Formatter +from pip._vendor.pygments.util import get_bool_opt, get_int_opt + +__all__ = ['GroffFormatter'] + + +class GroffFormatter(Formatter): + """ + Format tokens with groff escapes to change their color and font style. + + .. versionadded:: 2.11 + + Additional options accepted: + + `style` + The style to use, can be a string or a Style subclass (default: + ``'default'``). + + `monospaced` + If set to true, monospace font will be used (default: ``true``). + + `linenos` + If set to true, print the line numbers (default: ``false``). + + `wrap` + Wrap lines to the specified number of characters. Disabled if set to 0 + (default: ``0``). + """ + + name = 'groff' + aliases = ['groff','troff','roff'] + filenames = [] + + def __init__(self, **options): + Formatter.__init__(self, **options) + + self.monospaced = get_bool_opt(options, 'monospaced', True) + self.linenos = get_bool_opt(options, 'linenos', False) + self._lineno = 0 + self.wrap = get_int_opt(options, 'wrap', 0) + self._linelen = 0 + + self.styles = {} + self._make_styles() + + + def _make_styles(self): + regular = '\\f[CR]' if self.monospaced else '\\f[R]' + bold = '\\f[CB]' if self.monospaced else '\\f[B]' + italic = '\\f[CI]' if self.monospaced else '\\f[I]' + + for ttype, ndef in self.style: + start = end = '' + if ndef['color']: + start += '\\m[%s]' % ndef['color'] + end = '\\m[]' + end + if ndef['bold']: + start += bold + end = regular + end + if ndef['italic']: + start += italic + end = regular + end + if ndef['bgcolor']: + start += '\\M[%s]' % ndef['bgcolor'] + end = '\\M[]' + end + + self.styles[ttype] = start, end + + + def _define_colors(self, outfile): + colors = set() + for _, ndef in self.style: + if ndef['color'] is not None: + colors.add(ndef['color']) + + for color in sorted(colors): + outfile.write('.defcolor ' + color + ' rgb #' + color + '\n') + + + def _write_lineno(self, outfile): + self._lineno += 1 + outfile.write("%s% 4d " % (self._lineno != 1 and '\n' or '', self._lineno)) + + + def _wrap_line(self, line): + length = len(line.rstrip('\n')) + space = ' ' if self.linenos else '' + newline = '' + + if length > self.wrap: + for i in range(0, math.floor(length / self.wrap)): + chunk = line[i*self.wrap:i*self.wrap+self.wrap] + newline += (chunk + '\n' + space) + remainder = length % self.wrap + if remainder > 0: + newline += line[-remainder-1:] + self._linelen = remainder + elif self._linelen + length > self.wrap: + newline = ('\n' + space) + line + self._linelen = length + else: + newline = line + self._linelen += length + + return newline + + + def _escape_chars(self, text): + text = text.replace('\\', '\\[u005C]'). \ + replace('.', '\\[char46]'). \ + replace('\'', '\\[u0027]'). \ + replace('`', '\\[u0060]'). \ + replace('~', '\\[u007E]') + copy = text + + for char in copy: + if len(char) != len(char.encode()): + uni = char.encode('unicode_escape') \ + .decode()[1:] \ + .replace('x', 'u00') \ + .upper() + text = text.replace(char, '\\[u' + uni[1:] + ']') + + return text + + + def format_unencoded(self, tokensource, outfile): + self._define_colors(outfile) + + outfile.write('.nf\n\\f[CR]\n') + + if self.linenos: + self._write_lineno(outfile) + + for ttype, value in tokensource: + while ttype not in self.styles: + ttype = ttype.parent + start, end = self.styles[ttype] + + for line in value.splitlines(True): + if self.wrap > 0: + line = self._wrap_line(line) + + if start and end: + text = self._escape_chars(line.rstrip('\n')) + if text != '': + outfile.write(''.join((start, text, end))) + else: + outfile.write(self._escape_chars(line.rstrip('\n'))) + + if line.endswith('\n'): + if self.linenos: + self._write_lineno(outfile) + self._linelen = 0 + else: + outfile.write('\n') + self._linelen = 0 + + outfile.write('\n.fi') diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/html.py b/.venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/html.py new file mode 100644 index 0000000..931d7c3 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/html.py @@ -0,0 +1,989 @@ +""" + pygments.formatters.html + ~~~~~~~~~~~~~~~~~~~~~~~~ + + Formatter for HTML output. + + :copyright: Copyright 2006-2023 by the Pygments team, see AUTHORS. + :license: BSD, see LICENSE for details. +""" + +import functools +import os +import sys +import os.path +from io import StringIO + +from pip._vendor.pygments.formatter import Formatter +from pip._vendor.pygments.token import Token, Text, STANDARD_TYPES +from pip._vendor.pygments.util import get_bool_opt, get_int_opt, get_list_opt + +try: + import ctags +except ImportError: + ctags = None + +__all__ = ['HtmlFormatter'] + + +_escape_html_table = { + ord('&'): '&', + ord('<'): '<', + ord('>'): '>', + ord('"'): '"', + ord("'"): ''', +} + + +def escape_html(text, table=_escape_html_table): + """Escape &, <, > as well as single and double quotes for HTML.""" + return text.translate(table) + + +def webify(color): + if color.startswith('calc') or color.startswith('var'): + return color + else: + return '#' + color + + +def _get_ttype_class(ttype): + fname = STANDARD_TYPES.get(ttype) + if fname: + return fname + aname = '' + while fname is None: + aname = '-' + ttype[-1] + aname + ttype = ttype.parent + fname = STANDARD_TYPES.get(ttype) + return fname + aname + + +CSSFILE_TEMPLATE = '''\ +/* +generated by Pygments +Copyright 2006-2023 by the Pygments team. +Licensed under the BSD license, see LICENSE for details. +*/ +%(styledefs)s +''' + +DOC_HEADER = '''\ + + + + + %(title)s + + + + +

%(title)s

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

%(title)s

+ +''' + +DOC_FOOTER = '''\ + + +''' + + +class HtmlFormatter(Formatter): + r""" + Format tokens as HTML 4 ```` tags. By default, the content is enclosed + in a ``
`` tag, itself wrapped in a ``
`` tag (but see the `nowrap` option). + The ``
``'s CSS class can be set by the `cssclass` option. + + If the `linenos` option is set to ``"table"``, the ``
`` is
+    additionally wrapped inside a ```` which has one row and two
+    cells: one containing the line numbers and one containing the code.
+    Example:
+
+    .. sourcecode:: html
+
+        
+
+ + +
+
1
+            2
+
+
def foo(bar):
+              pass
+            
+
+ + (whitespace added to improve clarity). + + A list of lines can be specified using the `hl_lines` option to make these + lines highlighted (as of Pygments 0.11). + + With the `full` option, a complete HTML 4 document is output, including + the style definitions inside a `` + {% else %} + {{ head | safe }} + {% endif %} +{% if not embed %} + + +{% endif %} +{{ body | safe }} +{% for diagram in diagrams %} +
+

{{ diagram.title }}

+
{{ diagram.text }}
+
+ {{ diagram.svg }} +
+
+{% endfor %} +{% if not embed %} + + +{% endif %} +""" + +template = Template(jinja2_template_source) + +# Note: ideally this would be a dataclass, but we're supporting Python 3.5+ so we can't do this yet +NamedDiagram = NamedTuple( + "NamedDiagram", + [("name", str), ("diagram", typing.Optional[railroad.DiagramItem]), ("index", int)], +) +""" +A simple structure for associating a name with a railroad diagram +""" + +T = TypeVar("T") + + +class EachItem(railroad.Group): + """ + Custom railroad item to compose a: + - Group containing a + - OneOrMore containing a + - Choice of the elements in the Each + with the group label indicating that all must be matched + """ + + all_label = "[ALL]" + + def __init__(self, *items): + choice_item = railroad.Choice(len(items) - 1, *items) + one_or_more_item = railroad.OneOrMore(item=choice_item) + super().__init__(one_or_more_item, label=self.all_label) + + +class AnnotatedItem(railroad.Group): + """ + Simple subclass of Group that creates an annotation label + """ + + def __init__(self, label: str, item): + super().__init__(item=item, label="[{}]".format(label) if label else label) + + +class EditablePartial(Generic[T]): + """ + Acts like a functools.partial, but can be edited. In other words, it represents a type that hasn't yet been + constructed. + """ + + # We need this here because the railroad constructors actually transform the data, so can't be called until the + # entire tree is assembled + + def __init__(self, func: Callable[..., T], args: list, kwargs: dict): + self.func = func + self.args = args + self.kwargs = kwargs + + @classmethod + def from_call(cls, func: Callable[..., T], *args, **kwargs) -> "EditablePartial[T]": + """ + If you call this function in the same way that you would call the constructor, it will store the arguments + as you expect. For example EditablePartial.from_call(Fraction, 1, 3)() == Fraction(1, 3) + """ + return EditablePartial(func=func, args=list(args), kwargs=kwargs) + + @property + def name(self): + return self.kwargs["name"] + + def __call__(self) -> T: + """ + Evaluate the partial and return the result + """ + args = self.args.copy() + kwargs = self.kwargs.copy() + + # This is a helpful hack to allow you to specify varargs parameters (e.g. *args) as keyword args (e.g. + # args=['list', 'of', 'things']) + arg_spec = inspect.getfullargspec(self.func) + if arg_spec.varargs in self.kwargs: + args += kwargs.pop(arg_spec.varargs) + + return self.func(*args, **kwargs) + + +def railroad_to_html(diagrams: List[NamedDiagram], embed=False, **kwargs) -> str: + """ + Given a list of NamedDiagram, produce a single HTML string that visualises those diagrams + :params kwargs: kwargs to be passed in to the template + """ + data = [] + for diagram in diagrams: + if diagram.diagram is None: + continue + io = StringIO() + try: + css = kwargs.get('css') + diagram.diagram.writeStandalone(io.write, css=css) + except AttributeError: + diagram.diagram.writeSvg(io.write) + title = diagram.name + if diagram.index == 0: + title += " (root)" + data.append({"title": title, "text": "", "svg": io.getvalue()}) + + return template.render(diagrams=data, embed=embed, **kwargs) + + +def resolve_partial(partial: "EditablePartial[T]") -> T: + """ + Recursively resolves a collection of Partials into whatever type they are + """ + if isinstance(partial, EditablePartial): + partial.args = resolve_partial(partial.args) + partial.kwargs = resolve_partial(partial.kwargs) + return partial() + elif isinstance(partial, list): + return [resolve_partial(x) for x in partial] + elif isinstance(partial, dict): + return {key: resolve_partial(x) for key, x in partial.items()} + else: + return partial + + +def to_railroad( + element: pyparsing.ParserElement, + diagram_kwargs: typing.Optional[dict] = None, + vertical: int = 3, + show_results_names: bool = False, + show_groups: bool = False, +) -> List[NamedDiagram]: + """ + Convert a pyparsing element tree into a list of diagrams. This is the recommended entrypoint to diagram + creation if you want to access the Railroad tree before it is converted to HTML + :param element: base element of the parser being diagrammed + :param diagram_kwargs: kwargs to pass to the Diagram() constructor + :param vertical: (optional) - int - limit at which number of alternatives should be + shown vertically instead of horizontally + :param show_results_names - bool to indicate whether results name annotations should be + included in the diagram + :param show_groups - bool to indicate whether groups should be highlighted with an unlabeled + surrounding box + """ + # Convert the whole tree underneath the root + lookup = ConverterState(diagram_kwargs=diagram_kwargs or {}) + _to_diagram_element( + element, + lookup=lookup, + parent=None, + vertical=vertical, + show_results_names=show_results_names, + show_groups=show_groups, + ) + + root_id = id(element) + # Convert the root if it hasn't been already + if root_id in lookup: + if not element.customName: + lookup[root_id].name = "" + lookup[root_id].mark_for_extraction(root_id, lookup, force=True) + + # Now that we're finished, we can convert from intermediate structures into Railroad elements + diags = list(lookup.diagrams.values()) + if len(diags) > 1: + # collapse out duplicate diags with the same name + seen = set() + deduped_diags = [] + for d in diags: + # don't extract SkipTo elements, they are uninformative as subdiagrams + if d.name == "...": + continue + if d.name is not None and d.name not in seen: + seen.add(d.name) + deduped_diags.append(d) + resolved = [resolve_partial(partial) for partial in deduped_diags] + else: + # special case - if just one diagram, always display it, even if + # it has no name + resolved = [resolve_partial(partial) for partial in diags] + return sorted(resolved, key=lambda diag: diag.index) + + +def _should_vertical( + specification: int, exprs: Iterable[pyparsing.ParserElement] +) -> bool: + """ + Returns true if we should return a vertical list of elements + """ + if specification is None: + return False + else: + return len(_visible_exprs(exprs)) >= specification + + +class ElementState: + """ + State recorded for an individual pyparsing Element + """ + + # Note: this should be a dataclass, but we have to support Python 3.5 + def __init__( + self, + element: pyparsing.ParserElement, + converted: EditablePartial, + parent: EditablePartial, + number: int, + name: str = None, + parent_index: typing.Optional[int] = None, + ): + #: The pyparsing element that this represents + self.element: pyparsing.ParserElement = element + #: The name of the element + self.name: typing.Optional[str] = name + #: The output Railroad element in an unconverted state + self.converted: EditablePartial = converted + #: The parent Railroad element, which we store so that we can extract this if it's duplicated + self.parent: EditablePartial = parent + #: The order in which we found this element, used for sorting diagrams if this is extracted into a diagram + self.number: int = number + #: The index of this inside its parent + self.parent_index: typing.Optional[int] = parent_index + #: If true, we should extract this out into a subdiagram + self.extract: bool = False + #: If true, all of this element's children have been filled out + self.complete: bool = False + + def mark_for_extraction( + self, el_id: int, state: "ConverterState", name: str = None, force: bool = False + ): + """ + Called when this instance has been seen twice, and thus should eventually be extracted into a sub-diagram + :param el_id: id of the element + :param state: element/diagram state tracker + :param name: name to use for this element's text + :param force: If true, force extraction now, regardless of the state of this. Only useful for extracting the + root element when we know we're finished + """ + self.extract = True + + # Set the name + if not self.name: + if name: + # Allow forcing a custom name + self.name = name + elif self.element.customName: + self.name = self.element.customName + else: + self.name = "" + + # Just because this is marked for extraction doesn't mean we can do it yet. We may have to wait for children + # to be added + # Also, if this is just a string literal etc, don't bother extracting it + if force or (self.complete and _worth_extracting(self.element)): + state.extract_into_diagram(el_id) + + +class ConverterState: + """ + Stores some state that persists between recursions into the element tree + """ + + def __init__(self, diagram_kwargs: typing.Optional[dict] = None): + #: A dictionary mapping ParserElements to state relating to them + self._element_diagram_states: Dict[int, ElementState] = {} + #: A dictionary mapping ParserElement IDs to subdiagrams generated from them + self.diagrams: Dict[int, EditablePartial[NamedDiagram]] = {} + #: The index of the next unnamed element + self.unnamed_index: int = 1 + #: The index of the next element. This is used for sorting + self.index: int = 0 + #: Shared kwargs that are used to customize the construction of diagrams + self.diagram_kwargs: dict = diagram_kwargs or {} + self.extracted_diagram_names: Set[str] = set() + + def __setitem__(self, key: int, value: ElementState): + self._element_diagram_states[key] = value + + def __getitem__(self, key: int) -> ElementState: + return self._element_diagram_states[key] + + def __delitem__(self, key: int): + del self._element_diagram_states[key] + + def __contains__(self, key: int): + return key in self._element_diagram_states + + def generate_unnamed(self) -> int: + """ + Generate a number used in the name of an otherwise unnamed diagram + """ + self.unnamed_index += 1 + return self.unnamed_index + + def generate_index(self) -> int: + """ + Generate a number used to index a diagram + """ + self.index += 1 + return self.index + + def extract_into_diagram(self, el_id: int): + """ + Used when we encounter the same token twice in the same tree. When this + happens, we replace all instances of that token with a terminal, and + create a new subdiagram for the token + """ + position = self[el_id] + + # Replace the original definition of this element with a regular block + if position.parent: + ret = EditablePartial.from_call(railroad.NonTerminal, text=position.name) + if "item" in position.parent.kwargs: + position.parent.kwargs["item"] = ret + elif "items" in position.parent.kwargs: + position.parent.kwargs["items"][position.parent_index] = ret + + # If the element we're extracting is a group, skip to its content but keep the title + if position.converted.func == railroad.Group: + content = position.converted.kwargs["item"] + else: + content = position.converted + + self.diagrams[el_id] = EditablePartial.from_call( + NamedDiagram, + name=position.name, + diagram=EditablePartial.from_call( + railroad.Diagram, content, **self.diagram_kwargs + ), + index=position.number, + ) + + del self[el_id] + + +def _worth_extracting(element: pyparsing.ParserElement) -> bool: + """ + Returns true if this element is worth having its own sub-diagram. Simply, if any of its children + themselves have children, then its complex enough to extract + """ + children = element.recurse() + return any(child.recurse() for child in children) + + +def _apply_diagram_item_enhancements(fn): + """ + decorator to ensure enhancements to a diagram item (such as results name annotations) + get applied on return from _to_diagram_element (we do this since there are several + returns in _to_diagram_element) + """ + + def _inner( + element: pyparsing.ParserElement, + parent: typing.Optional[EditablePartial], + lookup: ConverterState = None, + vertical: int = None, + index: int = 0, + name_hint: str = None, + show_results_names: bool = False, + show_groups: bool = False, + ) -> typing.Optional[EditablePartial]: + ret = fn( + element, + parent, + lookup, + vertical, + index, + name_hint, + show_results_names, + show_groups, + ) + + # apply annotation for results name, if present + if show_results_names and ret is not None: + element_results_name = element.resultsName + if element_results_name: + # add "*" to indicate if this is a "list all results" name + element_results_name += "" if element.modalResults else "*" + ret = EditablePartial.from_call( + railroad.Group, item=ret, label=element_results_name + ) + + return ret + + return _inner + + +def _visible_exprs(exprs: Iterable[pyparsing.ParserElement]): + non_diagramming_exprs = ( + pyparsing.ParseElementEnhance, + pyparsing.PositionToken, + pyparsing.And._ErrorStop, + ) + return [ + e + for e in exprs + if not (e.customName or e.resultsName or isinstance(e, non_diagramming_exprs)) + ] + + +@_apply_diagram_item_enhancements +def _to_diagram_element( + element: pyparsing.ParserElement, + parent: typing.Optional[EditablePartial], + lookup: ConverterState = None, + vertical: int = None, + index: int = 0, + name_hint: str = None, + show_results_names: bool = False, + show_groups: bool = False, +) -> typing.Optional[EditablePartial]: + """ + Recursively converts a PyParsing Element to a railroad Element + :param lookup: The shared converter state that keeps track of useful things + :param index: The index of this element within the parent + :param parent: The parent of this element in the output tree + :param vertical: Controls at what point we make a list of elements vertical. If this is an integer (the default), + it sets the threshold of the number of items before we go vertical. If True, always go vertical, if False, never + do so + :param name_hint: If provided, this will override the generated name + :param show_results_names: bool flag indicating whether to add annotations for results names + :returns: The converted version of the input element, but as a Partial that hasn't yet been constructed + :param show_groups: bool flag indicating whether to show groups using bounding box + """ + exprs = element.recurse() + name = name_hint or element.customName or element.__class__.__name__ + + # Python's id() is used to provide a unique identifier for elements + el_id = id(element) + + element_results_name = element.resultsName + + # Here we basically bypass processing certain wrapper elements if they contribute nothing to the diagram + if not element.customName: + if isinstance( + element, + ( + # pyparsing.TokenConverter, + # pyparsing.Forward, + pyparsing.Located, + ), + ): + # However, if this element has a useful custom name, and its child does not, we can pass it on to the child + if exprs: + if not exprs[0].customName: + propagated_name = name + else: + propagated_name = None + + return _to_diagram_element( + element.expr, + parent=parent, + lookup=lookup, + vertical=vertical, + index=index, + name_hint=propagated_name, + show_results_names=show_results_names, + show_groups=show_groups, + ) + + # If the element isn't worth extracting, we always treat it as the first time we say it + if _worth_extracting(element): + if el_id in lookup: + # If we've seen this element exactly once before, we are only just now finding out that it's a duplicate, + # so we have to extract it into a new diagram. + looked_up = lookup[el_id] + looked_up.mark_for_extraction(el_id, lookup, name=name_hint) + ret = EditablePartial.from_call(railroad.NonTerminal, text=looked_up.name) + return ret + + elif el_id in lookup.diagrams: + # If we have seen the element at least twice before, and have already extracted it into a subdiagram, we + # just put in a marker element that refers to the sub-diagram + ret = EditablePartial.from_call( + railroad.NonTerminal, text=lookup.diagrams[el_id].kwargs["name"] + ) + return ret + + # Recursively convert child elements + # Here we find the most relevant Railroad element for matching pyparsing Element + # We use ``items=[]`` here to hold the place for where the child elements will go once created + if isinstance(element, pyparsing.And): + # detect And's created with ``expr*N`` notation - for these use a OneOrMore with a repeat + # (all will have the same name, and resultsName) + if not exprs: + return None + if len(set((e.name, e.resultsName) for e in exprs)) == 1: + ret = EditablePartial.from_call( + railroad.OneOrMore, item="", repeat=str(len(exprs)) + ) + elif _should_vertical(vertical, exprs): + ret = EditablePartial.from_call(railroad.Stack, items=[]) + else: + ret = EditablePartial.from_call(railroad.Sequence, items=[]) + elif isinstance(element, (pyparsing.Or, pyparsing.MatchFirst)): + if not exprs: + return None + if _should_vertical(vertical, exprs): + ret = EditablePartial.from_call(railroad.Choice, 0, items=[]) + else: + ret = EditablePartial.from_call(railroad.HorizontalChoice, items=[]) + elif isinstance(element, pyparsing.Each): + if not exprs: + return None + ret = EditablePartial.from_call(EachItem, items=[]) + elif isinstance(element, pyparsing.NotAny): + ret = EditablePartial.from_call(AnnotatedItem, label="NOT", item="") + elif isinstance(element, pyparsing.FollowedBy): + ret = EditablePartial.from_call(AnnotatedItem, label="LOOKAHEAD", item="") + elif isinstance(element, pyparsing.PrecededBy): + ret = EditablePartial.from_call(AnnotatedItem, label="LOOKBEHIND", item="") + elif isinstance(element, pyparsing.Group): + if show_groups: + ret = EditablePartial.from_call(AnnotatedItem, label="", item="") + else: + ret = EditablePartial.from_call(railroad.Group, label="", item="") + elif isinstance(element, pyparsing.TokenConverter): + label = type(element).__name__.lower() + if label == "tokenconverter": + ret = EditablePartial.from_call(railroad.Sequence, items=[]) + else: + ret = EditablePartial.from_call(AnnotatedItem, label=label, item="") + elif isinstance(element, pyparsing.Opt): + ret = EditablePartial.from_call(railroad.Optional, item="") + elif isinstance(element, pyparsing.OneOrMore): + ret = EditablePartial.from_call(railroad.OneOrMore, item="") + elif isinstance(element, pyparsing.ZeroOrMore): + ret = EditablePartial.from_call(railroad.ZeroOrMore, item="") + elif isinstance(element, pyparsing.Group): + ret = EditablePartial.from_call( + railroad.Group, item=None, label=element_results_name + ) + elif isinstance(element, pyparsing.Empty) and not element.customName: + # Skip unnamed "Empty" elements + ret = None + elif isinstance(element, pyparsing.ParseElementEnhance): + ret = EditablePartial.from_call(railroad.Sequence, items=[]) + elif len(exprs) > 0 and not element_results_name: + ret = EditablePartial.from_call(railroad.Group, item="", label=name) + elif len(exprs) > 0: + ret = EditablePartial.from_call(railroad.Sequence, items=[]) + else: + terminal = EditablePartial.from_call(railroad.Terminal, element.defaultName) + ret = terminal + + if ret is None: + return + + # Indicate this element's position in the tree so we can extract it if necessary + lookup[el_id] = ElementState( + element=element, + converted=ret, + parent=parent, + parent_index=index, + number=lookup.generate_index(), + ) + if element.customName: + lookup[el_id].mark_for_extraction(el_id, lookup, element.customName) + + i = 0 + for expr in exprs: + # Add a placeholder index in case we have to extract the child before we even add it to the parent + if "items" in ret.kwargs: + ret.kwargs["items"].insert(i, None) + + item = _to_diagram_element( + expr, + parent=ret, + lookup=lookup, + vertical=vertical, + index=i, + show_results_names=show_results_names, + show_groups=show_groups, + ) + + # Some elements don't need to be shown in the diagram + if item is not None: + if "item" in ret.kwargs: + ret.kwargs["item"] = item + elif "items" in ret.kwargs: + # If we've already extracted the child, don't touch this index, since it's occupied by a nonterminal + ret.kwargs["items"][i] = item + i += 1 + elif "items" in ret.kwargs: + # If we're supposed to skip this element, remove it from the parent + del ret.kwargs["items"][i] + + # If all this items children are none, skip this item + if ret and ( + ("items" in ret.kwargs and len(ret.kwargs["items"]) == 0) + or ("item" in ret.kwargs and ret.kwargs["item"] is None) + ): + ret = EditablePartial.from_call(railroad.Terminal, name) + + # Mark this element as "complete", ie it has all of its children + if el_id in lookup: + lookup[el_id].complete = True + + if el_id in lookup and lookup[el_id].extract and lookup[el_id].complete: + lookup.extract_into_diagram(el_id) + if ret is not None: + ret = EditablePartial.from_call( + railroad.NonTerminal, text=lookup.diagrams[el_id].kwargs["name"] + ) + + return ret diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/pyparsing/diagram/__pycache__/__init__.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/pyparsing/diagram/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c64d445e311bbf3a5f84e6412a1a614a39432f03 GIT binary patch literal 28833 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 UvT+TzwL`XSs#@zqnBd_50qCJs+W-In literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/pyparsing/exceptions.py b/.venv/lib/python3.11/site-packages/pip/_vendor/pyparsing/exceptions.py new file mode 100644 index 0000000..12219f1 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/pyparsing/exceptions.py @@ -0,0 +1,299 @@ +# exceptions.py + +import re +import sys +import typing + +from .util import ( + col, + line, + lineno, + _collapse_string_to_ranges, + replaced_by_pep8, +) +from .unicode import pyparsing_unicode as ppu + + +class ExceptionWordUnicode(ppu.Latin1, ppu.LatinA, ppu.LatinB, ppu.Greek, ppu.Cyrillic): + pass + + +_extract_alphanums = _collapse_string_to_ranges(ExceptionWordUnicode.alphanums) +_exception_word_extractor = re.compile("([" + _extract_alphanums + "]{1,16})|.") + + +class ParseBaseException(Exception): + """base exception class for all parsing runtime exceptions""" + + loc: int + msg: str + pstr: str + parser_element: typing.Any # "ParserElement" + args: typing.Tuple[str, int, typing.Optional[str]] + + __slots__ = ( + "loc", + "msg", + "pstr", + "parser_element", + "args", + ) + + # Performance tuning: we construct a *lot* of these, so keep this + # constructor as small and fast as possible + def __init__( + self, + pstr: str, + loc: int = 0, + msg: typing.Optional[str] = None, + elem=None, + ): + self.loc = loc + if msg is None: + self.msg = pstr + self.pstr = "" + else: + self.msg = msg + self.pstr = pstr + self.parser_element = elem + self.args = (pstr, loc, msg) + + @staticmethod + def explain_exception(exc, depth=16): + """ + Method to take an exception and translate the Python internal traceback into a list + of the pyparsing expressions that caused the exception to be raised. + + Parameters: + + - exc - exception raised during parsing (need not be a ParseException, in support + of Python exceptions that might be raised in a parse action) + - depth (default=16) - number of levels back in the stack trace to list expression + and function names; if None, the full stack trace names will be listed; if 0, only + the failing input line, marker, and exception string will be shown + + Returns a multi-line string listing the ParserElements and/or function names in the + exception's stack trace. + """ + import inspect + from .core import ParserElement + + if depth is None: + depth = sys.getrecursionlimit() + ret = [] + if isinstance(exc, ParseBaseException): + ret.append(exc.line) + ret.append(" " * (exc.column - 1) + "^") + ret.append(f"{type(exc).__name__}: {exc}") + + if depth > 0: + callers = inspect.getinnerframes(exc.__traceback__, context=depth) + seen = set() + for i, ff in enumerate(callers[-depth:]): + frm = ff[0] + + f_self = frm.f_locals.get("self", None) + if isinstance(f_self, ParserElement): + if not frm.f_code.co_name.startswith( + ("parseImpl", "_parseNoCache") + ): + continue + if id(f_self) in seen: + continue + seen.add(id(f_self)) + + self_type = type(f_self) + ret.append( + f"{self_type.__module__}.{self_type.__name__} - {f_self}" + ) + + elif f_self is not None: + self_type = type(f_self) + ret.append(f"{self_type.__module__}.{self_type.__name__}") + + else: + code = frm.f_code + if code.co_name in ("wrapper", ""): + continue + + ret.append(code.co_name) + + depth -= 1 + if not depth: + break + + return "\n".join(ret) + + @classmethod + def _from_exception(cls, pe): + """ + internal factory method to simplify creating one type of ParseException + from another - avoids having __init__ signature conflicts among subclasses + """ + return cls(pe.pstr, pe.loc, pe.msg, pe.parser_element) + + @property + def line(self) -> str: + """ + Return the line of text where the exception occurred. + """ + return line(self.loc, self.pstr) + + @property + def lineno(self) -> int: + """ + Return the 1-based line number of text where the exception occurred. + """ + return lineno(self.loc, self.pstr) + + @property + def col(self) -> int: + """ + Return the 1-based column on the line of text where the exception occurred. + """ + return col(self.loc, self.pstr) + + @property + def column(self) -> int: + """ + Return the 1-based column on the line of text where the exception occurred. + """ + return col(self.loc, self.pstr) + + # pre-PEP8 compatibility + @property + def parserElement(self): + return self.parser_element + + @parserElement.setter + def parserElement(self, elem): + self.parser_element = elem + + def __str__(self) -> str: + if self.pstr: + if self.loc >= len(self.pstr): + foundstr = ", found end of text" + else: + # pull out next word at error location + found_match = _exception_word_extractor.match(self.pstr, self.loc) + if found_match is not None: + found = found_match.group(0) + else: + found = self.pstr[self.loc : self.loc + 1] + foundstr = (", found %r" % found).replace(r"\\", "\\") + else: + foundstr = "" + return f"{self.msg}{foundstr} (at char {self.loc}), (line:{self.lineno}, col:{self.column})" + + def __repr__(self): + return str(self) + + def mark_input_line( + self, marker_string: typing.Optional[str] = None, *, markerString: str = ">!<" + ) -> str: + """ + Extracts the exception line from the input string, and marks + the location of the exception with a special symbol. + """ + markerString = marker_string if marker_string is not None else markerString + line_str = self.line + line_column = self.column - 1 + if markerString: + line_str = "".join( + (line_str[:line_column], markerString, line_str[line_column:]) + ) + return line_str.strip() + + def explain(self, depth=16) -> str: + """ + Method to translate the Python internal traceback into a list + of the pyparsing expressions that caused the exception to be raised. + + Parameters: + + - depth (default=16) - number of levels back in the stack trace to list expression + and function names; if None, the full stack trace names will be listed; if 0, only + the failing input line, marker, and exception string will be shown + + Returns a multi-line string listing the ParserElements and/or function names in the + exception's stack trace. + + Example:: + + expr = pp.Word(pp.nums) * 3 + try: + expr.parse_string("123 456 A789") + except pp.ParseException as pe: + print(pe.explain(depth=0)) + + prints:: + + 123 456 A789 + ^ + ParseException: Expected W:(0-9), found 'A' (at char 8), (line:1, col:9) + + Note: the diagnostic output will include string representations of the expressions + that failed to parse. These representations will be more helpful if you use `set_name` to + give identifiable names to your expressions. Otherwise they will use the default string + forms, which may be cryptic to read. + + Note: pyparsing's default truncation of exception tracebacks may also truncate the + stack of expressions that are displayed in the ``explain`` output. To get the full listing + of parser expressions, you may have to set ``ParserElement.verbose_stacktrace = True`` + """ + return self.explain_exception(self, depth) + + # fmt: off + @replaced_by_pep8(mark_input_line) + def markInputline(self): ... + # fmt: on + + +class ParseException(ParseBaseException): + """ + Exception thrown when a parse expression doesn't match the input string + + Example:: + + try: + Word(nums).set_name("integer").parse_string("ABC") + except ParseException as pe: + print(pe) + print("column: {}".format(pe.column)) + + prints:: + + Expected integer (at char 0), (line:1, col:1) + column: 1 + + """ + + +class ParseFatalException(ParseBaseException): + """ + User-throwable exception thrown when inconsistent parse content + is found; stops all parsing immediately + """ + + +class ParseSyntaxException(ParseFatalException): + """ + Just like :class:`ParseFatalException`, but thrown internally + when an :class:`ErrorStop` ('-' operator) indicates + that parsing is to stop immediately because an unbacktrackable + syntax error has been found. + """ + + +class RecursiveGrammarException(Exception): + """ + Exception thrown by :class:`ParserElement.validate` if the + grammar could be left-recursive; parser may need to enable + left recursion using :class:`ParserElement.enable_left_recursion` + """ + + def __init__(self, parseElementList): + self.parseElementTrace = parseElementList + + def __str__(self) -> str: + return f"RecursiveGrammarException: {self.parseElementTrace}" diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/pyparsing/helpers.py b/.venv/lib/python3.11/site-packages/pip/_vendor/pyparsing/helpers.py new file mode 100644 index 0000000..018f0d6 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/pyparsing/helpers.py @@ -0,0 +1,1100 @@ +# helpers.py +import html.entities +import re +import sys +import typing + +from . import __diag__ +from .core import * +from .util import ( + _bslash, + _flatten, + _escape_regex_range_chars, + replaced_by_pep8, +) + + +# +# global helpers +# +def counted_array( + expr: ParserElement, + int_expr: typing.Optional[ParserElement] = None, + *, + intExpr: typing.Optional[ParserElement] = None, +) -> ParserElement: + """Helper to define a counted list of expressions. + + This helper defines a pattern of the form:: + + integer expr expr expr... + + where the leading integer tells how many expr expressions follow. + The matched tokens returns the array of expr tokens as a list - the + leading count token is suppressed. + + If ``int_expr`` is specified, it should be a pyparsing expression + that produces an integer value. + + Example:: + + counted_array(Word(alphas)).parse_string('2 ab cd ef') # -> ['ab', 'cd'] + + # in this parser, the leading integer value is given in binary, + # '10' indicating that 2 values are in the array + binary_constant = Word('01').set_parse_action(lambda t: int(t[0], 2)) + counted_array(Word(alphas), int_expr=binary_constant).parse_string('10 ab cd ef') # -> ['ab', 'cd'] + + # if other fields must be parsed after the count but before the + # list items, give the fields results names and they will + # be preserved in the returned ParseResults: + count_with_metadata = integer + Word(alphas)("type") + typed_array = counted_array(Word(alphanums), int_expr=count_with_metadata)("items") + result = typed_array.parse_string("3 bool True True False") + print(result.dump()) + + # prints + # ['True', 'True', 'False'] + # - items: ['True', 'True', 'False'] + # - type: 'bool' + """ + intExpr = intExpr or int_expr + array_expr = Forward() + + def count_field_parse_action(s, l, t): + nonlocal array_expr + n = t[0] + array_expr <<= (expr * n) if n else Empty() + # clear list contents, but keep any named results + del t[:] + + if intExpr is None: + intExpr = Word(nums).set_parse_action(lambda t: int(t[0])) + else: + intExpr = intExpr.copy() + intExpr.set_name("arrayLen") + intExpr.add_parse_action(count_field_parse_action, call_during_try=True) + return (intExpr + array_expr).set_name("(len) " + str(expr) + "...") + + +def match_previous_literal(expr: ParserElement) -> ParserElement: + """Helper to define an expression that is indirectly defined from + the tokens matched in a previous expression, that is, it looks for + a 'repeat' of a previous expression. For example:: + + first = Word(nums) + second = match_previous_literal(first) + match_expr = first + ":" + second + + will match ``"1:1"``, but not ``"1:2"``. Because this + matches a previous literal, will also match the leading + ``"1:1"`` in ``"1:10"``. If this is not desired, use + :class:`match_previous_expr`. Do *not* use with packrat parsing + enabled. + """ + rep = Forward() + + def copy_token_to_repeater(s, l, t): + if t: + if len(t) == 1: + rep << t[0] + else: + # flatten t tokens + tflat = _flatten(t.as_list()) + rep << And(Literal(tt) for tt in tflat) + else: + rep << Empty() + + expr.add_parse_action(copy_token_to_repeater, callDuringTry=True) + rep.set_name("(prev) " + str(expr)) + return rep + + +def match_previous_expr(expr: ParserElement) -> ParserElement: + """Helper to define an expression that is indirectly defined from + the tokens matched in a previous expression, that is, it looks for + a 'repeat' of a previous expression. For example:: + + first = Word(nums) + second = match_previous_expr(first) + match_expr = first + ":" + second + + will match ``"1:1"``, but not ``"1:2"``. Because this + matches by expressions, will *not* match the leading ``"1:1"`` + in ``"1:10"``; the expressions are evaluated first, and then + compared, so ``"1"`` is compared with ``"10"``. Do *not* use + with packrat parsing enabled. + """ + rep = Forward() + e2 = expr.copy() + rep <<= e2 + + def copy_token_to_repeater(s, l, t): + matchTokens = _flatten(t.as_list()) + + def must_match_these_tokens(s, l, t): + theseTokens = _flatten(t.as_list()) + if theseTokens != matchTokens: + raise ParseException( + s, l, f"Expected {matchTokens}, found{theseTokens}" + ) + + rep.set_parse_action(must_match_these_tokens, callDuringTry=True) + + expr.add_parse_action(copy_token_to_repeater, callDuringTry=True) + rep.set_name("(prev) " + str(expr)) + return rep + + +def one_of( + strs: Union[typing.Iterable[str], str], + caseless: bool = False, + use_regex: bool = True, + as_keyword: bool = False, + *, + useRegex: bool = True, + asKeyword: bool = False, +) -> ParserElement: + """Helper to quickly define a set of alternative :class:`Literal` s, + and makes sure to do longest-first testing when there is a conflict, + regardless of the input order, but returns + a :class:`MatchFirst` for best performance. + + Parameters: + + - ``strs`` - a string of space-delimited literals, or a collection of + string literals + - ``caseless`` - treat all literals as caseless - (default= ``False``) + - ``use_regex`` - as an optimization, will + generate a :class:`Regex` object; otherwise, will generate + a :class:`MatchFirst` object (if ``caseless=True`` or ``as_keyword=True``, or if + creating a :class:`Regex` raises an exception) - (default= ``True``) + - ``as_keyword`` - enforce :class:`Keyword`-style matching on the + generated expressions - (default= ``False``) + - ``asKeyword`` and ``useRegex`` are retained for pre-PEP8 compatibility, + but will be removed in a future release + + Example:: + + comp_oper = one_of("< = > <= >= !=") + var = Word(alphas) + number = Word(nums) + term = var | number + comparison_expr = term + comp_oper + term + print(comparison_expr.search_string("B = 12 AA=23 B<=AA AA>12")) + + prints:: + + [['B', '=', '12'], ['AA', '=', '23'], ['B', '<=', 'AA'], ['AA', '>', '12']] + """ + asKeyword = asKeyword or as_keyword + useRegex = useRegex and use_regex + + if ( + isinstance(caseless, str_type) + and __diag__.warn_on_multiple_string_args_to_oneof + ): + warnings.warn( + "More than one string argument passed to one_of, pass" + " choices as a list or space-delimited string", + stacklevel=2, + ) + + if caseless: + isequal = lambda a, b: a.upper() == b.upper() + masks = lambda a, b: b.upper().startswith(a.upper()) + parseElementClass = CaselessKeyword if asKeyword else CaselessLiteral + else: + isequal = lambda a, b: a == b + masks = lambda a, b: b.startswith(a) + parseElementClass = Keyword if asKeyword else Literal + + symbols: List[str] = [] + if isinstance(strs, str_type): + strs = typing.cast(str, strs) + symbols = strs.split() + elif isinstance(strs, Iterable): + symbols = list(strs) + else: + raise TypeError("Invalid argument to one_of, expected string or iterable") + if not symbols: + return NoMatch() + + # reorder given symbols to take care to avoid masking longer choices with shorter ones + # (but only if the given symbols are not just single characters) + if any(len(sym) > 1 for sym in symbols): + i = 0 + while i < len(symbols) - 1: + cur = symbols[i] + for j, other in enumerate(symbols[i + 1 :]): + if isequal(other, cur): + del symbols[i + j + 1] + break + elif masks(cur, other): + del symbols[i + j + 1] + symbols.insert(i, other) + break + else: + i += 1 + + if useRegex: + re_flags: int = re.IGNORECASE if caseless else 0 + + try: + if all(len(sym) == 1 for sym in symbols): + # symbols are just single characters, create range regex pattern + patt = f"[{''.join(_escape_regex_range_chars(sym) for sym in symbols)}]" + else: + patt = "|".join(re.escape(sym) for sym in symbols) + + # wrap with \b word break markers if defining as keywords + if asKeyword: + patt = rf"\b(?:{patt})\b" + + ret = Regex(patt, flags=re_flags).set_name(" | ".join(symbols)) + + if caseless: + # add parse action to return symbols as specified, not in random + # casing as found in input string + symbol_map = {sym.lower(): sym for sym in symbols} + ret.add_parse_action(lambda s, l, t: symbol_map[t[0].lower()]) + + return ret + + except re.error: + warnings.warn( + "Exception creating Regex for one_of, building MatchFirst", stacklevel=2 + ) + + # last resort, just use MatchFirst + return MatchFirst(parseElementClass(sym) for sym in symbols).set_name( + " | ".join(symbols) + ) + + +def dict_of(key: ParserElement, value: ParserElement) -> ParserElement: + """Helper to easily and clearly define a dictionary by specifying + the respective patterns for the key and value. Takes care of + defining the :class:`Dict`, :class:`ZeroOrMore`, and + :class:`Group` tokens in the proper order. The key pattern + can include delimiting markers or punctuation, as long as they are + suppressed, thereby leaving the significant key text. The value + pattern can include named results, so that the :class:`Dict` results + can include named token fields. + + Example:: + + text = "shape: SQUARE posn: upper left color: light blue texture: burlap" + attr_expr = (label + Suppress(':') + OneOrMore(data_word, stop_on=label).set_parse_action(' '.join)) + print(attr_expr[1, ...].parse_string(text).dump()) + + attr_label = label + attr_value = Suppress(':') + OneOrMore(data_word, stop_on=label).set_parse_action(' '.join) + + # similar to Dict, but simpler call format + result = dict_of(attr_label, attr_value).parse_string(text) + print(result.dump()) + print(result['shape']) + print(result.shape) # object attribute access works too + print(result.as_dict()) + + prints:: + + [['shape', 'SQUARE'], ['posn', 'upper left'], ['color', 'light blue'], ['texture', 'burlap']] + - color: 'light blue' + - posn: 'upper left' + - shape: 'SQUARE' + - texture: 'burlap' + SQUARE + SQUARE + {'color': 'light blue', 'shape': 'SQUARE', 'posn': 'upper left', 'texture': 'burlap'} + """ + return Dict(OneOrMore(Group(key + value))) + + +def original_text_for( + expr: ParserElement, as_string: bool = True, *, asString: bool = True +) -> ParserElement: + """Helper to return the original, untokenized text for a given + expression. Useful to restore the parsed fields of an HTML start + tag into the raw tag text itself, or to revert separate tokens with + intervening whitespace back to the original matching input text. By + default, returns a string containing the original parsed text. + + If the optional ``as_string`` argument is passed as + ``False``, then the return value is + a :class:`ParseResults` containing any results names that + were originally matched, and a single token containing the original + matched text from the input string. So if the expression passed to + :class:`original_text_for` contains expressions with defined + results names, you must set ``as_string`` to ``False`` if you + want to preserve those results name values. + + The ``asString`` pre-PEP8 argument is retained for compatibility, + but will be removed in a future release. + + Example:: + + src = "this is test bold text normal text " + for tag in ("b", "i"): + opener, closer = make_html_tags(tag) + patt = original_text_for(opener + ... + closer) + print(patt.search_string(src)[0]) + + prints:: + + [' bold text '] + ['text'] + """ + asString = asString and as_string + + locMarker = Empty().set_parse_action(lambda s, loc, t: loc) + endlocMarker = locMarker.copy() + endlocMarker.callPreparse = False + matchExpr = locMarker("_original_start") + expr + endlocMarker("_original_end") + if asString: + extractText = lambda s, l, t: s[t._original_start : t._original_end] + else: + + def extractText(s, l, t): + t[:] = [s[t.pop("_original_start") : t.pop("_original_end")]] + + matchExpr.set_parse_action(extractText) + matchExpr.ignoreExprs = expr.ignoreExprs + matchExpr.suppress_warning(Diagnostics.warn_ungrouped_named_tokens_in_collection) + return matchExpr + + +def ungroup(expr: ParserElement) -> ParserElement: + """Helper to undo pyparsing's default grouping of And expressions, + even if all but one are non-empty. + """ + return TokenConverter(expr).add_parse_action(lambda t: t[0]) + + +def locatedExpr(expr: ParserElement) -> ParserElement: + """ + (DEPRECATED - future code should use the :class:`Located` class) + Helper to decorate a returned token with its starting and ending + locations in the input string. + + This helper adds the following results names: + + - ``locn_start`` - location where matched expression begins + - ``locn_end`` - location where matched expression ends + - ``value`` - the actual parsed results + + Be careful if the input text contains ```` characters, you + may want to call :class:`ParserElement.parse_with_tabs` + + Example:: + + wd = Word(alphas) + for match in locatedExpr(wd).search_string("ljsdf123lksdjjf123lkkjj1222"): + print(match) + + prints:: + + [[0, 'ljsdf', 5]] + [[8, 'lksdjjf', 15]] + [[18, 'lkkjj', 23]] + """ + locator = Empty().set_parse_action(lambda ss, ll, tt: ll) + return Group( + locator("locn_start") + + expr("value") + + locator.copy().leaveWhitespace()("locn_end") + ) + + +def nested_expr( + opener: Union[str, ParserElement] = "(", + closer: Union[str, ParserElement] = ")", + content: typing.Optional[ParserElement] = None, + ignore_expr: ParserElement = quoted_string(), + *, + ignoreExpr: ParserElement = quoted_string(), +) -> ParserElement: + """Helper method for defining nested lists enclosed in opening and + closing delimiters (``"("`` and ``")"`` are the default). + + Parameters: + + - ``opener`` - opening character for a nested list + (default= ``"("``); can also be a pyparsing expression + - ``closer`` - closing character for a nested list + (default= ``")"``); can also be a pyparsing expression + - ``content`` - expression for items within the nested lists + (default= ``None``) + - ``ignore_expr`` - expression for ignoring opening and closing delimiters + (default= :class:`quoted_string`) + - ``ignoreExpr`` - this pre-PEP8 argument is retained for compatibility + but will be removed in a future release + + If an expression is not provided for the content argument, the + nested expression will capture all whitespace-delimited content + between delimiters as a list of separate values. + + Use the ``ignore_expr`` argument to define expressions that may + contain opening or closing characters that should not be treated as + opening or closing characters for nesting, such as quoted_string or + a comment expression. Specify multiple expressions using an + :class:`Or` or :class:`MatchFirst`. The default is + :class:`quoted_string`, but if no expressions are to be ignored, then + pass ``None`` for this argument. + + Example:: + + data_type = one_of("void int short long char float double") + decl_data_type = Combine(data_type + Opt(Word('*'))) + ident = Word(alphas+'_', alphanums+'_') + number = pyparsing_common.number + arg = Group(decl_data_type + ident) + LPAR, RPAR = map(Suppress, "()") + + code_body = nested_expr('{', '}', ignore_expr=(quoted_string | c_style_comment)) + + c_function = (decl_data_type("type") + + ident("name") + + LPAR + Opt(DelimitedList(arg), [])("args") + RPAR + + code_body("body")) + c_function.ignore(c_style_comment) + + source_code = ''' + int is_odd(int x) { + return (x%2); + } + + int dec_to_hex(char hchar) { + if (hchar >= '0' && hchar <= '9') { + return (ord(hchar)-ord('0')); + } else { + return (10+ord(hchar)-ord('A')); + } + } + ''' + for func in c_function.search_string(source_code): + print("%(name)s (%(type)s) args: %(args)s" % func) + + + prints:: + + is_odd (int) args: [['int', 'x']] + dec_to_hex (int) args: [['char', 'hchar']] + """ + if ignoreExpr != ignore_expr: + ignoreExpr = ignore_expr if ignoreExpr == quoted_string() else ignoreExpr + if opener == closer: + raise ValueError("opening and closing strings cannot be the same") + if content is None: + if isinstance(opener, str_type) and isinstance(closer, str_type): + opener = typing.cast(str, opener) + closer = typing.cast(str, closer) + if len(opener) == 1 and len(closer) == 1: + if ignoreExpr is not None: + content = Combine( + OneOrMore( + ~ignoreExpr + + CharsNotIn( + opener + closer + ParserElement.DEFAULT_WHITE_CHARS, + exact=1, + ) + ) + ).set_parse_action(lambda t: t[0].strip()) + else: + content = empty.copy() + CharsNotIn( + opener + closer + ParserElement.DEFAULT_WHITE_CHARS + ).set_parse_action(lambda t: t[0].strip()) + else: + if ignoreExpr is not None: + content = Combine( + OneOrMore( + ~ignoreExpr + + ~Literal(opener) + + ~Literal(closer) + + CharsNotIn(ParserElement.DEFAULT_WHITE_CHARS, exact=1) + ) + ).set_parse_action(lambda t: t[0].strip()) + else: + content = Combine( + OneOrMore( + ~Literal(opener) + + ~Literal(closer) + + CharsNotIn(ParserElement.DEFAULT_WHITE_CHARS, exact=1) + ) + ).set_parse_action(lambda t: t[0].strip()) + else: + raise ValueError( + "opening and closing arguments must be strings if no content expression is given" + ) + ret = Forward() + if ignoreExpr is not None: + ret <<= Group( + Suppress(opener) + ZeroOrMore(ignoreExpr | ret | content) + Suppress(closer) + ) + else: + ret <<= Group(Suppress(opener) + ZeroOrMore(ret | content) + Suppress(closer)) + ret.set_name("nested %s%s expression" % (opener, closer)) + return ret + + +def _makeTags(tagStr, xml, suppress_LT=Suppress("<"), suppress_GT=Suppress(">")): + """Internal helper to construct opening and closing tag expressions, given a tag name""" + if isinstance(tagStr, str_type): + resname = tagStr + tagStr = Keyword(tagStr, caseless=not xml) + else: + resname = tagStr.name + + tagAttrName = Word(alphas, alphanums + "_-:") + if xml: + tagAttrValue = dbl_quoted_string.copy().set_parse_action(remove_quotes) + openTag = ( + suppress_LT + + tagStr("tag") + + Dict(ZeroOrMore(Group(tagAttrName + Suppress("=") + tagAttrValue))) + + Opt("/", default=[False])("empty").set_parse_action( + lambda s, l, t: t[0] == "/" + ) + + suppress_GT + ) + else: + tagAttrValue = quoted_string.copy().set_parse_action(remove_quotes) | Word( + printables, exclude_chars=">" + ) + openTag = ( + suppress_LT + + tagStr("tag") + + Dict( + ZeroOrMore( + Group( + tagAttrName.set_parse_action(lambda t: t[0].lower()) + + Opt(Suppress("=") + tagAttrValue) + ) + ) + ) + + Opt("/", default=[False])("empty").set_parse_action( + lambda s, l, t: t[0] == "/" + ) + + suppress_GT + ) + closeTag = Combine(Literal("", adjacent=False) + + openTag.set_name("<%s>" % resname) + # add start results name in parse action now that ungrouped names are not reported at two levels + openTag.add_parse_action( + lambda t: t.__setitem__( + "start" + "".join(resname.replace(":", " ").title().split()), t.copy() + ) + ) + closeTag = closeTag( + "end" + "".join(resname.replace(":", " ").title().split()) + ).set_name("" % resname) + openTag.tag = resname + closeTag.tag = resname + openTag.tag_body = SkipTo(closeTag()) + return openTag, closeTag + + +def make_html_tags( + tag_str: Union[str, ParserElement] +) -> Tuple[ParserElement, ParserElement]: + """Helper to construct opening and closing tag expressions for HTML, + given a tag name. Matches tags in either upper or lower case, + attributes with namespaces and with quoted or unquoted values. + + Example:: + + text = 'More info at the
pyparsing wiki page' + # make_html_tags returns pyparsing expressions for the opening and + # closing tags as a 2-tuple + a, a_end = make_html_tags("A") + link_expr = a + SkipTo(a_end)("link_text") + a_end + + for link in link_expr.search_string(text): + # attributes in the tag (like "href" shown here) are + # also accessible as named results + print(link.link_text, '->', link.href) + + prints:: + + pyparsing -> https://github.com/pyparsing/pyparsing/wiki + """ + return _makeTags(tag_str, False) + + +def make_xml_tags( + tag_str: Union[str, ParserElement] +) -> Tuple[ParserElement, ParserElement]: + """Helper to construct opening and closing tag expressions for XML, + given a tag name. Matches tags only in the given upper/lower case. + + Example: similar to :class:`make_html_tags` + """ + return _makeTags(tag_str, True) + + +any_open_tag: ParserElement +any_close_tag: ParserElement +any_open_tag, any_close_tag = make_html_tags( + Word(alphas, alphanums + "_:").set_name("any tag") +) + +_htmlEntityMap = {k.rstrip(";"): v for k, v in html.entities.html5.items()} +common_html_entity = Regex("&(?P" + "|".join(_htmlEntityMap) + ");").set_name( + "common HTML entity" +) + + +def replace_html_entity(s, l, t): + """Helper parser action to replace common HTML entities with their special characters""" + return _htmlEntityMap.get(t.entity) + + +class OpAssoc(Enum): + """Enumeration of operator associativity + - used in constructing InfixNotationOperatorSpec for :class:`infix_notation`""" + + LEFT = 1 + RIGHT = 2 + + +InfixNotationOperatorArgType = Union[ + ParserElement, str, Tuple[Union[ParserElement, str], Union[ParserElement, str]] +] +InfixNotationOperatorSpec = Union[ + Tuple[ + InfixNotationOperatorArgType, + int, + OpAssoc, + typing.Optional[ParseAction], + ], + Tuple[ + InfixNotationOperatorArgType, + int, + OpAssoc, + ], +] + + +def infix_notation( + base_expr: ParserElement, + op_list: List[InfixNotationOperatorSpec], + lpar: Union[str, ParserElement] = Suppress("("), + rpar: Union[str, ParserElement] = Suppress(")"), +) -> ParserElement: + """Helper method for constructing grammars of expressions made up of + operators working in a precedence hierarchy. Operators may be unary + or binary, left- or right-associative. Parse actions can also be + attached to operator expressions. The generated parser will also + recognize the use of parentheses to override operator precedences + (see example below). + + Note: if you define a deep operator list, you may see performance + issues when using infix_notation. See + :class:`ParserElement.enable_packrat` for a mechanism to potentially + improve your parser performance. + + Parameters: + + - ``base_expr`` - expression representing the most basic operand to + be used in the expression + - ``op_list`` - list of tuples, one for each operator precedence level + in the expression grammar; each tuple is of the form ``(op_expr, + num_operands, right_left_assoc, (optional)parse_action)``, where: + + - ``op_expr`` is the pyparsing expression for the operator; may also + be a string, which will be converted to a Literal; if ``num_operands`` + is 3, ``op_expr`` is a tuple of two expressions, for the two + operators separating the 3 terms + - ``num_operands`` is the number of terms for this operator (must be 1, + 2, or 3) + - ``right_left_assoc`` is the indicator whether the operator is right + or left associative, using the pyparsing-defined constants + ``OpAssoc.RIGHT`` and ``OpAssoc.LEFT``. + - ``parse_action`` is the parse action to be associated with + expressions matching this operator expression (the parse action + tuple member may be omitted); if the parse action is passed + a tuple or list of functions, this is equivalent to calling + ``set_parse_action(*fn)`` + (:class:`ParserElement.set_parse_action`) + - ``lpar`` - expression for matching left-parentheses; if passed as a + str, then will be parsed as ``Suppress(lpar)``. If lpar is passed as + an expression (such as ``Literal('(')``), then it will be kept in + the parsed results, and grouped with them. (default= ``Suppress('(')``) + - ``rpar`` - expression for matching right-parentheses; if passed as a + str, then will be parsed as ``Suppress(rpar)``. If rpar is passed as + an expression (such as ``Literal(')')``), then it will be kept in + the parsed results, and grouped with them. (default= ``Suppress(')')``) + + Example:: + + # simple example of four-function arithmetic with ints and + # variable names + integer = pyparsing_common.signed_integer + varname = pyparsing_common.identifier + + arith_expr = infix_notation(integer | varname, + [ + ('-', 1, OpAssoc.RIGHT), + (one_of('* /'), 2, OpAssoc.LEFT), + (one_of('+ -'), 2, OpAssoc.LEFT), + ]) + + arith_expr.run_tests(''' + 5+3*6 + (5+3)*6 + -2--11 + ''', full_dump=False) + + prints:: + + 5+3*6 + [[5, '+', [3, '*', 6]]] + + (5+3)*6 + [[[5, '+', 3], '*', 6]] + + (5+x)*y + [[[5, '+', 'x'], '*', 'y']] + + -2--11 + [[['-', 2], '-', ['-', 11]]] + """ + + # captive version of FollowedBy that does not do parse actions or capture results names + class _FB(FollowedBy): + def parseImpl(self, instring, loc, doActions=True): + self.expr.try_parse(instring, loc) + return loc, [] + + _FB.__name__ = "FollowedBy>" + + ret = Forward() + if isinstance(lpar, str): + lpar = Suppress(lpar) + if isinstance(rpar, str): + rpar = Suppress(rpar) + + # if lpar and rpar are not suppressed, wrap in group + if not (isinstance(rpar, Suppress) and isinstance(rpar, Suppress)): + lastExpr = base_expr | Group(lpar + ret + rpar) + else: + lastExpr = base_expr | (lpar + ret + rpar) + + arity: int + rightLeftAssoc: opAssoc + pa: typing.Optional[ParseAction] + opExpr1: ParserElement + opExpr2: ParserElement + for i, operDef in enumerate(op_list): + opExpr, arity, rightLeftAssoc, pa = (operDef + (None,))[:4] # type: ignore[assignment] + if isinstance(opExpr, str_type): + opExpr = ParserElement._literalStringClass(opExpr) + opExpr = typing.cast(ParserElement, opExpr) + if arity == 3: + if not isinstance(opExpr, (tuple, list)) or len(opExpr) != 2: + raise ValueError( + "if numterms=3, opExpr must be a tuple or list of two expressions" + ) + opExpr1, opExpr2 = opExpr + term_name = f"{opExpr1}{opExpr2} term" + else: + term_name = f"{opExpr} term" + + if not 1 <= arity <= 3: + raise ValueError("operator must be unary (1), binary (2), or ternary (3)") + + if rightLeftAssoc not in (OpAssoc.LEFT, OpAssoc.RIGHT): + raise ValueError("operator must indicate right or left associativity") + + thisExpr: ParserElement = Forward().set_name(term_name) + thisExpr = typing.cast(Forward, thisExpr) + if rightLeftAssoc is OpAssoc.LEFT: + if arity == 1: + matchExpr = _FB(lastExpr + opExpr) + Group(lastExpr + opExpr[1, ...]) + elif arity == 2: + if opExpr is not None: + matchExpr = _FB(lastExpr + opExpr + lastExpr) + Group( + lastExpr + (opExpr + lastExpr)[1, ...] + ) + else: + matchExpr = _FB(lastExpr + lastExpr) + Group(lastExpr[2, ...]) + elif arity == 3: + matchExpr = _FB( + lastExpr + opExpr1 + lastExpr + opExpr2 + lastExpr + ) + Group(lastExpr + OneOrMore(opExpr1 + lastExpr + opExpr2 + lastExpr)) + elif rightLeftAssoc is OpAssoc.RIGHT: + if arity == 1: + # try to avoid LR with this extra test + if not isinstance(opExpr, Opt): + opExpr = Opt(opExpr) + matchExpr = _FB(opExpr.expr + thisExpr) + Group(opExpr + thisExpr) + elif arity == 2: + if opExpr is not None: + matchExpr = _FB(lastExpr + opExpr + thisExpr) + Group( + lastExpr + (opExpr + thisExpr)[1, ...] + ) + else: + matchExpr = _FB(lastExpr + thisExpr) + Group( + lastExpr + thisExpr[1, ...] + ) + elif arity == 3: + matchExpr = _FB( + lastExpr + opExpr1 + thisExpr + opExpr2 + thisExpr + ) + Group(lastExpr + opExpr1 + thisExpr + opExpr2 + thisExpr) + if pa: + if isinstance(pa, (tuple, list)): + matchExpr.set_parse_action(*pa) + else: + matchExpr.set_parse_action(pa) + thisExpr <<= (matchExpr | lastExpr).setName(term_name) + lastExpr = thisExpr + ret <<= lastExpr + return ret + + +def indentedBlock(blockStatementExpr, indentStack, indent=True, backup_stacks=[]): + """ + (DEPRECATED - use :class:`IndentedBlock` class instead) + Helper method for defining space-delimited indentation blocks, + such as those used to define block statements in Python source code. + + Parameters: + + - ``blockStatementExpr`` - expression defining syntax of statement that + is repeated within the indented block + - ``indentStack`` - list created by caller to manage indentation stack + (multiple ``statementWithIndentedBlock`` expressions within a single + grammar should share a common ``indentStack``) + - ``indent`` - boolean indicating whether block must be indented beyond + the current level; set to ``False`` for block of left-most statements + (default= ``True``) + + A valid block must contain at least one ``blockStatement``. + + (Note that indentedBlock uses internal parse actions which make it + incompatible with packrat parsing.) + + Example:: + + data = ''' + def A(z): + A1 + B = 100 + G = A2 + A2 + A3 + B + def BB(a,b,c): + BB1 + def BBA(): + bba1 + bba2 + bba3 + C + D + def spam(x,y): + def eggs(z): + pass + ''' + + + indentStack = [1] + stmt = Forward() + + identifier = Word(alphas, alphanums) + funcDecl = ("def" + identifier + Group("(" + Opt(delimitedList(identifier)) + ")") + ":") + func_body = indentedBlock(stmt, indentStack) + funcDef = Group(funcDecl + func_body) + + rvalue = Forward() + funcCall = Group(identifier + "(" + Opt(delimitedList(rvalue)) + ")") + rvalue << (funcCall | identifier | Word(nums)) + assignment = Group(identifier + "=" + rvalue) + stmt << (funcDef | assignment | identifier) + + module_body = stmt[1, ...] + + parseTree = module_body.parseString(data) + parseTree.pprint() + + prints:: + + [['def', + 'A', + ['(', 'z', ')'], + ':', + [['A1'], [['B', '=', '100']], [['G', '=', 'A2']], ['A2'], ['A3']]], + 'B', + ['def', + 'BB', + ['(', 'a', 'b', 'c', ')'], + ':', + [['BB1'], [['def', 'BBA', ['(', ')'], ':', [['bba1'], ['bba2'], ['bba3']]]]]], + 'C', + 'D', + ['def', + 'spam', + ['(', 'x', 'y', ')'], + ':', + [[['def', 'eggs', ['(', 'z', ')'], ':', [['pass']]]]]]] + """ + backup_stacks.append(indentStack[:]) + + def reset_stack(): + indentStack[:] = backup_stacks[-1] + + def checkPeerIndent(s, l, t): + if l >= len(s): + return + curCol = col(l, s) + if curCol != indentStack[-1]: + if curCol > indentStack[-1]: + raise ParseException(s, l, "illegal nesting") + raise ParseException(s, l, "not a peer entry") + + def checkSubIndent(s, l, t): + curCol = col(l, s) + if curCol > indentStack[-1]: + indentStack.append(curCol) + else: + raise ParseException(s, l, "not a subentry") + + def checkUnindent(s, l, t): + if l >= len(s): + return + curCol = col(l, s) + if not (indentStack and curCol in indentStack): + raise ParseException(s, l, "not an unindent") + if curCol < indentStack[-1]: + indentStack.pop() + + NL = OneOrMore(LineEnd().set_whitespace_chars("\t ").suppress()) + INDENT = (Empty() + Empty().set_parse_action(checkSubIndent)).set_name("INDENT") + PEER = Empty().set_parse_action(checkPeerIndent).set_name("") + UNDENT = Empty().set_parse_action(checkUnindent).set_name("UNINDENT") + if indent: + smExpr = Group( + Opt(NL) + + INDENT + + OneOrMore(PEER + Group(blockStatementExpr) + Opt(NL)) + + UNDENT + ) + else: + smExpr = Group( + Opt(NL) + + OneOrMore(PEER + Group(blockStatementExpr) + Opt(NL)) + + Opt(UNDENT) + ) + + # add a parse action to remove backup_stack from list of backups + smExpr.add_parse_action( + lambda: backup_stacks.pop(-1) and None if backup_stacks else None + ) + smExpr.set_fail_action(lambda a, b, c, d: reset_stack()) + blockStatementExpr.ignore(_bslash + LineEnd()) + return smExpr.set_name("indented block") + + +# it's easy to get these comment structures wrong - they're very common, so may as well make them available +c_style_comment = Combine(Regex(r"/\*(?:[^*]|\*(?!/))*") + "*/").set_name( + "C style comment" +) +"Comment of the form ``/* ... */``" + +html_comment = Regex(r"").set_name("HTML comment") +"Comment of the form ````" + +rest_of_line = Regex(r".*").leave_whitespace().set_name("rest of line") +dbl_slash_comment = Regex(r"//(?:\\\n|[^\n])*").set_name("// comment") +"Comment of the form ``// ... (to end of line)``" + +cpp_style_comment = Combine( + Regex(r"/\*(?:[^*]|\*(?!/))*") + "*/" | dbl_slash_comment +).set_name("C++ style comment") +"Comment of either form :class:`c_style_comment` or :class:`dbl_slash_comment`" + +java_style_comment = cpp_style_comment +"Same as :class:`cpp_style_comment`" + +python_style_comment = Regex(r"#.*").set_name("Python style comment") +"Comment of the form ``# ... (to end of line)``" + + +# build list of built-in expressions, for future reference if a global default value +# gets updated +_builtin_exprs: List[ParserElement] = [ + v for v in vars().values() if isinstance(v, ParserElement) +] + + +# compatibility function, superseded by DelimitedList class +def delimited_list( + expr: Union[str, ParserElement], + delim: Union[str, ParserElement] = ",", + combine: bool = False, + min: typing.Optional[int] = None, + max: typing.Optional[int] = None, + *, + allow_trailing_delim: bool = False, +) -> ParserElement: + """(DEPRECATED - use :class:`DelimitedList` class)""" + return DelimitedList( + expr, delim, combine, min, max, allow_trailing_delim=allow_trailing_delim + ) + + +# pre-PEP8 compatible names +# fmt: off +opAssoc = OpAssoc +anyOpenTag = any_open_tag +anyCloseTag = any_close_tag +commonHTMLEntity = common_html_entity +cStyleComment = c_style_comment +htmlComment = html_comment +restOfLine = rest_of_line +dblSlashComment = dbl_slash_comment +cppStyleComment = cpp_style_comment +javaStyleComment = java_style_comment +pythonStyleComment = python_style_comment + +@replaced_by_pep8(DelimitedList) +def delimitedList(): ... + +@replaced_by_pep8(DelimitedList) +def delimited_list(): ... + +@replaced_by_pep8(counted_array) +def countedArray(): ... + +@replaced_by_pep8(match_previous_literal) +def matchPreviousLiteral(): ... + +@replaced_by_pep8(match_previous_expr) +def matchPreviousExpr(): ... + +@replaced_by_pep8(one_of) +def oneOf(): ... + +@replaced_by_pep8(dict_of) +def dictOf(): ... + +@replaced_by_pep8(original_text_for) +def originalTextFor(): ... + +@replaced_by_pep8(nested_expr) +def nestedExpr(): ... + +@replaced_by_pep8(make_html_tags) +def makeHTMLTags(): ... + +@replaced_by_pep8(make_xml_tags) +def makeXMLTags(): ... + +@replaced_by_pep8(replace_html_entity) +def replaceHTMLEntity(): ... + +@replaced_by_pep8(infix_notation) +def infixNotation(): ... +# fmt: on diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/pyparsing/py.typed b/.venv/lib/python3.11/site-packages/pip/_vendor/pyparsing/py.typed new file mode 100644 index 0000000..e69de29 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/pyparsing/results.py b/.venv/lib/python3.11/site-packages/pip/_vendor/pyparsing/results.py new file mode 100644 index 0000000..0313049 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/pyparsing/results.py @@ -0,0 +1,796 @@ +# results.py +from collections.abc import ( + MutableMapping, + Mapping, + MutableSequence, + Iterator, + Sequence, + Container, +) +import pprint +from typing import Tuple, Any, Dict, Set, List + +str_type: Tuple[type, ...] = (str, bytes) +_generator_type = type((_ for _ in ())) + + +class _ParseResultsWithOffset: + tup: Tuple["ParseResults", int] + __slots__ = ["tup"] + + def __init__(self, p1: "ParseResults", p2: int): + self.tup: Tuple[ParseResults, int] = (p1, p2) + + def __getitem__(self, i): + return self.tup[i] + + def __getstate__(self): + return self.tup + + def __setstate__(self, *args): + self.tup = args[0] + + +class ParseResults: + """Structured parse results, to provide multiple means of access to + the parsed data: + + - as a list (``len(results)``) + - by list index (``results[0], results[1]``, etc.) + - by attribute (``results.`` - see :class:`ParserElement.set_results_name`) + + Example:: + + integer = Word(nums) + date_str = (integer.set_results_name("year") + '/' + + integer.set_results_name("month") + '/' + + integer.set_results_name("day")) + # equivalent form: + # date_str = (integer("year") + '/' + # + integer("month") + '/' + # + integer("day")) + + # parse_string returns a ParseResults object + result = date_str.parse_string("1999/12/31") + + def test(s, fn=repr): + print(f"{s} -> {fn(eval(s))}") + test("list(result)") + test("result[0]") + test("result['month']") + test("result.day") + test("'month' in result") + test("'minutes' in result") + test("result.dump()", str) + + prints:: + + list(result) -> ['1999', '/', '12', '/', '31'] + result[0] -> '1999' + result['month'] -> '12' + result.day -> '31' + 'month' in result -> True + 'minutes' in result -> False + result.dump() -> ['1999', '/', '12', '/', '31'] + - day: '31' + - month: '12' + - year: '1999' + """ + + _null_values: Tuple[Any, ...] = (None, [], ()) + + _name: str + _parent: "ParseResults" + _all_names: Set[str] + _modal: bool + _toklist: List[Any] + _tokdict: Dict[str, Any] + + __slots__ = ( + "_name", + "_parent", + "_all_names", + "_modal", + "_toklist", + "_tokdict", + ) + + class List(list): + """ + Simple wrapper class to distinguish parsed list results that should be preserved + as actual Python lists, instead of being converted to :class:`ParseResults`:: + + LBRACK, RBRACK = map(pp.Suppress, "[]") + element = pp.Forward() + item = ppc.integer + element_list = LBRACK + pp.DelimitedList(element) + RBRACK + + # add parse actions to convert from ParseResults to actual Python collection types + def as_python_list(t): + return pp.ParseResults.List(t.as_list()) + element_list.add_parse_action(as_python_list) + + element <<= item | element_list + + element.run_tests(''' + 100 + [2,3,4] + [[2, 1],3,4] + [(2, 1),3,4] + (2,3,4) + ''', post_parse=lambda s, r: (r[0], type(r[0]))) + + prints:: + + 100 + (100, ) + + [2,3,4] + ([2, 3, 4], ) + + [[2, 1],3,4] + ([[2, 1], 3, 4], ) + + (Used internally by :class:`Group` when `aslist=True`.) + """ + + def __new__(cls, contained=None): + if contained is None: + contained = [] + + if not isinstance(contained, list): + raise TypeError( + f"{cls.__name__} may only be constructed with a list, not {type(contained).__name__}" + ) + + return list.__new__(cls) + + def __new__(cls, toklist=None, name=None, **kwargs): + if isinstance(toklist, ParseResults): + return toklist + self = object.__new__(cls) + self._name = None + self._parent = None + self._all_names = set() + + if toklist is None: + self._toklist = [] + elif isinstance(toklist, (list, _generator_type)): + self._toklist = ( + [toklist[:]] + if isinstance(toklist, ParseResults.List) + else list(toklist) + ) + else: + self._toklist = [toklist] + self._tokdict = dict() + return self + + # Performance tuning: we construct a *lot* of these, so keep this + # constructor as small and fast as possible + def __init__( + self, toklist=None, name=None, asList=True, modal=True, isinstance=isinstance + ): + self._tokdict: Dict[str, _ParseResultsWithOffset] + self._modal = modal + if name is not None and name != "": + if isinstance(name, int): + name = str(name) + if not modal: + self._all_names = {name} + self._name = name + if toklist not in self._null_values: + if isinstance(toklist, (str_type, type)): + toklist = [toklist] + if asList: + if isinstance(toklist, ParseResults): + self[name] = _ParseResultsWithOffset( + ParseResults(toklist._toklist), 0 + ) + else: + self[name] = _ParseResultsWithOffset( + ParseResults(toklist[0]), 0 + ) + self[name]._name = name + else: + try: + self[name] = toklist[0] + except (KeyError, TypeError, IndexError): + if toklist is not self: + self[name] = toklist + else: + self._name = name + + def __getitem__(self, i): + if isinstance(i, (int, slice)): + return self._toklist[i] + else: + if i not in self._all_names: + return self._tokdict[i][-1][0] + else: + return ParseResults([v[0] for v in self._tokdict[i]]) + + def __setitem__(self, k, v, isinstance=isinstance): + if isinstance(v, _ParseResultsWithOffset): + self._tokdict[k] = self._tokdict.get(k, list()) + [v] + sub = v[0] + elif isinstance(k, (int, slice)): + self._toklist[k] = v + sub = v + else: + self._tokdict[k] = self._tokdict.get(k, list()) + [ + _ParseResultsWithOffset(v, 0) + ] + sub = v + if isinstance(sub, ParseResults): + sub._parent = self + + def __delitem__(self, i): + if isinstance(i, (int, slice)): + mylen = len(self._toklist) + del self._toklist[i] + + # convert int to slice + if isinstance(i, int): + if i < 0: + i += mylen + i = slice(i, i + 1) + # get removed indices + removed = list(range(*i.indices(mylen))) + removed.reverse() + # fixup indices in token dictionary + for name, occurrences in self._tokdict.items(): + for j in removed: + for k, (value, position) in enumerate(occurrences): + occurrences[k] = _ParseResultsWithOffset( + value, position - (position > j) + ) + else: + del self._tokdict[i] + + def __contains__(self, k) -> bool: + return k in self._tokdict + + def __len__(self) -> int: + return len(self._toklist) + + def __bool__(self) -> bool: + return not not (self._toklist or self._tokdict) + + def __iter__(self) -> Iterator: + return iter(self._toklist) + + def __reversed__(self) -> Iterator: + return iter(self._toklist[::-1]) + + def keys(self): + return iter(self._tokdict) + + def values(self): + return (self[k] for k in self.keys()) + + def items(self): + return ((k, self[k]) for k in self.keys()) + + def haskeys(self) -> bool: + """ + Since ``keys()`` returns an iterator, this method is helpful in bypassing + code that looks for the existence of any defined results names.""" + return not not self._tokdict + + def pop(self, *args, **kwargs): + """ + Removes and returns item at specified index (default= ``last``). + Supports both ``list`` and ``dict`` semantics for ``pop()``. If + passed no argument or an integer argument, it will use ``list`` + semantics and pop tokens from the list of parsed tokens. If passed + a non-integer argument (most likely a string), it will use ``dict`` + semantics and pop the corresponding value from any defined results + names. A second default return value argument is supported, just as in + ``dict.pop()``. + + Example:: + + numlist = Word(nums)[...] + print(numlist.parse_string("0 123 321")) # -> ['0', '123', '321'] + + def remove_first(tokens): + tokens.pop(0) + numlist.add_parse_action(remove_first) + print(numlist.parse_string("0 123 321")) # -> ['123', '321'] + + label = Word(alphas) + patt = label("LABEL") + Word(nums)[1, ...] + print(patt.parse_string("AAB 123 321").dump()) + + # Use pop() in a parse action to remove named result (note that corresponding value is not + # removed from list form of results) + def remove_LABEL(tokens): + tokens.pop("LABEL") + return tokens + patt.add_parse_action(remove_LABEL) + print(patt.parse_string("AAB 123 321").dump()) + + prints:: + + ['AAB', '123', '321'] + - LABEL: 'AAB' + + ['AAB', '123', '321'] + """ + if not args: + args = [-1] + for k, v in kwargs.items(): + if k == "default": + args = (args[0], v) + else: + raise TypeError(f"pop() got an unexpected keyword argument {k!r}") + if isinstance(args[0], int) or len(args) == 1 or args[0] in self: + index = args[0] + ret = self[index] + del self[index] + return ret + else: + defaultvalue = args[1] + return defaultvalue + + def get(self, key, default_value=None): + """ + Returns named result matching the given key, or if there is no + such name, then returns the given ``default_value`` or ``None`` if no + ``default_value`` is specified. + + Similar to ``dict.get()``. + + Example:: + + integer = Word(nums) + date_str = integer("year") + '/' + integer("month") + '/' + integer("day") + + result = date_str.parse_string("1999/12/31") + print(result.get("year")) # -> '1999' + print(result.get("hour", "not specified")) # -> 'not specified' + print(result.get("hour")) # -> None + """ + if key in self: + return self[key] + else: + return default_value + + def insert(self, index, ins_string): + """ + Inserts new element at location index in the list of parsed tokens. + + Similar to ``list.insert()``. + + Example:: + + numlist = Word(nums)[...] + print(numlist.parse_string("0 123 321")) # -> ['0', '123', '321'] + + # use a parse action to insert the parse location in the front of the parsed results + def insert_locn(locn, tokens): + tokens.insert(0, locn) + numlist.add_parse_action(insert_locn) + print(numlist.parse_string("0 123 321")) # -> [0, '0', '123', '321'] + """ + self._toklist.insert(index, ins_string) + # fixup indices in token dictionary + for name, occurrences in self._tokdict.items(): + for k, (value, position) in enumerate(occurrences): + occurrences[k] = _ParseResultsWithOffset( + value, position + (position > index) + ) + + def append(self, item): + """ + Add single element to end of ``ParseResults`` list of elements. + + Example:: + + numlist = Word(nums)[...] + print(numlist.parse_string("0 123 321")) # -> ['0', '123', '321'] + + # use a parse action to compute the sum of the parsed integers, and add it to the end + def append_sum(tokens): + tokens.append(sum(map(int, tokens))) + numlist.add_parse_action(append_sum) + print(numlist.parse_string("0 123 321")) # -> ['0', '123', '321', 444] + """ + self._toklist.append(item) + + def extend(self, itemseq): + """ + Add sequence of elements to end of ``ParseResults`` list of elements. + + Example:: + + patt = Word(alphas)[1, ...] + + # use a parse action to append the reverse of the matched strings, to make a palindrome + def make_palindrome(tokens): + tokens.extend(reversed([t[::-1] for t in tokens])) + return ''.join(tokens) + patt.add_parse_action(make_palindrome) + print(patt.parse_string("lskdj sdlkjf lksd")) # -> 'lskdjsdlkjflksddsklfjkldsjdksl' + """ + if isinstance(itemseq, ParseResults): + self.__iadd__(itemseq) + else: + self._toklist.extend(itemseq) + + def clear(self): + """ + Clear all elements and results names. + """ + del self._toklist[:] + self._tokdict.clear() + + def __getattr__(self, name): + try: + return self[name] + except KeyError: + if name.startswith("__"): + raise AttributeError(name) + return "" + + def __add__(self, other: "ParseResults") -> "ParseResults": + ret = self.copy() + ret += other + return ret + + def __iadd__(self, other: "ParseResults") -> "ParseResults": + if not other: + return self + + if other._tokdict: + offset = len(self._toklist) + addoffset = lambda a: offset if a < 0 else a + offset + otheritems = other._tokdict.items() + otherdictitems = [ + (k, _ParseResultsWithOffset(v[0], addoffset(v[1]))) + for k, vlist in otheritems + for v in vlist + ] + for k, v in otherdictitems: + self[k] = v + if isinstance(v[0], ParseResults): + v[0]._parent = self + + self._toklist += other._toklist + self._all_names |= other._all_names + return self + + def __radd__(self, other) -> "ParseResults": + if isinstance(other, int) and other == 0: + # useful for merging many ParseResults using sum() builtin + return self.copy() + else: + # this may raise a TypeError - so be it + return other + self + + def __repr__(self) -> str: + return f"{type(self).__name__}({self._toklist!r}, {self.as_dict()})" + + def __str__(self) -> str: + return ( + "[" + + ", ".join( + [ + str(i) if isinstance(i, ParseResults) else repr(i) + for i in self._toklist + ] + ) + + "]" + ) + + def _asStringList(self, sep=""): + out = [] + for item in self._toklist: + if out and sep: + out.append(sep) + if isinstance(item, ParseResults): + out += item._asStringList() + else: + out.append(str(item)) + return out + + def as_list(self) -> list: + """ + Returns the parse results as a nested list of matching tokens, all converted to strings. + + Example:: + + patt = Word(alphas)[1, ...] + result = patt.parse_string("sldkj lsdkj sldkj") + # even though the result prints in string-like form, it is actually a pyparsing ParseResults + print(type(result), result) # -> ['sldkj', 'lsdkj', 'sldkj'] + + # Use as_list() to create an actual list + result_list = result.as_list() + print(type(result_list), result_list) # -> ['sldkj', 'lsdkj', 'sldkj'] + """ + return [ + res.as_list() if isinstance(res, ParseResults) else res + for res in self._toklist + ] + + def as_dict(self) -> dict: + """ + Returns the named parse results as a nested dictionary. + + Example:: + + integer = Word(nums) + date_str = integer("year") + '/' + integer("month") + '/' + integer("day") + + result = date_str.parse_string('12/31/1999') + print(type(result), repr(result)) # -> (['12', '/', '31', '/', '1999'], {'day': [('1999', 4)], 'year': [('12', 0)], 'month': [('31', 2)]}) + + result_dict = result.as_dict() + print(type(result_dict), repr(result_dict)) # -> {'day': '1999', 'year': '12', 'month': '31'} + + # even though a ParseResults supports dict-like access, sometime you just need to have a dict + import json + print(json.dumps(result)) # -> Exception: TypeError: ... is not JSON serializable + print(json.dumps(result.as_dict())) # -> {"month": "31", "day": "1999", "year": "12"} + """ + + def to_item(obj): + if isinstance(obj, ParseResults): + return obj.as_dict() if obj.haskeys() else [to_item(v) for v in obj] + else: + return obj + + return dict((k, to_item(v)) for k, v in self.items()) + + def copy(self) -> "ParseResults": + """ + Returns a new shallow copy of a :class:`ParseResults` object. `ParseResults` + items contained within the source are shared with the copy. Use + :class:`ParseResults.deepcopy()` to create a copy with its own separate + content values. + """ + ret = ParseResults(self._toklist) + ret._tokdict = self._tokdict.copy() + ret._parent = self._parent + ret._all_names |= self._all_names + ret._name = self._name + return ret + + def deepcopy(self) -> "ParseResults": + """ + Returns a new deep copy of a :class:`ParseResults` object. + """ + ret = self.copy() + # replace values with copies if they are of known mutable types + for i, obj in enumerate(self._toklist): + if isinstance(obj, ParseResults): + self._toklist[i] = obj.deepcopy() + elif isinstance(obj, (str, bytes)): + pass + elif isinstance(obj, MutableMapping): + self._toklist[i] = dest = type(obj)() + for k, v in obj.items(): + dest[k] = v.deepcopy() if isinstance(v, ParseResults) else v + elif isinstance(obj, Container): + self._toklist[i] = type(obj)( + v.deepcopy() if isinstance(v, ParseResults) else v for v in obj + ) + return ret + + def get_name(self): + r""" + Returns the results name for this token expression. Useful when several + different expressions might match at a particular location. + + Example:: + + integer = Word(nums) + ssn_expr = Regex(r"\d\d\d-\d\d-\d\d\d\d") + house_number_expr = Suppress('#') + Word(nums, alphanums) + user_data = (Group(house_number_expr)("house_number") + | Group(ssn_expr)("ssn") + | Group(integer)("age")) + user_info = user_data[1, ...] + + result = user_info.parse_string("22 111-22-3333 #221B") + for item in result: + print(item.get_name(), ':', item[0]) + + prints:: + + age : 22 + ssn : 111-22-3333 + house_number : 221B + """ + if self._name: + return self._name + elif self._parent: + par: "ParseResults" = self._parent + parent_tokdict_items = par._tokdict.items() + return next( + ( + k + for k, vlist in parent_tokdict_items + for v, loc in vlist + if v is self + ), + None, + ) + elif ( + len(self) == 1 + and len(self._tokdict) == 1 + and next(iter(self._tokdict.values()))[0][1] in (0, -1) + ): + return next(iter(self._tokdict.keys())) + else: + return None + + def dump(self, indent="", full=True, include_list=True, _depth=0) -> str: + """ + Diagnostic method for listing out the contents of + a :class:`ParseResults`. Accepts an optional ``indent`` argument so + that this string can be embedded in a nested display of other data. + + Example:: + + integer = Word(nums) + date_str = integer("year") + '/' + integer("month") + '/' + integer("day") + + result = date_str.parse_string('1999/12/31') + print(result.dump()) + + prints:: + + ['1999', '/', '12', '/', '31'] + - day: '31' + - month: '12' + - year: '1999' + """ + out = [] + NL = "\n" + out.append(indent + str(self.as_list()) if include_list else "") + + if full: + if self.haskeys(): + items = sorted((str(k), v) for k, v in self.items()) + for k, v in items: + if out: + out.append(NL) + out.append(f"{indent}{(' ' * _depth)}- {k}: ") + if isinstance(v, ParseResults): + if v: + out.append( + v.dump( + indent=indent, + full=full, + include_list=include_list, + _depth=_depth + 1, + ) + ) + else: + out.append(str(v)) + else: + out.append(repr(v)) + if any(isinstance(vv, ParseResults) for vv in self): + v = self + for i, vv in enumerate(v): + if isinstance(vv, ParseResults): + out.append( + "\n{}{}[{}]:\n{}{}{}".format( + indent, + (" " * (_depth)), + i, + indent, + (" " * (_depth + 1)), + vv.dump( + indent=indent, + full=full, + include_list=include_list, + _depth=_depth + 1, + ), + ) + ) + else: + out.append( + "\n%s%s[%d]:\n%s%s%s" + % ( + indent, + (" " * (_depth)), + i, + indent, + (" " * (_depth + 1)), + str(vv), + ) + ) + + return "".join(out) + + def pprint(self, *args, **kwargs): + """ + Pretty-printer for parsed results as a list, using the + `pprint `_ module. + Accepts additional positional or keyword args as defined for + `pprint.pprint `_ . + + Example:: + + ident = Word(alphas, alphanums) + num = Word(nums) + func = Forward() + term = ident | num | Group('(' + func + ')') + func <<= ident + Group(Optional(DelimitedList(term))) + result = func.parse_string("fna a,b,(fnb c,d,200),100") + result.pprint(width=40) + + prints:: + + ['fna', + ['a', + 'b', + ['(', 'fnb', ['c', 'd', '200'], ')'], + '100']] + """ + pprint.pprint(self.as_list(), *args, **kwargs) + + # add support for pickle protocol + def __getstate__(self): + return ( + self._toklist, + ( + self._tokdict.copy(), + None, + self._all_names, + self._name, + ), + ) + + def __setstate__(self, state): + self._toklist, (self._tokdict, par, inAccumNames, self._name) = state + self._all_names = set(inAccumNames) + self._parent = None + + def __getnewargs__(self): + return self._toklist, self._name + + def __dir__(self): + return dir(type(self)) + list(self.keys()) + + @classmethod + def from_dict(cls, other, name=None) -> "ParseResults": + """ + Helper classmethod to construct a ``ParseResults`` from a ``dict``, preserving the + name-value relations as results names. If an optional ``name`` argument is + given, a nested ``ParseResults`` will be returned. + """ + + def is_iterable(obj): + try: + iter(obj) + except Exception: + return False + # str's are iterable, but in pyparsing, we don't want to iterate over them + else: + return not isinstance(obj, str_type) + + ret = cls([]) + for k, v in other.items(): + if isinstance(v, Mapping): + ret += cls.from_dict(v, name=k) + else: + ret += cls([v], name=k, asList=is_iterable(v)) + if name is not None: + ret = cls([ret], name=name) + return ret + + asList = as_list + """Deprecated - use :class:`as_list`""" + asDict = as_dict + """Deprecated - use :class:`as_dict`""" + getName = get_name + """Deprecated - use :class:`get_name`""" + + +MutableMapping.register(ParseResults) +MutableSequence.register(ParseResults) diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/pyparsing/testing.py b/.venv/lib/python3.11/site-packages/pip/_vendor/pyparsing/testing.py new file mode 100644 index 0000000..6a254c1 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/pyparsing/testing.py @@ -0,0 +1,331 @@ +# testing.py + +from contextlib import contextmanager +import typing + +from .core import ( + ParserElement, + ParseException, + Keyword, + __diag__, + __compat__, +) + + +class pyparsing_test: + """ + namespace class for classes useful in writing unit tests + """ + + class reset_pyparsing_context: + """ + Context manager to be used when writing unit tests that modify pyparsing config values: + - packrat parsing + - bounded recursion parsing + - default whitespace characters. + - default keyword characters + - literal string auto-conversion class + - __diag__ settings + + Example:: + + with reset_pyparsing_context(): + # test that literals used to construct a grammar are automatically suppressed + ParserElement.inlineLiteralsUsing(Suppress) + + term = Word(alphas) | Word(nums) + group = Group('(' + term[...] + ')') + + # assert that the '()' characters are not included in the parsed tokens + self.assertParseAndCheckList(group, "(abc 123 def)", ['abc', '123', 'def']) + + # after exiting context manager, literals are converted to Literal expressions again + """ + + def __init__(self): + self._save_context = {} + + def save(self): + self._save_context["default_whitespace"] = ParserElement.DEFAULT_WHITE_CHARS + self._save_context["default_keyword_chars"] = Keyword.DEFAULT_KEYWORD_CHARS + + self._save_context[ + "literal_string_class" + ] = ParserElement._literalStringClass + + self._save_context["verbose_stacktrace"] = ParserElement.verbose_stacktrace + + self._save_context["packrat_enabled"] = ParserElement._packratEnabled + if ParserElement._packratEnabled: + self._save_context[ + "packrat_cache_size" + ] = ParserElement.packrat_cache.size + else: + self._save_context["packrat_cache_size"] = None + self._save_context["packrat_parse"] = ParserElement._parse + self._save_context[ + "recursion_enabled" + ] = ParserElement._left_recursion_enabled + + self._save_context["__diag__"] = { + name: getattr(__diag__, name) for name in __diag__._all_names + } + + self._save_context["__compat__"] = { + "collect_all_And_tokens": __compat__.collect_all_And_tokens + } + + return self + + def restore(self): + # reset pyparsing global state + if ( + ParserElement.DEFAULT_WHITE_CHARS + != self._save_context["default_whitespace"] + ): + ParserElement.set_default_whitespace_chars( + self._save_context["default_whitespace"] + ) + + ParserElement.verbose_stacktrace = self._save_context["verbose_stacktrace"] + + Keyword.DEFAULT_KEYWORD_CHARS = self._save_context["default_keyword_chars"] + ParserElement.inlineLiteralsUsing( + self._save_context["literal_string_class"] + ) + + for name, value in self._save_context["__diag__"].items(): + (__diag__.enable if value else __diag__.disable)(name) + + ParserElement._packratEnabled = False + if self._save_context["packrat_enabled"]: + ParserElement.enable_packrat(self._save_context["packrat_cache_size"]) + else: + ParserElement._parse = self._save_context["packrat_parse"] + ParserElement._left_recursion_enabled = self._save_context[ + "recursion_enabled" + ] + + __compat__.collect_all_And_tokens = self._save_context["__compat__"] + + return self + + def copy(self): + ret = type(self)() + ret._save_context.update(self._save_context) + return ret + + def __enter__(self): + return self.save() + + def __exit__(self, *args): + self.restore() + + class TestParseResultsAsserts: + """ + A mixin class to add parse results assertion methods to normal unittest.TestCase classes. + """ + + def assertParseResultsEquals( + self, result, expected_list=None, expected_dict=None, msg=None + ): + """ + Unit test assertion to compare a :class:`ParseResults` object with an optional ``expected_list``, + and compare any defined results names with an optional ``expected_dict``. + """ + if expected_list is not None: + self.assertEqual(expected_list, result.as_list(), msg=msg) + if expected_dict is not None: + self.assertEqual(expected_dict, result.as_dict(), msg=msg) + + def assertParseAndCheckList( + self, expr, test_string, expected_list, msg=None, verbose=True + ): + """ + Convenience wrapper assert to test a parser element and input string, and assert that + the resulting ``ParseResults.asList()`` is equal to the ``expected_list``. + """ + result = expr.parse_string(test_string, parse_all=True) + if verbose: + print(result.dump()) + else: + print(result.as_list()) + self.assertParseResultsEquals(result, expected_list=expected_list, msg=msg) + + def assertParseAndCheckDict( + self, expr, test_string, expected_dict, msg=None, verbose=True + ): + """ + Convenience wrapper assert to test a parser element and input string, and assert that + the resulting ``ParseResults.asDict()`` is equal to the ``expected_dict``. + """ + result = expr.parse_string(test_string, parseAll=True) + if verbose: + print(result.dump()) + else: + print(result.as_list()) + self.assertParseResultsEquals(result, expected_dict=expected_dict, msg=msg) + + def assertRunTestResults( + self, run_tests_report, expected_parse_results=None, msg=None + ): + """ + Unit test assertion to evaluate output of ``ParserElement.runTests()``. If a list of + list-dict tuples is given as the ``expected_parse_results`` argument, then these are zipped + with the report tuples returned by ``runTests`` and evaluated using ``assertParseResultsEquals``. + Finally, asserts that the overall ``runTests()`` success value is ``True``. + + :param run_tests_report: tuple(bool, [tuple(str, ParseResults or Exception)]) returned from runTests + :param expected_parse_results (optional): [tuple(str, list, dict, Exception)] + """ + run_test_success, run_test_results = run_tests_report + + if expected_parse_results is not None: + merged = [ + (*rpt, expected) + for rpt, expected in zip(run_test_results, expected_parse_results) + ] + for test_string, result, expected in merged: + # expected should be a tuple containing a list and/or a dict or an exception, + # and optional failure message string + # an empty tuple will skip any result validation + fail_msg = next( + (exp for exp in expected if isinstance(exp, str)), None + ) + expected_exception = next( + ( + exp + for exp in expected + if isinstance(exp, type) and issubclass(exp, Exception) + ), + None, + ) + if expected_exception is not None: + with self.assertRaises( + expected_exception=expected_exception, msg=fail_msg or msg + ): + if isinstance(result, Exception): + raise result + else: + expected_list = next( + (exp for exp in expected if isinstance(exp, list)), None + ) + expected_dict = next( + (exp for exp in expected if isinstance(exp, dict)), None + ) + if (expected_list, expected_dict) != (None, None): + self.assertParseResultsEquals( + result, + expected_list=expected_list, + expected_dict=expected_dict, + msg=fail_msg or msg, + ) + else: + # warning here maybe? + print(f"no validation for {test_string!r}") + + # do this last, in case some specific test results can be reported instead + self.assertTrue( + run_test_success, msg=msg if msg is not None else "failed runTests" + ) + + @contextmanager + def assertRaisesParseException(self, exc_type=ParseException, msg=None): + with self.assertRaises(exc_type, msg=msg): + yield + + @staticmethod + def with_line_numbers( + s: str, + start_line: typing.Optional[int] = None, + end_line: typing.Optional[int] = None, + expand_tabs: bool = True, + eol_mark: str = "|", + mark_spaces: typing.Optional[str] = None, + mark_control: typing.Optional[str] = None, + ) -> str: + """ + Helpful method for debugging a parser - prints a string with line and column numbers. + (Line and column numbers are 1-based.) + + :param s: tuple(bool, str - string to be printed with line and column numbers + :param start_line: int - (optional) starting line number in s to print (default=1) + :param end_line: int - (optional) ending line number in s to print (default=len(s)) + :param expand_tabs: bool - (optional) expand tabs to spaces, to match the pyparsing default + :param eol_mark: str - (optional) string to mark the end of lines, helps visualize trailing spaces (default="|") + :param mark_spaces: str - (optional) special character to display in place of spaces + :param mark_control: str - (optional) convert non-printing control characters to a placeholding + character; valid values: + - "unicode" - replaces control chars with Unicode symbols, such as "␍" and "␊" + - any single character string - replace control characters with given string + - None (default) - string is displayed as-is + + :return: str - input string with leading line numbers and column number headers + """ + if expand_tabs: + s = s.expandtabs() + if mark_control is not None: + mark_control = typing.cast(str, mark_control) + if mark_control == "unicode": + transtable_map = { + c: u for c, u in zip(range(0, 33), range(0x2400, 0x2433)) + } + transtable_map[127] = 0x2421 + tbl = str.maketrans(transtable_map) + eol_mark = "" + else: + ord_mark_control = ord(mark_control) + tbl = str.maketrans( + {c: ord_mark_control for c in list(range(0, 32)) + [127]} + ) + s = s.translate(tbl) + if mark_spaces is not None and mark_spaces != " ": + if mark_spaces == "unicode": + tbl = str.maketrans({9: 0x2409, 32: 0x2423}) + s = s.translate(tbl) + else: + s = s.replace(" ", mark_spaces) + if start_line is None: + start_line = 1 + if end_line is None: + end_line = len(s) + end_line = min(end_line, len(s)) + start_line = min(max(1, start_line), end_line) + + if mark_control != "unicode": + s_lines = s.splitlines()[start_line - 1 : end_line] + else: + s_lines = [line + "␊" for line in s.split("␊")[start_line - 1 : end_line]] + if not s_lines: + return "" + + lineno_width = len(str(end_line)) + max_line_len = max(len(line) for line in s_lines) + lead = " " * (lineno_width + 1) + if max_line_len >= 99: + header0 = ( + lead + + "".join( + f"{' ' * 99}{(i + 1) % 100}" + for i in range(max(max_line_len // 100, 1)) + ) + + "\n" + ) + else: + header0 = "" + header1 = ( + header0 + + lead + + "".join(f" {(i + 1) % 10}" for i in range(-(-max_line_len // 10))) + + "\n" + ) + header2 = lead + "1234567890" * (-(-max_line_len // 10)) + "\n" + return ( + header1 + + header2 + + "\n".join( + f"{i:{lineno_width}d}:{line}{eol_mark}" + for i, line in enumerate(s_lines, start=start_line) + ) + + "\n" + ) diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/pyparsing/unicode.py b/.venv/lib/python3.11/site-packages/pip/_vendor/pyparsing/unicode.py new file mode 100644 index 0000000..ec0b3a4 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/pyparsing/unicode.py @@ -0,0 +1,361 @@ +# unicode.py + +import sys +from itertools import filterfalse +from typing import List, Tuple, Union + + +class _lazyclassproperty: + def __init__(self, fn): + self.fn = fn + self.__doc__ = fn.__doc__ + self.__name__ = fn.__name__ + + def __get__(self, obj, cls): + if cls is None: + cls = type(obj) + if not hasattr(cls, "_intern") or any( + cls._intern is getattr(superclass, "_intern", []) + for superclass in cls.__mro__[1:] + ): + cls._intern = {} + attrname = self.fn.__name__ + if attrname not in cls._intern: + cls._intern[attrname] = self.fn(cls) + return cls._intern[attrname] + + +UnicodeRangeList = List[Union[Tuple[int, int], Tuple[int]]] + + +class unicode_set: + """ + A set of Unicode characters, for language-specific strings for + ``alphas``, ``nums``, ``alphanums``, and ``printables``. + A unicode_set is defined by a list of ranges in the Unicode character + set, in a class attribute ``_ranges``. Ranges can be specified using + 2-tuples or a 1-tuple, such as:: + + _ranges = [ + (0x0020, 0x007e), + (0x00a0, 0x00ff), + (0x0100,), + ] + + Ranges are left- and right-inclusive. A 1-tuple of (x,) is treated as (x, x). + + A unicode set can also be defined using multiple inheritance of other unicode sets:: + + class CJK(Chinese, Japanese, Korean): + pass + """ + + _ranges: UnicodeRangeList = [] + + @_lazyclassproperty + def _chars_for_ranges(cls): + ret = [] + for cc in cls.__mro__: + if cc is unicode_set: + break + for rr in getattr(cc, "_ranges", ()): + ret.extend(range(rr[0], rr[-1] + 1)) + return [chr(c) for c in sorted(set(ret))] + + @_lazyclassproperty + def printables(cls): + """all non-whitespace characters in this range""" + return "".join(filterfalse(str.isspace, cls._chars_for_ranges)) + + @_lazyclassproperty + def alphas(cls): + """all alphabetic characters in this range""" + return "".join(filter(str.isalpha, cls._chars_for_ranges)) + + @_lazyclassproperty + def nums(cls): + """all numeric digit characters in this range""" + return "".join(filter(str.isdigit, cls._chars_for_ranges)) + + @_lazyclassproperty + def alphanums(cls): + """all alphanumeric characters in this range""" + return cls.alphas + cls.nums + + @_lazyclassproperty + def identchars(cls): + """all characters in this range that are valid identifier characters, plus underscore '_'""" + return "".join( + sorted( + set( + "".join(filter(str.isidentifier, cls._chars_for_ranges)) + + "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyzªµº" + + "ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖØÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõöøùúûüýþÿ" + + "_" + ) + ) + ) + + @_lazyclassproperty + def identbodychars(cls): + """ + all characters in this range that are valid identifier body characters, + plus the digits 0-9, and · (Unicode MIDDLE DOT) + """ + return "".join( + sorted( + set( + cls.identchars + + "0123456789·" + + "".join( + [c for c in cls._chars_for_ranges if ("_" + c).isidentifier()] + ) + ) + ) + ) + + @_lazyclassproperty + def identifier(cls): + """ + a pyparsing Word expression for an identifier using this range's definitions for + identchars and identbodychars + """ + from pip._vendor.pyparsing import Word + + return Word(cls.identchars, cls.identbodychars) + + +class pyparsing_unicode(unicode_set): + """ + A namespace class for defining common language unicode_sets. + """ + + # fmt: off + + # define ranges in language character sets + _ranges: UnicodeRangeList = [ + (0x0020, sys.maxunicode), + ] + + class BasicMultilingualPlane(unicode_set): + """Unicode set for the Basic Multilingual Plane""" + _ranges: UnicodeRangeList = [ + (0x0020, 0xFFFF), + ] + + class Latin1(unicode_set): + """Unicode set for Latin-1 Unicode Character Range""" + _ranges: UnicodeRangeList = [ + (0x0020, 0x007E), + (0x00A0, 0x00FF), + ] + + class LatinA(unicode_set): + """Unicode set for Latin-A Unicode Character Range""" + _ranges: UnicodeRangeList = [ + (0x0100, 0x017F), + ] + + class LatinB(unicode_set): + """Unicode set for Latin-B Unicode Character Range""" + _ranges: UnicodeRangeList = [ + (0x0180, 0x024F), + ] + + class Greek(unicode_set): + """Unicode set for Greek Unicode Character Ranges""" + _ranges: UnicodeRangeList = [ + (0x0342, 0x0345), + (0x0370, 0x0377), + (0x037A, 0x037F), + (0x0384, 0x038A), + (0x038C,), + (0x038E, 0x03A1), + (0x03A3, 0x03E1), + (0x03F0, 0x03FF), + (0x1D26, 0x1D2A), + (0x1D5E,), + (0x1D60,), + (0x1D66, 0x1D6A), + (0x1F00, 0x1F15), + (0x1F18, 0x1F1D), + (0x1F20, 0x1F45), + (0x1F48, 0x1F4D), + (0x1F50, 0x1F57), + (0x1F59,), + (0x1F5B,), + (0x1F5D,), + (0x1F5F, 0x1F7D), + (0x1F80, 0x1FB4), + (0x1FB6, 0x1FC4), + (0x1FC6, 0x1FD3), + (0x1FD6, 0x1FDB), + (0x1FDD, 0x1FEF), + (0x1FF2, 0x1FF4), + (0x1FF6, 0x1FFE), + (0x2129,), + (0x2719, 0x271A), + (0xAB65,), + (0x10140, 0x1018D), + (0x101A0,), + (0x1D200, 0x1D245), + (0x1F7A1, 0x1F7A7), + ] + + class Cyrillic(unicode_set): + """Unicode set for Cyrillic Unicode Character Range""" + _ranges: UnicodeRangeList = [ + (0x0400, 0x052F), + (0x1C80, 0x1C88), + (0x1D2B,), + (0x1D78,), + (0x2DE0, 0x2DFF), + (0xA640, 0xA672), + (0xA674, 0xA69F), + (0xFE2E, 0xFE2F), + ] + + class Chinese(unicode_set): + """Unicode set for Chinese Unicode Character Range""" + _ranges: UnicodeRangeList = [ + (0x2E80, 0x2E99), + (0x2E9B, 0x2EF3), + (0x31C0, 0x31E3), + (0x3400, 0x4DB5), + (0x4E00, 0x9FEF), + (0xA700, 0xA707), + (0xF900, 0xFA6D), + (0xFA70, 0xFAD9), + (0x16FE2, 0x16FE3), + (0x1F210, 0x1F212), + (0x1F214, 0x1F23B), + (0x1F240, 0x1F248), + (0x20000, 0x2A6D6), + (0x2A700, 0x2B734), + (0x2B740, 0x2B81D), + (0x2B820, 0x2CEA1), + (0x2CEB0, 0x2EBE0), + (0x2F800, 0x2FA1D), + ] + + class Japanese(unicode_set): + """Unicode set for Japanese Unicode Character Range, combining Kanji, Hiragana, and Katakana ranges""" + + class Kanji(unicode_set): + "Unicode set for Kanji Unicode Character Range" + _ranges: UnicodeRangeList = [ + (0x4E00, 0x9FBF), + (0x3000, 0x303F), + ] + + class Hiragana(unicode_set): + """Unicode set for Hiragana Unicode Character Range""" + _ranges: UnicodeRangeList = [ + (0x3041, 0x3096), + (0x3099, 0x30A0), + (0x30FC,), + (0xFF70,), + (0x1B001,), + (0x1B150, 0x1B152), + (0x1F200,), + ] + + class Katakana(unicode_set): + """Unicode set for Katakana Unicode Character Range""" + _ranges: UnicodeRangeList = [ + (0x3099, 0x309C), + (0x30A0, 0x30FF), + (0x31F0, 0x31FF), + (0x32D0, 0x32FE), + (0xFF65, 0xFF9F), + (0x1B000,), + (0x1B164, 0x1B167), + (0x1F201, 0x1F202), + (0x1F213,), + ] + + 漢字 = Kanji + カタカナ = Katakana + ひらがな = Hiragana + + _ranges = ( + Kanji._ranges + + Hiragana._ranges + + Katakana._ranges + ) + + class Hangul(unicode_set): + """Unicode set for Hangul (Korean) Unicode Character Range""" + _ranges: UnicodeRangeList = [ + (0x1100, 0x11FF), + (0x302E, 0x302F), + (0x3131, 0x318E), + (0x3200, 0x321C), + (0x3260, 0x327B), + (0x327E,), + (0xA960, 0xA97C), + (0xAC00, 0xD7A3), + (0xD7B0, 0xD7C6), + (0xD7CB, 0xD7FB), + (0xFFA0, 0xFFBE), + (0xFFC2, 0xFFC7), + (0xFFCA, 0xFFCF), + (0xFFD2, 0xFFD7), + (0xFFDA, 0xFFDC), + ] + + Korean = Hangul + + class CJK(Chinese, Japanese, Hangul): + """Unicode set for combined Chinese, Japanese, and Korean (CJK) Unicode Character Range""" + + class Thai(unicode_set): + """Unicode set for Thai Unicode Character Range""" + _ranges: UnicodeRangeList = [ + (0x0E01, 0x0E3A), + (0x0E3F, 0x0E5B) + ] + + class Arabic(unicode_set): + """Unicode set for Arabic Unicode Character Range""" + _ranges: UnicodeRangeList = [ + (0x0600, 0x061B), + (0x061E, 0x06FF), + (0x0700, 0x077F), + ] + + class Hebrew(unicode_set): + """Unicode set for Hebrew Unicode Character Range""" + _ranges: UnicodeRangeList = [ + (0x0591, 0x05C7), + (0x05D0, 0x05EA), + (0x05EF, 0x05F4), + (0xFB1D, 0xFB36), + (0xFB38, 0xFB3C), + (0xFB3E,), + (0xFB40, 0xFB41), + (0xFB43, 0xFB44), + (0xFB46, 0xFB4F), + ] + + class Devanagari(unicode_set): + """Unicode set for Devanagari Unicode Character Range""" + _ranges: UnicodeRangeList = [ + (0x0900, 0x097F), + (0xA8E0, 0xA8FF) + ] + + BMP = BasicMultilingualPlane + + # add language identifiers using language Unicode + العربية = Arabic + 中文 = Chinese + кириллица = Cyrillic + Ελληνικά = Greek + עִברִית = Hebrew + 日本語 = Japanese + 한국어 = Korean + ไทย = Thai + देवनागरी = Devanagari + + # fmt: on diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/pyparsing/util.py b/.venv/lib/python3.11/site-packages/pip/_vendor/pyparsing/util.py new file mode 100644 index 0000000..d8d3f41 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/pyparsing/util.py @@ -0,0 +1,284 @@ +# util.py +import inspect +import warnings +import types +import collections +import itertools +from functools import lru_cache, wraps +from typing import Callable, List, Union, Iterable, TypeVar, cast + +_bslash = chr(92) +C = TypeVar("C", bound=Callable) + + +class __config_flags: + """Internal class for defining compatibility and debugging flags""" + + _all_names: List[str] = [] + _fixed_names: List[str] = [] + _type_desc = "configuration" + + @classmethod + def _set(cls, dname, value): + if dname in cls._fixed_names: + warnings.warn( + f"{cls.__name__}.{dname} {cls._type_desc} is {str(getattr(cls, dname)).upper()}" + f" and cannot be overridden", + stacklevel=3, + ) + return + if dname in cls._all_names: + setattr(cls, dname, value) + else: + raise ValueError(f"no such {cls._type_desc} {dname!r}") + + enable = classmethod(lambda cls, name: cls._set(name, True)) + disable = classmethod(lambda cls, name: cls._set(name, False)) + + +@lru_cache(maxsize=128) +def col(loc: int, strg: str) -> int: + """ + Returns current column within a string, counting newlines as line separators. + The first column is number 1. + + Note: the default parsing behavior is to expand tabs in the input string + before starting the parsing process. See + :class:`ParserElement.parse_string` for more + information on parsing strings containing ```` s, and suggested + methods to maintain a consistent view of the parsed string, the parse + location, and line and column positions within the parsed string. + """ + s = strg + return 1 if 0 < loc < len(s) and s[loc - 1] == "\n" else loc - s.rfind("\n", 0, loc) + + +@lru_cache(maxsize=128) +def lineno(loc: int, strg: str) -> int: + """Returns current line number within a string, counting newlines as line separators. + The first line is number 1. + + Note - the default parsing behavior is to expand tabs in the input string + before starting the parsing process. See :class:`ParserElement.parse_string` + for more information on parsing strings containing ```` s, and + suggested methods to maintain a consistent view of the parsed string, the + parse location, and line and column positions within the parsed string. + """ + return strg.count("\n", 0, loc) + 1 + + +@lru_cache(maxsize=128) +def line(loc: int, strg: str) -> str: + """ + Returns the line of text containing loc within a string, counting newlines as line separators. + """ + last_cr = strg.rfind("\n", 0, loc) + next_cr = strg.find("\n", loc) + return strg[last_cr + 1 : next_cr] if next_cr >= 0 else strg[last_cr + 1 :] + + +class _UnboundedCache: + def __init__(self): + cache = {} + cache_get = cache.get + self.not_in_cache = not_in_cache = object() + + def get(_, key): + return cache_get(key, not_in_cache) + + def set_(_, key, value): + cache[key] = value + + def clear(_): + cache.clear() + + self.size = None + self.get = types.MethodType(get, self) + self.set = types.MethodType(set_, self) + self.clear = types.MethodType(clear, self) + + +class _FifoCache: + def __init__(self, size): + self.not_in_cache = not_in_cache = object() + cache = {} + keyring = [object()] * size + cache_get = cache.get + cache_pop = cache.pop + keyiter = itertools.cycle(range(size)) + + def get(_, key): + return cache_get(key, not_in_cache) + + def set_(_, key, value): + cache[key] = value + i = next(keyiter) + cache_pop(keyring[i], None) + keyring[i] = key + + def clear(_): + cache.clear() + keyring[:] = [object()] * size + + self.size = size + self.get = types.MethodType(get, self) + self.set = types.MethodType(set_, self) + self.clear = types.MethodType(clear, self) + + +class LRUMemo: + """ + A memoizing mapping that retains `capacity` deleted items + + The memo tracks retained items by their access order; once `capacity` items + are retained, the least recently used item is discarded. + """ + + def __init__(self, capacity): + self._capacity = capacity + self._active = {} + self._memory = collections.OrderedDict() + + def __getitem__(self, key): + try: + return self._active[key] + except KeyError: + self._memory.move_to_end(key) + return self._memory[key] + + def __setitem__(self, key, value): + self._memory.pop(key, None) + self._active[key] = value + + def __delitem__(self, key): + try: + value = self._active.pop(key) + except KeyError: + pass + else: + while len(self._memory) >= self._capacity: + self._memory.popitem(last=False) + self._memory[key] = value + + def clear(self): + self._active.clear() + self._memory.clear() + + +class UnboundedMemo(dict): + """ + A memoizing mapping that retains all deleted items + """ + + def __delitem__(self, key): + pass + + +def _escape_regex_range_chars(s: str) -> str: + # escape these chars: ^-[] + for c in r"\^-[]": + s = s.replace(c, _bslash + c) + s = s.replace("\n", r"\n") + s = s.replace("\t", r"\t") + return str(s) + + +def _collapse_string_to_ranges( + s: Union[str, Iterable[str]], re_escape: bool = True +) -> str: + def is_consecutive(c): + c_int = ord(c) + is_consecutive.prev, prev = c_int, is_consecutive.prev + if c_int - prev > 1: + is_consecutive.value = next(is_consecutive.counter) + return is_consecutive.value + + is_consecutive.prev = 0 # type: ignore [attr-defined] + is_consecutive.counter = itertools.count() # type: ignore [attr-defined] + is_consecutive.value = -1 # type: ignore [attr-defined] + + def escape_re_range_char(c): + return "\\" + c if c in r"\^-][" else c + + def no_escape_re_range_char(c): + return c + + if not re_escape: + escape_re_range_char = no_escape_re_range_char + + ret = [] + s = "".join(sorted(set(s))) + if len(s) > 3: + for _, chars in itertools.groupby(s, key=is_consecutive): + first = last = next(chars) + last = collections.deque( + itertools.chain(iter([last]), chars), maxlen=1 + ).pop() + if first == last: + ret.append(escape_re_range_char(first)) + else: + sep = "" if ord(last) == ord(first) + 1 else "-" + ret.append( + f"{escape_re_range_char(first)}{sep}{escape_re_range_char(last)}" + ) + else: + ret = [escape_re_range_char(c) for c in s] + + return "".join(ret) + + +def _flatten(ll: list) -> list: + ret = [] + for i in ll: + if isinstance(i, list): + ret.extend(_flatten(i)) + else: + ret.append(i) + return ret + + +def _make_synonym_function(compat_name: str, fn: C) -> C: + # In a future version, uncomment the code in the internal _inner() functions + # to begin emitting DeprecationWarnings. + + # Unwrap staticmethod/classmethod + fn = getattr(fn, "__func__", fn) + + # (Presence of 'self' arg in signature is used by explain_exception() methods, so we take + # some extra steps to add it if present in decorated function.) + if "self" == list(inspect.signature(fn).parameters)[0]: + + @wraps(fn) + def _inner(self, *args, **kwargs): + # warnings.warn( + # f"Deprecated - use {fn.__name__}", DeprecationWarning, stacklevel=3 + # ) + return fn(self, *args, **kwargs) + + else: + + @wraps(fn) + def _inner(*args, **kwargs): + # warnings.warn( + # f"Deprecated - use {fn.__name__}", DeprecationWarning, stacklevel=3 + # ) + return fn(*args, **kwargs) + + _inner.__doc__ = f"""Deprecated - use :class:`{fn.__name__}`""" + _inner.__name__ = compat_name + _inner.__annotations__ = fn.__annotations__ + if isinstance(fn, types.FunctionType): + _inner.__kwdefaults__ = fn.__kwdefaults__ + elif isinstance(fn, type) and hasattr(fn, "__init__"): + _inner.__kwdefaults__ = fn.__init__.__kwdefaults__ + else: + _inner.__kwdefaults__ = None + _inner.__qualname__ = fn.__qualname__ + return cast(C, _inner) + + +def replaced_by_pep8(fn: C) -> Callable[[Callable], C]: + """ + Decorator for pre-PEP8 compatibility synonyms, to link them to the new function. + """ + return lambda other: _make_synonym_function(other.__name__, fn) diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/pyproject_hooks/__init__.py b/.venv/lib/python3.11/site-packages/pip/_vendor/pyproject_hooks/__init__.py new file mode 100644 index 0000000..ddfcf7f --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/pyproject_hooks/__init__.py @@ -0,0 +1,23 @@ +"""Wrappers to call pyproject.toml-based build backend hooks. +""" + +from ._impl import ( + BackendInvalid, + BackendUnavailable, + BuildBackendHookCaller, + HookMissing, + UnsupportedOperation, + default_subprocess_runner, + quiet_subprocess_runner, +) + +__version__ = '1.0.0' +__all__ = [ + 'BackendUnavailable', + 'BackendInvalid', + 'HookMissing', + 'UnsupportedOperation', + 'default_subprocess_runner', + 'quiet_subprocess_runner', + 'BuildBackendHookCaller', +] diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/pyproject_hooks/__pycache__/__init__.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/pyproject_hooks/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a47882879eb3b6c1abbaafee06b2522fc560ca50 GIT binary patch literal 750 zcmcJMv2WBc6vpk`<&xg1RG_MeE$a=9d$0lOP?jFD~^xntG}=d-%X zN~Tn1*Va{^L|Nx`rPbkrdBL+qBNdR9m%{LDRaKWhAO8khXqt47PPY4RP0N(z-IIPj zH>_n+v4s-d!AUrwPn?4O4csMMHwp1O>Af_|ZhvlkV{PSX!9Rd0R?EtC&$zf?jjE|{ z7GSLu-c#2Y1L~(&jT8?guH#vLlpjqKHw24r5HJcz0@8q;fEe(8I_VNhc~w%{#Z+pm zwt{jGV2@6?6J* z+hk8p&z}<|m^0L_>lGZ=x1Z##FfCDXLAHq(`D{kKti_>)ezT?U#7axRhT)ZiqFzYv zzlTsNjjSon?fNc#tt;LraqJ$0z3^@RGhj2o7;hqshZ__yN^!J7{{#DI@8D*#iPA~9 NpvO%TrrQH2e*v^D*JS_z literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_compat.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_compat.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c927c062a5295960ad46fbbccb975d18499c6acf GIT binary patch literal 448 zcmZury-Ncz6i+VKR{G(f;Mn~@FH~0%CvhqT5#g2)?^2sKcR7-?a$9FXaC31N|C=HX z<)(sDH=$c6-}Phjz2tr5_sjdek5;RWz~0ft;2H8y+3d{O7RyU0-cW=B6yeBGIKToA zcPNU;s8TXbb&ZmMM9xjgbd?)d0)kQ5dle5CwM@rK$@@jg?|ROHKwdN;09YwO=~asw zV_Yf53Sx6xG{?eNsS_rXzBZ+5(MVdwDqEChi$M6k%rR_1!5|f}4b;c{YIg=?0-b3?5V1l5T)Aztf>sX5u8};fOy7 zOF^G*^?|hg$Oc-EEM=jNQ=a*0zS=vFb@Zsjh1rMgFkE{D;g?{HXZ52=ZI0@bwa-cQ cn;gDAeUbK*v}f+Yq`ULEdp!N`m?n(+0}PFUBLDyZ literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_impl.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_impl.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bb42be2beece65c85dfeb5b8aa532d1f1d5ea573 GIT binary patch literal 16714 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 OhIe@W$8}0MoBj{#F$eAd literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/pyproject_hooks/_compat.py b/.venv/lib/python3.11/site-packages/pip/_vendor/pyproject_hooks/_compat.py new file mode 100644 index 0000000..95e509c --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/pyproject_hooks/_compat.py @@ -0,0 +1,8 @@ +__all__ = ("tomllib",) + +import sys + +if sys.version_info >= (3, 11): + import tomllib +else: + from pip._vendor import tomli as tomllib diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/pyproject_hooks/_impl.py b/.venv/lib/python3.11/site-packages/pip/_vendor/pyproject_hooks/_impl.py new file mode 100644 index 0000000..37b0e65 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/pyproject_hooks/_impl.py @@ -0,0 +1,330 @@ +import json +import os +import sys +import tempfile +from contextlib import contextmanager +from os.path import abspath +from os.path import join as pjoin +from subprocess import STDOUT, check_call, check_output + +from ._in_process import _in_proc_script_path + + +def write_json(obj, path, **kwargs): + with open(path, 'w', encoding='utf-8') as f: + json.dump(obj, f, **kwargs) + + +def read_json(path): + with open(path, encoding='utf-8') as f: + return json.load(f) + + +class BackendUnavailable(Exception): + """Will be raised if the backend cannot be imported in the hook process.""" + def __init__(self, traceback): + self.traceback = traceback + + +class BackendInvalid(Exception): + """Will be raised if the backend is invalid.""" + def __init__(self, backend_name, backend_path, message): + super().__init__(message) + self.backend_name = backend_name + self.backend_path = backend_path + + +class HookMissing(Exception): + """Will be raised on missing hooks (if a fallback can't be used).""" + def __init__(self, hook_name): + super().__init__(hook_name) + self.hook_name = hook_name + + +class UnsupportedOperation(Exception): + """May be raised by build_sdist if the backend indicates that it can't.""" + def __init__(self, traceback): + self.traceback = traceback + + +def default_subprocess_runner(cmd, cwd=None, extra_environ=None): + """The default method of calling the wrapper subprocess. + + This uses :func:`subprocess.check_call` under the hood. + """ + env = os.environ.copy() + if extra_environ: + env.update(extra_environ) + + check_call(cmd, cwd=cwd, env=env) + + +def quiet_subprocess_runner(cmd, cwd=None, extra_environ=None): + """Call the subprocess while suppressing output. + + This uses :func:`subprocess.check_output` under the hood. + """ + env = os.environ.copy() + if extra_environ: + env.update(extra_environ) + + check_output(cmd, cwd=cwd, env=env, stderr=STDOUT) + + +def norm_and_check(source_tree, requested): + """Normalise and check a backend path. + + Ensure that the requested backend path is specified as a relative path, + and resolves to a location under the given source tree. + + Return an absolute version of the requested path. + """ + if os.path.isabs(requested): + raise ValueError("paths must be relative") + + abs_source = os.path.abspath(source_tree) + abs_requested = os.path.normpath(os.path.join(abs_source, requested)) + # We have to use commonprefix for Python 2.7 compatibility. So we + # normalise case to avoid problems because commonprefix is a character + # based comparison :-( + norm_source = os.path.normcase(abs_source) + norm_requested = os.path.normcase(abs_requested) + if os.path.commonprefix([norm_source, norm_requested]) != norm_source: + raise ValueError("paths must be inside source tree") + + return abs_requested + + +class BuildBackendHookCaller: + """A wrapper to call the build backend hooks for a source directory. + """ + + def __init__( + self, + source_dir, + build_backend, + backend_path=None, + runner=None, + python_executable=None, + ): + """ + :param source_dir: The source directory to invoke the build backend for + :param build_backend: The build backend spec + :param backend_path: Additional path entries for the build backend spec + :param runner: The :ref:`subprocess runner ` to use + :param python_executable: + The Python executable used to invoke the build backend + """ + if runner is None: + runner = default_subprocess_runner + + self.source_dir = abspath(source_dir) + self.build_backend = build_backend + if backend_path: + backend_path = [ + norm_and_check(self.source_dir, p) for p in backend_path + ] + self.backend_path = backend_path + self._subprocess_runner = runner + if not python_executable: + python_executable = sys.executable + self.python_executable = python_executable + + @contextmanager + def subprocess_runner(self, runner): + """A context manager for temporarily overriding the default + :ref:`subprocess runner `. + + .. code-block:: python + + hook_caller = BuildBackendHookCaller(...) + with hook_caller.subprocess_runner(quiet_subprocess_runner): + ... + """ + prev = self._subprocess_runner + self._subprocess_runner = runner + try: + yield + finally: + self._subprocess_runner = prev + + def _supported_features(self): + """Return the list of optional features supported by the backend.""" + return self._call_hook('_supported_features', {}) + + def get_requires_for_build_wheel(self, config_settings=None): + """Get additional dependencies required for building a wheel. + + :returns: A list of :pep:`dependency specifiers <508>`. + :rtype: list[str] + + .. admonition:: Fallback + + If the build backend does not defined a hook with this name, an + empty list will be returned. + """ + return self._call_hook('get_requires_for_build_wheel', { + 'config_settings': config_settings + }) + + def prepare_metadata_for_build_wheel( + self, metadata_directory, config_settings=None, + _allow_fallback=True): + """Prepare a ``*.dist-info`` folder with metadata for this project. + + :returns: Name of the newly created subfolder within + ``metadata_directory``, containing the metadata. + :rtype: str + + .. admonition:: Fallback + + If the build backend does not define a hook with this name and + ``_allow_fallback`` is truthy, the backend will be asked to build a + wheel via the ``build_wheel`` hook and the dist-info extracted from + that will be returned. + """ + return self._call_hook('prepare_metadata_for_build_wheel', { + 'metadata_directory': abspath(metadata_directory), + 'config_settings': config_settings, + '_allow_fallback': _allow_fallback, + }) + + def build_wheel( + self, wheel_directory, config_settings=None, + metadata_directory=None): + """Build a wheel from this project. + + :returns: + The name of the newly created wheel within ``wheel_directory``. + + .. admonition:: Interaction with fallback + + If the ``build_wheel`` hook was called in the fallback for + :meth:`prepare_metadata_for_build_wheel`, the build backend would + not be invoked. Instead, the previously built wheel will be copied + to ``wheel_directory`` and the name of that file will be returned. + """ + if metadata_directory is not None: + metadata_directory = abspath(metadata_directory) + return self._call_hook('build_wheel', { + 'wheel_directory': abspath(wheel_directory), + 'config_settings': config_settings, + 'metadata_directory': metadata_directory, + }) + + def get_requires_for_build_editable(self, config_settings=None): + """Get additional dependencies required for building an editable wheel. + + :returns: A list of :pep:`dependency specifiers <508>`. + :rtype: list[str] + + .. admonition:: Fallback + + If the build backend does not defined a hook with this name, an + empty list will be returned. + """ + return self._call_hook('get_requires_for_build_editable', { + 'config_settings': config_settings + }) + + def prepare_metadata_for_build_editable( + self, metadata_directory, config_settings=None, + _allow_fallback=True): + """Prepare a ``*.dist-info`` folder with metadata for this project. + + :returns: Name of the newly created subfolder within + ``metadata_directory``, containing the metadata. + :rtype: str + + .. admonition:: Fallback + + If the build backend does not define a hook with this name and + ``_allow_fallback`` is truthy, the backend will be asked to build a + wheel via the ``build_editable`` hook and the dist-info + extracted from that will be returned. + """ + return self._call_hook('prepare_metadata_for_build_editable', { + 'metadata_directory': abspath(metadata_directory), + 'config_settings': config_settings, + '_allow_fallback': _allow_fallback, + }) + + def build_editable( + self, wheel_directory, config_settings=None, + metadata_directory=None): + """Build an editable wheel from this project. + + :returns: + The name of the newly created wheel within ``wheel_directory``. + + .. admonition:: Interaction with fallback + + If the ``build_editable`` hook was called in the fallback for + :meth:`prepare_metadata_for_build_editable`, the build backend + would not be invoked. Instead, the previously built wheel will be + copied to ``wheel_directory`` and the name of that file will be + returned. + """ + if metadata_directory is not None: + metadata_directory = abspath(metadata_directory) + return self._call_hook('build_editable', { + 'wheel_directory': abspath(wheel_directory), + 'config_settings': config_settings, + 'metadata_directory': metadata_directory, + }) + + def get_requires_for_build_sdist(self, config_settings=None): + """Get additional dependencies required for building an sdist. + + :returns: A list of :pep:`dependency specifiers <508>`. + :rtype: list[str] + """ + return self._call_hook('get_requires_for_build_sdist', { + 'config_settings': config_settings + }) + + def build_sdist(self, sdist_directory, config_settings=None): + """Build an sdist from this project. + + :returns: + The name of the newly created sdist within ``wheel_directory``. + """ + return self._call_hook('build_sdist', { + 'sdist_directory': abspath(sdist_directory), + 'config_settings': config_settings, + }) + + def _call_hook(self, hook_name, kwargs): + extra_environ = {'PEP517_BUILD_BACKEND': self.build_backend} + + if self.backend_path: + backend_path = os.pathsep.join(self.backend_path) + extra_environ['PEP517_BACKEND_PATH'] = backend_path + + with tempfile.TemporaryDirectory() as td: + hook_input = {'kwargs': kwargs} + write_json(hook_input, pjoin(td, 'input.json'), indent=2) + + # Run the hook in a subprocess + with _in_proc_script_path() as script: + python = self.python_executable + self._subprocess_runner( + [python, abspath(str(script)), hook_name, td], + cwd=self.source_dir, + extra_environ=extra_environ + ) + + data = read_json(pjoin(td, 'output.json')) + if data.get('unsupported'): + raise UnsupportedOperation(data.get('traceback', '')) + if data.get('no_backend'): + raise BackendUnavailable(data.get('traceback', '')) + if data.get('backend_invalid'): + raise BackendInvalid( + backend_name=self.build_backend, + backend_path=self.backend_path, + message=data.get('backend_error', '') + ) + if data.get('hook_missing'): + raise HookMissing(data.get('missing_hook_name') or hook_name) + return data['return_val'] diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py b/.venv/lib/python3.11/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py new file mode 100644 index 0000000..917fa06 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py @@ -0,0 +1,18 @@ +"""This is a subpackage because the directory is on sys.path for _in_process.py + +The subpackage should stay as empty as possible to avoid shadowing modules that +the backend might import. +""" + +import importlib.resources as resources + +try: + resources.files +except AttributeError: + # Python 3.8 compatibility + def _in_proc_script_path(): + return resources.path(__package__, '_in_process.py') +else: + def _in_proc_script_path(): + return resources.as_file( + resources.files(__package__).joinpath('_in_process.py')) diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/__init__.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f66dd8b7a6a4d0e7ee9356015744693aa8dd3c81 GIT binary patch literal 1210 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 dLW3?eq{}GC-w_gAN literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py b/.venv/lib/python3.11/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py new file mode 100644 index 0000000..ee511ff --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py @@ -0,0 +1,353 @@ +"""This is invoked in a subprocess to call the build backend hooks. + +It expects: +- Command line args: hook_name, control_dir +- Environment variables: + PEP517_BUILD_BACKEND=entry.point:spec + PEP517_BACKEND_PATH=paths (separated with os.pathsep) +- control_dir/input.json: + - {"kwargs": {...}} + +Results: +- control_dir/output.json + - {"return_val": ...} +""" +import json +import os +import os.path +import re +import shutil +import sys +import traceback +from glob import glob +from importlib import import_module +from os.path import join as pjoin + +# This file is run as a script, and `import wrappers` is not zip-safe, so we +# include write_json() and read_json() from wrappers.py. + + +def write_json(obj, path, **kwargs): + with open(path, 'w', encoding='utf-8') as f: + json.dump(obj, f, **kwargs) + + +def read_json(path): + with open(path, encoding='utf-8') as f: + return json.load(f) + + +class BackendUnavailable(Exception): + """Raised if we cannot import the backend""" + def __init__(self, traceback): + self.traceback = traceback + + +class BackendInvalid(Exception): + """Raised if the backend is invalid""" + def __init__(self, message): + self.message = message + + +class HookMissing(Exception): + """Raised if a hook is missing and we are not executing the fallback""" + def __init__(self, hook_name=None): + super().__init__(hook_name) + self.hook_name = hook_name + + +def contained_in(filename, directory): + """Test if a file is located within the given directory.""" + filename = os.path.normcase(os.path.abspath(filename)) + directory = os.path.normcase(os.path.abspath(directory)) + return os.path.commonprefix([filename, directory]) == directory + + +def _build_backend(): + """Find and load the build backend""" + # Add in-tree backend directories to the front of sys.path. + backend_path = os.environ.get('PEP517_BACKEND_PATH') + if backend_path: + extra_pathitems = backend_path.split(os.pathsep) + sys.path[:0] = extra_pathitems + + ep = os.environ['PEP517_BUILD_BACKEND'] + mod_path, _, obj_path = ep.partition(':') + try: + obj = import_module(mod_path) + except ImportError: + raise BackendUnavailable(traceback.format_exc()) + + if backend_path: + if not any( + contained_in(obj.__file__, path) + for path in extra_pathitems + ): + raise BackendInvalid("Backend was not loaded from backend-path") + + if obj_path: + for path_part in obj_path.split('.'): + obj = getattr(obj, path_part) + return obj + + +def _supported_features(): + """Return the list of options features supported by the backend. + + Returns a list of strings. + The only possible value is 'build_editable'. + """ + backend = _build_backend() + features = [] + if hasattr(backend, "build_editable"): + features.append("build_editable") + return features + + +def get_requires_for_build_wheel(config_settings): + """Invoke the optional get_requires_for_build_wheel hook + + Returns [] if the hook is not defined. + """ + backend = _build_backend() + try: + hook = backend.get_requires_for_build_wheel + except AttributeError: + return [] + else: + return hook(config_settings) + + +def get_requires_for_build_editable(config_settings): + """Invoke the optional get_requires_for_build_editable hook + + Returns [] if the hook is not defined. + """ + backend = _build_backend() + try: + hook = backend.get_requires_for_build_editable + except AttributeError: + return [] + else: + return hook(config_settings) + + +def prepare_metadata_for_build_wheel( + metadata_directory, config_settings, _allow_fallback): + """Invoke optional prepare_metadata_for_build_wheel + + Implements a fallback by building a wheel if the hook isn't defined, + unless _allow_fallback is False in which case HookMissing is raised. + """ + backend = _build_backend() + try: + hook = backend.prepare_metadata_for_build_wheel + except AttributeError: + if not _allow_fallback: + raise HookMissing() + else: + return hook(metadata_directory, config_settings) + # fallback to build_wheel outside the try block to avoid exception chaining + # which can be confusing to users and is not relevant + whl_basename = backend.build_wheel(metadata_directory, config_settings) + return _get_wheel_metadata_from_wheel(whl_basename, metadata_directory, + config_settings) + + +def prepare_metadata_for_build_editable( + metadata_directory, config_settings, _allow_fallback): + """Invoke optional prepare_metadata_for_build_editable + + Implements a fallback by building an editable wheel if the hook isn't + defined, unless _allow_fallback is False in which case HookMissing is + raised. + """ + backend = _build_backend() + try: + hook = backend.prepare_metadata_for_build_editable + except AttributeError: + if not _allow_fallback: + raise HookMissing() + try: + build_hook = backend.build_editable + except AttributeError: + raise HookMissing(hook_name='build_editable') + else: + whl_basename = build_hook(metadata_directory, config_settings) + return _get_wheel_metadata_from_wheel(whl_basename, + metadata_directory, + config_settings) + else: + return hook(metadata_directory, config_settings) + + +WHEEL_BUILT_MARKER = 'PEP517_ALREADY_BUILT_WHEEL' + + +def _dist_info_files(whl_zip): + """Identify the .dist-info folder inside a wheel ZipFile.""" + res = [] + for path in whl_zip.namelist(): + m = re.match(r'[^/\\]+-[^/\\]+\.dist-info/', path) + if m: + res.append(path) + if res: + return res + raise Exception("No .dist-info folder found in wheel") + + +def _get_wheel_metadata_from_wheel( + whl_basename, metadata_directory, config_settings): + """Extract the metadata from a wheel. + + Fallback for when the build backend does not + define the 'get_wheel_metadata' hook. + """ + from zipfile import ZipFile + with open(os.path.join(metadata_directory, WHEEL_BUILT_MARKER), 'wb'): + pass # Touch marker file + + whl_file = os.path.join(metadata_directory, whl_basename) + with ZipFile(whl_file) as zipf: + dist_info = _dist_info_files(zipf) + zipf.extractall(path=metadata_directory, members=dist_info) + return dist_info[0].split('/')[0] + + +def _find_already_built_wheel(metadata_directory): + """Check for a wheel already built during the get_wheel_metadata hook. + """ + if not metadata_directory: + return None + metadata_parent = os.path.dirname(metadata_directory) + if not os.path.isfile(pjoin(metadata_parent, WHEEL_BUILT_MARKER)): + return None + + whl_files = glob(os.path.join(metadata_parent, '*.whl')) + if not whl_files: + print('Found wheel built marker, but no .whl files') + return None + if len(whl_files) > 1: + print('Found multiple .whl files; unspecified behaviour. ' + 'Will call build_wheel.') + return None + + # Exactly one .whl file + return whl_files[0] + + +def build_wheel(wheel_directory, config_settings, metadata_directory=None): + """Invoke the mandatory build_wheel hook. + + If a wheel was already built in the + prepare_metadata_for_build_wheel fallback, this + will copy it rather than rebuilding the wheel. + """ + prebuilt_whl = _find_already_built_wheel(metadata_directory) + if prebuilt_whl: + shutil.copy2(prebuilt_whl, wheel_directory) + return os.path.basename(prebuilt_whl) + + return _build_backend().build_wheel(wheel_directory, config_settings, + metadata_directory) + + +def build_editable(wheel_directory, config_settings, metadata_directory=None): + """Invoke the optional build_editable hook. + + If a wheel was already built in the + prepare_metadata_for_build_editable fallback, this + will copy it rather than rebuilding the wheel. + """ + backend = _build_backend() + try: + hook = backend.build_editable + except AttributeError: + raise HookMissing() + else: + prebuilt_whl = _find_already_built_wheel(metadata_directory) + if prebuilt_whl: + shutil.copy2(prebuilt_whl, wheel_directory) + return os.path.basename(prebuilt_whl) + + return hook(wheel_directory, config_settings, metadata_directory) + + +def get_requires_for_build_sdist(config_settings): + """Invoke the optional get_requires_for_build_wheel hook + + Returns [] if the hook is not defined. + """ + backend = _build_backend() + try: + hook = backend.get_requires_for_build_sdist + except AttributeError: + return [] + else: + return hook(config_settings) + + +class _DummyException(Exception): + """Nothing should ever raise this exception""" + + +class GotUnsupportedOperation(Exception): + """For internal use when backend raises UnsupportedOperation""" + def __init__(self, traceback): + self.traceback = traceback + + +def build_sdist(sdist_directory, config_settings): + """Invoke the mandatory build_sdist hook.""" + backend = _build_backend() + try: + return backend.build_sdist(sdist_directory, config_settings) + except getattr(backend, 'UnsupportedOperation', _DummyException): + raise GotUnsupportedOperation(traceback.format_exc()) + + +HOOK_NAMES = { + 'get_requires_for_build_wheel', + 'prepare_metadata_for_build_wheel', + 'build_wheel', + 'get_requires_for_build_editable', + 'prepare_metadata_for_build_editable', + 'build_editable', + 'get_requires_for_build_sdist', + 'build_sdist', + '_supported_features', +} + + +def main(): + if len(sys.argv) < 3: + sys.exit("Needs args: hook_name, control_dir") + hook_name = sys.argv[1] + control_dir = sys.argv[2] + if hook_name not in HOOK_NAMES: + sys.exit("Unknown hook: %s" % hook_name) + hook = globals()[hook_name] + + hook_input = read_json(pjoin(control_dir, 'input.json')) + + json_out = {'unsupported': False, 'return_val': None} + try: + json_out['return_val'] = hook(**hook_input['kwargs']) + except BackendUnavailable as e: + json_out['no_backend'] = True + json_out['traceback'] = e.traceback + except BackendInvalid as e: + json_out['backend_invalid'] = True + json_out['backend_error'] = e.message + except GotUnsupportedOperation as e: + json_out['unsupported'] = True + json_out['traceback'] = e.traceback + except HookMissing as e: + json_out['hook_missing'] = True + json_out['missing_hook_name'] = e.hook_name or hook_name + + write_json(json_out, pjoin(control_dir, 'output.json'), indent=2) + + +if __name__ == '__main__': + main() diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/requests/__init__.py b/.venv/lib/python3.11/site-packages/pip/_vendor/requests/__init__.py new file mode 100644 index 0000000..10ff67f --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/requests/__init__.py @@ -0,0 +1,182 @@ +# __ +# /__) _ _ _ _ _/ _ +# / ( (- (/ (/ (- _) / _) +# / + +""" +Requests HTTP Library +~~~~~~~~~~~~~~~~~~~~~ + +Requests is an HTTP library, written in Python, for human beings. +Basic GET usage: + + >>> import requests + >>> r = requests.get('https://www.python.org') + >>> r.status_code + 200 + >>> b'Python is a programming language' in r.content + True + +... or POST: + + >>> payload = dict(key1='value1', key2='value2') + >>> r = requests.post('https://httpbin.org/post', data=payload) + >>> print(r.text) + { + ... + "form": { + "key1": "value1", + "key2": "value2" + }, + ... + } + +The other HTTP methods are supported - see `requests.api`. Full documentation +is at . + +:copyright: (c) 2017 by Kenneth Reitz. +:license: Apache 2.0, see LICENSE for more details. +""" + +import warnings + +from pip._vendor import urllib3 + +from .exceptions import RequestsDependencyWarning + +charset_normalizer_version = None + +try: + from pip._vendor.chardet import __version__ as chardet_version +except ImportError: + chardet_version = None + + +def check_compatibility(urllib3_version, chardet_version, charset_normalizer_version): + urllib3_version = urllib3_version.split(".") + assert urllib3_version != ["dev"] # Verify urllib3 isn't installed from git. + + # Sometimes, urllib3 only reports its version as 16.1. + if len(urllib3_version) == 2: + urllib3_version.append("0") + + # Check urllib3 for compatibility. + major, minor, patch = urllib3_version # noqa: F811 + major, minor, patch = int(major), int(minor), int(patch) + # urllib3 >= 1.21.1 + assert major >= 1 + if major == 1: + assert minor >= 21 + + # Check charset_normalizer for compatibility. + if chardet_version: + major, minor, patch = chardet_version.split(".")[:3] + major, minor, patch = int(major), int(minor), int(patch) + # chardet_version >= 3.0.2, < 6.0.0 + assert (3, 0, 2) <= (major, minor, patch) < (6, 0, 0) + elif charset_normalizer_version: + major, minor, patch = charset_normalizer_version.split(".")[:3] + major, minor, patch = int(major), int(minor), int(patch) + # charset_normalizer >= 2.0.0 < 4.0.0 + assert (2, 0, 0) <= (major, minor, patch) < (4, 0, 0) + else: + raise Exception("You need either charset_normalizer or chardet installed") + + +def _check_cryptography(cryptography_version): + # cryptography < 1.3.4 + try: + cryptography_version = list(map(int, cryptography_version.split("."))) + except ValueError: + return + + if cryptography_version < [1, 3, 4]: + warning = "Old version of cryptography ({}) may cause slowdown.".format( + cryptography_version + ) + warnings.warn(warning, RequestsDependencyWarning) + + +# Check imported dependencies for compatibility. +try: + check_compatibility( + urllib3.__version__, chardet_version, charset_normalizer_version + ) +except (AssertionError, ValueError): + warnings.warn( + "urllib3 ({}) or chardet ({})/charset_normalizer ({}) doesn't match a supported " + "version!".format( + urllib3.__version__, chardet_version, charset_normalizer_version + ), + RequestsDependencyWarning, + ) + +# Attempt to enable urllib3's fallback for SNI support +# if the standard library doesn't support SNI or the +# 'ssl' library isn't available. +try: + # Note: This logic prevents upgrading cryptography on Windows, if imported + # as part of pip. + from pip._internal.utils.compat import WINDOWS + if not WINDOWS: + raise ImportError("pip internals: don't import cryptography on Windows") + try: + import ssl + except ImportError: + ssl = None + + if not getattr(ssl, "HAS_SNI", False): + from pip._vendor.urllib3.contrib import pyopenssl + + pyopenssl.inject_into_urllib3() + + # Check cryptography version + from cryptography import __version__ as cryptography_version + + _check_cryptography(cryptography_version) +except ImportError: + pass + +# urllib3's DependencyWarnings should be silenced. +from pip._vendor.urllib3.exceptions import DependencyWarning + +warnings.simplefilter("ignore", DependencyWarning) + +# Set default logging handler to avoid "No handler found" warnings. +import logging +from logging import NullHandler + +from . import packages, utils +from .__version__ import ( + __author__, + __author_email__, + __build__, + __cake__, + __copyright__, + __description__, + __license__, + __title__, + __url__, + __version__, +) +from .api import delete, get, head, options, patch, post, put, request +from .exceptions import ( + ConnectionError, + ConnectTimeout, + FileModeWarning, + HTTPError, + JSONDecodeError, + ReadTimeout, + RequestException, + Timeout, + TooManyRedirects, + URLRequired, +) +from .models import PreparedRequest, Request, Response +from .sessions import Session, session +from .status_codes import codes + +logging.getLogger(__name__).addHandler(NullHandler()) + +# FileModeWarnings go off per the default. +warnings.simplefilter("default", FileModeWarning, append=True) diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..af2e308a60b1dac717b09f1e367e30e04a033e4e GIT binary patch literal 6481 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 jiGz)B%XcDo6(K?hao$D6T}J-u<#%KV*v(k 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 Wvc2y3Ztf?$9mfw@esa(R_&)(7Vw)5I literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/api.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/api.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7246318dacead047a06b7164697305686dd4e85a GIT binary patch literal 7548 zcmeHM&u`qu6()CS$y(WQ>cmb`2kxXUBCWGpT2d6J3s;FE$(3D079zP#+!P{3&T7Zv zlG`Cyn{|~oC{mz@qR1hDbqER_g49MX?#weiaEGn)2ydTC#oq;P8%g)5q?UDRCN&3Jk> zb1|c9ZuULxV%FW~?s-qYXt+Ii+vE0v_PG1qy{PL&TOXc#@yy}b=k}vD=Nj``{;|t{ z$VvY5IuE0;XxBvUmmOCww@?uws|Ie}<4ja*9`sUt{hoK1k&}oZV?JBE6 zQh{4ao=O@dYM(c@4`H!j=@NG!Y|HxL^nzs-P&hxgaOV8%eEc#qJuwxR=FZP29p)~y z3lj^IGt>%sTh`R{x#@*z3(R!zQkPzdU3mT6gK*LHp;}4^6a=*h3bVaDn-Y#H%4UIi zB8*s2W>Fn*3W;Mt{vGAIC~+UTZy48 zJU--!6`pbsOSsKgo1vw^Z7TkunEUc^DGdBBJ|@`N`SY__r4+U&F562ms<|dK?kCE8 z=&35)cDcNl%!%8Xg@rjb6L(9eX$Tl50qnl(aDre(@STH`>Lyj&SzB&j!GjG=GT%8c zfd)DU*OoQl+f_bLVySk9Vy%Rh1%MHFf6>)Nq3RvW%Ezvx?nMH4j2QQwz$FL)b%E{1 zfF+n&mKs`phcO-7XGx1lr{@?0Qt` zwiQ&wE`rbs>65X%W{1Ktr^GU%l{u-z5d(Vyy}QPXM3o113PpFE&`i)^RojO%;b0nm z83Q+L5v5$gFju)ut%LkXx_~8)(8L);6oaV1Y!Y!9V2YIcfRmTJT(Sl+whzb55*7+f z!s^m-lG;2wm6XD9D_&>9zfwrbz8aqlO@UF3l7tG|^Mb~rY=MG#fejAOU;}V{E4(?7$LB&OijzF5OT@!Fp(f!Nxlmk!A;i8t zMvo+Tl>o*hIc;}~6Q&EHz06Cc_=U0Y@o~ye193G<3=iBl4#&@}EcJUZ~vueXZ^j(w{PFRS5s$wxDSke z@c3}{PsUj94SlS4wrk5k!dF{{@1oGXWpMR1t&G%vO&5B+6+mL2wO#Ba=95ewkZA*{ zJ9Yn`O_$#~{?_prg(Y@A$=De{S#NLk> z-alN^74l$4WGM0g5!xb$WL4-aNz0OesmM4rJqH4W9@h3f@&4HQu~z>{+#6+(>pk&H z%Q$%poir!i9O5NK#8JH54G{v{L)sVu4VlYdBv9~K5=wU&508*OdgJ6Nl#fF&*D|pt zloDuH+}6PpC`%&e@C%;>fesFm4!*zcwE7FUH+~#HTSh^C3mxt*{gLaq>6x3=#$lZ4GgjAoBHddmTR7#B(2|>kP6@kouJ@$KG+j35C z8nh8WaLj@CgsC{HJPECZohW(=6_Uss)G`Y4uC{ep+tdGfjaL6FxNjif(6eQ{5`!{5N5n^IzKW2$@83Z!yk{wfC9K~euARd*89y+n1LpwYJzwZ#7bsw1}& literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..df06a5a41443b7d88e6c6d6143f86f5be102a936 GIT binary patch literal 14675 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e6686576000d3d744319fb1eaf9d746850e37db4 GIT binary patch literal 1027 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1072658ff9ed5c39ca620c5c4c45b199f8242f00 GIT binary patch literal 8570 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 Jw`oy%|1Y;`w6y>L literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/help.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/help.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..25d1f02a02a6ce1e8178b1a7eb68ddd3112930f3 GIT binary patch literal 4565 zcmb6c-*4N-`6yDNe$bX}S(5EEHf6h26~|H=H;J1D-P$!y(-YgQfm*G#{lreWii?0F^hGAJhgt$`GZD0`Eb12f8`PpkQ@dW zlOq6!mAEY2^bzZ@;6uvrhtT_&3~3>pR_L4Q+fHB8CBG;Z#|ZpyjK$R8m*xzF+_W<4B>frC>wVwL*cQiyIP_6%)Fl zN=>gQnqicRRK5rN(6aD8_z!S+51E9IS2jESUd?w<9sKH9Hrzu&ttI5gC>ZS@K;!dh z8ZvvA$b6)j!K0~7q8Tllfp+g(@ceh+J6t~msULSF?=auOFVyBIb2sT~{DkbkOLuS^ z({AhE$z$F3A^7p*jxTo@?Hu?b@B{t#7|`%Pkj5tmcbGb=GjiyC*lU@v^lwn(RmH4g zO_W4gEt=vj)!Y!x4Mkk8nH#z$s^v;aDJ!rIP1r=Dq{*VUp|aty2xS@TTdJ&xtGY+1 zNo9quBV4?-qQ3U+OevdU6=RT6s)@L&kqw^}7j!HtZ%Rag(;~?JiKo(B_UWgxbD~O= zEtTM>Ao^1#Z>5Rw^aU~Ptxca6)1C@s)}>7Ec&fj)p&H^^RVz}{Zt3`@A+9Qh*)5D1 zyj)wZT@Y1GtVq~Yi`9~ZPZRMKtglL|r5cqj>x!YJK__4%u7T>WxDJHg6|8Hn?qF0E zv{iuF76?+;U9TD&dbK2jY*E%Vg|ahsmy=#KsppD1_y@j^u_0BIwmXYDIG)IYPh}`# zr6id!DjQkK!r?tHI2^HHJNVX4mR85VrfO2jK~BI`(g`1_=b9d($3?6CnCXro$RF!x^m9Dz#2LQnfYR@t37d9YdpPZd1g% zBVeVZNCto{rQ~p%x=NJkKPD>CJ8tteNX!w%uYZxdZb0PAX_6_GR8=x-WqnOmRAo!b zE!RjKEW_5_1fLqYmtQ}V1BqBGcJ-R57@o9pm#oMFsocT?uo@K! zXqP_dkeK>l0lwRNDD=HfobPkS$jtk`9i+vlkl8se5Q5V_NKRUKD8Bo|Hal_t(ep}X z&8~QVbONc&j!$M~4qDc0IkUfQ9Gvw1K-o3!p=8a0V=KGHJu5kxBe@J%;hk*mtbw&GDlZNAh=qGFuP6 z&DDcM6OEDmz&k`vrh3Q}k0@lW%5?h(#;ESE`|4bstq1BnXft`VS|#V2K+d)8CoU_R zf+dp#S~mib!;3^psVkAnLR1MrU^11m!+S9YlTUz&j~6l7n;9P+I8iTIYKIwzc@vX; zl@V}^P!Kzvu*<9fNtF|=8gPn1K=BBj5qE+_9z!t;5bw$mn6?#6Qn4jS#a33XVv_t~ zlD{}Z->^_9;#$Sj*RfRDsA2NkIKg(z$qc!QOcM@|6BNI+atUKNH%QQNITMZXX#%JW z-V^JvAlpeSEnixMPT|I-S68kqEfyB9UwiS=s}8@e!0B&dJWB|vR2D46B#m+g+Vb0u z$%LK0_9;=IF+O%IP}51lOH|z@$w!TK5duL#!s?FTbZLJE%4D$HAMTP6NrY(^KS}h9 z9(@uzYmnc8D^?e znas5O>}a@!0Nn1o-FNsfh=f=RaekO=_H+?r()rXz1PZA6&e5@)O@~?73#_xfbgi4Om>f6?9S0+&y_8 zP;<@L9H0gRjVr)@DBc{LX}khP-`}>*U%Q*PCg;4ma@|VYXe@zV@kx7Z)=oUWe`5OH zOV){}_NQm=nRl1$_>>)+Aa(q#J(95pMh}GeXUQ~hkB3{MQ31?wfj?jf@Qr?+K85}q zy~zHZxyTk_+$m&VlP&sS4M6Yx#U%4y*(6y4EoSGoa6Iah+umQ;-Wb@MyTeJsLA>#A zXOH?tGIwZ?!9BMD&NZcKTKu%JN0Y!q$K$421>eL9^3 z^qAFKZ8Tx^)&t577wR~fn*i;MZ>j zf`t04)mvKv@{d3)aI4J?H5T3Hu+@ixz>sA|j(|Nd+_*wn+p%QhDtTHwtRVb{MCLNn zLS1lynP=b+>VPfA$IQ1-2ZRwP+}_?}M=f^L=7Nov-d_0SLW4dn7I9-RZJY#0-wWi> c-}q$dpR|HOeD#6lpDe?Xv1@u_cC-ZW_*JKxOvv2SMH_jdo7 zowX6jFKDUx+(781Rx-h7i}5@x4v>%5k&hdA9s9-}S~q+X(DZX_sA}!}Z436zHj_%$ znqjyl?I&-DZ9i;sNm`-59WWA!u)}>OiE1+9(THyHfGZA$dMHxkgR^8LO-5u_D%Psm z_GcZ+1G))0QpYXZ-q;XKMqyjBjg4D20eJ{XGaG5JHWO4apVURzB9xqEuGz_S7UX3Y z)-x0VnJ~s50>Gv59#XK%WEma7@;FlwT;5pqvPx-l4#ou-;}XCD;wVOstX&-A2Kw39 z&#$4skg&j2H4>wCEwNaKwUyM{5^}odd?}fbPMazka86aX71lZ9tV5mqU9U++>%IuT zW}cGH?XMP`fKkzQqpoU(Fikv84Kj9|fNwez$0xPx*B!|f`#7TB7Hu%;L_Bg_2=hbX zWW+gXNo!H})L!(tr@XKgE$w{ZvpU@llsoY*2BAj-xm5cv7`&*86YKW9dw18;>kHj?Vj3WsePatz1lt@8c?qD0hH1{|tP>dtYk*@l$pua6KIs(p)U-70RMMb@qF~&YV0#=SSGpPs@IK(<~ z89kcY%^4`p#YP?WiOt{ek9gOLt#6Ik+BNpi#fEN-otw*CMpSuCXlai@wPf0Lp~`{lLX(&crjn^9l~gHF%_rs->n2vpMlz!(SHF|w zw;of`kV#IP5<8_U^+;VB{ap}}mHX^aX^eOe+`7_I0`$;};`#pF!Gqq)uz3EbJ3rhR zc;Bz?uYx*N9HG2*<$2-V!HvVKPYac2g~|xwnfc+x%Y)DRE5lNGgv^;MDfE|z<@XOu zhy0|x0MDN{Cv*Rc;avG-t}>keXfX57uuwY5l~OKOtGQ&#b^XwDU7>kQyC6N=|GMRL zdU5g>SrTQ4(+tW_0Y)aqcx2c(H$oaNA-mKs_N-AJ(&_N&JU=H{2?5_4~{@87L zn@ z@0i@dj;nC&m>gus)i@rS9Ad{ck)6?9le^e)ZDezDJ6<69yu8gxQ z?YJU@#(!u;Dg4W&&ai78xYikZ7FSKUihud)bL?stu6CEy`FzlDj`Q^_oVSaiZ_bC} ziMT&H8w^F__Sf{A-9B+C92anLJ`xh9XJd&#I2IQYmqNmv7>)+S>%#1X%c1E6r3Dhg z-0ZcGD4bO)wf}~iGVbFGH7~^C^K)~vVj>hgGZzvAiSTU9XD&EKL({nPQBj-~3st9Q zr`d()0%BZFb3G@{CT6E+BT^R6*-#)j5srpt=Mz$j_1wAB>MaAt4@`ninI#;n7N;q2Ni(PQ}oGtD&iQLJY?)7CiH@ zFsmUPp9;jM!(o(j9iNzZ?nodWo<2OExa6xSSVsbpNZ>*wRB)d>cV=AsL>12l=H{p( z`-MOp{md$LT$m4|Ju$jTp5xO>=m>-d;#|`U5=xBj0GE7Cp|;Kio^I^ zB%CPNaWo%etw$Em)b#A!bpR?obvYmws-RM5~lueJ&w}0#V#0J|9JEXfROrU}z?QH#c<& z&lX35nO+4QRF9xHPsHM(SUgOxYZOoDvlnVn@AQ=^>G7smi^7TP(xV6PuB7fj?-eR9 zV${c{X2R&*Ks2PBQ?F0WCuRzca3Um5#UtVAP`pqj4HUWBNH}&SUU1OFnN85}2^ZS% zBGLY-AREh5Vkka`N5M5|@Dywq`lt@~D!4Jku7s{r`v6Ohf;V{|?|C?jpCyCp6cS+-3FbhdBC?dbVgt8ZImC=N64gW84tr@yjo( z*h{$y{U(k2@;ry~DkfVrB~4=QW@Uqhva*}q#Z;OzXk0dH+o2pMd3{dwmuaEt2`hwNX!cJ@sR&3e&8$q=>q4oh>fVDV5C82nnSLF1sEU{3l_{kwBmKl?Ab6O zK2tmtnGuI6Ge0Np$FF!0AWqE@X#48F9C#rf65|8FNSIsUK;n9Ib|xGOhpq+&p1V$H zBMRKeknh0pmxcx+p@0~hn!BF3gh4zfT^aCS4aKew0I3W}7k2sw2L~`|Lj7}r=_`SY zq4>aDcy3?{*@Cm;0F7!|4hE#D{F1YSsOCehBc4( zc16mZcX-x0gRL#^biZ}-&6DZ)%`>;oq|PX(^I2zW&e@uAwywFoZ(V!y8ZsnrB{SCM z$7lhk8^kswut99cfP9D358#A4NI5Q{4mggRG3b{}(U9cMafu45UD}c$xPFg3rS*Ku zCK0ts-jbYtsEu;3eDE?_wP;v0>e^~dFj7$}roVICqidNFQvx*<$%{B9;6<8#M$|q_ z)9Ljqm`)0TsWgTC>h5XK_K&_!u{LQ~*7QfQl3>X+i}6W=u2$0%Yc>7ewVLpjbZCd? zZq40VPSA2AZ%ICAzH8C9{2WK`(pRzYe=*DlQYIi`5dg-I3*nd$5az<6>5woxBM_zF zx7*o#1b8VNi3sueX)FrynfXZMx*)C1+6t~+3dL|9kB5RnAdbpt^%Z7C91*@pt!i~c z{fYUxNGR?X&VT|C1rSAB02Fe zm8zVQicPWR#}~RbL^S$Lmr*bd4g%=rw^f|8E**UT+($i2r?U=U&f#0iX2F zRTq%Z(w?lVGw14D=e)Y);jC**&b4Kob0fL7J~g)5xNW5-+vv|V`qw$TtBHZP&1pV8 zv|8P|bm61kY;}LGx*r(K+xF9!?w|dnDZBf0Zue=HkZ)>Ps!1QoH#V4Ny4Q(H|-g7xZ}^^R=yj$HMQjC02t^@BKq4x83sJ5I%m zSAqB5!JLS@wX+o1O*gl`!zYZWLf(?R7F+7)m#D9&WR8A^2L?3g@D)GDhfA;^aGwUZ zB)JW8fM@_V`z6DbrbV-^b>_`m2VAMez95kFtp~0&16P`pX4L-uMN881`dhlXElrT`akIPou{RtwY8SB-JL`TqC_Ff#z?qV&)BR%ntn#@VZ4gS_IsMbVB zF<-JG=}g*_w!1dHXkgKmbS-OENlgjsUAulH5h=d$ikx(n=1lXqjENpiZ6$M`y{*bc zcd|0+o*@y0Bk&QBOp&g>FdMusfJeuor}FFr#IyI)N`mE)k*B}Ul1!{!T=)Z4<3DgM zma_jxS&1hgO_8gM2CfSiLdAuCo5G>?33LQmi?2`EDbo!?`PDuqqXDaaeJ6HXA9?<9E>o@I(XO?AQkVjwav ziG{=yR1c#&7zJ{gPEQdyNkF1SBz9bU7AXZY>)?WkXt072oVd81l5IrJ1Vk}#oi$1% zELfzvWHf3>P5)4C^H^;E9vsf_cfRagCz>HW)DmoMi6vBb+6_GPPvb5+9`=kOY+A^WOV zSgu)aTB*u<`*PmClx5Y^zHDB0Ai>j@^Yo?6YfZvB=dsl>aPws9XnN)_uVNfM%<$`*Phy&1&Q7Th_TITj%ElZjPm%PxEWu+SHLe0ea4k_d_2| zEWMI-Z_l~6uX8q6{c3ex`kQa>xxHuU`S0yd@6Wfky*-vbvSe5?tkyOxdEb8V_KQp3 z{N6Xx-^h1#zI~EiIkI$Qt!K;I5pVcGDgwrlxtwsuRdc1xyq`$|XJkgu&v8y?|~ zo$tp#I{M>%nYP_o_nw@458CT$&Nnor&1v(hw_&Mj>BX$KJLl~NQOGWQQ1M>HyS6(v z%8>U~rMuNY>hvGNmGG?&|c*8Fxp<+QBH!ai5h~ z44UavQw96flq5>Vv2$wboAZH)e8mcM0vTE2x_AV`x8MZNkqA$NDZ4Zq6we_^i~)Si zu}ay@5O-55feHM_F9F<8|MF(nx}nO9*9Y*qk+W33@ii%78)vCnH#D0u^Z@8m)f+EM z3B&Bt5#9_wfuMS^m?T}08bP<7#=p8@C1cy;Cj1oTbtJ8WrUufvNmI~BlB9xHp2f#W zuqlb%2r()f$$;qmaW|?2WzIv;rd;E$@?y1?0txa-{?ECf;r$X38t8SZN8Z4JYqz(}o8Cjyu3`;A(;J{WMoYw;rSt~f zm;Qa0g~sRD00K`ghAslhgP#rvBslgj_%*r*Ap}WRLWs|Wro+J3!9L+y7@|BWmBymb z`4!*EmMxtSiMnzp{vVG5oZ@)KFul@TA`j&^7i|1xeUg8XdxwXJq9q9N!^ix%&mb*h zg#4j>F!*;A_)BqGCIx{F@vm$LE{0;ESLeh-3qxf?#;-gmlaKokM4&v0#1Hw^GI`V# z9|ZVc@ppsEbU%lEW$@?rPX>Q|DZBSfZtoc+EI%(@&_a3YRus%k^e%n_l@!~`mRFIM zT=4s^VucQVY!siSQ#0$wf{B%)5sbA=UdD8dU1b( z#LgD77e5PST3?j*Y}HG-s+Tg(mmWE4Ap|&{b@b#MJ+$aO&*z<=sZ7|jNb6l5BRN2jmCZ78`P{29v8uzO4>)bWoXIu!6hLk?X zOqdfxSHrXOan1aIScuIJl}tPvO3aJU?oEjEAre55mXC4>p;u`_VXll}fU!%U^NN(= z#F)=0lH`{pJ<-{#A!)qaKuTOU2;7iz$&-_f*@cesVNjB#K$Q@&hk;->*&3hlMj`G= z@A?wUGQA58$X7R{cc*vLdusgh%P-@^2Y*NC=03C!8UHaqWE}UI#aX0@a|FIg;J+a7 z_Xs2ij1V|X;Hm=t8V7M&0dA;&>js;d27(6Gfw-WAQXthxl}+Pc-Dv95_IMaTyMRm@ zZ5TSGe?beBJ3JN@6P6Zp&w-l8x(9f5dq_`IA& zI3OP!Ixp*TW%df%2PivcY3M*M7ZL($$>*e$pjtyo!lCm(tCzylmq>gGC0&B5q0xk9 zV06g!4>M_>Ag%Gk0%;TF6Gf}SMy8w%3W#Avk9M^{B#mfhQ!+n8{ATY+)sf zMAVuR;9-QhNMJgo>nYN34hsYsn@um}iLDj30THmiA{jPg!qEa^^VB6&<`LyrA&GFM zSH+GcxjOX*(}O9!0p*$hKWk5rLU>pp6~1sO5DP{?FyINd(NyVU0(_tJ7IfVwY1ZTV zaU%*Nz>?w6$pEUD0S8VeY`ka(0J=>X0orlRmP&nnr~(EB7oeYG=r_*ZGc*&RX<~s0 zCNtD_>Kw)K@UWtyICSWc5RQ_Sg>tXBJRs-_ZZ8~EFZkuzyKU>SqZ3>EgsqnniMjaj zzySST2*>=h;>7_N4Qy592yzvE86Rv@(hro(e&HLa@RdXC#^ci(s*qFZ+6xk0YrbK) z$U#zRhP2frADf_^GTtzRDcuN-l|??bKzeGEk8O}EYL?3%0$cuw@Fv@m+?0AvM*-V5 zRz2%W>nTh~fLoZ%3Uak1w+vibz9k(==iL%bAc(wHqS~ia3Oot@;gm}0CXF~#<=aUU z&Qz&x(u^}z8Vl(iH$?&nwk0h%Q+pKBJ#I>s>L#r?Q>D*DV)_h3V!n=&;&%XimEsmU zrj=U!BY=V#nxAN#t#$>A%xlroBYvI01p*|U5$gd87HMV|Of+#|wjzykpNmm`;(tZ? zHY$6IF8m3B?-F1)r}~(5gvm+b)MyZj#Z4j^Ni!7-C#I$rVDux&{ge~~-f;W@ih(L< z$mxSW7?xvn`KO&ijNm0Bo~8`_uL>CSZL%1fz=e0^*BwRBawYGqH#qRaNE zw)5?&+fymiE&FO+)6(t__P@9P-Gg@yX6t;pIwl?2K_tZvNdf>01QI8`YV*IYY{RiS;c#4>O5Ek*MB*+NrxAC#IElE+#VN#HE>0lsvO0Y*X_5XT^%?}-psjs| zg|CqzQbL?3tF}Lc=#f@bF%XMK$<7H&EY=m^TZyU;C;UG9=JSNji47);&slJnAlO2M zjDr90+CDZ&)Abqju$I#l-$BBHTbXAHil@O4z?B=^BWJT@a*^WmR@+;)H*FxdZ|~20 zYHnLGq;H?jSJmC_g<$Mq0wwz=LigQo*K+#v_D^2 zm3Mhzl|oQCU9ayjx36=0Fvj!dK41a`SlnhWRL5mNqVA~;)A(06WspC96G?jNUJ?$K z()V;8^n$wQRqEaX8owe~0cZ``g4QzAE_=|1YmT5D&>5@>I#AXXbmFWsSRJgynLFsl znJ4H0^fGZ&jreD1P{4=wktRYiY>3V$$fEHNAo*qHp^vTmB)Nwn15u?!VuoG~zzBkw z4&WSiqC~2a5@A#30LFdH>HsqktOrR!U@{7RgbW%rlTseAaY}T+doUsYDybCuW`;2AW zr+h0lRm3vJZL-iBph-vP7wy7WUiEco>)ya1liQenPFnReGpkd5jk-EP{?3b$M;2Z3s$B`5yVjNha%%M1+A&M2VV|B)^27F2aPEjJ6ajF#kBL zx+~>Ha7rSK3l8O+Ogr7mi7a9$Cdk9A;8b$Z@G71$;@PEKW6Yn=@gGP+$BC3FQq2-^ zC#~f5&*?=p3f4GJ<8>Lu7~yPlJ+wAIur@D^WvyK~YgfkFmA5({S{oi%8|Zr*~I4T=3FYsVU6*0k}vYCNLObh(u>C$()jg8f;Jk*T#mtnDw4D(irI^}8?hGOs z;)w4PVECG`jenm`mjHB>>&Hk~s3{%qRLQsL<;8LN2DhpqUx_kJ@nFx0cEy1?zkT5D zfz0-i^yux=l72Z`vo%+pcOk*fNL(CP7}bk|ihOf> zuGydBVZ@wwdt`!EXKqI?iH+YR4kV>sag{{pB30U6@7JpLv{#nZ!Jy=&U;T?Nd4bxM z7#%O8#df*7B(x}@KaKnq_|GW47Gli{W>}HJT|{Obh||}-fMp~sw3WVqISB#D*z-+# z6(k;@byDJy9qwEENuSfyyRz%<{)gKSJlK99yZumZ`=M;p)48UnQ=_*|rSP|I1<8{{@{BQ%f(;BR<=4K6LfsTO`OuwYqmdxgEb+v`meQBAalSOYq#0C- zm&6b>aJ0Iwn~b)0@OWoZhTmU*cutT{JGj40h47Sg~k@F{1!2VU5iFWM8dmdRVv zUX+D=m-`O9M;Gm{*{>BxurXezHL47nVQ63oT9~;(#rq`&r{94XH(sr+U(Rpcz%W5; zW?52Cd>83Rmn)T4YJZa@c^A#G!+6TJVjeuD2QyOhl))0xP%}f#o4kz@14x)NKe4`~ zX^sy%79B~42s6x}a{)+`&XQ*N$Rb*i4&wXIx%UlnS_S-}T#FT20zq%0p&jLA=CN*_ zk!OiH27Ir$O^iEBb2^hw(V4WOeO3q(E0a#N&WcLQY@LWi|6qt((*JtOULkvLUsAx09y=eJD6)Q%_P%X63Nd8;!V}PUp$`xqX z!a)IUoS}#x#u$9>SG-@`hq7Ps&xlX4-z~lx$q3>UP8p77)`kU3gsdH5+7}`3*Mc3A z3o#KVyAnwvPGq`B$U*D^fB;>*7#F+goJP6$PYC>D0<_vn#!drt)C8c&*O_RY#DfKk z^zf2Q{lB3U6DfR(E@UvK6ayEdV0H?8s9=eO60i&@*r6tr{VO&RxQqV)l`S-vt`*8c z4z}k#S|F|g{le#>l6)?v-`|~ebmSZzWNy)%ud02g_j|ptK&$G`RduIEQX`M5YSYti zZ@axMH3C-HUG>)GH!t6e+=`@(>vqoRPIsk-Q^QNsAB5ivzkB7*m4|J+9<=Sc_hPo~ zK(6gTY8ZxsAOnu)omHu^b&JuqW%bap&y0T+`&lgO+@BgtkAlxIEeBVQ-rIX`FI4|% z2XBKrhXPic$dz7OqBbnBt(w?mv%T2!JDntF3;X)^2DmUC^RMhvqy?9Eo~%T?{mIQQYnIej_n6sVi!N0S`%$f#z9Yz~(qS;zLA z16Gc_%})gJOt!W^SKFT&TdQq+Si9{(?Y5P=Z0(L*?T(Z^?|{{*$<~#3qnC`Xu6(nQ zX&Au1JS_c^HR4)BC#(=F8{h9;o>`f>7ra0ENzZ2unVz%RrgOQbbJ@y?T;)W{C@WJ^ z)|53)ljc)X{gD>#(-!-Yea26>R36!7{B)NY$G_ZHJL=|s6CP~y*0f@UG(Ffc757HHD-6`f{v_WvbB0NF6#@)N-> z6YaugXj7I!fND33+fYhU-;tDA^bsJmf=i?YVwVaQsf73vQVM2fTTtSXCH?@H78Eu? zG4xQR2#R(1|4jHmVz6M5+ps-b-6&3Fx$E_*Sa(7*_H9^T6dr-R^Pfo zsYGH2v?Q8JH2xhU8iV|z3I8Bk;^Cz6^@~Bnq8UV#`i42pdq^6~nSw=AtgFn>s&3Ju zBO9TQy=&GJp&+FAMayfJA|a)F%TMs`iIaB^jn=X)ShCD6niB3}COu&otkAbdcXwV( z5+-Uib<}B&Nx~v;GbOB&le<_lx)&>w72@SuoCpMDKLZD^Fce!|Je6}4qd8~rT%f! zAU1)>D;nx5RpJ+x1|`-A4EKOFh#dx2dm814uqfL~<;du7RfURLbt6YV!s4Ei5$Mui z7ZI=kcQ*tpF&nvM%{VDGB3a@y44i2etAlRs)5G%FPSz2cUh+_XF#8F0Y%y%+gcuJj=EwjUMU8<~w?QQ|dkrS*F`QJ$!eYj-i(|N3!ITI^A`64( zSj-1#kx(I-`;e|zGL#~X74&CJwFK4IbYwmb0ki+BO6ZlzpQZnFD0Y$AP)N}?7Q7Rr zG@gNt-cdOa2lGZ*=+HLr)&6VOuJtpEFOXuA!)$Ot@sa5#ADIQGa)$}>|7k5are~w@ zFn*OD4NkrD(Yd%}o7ss6(a^Hb(sLQ{+{~(1@~inH%JK>Uno!~(WwBAcl1QTRFx-E` za732QMOtAC6_7tLx8VPdijcgnP;us*RKOwyiYZi&&n8Y#tB69CgMEmEiKJyKMn~tU zWSv5Jk}?r_DSigJjR^#OHfcEJot0%G2UTLu z%uK`&kzHj;%2qlWEq_bP+#(};*DFCC!O8^M9Vdhsq{8l7GG!XJfoy8=r%ppk;@Y=b z-;;KORH|zq zezB<5v@HccI-0HS%~dmJnm*k6oo{{bTgy*n>$m6Xx2H{yYU&?(;LWpiIqUJ|Jib*F zNqltqr`&qr4c9{b4v@0pVVt1T`fLY?Fl}3H>|EaU zZu_0~v?Xo%anF=4UQ5Wk!kJEdi)uW ze{I)6>3m1lGnnxV5{-)rt*%pie(Uy!TlYQKy6=9^CpFovW4WzkSx2hIMKM7DWXu6b8_bhW-?x%0 zM{u%|)rKis$`;>)fqJX1i~EQ6!$#wey@!nd%#4Fi_qj)G+%Ij7BR$4ncJl-eG>+DB zzp85;-DCXKZXQra4%0-Xf7xOu$-myGC5pX9w0W1c#G8^0=1h7S!i`Eu8aBNHL-yu{Lo%|5A*L3?$_Bs!#a;>uu*Xp} zf09a%p=_Gq*9L#!#a-N}#XBacaKM2P9bf(bH zV8(_r!^pzOYbO8D31;b)vB7f^IFXbXH@4~qkA|k!zef1;Ys90a+GRvnF+xKH(LE@X zYdQ*>PgrqJc`KnST69{h5}Gq;kbS;wI-h+0y9i=rK+8+xu7EewXt*}^vQL_dIxzk7 zF+H}1UQ${N>O^CHR$4}xC~()bK^CWVqn zoB{dVk%c+@>@4$hpmsuRP)cj3%nJUAS__31n_`-2UMyt|OqzUXyxTR)VmA4(lxZSP#(`|jeM#Z2{{^xpK|d))~9L*fUgjd_c9e`L*&PW_S^QBVaFG_?Nxg9}k}>PE5#ZDN$7g++@E3as_IldOr0I$J%`^%(3wj=93_K!%5_;VtGZDkmt{jFr#01AxHuQ$r=k56taDhAX`#M_lUz% zovf;)GlZb>3!`u>f+v8QvNbM{iPgneA2Sn^YE>&^Mq;wv7W{@(8!&hzgc1KHLh)-5 zf`^=wU?WdrU&-DKmiEe{sC7+4$U7T@_Y;iH$hw}b2h*^2gUvsgfJDMGEaH#$VH8Ih zxhoagu*}M;=r|)Bj$Ma<`2vFH%!6WOcTz0y1$y%H=ZmWV^AbQ`vd6p>xEg|ungBaF zbi5#$n)Sg14KC-BmbO#s{7&_eSaSdE@dJ^QF-;9fZ8(%` zIFxeb9Ss>rcfMzc7O$m-tg|!2_I2opdvK+EN|QK+n*5lY@oB-Dqwq6WW=6SJ+L)#U z>E#<39SSDzUZ|-=iFF5qO6HY1qY&2`m#JnV+P$_y=_K0|FlsAj(Ii zB}1g4A=1N@8tDERr4bk=wrU%|4fT&)v|*r2V4K_AMaH!<*aE)miT1ipUoyq(Rs3r|`GXL)iGi25Ps`ob~R2}EdU>LqYLhqKM88mj(j;Kdxc}fgDAO7Dnt0>C(pRW`UPAXUZ_*v?PoEC80i*h-Woe zbTt(9ydZjuhF}-zOeKw3ITF>gEkR-%c`FS8hEn8R!ZxjN`EsR_TFNV;1QEY%WA`D? zdijjG$c#zmI9~C8M{2>VybAhdk!K6$DY)Aw#J|PmqAI0e6a&{JRqp3>VV%IgA;6YR zwn|!w#!etEalu9qv6P_%eoT4jHI-Q%5@ucSDg#V4C;mPym1$gq_e}${8_suZAuHjw zd~GB2Dt6GeEdnJp{MN2hxL{#m7RFZOP!A;2V_a$=(_}J6W>(1#rmR^R%GUdH^?tg7 zuyGASuHLuOQB>i8mTw?SE%+pDjQ?N(^69Si` zD$P^NX`j+#)94|mBUlDW%eXpNae;;^Wq9ldpt~*Ow|vtNSHz`IS_Mh2c{+lihKd#2 zKSyDm?GzX$P?F?rrhP3^(yys~)hL1XS)CNH^rlnlmyLRc+RA!n3D2NO6Ax#T7nzNDQR3c(}^Xf_B`GN@TdGc2p*i|Ua29vM$3-h1QiqH z^h%QN8*bGq2AI5$$^x{%*d32>aTQ`ua8&EH?caEm~mYM?ZLJ3D= z+)%6HaQjh*)Opq{iXT&K!9wkZ4f~85u~TXUM!%hj02)2>9>5-4?@tHbxZ+6;apW5OJV`gm`44(0bND87?Km2PF==BdLy+A(nQwUnX`6gl)W4&P;avLL0YpXIYv6vrCj(1GX)3P%TT;J zreuDG$Xwn0m#o0^^oYba5q=t6n#i^GXWWDGZXGOdnTi}~0U~sD8Nbp-kzWE=kfAi% z#xM=^;qw}zfI0ii{2$1PT|0Kju1EBO7{^XUm<~o@k#iVE2(+rnX;4uAsn|Kx;-iO580h3qyRuQ_1ru5 z9^;36k5ManvPUUhmg3mEK%ntz0cbG>nZfX!as>oj~>uWv-1`1pkhg)|8$CWor%TM?HNmyAAQ zQ8}cT`AUajm4;{pt3IPdKtN#RqqqGax&9B_x2#7@RMmn@?EpIU((@AUFFkL~t%Z!W zvHUsc8Q60?g9E)`XK{*R1gUF-Ui}i(1Uh7k;~5eI!Q=+^J4EZqrZ@-&BuBc113S|d z(5E**|6;Mm$ccopj1x&Df5!)!gbRqu4~rnbNYVnZG~_){u;3d%nCYSsyTkWa6uc9Wf{?D9%($`Pz@><_1y^I|K zb(hj;SQHqw29GyORK4(BFm2#v;w_ffwjQN1A~Y&B6V$;*Jyo%2*7bxTX<}iD5WrpZ zB#85tx1{A}se%qc$uXMDfiH2B6O5FCaTo=~V`B#hntdBcQo!Mp67;zU$w=v-gsLcF z8a@*dqwMNBAWt=!XbxPR4F^fw7@&_fNn=uCm=SUeMW-?AVj%CLh{lI6bYaq}6-D5D z5K<{Ve0l=(HZ)>nh$h4_lxe!+#zJg9dV$9Ej2yKA3O6Z`f?5;ZU3(i=6-r|#ogF?P zg*6Kk0SgsXC>dZ;g&~TGMv;d!RZ)l(THi7Tw=bU5S8);!44?H=>k3i zRJ_I2K$v~sOvQ;siyC^h%9t)PT+_<@pkEXINe1)yXFxfBYLJ4b>cmvWBDx0GqMMxJ zyEg8o=K97?oi`0Z!`+e?`$r-D`<4+QR}Fs;>_BV@OadW4c>|MBv#1kwm)e8Cj+%Bg~C=6*-_)1ag$l+#!+%lD%tMBX+pr!YGuJw{w?*>tGut$nYZ}bd48oofd7!KOoq0%n=4D@+k-%yb z$>*E;a!q}inm(x>avJjDQ#A@8Z|cEpQ-7|hKU33Bd7%3B`svqd@(TGD;m+|7o_+7x zmELU2?p(|6^ijy{P`tJc`i6W{d-@dpt=o_n(HXY%rbcs$jy+C_;`cfaazD2p88H5$ z!hN{T_=`Fh9e2484;gHPcXf zh`W9XVfT7xtqrESn*l#8q?p5;*;e_{<$E$G$PGMopWQ~9`BYe2c%c!$_D>WKiw8UzV7t2NYRzl5zCKI1ZB3y2xnpGTtgF(MO zO?y3w4+9l*%cg|%p&Y#H@~z~4COA7#Z&x7-nTXu1wTE9}T#208P z|8ID~(xQM5Xds?b1#@xS@}PE0zP{t0f8EH{ZT*}x)WMJ*fIcb)!+wC&QL;s^&$v4g zd2+euT{oN@NhD=-Z3lY&!111A`9!wCpKI_-{*SE>8@4@Y*p_YR%{BB=URa(OUF}P? zOX3|&M;tECv!8pl_r#wx-XHo&D_kTEzw$j8Je3(d1$_O1?>*nU+wW{oSEMV}n%V&B zTQbg#_ccdV#?h9qYD~e>O8Uc-INOoPCb&)vMtXi4>5snz&}%S){5&THwUQY)K2d&o zE7i&)GJwXQF=&+LQXIici}IQq_*fLQ_evF9Y*)~{aXbZJ7!4Vx7T^*ZVoT5G>(Ah; zPXSidf{16Jb^Fw5YJ3$7u)1TKNa7;2v@X`Hn8X_S#}reT6KRR4B5w zB62ZH17?UY&iZ`<(aLCflT@G1v-5~j6_veen81k?c;X=fY;shMoEe`uIzBNqa{Pty zQ&Zh zDO>loT;10)p0BY>?aPA?+}#;>_loJRHM4DRUg(C8f-CJ>6S~+J>}nqRh9CHb|7QQQ zS>JfhH=Y&Fm&^XQL1?#WUW_Z6c9fF z@$R+PZ_tQRSA#_ZToQ@els9cz`aA_*vpx zi>yG~fK!&PKr}__GBrO9XZ2#l5ma4GP zotY)|6ET@*$3}#qJ%f8lok#O35=x*h#`{tX2Qt@X%zq$w6$=M~Tw?;N^+8M4&*bM< zVzbv^%8RQc?VyO~0n#<1CaEWAC8OGvhv{PhB1!}qv{IfwFZz{C=oyII@HG*UqD10x zB(qwW=8{B1;*jz1l!HE4Q{;NbnJp!`46?ZEV390LVH(F*ftlfu5wBnDCU6pCtl&5e z>(2Q(<{rmrS;bV8<)achQ&Dm})QL*z^i7)5Zy_tDbPHRnC@$;4loiwVR+31%x_otQ zdIW@s;~m4D&uan=?C@0+&|rVxEmY- z4>*k{S2sf9#F;++ACRhFVB+soFso<;N{+zd#_xh2r9$EnK||ag$TrF7xCTr7{WC(J=*#6bO%3u zpdo(#Ji{Xh+A2|jf-uZfkhDBAsyOb4hi-_~6!+8j>qnW;j7`d6`al7-SY65`=iyn1 z^+4FFRZ`XT98i3a$PjU4SOe7S;){59%M2YOd&Dh>k{6L&B2&ln zZVG$tLxd z$OPwVHqBWQtAyBin6sG=;0bOGCF#qariH!QIS-{8DX?Xq6|h=Yn3`2PxztHdUule8 zfz@p&!mMtwEPfpoi)#e@09a3%jOSnAxKN47NjmS~6sr|ei7FSzF@Ot3d^{yiD~&Yy z84D;rk1Gq6Dpkd@XKBpGk&#ix2xZ>#(A)9A+p)YQ>-FWlJ_tw}n^To*6i&x%+rC<} zW%+8h#-FS4r;e^QfcrDJ5E%y`jV};1y>sb%mzL(=p1nN_&+e6)zijx6hI>69x8H5Y zHxIY;rYo1?Sx;BS)3xSq%~)HXKnQ<`rb>jcR$i`Mo3!fh63O`(1yU;#%o__XN}07q zLu^n_24kISCGW=HSySnlFkr=VC^Bhn`9%YB=~dU-X~V0AD|k}8U3e#4p#x5Ah~Xm- zv09W<^FhrA1sos|`YIEMkY#2N?>=Jdig|T)TID+HS)Dc7e5lQ~S)G_sUai`ZeEaZq zT%CRbE3gBj-MO&+ELpb1RW|~nPuU`ZZy`Y!PV$@C>FIe9dU7eQ7>g*efDf$C_V3-h zdtd)xIE_9Ce?g zkp~mV!Zo#|Dp%=qY`3p`ga~2M7uoH$j&-}yHH`QHcbXqIZhz3YedSoTaaXQ!mlScJ z8d0)%7pP4IXmg&0|uAl(yx>T_~bV0g)-ZXtg*6oGdNMn2(kP(e`q z5?KZnA--QEb9Zx)+xvwxq?l$_pR#YAV*NNQ%a~8M;LQV=G zA}J3@u1E?5#*>jo^dg8a4Y}AmPU1-6Trv2+WUT>qE*3(5Gz`V%`{4_VhyoLa3fSMP zwx!_2`a@4f-XXDZ5LBdZ)LJ^1%DN1n$8%n`(f zQ;gAD$r%0kTjOtzXPqrMCcJx8j~D=VUR`N}>tp?)T>YUGB5KuV99?;5L+bR+@mu35 z_J=X+>_#$MLLg0L_8z|04W0R*1eHDd{!eQC-w{BdB~G*vAj@abO-JNBB#zOkNPtZ7 z#AX8R1Ud*X7M97P+$ScEp4AGX4$yTY0ir^ss4TSLGW@}MrPLpggsmch*MZmK{}y>~ zsDJAQ1Nj3IusXaJgj&gu%V;`_4e1}EJgfE)+e=VmFPgh+jdW{k)*(HM+7z9AQL$YtVwifml4spkblcvgx#)TRle?8hnz8?2ogzE09V z6CRax(o6}>^v_Kj6_mc`Eqx2TW#bHy5E!il`!aZ;VWTYbiEu=8Q2X8ZiWLM>_;TA6 zCB|7eJ}L6&pHPcPP*SjvdrcrA5--k}Jt^oC2?wP3BV+);T(_kuMNFeeZVw{qs92;> z>HAt_7ACo+kvBJ@eyYr^q=|2*>jHre0-Xf92pp$L+D%73I_jaL*9dF@kiN$(`zpr8 zt(1f?r}T-Wc~Bk9RSsdo+2i@BP%nY)1Q?IoPe(+#ivt995Evvd1W+(DTS|NxeHKW+ zV4el~7YkJ|5JFs2e95tBP1!~*YXT_LjUF94{KDypDb;rM^oeIrOo&fYj;|5eP1Ro| zkRtGB1Q@DG(9sBi!vJ4d4@h66J|q$eiXE1RCXU1U%=4IEM zQ-CUt-J<$LAK;X>wH%{eEwj#)xT5t}y?yyuDZd5|#)6|mT>hiU18LkQ; zeKFz@%aZS0hb7cT@N<^_h4yN~Sj$6#Qw~0-v@ePmc0AAX;HWo-nacLh*`+VE87>({ p&HS!)Zey6K>&^5X{G46=LYrsYe!{|I+1VI=&eFfw| z#yxQGV4?>P!~cxcTYHgomlZ4)krlT(($GSj}k`QCfq``)Dcy}cR|>ob}y zewPvY6CL7}JaG<_5<(vlK}51q9ufHtTC3zGqJUHtDS25&pn$w5vJS-CUII((3HKld z5J)q^7kC$-&6pdVuM*6;yb3DFTS5&&EDh>z_bEk(12RcO-Otz4>!6Ab7l?8mC(>K_ z@@aKm>r?>hS)>yuU7$rBBGo&KJ5?e*L=(xs5zF#~!qqahZR^<-Pguk;xmqZilz?CD z@hnd_w!tAT)sG~-dZiPf@S+UNXS!z=w#?_i^obN#ScP%*1mXSdS|CP@Xog{xJeT^0 z!IQRIFm1*Yw#9s|mRwS{fpJARTw}gTefHAwi(Ik6;TOw}M`6QyCCEg=H*^@OKYE8B zF`x`Prf=GoW%`wpyJ3L^+a_MAM1z!8sJjUTpW%hoo7e`EI)+#Ai>~;zBUl$Qx3RbZ z+zw3XlarWPKHP{$!(woJauYZn9LG`Js~mODwDr%@A)zb!cUT}yOOYh0iL~1BZfU4r zZ=r5!U25Cfz2@+>uWC4qgT!Dno%y5%SEs^swvo=(=47v3z?SHr|mD~b9C>;C(> z54o^!w9z-(LP}Re64|=aOkE5vWqzkJK`OIb*mu4-!SvmqN;sVh#}^ypivn(rjP4GI zy&jHb8)MmEY+5{xkz4iU=F-ZqC&A;Vjit5v+)ge?-~KThrtgP65B{~(<1VQ)!E`_j F^&jVM@+trT literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..027b37a1c567b93ab5b6c5c0d736501e7f6037ab GIT binary patch literal 29738 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 Vmf(KFY?w*D(s;RXM*rzl^?!0UY3Kj| literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a7292d15d0eeeda98f93b2aa2af832e263eab789 GIT binary patch literal 6267 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..33281d09ac08e07de615b66ec548a887c30aedde GIT binary patch literal 40301 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 W((2)daJwdL^73bpvw6yh>;E756T{2^ literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/requests/__version__.py b/.venv/lib/python3.11/site-packages/pip/_vendor/requests/__version__.py new file mode 100644 index 0000000..5063c3f --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/requests/__version__.py @@ -0,0 +1,14 @@ +# .-. .-. .-. . . .-. .-. .-. .-. +# |( |- |.| | | |- `-. | `-. +# ' ' `-' `-`.`-' `-' `-' ' `-' + +__title__ = "requests" +__description__ = "Python HTTP for Humans." +__url__ = "https://requests.readthedocs.io" +__version__ = "2.31.0" +__build__ = 0x023100 +__author__ = "Kenneth Reitz" +__author_email__ = "me@kennethreitz.org" +__license__ = "Apache 2.0" +__copyright__ = "Copyright Kenneth Reitz" +__cake__ = "\u2728 \U0001f370 \u2728" diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/requests/_internal_utils.py b/.venv/lib/python3.11/site-packages/pip/_vendor/requests/_internal_utils.py new file mode 100644 index 0000000..f2cf635 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/requests/_internal_utils.py @@ -0,0 +1,50 @@ +""" +requests._internal_utils +~~~~~~~~~~~~~~ + +Provides utility functions that are consumed internally by Requests +which depend on extremely few external helpers (such as compat) +""" +import re + +from .compat import builtin_str + +_VALID_HEADER_NAME_RE_BYTE = re.compile(rb"^[^:\s][^:\r\n]*$") +_VALID_HEADER_NAME_RE_STR = re.compile(r"^[^:\s][^:\r\n]*$") +_VALID_HEADER_VALUE_RE_BYTE = re.compile(rb"^\S[^\r\n]*$|^$") +_VALID_HEADER_VALUE_RE_STR = re.compile(r"^\S[^\r\n]*$|^$") + +_HEADER_VALIDATORS_STR = (_VALID_HEADER_NAME_RE_STR, _VALID_HEADER_VALUE_RE_STR) +_HEADER_VALIDATORS_BYTE = (_VALID_HEADER_NAME_RE_BYTE, _VALID_HEADER_VALUE_RE_BYTE) +HEADER_VALIDATORS = { + bytes: _HEADER_VALIDATORS_BYTE, + str: _HEADER_VALIDATORS_STR, +} + + +def to_native_string(string, encoding="ascii"): + """Given a string object, regardless of type, returns a representation of + that string in the native string type, encoding and decoding where + necessary. This assumes ASCII unless told otherwise. + """ + if isinstance(string, builtin_str): + out = string + else: + out = string.decode(encoding) + + return out + + +def unicode_is_ascii(u_string): + """Determine if unicode string only contains ASCII characters. + + :param str u_string: unicode string to check. Must be unicode + and not Python 2 `str`. + :rtype: bool + """ + assert isinstance(u_string, str) + try: + u_string.encode("ascii") + return True + except UnicodeEncodeError: + return False diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/requests/adapters.py b/.venv/lib/python3.11/site-packages/pip/_vendor/requests/adapters.py new file mode 100644 index 0000000..10c1767 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/requests/adapters.py @@ -0,0 +1,538 @@ +""" +requests.adapters +~~~~~~~~~~~~~~~~~ + +This module contains the transport adapters that Requests uses to define +and maintain connections. +""" + +import os.path +import socket # noqa: F401 + +from pip._vendor.urllib3.exceptions import ClosedPoolError, ConnectTimeoutError +from pip._vendor.urllib3.exceptions import HTTPError as _HTTPError +from pip._vendor.urllib3.exceptions import InvalidHeader as _InvalidHeader +from pip._vendor.urllib3.exceptions import ( + LocationValueError, + MaxRetryError, + NewConnectionError, + ProtocolError, +) +from pip._vendor.urllib3.exceptions import ProxyError as _ProxyError +from pip._vendor.urllib3.exceptions import ReadTimeoutError, ResponseError +from pip._vendor.urllib3.exceptions import SSLError as _SSLError +from pip._vendor.urllib3.poolmanager import PoolManager, proxy_from_url +from pip._vendor.urllib3.util import Timeout as TimeoutSauce +from pip._vendor.urllib3.util import parse_url +from pip._vendor.urllib3.util.retry import Retry + +from .auth import _basic_auth_str +from .compat import basestring, urlparse +from .cookies import extract_cookies_to_jar +from .exceptions import ( + ConnectionError, + ConnectTimeout, + InvalidHeader, + InvalidProxyURL, + InvalidSchema, + InvalidURL, + ProxyError, + ReadTimeout, + RetryError, + SSLError, +) +from .models import Response +from .structures import CaseInsensitiveDict +from .utils import ( + DEFAULT_CA_BUNDLE_PATH, + extract_zipped_paths, + get_auth_from_url, + get_encoding_from_headers, + prepend_scheme_if_needed, + select_proxy, + urldefragauth, +) + +try: + from pip._vendor.urllib3.contrib.socks import SOCKSProxyManager +except ImportError: + + def SOCKSProxyManager(*args, **kwargs): + raise InvalidSchema("Missing dependencies for SOCKS support.") + + +DEFAULT_POOLBLOCK = False +DEFAULT_POOLSIZE = 10 +DEFAULT_RETRIES = 0 +DEFAULT_POOL_TIMEOUT = None + + +class BaseAdapter: + """The Base Transport Adapter""" + + def __init__(self): + super().__init__() + + def send( + self, request, stream=False, timeout=None, verify=True, cert=None, proxies=None + ): + """Sends PreparedRequest object. Returns Response object. + + :param request: The :class:`PreparedRequest ` being sent. + :param stream: (optional) Whether to stream the request content. + :param timeout: (optional) How long to wait for the server to send + data before giving up, as a float, or a :ref:`(connect timeout, + read timeout) ` tuple. + :type timeout: float or tuple + :param verify: (optional) Either a boolean, in which case it controls whether we verify + the server's TLS certificate, or a string, in which case it must be a path + to a CA bundle to use + :param cert: (optional) Any user-provided SSL certificate to be trusted. + :param proxies: (optional) The proxies dictionary to apply to the request. + """ + raise NotImplementedError + + def close(self): + """Cleans up adapter specific items.""" + raise NotImplementedError + + +class HTTPAdapter(BaseAdapter): + """The built-in HTTP Adapter for urllib3. + + Provides a general-case interface for Requests sessions to contact HTTP and + HTTPS urls by implementing the Transport Adapter interface. This class will + usually be created by the :class:`Session ` class under the + covers. + + :param pool_connections: The number of urllib3 connection pools to cache. + :param pool_maxsize: The maximum number of connections to save in the pool. + :param max_retries: The maximum number of retries each connection + should attempt. Note, this applies only to failed DNS lookups, socket + connections and connection timeouts, never to requests where data has + made it to the server. By default, Requests does not retry failed + connections. If you need granular control over the conditions under + which we retry a request, import urllib3's ``Retry`` class and pass + that instead. + :param pool_block: Whether the connection pool should block for connections. + + Usage:: + + >>> import requests + >>> s = requests.Session() + >>> a = requests.adapters.HTTPAdapter(max_retries=3) + >>> s.mount('http://', a) + """ + + __attrs__ = [ + "max_retries", + "config", + "_pool_connections", + "_pool_maxsize", + "_pool_block", + ] + + def __init__( + self, + pool_connections=DEFAULT_POOLSIZE, + pool_maxsize=DEFAULT_POOLSIZE, + max_retries=DEFAULT_RETRIES, + pool_block=DEFAULT_POOLBLOCK, + ): + if max_retries == DEFAULT_RETRIES: + self.max_retries = Retry(0, read=False) + else: + self.max_retries = Retry.from_int(max_retries) + self.config = {} + self.proxy_manager = {} + + super().__init__() + + self._pool_connections = pool_connections + self._pool_maxsize = pool_maxsize + self._pool_block = pool_block + + self.init_poolmanager(pool_connections, pool_maxsize, block=pool_block) + + def __getstate__(self): + return {attr: getattr(self, attr, None) for attr in self.__attrs__} + + def __setstate__(self, state): + # Can't handle by adding 'proxy_manager' to self.__attrs__ because + # self.poolmanager uses a lambda function, which isn't pickleable. + self.proxy_manager = {} + self.config = {} + + for attr, value in state.items(): + setattr(self, attr, value) + + self.init_poolmanager( + self._pool_connections, self._pool_maxsize, block=self._pool_block + ) + + def init_poolmanager( + self, connections, maxsize, block=DEFAULT_POOLBLOCK, **pool_kwargs + ): + """Initializes a urllib3 PoolManager. + + This method should not be called from user code, and is only + exposed for use when subclassing the + :class:`HTTPAdapter `. + + :param connections: The number of urllib3 connection pools to cache. + :param maxsize: The maximum number of connections to save in the pool. + :param block: Block when no free connections are available. + :param pool_kwargs: Extra keyword arguments used to initialize the Pool Manager. + """ + # save these values for pickling + self._pool_connections = connections + self._pool_maxsize = maxsize + self._pool_block = block + + self.poolmanager = PoolManager( + num_pools=connections, + maxsize=maxsize, + block=block, + **pool_kwargs, + ) + + def proxy_manager_for(self, proxy, **proxy_kwargs): + """Return urllib3 ProxyManager for the given proxy. + + This method should not be called from user code, and is only + exposed for use when subclassing the + :class:`HTTPAdapter `. + + :param proxy: The proxy to return a urllib3 ProxyManager for. + :param proxy_kwargs: Extra keyword arguments used to configure the Proxy Manager. + :returns: ProxyManager + :rtype: urllib3.ProxyManager + """ + if proxy in self.proxy_manager: + manager = self.proxy_manager[proxy] + elif proxy.lower().startswith("socks"): + username, password = get_auth_from_url(proxy) + manager = self.proxy_manager[proxy] = SOCKSProxyManager( + proxy, + username=username, + password=password, + num_pools=self._pool_connections, + maxsize=self._pool_maxsize, + block=self._pool_block, + **proxy_kwargs, + ) + else: + proxy_headers = self.proxy_headers(proxy) + manager = self.proxy_manager[proxy] = proxy_from_url( + proxy, + proxy_headers=proxy_headers, + num_pools=self._pool_connections, + maxsize=self._pool_maxsize, + block=self._pool_block, + **proxy_kwargs, + ) + + return manager + + def cert_verify(self, conn, url, verify, cert): + """Verify a SSL certificate. This method should not be called from user + code, and is only exposed for use when subclassing the + :class:`HTTPAdapter `. + + :param conn: The urllib3 connection object associated with the cert. + :param url: The requested URL. + :param verify: Either a boolean, in which case it controls whether we verify + the server's TLS certificate, or a string, in which case it must be a path + to a CA bundle to use + :param cert: The SSL certificate to verify. + """ + if url.lower().startswith("https") and verify: + + cert_loc = None + + # Allow self-specified cert location. + if verify is not True: + cert_loc = verify + + if not cert_loc: + cert_loc = extract_zipped_paths(DEFAULT_CA_BUNDLE_PATH) + + if not cert_loc or not os.path.exists(cert_loc): + raise OSError( + f"Could not find a suitable TLS CA certificate bundle, " + f"invalid path: {cert_loc}" + ) + + conn.cert_reqs = "CERT_REQUIRED" + + if not os.path.isdir(cert_loc): + conn.ca_certs = cert_loc + else: + conn.ca_cert_dir = cert_loc + else: + conn.cert_reqs = "CERT_NONE" + conn.ca_certs = None + conn.ca_cert_dir = None + + if cert: + if not isinstance(cert, basestring): + conn.cert_file = cert[0] + conn.key_file = cert[1] + else: + conn.cert_file = cert + conn.key_file = None + if conn.cert_file and not os.path.exists(conn.cert_file): + raise OSError( + f"Could not find the TLS certificate file, " + f"invalid path: {conn.cert_file}" + ) + if conn.key_file and not os.path.exists(conn.key_file): + raise OSError( + f"Could not find the TLS key file, invalid path: {conn.key_file}" + ) + + def build_response(self, req, resp): + """Builds a :class:`Response ` object from a urllib3 + response. This should not be called from user code, and is only exposed + for use when subclassing the + :class:`HTTPAdapter ` + + :param req: The :class:`PreparedRequest ` used to generate the response. + :param resp: The urllib3 response object. + :rtype: requests.Response + """ + response = Response() + + # Fallback to None if there's no status_code, for whatever reason. + response.status_code = getattr(resp, "status", None) + + # Make headers case-insensitive. + response.headers = CaseInsensitiveDict(getattr(resp, "headers", {})) + + # Set encoding. + response.encoding = get_encoding_from_headers(response.headers) + response.raw = resp + response.reason = response.raw.reason + + if isinstance(req.url, bytes): + response.url = req.url.decode("utf-8") + else: + response.url = req.url + + # Add new cookies from the server. + extract_cookies_to_jar(response.cookies, req, resp) + + # Give the Response some context. + response.request = req + response.connection = self + + return response + + def get_connection(self, url, proxies=None): + """Returns a urllib3 connection for the given URL. This should not be + called from user code, and is only exposed for use when subclassing the + :class:`HTTPAdapter `. + + :param url: The URL to connect to. + :param proxies: (optional) A Requests-style dictionary of proxies used on this request. + :rtype: urllib3.ConnectionPool + """ + proxy = select_proxy(url, proxies) + + if proxy: + proxy = prepend_scheme_if_needed(proxy, "http") + proxy_url = parse_url(proxy) + if not proxy_url.host: + raise InvalidProxyURL( + "Please check proxy URL. It is malformed " + "and could be missing the host." + ) + proxy_manager = self.proxy_manager_for(proxy) + conn = proxy_manager.connection_from_url(url) + else: + # Only scheme should be lower case + parsed = urlparse(url) + url = parsed.geturl() + conn = self.poolmanager.connection_from_url(url) + + return conn + + def close(self): + """Disposes of any internal state. + + Currently, this closes the PoolManager and any active ProxyManager, + which closes any pooled connections. + """ + self.poolmanager.clear() + for proxy in self.proxy_manager.values(): + proxy.clear() + + def request_url(self, request, proxies): + """Obtain the url to use when making the final request. + + If the message is being sent through a HTTP proxy, the full URL has to + be used. Otherwise, we should only use the path portion of the URL. + + This should not be called from user code, and is only exposed for use + when subclassing the + :class:`HTTPAdapter `. + + :param request: The :class:`PreparedRequest ` being sent. + :param proxies: A dictionary of schemes or schemes and hosts to proxy URLs. + :rtype: str + """ + proxy = select_proxy(request.url, proxies) + scheme = urlparse(request.url).scheme + + is_proxied_http_request = proxy and scheme != "https" + using_socks_proxy = False + if proxy: + proxy_scheme = urlparse(proxy).scheme.lower() + using_socks_proxy = proxy_scheme.startswith("socks") + + url = request.path_url + if is_proxied_http_request and not using_socks_proxy: + url = urldefragauth(request.url) + + return url + + def add_headers(self, request, **kwargs): + """Add any headers needed by the connection. As of v2.0 this does + nothing by default, but is left for overriding by users that subclass + the :class:`HTTPAdapter `. + + This should not be called from user code, and is only exposed for use + when subclassing the + :class:`HTTPAdapter `. + + :param request: The :class:`PreparedRequest ` to add headers to. + :param kwargs: The keyword arguments from the call to send(). + """ + pass + + def proxy_headers(self, proxy): + """Returns a dictionary of the headers to add to any request sent + through a proxy. This works with urllib3 magic to ensure that they are + correctly sent to the proxy, rather than in a tunnelled request if + CONNECT is being used. + + This should not be called from user code, and is only exposed for use + when subclassing the + :class:`HTTPAdapter `. + + :param proxy: The url of the proxy being used for this request. + :rtype: dict + """ + headers = {} + username, password = get_auth_from_url(proxy) + + if username: + headers["Proxy-Authorization"] = _basic_auth_str(username, password) + + return headers + + def send( + self, request, stream=False, timeout=None, verify=True, cert=None, proxies=None + ): + """Sends PreparedRequest object. Returns Response object. + + :param request: The :class:`PreparedRequest ` being sent. + :param stream: (optional) Whether to stream the request content. + :param timeout: (optional) How long to wait for the server to send + data before giving up, as a float, or a :ref:`(connect timeout, + read timeout) ` tuple. + :type timeout: float or tuple or urllib3 Timeout object + :param verify: (optional) Either a boolean, in which case it controls whether + we verify the server's TLS certificate, or a string, in which case it + must be a path to a CA bundle to use + :param cert: (optional) Any user-provided SSL certificate to be trusted. + :param proxies: (optional) The proxies dictionary to apply to the request. + :rtype: requests.Response + """ + + try: + conn = self.get_connection(request.url, proxies) + except LocationValueError as e: + raise InvalidURL(e, request=request) + + self.cert_verify(conn, request.url, verify, cert) + url = self.request_url(request, proxies) + self.add_headers( + request, + stream=stream, + timeout=timeout, + verify=verify, + cert=cert, + proxies=proxies, + ) + + chunked = not (request.body is None or "Content-Length" in request.headers) + + if isinstance(timeout, tuple): + try: + connect, read = timeout + timeout = TimeoutSauce(connect=connect, read=read) + except ValueError: + raise ValueError( + f"Invalid timeout {timeout}. Pass a (connect, read) timeout tuple, " + f"or a single float to set both timeouts to the same value." + ) + elif isinstance(timeout, TimeoutSauce): + pass + else: + timeout = TimeoutSauce(connect=timeout, read=timeout) + + try: + resp = conn.urlopen( + method=request.method, + url=url, + body=request.body, + headers=request.headers, + redirect=False, + assert_same_host=False, + preload_content=False, + decode_content=False, + retries=self.max_retries, + timeout=timeout, + chunked=chunked, + ) + + except (ProtocolError, OSError) as err: + raise ConnectionError(err, request=request) + + except MaxRetryError as e: + if isinstance(e.reason, ConnectTimeoutError): + # TODO: Remove this in 3.0.0: see #2811 + if not isinstance(e.reason, NewConnectionError): + raise ConnectTimeout(e, request=request) + + if isinstance(e.reason, ResponseError): + raise RetryError(e, request=request) + + if isinstance(e.reason, _ProxyError): + raise ProxyError(e, request=request) + + if isinstance(e.reason, _SSLError): + # This branch is for urllib3 v1.22 and later. + raise SSLError(e, request=request) + + raise ConnectionError(e, request=request) + + except ClosedPoolError as e: + raise ConnectionError(e, request=request) + + except _ProxyError as e: + raise ProxyError(e) + + except (_SSLError, _HTTPError) as e: + if isinstance(e, _SSLError): + # This branch is for urllib3 versions earlier than v1.22 + raise SSLError(e, request=request) + elif isinstance(e, ReadTimeoutError): + raise ReadTimeout(e, request=request) + elif isinstance(e, _InvalidHeader): + raise InvalidHeader(e, request=request) + else: + raise + + return self.build_response(request, resp) diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/requests/api.py b/.venv/lib/python3.11/site-packages/pip/_vendor/requests/api.py new file mode 100644 index 0000000..cd0b3ee --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/requests/api.py @@ -0,0 +1,157 @@ +""" +requests.api +~~~~~~~~~~~~ + +This module implements the Requests API. + +:copyright: (c) 2012 by Kenneth Reitz. +:license: Apache2, see LICENSE for more details. +""" + +from . import sessions + + +def request(method, url, **kwargs): + """Constructs and sends a :class:`Request `. + + :param method: method for the new :class:`Request` object: ``GET``, ``OPTIONS``, ``HEAD``, ``POST``, ``PUT``, ``PATCH``, or ``DELETE``. + :param url: URL for the new :class:`Request` object. + :param params: (optional) Dictionary, list of tuples or bytes to send + in the query string for the :class:`Request`. + :param data: (optional) Dictionary, list of tuples, bytes, or file-like + object to send in the body of the :class:`Request`. + :param json: (optional) A JSON serializable Python object to send in the body of the :class:`Request`. + :param headers: (optional) Dictionary of HTTP Headers to send with the :class:`Request`. + :param cookies: (optional) Dict or CookieJar object to send with the :class:`Request`. + :param files: (optional) Dictionary of ``'name': file-like-objects`` (or ``{'name': file-tuple}``) for multipart encoding upload. + ``file-tuple`` can be a 2-tuple ``('filename', fileobj)``, 3-tuple ``('filename', fileobj, 'content_type')`` + or a 4-tuple ``('filename', fileobj, 'content_type', custom_headers)``, where ``'content-type'`` is a string + defining the content type of the given file and ``custom_headers`` a dict-like object containing additional headers + to add for the file. + :param auth: (optional) Auth tuple to enable Basic/Digest/Custom HTTP Auth. + :param timeout: (optional) How many seconds to wait for the server to send data + before giving up, as a float, or a :ref:`(connect timeout, read + timeout) ` tuple. + :type timeout: float or tuple + :param allow_redirects: (optional) Boolean. Enable/disable GET/OPTIONS/POST/PUT/PATCH/DELETE/HEAD redirection. Defaults to ``True``. + :type allow_redirects: bool + :param proxies: (optional) Dictionary mapping protocol to the URL of the proxy. + :param verify: (optional) Either a boolean, in which case it controls whether we verify + the server's TLS certificate, or a string, in which case it must be a path + to a CA bundle to use. Defaults to ``True``. + :param stream: (optional) if ``False``, the response content will be immediately downloaded. + :param cert: (optional) if String, path to ssl client cert file (.pem). If Tuple, ('cert', 'key') pair. + :return: :class:`Response ` object + :rtype: requests.Response + + Usage:: + + >>> import requests + >>> req = requests.request('GET', 'https://httpbin.org/get') + >>> req + + """ + + # By using the 'with' statement we are sure the session is closed, thus we + # avoid leaving sockets open which can trigger a ResourceWarning in some + # cases, and look like a memory leak in others. + with sessions.Session() as session: + return session.request(method=method, url=url, **kwargs) + + +def get(url, params=None, **kwargs): + r"""Sends a GET request. + + :param url: URL for the new :class:`Request` object. + :param params: (optional) Dictionary, list of tuples or bytes to send + in the query string for the :class:`Request`. + :param \*\*kwargs: Optional arguments that ``request`` takes. + :return: :class:`Response ` object + :rtype: requests.Response + """ + + return request("get", url, params=params, **kwargs) + + +def options(url, **kwargs): + r"""Sends an OPTIONS request. + + :param url: URL for the new :class:`Request` object. + :param \*\*kwargs: Optional arguments that ``request`` takes. + :return: :class:`Response ` object + :rtype: requests.Response + """ + + return request("options", url, **kwargs) + + +def head(url, **kwargs): + r"""Sends a HEAD request. + + :param url: URL for the new :class:`Request` object. + :param \*\*kwargs: Optional arguments that ``request`` takes. If + `allow_redirects` is not provided, it will be set to `False` (as + opposed to the default :meth:`request` behavior). + :return: :class:`Response ` object + :rtype: requests.Response + """ + + kwargs.setdefault("allow_redirects", False) + return request("head", url, **kwargs) + + +def post(url, data=None, json=None, **kwargs): + r"""Sends a POST request. + + :param url: URL for the new :class:`Request` object. + :param data: (optional) Dictionary, list of tuples, bytes, or file-like + object to send in the body of the :class:`Request`. + :param json: (optional) A JSON serializable Python object to send in the body of the :class:`Request`. + :param \*\*kwargs: Optional arguments that ``request`` takes. + :return: :class:`Response ` object + :rtype: requests.Response + """ + + return request("post", url, data=data, json=json, **kwargs) + + +def put(url, data=None, **kwargs): + r"""Sends a PUT request. + + :param url: URL for the new :class:`Request` object. + :param data: (optional) Dictionary, list of tuples, bytes, or file-like + object to send in the body of the :class:`Request`. + :param json: (optional) A JSON serializable Python object to send in the body of the :class:`Request`. + :param \*\*kwargs: Optional arguments that ``request`` takes. + :return: :class:`Response ` object + :rtype: requests.Response + """ + + return request("put", url, data=data, **kwargs) + + +def patch(url, data=None, **kwargs): + r"""Sends a PATCH request. + + :param url: URL for the new :class:`Request` object. + :param data: (optional) Dictionary, list of tuples, bytes, or file-like + object to send in the body of the :class:`Request`. + :param json: (optional) A JSON serializable Python object to send in the body of the :class:`Request`. + :param \*\*kwargs: Optional arguments that ``request`` takes. + :return: :class:`Response ` object + :rtype: requests.Response + """ + + return request("patch", url, data=data, **kwargs) + + +def delete(url, **kwargs): + r"""Sends a DELETE request. + + :param url: URL for the new :class:`Request` object. + :param \*\*kwargs: Optional arguments that ``request`` takes. + :return: :class:`Response ` object + :rtype: requests.Response + """ + + return request("delete", url, **kwargs) diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/requests/auth.py b/.venv/lib/python3.11/site-packages/pip/_vendor/requests/auth.py new file mode 100644 index 0000000..9733686 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/requests/auth.py @@ -0,0 +1,315 @@ +""" +requests.auth +~~~~~~~~~~~~~ + +This module contains the authentication handlers for Requests. +""" + +import hashlib +import os +import re +import threading +import time +import warnings +from base64 import b64encode + +from ._internal_utils import to_native_string +from .compat import basestring, str, urlparse +from .cookies import extract_cookies_to_jar +from .utils import parse_dict_header + +CONTENT_TYPE_FORM_URLENCODED = "application/x-www-form-urlencoded" +CONTENT_TYPE_MULTI_PART = "multipart/form-data" + + +def _basic_auth_str(username, password): + """Returns a Basic Auth string.""" + + # "I want us to put a big-ol' comment on top of it that + # says that this behaviour is dumb but we need to preserve + # it because people are relying on it." + # - Lukasa + # + # These are here solely to maintain backwards compatibility + # for things like ints. This will be removed in 3.0.0. + if not isinstance(username, basestring): + warnings.warn( + "Non-string usernames will no longer be supported in Requests " + "3.0.0. Please convert the object you've passed in ({!r}) to " + "a string or bytes object in the near future to avoid " + "problems.".format(username), + category=DeprecationWarning, + ) + username = str(username) + + if not isinstance(password, basestring): + warnings.warn( + "Non-string passwords will no longer be supported in Requests " + "3.0.0. Please convert the object you've passed in ({!r}) to " + "a string or bytes object in the near future to avoid " + "problems.".format(type(password)), + category=DeprecationWarning, + ) + password = str(password) + # -- End Removal -- + + if isinstance(username, str): + username = username.encode("latin1") + + if isinstance(password, str): + password = password.encode("latin1") + + authstr = "Basic " + to_native_string( + b64encode(b":".join((username, password))).strip() + ) + + return authstr + + +class AuthBase: + """Base class that all auth implementations derive from""" + + def __call__(self, r): + raise NotImplementedError("Auth hooks must be callable.") + + +class HTTPBasicAuth(AuthBase): + """Attaches HTTP Basic Authentication to the given Request object.""" + + def __init__(self, username, password): + self.username = username + self.password = password + + def __eq__(self, other): + return all( + [ + self.username == getattr(other, "username", None), + self.password == getattr(other, "password", None), + ] + ) + + def __ne__(self, other): + return not self == other + + def __call__(self, r): + r.headers["Authorization"] = _basic_auth_str(self.username, self.password) + return r + + +class HTTPProxyAuth(HTTPBasicAuth): + """Attaches HTTP Proxy Authentication to a given Request object.""" + + def __call__(self, r): + r.headers["Proxy-Authorization"] = _basic_auth_str(self.username, self.password) + return r + + +class HTTPDigestAuth(AuthBase): + """Attaches HTTP Digest Authentication to the given Request object.""" + + def __init__(self, username, password): + self.username = username + self.password = password + # Keep state in per-thread local storage + self._thread_local = threading.local() + + def init_per_thread_state(self): + # Ensure state is initialized just once per-thread + if not hasattr(self._thread_local, "init"): + self._thread_local.init = True + self._thread_local.last_nonce = "" + self._thread_local.nonce_count = 0 + self._thread_local.chal = {} + self._thread_local.pos = None + self._thread_local.num_401_calls = None + + def build_digest_header(self, method, url): + """ + :rtype: str + """ + + realm = self._thread_local.chal["realm"] + nonce = self._thread_local.chal["nonce"] + qop = self._thread_local.chal.get("qop") + algorithm = self._thread_local.chal.get("algorithm") + opaque = self._thread_local.chal.get("opaque") + hash_utf8 = None + + if algorithm is None: + _algorithm = "MD5" + else: + _algorithm = algorithm.upper() + # lambdas assume digest modules are imported at the top level + if _algorithm == "MD5" or _algorithm == "MD5-SESS": + + def md5_utf8(x): + if isinstance(x, str): + x = x.encode("utf-8") + return hashlib.md5(x).hexdigest() + + hash_utf8 = md5_utf8 + elif _algorithm == "SHA": + + def sha_utf8(x): + if isinstance(x, str): + x = x.encode("utf-8") + return hashlib.sha1(x).hexdigest() + + hash_utf8 = sha_utf8 + elif _algorithm == "SHA-256": + + def sha256_utf8(x): + if isinstance(x, str): + x = x.encode("utf-8") + return hashlib.sha256(x).hexdigest() + + hash_utf8 = sha256_utf8 + elif _algorithm == "SHA-512": + + def sha512_utf8(x): + if isinstance(x, str): + x = x.encode("utf-8") + return hashlib.sha512(x).hexdigest() + + hash_utf8 = sha512_utf8 + + KD = lambda s, d: hash_utf8(f"{s}:{d}") # noqa:E731 + + if hash_utf8 is None: + return None + + # XXX not implemented yet + entdig = None + p_parsed = urlparse(url) + #: path is request-uri defined in RFC 2616 which should not be empty + path = p_parsed.path or "/" + if p_parsed.query: + path += f"?{p_parsed.query}" + + A1 = f"{self.username}:{realm}:{self.password}" + A2 = f"{method}:{path}" + + HA1 = hash_utf8(A1) + HA2 = hash_utf8(A2) + + if nonce == self._thread_local.last_nonce: + self._thread_local.nonce_count += 1 + else: + self._thread_local.nonce_count = 1 + ncvalue = f"{self._thread_local.nonce_count:08x}" + s = str(self._thread_local.nonce_count).encode("utf-8") + s += nonce.encode("utf-8") + s += time.ctime().encode("utf-8") + s += os.urandom(8) + + cnonce = hashlib.sha1(s).hexdigest()[:16] + if _algorithm == "MD5-SESS": + HA1 = hash_utf8(f"{HA1}:{nonce}:{cnonce}") + + if not qop: + respdig = KD(HA1, f"{nonce}:{HA2}") + elif qop == "auth" or "auth" in qop.split(","): + noncebit = f"{nonce}:{ncvalue}:{cnonce}:auth:{HA2}" + respdig = KD(HA1, noncebit) + else: + # XXX handle auth-int. + return None + + self._thread_local.last_nonce = nonce + + # XXX should the partial digests be encoded too? + base = ( + f'username="{self.username}", realm="{realm}", nonce="{nonce}", ' + f'uri="{path}", response="{respdig}"' + ) + if opaque: + base += f', opaque="{opaque}"' + if algorithm: + base += f', algorithm="{algorithm}"' + if entdig: + base += f', digest="{entdig}"' + if qop: + base += f', qop="auth", nc={ncvalue}, cnonce="{cnonce}"' + + return f"Digest {base}" + + def handle_redirect(self, r, **kwargs): + """Reset num_401_calls counter on redirects.""" + if r.is_redirect: + self._thread_local.num_401_calls = 1 + + def handle_401(self, r, **kwargs): + """ + Takes the given response and tries digest-auth, if needed. + + :rtype: requests.Response + """ + + # If response is not 4xx, do not auth + # See https://github.com/psf/requests/issues/3772 + if not 400 <= r.status_code < 500: + self._thread_local.num_401_calls = 1 + return r + + if self._thread_local.pos is not None: + # Rewind the file position indicator of the body to where + # it was to resend the request. + r.request.body.seek(self._thread_local.pos) + s_auth = r.headers.get("www-authenticate", "") + + if "digest" in s_auth.lower() and self._thread_local.num_401_calls < 2: + + self._thread_local.num_401_calls += 1 + pat = re.compile(r"digest ", flags=re.IGNORECASE) + self._thread_local.chal = parse_dict_header(pat.sub("", s_auth, count=1)) + + # Consume content and release the original connection + # to allow our new request to reuse the same one. + r.content + r.close() + prep = r.request.copy() + extract_cookies_to_jar(prep._cookies, r.request, r.raw) + prep.prepare_cookies(prep._cookies) + + prep.headers["Authorization"] = self.build_digest_header( + prep.method, prep.url + ) + _r = r.connection.send(prep, **kwargs) + _r.history.append(r) + _r.request = prep + + return _r + + self._thread_local.num_401_calls = 1 + return r + + def __call__(self, r): + # Initialize per-thread state, if needed + self.init_per_thread_state() + # If we have a saved nonce, skip the 401 + if self._thread_local.last_nonce: + r.headers["Authorization"] = self.build_digest_header(r.method, r.url) + try: + self._thread_local.pos = r.body.tell() + except AttributeError: + # In the case of HTTPDigestAuth being reused and the body of + # the previous request was a file-like object, pos has the + # file position of the previous body. Ensure it's set to + # None. + self._thread_local.pos = None + r.register_hook("response", self.handle_401) + r.register_hook("response", self.handle_redirect) + self._thread_local.num_401_calls = 1 + + return r + + def __eq__(self, other): + return all( + [ + self.username == getattr(other, "username", None), + self.password == getattr(other, "password", None), + ] + ) + + def __ne__(self, other): + return not self == other diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/requests/certs.py b/.venv/lib/python3.11/site-packages/pip/_vendor/requests/certs.py new file mode 100644 index 0000000..38696a1 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/requests/certs.py @@ -0,0 +1,24 @@ +#!/usr/bin/env python + +""" +requests.certs +~~~~~~~~~~~~~~ + +This module returns the preferred default CA certificate bundle. There is +only one — the one from the certifi package. + +If you are packaging Requests, e.g., for a Linux distribution or a managed +environment, you can change the definition of where() to return a separately +packaged CA bundle. +""" + +import os + +if "_PIP_STANDALONE_CERT" not in os.environ: + from pip._vendor.certifi import where +else: + def where(): + return os.environ["_PIP_STANDALONE_CERT"] + +if __name__ == "__main__": + print(where()) diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/requests/compat.py b/.venv/lib/python3.11/site-packages/pip/_vendor/requests/compat.py new file mode 100644 index 0000000..9ab2bb4 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/requests/compat.py @@ -0,0 +1,67 @@ +""" +requests.compat +~~~~~~~~~~~~~~~ + +This module previously handled import compatibility issues +between Python 2 and Python 3. It remains for backwards +compatibility until the next major version. +""" + +from pip._vendor import chardet + +import sys + +# ------- +# Pythons +# ------- + +# Syntax sugar. +_ver = sys.version_info + +#: Python 2.x? +is_py2 = _ver[0] == 2 + +#: Python 3.x? +is_py3 = _ver[0] == 3 + +# Note: We've patched out simplejson support in pip because it prevents +# upgrading simplejson on Windows. +import json +from json import JSONDecodeError + +# Keep OrderedDict for backwards compatibility. +from collections import OrderedDict +from collections.abc import Callable, Mapping, MutableMapping +from http import cookiejar as cookielib +from http.cookies import Morsel +from io import StringIO + +# -------------- +# Legacy Imports +# -------------- +from urllib.parse import ( + quote, + quote_plus, + unquote, + unquote_plus, + urldefrag, + urlencode, + urljoin, + urlparse, + urlsplit, + urlunparse, +) +from urllib.request import ( + getproxies, + getproxies_environment, + parse_http_list, + proxy_bypass, + proxy_bypass_environment, +) + +builtin_str = str +str = str +bytes = bytes +basestring = (str, bytes) +numeric_types = (int, float) +integer_types = (int,) diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/requests/cookies.py b/.venv/lib/python3.11/site-packages/pip/_vendor/requests/cookies.py new file mode 100644 index 0000000..bf54ab2 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/requests/cookies.py @@ -0,0 +1,561 @@ +""" +requests.cookies +~~~~~~~~~~~~~~~~ + +Compatibility code to be able to use `cookielib.CookieJar` with requests. + +requests.utils imports from here, so be careful with imports. +""" + +import calendar +import copy +import time + +from ._internal_utils import to_native_string +from .compat import Morsel, MutableMapping, cookielib, urlparse, urlunparse + +try: + import threading +except ImportError: + import dummy_threading as threading + + +class MockRequest: + """Wraps a `requests.Request` to mimic a `urllib2.Request`. + + The code in `cookielib.CookieJar` expects this interface in order to correctly + manage cookie policies, i.e., determine whether a cookie can be set, given the + domains of the request and the cookie. + + The original request object is read-only. The client is responsible for collecting + the new headers via `get_new_headers()` and interpreting them appropriately. You + probably want `get_cookie_header`, defined below. + """ + + def __init__(self, request): + self._r = request + self._new_headers = {} + self.type = urlparse(self._r.url).scheme + + def get_type(self): + return self.type + + def get_host(self): + return urlparse(self._r.url).netloc + + def get_origin_req_host(self): + return self.get_host() + + def get_full_url(self): + # Only return the response's URL if the user hadn't set the Host + # header + if not self._r.headers.get("Host"): + return self._r.url + # If they did set it, retrieve it and reconstruct the expected domain + host = to_native_string(self._r.headers["Host"], encoding="utf-8") + parsed = urlparse(self._r.url) + # Reconstruct the URL as we expect it + return urlunparse( + [ + parsed.scheme, + host, + parsed.path, + parsed.params, + parsed.query, + parsed.fragment, + ] + ) + + def is_unverifiable(self): + return True + + def has_header(self, name): + return name in self._r.headers or name in self._new_headers + + def get_header(self, name, default=None): + return self._r.headers.get(name, self._new_headers.get(name, default)) + + def add_header(self, key, val): + """cookielib has no legitimate use for this method; add it back if you find one.""" + raise NotImplementedError( + "Cookie headers should be added with add_unredirected_header()" + ) + + def add_unredirected_header(self, name, value): + self._new_headers[name] = value + + def get_new_headers(self): + return self._new_headers + + @property + def unverifiable(self): + return self.is_unverifiable() + + @property + def origin_req_host(self): + return self.get_origin_req_host() + + @property + def host(self): + return self.get_host() + + +class MockResponse: + """Wraps a `httplib.HTTPMessage` to mimic a `urllib.addinfourl`. + + ...what? Basically, expose the parsed HTTP headers from the server response + the way `cookielib` expects to see them. + """ + + def __init__(self, headers): + """Make a MockResponse for `cookielib` to read. + + :param headers: a httplib.HTTPMessage or analogous carrying the headers + """ + self._headers = headers + + def info(self): + return self._headers + + def getheaders(self, name): + self._headers.getheaders(name) + + +def extract_cookies_to_jar(jar, request, response): + """Extract the cookies from the response into a CookieJar. + + :param jar: cookielib.CookieJar (not necessarily a RequestsCookieJar) + :param request: our own requests.Request object + :param response: urllib3.HTTPResponse object + """ + if not (hasattr(response, "_original_response") and response._original_response): + return + # the _original_response field is the wrapped httplib.HTTPResponse object, + req = MockRequest(request) + # pull out the HTTPMessage with the headers and put it in the mock: + res = MockResponse(response._original_response.msg) + jar.extract_cookies(res, req) + + +def get_cookie_header(jar, request): + """ + Produce an appropriate Cookie header string to be sent with `request`, or None. + + :rtype: str + """ + r = MockRequest(request) + jar.add_cookie_header(r) + return r.get_new_headers().get("Cookie") + + +def remove_cookie_by_name(cookiejar, name, domain=None, path=None): + """Unsets a cookie by name, by default over all domains and paths. + + Wraps CookieJar.clear(), is O(n). + """ + clearables = [] + for cookie in cookiejar: + if cookie.name != name: + continue + if domain is not None and domain != cookie.domain: + continue + if path is not None and path != cookie.path: + continue + clearables.append((cookie.domain, cookie.path, cookie.name)) + + for domain, path, name in clearables: + cookiejar.clear(domain, path, name) + + +class CookieConflictError(RuntimeError): + """There are two cookies that meet the criteria specified in the cookie jar. + Use .get and .set and include domain and path args in order to be more specific. + """ + + +class RequestsCookieJar(cookielib.CookieJar, MutableMapping): + """Compatibility class; is a cookielib.CookieJar, but exposes a dict + interface. + + This is the CookieJar we create by default for requests and sessions that + don't specify one, since some clients may expect response.cookies and + session.cookies to support dict operations. + + Requests does not use the dict interface internally; it's just for + compatibility with external client code. All requests code should work + out of the box with externally provided instances of ``CookieJar``, e.g. + ``LWPCookieJar`` and ``FileCookieJar``. + + Unlike a regular CookieJar, this class is pickleable. + + .. warning:: dictionary operations that are normally O(1) may be O(n). + """ + + def get(self, name, default=None, domain=None, path=None): + """Dict-like get() that also supports optional domain and path args in + order to resolve naming collisions from using one cookie jar over + multiple domains. + + .. warning:: operation is O(n), not O(1). + """ + try: + return self._find_no_duplicates(name, domain, path) + except KeyError: + return default + + def set(self, name, value, **kwargs): + """Dict-like set() that also supports optional domain and path args in + order to resolve naming collisions from using one cookie jar over + multiple domains. + """ + # support client code that unsets cookies by assignment of a None value: + if value is None: + remove_cookie_by_name( + self, name, domain=kwargs.get("domain"), path=kwargs.get("path") + ) + return + + if isinstance(value, Morsel): + c = morsel_to_cookie(value) + else: + c = create_cookie(name, value, **kwargs) + self.set_cookie(c) + return c + + def iterkeys(self): + """Dict-like iterkeys() that returns an iterator of names of cookies + from the jar. + + .. seealso:: itervalues() and iteritems(). + """ + for cookie in iter(self): + yield cookie.name + + def keys(self): + """Dict-like keys() that returns a list of names of cookies from the + jar. + + .. seealso:: values() and items(). + """ + return list(self.iterkeys()) + + def itervalues(self): + """Dict-like itervalues() that returns an iterator of values of cookies + from the jar. + + .. seealso:: iterkeys() and iteritems(). + """ + for cookie in iter(self): + yield cookie.value + + def values(self): + """Dict-like values() that returns a list of values of cookies from the + jar. + + .. seealso:: keys() and items(). + """ + return list(self.itervalues()) + + def iteritems(self): + """Dict-like iteritems() that returns an iterator of name-value tuples + from the jar. + + .. seealso:: iterkeys() and itervalues(). + """ + for cookie in iter(self): + yield cookie.name, cookie.value + + def items(self): + """Dict-like items() that returns a list of name-value tuples from the + jar. Allows client-code to call ``dict(RequestsCookieJar)`` and get a + vanilla python dict of key value pairs. + + .. seealso:: keys() and values(). + """ + return list(self.iteritems()) + + def list_domains(self): + """Utility method to list all the domains in the jar.""" + domains = [] + for cookie in iter(self): + if cookie.domain not in domains: + domains.append(cookie.domain) + return domains + + def list_paths(self): + """Utility method to list all the paths in the jar.""" + paths = [] + for cookie in iter(self): + if cookie.path not in paths: + paths.append(cookie.path) + return paths + + def multiple_domains(self): + """Returns True if there are multiple domains in the jar. + Returns False otherwise. + + :rtype: bool + """ + domains = [] + for cookie in iter(self): + if cookie.domain is not None and cookie.domain in domains: + return True + domains.append(cookie.domain) + return False # there is only one domain in jar + + def get_dict(self, domain=None, path=None): + """Takes as an argument an optional domain and path and returns a plain + old Python dict of name-value pairs of cookies that meet the + requirements. + + :rtype: dict + """ + dictionary = {} + for cookie in iter(self): + if (domain is None or cookie.domain == domain) and ( + path is None or cookie.path == path + ): + dictionary[cookie.name] = cookie.value + return dictionary + + def __contains__(self, name): + try: + return super().__contains__(name) + except CookieConflictError: + return True + + def __getitem__(self, name): + """Dict-like __getitem__() for compatibility with client code. Throws + exception if there are more than one cookie with name. In that case, + use the more explicit get() method instead. + + .. warning:: operation is O(n), not O(1). + """ + return self._find_no_duplicates(name) + + def __setitem__(self, name, value): + """Dict-like __setitem__ for compatibility with client code. Throws + exception if there is already a cookie of that name in the jar. In that + case, use the more explicit set() method instead. + """ + self.set(name, value) + + def __delitem__(self, name): + """Deletes a cookie given a name. Wraps ``cookielib.CookieJar``'s + ``remove_cookie_by_name()``. + """ + remove_cookie_by_name(self, name) + + def set_cookie(self, cookie, *args, **kwargs): + if ( + hasattr(cookie.value, "startswith") + and cookie.value.startswith('"') + and cookie.value.endswith('"') + ): + cookie.value = cookie.value.replace('\\"', "") + return super().set_cookie(cookie, *args, **kwargs) + + def update(self, other): + """Updates this jar with cookies from another CookieJar or dict-like""" + if isinstance(other, cookielib.CookieJar): + for cookie in other: + self.set_cookie(copy.copy(cookie)) + else: + super().update(other) + + def _find(self, name, domain=None, path=None): + """Requests uses this method internally to get cookie values. + + If there are conflicting cookies, _find arbitrarily chooses one. + See _find_no_duplicates if you want an exception thrown if there are + conflicting cookies. + + :param name: a string containing name of cookie + :param domain: (optional) string containing domain of cookie + :param path: (optional) string containing path of cookie + :return: cookie.value + """ + for cookie in iter(self): + if cookie.name == name: + if domain is None or cookie.domain == domain: + if path is None or cookie.path == path: + return cookie.value + + raise KeyError(f"name={name!r}, domain={domain!r}, path={path!r}") + + def _find_no_duplicates(self, name, domain=None, path=None): + """Both ``__get_item__`` and ``get`` call this function: it's never + used elsewhere in Requests. + + :param name: a string containing name of cookie + :param domain: (optional) string containing domain of cookie + :param path: (optional) string containing path of cookie + :raises KeyError: if cookie is not found + :raises CookieConflictError: if there are multiple cookies + that match name and optionally domain and path + :return: cookie.value + """ + toReturn = None + for cookie in iter(self): + if cookie.name == name: + if domain is None or cookie.domain == domain: + if path is None or cookie.path == path: + if toReturn is not None: + # if there are multiple cookies that meet passed in criteria + raise CookieConflictError( + f"There are multiple cookies with name, {name!r}" + ) + # we will eventually return this as long as no cookie conflict + toReturn = cookie.value + + if toReturn: + return toReturn + raise KeyError(f"name={name!r}, domain={domain!r}, path={path!r}") + + def __getstate__(self): + """Unlike a normal CookieJar, this class is pickleable.""" + state = self.__dict__.copy() + # remove the unpickleable RLock object + state.pop("_cookies_lock") + return state + + def __setstate__(self, state): + """Unlike a normal CookieJar, this class is pickleable.""" + self.__dict__.update(state) + if "_cookies_lock" not in self.__dict__: + self._cookies_lock = threading.RLock() + + def copy(self): + """Return a copy of this RequestsCookieJar.""" + new_cj = RequestsCookieJar() + new_cj.set_policy(self.get_policy()) + new_cj.update(self) + return new_cj + + def get_policy(self): + """Return the CookiePolicy instance used.""" + return self._policy + + +def _copy_cookie_jar(jar): + if jar is None: + return None + + if hasattr(jar, "copy"): + # We're dealing with an instance of RequestsCookieJar + return jar.copy() + # We're dealing with a generic CookieJar instance + new_jar = copy.copy(jar) + new_jar.clear() + for cookie in jar: + new_jar.set_cookie(copy.copy(cookie)) + return new_jar + + +def create_cookie(name, value, **kwargs): + """Make a cookie from underspecified parameters. + + By default, the pair of `name` and `value` will be set for the domain '' + and sent on every request (this is sometimes called a "supercookie"). + """ + result = { + "version": 0, + "name": name, + "value": value, + "port": None, + "domain": "", + "path": "/", + "secure": False, + "expires": None, + "discard": True, + "comment": None, + "comment_url": None, + "rest": {"HttpOnly": None}, + "rfc2109": False, + } + + badargs = set(kwargs) - set(result) + if badargs: + raise TypeError( + f"create_cookie() got unexpected keyword arguments: {list(badargs)}" + ) + + result.update(kwargs) + result["port_specified"] = bool(result["port"]) + result["domain_specified"] = bool(result["domain"]) + result["domain_initial_dot"] = result["domain"].startswith(".") + result["path_specified"] = bool(result["path"]) + + return cookielib.Cookie(**result) + + +def morsel_to_cookie(morsel): + """Convert a Morsel object into a Cookie containing the one k/v pair.""" + + expires = None + if morsel["max-age"]: + try: + expires = int(time.time() + int(morsel["max-age"])) + except ValueError: + raise TypeError(f"max-age: {morsel['max-age']} must be integer") + elif morsel["expires"]: + time_template = "%a, %d-%b-%Y %H:%M:%S GMT" + expires = calendar.timegm(time.strptime(morsel["expires"], time_template)) + return create_cookie( + comment=morsel["comment"], + comment_url=bool(morsel["comment"]), + discard=False, + domain=morsel["domain"], + expires=expires, + name=morsel.key, + path=morsel["path"], + port=None, + rest={"HttpOnly": morsel["httponly"]}, + rfc2109=False, + secure=bool(morsel["secure"]), + value=morsel.value, + version=morsel["version"] or 0, + ) + + +def cookiejar_from_dict(cookie_dict, cookiejar=None, overwrite=True): + """Returns a CookieJar from a key/value dictionary. + + :param cookie_dict: Dict of key/values to insert into CookieJar. + :param cookiejar: (optional) A cookiejar to add the cookies to. + :param overwrite: (optional) If False, will not replace cookies + already in the jar with new ones. + :rtype: CookieJar + """ + if cookiejar is None: + cookiejar = RequestsCookieJar() + + if cookie_dict is not None: + names_from_jar = [cookie.name for cookie in cookiejar] + for name in cookie_dict: + if overwrite or (name not in names_from_jar): + cookiejar.set_cookie(create_cookie(name, cookie_dict[name])) + + return cookiejar + + +def merge_cookies(cookiejar, cookies): + """Add cookies to cookiejar and returns a merged CookieJar. + + :param cookiejar: CookieJar object to add the cookies to. + :param cookies: Dictionary or CookieJar object to be added. + :rtype: CookieJar + """ + if not isinstance(cookiejar, cookielib.CookieJar): + raise ValueError("You can only merge into CookieJar") + + if isinstance(cookies, dict): + cookiejar = cookiejar_from_dict(cookies, cookiejar=cookiejar, overwrite=False) + elif isinstance(cookies, cookielib.CookieJar): + try: + cookiejar.update(cookies) + except AttributeError: + for cookie_in_jar in cookies: + cookiejar.set_cookie(cookie_in_jar) + + return cookiejar diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/requests/exceptions.py b/.venv/lib/python3.11/site-packages/pip/_vendor/requests/exceptions.py new file mode 100644 index 0000000..168d073 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/requests/exceptions.py @@ -0,0 +1,141 @@ +""" +requests.exceptions +~~~~~~~~~~~~~~~~~~~ + +This module contains the set of Requests' exceptions. +""" +from pip._vendor.urllib3.exceptions import HTTPError as BaseHTTPError + +from .compat import JSONDecodeError as CompatJSONDecodeError + + +class RequestException(IOError): + """There was an ambiguous exception that occurred while handling your + request. + """ + + def __init__(self, *args, **kwargs): + """Initialize RequestException with `request` and `response` objects.""" + response = kwargs.pop("response", None) + self.response = response + self.request = kwargs.pop("request", None) + if response is not None and not self.request and hasattr(response, "request"): + self.request = self.response.request + super().__init__(*args, **kwargs) + + +class InvalidJSONError(RequestException): + """A JSON error occurred.""" + + +class JSONDecodeError(InvalidJSONError, CompatJSONDecodeError): + """Couldn't decode the text into json""" + + def __init__(self, *args, **kwargs): + """ + Construct the JSONDecodeError instance first with all + args. Then use it's args to construct the IOError so that + the json specific args aren't used as IOError specific args + and the error message from JSONDecodeError is preserved. + """ + CompatJSONDecodeError.__init__(self, *args) + InvalidJSONError.__init__(self, *self.args, **kwargs) + + +class HTTPError(RequestException): + """An HTTP error occurred.""" + + +class ConnectionError(RequestException): + """A Connection error occurred.""" + + +class ProxyError(ConnectionError): + """A proxy error occurred.""" + + +class SSLError(ConnectionError): + """An SSL error occurred.""" + + +class Timeout(RequestException): + """The request timed out. + + Catching this error will catch both + :exc:`~requests.exceptions.ConnectTimeout` and + :exc:`~requests.exceptions.ReadTimeout` errors. + """ + + +class ConnectTimeout(ConnectionError, Timeout): + """The request timed out while trying to connect to the remote server. + + Requests that produced this error are safe to retry. + """ + + +class ReadTimeout(Timeout): + """The server did not send any data in the allotted amount of time.""" + + +class URLRequired(RequestException): + """A valid URL is required to make a request.""" + + +class TooManyRedirects(RequestException): + """Too many redirects.""" + + +class MissingSchema(RequestException, ValueError): + """The URL scheme (e.g. http or https) is missing.""" + + +class InvalidSchema(RequestException, ValueError): + """The URL scheme provided is either invalid or unsupported.""" + + +class InvalidURL(RequestException, ValueError): + """The URL provided was somehow invalid.""" + + +class InvalidHeader(RequestException, ValueError): + """The header value provided was somehow invalid.""" + + +class InvalidProxyURL(InvalidURL): + """The proxy URL provided is invalid.""" + + +class ChunkedEncodingError(RequestException): + """The server declared chunked encoding but sent an invalid chunk.""" + + +class ContentDecodingError(RequestException, BaseHTTPError): + """Failed to decode response content.""" + + +class StreamConsumedError(RequestException, TypeError): + """The content for this response was already consumed.""" + + +class RetryError(RequestException): + """Custom retries logic failed""" + + +class UnrewindableBodyError(RequestException): + """Requests encountered an error when trying to rewind a body.""" + + +# Warnings + + +class RequestsWarning(Warning): + """Base warning for Requests.""" + + +class FileModeWarning(RequestsWarning, DeprecationWarning): + """A file was opened in text mode, but Requests determined its binary length.""" + + +class RequestsDependencyWarning(RequestsWarning): + """An imported dependency doesn't match the expected version range.""" diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/requests/help.py b/.venv/lib/python3.11/site-packages/pip/_vendor/requests/help.py new file mode 100644 index 0000000..2d292c2 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/requests/help.py @@ -0,0 +1,131 @@ +"""Module containing bug report helper(s).""" + +import json +import platform +import ssl +import sys + +from pip._vendor import idna +from pip._vendor import urllib3 + +from . import __version__ as requests_version + +charset_normalizer = None + +try: + from pip._vendor import chardet +except ImportError: + chardet = None + +try: + from pip._vendor.urllib3.contrib import pyopenssl +except ImportError: + pyopenssl = None + OpenSSL = None + cryptography = None +else: + import cryptography + import OpenSSL + + +def _implementation(): + """Return a dict with the Python implementation and version. + + Provide both the name and the version of the Python implementation + currently running. For example, on CPython 3.10.3 it will return + {'name': 'CPython', 'version': '3.10.3'}. + + This function works best on CPython and PyPy: in particular, it probably + doesn't work for Jython or IronPython. Future investigation should be done + to work out the correct shape of the code for those platforms. + """ + implementation = platform.python_implementation() + + if implementation == "CPython": + implementation_version = platform.python_version() + elif implementation == "PyPy": + implementation_version = "{}.{}.{}".format( + sys.pypy_version_info.major, + sys.pypy_version_info.minor, + sys.pypy_version_info.micro, + ) + if sys.pypy_version_info.releaselevel != "final": + implementation_version = "".join( + [implementation_version, sys.pypy_version_info.releaselevel] + ) + elif implementation == "Jython": + implementation_version = platform.python_version() # Complete Guess + elif implementation == "IronPython": + implementation_version = platform.python_version() # Complete Guess + else: + implementation_version = "Unknown" + + return {"name": implementation, "version": implementation_version} + + +def info(): + """Generate information for a bug report.""" + try: + platform_info = { + "system": platform.system(), + "release": platform.release(), + } + except OSError: + platform_info = { + "system": "Unknown", + "release": "Unknown", + } + + implementation_info = _implementation() + urllib3_info = {"version": urllib3.__version__} + charset_normalizer_info = {"version": None} + chardet_info = {"version": None} + if charset_normalizer: + charset_normalizer_info = {"version": charset_normalizer.__version__} + if chardet: + chardet_info = {"version": chardet.__version__} + + pyopenssl_info = { + "version": None, + "openssl_version": "", + } + if OpenSSL: + pyopenssl_info = { + "version": OpenSSL.__version__, + "openssl_version": f"{OpenSSL.SSL.OPENSSL_VERSION_NUMBER:x}", + } + cryptography_info = { + "version": getattr(cryptography, "__version__", ""), + } + idna_info = { + "version": getattr(idna, "__version__", ""), + } + + system_ssl = ssl.OPENSSL_VERSION_NUMBER + system_ssl_info = {"version": f"{system_ssl:x}" if system_ssl is not None else ""} + + return { + "platform": platform_info, + "implementation": implementation_info, + "system_ssl": system_ssl_info, + "using_pyopenssl": pyopenssl is not None, + "using_charset_normalizer": chardet is None, + "pyOpenSSL": pyopenssl_info, + "urllib3": urllib3_info, + "chardet": chardet_info, + "charset_normalizer": charset_normalizer_info, + "cryptography": cryptography_info, + "idna": idna_info, + "requests": { + "version": requests_version, + }, + } + + +def main(): + """Pretty-print the bug information as JSON.""" + print(json.dumps(info(), sort_keys=True, indent=2)) + + +if __name__ == "__main__": + main() diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/requests/hooks.py b/.venv/lib/python3.11/site-packages/pip/_vendor/requests/hooks.py new file mode 100644 index 0000000..d181ba2 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/requests/hooks.py @@ -0,0 +1,33 @@ +""" +requests.hooks +~~~~~~~~~~~~~~ + +This module provides the capabilities for the Requests hooks system. + +Available hooks: + +``response``: + The response generated from a Request. +""" +HOOKS = ["response"] + + +def default_hooks(): + return {event: [] for event in HOOKS} + + +# TODO: response is the only one + + +def dispatch_hook(key, hooks, hook_data, **kwargs): + """Dispatches a hook dictionary on a given piece of data.""" + hooks = hooks or {} + hooks = hooks.get(key) + if hooks: + if hasattr(hooks, "__call__"): + hooks = [hooks] + for hook in hooks: + _hook_data = hook(hook_data, **kwargs) + if _hook_data is not None: + hook_data = _hook_data + return hook_data diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/requests/models.py b/.venv/lib/python3.11/site-packages/pip/_vendor/requests/models.py new file mode 100644 index 0000000..76e6f19 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/requests/models.py @@ -0,0 +1,1034 @@ +""" +requests.models +~~~~~~~~~~~~~~~ + +This module contains the primary objects that power Requests. +""" + +import datetime + +# Import encoding now, to avoid implicit import later. +# Implicit import within threads may cause LookupError when standard library is in a ZIP, +# such as in Embedded Python. See https://github.com/psf/requests/issues/3578. +import encodings.idna # noqa: F401 +from io import UnsupportedOperation + +from pip._vendor.urllib3.exceptions import ( + DecodeError, + LocationParseError, + ProtocolError, + ReadTimeoutError, + SSLError, +) +from pip._vendor.urllib3.fields import RequestField +from pip._vendor.urllib3.filepost import encode_multipart_formdata +from pip._vendor.urllib3.util import parse_url + +from ._internal_utils import to_native_string, unicode_is_ascii +from .auth import HTTPBasicAuth +from .compat import ( + Callable, + JSONDecodeError, + Mapping, + basestring, + builtin_str, + chardet, + cookielib, +) +from .compat import json as complexjson +from .compat import urlencode, urlsplit, urlunparse +from .cookies import _copy_cookie_jar, cookiejar_from_dict, get_cookie_header +from .exceptions import ( + ChunkedEncodingError, + ConnectionError, + ContentDecodingError, + HTTPError, + InvalidJSONError, + InvalidURL, +) +from .exceptions import JSONDecodeError as RequestsJSONDecodeError +from .exceptions import MissingSchema +from .exceptions import SSLError as RequestsSSLError +from .exceptions import StreamConsumedError +from .hooks import default_hooks +from .status_codes import codes +from .structures import CaseInsensitiveDict +from .utils import ( + check_header_validity, + get_auth_from_url, + guess_filename, + guess_json_utf, + iter_slices, + parse_header_links, + requote_uri, + stream_decode_response_unicode, + super_len, + to_key_val_list, +) + +#: The set of HTTP status codes that indicate an automatically +#: processable redirect. +REDIRECT_STATI = ( + codes.moved, # 301 + codes.found, # 302 + codes.other, # 303 + codes.temporary_redirect, # 307 + codes.permanent_redirect, # 308 +) + +DEFAULT_REDIRECT_LIMIT = 30 +CONTENT_CHUNK_SIZE = 10 * 1024 +ITER_CHUNK_SIZE = 512 + + +class RequestEncodingMixin: + @property + def path_url(self): + """Build the path URL to use.""" + + url = [] + + p = urlsplit(self.url) + + path = p.path + if not path: + path = "/" + + url.append(path) + + query = p.query + if query: + url.append("?") + url.append(query) + + return "".join(url) + + @staticmethod + def _encode_params(data): + """Encode parameters in a piece of data. + + Will successfully encode parameters when passed as a dict or a list of + 2-tuples. Order is retained if data is a list of 2-tuples but arbitrary + if parameters are supplied as a dict. + """ + + if isinstance(data, (str, bytes)): + return data + elif hasattr(data, "read"): + return data + elif hasattr(data, "__iter__"): + result = [] + for k, vs in to_key_val_list(data): + if isinstance(vs, basestring) or not hasattr(vs, "__iter__"): + vs = [vs] + for v in vs: + if v is not None: + result.append( + ( + k.encode("utf-8") if isinstance(k, str) else k, + v.encode("utf-8") if isinstance(v, str) else v, + ) + ) + return urlencode(result, doseq=True) + else: + return data + + @staticmethod + def _encode_files(files, data): + """Build the body for a multipart/form-data request. + + Will successfully encode files when passed as a dict or a list of + tuples. Order is retained if data is a list of tuples but arbitrary + if parameters are supplied as a dict. + The tuples may be 2-tuples (filename, fileobj), 3-tuples (filename, fileobj, contentype) + or 4-tuples (filename, fileobj, contentype, custom_headers). + """ + if not files: + raise ValueError("Files must be provided.") + elif isinstance(data, basestring): + raise ValueError("Data must not be a string.") + + new_fields = [] + fields = to_key_val_list(data or {}) + files = to_key_val_list(files or {}) + + for field, val in fields: + if isinstance(val, basestring) or not hasattr(val, "__iter__"): + val = [val] + for v in val: + if v is not None: + # Don't call str() on bytestrings: in Py3 it all goes wrong. + if not isinstance(v, bytes): + v = str(v) + + new_fields.append( + ( + field.decode("utf-8") + if isinstance(field, bytes) + else field, + v.encode("utf-8") if isinstance(v, str) else v, + ) + ) + + for (k, v) in files: + # support for explicit filename + ft = None + fh = None + if isinstance(v, (tuple, list)): + if len(v) == 2: + fn, fp = v + elif len(v) == 3: + fn, fp, ft = v + else: + fn, fp, ft, fh = v + else: + fn = guess_filename(v) or k + fp = v + + if isinstance(fp, (str, bytes, bytearray)): + fdata = fp + elif hasattr(fp, "read"): + fdata = fp.read() + elif fp is None: + continue + else: + fdata = fp + + rf = RequestField(name=k, data=fdata, filename=fn, headers=fh) + rf.make_multipart(content_type=ft) + new_fields.append(rf) + + body, content_type = encode_multipart_formdata(new_fields) + + return body, content_type + + +class RequestHooksMixin: + def register_hook(self, event, hook): + """Properly register a hook.""" + + if event not in self.hooks: + raise ValueError(f'Unsupported event specified, with event name "{event}"') + + if isinstance(hook, Callable): + self.hooks[event].append(hook) + elif hasattr(hook, "__iter__"): + self.hooks[event].extend(h for h in hook if isinstance(h, Callable)) + + def deregister_hook(self, event, hook): + """Deregister a previously registered hook. + Returns True if the hook existed, False if not. + """ + + try: + self.hooks[event].remove(hook) + return True + except ValueError: + return False + + +class Request(RequestHooksMixin): + """A user-created :class:`Request ` object. + + Used to prepare a :class:`PreparedRequest `, which is sent to the server. + + :param method: HTTP method to use. + :param url: URL to send. + :param headers: dictionary of headers to send. + :param files: dictionary of {filename: fileobject} files to multipart upload. + :param data: the body to attach to the request. If a dictionary or + list of tuples ``[(key, value)]`` is provided, form-encoding will + take place. + :param json: json for the body to attach to the request (if files or data is not specified). + :param params: URL parameters to append to the URL. If a dictionary or + list of tuples ``[(key, value)]`` is provided, form-encoding will + take place. + :param auth: Auth handler or (user, pass) tuple. + :param cookies: dictionary or CookieJar of cookies to attach to this request. + :param hooks: dictionary of callback hooks, for internal usage. + + Usage:: + + >>> import requests + >>> req = requests.Request('GET', 'https://httpbin.org/get') + >>> req.prepare() + + """ + + def __init__( + self, + method=None, + url=None, + headers=None, + files=None, + data=None, + params=None, + auth=None, + cookies=None, + hooks=None, + json=None, + ): + + # Default empty dicts for dict params. + data = [] if data is None else data + files = [] if files is None else files + headers = {} if headers is None else headers + params = {} if params is None else params + hooks = {} if hooks is None else hooks + + self.hooks = default_hooks() + for (k, v) in list(hooks.items()): + self.register_hook(event=k, hook=v) + + self.method = method + self.url = url + self.headers = headers + self.files = files + self.data = data + self.json = json + self.params = params + self.auth = auth + self.cookies = cookies + + def __repr__(self): + return f"" + + def prepare(self): + """Constructs a :class:`PreparedRequest ` for transmission and returns it.""" + p = PreparedRequest() + p.prepare( + method=self.method, + url=self.url, + headers=self.headers, + files=self.files, + data=self.data, + json=self.json, + params=self.params, + auth=self.auth, + cookies=self.cookies, + hooks=self.hooks, + ) + return p + + +class PreparedRequest(RequestEncodingMixin, RequestHooksMixin): + """The fully mutable :class:`PreparedRequest ` object, + containing the exact bytes that will be sent to the server. + + Instances are generated from a :class:`Request ` object, and + should not be instantiated manually; doing so may produce undesirable + effects. + + Usage:: + + >>> import requests + >>> req = requests.Request('GET', 'https://httpbin.org/get') + >>> r = req.prepare() + >>> r + + + >>> s = requests.Session() + >>> s.send(r) + + """ + + def __init__(self): + #: HTTP verb to send to the server. + self.method = None + #: HTTP URL to send the request to. + self.url = None + #: dictionary of HTTP headers. + self.headers = None + # The `CookieJar` used to create the Cookie header will be stored here + # after prepare_cookies is called + self._cookies = None + #: request body to send to the server. + self.body = None + #: dictionary of callback hooks, for internal usage. + self.hooks = default_hooks() + #: integer denoting starting position of a readable file-like body. + self._body_position = None + + def prepare( + self, + method=None, + url=None, + headers=None, + files=None, + data=None, + params=None, + auth=None, + cookies=None, + hooks=None, + json=None, + ): + """Prepares the entire request with the given parameters.""" + + self.prepare_method(method) + self.prepare_url(url, params) + self.prepare_headers(headers) + self.prepare_cookies(cookies) + self.prepare_body(data, files, json) + self.prepare_auth(auth, url) + + # Note that prepare_auth must be last to enable authentication schemes + # such as OAuth to work on a fully prepared request. + + # This MUST go after prepare_auth. Authenticators could add a hook + self.prepare_hooks(hooks) + + def __repr__(self): + return f"" + + def copy(self): + p = PreparedRequest() + p.method = self.method + p.url = self.url + p.headers = self.headers.copy() if self.headers is not None else None + p._cookies = _copy_cookie_jar(self._cookies) + p.body = self.body + p.hooks = self.hooks + p._body_position = self._body_position + return p + + def prepare_method(self, method): + """Prepares the given HTTP method.""" + self.method = method + if self.method is not None: + self.method = to_native_string(self.method.upper()) + + @staticmethod + def _get_idna_encoded_host(host): + from pip._vendor import idna + + try: + host = idna.encode(host, uts46=True).decode("utf-8") + except idna.IDNAError: + raise UnicodeError + return host + + def prepare_url(self, url, params): + """Prepares the given HTTP URL.""" + #: Accept objects that have string representations. + #: We're unable to blindly call unicode/str functions + #: as this will include the bytestring indicator (b'') + #: on python 3.x. + #: https://github.com/psf/requests/pull/2238 + if isinstance(url, bytes): + url = url.decode("utf8") + else: + url = str(url) + + # Remove leading whitespaces from url + url = url.lstrip() + + # Don't do any URL preparation for non-HTTP schemes like `mailto`, + # `data` etc to work around exceptions from `url_parse`, which + # handles RFC 3986 only. + if ":" in url and not url.lower().startswith("http"): + self.url = url + return + + # Support for unicode domain names and paths. + try: + scheme, auth, host, port, path, query, fragment = parse_url(url) + except LocationParseError as e: + raise InvalidURL(*e.args) + + if not scheme: + raise MissingSchema( + f"Invalid URL {url!r}: No scheme supplied. " + f"Perhaps you meant https://{url}?" + ) + + if not host: + raise InvalidURL(f"Invalid URL {url!r}: No host supplied") + + # In general, we want to try IDNA encoding the hostname if the string contains + # non-ASCII characters. This allows users to automatically get the correct IDNA + # behaviour. For strings containing only ASCII characters, we need to also verify + # it doesn't start with a wildcard (*), before allowing the unencoded hostname. + if not unicode_is_ascii(host): + try: + host = self._get_idna_encoded_host(host) + except UnicodeError: + raise InvalidURL("URL has an invalid label.") + elif host.startswith(("*", ".")): + raise InvalidURL("URL has an invalid label.") + + # Carefully reconstruct the network location + netloc = auth or "" + if netloc: + netloc += "@" + netloc += host + if port: + netloc += f":{port}" + + # Bare domains aren't valid URLs. + if not path: + path = "/" + + if isinstance(params, (str, bytes)): + params = to_native_string(params) + + enc_params = self._encode_params(params) + if enc_params: + if query: + query = f"{query}&{enc_params}" + else: + query = enc_params + + url = requote_uri(urlunparse([scheme, netloc, path, None, query, fragment])) + self.url = url + + def prepare_headers(self, headers): + """Prepares the given HTTP headers.""" + + self.headers = CaseInsensitiveDict() + if headers: + for header in headers.items(): + # Raise exception on invalid header value. + check_header_validity(header) + name, value = header + self.headers[to_native_string(name)] = value + + def prepare_body(self, data, files, json=None): + """Prepares the given HTTP body data.""" + + # Check if file, fo, generator, iterator. + # If not, run through normal process. + + # Nottin' on you. + body = None + content_type = None + + if not data and json is not None: + # urllib3 requires a bytes-like body. Python 2's json.dumps + # provides this natively, but Python 3 gives a Unicode string. + content_type = "application/json" + + try: + body = complexjson.dumps(json, allow_nan=False) + except ValueError as ve: + raise InvalidJSONError(ve, request=self) + + if not isinstance(body, bytes): + body = body.encode("utf-8") + + is_stream = all( + [ + hasattr(data, "__iter__"), + not isinstance(data, (basestring, list, tuple, Mapping)), + ] + ) + + if is_stream: + try: + length = super_len(data) + except (TypeError, AttributeError, UnsupportedOperation): + length = None + + body = data + + if getattr(body, "tell", None) is not None: + # Record the current file position before reading. + # This will allow us to rewind a file in the event + # of a redirect. + try: + self._body_position = body.tell() + except OSError: + # This differentiates from None, allowing us to catch + # a failed `tell()` later when trying to rewind the body + self._body_position = object() + + if files: + raise NotImplementedError( + "Streamed bodies and files are mutually exclusive." + ) + + if length: + self.headers["Content-Length"] = builtin_str(length) + else: + self.headers["Transfer-Encoding"] = "chunked" + else: + # Multi-part file uploads. + if files: + (body, content_type) = self._encode_files(files, data) + else: + if data: + body = self._encode_params(data) + if isinstance(data, basestring) or hasattr(data, "read"): + content_type = None + else: + content_type = "application/x-www-form-urlencoded" + + self.prepare_content_length(body) + + # Add content-type if it wasn't explicitly provided. + if content_type and ("content-type" not in self.headers): + self.headers["Content-Type"] = content_type + + self.body = body + + def prepare_content_length(self, body): + """Prepare Content-Length header based on request method and body""" + if body is not None: + length = super_len(body) + if length: + # If length exists, set it. Otherwise, we fallback + # to Transfer-Encoding: chunked. + self.headers["Content-Length"] = builtin_str(length) + elif ( + self.method not in ("GET", "HEAD") + and self.headers.get("Content-Length") is None + ): + # Set Content-Length to 0 for methods that can have a body + # but don't provide one. (i.e. not GET or HEAD) + self.headers["Content-Length"] = "0" + + def prepare_auth(self, auth, url=""): + """Prepares the given HTTP auth data.""" + + # If no Auth is explicitly provided, extract it from the URL first. + if auth is None: + url_auth = get_auth_from_url(self.url) + auth = url_auth if any(url_auth) else None + + if auth: + if isinstance(auth, tuple) and len(auth) == 2: + # special-case basic HTTP auth + auth = HTTPBasicAuth(*auth) + + # Allow auth to make its changes. + r = auth(self) + + # Update self to reflect the auth changes. + self.__dict__.update(r.__dict__) + + # Recompute Content-Length + self.prepare_content_length(self.body) + + def prepare_cookies(self, cookies): + """Prepares the given HTTP cookie data. + + This function eventually generates a ``Cookie`` header from the + given cookies using cookielib. Due to cookielib's design, the header + will not be regenerated if it already exists, meaning this function + can only be called once for the life of the + :class:`PreparedRequest ` object. Any subsequent calls + to ``prepare_cookies`` will have no actual effect, unless the "Cookie" + header is removed beforehand. + """ + if isinstance(cookies, cookielib.CookieJar): + self._cookies = cookies + else: + self._cookies = cookiejar_from_dict(cookies) + + cookie_header = get_cookie_header(self._cookies, self) + if cookie_header is not None: + self.headers["Cookie"] = cookie_header + + def prepare_hooks(self, hooks): + """Prepares the given hooks.""" + # hooks can be passed as None to the prepare method and to this + # method. To prevent iterating over None, simply use an empty list + # if hooks is False-y + hooks = hooks or [] + for event in hooks: + self.register_hook(event, hooks[event]) + + +class Response: + """The :class:`Response ` object, which contains a + server's response to an HTTP request. + """ + + __attrs__ = [ + "_content", + "status_code", + "headers", + "url", + "history", + "encoding", + "reason", + "cookies", + "elapsed", + "request", + ] + + def __init__(self): + self._content = False + self._content_consumed = False + self._next = None + + #: Integer Code of responded HTTP Status, e.g. 404 or 200. + self.status_code = None + + #: Case-insensitive Dictionary of Response Headers. + #: For example, ``headers['content-encoding']`` will return the + #: value of a ``'Content-Encoding'`` response header. + self.headers = CaseInsensitiveDict() + + #: File-like object representation of response (for advanced usage). + #: Use of ``raw`` requires that ``stream=True`` be set on the request. + #: This requirement does not apply for use internally to Requests. + self.raw = None + + #: Final URL location of Response. + self.url = None + + #: Encoding to decode with when accessing r.text. + self.encoding = None + + #: A list of :class:`Response ` objects from + #: the history of the Request. Any redirect responses will end + #: up here. The list is sorted from the oldest to the most recent request. + self.history = [] + + #: Textual reason of responded HTTP Status, e.g. "Not Found" or "OK". + self.reason = None + + #: A CookieJar of Cookies the server sent back. + self.cookies = cookiejar_from_dict({}) + + #: The amount of time elapsed between sending the request + #: and the arrival of the response (as a timedelta). + #: This property specifically measures the time taken between sending + #: the first byte of the request and finishing parsing the headers. It + #: is therefore unaffected by consuming the response content or the + #: value of the ``stream`` keyword argument. + self.elapsed = datetime.timedelta(0) + + #: The :class:`PreparedRequest ` object to which this + #: is a response. + self.request = None + + def __enter__(self): + return self + + def __exit__(self, *args): + self.close() + + def __getstate__(self): + # Consume everything; accessing the content attribute makes + # sure the content has been fully read. + if not self._content_consumed: + self.content + + return {attr: getattr(self, attr, None) for attr in self.__attrs__} + + def __setstate__(self, state): + for name, value in state.items(): + setattr(self, name, value) + + # pickled objects do not have .raw + setattr(self, "_content_consumed", True) + setattr(self, "raw", None) + + def __repr__(self): + return f"" + + def __bool__(self): + """Returns True if :attr:`status_code` is less than 400. + + This attribute checks if the status code of the response is between + 400 and 600 to see if there was a client error or a server error. If + the status code, is between 200 and 400, this will return True. This + is **not** a check to see if the response code is ``200 OK``. + """ + return self.ok + + def __nonzero__(self): + """Returns True if :attr:`status_code` is less than 400. + + This attribute checks if the status code of the response is between + 400 and 600 to see if there was a client error or a server error. If + the status code, is between 200 and 400, this will return True. This + is **not** a check to see if the response code is ``200 OK``. + """ + return self.ok + + def __iter__(self): + """Allows you to use a response as an iterator.""" + return self.iter_content(128) + + @property + def ok(self): + """Returns True if :attr:`status_code` is less than 400, False if not. + + This attribute checks if the status code of the response is between + 400 and 600 to see if there was a client error or a server error. If + the status code is between 200 and 400, this will return True. This + is **not** a check to see if the response code is ``200 OK``. + """ + try: + self.raise_for_status() + except HTTPError: + return False + return True + + @property + def is_redirect(self): + """True if this Response is a well-formed HTTP redirect that could have + been processed automatically (by :meth:`Session.resolve_redirects`). + """ + return "location" in self.headers and self.status_code in REDIRECT_STATI + + @property + def is_permanent_redirect(self): + """True if this Response one of the permanent versions of redirect.""" + return "location" in self.headers and self.status_code in ( + codes.moved_permanently, + codes.permanent_redirect, + ) + + @property + def next(self): + """Returns a PreparedRequest for the next request in a redirect chain, if there is one.""" + return self._next + + @property + def apparent_encoding(self): + """The apparent encoding, provided by the charset_normalizer or chardet libraries.""" + return chardet.detect(self.content)["encoding"] + + def iter_content(self, chunk_size=1, decode_unicode=False): + """Iterates over the response data. When stream=True is set on the + request, this avoids reading the content at once into memory for + large responses. The chunk size is the number of bytes it should + read into memory. This is not necessarily the length of each item + returned as decoding can take place. + + chunk_size must be of type int or None. A value of None will + function differently depending on the value of `stream`. + stream=True will read data as it arrives in whatever size the + chunks are received. If stream=False, data is returned as + a single chunk. + + If decode_unicode is True, content will be decoded using the best + available encoding based on the response. + """ + + def generate(): + # Special case for urllib3. + if hasattr(self.raw, "stream"): + try: + yield from self.raw.stream(chunk_size, decode_content=True) + except ProtocolError as e: + raise ChunkedEncodingError(e) + except DecodeError as e: + raise ContentDecodingError(e) + except ReadTimeoutError as e: + raise ConnectionError(e) + except SSLError as e: + raise RequestsSSLError(e) + else: + # Standard file-like object. + while True: + chunk = self.raw.read(chunk_size) + if not chunk: + break + yield chunk + + self._content_consumed = True + + if self._content_consumed and isinstance(self._content, bool): + raise StreamConsumedError() + elif chunk_size is not None and not isinstance(chunk_size, int): + raise TypeError( + f"chunk_size must be an int, it is instead a {type(chunk_size)}." + ) + # simulate reading small chunks of the content + reused_chunks = iter_slices(self._content, chunk_size) + + stream_chunks = generate() + + chunks = reused_chunks if self._content_consumed else stream_chunks + + if decode_unicode: + chunks = stream_decode_response_unicode(chunks, self) + + return chunks + + def iter_lines( + self, chunk_size=ITER_CHUNK_SIZE, decode_unicode=False, delimiter=None + ): + """Iterates over the response data, one line at a time. When + stream=True is set on the request, this avoids reading the + content at once into memory for large responses. + + .. note:: This method is not reentrant safe. + """ + + pending = None + + for chunk in self.iter_content( + chunk_size=chunk_size, decode_unicode=decode_unicode + ): + + if pending is not None: + chunk = pending + chunk + + if delimiter: + lines = chunk.split(delimiter) + else: + lines = chunk.splitlines() + + if lines and lines[-1] and chunk and lines[-1][-1] == chunk[-1]: + pending = lines.pop() + else: + pending = None + + yield from lines + + if pending is not None: + yield pending + + @property + def content(self): + """Content of the response, in bytes.""" + + if self._content is False: + # Read the contents. + if self._content_consumed: + raise RuntimeError("The content for this response was already consumed") + + if self.status_code == 0 or self.raw is None: + self._content = None + else: + self._content = b"".join(self.iter_content(CONTENT_CHUNK_SIZE)) or b"" + + self._content_consumed = True + # don't need to release the connection; that's been handled by urllib3 + # since we exhausted the data. + return self._content + + @property + def text(self): + """Content of the response, in unicode. + + If Response.encoding is None, encoding will be guessed using + ``charset_normalizer`` or ``chardet``. + + The encoding of the response content is determined based solely on HTTP + headers, following RFC 2616 to the letter. If you can take advantage of + non-HTTP knowledge to make a better guess at the encoding, you should + set ``r.encoding`` appropriately before accessing this property. + """ + + # Try charset from content-type + content = None + encoding = self.encoding + + if not self.content: + return "" + + # Fallback to auto-detected encoding. + if self.encoding is None: + encoding = self.apparent_encoding + + # Decode unicode from given encoding. + try: + content = str(self.content, encoding, errors="replace") + except (LookupError, TypeError): + # A LookupError is raised if the encoding was not found which could + # indicate a misspelling or similar mistake. + # + # A TypeError can be raised if encoding is None + # + # So we try blindly encoding. + content = str(self.content, errors="replace") + + return content + + def json(self, **kwargs): + r"""Returns the json-encoded content of a response, if any. + + :param \*\*kwargs: Optional arguments that ``json.loads`` takes. + :raises requests.exceptions.JSONDecodeError: If the response body does not + contain valid json. + """ + + if not self.encoding and self.content and len(self.content) > 3: + # No encoding set. JSON RFC 4627 section 3 states we should expect + # UTF-8, -16 or -32. Detect which one to use; If the detection or + # decoding fails, fall back to `self.text` (using charset_normalizer to make + # a best guess). + encoding = guess_json_utf(self.content) + if encoding is not None: + try: + return complexjson.loads(self.content.decode(encoding), **kwargs) + except UnicodeDecodeError: + # Wrong UTF codec detected; usually because it's not UTF-8 + # but some other 8-bit codec. This is an RFC violation, + # and the server didn't bother to tell us what codec *was* + # used. + pass + except JSONDecodeError as e: + raise RequestsJSONDecodeError(e.msg, e.doc, e.pos) + + try: + return complexjson.loads(self.text, **kwargs) + except JSONDecodeError as e: + # Catch JSON-related errors and raise as requests.JSONDecodeError + # This aliases json.JSONDecodeError and simplejson.JSONDecodeError + raise RequestsJSONDecodeError(e.msg, e.doc, e.pos) + + @property + def links(self): + """Returns the parsed header links of the response, if any.""" + + header = self.headers.get("link") + + resolved_links = {} + + if header: + links = parse_header_links(header) + + for link in links: + key = link.get("rel") or link.get("url") + resolved_links[key] = link + + return resolved_links + + def raise_for_status(self): + """Raises :class:`HTTPError`, if one occurred.""" + + http_error_msg = "" + if isinstance(self.reason, bytes): + # We attempt to decode utf-8 first because some servers + # choose to localize their reason strings. If the string + # isn't utf-8, we fall back to iso-8859-1 for all other + # encodings. (See PR #3538) + try: + reason = self.reason.decode("utf-8") + except UnicodeDecodeError: + reason = self.reason.decode("iso-8859-1") + else: + reason = self.reason + + if 400 <= self.status_code < 500: + http_error_msg = ( + f"{self.status_code} Client Error: {reason} for url: {self.url}" + ) + + elif 500 <= self.status_code < 600: + http_error_msg = ( + f"{self.status_code} Server Error: {reason} for url: {self.url}" + ) + + if http_error_msg: + raise HTTPError(http_error_msg, response=self) + + def close(self): + """Releases the connection back to the pool. Once this method has been + called the underlying ``raw`` object must not be accessed again. + + *Note: Should not normally need to be called explicitly.* + """ + if not self._content_consumed: + self.raw.close() + + release_conn = getattr(self.raw, "release_conn", None) + if release_conn is not None: + release_conn() diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/requests/packages.py b/.venv/lib/python3.11/site-packages/pip/_vendor/requests/packages.py new file mode 100644 index 0000000..9582fa7 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/requests/packages.py @@ -0,0 +1,16 @@ +import sys + +# This code exists for backwards compatibility reasons. +# I don't like it either. Just look the other way. :) + +for package in ('urllib3', 'idna', 'chardet'): + vendored_package = "pip._vendor." + package + locals()[package] = __import__(vendored_package) + # This traversal is apparently necessary such that the identities are + # preserved (requests.packages.urllib3.* is urllib3.*) + for mod in list(sys.modules): + if mod == vendored_package or mod.startswith(vendored_package + '.'): + unprefixed_mod = mod[len("pip._vendor."):] + sys.modules['pip._vendor.requests.packages.' + unprefixed_mod] = sys.modules[mod] + +# Kinda cool, though, right? diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/requests/sessions.py b/.venv/lib/python3.11/site-packages/pip/_vendor/requests/sessions.py new file mode 100644 index 0000000..dbcf2a7 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/requests/sessions.py @@ -0,0 +1,833 @@ +""" +requests.sessions +~~~~~~~~~~~~~~~~~ + +This module provides a Session object to manage and persist settings across +requests (cookies, auth, proxies). +""" +import os +import sys +import time +from collections import OrderedDict +from datetime import timedelta + +from ._internal_utils import to_native_string +from .adapters import HTTPAdapter +from .auth import _basic_auth_str +from .compat import Mapping, cookielib, urljoin, urlparse +from .cookies import ( + RequestsCookieJar, + cookiejar_from_dict, + extract_cookies_to_jar, + merge_cookies, +) +from .exceptions import ( + ChunkedEncodingError, + ContentDecodingError, + InvalidSchema, + TooManyRedirects, +) +from .hooks import default_hooks, dispatch_hook + +# formerly defined here, reexposed here for backward compatibility +from .models import ( # noqa: F401 + DEFAULT_REDIRECT_LIMIT, + REDIRECT_STATI, + PreparedRequest, + Request, +) +from .status_codes import codes +from .structures import CaseInsensitiveDict +from .utils import ( # noqa: F401 + DEFAULT_PORTS, + default_headers, + get_auth_from_url, + get_environ_proxies, + get_netrc_auth, + requote_uri, + resolve_proxies, + rewind_body, + should_bypass_proxies, + to_key_val_list, +) + +# Preferred clock, based on which one is more accurate on a given system. +if sys.platform == "win32": + preferred_clock = time.perf_counter +else: + preferred_clock = time.time + + +def merge_setting(request_setting, session_setting, dict_class=OrderedDict): + """Determines appropriate setting for a given request, taking into account + the explicit setting on that request, and the setting in the session. If a + setting is a dictionary, they will be merged together using `dict_class` + """ + + if session_setting is None: + return request_setting + + if request_setting is None: + return session_setting + + # Bypass if not a dictionary (e.g. verify) + if not ( + isinstance(session_setting, Mapping) and isinstance(request_setting, Mapping) + ): + return request_setting + + merged_setting = dict_class(to_key_val_list(session_setting)) + merged_setting.update(to_key_val_list(request_setting)) + + # Remove keys that are set to None. Extract keys first to avoid altering + # the dictionary during iteration. + none_keys = [k for (k, v) in merged_setting.items() if v is None] + for key in none_keys: + del merged_setting[key] + + return merged_setting + + +def merge_hooks(request_hooks, session_hooks, dict_class=OrderedDict): + """Properly merges both requests and session hooks. + + This is necessary because when request_hooks == {'response': []}, the + merge breaks Session hooks entirely. + """ + if session_hooks is None or session_hooks.get("response") == []: + return request_hooks + + if request_hooks is None or request_hooks.get("response") == []: + return session_hooks + + return merge_setting(request_hooks, session_hooks, dict_class) + + +class SessionRedirectMixin: + def get_redirect_target(self, resp): + """Receives a Response. Returns a redirect URI or ``None``""" + # Due to the nature of how requests processes redirects this method will + # be called at least once upon the original response and at least twice + # on each subsequent redirect response (if any). + # If a custom mixin is used to handle this logic, it may be advantageous + # to cache the redirect location onto the response object as a private + # attribute. + if resp.is_redirect: + location = resp.headers["location"] + # Currently the underlying http module on py3 decode headers + # in latin1, but empirical evidence suggests that latin1 is very + # rarely used with non-ASCII characters in HTTP headers. + # It is more likely to get UTF8 header rather than latin1. + # This causes incorrect handling of UTF8 encoded location headers. + # To solve this, we re-encode the location in latin1. + location = location.encode("latin1") + return to_native_string(location, "utf8") + return None + + def should_strip_auth(self, old_url, new_url): + """Decide whether Authorization header should be removed when redirecting""" + old_parsed = urlparse(old_url) + new_parsed = urlparse(new_url) + if old_parsed.hostname != new_parsed.hostname: + return True + # Special case: allow http -> https redirect when using the standard + # ports. This isn't specified by RFC 7235, but is kept to avoid + # breaking backwards compatibility with older versions of requests + # that allowed any redirects on the same host. + if ( + old_parsed.scheme == "http" + and old_parsed.port in (80, None) + and new_parsed.scheme == "https" + and new_parsed.port in (443, None) + ): + return False + + # Handle default port usage corresponding to scheme. + changed_port = old_parsed.port != new_parsed.port + changed_scheme = old_parsed.scheme != new_parsed.scheme + default_port = (DEFAULT_PORTS.get(old_parsed.scheme, None), None) + if ( + not changed_scheme + and old_parsed.port in default_port + and new_parsed.port in default_port + ): + return False + + # Standard case: root URI must match + return changed_port or changed_scheme + + def resolve_redirects( + self, + resp, + req, + stream=False, + timeout=None, + verify=True, + cert=None, + proxies=None, + yield_requests=False, + **adapter_kwargs, + ): + """Receives a Response. Returns a generator of Responses or Requests.""" + + hist = [] # keep track of history + + url = self.get_redirect_target(resp) + previous_fragment = urlparse(req.url).fragment + while url: + prepared_request = req.copy() + + # Update history and keep track of redirects. + # resp.history must ignore the original request in this loop + hist.append(resp) + resp.history = hist[1:] + + try: + resp.content # Consume socket so it can be released + except (ChunkedEncodingError, ContentDecodingError, RuntimeError): + resp.raw.read(decode_content=False) + + if len(resp.history) >= self.max_redirects: + raise TooManyRedirects( + f"Exceeded {self.max_redirects} redirects.", response=resp + ) + + # Release the connection back into the pool. + resp.close() + + # Handle redirection without scheme (see: RFC 1808 Section 4) + if url.startswith("//"): + parsed_rurl = urlparse(resp.url) + url = ":".join([to_native_string(parsed_rurl.scheme), url]) + + # Normalize url case and attach previous fragment if needed (RFC 7231 7.1.2) + parsed = urlparse(url) + if parsed.fragment == "" and previous_fragment: + parsed = parsed._replace(fragment=previous_fragment) + elif parsed.fragment: + previous_fragment = parsed.fragment + url = parsed.geturl() + + # Facilitate relative 'location' headers, as allowed by RFC 7231. + # (e.g. '/path/to/resource' instead of 'http://domain.tld/path/to/resource') + # Compliant with RFC3986, we percent encode the url. + if not parsed.netloc: + url = urljoin(resp.url, requote_uri(url)) + else: + url = requote_uri(url) + + prepared_request.url = to_native_string(url) + + self.rebuild_method(prepared_request, resp) + + # https://github.com/psf/requests/issues/1084 + if resp.status_code not in ( + codes.temporary_redirect, + codes.permanent_redirect, + ): + # https://github.com/psf/requests/issues/3490 + purged_headers = ("Content-Length", "Content-Type", "Transfer-Encoding") + for header in purged_headers: + prepared_request.headers.pop(header, None) + prepared_request.body = None + + headers = prepared_request.headers + headers.pop("Cookie", None) + + # Extract any cookies sent on the response to the cookiejar + # in the new request. Because we've mutated our copied prepared + # request, use the old one that we haven't yet touched. + extract_cookies_to_jar(prepared_request._cookies, req, resp.raw) + merge_cookies(prepared_request._cookies, self.cookies) + prepared_request.prepare_cookies(prepared_request._cookies) + + # Rebuild auth and proxy information. + proxies = self.rebuild_proxies(prepared_request, proxies) + self.rebuild_auth(prepared_request, resp) + + # A failed tell() sets `_body_position` to `object()`. This non-None + # value ensures `rewindable` will be True, allowing us to raise an + # UnrewindableBodyError, instead of hanging the connection. + rewindable = prepared_request._body_position is not None and ( + "Content-Length" in headers or "Transfer-Encoding" in headers + ) + + # Attempt to rewind consumed file-like object. + if rewindable: + rewind_body(prepared_request) + + # Override the original request. + req = prepared_request + + if yield_requests: + yield req + else: + + resp = self.send( + req, + stream=stream, + timeout=timeout, + verify=verify, + cert=cert, + proxies=proxies, + allow_redirects=False, + **adapter_kwargs, + ) + + extract_cookies_to_jar(self.cookies, prepared_request, resp.raw) + + # extract redirect url, if any, for the next loop + url = self.get_redirect_target(resp) + yield resp + + def rebuild_auth(self, prepared_request, response): + """When being redirected we may want to strip authentication from the + request to avoid leaking credentials. This method intelligently removes + and reapplies authentication where possible to avoid credential loss. + """ + headers = prepared_request.headers + url = prepared_request.url + + if "Authorization" in headers and self.should_strip_auth( + response.request.url, url + ): + # If we get redirected to a new host, we should strip out any + # authentication headers. + del headers["Authorization"] + + # .netrc might have more auth for us on our new host. + new_auth = get_netrc_auth(url) if self.trust_env else None + if new_auth is not None: + prepared_request.prepare_auth(new_auth) + + def rebuild_proxies(self, prepared_request, proxies): + """This method re-evaluates the proxy configuration by considering the + environment variables. If we are redirected to a URL covered by + NO_PROXY, we strip the proxy configuration. Otherwise, we set missing + proxy keys for this URL (in case they were stripped by a previous + redirect). + + This method also replaces the Proxy-Authorization header where + necessary. + + :rtype: dict + """ + headers = prepared_request.headers + scheme = urlparse(prepared_request.url).scheme + new_proxies = resolve_proxies(prepared_request, proxies, self.trust_env) + + if "Proxy-Authorization" in headers: + del headers["Proxy-Authorization"] + + try: + username, password = get_auth_from_url(new_proxies[scheme]) + except KeyError: + username, password = None, None + + # urllib3 handles proxy authorization for us in the standard adapter. + # Avoid appending this to TLS tunneled requests where it may be leaked. + if not scheme.startswith('https') and username and password: + headers["Proxy-Authorization"] = _basic_auth_str(username, password) + + return new_proxies + + def rebuild_method(self, prepared_request, response): + """When being redirected we may want to change the method of the request + based on certain specs or browser behavior. + """ + method = prepared_request.method + + # https://tools.ietf.org/html/rfc7231#section-6.4.4 + if response.status_code == codes.see_other and method != "HEAD": + method = "GET" + + # Do what the browsers do, despite standards... + # First, turn 302s into GETs. + if response.status_code == codes.found and method != "HEAD": + method = "GET" + + # Second, if a POST is responded to with a 301, turn it into a GET. + # This bizarre behaviour is explained in Issue 1704. + if response.status_code == codes.moved and method == "POST": + method = "GET" + + prepared_request.method = method + + +class Session(SessionRedirectMixin): + """A Requests session. + + Provides cookie persistence, connection-pooling, and configuration. + + Basic Usage:: + + >>> import requests + >>> s = requests.Session() + >>> s.get('https://httpbin.org/get') + + + Or as a context manager:: + + >>> with requests.Session() as s: + ... s.get('https://httpbin.org/get') + + """ + + __attrs__ = [ + "headers", + "cookies", + "auth", + "proxies", + "hooks", + "params", + "verify", + "cert", + "adapters", + "stream", + "trust_env", + "max_redirects", + ] + + def __init__(self): + + #: A case-insensitive dictionary of headers to be sent on each + #: :class:`Request ` sent from this + #: :class:`Session `. + self.headers = default_headers() + + #: Default Authentication tuple or object to attach to + #: :class:`Request `. + self.auth = None + + #: Dictionary mapping protocol or protocol and host to the URL of the proxy + #: (e.g. {'http': 'foo.bar:3128', 'http://host.name': 'foo.bar:4012'}) to + #: be used on each :class:`Request `. + self.proxies = {} + + #: Event-handling hooks. + self.hooks = default_hooks() + + #: Dictionary of querystring data to attach to each + #: :class:`Request `. The dictionary values may be lists for + #: representing multivalued query parameters. + self.params = {} + + #: Stream response content default. + self.stream = False + + #: SSL Verification default. + #: Defaults to `True`, requiring requests to verify the TLS certificate at the + #: remote end. + #: If verify is set to `False`, requests will accept any TLS certificate + #: presented by the server, and will ignore hostname mismatches and/or + #: expired certificates, which will make your application vulnerable to + #: man-in-the-middle (MitM) attacks. + #: Only set this to `False` for testing. + self.verify = True + + #: SSL client certificate default, if String, path to ssl client + #: cert file (.pem). If Tuple, ('cert', 'key') pair. + self.cert = None + + #: Maximum number of redirects allowed. If the request exceeds this + #: limit, a :class:`TooManyRedirects` exception is raised. + #: This defaults to requests.models.DEFAULT_REDIRECT_LIMIT, which is + #: 30. + self.max_redirects = DEFAULT_REDIRECT_LIMIT + + #: Trust environment settings for proxy configuration, default + #: authentication and similar. + self.trust_env = True + + #: A CookieJar containing all currently outstanding cookies set on this + #: session. By default it is a + #: :class:`RequestsCookieJar `, but + #: may be any other ``cookielib.CookieJar`` compatible object. + self.cookies = cookiejar_from_dict({}) + + # Default connection adapters. + self.adapters = OrderedDict() + self.mount("https://", HTTPAdapter()) + self.mount("http://", HTTPAdapter()) + + def __enter__(self): + return self + + def __exit__(self, *args): + self.close() + + def prepare_request(self, request): + """Constructs a :class:`PreparedRequest ` for + transmission and returns it. The :class:`PreparedRequest` has settings + merged from the :class:`Request ` instance and those of the + :class:`Session`. + + :param request: :class:`Request` instance to prepare with this + session's settings. + :rtype: requests.PreparedRequest + """ + cookies = request.cookies or {} + + # Bootstrap CookieJar. + if not isinstance(cookies, cookielib.CookieJar): + cookies = cookiejar_from_dict(cookies) + + # Merge with session cookies + merged_cookies = merge_cookies( + merge_cookies(RequestsCookieJar(), self.cookies), cookies + ) + + # Set environment's basic authentication if not explicitly set. + auth = request.auth + if self.trust_env and not auth and not self.auth: + auth = get_netrc_auth(request.url) + + p = PreparedRequest() + p.prepare( + method=request.method.upper(), + url=request.url, + files=request.files, + data=request.data, + json=request.json, + headers=merge_setting( + request.headers, self.headers, dict_class=CaseInsensitiveDict + ), + params=merge_setting(request.params, self.params), + auth=merge_setting(auth, self.auth), + cookies=merged_cookies, + hooks=merge_hooks(request.hooks, self.hooks), + ) + return p + + def request( + self, + method, + url, + params=None, + data=None, + headers=None, + cookies=None, + files=None, + auth=None, + timeout=None, + allow_redirects=True, + proxies=None, + hooks=None, + stream=None, + verify=None, + cert=None, + json=None, + ): + """Constructs a :class:`Request `, prepares it and sends it. + Returns :class:`Response ` object. + + :param method: method for the new :class:`Request` object. + :param url: URL for the new :class:`Request` object. + :param params: (optional) Dictionary or bytes to be sent in the query + string for the :class:`Request`. + :param data: (optional) Dictionary, list of tuples, bytes, or file-like + object to send in the body of the :class:`Request`. + :param json: (optional) json to send in the body of the + :class:`Request`. + :param headers: (optional) Dictionary of HTTP Headers to send with the + :class:`Request`. + :param cookies: (optional) Dict or CookieJar object to send with the + :class:`Request`. + :param files: (optional) Dictionary of ``'filename': file-like-objects`` + for multipart encoding upload. + :param auth: (optional) Auth tuple or callable to enable + Basic/Digest/Custom HTTP Auth. + :param timeout: (optional) How long to wait for the server to send + data before giving up, as a float, or a :ref:`(connect timeout, + read timeout) ` tuple. + :type timeout: float or tuple + :param allow_redirects: (optional) Set to True by default. + :type allow_redirects: bool + :param proxies: (optional) Dictionary mapping protocol or protocol and + hostname to the URL of the proxy. + :param stream: (optional) whether to immediately download the response + content. Defaults to ``False``. + :param verify: (optional) Either a boolean, in which case it controls whether we verify + the server's TLS certificate, or a string, in which case it must be a path + to a CA bundle to use. Defaults to ``True``. When set to + ``False``, requests will accept any TLS certificate presented by + the server, and will ignore hostname mismatches and/or expired + certificates, which will make your application vulnerable to + man-in-the-middle (MitM) attacks. Setting verify to ``False`` + may be useful during local development or testing. + :param cert: (optional) if String, path to ssl client cert file (.pem). + If Tuple, ('cert', 'key') pair. + :rtype: requests.Response + """ + # Create the Request. + req = Request( + method=method.upper(), + url=url, + headers=headers, + files=files, + data=data or {}, + json=json, + params=params or {}, + auth=auth, + cookies=cookies, + hooks=hooks, + ) + prep = self.prepare_request(req) + + proxies = proxies or {} + + settings = self.merge_environment_settings( + prep.url, proxies, stream, verify, cert + ) + + # Send the request. + send_kwargs = { + "timeout": timeout, + "allow_redirects": allow_redirects, + } + send_kwargs.update(settings) + resp = self.send(prep, **send_kwargs) + + return resp + + def get(self, url, **kwargs): + r"""Sends a GET request. Returns :class:`Response` object. + + :param url: URL for the new :class:`Request` object. + :param \*\*kwargs: Optional arguments that ``request`` takes. + :rtype: requests.Response + """ + + kwargs.setdefault("allow_redirects", True) + return self.request("GET", url, **kwargs) + + def options(self, url, **kwargs): + r"""Sends a OPTIONS request. Returns :class:`Response` object. + + :param url: URL for the new :class:`Request` object. + :param \*\*kwargs: Optional arguments that ``request`` takes. + :rtype: requests.Response + """ + + kwargs.setdefault("allow_redirects", True) + return self.request("OPTIONS", url, **kwargs) + + def head(self, url, **kwargs): + r"""Sends a HEAD request. Returns :class:`Response` object. + + :param url: URL for the new :class:`Request` object. + :param \*\*kwargs: Optional arguments that ``request`` takes. + :rtype: requests.Response + """ + + kwargs.setdefault("allow_redirects", False) + return self.request("HEAD", url, **kwargs) + + def post(self, url, data=None, json=None, **kwargs): + r"""Sends a POST request. Returns :class:`Response` object. + + :param url: URL for the new :class:`Request` object. + :param data: (optional) Dictionary, list of tuples, bytes, or file-like + object to send in the body of the :class:`Request`. + :param json: (optional) json to send in the body of the :class:`Request`. + :param \*\*kwargs: Optional arguments that ``request`` takes. + :rtype: requests.Response + """ + + return self.request("POST", url, data=data, json=json, **kwargs) + + def put(self, url, data=None, **kwargs): + r"""Sends a PUT request. Returns :class:`Response` object. + + :param url: URL for the new :class:`Request` object. + :param data: (optional) Dictionary, list of tuples, bytes, or file-like + object to send in the body of the :class:`Request`. + :param \*\*kwargs: Optional arguments that ``request`` takes. + :rtype: requests.Response + """ + + return self.request("PUT", url, data=data, **kwargs) + + def patch(self, url, data=None, **kwargs): + r"""Sends a PATCH request. Returns :class:`Response` object. + + :param url: URL for the new :class:`Request` object. + :param data: (optional) Dictionary, list of tuples, bytes, or file-like + object to send in the body of the :class:`Request`. + :param \*\*kwargs: Optional arguments that ``request`` takes. + :rtype: requests.Response + """ + + return self.request("PATCH", url, data=data, **kwargs) + + def delete(self, url, **kwargs): + r"""Sends a DELETE request. Returns :class:`Response` object. + + :param url: URL for the new :class:`Request` object. + :param \*\*kwargs: Optional arguments that ``request`` takes. + :rtype: requests.Response + """ + + return self.request("DELETE", url, **kwargs) + + def send(self, request, **kwargs): + """Send a given PreparedRequest. + + :rtype: requests.Response + """ + # Set defaults that the hooks can utilize to ensure they always have + # the correct parameters to reproduce the previous request. + kwargs.setdefault("stream", self.stream) + kwargs.setdefault("verify", self.verify) + kwargs.setdefault("cert", self.cert) + if "proxies" not in kwargs: + kwargs["proxies"] = resolve_proxies(request, self.proxies, self.trust_env) + + # It's possible that users might accidentally send a Request object. + # Guard against that specific failure case. + if isinstance(request, Request): + raise ValueError("You can only send PreparedRequests.") + + # Set up variables needed for resolve_redirects and dispatching of hooks + allow_redirects = kwargs.pop("allow_redirects", True) + stream = kwargs.get("stream") + hooks = request.hooks + + # Get the appropriate adapter to use + adapter = self.get_adapter(url=request.url) + + # Start time (approximately) of the request + start = preferred_clock() + + # Send the request + r = adapter.send(request, **kwargs) + + # Total elapsed time of the request (approximately) + elapsed = preferred_clock() - start + r.elapsed = timedelta(seconds=elapsed) + + # Response manipulation hooks + r = dispatch_hook("response", hooks, r, **kwargs) + + # Persist cookies + if r.history: + + # If the hooks create history then we want those cookies too + for resp in r.history: + extract_cookies_to_jar(self.cookies, resp.request, resp.raw) + + extract_cookies_to_jar(self.cookies, request, r.raw) + + # Resolve redirects if allowed. + if allow_redirects: + # Redirect resolving generator. + gen = self.resolve_redirects(r, request, **kwargs) + history = [resp for resp in gen] + else: + history = [] + + # Shuffle things around if there's history. + if history: + # Insert the first (original) request at the start + history.insert(0, r) + # Get the last request made + r = history.pop() + r.history = history + + # If redirects aren't being followed, store the response on the Request for Response.next(). + if not allow_redirects: + try: + r._next = next( + self.resolve_redirects(r, request, yield_requests=True, **kwargs) + ) + except StopIteration: + pass + + if not stream: + r.content + + return r + + def merge_environment_settings(self, url, proxies, stream, verify, cert): + """ + Check the environment and merge it with some settings. + + :rtype: dict + """ + # Gather clues from the surrounding environment. + if self.trust_env: + # Set environment's proxies. + no_proxy = proxies.get("no_proxy") if proxies is not None else None + env_proxies = get_environ_proxies(url, no_proxy=no_proxy) + for (k, v) in env_proxies.items(): + proxies.setdefault(k, v) + + # Look for requests environment configuration + # and be compatible with cURL. + if verify is True or verify is None: + verify = ( + os.environ.get("REQUESTS_CA_BUNDLE") + or os.environ.get("CURL_CA_BUNDLE") + or verify + ) + + # Merge all the kwargs. + proxies = merge_setting(proxies, self.proxies) + stream = merge_setting(stream, self.stream) + verify = merge_setting(verify, self.verify) + cert = merge_setting(cert, self.cert) + + return {"proxies": proxies, "stream": stream, "verify": verify, "cert": cert} + + def get_adapter(self, url): + """ + Returns the appropriate connection adapter for the given URL. + + :rtype: requests.adapters.BaseAdapter + """ + for (prefix, adapter) in self.adapters.items(): + + if url.lower().startswith(prefix.lower()): + return adapter + + # Nothing matches :-/ + raise InvalidSchema(f"No connection adapters were found for {url!r}") + + def close(self): + """Closes all adapters and as such the session""" + for v in self.adapters.values(): + v.close() + + def mount(self, prefix, adapter): + """Registers a connection adapter to a prefix. + + Adapters are sorted in descending order by prefix length. + """ + self.adapters[prefix] = adapter + keys_to_move = [k for k in self.adapters if len(k) < len(prefix)] + + for key in keys_to_move: + self.adapters[key] = self.adapters.pop(key) + + def __getstate__(self): + state = {attr: getattr(self, attr, None) for attr in self.__attrs__} + return state + + def __setstate__(self, state): + for attr, value in state.items(): + setattr(self, attr, value) + + +def session(): + """ + Returns a :class:`Session` for context-management. + + .. deprecated:: 1.0.0 + + This method has been deprecated since version 1.0.0 and is only kept for + backwards compatibility. New code should use :class:`~requests.sessions.Session` + to create a session. This may be removed at a future date. + + :rtype: Session + """ + return Session() diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/requests/status_codes.py b/.venv/lib/python3.11/site-packages/pip/_vendor/requests/status_codes.py new file mode 100644 index 0000000..4bd072b --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/requests/status_codes.py @@ -0,0 +1,128 @@ +r""" +The ``codes`` object defines a mapping from common names for HTTP statuses +to their numerical codes, accessible either as attributes or as dictionary +items. + +Example:: + + >>> import requests + >>> requests.codes['temporary_redirect'] + 307 + >>> requests.codes.teapot + 418 + >>> requests.codes['\o/'] + 200 + +Some codes have multiple names, and both upper- and lower-case versions of +the names are allowed. For example, ``codes.ok``, ``codes.OK``, and +``codes.okay`` all correspond to the HTTP status code 200. +""" + +from .structures import LookupDict + +_codes = { + # Informational. + 100: ("continue",), + 101: ("switching_protocols",), + 102: ("processing",), + 103: ("checkpoint",), + 122: ("uri_too_long", "request_uri_too_long"), + 200: ("ok", "okay", "all_ok", "all_okay", "all_good", "\\o/", "✓"), + 201: ("created",), + 202: ("accepted",), + 203: ("non_authoritative_info", "non_authoritative_information"), + 204: ("no_content",), + 205: ("reset_content", "reset"), + 206: ("partial_content", "partial"), + 207: ("multi_status", "multiple_status", "multi_stati", "multiple_stati"), + 208: ("already_reported",), + 226: ("im_used",), + # Redirection. + 300: ("multiple_choices",), + 301: ("moved_permanently", "moved", "\\o-"), + 302: ("found",), + 303: ("see_other", "other"), + 304: ("not_modified",), + 305: ("use_proxy",), + 306: ("switch_proxy",), + 307: ("temporary_redirect", "temporary_moved", "temporary"), + 308: ( + "permanent_redirect", + "resume_incomplete", + "resume", + ), # "resume" and "resume_incomplete" to be removed in 3.0 + # Client Error. + 400: ("bad_request", "bad"), + 401: ("unauthorized",), + 402: ("payment_required", "payment"), + 403: ("forbidden",), + 404: ("not_found", "-o-"), + 405: ("method_not_allowed", "not_allowed"), + 406: ("not_acceptable",), + 407: ("proxy_authentication_required", "proxy_auth", "proxy_authentication"), + 408: ("request_timeout", "timeout"), + 409: ("conflict",), + 410: ("gone",), + 411: ("length_required",), + 412: ("precondition_failed", "precondition"), + 413: ("request_entity_too_large",), + 414: ("request_uri_too_large",), + 415: ("unsupported_media_type", "unsupported_media", "media_type"), + 416: ( + "requested_range_not_satisfiable", + "requested_range", + "range_not_satisfiable", + ), + 417: ("expectation_failed",), + 418: ("im_a_teapot", "teapot", "i_am_a_teapot"), + 421: ("misdirected_request",), + 422: ("unprocessable_entity", "unprocessable"), + 423: ("locked",), + 424: ("failed_dependency", "dependency"), + 425: ("unordered_collection", "unordered"), + 426: ("upgrade_required", "upgrade"), + 428: ("precondition_required", "precondition"), + 429: ("too_many_requests", "too_many"), + 431: ("header_fields_too_large", "fields_too_large"), + 444: ("no_response", "none"), + 449: ("retry_with", "retry"), + 450: ("blocked_by_windows_parental_controls", "parental_controls"), + 451: ("unavailable_for_legal_reasons", "legal_reasons"), + 499: ("client_closed_request",), + # Server Error. + 500: ("internal_server_error", "server_error", "/o\\", "✗"), + 501: ("not_implemented",), + 502: ("bad_gateway",), + 503: ("service_unavailable", "unavailable"), + 504: ("gateway_timeout",), + 505: ("http_version_not_supported", "http_version"), + 506: ("variant_also_negotiates",), + 507: ("insufficient_storage",), + 509: ("bandwidth_limit_exceeded", "bandwidth"), + 510: ("not_extended",), + 511: ("network_authentication_required", "network_auth", "network_authentication"), +} + +codes = LookupDict(name="status_codes") + + +def _init(): + for code, titles in _codes.items(): + for title in titles: + setattr(codes, title, code) + if not title.startswith(("\\", "/")): + setattr(codes, title.upper(), code) + + def doc(code): + names = ", ".join(f"``{n}``" for n in _codes[code]) + return "* %d: %s" % (code, names) + + global __doc__ + __doc__ = ( + __doc__ + "\n" + "\n".join(doc(code) for code in sorted(_codes)) + if __doc__ is not None + else None + ) + + +_init() diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/requests/structures.py b/.venv/lib/python3.11/site-packages/pip/_vendor/requests/structures.py new file mode 100644 index 0000000..188e13e --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/requests/structures.py @@ -0,0 +1,99 @@ +""" +requests.structures +~~~~~~~~~~~~~~~~~~~ + +Data structures that power Requests. +""" + +from collections import OrderedDict + +from .compat import Mapping, MutableMapping + + +class CaseInsensitiveDict(MutableMapping): + """A case-insensitive ``dict``-like object. + + Implements all methods and operations of + ``MutableMapping`` as well as dict's ``copy``. Also + provides ``lower_items``. + + All keys are expected to be strings. The structure remembers the + case of the last key to be set, and ``iter(instance)``, + ``keys()``, ``items()``, ``iterkeys()``, and ``iteritems()`` + will contain case-sensitive keys. However, querying and contains + testing is case insensitive:: + + cid = CaseInsensitiveDict() + cid['Accept'] = 'application/json' + cid['aCCEPT'] == 'application/json' # True + list(cid) == ['Accept'] # True + + For example, ``headers['content-encoding']`` will return the + value of a ``'Content-Encoding'`` response header, regardless + of how the header name was originally stored. + + If the constructor, ``.update``, or equality comparison + operations are given keys that have equal ``.lower()``s, the + behavior is undefined. + """ + + def __init__(self, data=None, **kwargs): + self._store = OrderedDict() + if data is None: + data = {} + self.update(data, **kwargs) + + def __setitem__(self, key, value): + # Use the lowercased key for lookups, but store the actual + # key alongside the value. + self._store[key.lower()] = (key, value) + + def __getitem__(self, key): + return self._store[key.lower()][1] + + def __delitem__(self, key): + del self._store[key.lower()] + + def __iter__(self): + return (casedkey for casedkey, mappedvalue in self._store.values()) + + def __len__(self): + return len(self._store) + + def lower_items(self): + """Like iteritems(), but with all lowercase keys.""" + return ((lowerkey, keyval[1]) for (lowerkey, keyval) in self._store.items()) + + def __eq__(self, other): + if isinstance(other, Mapping): + other = CaseInsensitiveDict(other) + else: + return NotImplemented + # Compare insensitively + return dict(self.lower_items()) == dict(other.lower_items()) + + # Copy is required + def copy(self): + return CaseInsensitiveDict(self._store.values()) + + def __repr__(self): + return str(dict(self.items())) + + +class LookupDict(dict): + """Dictionary lookup object.""" + + def __init__(self, name=None): + self.name = name + super().__init__() + + def __repr__(self): + return f"" + + def __getitem__(self, key): + # We allow fall-through here, so values default to None + + return self.__dict__.get(key, None) + + def get(self, key, default=None): + return self.__dict__.get(key, default) diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/requests/utils.py b/.venv/lib/python3.11/site-packages/pip/_vendor/requests/utils.py new file mode 100644 index 0000000..36607ed --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/requests/utils.py @@ -0,0 +1,1094 @@ +""" +requests.utils +~~~~~~~~~~~~~~ + +This module provides utility functions that are used within Requests +that are also useful for external consumption. +""" + +import codecs +import contextlib +import io +import os +import re +import socket +import struct +import sys +import tempfile +import warnings +import zipfile +from collections import OrderedDict + +from pip._vendor.urllib3.util import make_headers, parse_url + +from . import certs +from .__version__ import __version__ + +# to_native_string is unused here, but imported here for backwards compatibility +from ._internal_utils import ( # noqa: F401 + _HEADER_VALIDATORS_BYTE, + _HEADER_VALIDATORS_STR, + HEADER_VALIDATORS, + to_native_string, +) +from .compat import ( + Mapping, + basestring, + bytes, + getproxies, + getproxies_environment, + integer_types, +) +from .compat import parse_http_list as _parse_list_header +from .compat import ( + proxy_bypass, + proxy_bypass_environment, + quote, + str, + unquote, + urlparse, + urlunparse, +) +from .cookies import cookiejar_from_dict +from .exceptions import ( + FileModeWarning, + InvalidHeader, + InvalidURL, + UnrewindableBodyError, +) +from .structures import CaseInsensitiveDict + +NETRC_FILES = (".netrc", "_netrc") + +DEFAULT_CA_BUNDLE_PATH = certs.where() + +DEFAULT_PORTS = {"http": 80, "https": 443} + +# Ensure that ', ' is used to preserve previous delimiter behavior. +DEFAULT_ACCEPT_ENCODING = ", ".join( + re.split(r",\s*", make_headers(accept_encoding=True)["accept-encoding"]) +) + + +if sys.platform == "win32": + # provide a proxy_bypass version on Windows without DNS lookups + + def proxy_bypass_registry(host): + try: + import winreg + except ImportError: + return False + + try: + internetSettings = winreg.OpenKey( + winreg.HKEY_CURRENT_USER, + r"Software\Microsoft\Windows\CurrentVersion\Internet Settings", + ) + # ProxyEnable could be REG_SZ or REG_DWORD, normalizing it + proxyEnable = int(winreg.QueryValueEx(internetSettings, "ProxyEnable")[0]) + # ProxyOverride is almost always a string + proxyOverride = winreg.QueryValueEx(internetSettings, "ProxyOverride")[0] + except (OSError, ValueError): + return False + if not proxyEnable or not proxyOverride: + return False + + # make a check value list from the registry entry: replace the + # '' string by the localhost entry and the corresponding + # canonical entry. + proxyOverride = proxyOverride.split(";") + # now check if we match one of the registry values. + for test in proxyOverride: + if test == "": + if "." not in host: + return True + test = test.replace(".", r"\.") # mask dots + test = test.replace("*", r".*") # change glob sequence + test = test.replace("?", r".") # change glob char + if re.match(test, host, re.I): + return True + return False + + def proxy_bypass(host): # noqa + """Return True, if the host should be bypassed. + + Checks proxy settings gathered from the environment, if specified, + or the registry. + """ + if getproxies_environment(): + return proxy_bypass_environment(host) + else: + return proxy_bypass_registry(host) + + +def dict_to_sequence(d): + """Returns an internal sequence dictionary update.""" + + if hasattr(d, "items"): + d = d.items() + + return d + + +def super_len(o): + total_length = None + current_position = 0 + + if hasattr(o, "__len__"): + total_length = len(o) + + elif hasattr(o, "len"): + total_length = o.len + + elif hasattr(o, "fileno"): + try: + fileno = o.fileno() + except (io.UnsupportedOperation, AttributeError): + # AttributeError is a surprising exception, seeing as how we've just checked + # that `hasattr(o, 'fileno')`. It happens for objects obtained via + # `Tarfile.extractfile()`, per issue 5229. + pass + else: + total_length = os.fstat(fileno).st_size + + # Having used fstat to determine the file length, we need to + # confirm that this file was opened up in binary mode. + if "b" not in o.mode: + warnings.warn( + ( + "Requests has determined the content-length for this " + "request using the binary size of the file: however, the " + "file has been opened in text mode (i.e. without the 'b' " + "flag in the mode). This may lead to an incorrect " + "content-length. In Requests 3.0, support will be removed " + "for files in text mode." + ), + FileModeWarning, + ) + + if hasattr(o, "tell"): + try: + current_position = o.tell() + except OSError: + # This can happen in some weird situations, such as when the file + # is actually a special file descriptor like stdin. In this + # instance, we don't know what the length is, so set it to zero and + # let requests chunk it instead. + if total_length is not None: + current_position = total_length + else: + if hasattr(o, "seek") and total_length is None: + # StringIO and BytesIO have seek but no usable fileno + try: + # seek to end of file + o.seek(0, 2) + total_length = o.tell() + + # seek back to current position to support + # partially read file-like objects + o.seek(current_position or 0) + except OSError: + total_length = 0 + + if total_length is None: + total_length = 0 + + return max(0, total_length - current_position) + + +def get_netrc_auth(url, raise_errors=False): + """Returns the Requests tuple auth for a given url from netrc.""" + + netrc_file = os.environ.get("NETRC") + if netrc_file is not None: + netrc_locations = (netrc_file,) + else: + netrc_locations = (f"~/{f}" for f in NETRC_FILES) + + try: + from netrc import NetrcParseError, netrc + + netrc_path = None + + for f in netrc_locations: + try: + loc = os.path.expanduser(f) + except KeyError: + # os.path.expanduser can fail when $HOME is undefined and + # getpwuid fails. See https://bugs.python.org/issue20164 & + # https://github.com/psf/requests/issues/1846 + return + + if os.path.exists(loc): + netrc_path = loc + break + + # Abort early if there isn't one. + if netrc_path is None: + return + + ri = urlparse(url) + + # Strip port numbers from netloc. This weird `if...encode`` dance is + # used for Python 3.2, which doesn't support unicode literals. + splitstr = b":" + if isinstance(url, str): + splitstr = splitstr.decode("ascii") + host = ri.netloc.split(splitstr)[0] + + try: + _netrc = netrc(netrc_path).authenticators(host) + if _netrc: + # Return with login / password + login_i = 0 if _netrc[0] else 1 + return (_netrc[login_i], _netrc[2]) + except (NetrcParseError, OSError): + # If there was a parsing error or a permissions issue reading the file, + # we'll just skip netrc auth unless explicitly asked to raise errors. + if raise_errors: + raise + + # App Engine hackiness. + except (ImportError, AttributeError): + pass + + +def guess_filename(obj): + """Tries to guess the filename of the given object.""" + name = getattr(obj, "name", None) + if name and isinstance(name, basestring) and name[0] != "<" and name[-1] != ">": + return os.path.basename(name) + + +def extract_zipped_paths(path): + """Replace nonexistent paths that look like they refer to a member of a zip + archive with the location of an extracted copy of the target, or else + just return the provided path unchanged. + """ + if os.path.exists(path): + # this is already a valid path, no need to do anything further + return path + + # find the first valid part of the provided path and treat that as a zip archive + # assume the rest of the path is the name of a member in the archive + archive, member = os.path.split(path) + while archive and not os.path.exists(archive): + archive, prefix = os.path.split(archive) + if not prefix: + # If we don't check for an empty prefix after the split (in other words, archive remains unchanged after the split), + # we _can_ end up in an infinite loop on a rare corner case affecting a small number of users + break + member = "/".join([prefix, member]) + + if not zipfile.is_zipfile(archive): + return path + + zip_file = zipfile.ZipFile(archive) + if member not in zip_file.namelist(): + return path + + # we have a valid zip archive and a valid member of that archive + tmp = tempfile.gettempdir() + extracted_path = os.path.join(tmp, member.split("/")[-1]) + if not os.path.exists(extracted_path): + # use read + write to avoid the creating nested folders, we only want the file, avoids mkdir racing condition + with atomic_open(extracted_path) as file_handler: + file_handler.write(zip_file.read(member)) + return extracted_path + + +@contextlib.contextmanager +def atomic_open(filename): + """Write a file to the disk in an atomic fashion""" + tmp_descriptor, tmp_name = tempfile.mkstemp(dir=os.path.dirname(filename)) + try: + with os.fdopen(tmp_descriptor, "wb") as tmp_handler: + yield tmp_handler + os.replace(tmp_name, filename) + except BaseException: + os.remove(tmp_name) + raise + + +def from_key_val_list(value): + """Take an object and test to see if it can be represented as a + dictionary. Unless it can not be represented as such, return an + OrderedDict, e.g., + + :: + + >>> from_key_val_list([('key', 'val')]) + OrderedDict([('key', 'val')]) + >>> from_key_val_list('string') + Traceback (most recent call last): + ... + ValueError: cannot encode objects that are not 2-tuples + >>> from_key_val_list({'key': 'val'}) + OrderedDict([('key', 'val')]) + + :rtype: OrderedDict + """ + if value is None: + return None + + if isinstance(value, (str, bytes, bool, int)): + raise ValueError("cannot encode objects that are not 2-tuples") + + return OrderedDict(value) + + +def to_key_val_list(value): + """Take an object and test to see if it can be represented as a + dictionary. If it can be, return a list of tuples, e.g., + + :: + + >>> to_key_val_list([('key', 'val')]) + [('key', 'val')] + >>> to_key_val_list({'key': 'val'}) + [('key', 'val')] + >>> to_key_val_list('string') + Traceback (most recent call last): + ... + ValueError: cannot encode objects that are not 2-tuples + + :rtype: list + """ + if value is None: + return None + + if isinstance(value, (str, bytes, bool, int)): + raise ValueError("cannot encode objects that are not 2-tuples") + + if isinstance(value, Mapping): + value = value.items() + + return list(value) + + +# From mitsuhiko/werkzeug (used with permission). +def parse_list_header(value): + """Parse lists as described by RFC 2068 Section 2. + + In particular, parse comma-separated lists where the elements of + the list may include quoted-strings. A quoted-string could + contain a comma. A non-quoted string could have quotes in the + middle. Quotes are removed automatically after parsing. + + It basically works like :func:`parse_set_header` just that items + may appear multiple times and case sensitivity is preserved. + + The return value is a standard :class:`list`: + + >>> parse_list_header('token, "quoted value"') + ['token', 'quoted value'] + + To create a header from the :class:`list` again, use the + :func:`dump_header` function. + + :param value: a string with a list header. + :return: :class:`list` + :rtype: list + """ + result = [] + for item in _parse_list_header(value): + if item[:1] == item[-1:] == '"': + item = unquote_header_value(item[1:-1]) + result.append(item) + return result + + +# From mitsuhiko/werkzeug (used with permission). +def parse_dict_header(value): + """Parse lists of key, value pairs as described by RFC 2068 Section 2 and + convert them into a python dict: + + >>> d = parse_dict_header('foo="is a fish", bar="as well"') + >>> type(d) is dict + True + >>> sorted(d.items()) + [('bar', 'as well'), ('foo', 'is a fish')] + + If there is no value for a key it will be `None`: + + >>> parse_dict_header('key_without_value') + {'key_without_value': None} + + To create a header from the :class:`dict` again, use the + :func:`dump_header` function. + + :param value: a string with a dict header. + :return: :class:`dict` + :rtype: dict + """ + result = {} + for item in _parse_list_header(value): + if "=" not in item: + result[item] = None + continue + name, value = item.split("=", 1) + if value[:1] == value[-1:] == '"': + value = unquote_header_value(value[1:-1]) + result[name] = value + return result + + +# From mitsuhiko/werkzeug (used with permission). +def unquote_header_value(value, is_filename=False): + r"""Unquotes a header value. (Reversal of :func:`quote_header_value`). + This does not use the real unquoting but what browsers are actually + using for quoting. + + :param value: the header value to unquote. + :rtype: str + """ + if value and value[0] == value[-1] == '"': + # this is not the real unquoting, but fixing this so that the + # RFC is met will result in bugs with internet explorer and + # probably some other browsers as well. IE for example is + # uploading files with "C:\foo\bar.txt" as filename + value = value[1:-1] + + # if this is a filename and the starting characters look like + # a UNC path, then just return the value without quotes. Using the + # replace sequence below on a UNC path has the effect of turning + # the leading double slash into a single slash and then + # _fix_ie_filename() doesn't work correctly. See #458. + if not is_filename or value[:2] != "\\\\": + return value.replace("\\\\", "\\").replace('\\"', '"') + return value + + +def dict_from_cookiejar(cj): + """Returns a key/value dictionary from a CookieJar. + + :param cj: CookieJar object to extract cookies from. + :rtype: dict + """ + + cookie_dict = {} + + for cookie in cj: + cookie_dict[cookie.name] = cookie.value + + return cookie_dict + + +def add_dict_to_cookiejar(cj, cookie_dict): + """Returns a CookieJar from a key/value dictionary. + + :param cj: CookieJar to insert cookies into. + :param cookie_dict: Dict of key/values to insert into CookieJar. + :rtype: CookieJar + """ + + return cookiejar_from_dict(cookie_dict, cj) + + +def get_encodings_from_content(content): + """Returns encodings from given content string. + + :param content: bytestring to extract encodings from. + """ + warnings.warn( + ( + "In requests 3.0, get_encodings_from_content will be removed. For " + "more information, please see the discussion on issue #2266. (This" + " warning should only appear once.)" + ), + DeprecationWarning, + ) + + charset_re = re.compile(r']', flags=re.I) + pragma_re = re.compile(r']', flags=re.I) + xml_re = re.compile(r'^<\?xml.*?encoding=["\']*(.+?)["\'>]') + + return ( + charset_re.findall(content) + + pragma_re.findall(content) + + xml_re.findall(content) + ) + + +def _parse_content_type_header(header): + """Returns content type and parameters from given header + + :param header: string + :return: tuple containing content type and dictionary of + parameters + """ + + tokens = header.split(";") + content_type, params = tokens[0].strip(), tokens[1:] + params_dict = {} + items_to_strip = "\"' " + + for param in params: + param = param.strip() + if param: + key, value = param, True + index_of_equals = param.find("=") + if index_of_equals != -1: + key = param[:index_of_equals].strip(items_to_strip) + value = param[index_of_equals + 1 :].strip(items_to_strip) + params_dict[key.lower()] = value + return content_type, params_dict + + +def get_encoding_from_headers(headers): + """Returns encodings from given HTTP Header Dict. + + :param headers: dictionary to extract encoding from. + :rtype: str + """ + + content_type = headers.get("content-type") + + if not content_type: + return None + + content_type, params = _parse_content_type_header(content_type) + + if "charset" in params: + return params["charset"].strip("'\"") + + if "text" in content_type: + return "ISO-8859-1" + + if "application/json" in content_type: + # Assume UTF-8 based on RFC 4627: https://www.ietf.org/rfc/rfc4627.txt since the charset was unset + return "utf-8" + + +def stream_decode_response_unicode(iterator, r): + """Stream decodes an iterator.""" + + if r.encoding is None: + yield from iterator + return + + decoder = codecs.getincrementaldecoder(r.encoding)(errors="replace") + for chunk in iterator: + rv = decoder.decode(chunk) + if rv: + yield rv + rv = decoder.decode(b"", final=True) + if rv: + yield rv + + +def iter_slices(string, slice_length): + """Iterate over slices of a string.""" + pos = 0 + if slice_length is None or slice_length <= 0: + slice_length = len(string) + while pos < len(string): + yield string[pos : pos + slice_length] + pos += slice_length + + +def get_unicode_from_response(r): + """Returns the requested content back in unicode. + + :param r: Response object to get unicode content from. + + Tried: + + 1. charset from content-type + 2. fall back and replace all unicode characters + + :rtype: str + """ + warnings.warn( + ( + "In requests 3.0, get_unicode_from_response will be removed. For " + "more information, please see the discussion on issue #2266. (This" + " warning should only appear once.)" + ), + DeprecationWarning, + ) + + tried_encodings = [] + + # Try charset from content-type + encoding = get_encoding_from_headers(r.headers) + + if encoding: + try: + return str(r.content, encoding) + except UnicodeError: + tried_encodings.append(encoding) + + # Fall back: + try: + return str(r.content, encoding, errors="replace") + except TypeError: + return r.content + + +# The unreserved URI characters (RFC 3986) +UNRESERVED_SET = frozenset( + "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz" + "0123456789-._~" +) + + +def unquote_unreserved(uri): + """Un-escape any percent-escape sequences in a URI that are unreserved + characters. This leaves all reserved, illegal and non-ASCII bytes encoded. + + :rtype: str + """ + parts = uri.split("%") + for i in range(1, len(parts)): + h = parts[i][0:2] + if len(h) == 2 and h.isalnum(): + try: + c = chr(int(h, 16)) + except ValueError: + raise InvalidURL(f"Invalid percent-escape sequence: '{h}'") + + if c in UNRESERVED_SET: + parts[i] = c + parts[i][2:] + else: + parts[i] = f"%{parts[i]}" + else: + parts[i] = f"%{parts[i]}" + return "".join(parts) + + +def requote_uri(uri): + """Re-quote the given URI. + + This function passes the given URI through an unquote/quote cycle to + ensure that it is fully and consistently quoted. + + :rtype: str + """ + safe_with_percent = "!#$%&'()*+,/:;=?@[]~" + safe_without_percent = "!#$&'()*+,/:;=?@[]~" + try: + # Unquote only the unreserved characters + # Then quote only illegal characters (do not quote reserved, + # unreserved, or '%') + return quote(unquote_unreserved(uri), safe=safe_with_percent) + except InvalidURL: + # We couldn't unquote the given URI, so let's try quoting it, but + # there may be unquoted '%'s in the URI. We need to make sure they're + # properly quoted so they do not cause issues elsewhere. + return quote(uri, safe=safe_without_percent) + + +def address_in_network(ip, net): + """This function allows you to check if an IP belongs to a network subnet + + Example: returns True if ip = 192.168.1.1 and net = 192.168.1.0/24 + returns False if ip = 192.168.1.1 and net = 192.168.100.0/24 + + :rtype: bool + """ + ipaddr = struct.unpack("=L", socket.inet_aton(ip))[0] + netaddr, bits = net.split("/") + netmask = struct.unpack("=L", socket.inet_aton(dotted_netmask(int(bits))))[0] + network = struct.unpack("=L", socket.inet_aton(netaddr))[0] & netmask + return (ipaddr & netmask) == (network & netmask) + + +def dotted_netmask(mask): + """Converts mask from /xx format to xxx.xxx.xxx.xxx + + Example: if mask is 24 function returns 255.255.255.0 + + :rtype: str + """ + bits = 0xFFFFFFFF ^ (1 << 32 - mask) - 1 + return socket.inet_ntoa(struct.pack(">I", bits)) + + +def is_ipv4_address(string_ip): + """ + :rtype: bool + """ + try: + socket.inet_aton(string_ip) + except OSError: + return False + return True + + +def is_valid_cidr(string_network): + """ + Very simple check of the cidr format in no_proxy variable. + + :rtype: bool + """ + if string_network.count("/") == 1: + try: + mask = int(string_network.split("/")[1]) + except ValueError: + return False + + if mask < 1 or mask > 32: + return False + + try: + socket.inet_aton(string_network.split("/")[0]) + except OSError: + return False + else: + return False + return True + + +@contextlib.contextmanager +def set_environ(env_name, value): + """Set the environment variable 'env_name' to 'value' + + Save previous value, yield, and then restore the previous value stored in + the environment variable 'env_name'. + + If 'value' is None, do nothing""" + value_changed = value is not None + if value_changed: + old_value = os.environ.get(env_name) + os.environ[env_name] = value + try: + yield + finally: + if value_changed: + if old_value is None: + del os.environ[env_name] + else: + os.environ[env_name] = old_value + + +def should_bypass_proxies(url, no_proxy): + """ + Returns whether we should bypass proxies or not. + + :rtype: bool + """ + # Prioritize lowercase environment variables over uppercase + # to keep a consistent behaviour with other http projects (curl, wget). + def get_proxy(key): + return os.environ.get(key) or os.environ.get(key.upper()) + + # First check whether no_proxy is defined. If it is, check that the URL + # we're getting isn't in the no_proxy list. + no_proxy_arg = no_proxy + if no_proxy is None: + no_proxy = get_proxy("no_proxy") + parsed = urlparse(url) + + if parsed.hostname is None: + # URLs don't always have hostnames, e.g. file:/// urls. + return True + + if no_proxy: + # We need to check whether we match here. We need to see if we match + # the end of the hostname, both with and without the port. + no_proxy = (host for host in no_proxy.replace(" ", "").split(",") if host) + + if is_ipv4_address(parsed.hostname): + for proxy_ip in no_proxy: + if is_valid_cidr(proxy_ip): + if address_in_network(parsed.hostname, proxy_ip): + return True + elif parsed.hostname == proxy_ip: + # If no_proxy ip was defined in plain IP notation instead of cidr notation & + # matches the IP of the index + return True + else: + host_with_port = parsed.hostname + if parsed.port: + host_with_port += f":{parsed.port}" + + for host in no_proxy: + if parsed.hostname.endswith(host) or host_with_port.endswith(host): + # The URL does match something in no_proxy, so we don't want + # to apply the proxies on this URL. + return True + + with set_environ("no_proxy", no_proxy_arg): + # parsed.hostname can be `None` in cases such as a file URI. + try: + bypass = proxy_bypass(parsed.hostname) + except (TypeError, socket.gaierror): + bypass = False + + if bypass: + return True + + return False + + +def get_environ_proxies(url, no_proxy=None): + """ + Return a dict of environment proxies. + + :rtype: dict + """ + if should_bypass_proxies(url, no_proxy=no_proxy): + return {} + else: + return getproxies() + + +def select_proxy(url, proxies): + """Select a proxy for the url, if applicable. + + :param url: The url being for the request + :param proxies: A dictionary of schemes or schemes and hosts to proxy URLs + """ + proxies = proxies or {} + urlparts = urlparse(url) + if urlparts.hostname is None: + return proxies.get(urlparts.scheme, proxies.get("all")) + + proxy_keys = [ + urlparts.scheme + "://" + urlparts.hostname, + urlparts.scheme, + "all://" + urlparts.hostname, + "all", + ] + proxy = None + for proxy_key in proxy_keys: + if proxy_key in proxies: + proxy = proxies[proxy_key] + break + + return proxy + + +def resolve_proxies(request, proxies, trust_env=True): + """This method takes proxy information from a request and configuration + input to resolve a mapping of target proxies. This will consider settings + such a NO_PROXY to strip proxy configurations. + + :param request: Request or PreparedRequest + :param proxies: A dictionary of schemes or schemes and hosts to proxy URLs + :param trust_env: Boolean declaring whether to trust environment configs + + :rtype: dict + """ + proxies = proxies if proxies is not None else {} + url = request.url + scheme = urlparse(url).scheme + no_proxy = proxies.get("no_proxy") + new_proxies = proxies.copy() + + if trust_env and not should_bypass_proxies(url, no_proxy=no_proxy): + environ_proxies = get_environ_proxies(url, no_proxy=no_proxy) + + proxy = environ_proxies.get(scheme, environ_proxies.get("all")) + + if proxy: + new_proxies.setdefault(scheme, proxy) + return new_proxies + + +def default_user_agent(name="python-requests"): + """ + Return a string representing the default user agent. + + :rtype: str + """ + return f"{name}/{__version__}" + + +def default_headers(): + """ + :rtype: requests.structures.CaseInsensitiveDict + """ + return CaseInsensitiveDict( + { + "User-Agent": default_user_agent(), + "Accept-Encoding": DEFAULT_ACCEPT_ENCODING, + "Accept": "*/*", + "Connection": "keep-alive", + } + ) + + +def parse_header_links(value): + """Return a list of parsed link headers proxies. + + i.e. Link: ; rel=front; type="image/jpeg",; rel=back;type="image/jpeg" + + :rtype: list + """ + + links = [] + + replace_chars = " '\"" + + value = value.strip(replace_chars) + if not value: + return links + + for val in re.split(", *<", value): + try: + url, params = val.split(";", 1) + except ValueError: + url, params = val, "" + + link = {"url": url.strip("<> '\"")} + + for param in params.split(";"): + try: + key, value = param.split("=") + except ValueError: + break + + link[key.strip(replace_chars)] = value.strip(replace_chars) + + links.append(link) + + return links + + +# Null bytes; no need to recreate these on each call to guess_json_utf +_null = "\x00".encode("ascii") # encoding to ASCII for Python 3 +_null2 = _null * 2 +_null3 = _null * 3 + + +def guess_json_utf(data): + """ + :rtype: str + """ + # JSON always starts with two ASCII characters, so detection is as + # easy as counting the nulls and from their location and count + # determine the encoding. Also detect a BOM, if present. + sample = data[:4] + if sample in (codecs.BOM_UTF32_LE, codecs.BOM_UTF32_BE): + return "utf-32" # BOM included + if sample[:3] == codecs.BOM_UTF8: + return "utf-8-sig" # BOM included, MS style (discouraged) + if sample[:2] in (codecs.BOM_UTF16_LE, codecs.BOM_UTF16_BE): + return "utf-16" # BOM included + nullcount = sample.count(_null) + if nullcount == 0: + return "utf-8" + if nullcount == 2: + if sample[::2] == _null2: # 1st and 3rd are null + return "utf-16-be" + if sample[1::2] == _null2: # 2nd and 4th are null + return "utf-16-le" + # Did not detect 2 valid UTF-16 ascii-range characters + if nullcount == 3: + if sample[:3] == _null3: + return "utf-32-be" + if sample[1:] == _null3: + return "utf-32-le" + # Did not detect a valid UTF-32 ascii-range character + return None + + +def prepend_scheme_if_needed(url, new_scheme): + """Given a URL that may or may not have a scheme, prepend the given scheme. + Does not replace a present scheme with the one provided as an argument. + + :rtype: str + """ + parsed = parse_url(url) + scheme, auth, host, port, path, query, fragment = parsed + + # A defect in urlparse determines that there isn't a netloc present in some + # urls. We previously assumed parsing was overly cautious, and swapped the + # netloc and path. Due to a lack of tests on the original defect, this is + # maintained with parse_url for backwards compatibility. + netloc = parsed.netloc + if not netloc: + netloc, path = path, netloc + + if auth: + # parse_url doesn't provide the netloc with auth + # so we'll add it ourselves. + netloc = "@".join([auth, netloc]) + if scheme is None: + scheme = new_scheme + if path is None: + path = "" + + return urlunparse((scheme, netloc, path, "", query, fragment)) + + +def get_auth_from_url(url): + """Given a url with authentication components, extract them into a tuple of + username,password. + + :rtype: (str,str) + """ + parsed = urlparse(url) + + try: + auth = (unquote(parsed.username), unquote(parsed.password)) + except (AttributeError, TypeError): + auth = ("", "") + + return auth + + +def check_header_validity(header): + """Verifies that header parts don't contain leading whitespace + reserved characters, or return characters. + + :param header: tuple, in the format (name, value). + """ + name, value = header + _validate_header_part(header, name, 0) + _validate_header_part(header, value, 1) + + +def _validate_header_part(header, header_part, header_validator_index): + if isinstance(header_part, str): + validator = _HEADER_VALIDATORS_STR[header_validator_index] + elif isinstance(header_part, bytes): + validator = _HEADER_VALIDATORS_BYTE[header_validator_index] + else: + raise InvalidHeader( + f"Header part ({header_part!r}) from {header} " + f"must be of type str or bytes, not {type(header_part)}" + ) + + if not validator.match(header_part): + header_kind = "name" if header_validator_index == 0 else "value" + raise InvalidHeader( + f"Invalid leading whitespace, reserved character(s), or return" + f"character(s) in header {header_kind}: {header_part!r}" + ) + + +def urldefragauth(url): + """ + Given a url remove the fragment and the authentication part. + + :rtype: str + """ + scheme, netloc, path, params, query, fragment = urlparse(url) + + # see func:`prepend_scheme_if_needed` + if not netloc: + netloc, path = path, netloc + + netloc = netloc.rsplit("@", 1)[-1] + + return urlunparse((scheme, netloc, path, params, query, "")) + + +def rewind_body(prepared_request): + """Move file pointer back to its recorded starting position + so it can be read again on redirect. + """ + body_seek = getattr(prepared_request.body, "seek", None) + if body_seek is not None and isinstance( + prepared_request._body_position, integer_types + ): + try: + body_seek(prepared_request._body_position) + except OSError: + raise UnrewindableBodyError( + "An error occurred when rewinding request body for redirect." + ) + else: + raise UnrewindableBodyError("Unable to rewind request body for redirect.") diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/__init__.py b/.venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/__init__.py new file mode 100644 index 0000000..d92acc7 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/__init__.py @@ -0,0 +1,26 @@ +__all__ = [ + "__version__", + "AbstractProvider", + "AbstractResolver", + "BaseReporter", + "InconsistentCandidate", + "Resolver", + "RequirementsConflicted", + "ResolutionError", + "ResolutionImpossible", + "ResolutionTooDeep", +] + +__version__ = "1.0.1" + + +from .providers import AbstractProvider, AbstractResolver +from .reporters import BaseReporter +from .resolvers import ( + InconsistentCandidate, + RequirementsConflicted, + ResolutionError, + ResolutionImpossible, + ResolutionTooDeep, + Resolver, +) diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/__pycache__/__init__.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..979bbb785c7ce50e950472898e46c08ec49d1b6b GIT binary patch literal 798 zcmcIhzi$&U6!zUEcS$axfJ!A;nKBR)m_Vo!6ePM-RRAG*v79@%G5E(}JCVZFmA`<6 z2?oS}(-Gau#CB4*PCTb65kg|)$@-qZ_nw~L`}}n<=pnFAXm@rqM(9T%mj--gX9wUu zqGME|&k;doM4~b-6B(<7B&tPP5dz+lZIzOAb#Kc|bx22bNmunqPvs<6ebQG0GJt&g z0u8faug)o5aO;H8l-5@tPo1}{@Q2ncM9J+YGU3ihsI2=>nBx;(8S8=F*w=;8PB_oC z-($KICG))Q{4U>_@ON`zxq`ggGx|u1!t=7;T2;(FJp9aBW9#irU|&_nIWd*IzP5?J zH0CMi)%*5%bayoV8G#OU|sO)zZ)4BVeGA!J`G&3oOMHUnK62#$)V+=XWYryk*DS;Yw5(K2Vp& z;`NB3o>HNOr*u>;&pVHlDd&>!+HIID$mYHPG)WXiO`PX(gD&ADYi^;fos+ytQS|T> YJ^1^4N4HP^JWZTM(BnUVy$*B!0%0!SH~;_u literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/__pycache__/providers.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/__pycache__/providers.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8bd65ef995fedae3edd3ede580ddf21c8921fe76 GIT binary patch literal 7116 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 jq*lWrFJAw6_#eIVnZN(5#Y^< literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/__pycache__/reporters.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/__pycache__/reporters.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..86b750dd6e032e7e1c4f6e1b2ae8dc8959e8e195 GIT binary patch literal 2880 zcma)8L5~|X6rM>k*=#mjs&)ZYfNGEsO~qzZkSbACi)cZ#mr#`=#9k)O*x48+c?CB%Uf2=Pm}aYS?F4=h?vJ@KABnVlg)+u6;F$9}fo`@Zkl`DJ&v>%jA) zb1?m&?Kpqo%j)rp#_1c-cJ8+`0@=(5JAPQMwhI`G>qUQX{o zzh#%3ElQ5!MlT?yK$%SBCVdF?~=v2mA#7ATz6-lQYdbErdTn)lifU96J zom0R7f@Lmj*vR(p(kSALj5*BaXVd4YkTIcQI*0Kk(J57_9t?kV`flFRJep`+n>_p0 z|4ehG{g|dS5`w17nVbkN_=5Tmmf@7D*#jlN?8PdKgH?BH zmHjsk{++_B6E@Hm52myZ(HC`yI1Q&n$$89(oLHj!JlY%}Ng^fXSIE+uRE9?z%+6@aoI2qF^$gIdilhLS>(r82|sIXiI z*J3;Yba@;u-zIQe4rL5AI$4_ss>Kl~aD#}HX>FCtCYmI0G(&nKCKDxRu++oV`CA-R z*ZQN;SvCdvR;>9>WvRSvQ>?4@l4UHYIA&LC%2;=JxvrA)75r0GBCA6O8KY^+XGw{$ zQA#M|NhCt-gp0(Xv3^v6`;;Y4X6zsuh)?}x1O?_RiqTho6XkKnIzdgk+M{Cm}O%Cn)|5hZ}6Br=8C6HwnJ<4pi0K#(FOQ4}c<-~$8&J-rgS=7K}a5Ev1_K-~jU zzz)`2l{Pz6U@s(dOOQ(`&#q~ivglprA1ijs+I8$7sZ?cVsvV3cK?)m36>n841s0_$ zW&b4KxwpHgdj^!W8z*sNaHi4s_I;jv-uL29%F0RvTptL>X4{?@gukahjLWUxJiI3g z!h1qc2#RyU1^z8w5ZT|33yz>8=$v!TyDqpy0r##s_k7WXqWR(r#q-hyNfaDHNO;X- z6dH5~i-N^7jt?Dz@G*Y*b)m!|oEC!8TSCwiD*e!jH2msmUY1sZw9=3_FRhHFd68CD zkXFvp%8}*^`SRZLvot@_Dhl4KU}=>|s|r=*y;sT7s*zSxkXDt~)7oHNUN5WJ+x2+6 zp`b-I!N#|Q3$=M=GzFXU%BTyrAYVNzsTC!)gl^jvsvGGG^7Ng5#`yy;$nDVChNPr6rKxC zh4FamS~zq)Tl-?@^(DMBA6kfxFIx^FQseKjx>Qim49i$hb$7K|uEdZ#GA(LZ%?aar-AK@61PMr{SSVgBqm zTyAMcumOeUnY~~`17p2E>_YPQEr<{ou82YLEs4+p*zJl7Z-^J%3^A-Yr;bJzuFQoA zWv7j@P?F%nFVTyKR{(w}z9&Qtgu~xaOU{^JUrh;18nWtFO#BeN& z3JNa?ABi-tZgpufq$o9bOmiGw2uCrmo@s^F3~(5T?NUQ?SCmG|;hCCZxHmPWQdzQm zL#e{I(g3j1W?5U7ehwO?)*_R-58#U%!j@F_x8+@lU`iU$q=8N8v9$Eqz4IyQxF#J> zO2;z|9dXxMc^p4%BBsrr;Pqnsvaz~_8&GvIf$zdA=tx-KGBX67ZwWEsHFMk&=BSui zaPuL4KQkrNSLHs^^3}8YK(WjVj zv1(Pc;z0h4enWUq6os{Fnn|S&FMcFuT}o(C`N)xV4DQd0ib_3{Wi~;-@*JHBEri}! zRF16-TU(YxM@$pQ>(tcX(YeTUU`{^+t4J(cP`qxGJ_qg2hf2Iw8vyyFj?4u8pK0>F;o z@RYDte^jIpg;2@~_y`bgD+2)8G9CM;LvwSWa-u>5!y5h!Uk0>_*ixb!^)vub-T2vY zINY76s1Qg_H(KyzfKwwXbsE3sW#I6yLyc<27l4gwSdD_kje==}gCP0S)luwRg4iG1*m0c!E_qmmNJW=)&plJYIG8)XVsn5l5M>#+l2pjl}P)V|# zHnr~BYm+p!;|=vNfI*r%6ECNveogA%ln$n)gZIYoFQ=q&O&U*1<2rHrQW_?B%aJScVnkKLm*;fpbBV-c5=58gqADc^ zAf7U*P8Wh-Cb4)nG8ZI~RSAXUKs2g^FE2$y>Jcs`_sf^UIYIuCjQj!c+qpT2l~gzi zy<}k{7NP$V>Iy3=mvJF)2c~D)6JCUcMG^bvwUYcCjc@_m6p{AIAW9@rGhtb_ETHIY zASy$UrG;h4+@|`$>t)TKj?6D&gf55Y!qIR@-L(^>Ib2m4n$X}PIJO???4|3E|CbU*U2g( zjbdp*A934&Sw<3bgQ4Qx2!jvVx@}CvIA{%5Z5BdM^JM5Hq4~w=@?KqYlCRH(NXda- zWgr`yvV|OSFjUf8r|Vc&B(O-Qm*hRrn6A%;G5OP^tA(Siu(|7jWtG?4r{m(_APs%! z$Pv9@S!USDl`)`QcmXVxC@AKD+WZD2=miYnvK*eDUy25R^@DPM|5${I>F<~6S=2xp z86&ey%?@KBm`Khr50e2cijU5;mG~38z#`4QK8YHXBLtoTP<3|8g*UDWRGMVKWU(WZwG99yv#|@(y)V<$ z6L)D+eWv{YeYYmrhmoWL=EAxe#oLeOrKERR`RSL-?5kqXxjVnjm$VswEM$3PTVhiC z8Qhpsd&_TQkXOZ3M^H%MdEtdg$`gikNxqfYJRB?jJ;ZkR%Gbhyr|GV5vQK2ZtIw%) zqP(mV>q#M-m#%{8o{Lct<<2p!Skq_?y<9>)+UM3T17Z z-tM%wJ28FdaLRi?^B&l78o6@$b9ZdkR?5uk_k4S`4-ICVmSGBU-#!Nu*RozKMX<7Z z(m;8uS8N!>pOK``nhgx9YkF__-Q`^U+ijg%+t7|1ZG1pI0b6Bv^>kNX68G*%g1>Fk z*PZrtC+1SVgPQMPQaV_OZ04HkLT!X>45@I>uY9BeayTY!*h&R3yr2S1yeM52W8!Oi zA%dXKxi_~EMTHEEA369Oi(%`qa0zIiIksA%rk=DZiS!UD=05{B^ z9Y+Nj#t8H{-3PJU3{c{BKei*7pj>o6xg(gMNTk$4z^kPir}1lE2A6tBO1D+qq}7%6 zy-0RSCMlj&l!!73x{{}&=XL2Eictu>j9-~7p+ zW<3{cS9Pvk4DqUper8d5QGWNT3ftGKF6d{wqt@mhB4 zmdVA>Bfrgt*O3@YNqw5sw<#S+O9$>9PDw{J=}1yKvR&H@E?*kQ4;$}~-1*bSu#?cP zK;dC6C-5rO_XL2=km7W=5H5Zlz^9su`ahUzZrW!k_;MsN778u?lbYw3&^tcQrAlOJ zAviS+7&RvQwEI^4ZvANx9hS3*T)-7k?Cz0y9y2x*9|BIivT^rV!#q|{9PywdH}sa zIQlM>1xo?TgK+F!@CD02G0L+gxzS$vGuG-WOLN=}!xiDkWpajCRbQwTP#wcF3x-oB zvJl!AxpGD3S)m0%!{qw0MRq3*N|dQ9ro)HV1f_I3q^ewXHS}wylrv2{ za0Q&{dO!&pY6qc?ahW0#VaJ!N9W#)~cTqdwRB%i!;#YyK7j1+#uVZUg($!@pD?#du zC}@XW&LyI;Qk5G?6JZyTpb~k598%c`(o<}F)ivNRZyY}iZEWJ23olUT9ulQ_Pw@msphN?O8G^=W_`!j8-7>CaTv-8!0ZXjPp_ zZ|4_Vz6Nk%Pk#<l1#^*yps3PB9YL===}d zkXvH+v4N|?f*=rd4NfW~EYDGde%V(Q^3yD^>ucsWM;-2Z$M+n$S-R`AyOLL7S0PEGYa`X8mbyg0@3!&?@lAFWm*H!aih@mqEH8|X8wL?bsh7~;NoecEI+e>x z)7;j5X&XCpE(`+fvK=rWP>( zQ|K69q$?J7F_@PYL%FI708I1>{_3^Z#tF^W7I$s=YckdKx6W-=cc-hnQ`Nm%b#JDo z;nu~?n%;CxZ>pwGtLe+Mv}-K~?hVtA)^cd4*i`{N4&XBaaraJ%;3-@4Zc0sQscGY6 zO6t(0j->J7tJ=gNG@=B*3~zr7Otj-|!klO1F)vt4oOeaLYZYFKuXGc}9C!1uXVn!G z6V|rm>TucdY}FleD>czlGlLLwzh+`+Uf!Yw$BeLAWNQ(v&VnoEijp|2UokOSW!wwG zYcwwG3OeoO$6PVTj2IT}tLIBfGFu(Y>lI2W$}i`x+g|Q!F?#+)UeCQo+w3h{m10tY z%!a-80#=L(6-eO1ag@s+I%1cRU_u&S7LXN7dUtfarXoORBGqFL7*h#Gr6 z>%9_&2#L6u>DiE~5I$z52x0^%t|sf94Y z%ujrqN?FF5hg2YW*NQi#jb+X^-nb`IS`E#^)43&gCC+Qz&!prLO&&>lTkzSII|x?R z-s;_~>`7PlWa`?t8un!T^;`aW&EK8uc_QV1Qu9BVsc71`x^Xe-A9zsgYAgqhYb^h~ zL}(i{vUVoB9#8q7(ELvzYqDi9=^sMQHpZ)Fb8`5YaPbf`v^rN^Hp#=4lRV-MgycXvcuR`8UNdXYx8EVnq}BHIjP>cH z^|^MK8D^bhUO#JNDMF|$GDe;+i;i%%fL#DcrY4Sm{vm3&>UPC2t7jyF!4h~ zxE7dO!Yy;3gvk4(zZ+TTRpm=Ix7H=o=YYiyX@blB0kj1Q0rPQP(%W$95=CzrQZyxT z(cfJEmWCa{I|2BJbW!361R2w*5+EgFX_0~ha&n0Nf?m}TdEBHwJiLwjQSc(~X5m0l zw~gv@#o8^XB-|0xdKd)wA&`T#h>Lse7S!*y-*o1D=Z~`F6FuUWodDl-ToZrV9~0kk ztnJg|XCMp_cVyI2QE&$1f56sYpF8V@#c^Kc#F^1$>Kr5caF93AJtNMm zxXU`PhL#y!R%t>m$(M9vX|^5Qgpl~r9b4J^>kPxcMDglB2l#^eTq*eLh^ka&yp{1& znbw{^T=;{9RO_JDI=CZvJ>?ACoQ#jIH*7U`XF!GgT{{ljKv{;YcfZzqbjOY42Q-+U zu@UtP6^$B*Z%t_nNGd@5%=$|=pN&7e<1{MZM9WlT&^Qu!7}0{(_w__dxZ`r# z#MAW4mcvwPq84%IHB-n7=Ed~c#hu@{)I9OkUaGBq#MjvcB@1o+*laH;OOu?>6Fvcz zh^JFbtzo!TbE!-Nfhcf+vXn!3K%{5rN(ceB(_9B(Dhrc4I5J*CM&%6xq`MeCBp1b; zT5b5yR_uk@wH15XzeP#vcL2y|QMGoRJBHv@%G5W1P=X}}4w&&*-zw4kos4;RCeEe& z!K%9c(qDHPT{g~;$- z$T;@_Jz*tWD9!SYUh*=;X$#>t!YcnWs!++J@P+AAts`PWM@{ozgD0BjtZqZ7?pN7Jq?-0)(`r%#=Uo5)*27QC*l(@I5E=AtWF$cs_NGd ztsf#wQv)nbpZdVh9?|3Nn%2#lp>)kqs%BWL8HO*nihQ{w=JGphu#`&L;#-wczTj>9f)B9^x)#x@d6!V$~D)W-2@UlE^t#+Ji)z!BX~BM#^$LWYzT%4`jX zWN#3wvBzg*YZ#g2f*m{sy6CqeTakcD&(HDqR213mK{8=wJfcxqC@6&Gf&N5buGLA zs%r8*MpegF-KgE1*+-ZZ-8sIEQqk^Qyd}&^&V;2*vwAZBm=xNMQH+uctM2c(*QSH) z`?_gdwiyIT>I3 zf5+C8o2XrR8^FrBI5i;Y+^%?Vj`g^8;ldt6p>kv$0hcpYHv<0(gZlp`m1k#I%@D4g z&E?zGHDFj3HMfd4{k>^_@4b;v8j}9rlz&3=Pk>?R*;w8@z!tCa4t2n9AzVz=_>}e-&bZY`c}O@=evd#Of&Bo`zrqU?l9(;xbcu6A=VD|Lkq=C9$+15Y zIGE^|6+>B%DG#t=WUdadMY?p>*f8~|QCsQyI%E4wRHqVKA;w6i?z6CP-*IWx`{JJM zimG@K0>!n4eLF&vr}hDX`1p>)UDg14x!H6m-E`<)IMwuw*7VG}v@U(IRn>XA3XQ=bBS>Lxs-Rm=G~w4?x(0|PWncn^JF_yRyO?kVvt7_uo^n;iDwed2Q%!xm) zdBSnO01;^>2K;x|{3Ry2{wex~Q~Ua|PW`3&A4z6I|;1ObIaG-(3)~lXmhh zd=;CrzrieOMXSXNU0`}9NyPRuKgLnNt~hkRr^Ty~A26Bod$O@9eoI2HOlFiYJqJda z^qp^EFBnVm0_@6MVE4BPUtWPm?5FROM;;?!s?rHdk8(BJMxH4BWzibXQ6@bWu`)SIuSX5z=OH)RqP0b zw-XW1rumTw=Qnk4=mq)WuFuau;`yt2&j)eI*z-9D{{=4+c2Nc9Rp@DR*d)4OghEiI z!-MiMmI#W^6* z4E8BgY(8z(u=t!*d1SAAf(8GN?nTq0v(|w?h)YhBkw=D+b(rVHErR_qm?QiFJtqV) zw+_sOj?h5cO2cMrV?yS`GqX{0#RH+x0p^WI1AsC>d;=eXVRagzE(PVlE_E#&SyJ_m znsor1c@6XpCi0a)cy0*; za6Qxu7z|-sHG&0bJY|J-6&plyEqV+MEeK&a-^=!-2jMu7U*#nu8UULVcELnjd#qT= zTo!EYobS!mcPKC@kCVRv#Dj-i$*2u04%e0 zn=YHEPu5>%!6I$kv|m-){SZI#>=M^qWyWP8~ogdOWxHSkilJqy0|B-TGwT)A1M9Ud31L!;-lwjTg=IeT%r1RZaJn*z z+{zyU{O0W+qV`j*M*9bn-hqwR(eR77$@>&GoCG8iIUbGy(3aF$@(DG=mgpdLfnSfZ zCEA(gyNx_G>Ns%|zDkUsAowC4fSM>OcMvD1U^C;QQ*tS5^!b z_FTD*l$EdB=i}68QuoM}BRKbvxlae%^$k!f;b=d-S>2Vc?n=DCgMpw?TC)|-eG!Ud z9e)Nlx;L=N*k^+P7Yl;J-edk{pYv)*7^(| z0ZJkKW7qC#Moh2ebG zSU`fQx)|d^-@r7py>?7PP-t$*1%zXfc|yPNmZ^r=--1OrFGyS3|n1g~}%eE8pPslwu1h&c`rO1y=Tb z`8vzX{sLQU0H8COz2h*hRFH9{qBd2%XMH4Dww$FZflO!DR`+9>X8D7&TJz9W zbC=dUoIEg=YCfqopMIgHXlG7&j7Lm z?34*@2OkKfZME=0x7Dtn{=8o37`|7RYJXB|e{%h7rm35n)}3kV+F06H%2ao6R_{$$ z@4a(g+jk~aJ+4)cC#%P|_8rc2?%V1@1di5sEY)>f>pGt4e+mIRgBTD1)HPVUKE|z5 zVye0yA4KoeH?K#T6Xo|R+Z{hD8Fc@dIOu-4uOjOqbs`#x%&A#7j_3(5WSw)E#owms zexJYKK!_MU{T%{CqLev+J})=hk+IIY z)pRaIv1)4GBPa-Jwlarj$i=jetd}Dh|4aEEl}^%Hw%TyqSyc<=r<7EzE=^PHyYdtK z#fIP#!%PNro1kaP5XDw3+k6Jir{#oxP7q|W`F(y&XzBUjxeOP{u0bwKd5>w{V;Lsb zBu+uNNqGk}?*LGxg}hlUB}u6PrmU7{MU(X>k4)e`)qGBaq#!kHl~=5H-P)TfZ_~=# z62s~8u2gx~HY|bOjTe)Cd8bI|=uLWCGqrnmgtD^A9ha-(@l0p$?W3EW2h*JgQ=Nyj z&O__xGCc>ho+Fz*C(=D9Qaxi@&)7T9t&eT=ZS;MyRp0T)XOeZWONteb=fGCu;GJu! z#=~0U;biq;EQX55$&Bc-@o2`>w_DmtkU5lYAq!^9Gg`|tFdXhdpalSWxu-IT$P7v7 zKepL-Cf#=i2#f<)`jG^HeI7kX?|@gl4hB!^LaV_Dx10B1fo(QFo^F0T)%>K^{3OcV zM+V7#WRTofPNC~wp{#$?yFcySf3NF)!~N3a@L0-wQuCfndQa|1EoCrvJ_;Oz;c?R| zr@eB@+o5?8wAYcT?Ou;h4@Inmr;W>z~a9(-s&MU=djbFyy?(Hr?X+;#D#mR)2Jk!#bv)|d-<(qKoth&DA%DKT{Z8KSGuJrta zQ7}Gjxzzl~e~oQCe`F50K8$Xz zHI)TL;DL4g5tj_&^f7+<#hhhkd$?mO+H0iR-_6Zk!ZJg-y!O`G>#>#@%WK05M5wpD z(Sck^u_Cm&*7*Bwo{Mx9?zw~oBaD27c4CSSSHjHJD;10$EU=c5tIw5^yNh}5dhGq6 z@k&?(IBQ;ePFQKF26Jp*Be{rOK_Mu7&q0D(tVC_F;`Z+O?d85HE=*yw64{YU{!y{1 z6g{&Dqk3cUWowm5KVqeJUk4kRueHW(n5DT1lXv4iG7ChQ&7!pL~2YAi!+TOrDmy&6?jQ|WT`EsqY$0F_Ojkg$mOr7$5 zk~2n82E+_Rc(+5TG{7&aJJv@x8o;79>kg;u4&PJnkEiNRX?3R{`?Z&6{8c+nBQJZ4 zsg^iPB7oxXbpv0vv2o!68=D^7=p$2ZH+F#!xDXQKc*nWsUi0aFXM5Xq3xblsyUIy` zT{P*h+2@~7pNT-hYSJ*lKMC>v3x9Eu-`^KE+RX&q82uti($*n!vPm+fIAUfqYR_2? zZaS|CKlR*nC6Hct?K0_YF%j0I4x{6LiI))UNTw4uoNUUoKGWmOPRvxfNd??rfP|^5 zKisHd4ZJEu0>g~-=QJK?@jAl+_W)!k1N@@CXT!O1K2z7Y5rHU&57dv%=BLulPu(B= zq#@Njp*6!}FVqk2xP_YfZI%VO_>ei2e@!iC_|VFCBzj-O#^LaMi0?uCCX%xf1Z{=f z^lU#FqUg+{mDFtMa|(_Y3I)e-pe2hyvM8P8qE%?*`9dHik_rAMsy1I0EMc=?^^eAa~kWHsx=emLcy(c2#YWDzz%OC6c8%b8o1Rprkqd6vL;DUX+z zq8I!U9`%)RZR0p4m&^y=;Atwi_Wc1p)wfPFnvtzoTF9Tp?@^|5-2kueDCQgK{}rXw z!Ad>1JXQGK&ylK<7xEHQFgVcFjADJ(S1MmLLuCi`XR9>r#Sk4?SV5_8?I?tF&%v$A z)@0jos`7wVc_8UMu+8_h)TgETl+>t6jY*00(6Y)ciWDD8)emd+!Z-HCXj`0yx7gRDK)31 z=9JXRPyYF|NyaXlro9^J?Zci^;sXX*$QVUVQi#BvCWz`O?;*{5DCs=}oySTK8I9ZS z>1R#d>^Yw9IiBhn(RxO9+{lN1w^P5{p**yp$JNlS9c3LXw&K0=cgqtm-@dS3p7QV4 z{QHys{h+G1R+9d9{`tH}XzNIH-R{>q4sCWENp~DcbsW_?j;30l)>@zbYiGva4$Wpn zLi$@&WkhQkiBE3( z5K~cK)|+AUF7Yi;wN%4|)-bVN1Z9Lr;!ym@y~Eful=2_Z{6~`hBZ$BJ!@)loyi=QM z+^;q6UoXxKKfdmwm}LZt&`%2H#Ui1;jkLRS*c&u>Cwg~98#+^cexf1z|QTYBv3c)BeLo^h>hu z84L)8+XG;r0VI~GEA8(}`Fk{fPtxDR0!FwZmiYGluD|F{l18TMaJcytnr}&}d_XH7 zNJ;}L$!|ZCJ5D$qKX;a#7;yi*tl>nD`{zAw+)pChh}M|p*iI7L`Jo83r5yX$qRX5* zk@bNSDWn=d1K5fiQm6EWi!($8w6W*XeGAj%au}#bZzvVn9y0P4LhrHX=*=Z6DjEfXNrqCV$fnvM=!9@|Qz&3Bi zgli)19k83i3Y(Ln6UN)N?+@|U$L13V7m-yLHsCv~Dsg`7U#`qm_am*@-G((A+bpSd z^@zBnHWys^p(~;Qt1o(DRie=oH``u{QTW&#iC@3WwMBkV_~gr{AT$s|&pN_EW;@F| zv86FvIW-$li7`b(6u_rMB2k3@&LAU`F0v9LzNZ*Z^nmp(Ab2hm%!-Ry*CIV6X@@fx zj;eo0?-BTS#7O=FZeS@bE{TVe#dY{#+e18xzt{I9iyQID_^RVenX;Po>9vcSWj*P# zo>bW$tqkU+5<)0|xCpl3smW9|{fiSDufKotgOj(8$H(GhM$|WOOZ0G%@m9yrfVg;S zK<&3ned|vqOPle@cx!&}?Ay<7Ao#r%fnQ|6s;XOmZ2hsV(w2?cJFYvk_dTi76I$sB z5DicLBeUpXAa<>~txg+jIkY$Yru3l={o!(I!E+~;d(ETT zn7?!p`0P&5SQlLOUV{+4x?02tf!P;m(s?!o3n3_Ggur5_flbND+*&z8Q2Z5b%?tfz zLE5G!Y;AC?82tjCSOdD(&ad5$lEAB9aS1VjwDa^g!WufOF*l3(7Bsfm%7(r)NKA2i z3^(tAHNi7pV`w>c@2DO5V&d;R)@lu(sHkk>edQwnoAUOnlA}S$_uTj0KE?l|0)$ko zE{n=)X8Er~Zn{ti)HmND{(1l9jTaK)4;|~n@3?Qd*Izdi7>}`ahOnJ=hKe8!opr}+ zbSH+*L!`8ka)!p^TpiA$i3k|l_n+ckA-|GeL| z(Z2D*y%+BH-TT(PZ>?9XkI?tMZ*g_X$vq=(Mrat>?ki=FxaWfnE=`q^A;8EwqtV0( zI2S0^$+|+DiLga3Kq*%UkffpfJ%Jkp8VUR-0$T)FHwjre{Wl|<%WRXSe2N_Zh5Ge6 z0Q!|FuUebGaXQ0hDe=mmT>SCHA5Gn!!sMiUhcw@z8)q^NEjP~m?u+ZLo3F0DnsU{C z>TS6B+}d+DPG(%5?~lJZ9uI!^xwoFX@!WPr&3e&|@l0de2ZNi9gXzXWE|QXD13??$ zW;r&To!|1cC%SJB-s`;g2DDS(gyx%IOauHPQ(C?rN|rX^lkry25$@~LHz(I70oK+JU4478OnU z2gO2f`>Hm8m@+;Yf6aTIcRd?j@Az){)_qhn@u#kY6H&*Sw=2m$J3iEg2x@O-#y|xi zM56ak_WgL@kA`j!;g6JmO!JRnL^Bn&w_2fUd5fTOc#EKNc#B9VD^kgF`&aIo(I(el zHI)rOW&rU>1wV;~y87@DEp}WgY`)99KQTajC3LP$Boc?hM z&7%W7`u5t&GvW=|2?bO&4M}19a^ZLA5~F*pLzis-l?SI;W3mF+-is3Sq2`!M5sZ4^ zC&CXAGMX!oIz`h3?2d-vtz}`KB<8ZS4vf*`;fw6(givtCQobtpU!Ps>xAzH$dsAUc za{&dn?38ip8obJMTy}5}Q=u+~ro)(bsy6h7d}$J=E6{1&wt|cocr3BrBPtw`)U16t z_et4@|Escyz-Bu5$($DRtZ{||#@;&{5_A|(JNQy&XGaA?IFXzGb01pQda&<;tyQy; z>oN@jb%;$D7kDXLR{!@wUxG{wfo#QDTAd3&HPIm;Um7*e-pdC4LzQ_M&Mc%bmB$#*QH-U-Nkduo!W| zT^5&Y>mcNr%UI*a8S$3>V%1UeFYypo9H(KN%toVx!feHuU1JLrG4qH$Mz%ec^7iVu z(Z|B0b=0>NV#!QP4HO(FIO3EKeJo5gHkZ%aJ9TQ!H*Q za29z_ZW?qEg@P(!CBc8A?lvT#kcN>KGoZ{Y(SPj9^&bw5e-Cy9MVgspF5+JK76E3p zAxQ^GP4s|FzASIHB!?$Vv|{I45TTK|#!Rp3N9F-GUI}%6l!z$X5@}JiHr{nG|U-QOqrF@+@Bqu3#G7*tZ^8N>E zTJf&NDsp;f%jqn(DHE%BfAXwQ|Bbpt09!`{^&q})m_HfU(@EFU+ciBmCU;z|?yeo- z5rCU_sFc1&<*)Ij+#_%eAnP$$g{qKHfRLG}f&>3mg~_jA%7Ri%&r9eKh9KjB?9`{M z=cMt!&GYdqS>*KI%HacL}Y;+`rT3Aj+38vBlu;GD;RFq&MHIn?2NVd8HfYY5G(Bsc?X|*Mk zs}Llc_dTG;pXJgTyF?tcTnN@7ed6h7xui)9j|T#A0Z7*3FeyC#ESDy^MA)MX!NzgO zv|cQPozAfnrHL|%;rrZ O_JAILwo4jYA^#g+ngOr? literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1cad735b203e6e08bcb1bc836c9c77b3b1d3cf48 GIT binary patch literal 11517 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 W_F9qy4|w{hQZx`CZfgnKCI1bDB#JKp literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/compat/__init__.py b/.venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/compat/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/compat/__pycache__/__init__.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/compat/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..79600ab2450301c658a8e0bbfa1a190b90426419 GIT binary patch literal 253 zcmXv}v1$TA5Z#R=gn;-R7T#deinWypA}N>2-RMo+yIp42gZqngHt8kbl^+o7tg?&o z74N;7_llX*aQLDUzSX?W`kUzv{ckQ$$sARs)@rPmKT00be97VU3pRlyK#LJAGseDg zTPCIsVbzy4O0yF8No5SMcz*>;D6R2*tX+~@0!2q{2bMqJ7Q7YHDFlu*@mTJ0M*%#0 zFsW8K0iob*N4a0R#$yCyxaDX};rr|JtZ~)B(p(w75_vcSX?RJ&8dZ%OkV_E)j2nPLKb;KPp90=vMs ze8gd3wX6WO5Cp#607rn@$3W#xm#C?&+Wgdq-~lzk5SCJL`jSY=!cLrN(EC0OJ^G$( zDp|@hq>zED(oURqUBbER#(SRNoO%%xp>{~y+uGvXMIeQW&Xp1>&i(Sef@LyuJ;B$S zDvd)D5zZKiMuE6xl+gjf^^w;lDyS>bGt)J$-JD=fi3(jgin_wkM#0X2h6Bu58*hYD zr&7V1MYJr5cSkx@W630Tjm;MdE2;$_(8TYFK$6JN&jGGEz>%YM<}46?pVO+!n}0&{ zbZB6KAcXVW;kY-;79Z0K8$oAoS7v|bYMwq=00^Be%x literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py b/.venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py new file mode 100644 index 0000000..1becc50 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py @@ -0,0 +1,6 @@ +__all__ = ["Mapping", "Sequence"] + +try: + from collections.abc import Mapping, Sequence +except ImportError: + from collections import Mapping, Sequence diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/providers.py b/.venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/providers.py new file mode 100644 index 0000000..e99d87e --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/providers.py @@ -0,0 +1,133 @@ +class AbstractProvider(object): + """Delegate class to provide the required interface for the resolver.""" + + def identify(self, requirement_or_candidate): + """Given a requirement, return an identifier for it. + + This is used to identify a requirement, e.g. whether two requirements + should have their specifier parts merged. + """ + raise NotImplementedError + + def get_preference( + self, + identifier, + resolutions, + candidates, + information, + backtrack_causes, + ): + """Produce a sort key for given requirement based on preference. + + The preference is defined as "I think this requirement should be + resolved first". The lower the return value is, the more preferred + this group of arguments is. + + :param identifier: An identifier as returned by ``identify()``. This + identifies the dependency matches which should be returned. + :param resolutions: Mapping of candidates currently pinned by the + resolver. Each key is an identifier, and the value is a candidate. + The candidate may conflict with requirements from ``information``. + :param candidates: Mapping of each dependency's possible candidates. + Each value is an iterator of candidates. + :param information: Mapping of requirement information of each package. + Each value is an iterator of *requirement information*. + :param backtrack_causes: Sequence of requirement information that were + the requirements that caused the resolver to most recently backtrack. + + A *requirement information* instance is a named tuple with two members: + + * ``requirement`` specifies a requirement contributing to the current + list of candidates. + * ``parent`` specifies the candidate that provides (depended on) the + requirement, or ``None`` to indicate a root requirement. + + The preference could depend on various issues, including (not + necessarily in this order): + + * Is this package pinned in the current resolution result? + * How relaxed is the requirement? Stricter ones should probably be + worked on first? (I don't know, actually.) + * How many possibilities are there to satisfy this requirement? Those + with few left should likely be worked on first, I guess? + * Are there any known conflicts for this requirement? We should + probably work on those with the most known conflicts. + + A sortable value should be returned (this will be used as the ``key`` + parameter of the built-in sorting function). The smaller the value is, + the more preferred this requirement is (i.e. the sorting function + is called with ``reverse=False``). + """ + raise NotImplementedError + + def find_matches(self, identifier, requirements, incompatibilities): + """Find all possible candidates that satisfy the given constraints. + + :param identifier: An identifier as returned by ``identify()``. This + identifies the dependency matches of which should be returned. + :param requirements: A mapping of requirements that all returned + candidates must satisfy. Each key is an identifier, and the value + an iterator of requirements for that dependency. + :param incompatibilities: A mapping of known incompatibilities of + each dependency. Each key is an identifier, and the value an + iterator of incompatibilities known to the resolver. All + incompatibilities *must* be excluded from the return value. + + This should try to get candidates based on the requirements' types. + For VCS, local, and archive requirements, the one-and-only match is + returned, and for a "named" requirement, the index(es) should be + consulted to find concrete candidates for this requirement. + + The return value should produce candidates ordered by preference; the + most preferred candidate should come first. The return type may be one + of the following: + + * A callable that returns an iterator that yields candidates. + * An collection of candidates. + * An iterable of candidates. This will be consumed immediately into a + list of candidates. + """ + raise NotImplementedError + + def is_satisfied_by(self, requirement, candidate): + """Whether the given requirement can be satisfied by a candidate. + + The candidate is guaranteed to have been generated from the + requirement. + + A boolean should be returned to indicate whether ``candidate`` is a + viable solution to the requirement. + """ + raise NotImplementedError + + def get_dependencies(self, candidate): + """Get dependencies of a candidate. + + This should return a collection of requirements that `candidate` + specifies as its dependencies. + """ + raise NotImplementedError + + +class AbstractResolver(object): + """The thing that performs the actual resolution work.""" + + base_exception = Exception + + def __init__(self, provider, reporter): + self.provider = provider + self.reporter = reporter + + def resolve(self, requirements, **kwargs): + """Take a collection of constraints, spit out the resolution result. + + This returns a representation of the final resolution state, with one + guarenteed attribute ``mapping`` that contains resolved candidates as + values. The keys are their respective identifiers. + + :param requirements: A collection of constraints. + :param kwargs: Additional keyword arguments that subclasses may accept. + + :raises: ``self.base_exception`` or its subclass. + """ + raise NotImplementedError diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/py.typed b/.venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/py.typed new file mode 100644 index 0000000..e69de29 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/reporters.py b/.venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/reporters.py new file mode 100644 index 0000000..688b5e1 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/reporters.py @@ -0,0 +1,43 @@ +class BaseReporter(object): + """Delegate class to provider progress reporting for the resolver.""" + + def starting(self): + """Called before the resolution actually starts.""" + + def starting_round(self, index): + """Called before each round of resolution starts. + + The index is zero-based. + """ + + def ending_round(self, index, state): + """Called before each round of resolution ends. + + This is NOT called if the resolution ends at this round. Use `ending` + if you want to report finalization. The index is zero-based. + """ + + def ending(self, state): + """Called before the resolution ends successfully.""" + + def adding_requirement(self, requirement, parent): + """Called when adding a new requirement into the resolve criteria. + + :param requirement: The additional requirement to be applied to filter + the available candidaites. + :param parent: The candidate that requires ``requirement`` as a + dependency, or None if ``requirement`` is one of the root + requirements passed in from ``Resolver.resolve()``. + """ + + def resolving_conflicts(self, causes): + """Called when starting to attempt requirement conflict resolution. + + :param causes: The information on the collision that caused the backtracking. + """ + + def rejecting_candidate(self, criterion, candidate): + """Called when rejecting a candidate during backtracking.""" + + def pinning(self, candidate): + """Called when adding a candidate to the potential solution.""" diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/resolvers.py b/.venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/resolvers.py new file mode 100644 index 0000000..2c3d0e3 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/resolvers.py @@ -0,0 +1,547 @@ +import collections +import itertools +import operator + +from .providers import AbstractResolver +from .structs import DirectedGraph, IteratorMapping, build_iter_view + +RequirementInformation = collections.namedtuple( + "RequirementInformation", ["requirement", "parent"] +) + + +class ResolverException(Exception): + """A base class for all exceptions raised by this module. + + Exceptions derived by this class should all be handled in this module. Any + bubbling pass the resolver should be treated as a bug. + """ + + +class RequirementsConflicted(ResolverException): + def __init__(self, criterion): + super(RequirementsConflicted, self).__init__(criterion) + self.criterion = criterion + + def __str__(self): + return "Requirements conflict: {}".format( + ", ".join(repr(r) for r in self.criterion.iter_requirement()), + ) + + +class InconsistentCandidate(ResolverException): + def __init__(self, candidate, criterion): + super(InconsistentCandidate, self).__init__(candidate, criterion) + self.candidate = candidate + self.criterion = criterion + + def __str__(self): + return "Provided candidate {!r} does not satisfy {}".format( + self.candidate, + ", ".join(repr(r) for r in self.criterion.iter_requirement()), + ) + + +class Criterion(object): + """Representation of possible resolution results of a package. + + This holds three attributes: + + * `information` is a collection of `RequirementInformation` pairs. + Each pair is a requirement contributing to this criterion, and the + candidate that provides the requirement. + * `incompatibilities` is a collection of all known not-to-work candidates + to exclude from consideration. + * `candidates` is a collection containing all possible candidates deducted + from the union of contributing requirements and known incompatibilities. + It should never be empty, except when the criterion is an attribute of a + raised `RequirementsConflicted` (in which case it is always empty). + + .. note:: + This class is intended to be externally immutable. **Do not** mutate + any of its attribute containers. + """ + + def __init__(self, candidates, information, incompatibilities): + self.candidates = candidates + self.information = information + self.incompatibilities = incompatibilities + + def __repr__(self): + requirements = ", ".join( + "({!r}, via={!r})".format(req, parent) + for req, parent in self.information + ) + return "Criterion({})".format(requirements) + + def iter_requirement(self): + return (i.requirement for i in self.information) + + def iter_parent(self): + return (i.parent for i in self.information) + + +class ResolutionError(ResolverException): + pass + + +class ResolutionImpossible(ResolutionError): + def __init__(self, causes): + super(ResolutionImpossible, self).__init__(causes) + # causes is a list of RequirementInformation objects + self.causes = causes + + +class ResolutionTooDeep(ResolutionError): + def __init__(self, round_count): + super(ResolutionTooDeep, self).__init__(round_count) + self.round_count = round_count + + +# Resolution state in a round. +State = collections.namedtuple("State", "mapping criteria backtrack_causes") + + +class Resolution(object): + """Stateful resolution object. + + This is designed as a one-off object that holds information to kick start + the resolution process, and holds the results afterwards. + """ + + def __init__(self, provider, reporter): + self._p = provider + self._r = reporter + self._states = [] + + @property + def state(self): + try: + return self._states[-1] + except IndexError: + raise AttributeError("state") + + def _push_new_state(self): + """Push a new state into history. + + This new state will be used to hold resolution results of the next + coming round. + """ + base = self._states[-1] + state = State( + mapping=base.mapping.copy(), + criteria=base.criteria.copy(), + backtrack_causes=base.backtrack_causes[:], + ) + self._states.append(state) + + def _add_to_criteria(self, criteria, requirement, parent): + self._r.adding_requirement(requirement=requirement, parent=parent) + + identifier = self._p.identify(requirement_or_candidate=requirement) + criterion = criteria.get(identifier) + if criterion: + incompatibilities = list(criterion.incompatibilities) + else: + incompatibilities = [] + + matches = self._p.find_matches( + identifier=identifier, + requirements=IteratorMapping( + criteria, + operator.methodcaller("iter_requirement"), + {identifier: [requirement]}, + ), + incompatibilities=IteratorMapping( + criteria, + operator.attrgetter("incompatibilities"), + {identifier: incompatibilities}, + ), + ) + + if criterion: + information = list(criterion.information) + information.append(RequirementInformation(requirement, parent)) + else: + information = [RequirementInformation(requirement, parent)] + + criterion = Criterion( + candidates=build_iter_view(matches), + information=information, + incompatibilities=incompatibilities, + ) + if not criterion.candidates: + raise RequirementsConflicted(criterion) + criteria[identifier] = criterion + + def _remove_information_from_criteria(self, criteria, parents): + """Remove information from parents of criteria. + + Concretely, removes all values from each criterion's ``information`` + field that have one of ``parents`` as provider of the requirement. + + :param criteria: The criteria to update. + :param parents: Identifiers for which to remove information from all criteria. + """ + if not parents: + return + for key, criterion in criteria.items(): + criteria[key] = Criterion( + criterion.candidates, + [ + information + for information in criterion.information + if ( + information.parent is None + or self._p.identify(information.parent) not in parents + ) + ], + criterion.incompatibilities, + ) + + def _get_preference(self, name): + return self._p.get_preference( + identifier=name, + resolutions=self.state.mapping, + candidates=IteratorMapping( + self.state.criteria, + operator.attrgetter("candidates"), + ), + information=IteratorMapping( + self.state.criteria, + operator.attrgetter("information"), + ), + backtrack_causes=self.state.backtrack_causes, + ) + + def _is_current_pin_satisfying(self, name, criterion): + try: + current_pin = self.state.mapping[name] + except KeyError: + return False + return all( + self._p.is_satisfied_by(requirement=r, candidate=current_pin) + for r in criterion.iter_requirement() + ) + + def _get_updated_criteria(self, candidate): + criteria = self.state.criteria.copy() + for requirement in self._p.get_dependencies(candidate=candidate): + self._add_to_criteria(criteria, requirement, parent=candidate) + return criteria + + def _attempt_to_pin_criterion(self, name): + criterion = self.state.criteria[name] + + causes = [] + for candidate in criterion.candidates: + try: + criteria = self._get_updated_criteria(candidate) + except RequirementsConflicted as e: + self._r.rejecting_candidate(e.criterion, candidate) + causes.append(e.criterion) + continue + + # Check the newly-pinned candidate actually works. This should + # always pass under normal circumstances, but in the case of a + # faulty provider, we will raise an error to notify the implementer + # to fix find_matches() and/or is_satisfied_by(). + satisfied = all( + self._p.is_satisfied_by(requirement=r, candidate=candidate) + for r in criterion.iter_requirement() + ) + if not satisfied: + raise InconsistentCandidate(candidate, criterion) + + self._r.pinning(candidate=candidate) + self.state.criteria.update(criteria) + + # Put newly-pinned candidate at the end. This is essential because + # backtracking looks at this mapping to get the last pin. + self.state.mapping.pop(name, None) + self.state.mapping[name] = candidate + + return [] + + # All candidates tried, nothing works. This criterion is a dead + # end, signal for backtracking. + return causes + + def _backjump(self, causes): + """Perform backjumping. + + When we enter here, the stack is like this:: + + [ state Z ] + [ state Y ] + [ state X ] + .... earlier states are irrelevant. + + 1. No pins worked for Z, so it does not have a pin. + 2. We want to reset state Y to unpinned, and pin another candidate. + 3. State X holds what state Y was before the pin, but does not + have the incompatibility information gathered in state Y. + + Each iteration of the loop will: + + 1. Identify Z. The incompatibility is not always caused by the latest + state. For example, given three requirements A, B and C, with + dependencies A1, B1 and C1, where A1 and B1 are incompatible: the + last state might be related to C, so we want to discard the + previous state. + 2. Discard Z. + 3. Discard Y but remember its incompatibility information gathered + previously, and the failure we're dealing with right now. + 4. Push a new state Y' based on X, and apply the incompatibility + information from Y to Y'. + 5a. If this causes Y' to conflict, we need to backtrack again. Make Y' + the new Z and go back to step 2. + 5b. If the incompatibilities apply cleanly, end backtracking. + """ + incompatible_reqs = itertools.chain( + (c.parent for c in causes if c.parent is not None), + (c.requirement for c in causes), + ) + incompatible_deps = {self._p.identify(r) for r in incompatible_reqs} + while len(self._states) >= 3: + # Remove the state that triggered backtracking. + del self._states[-1] + + # Ensure to backtrack to a state that caused the incompatibility + incompatible_state = False + while not incompatible_state: + # Retrieve the last candidate pin and known incompatibilities. + try: + broken_state = self._states.pop() + name, candidate = broken_state.mapping.popitem() + except (IndexError, KeyError): + raise ResolutionImpossible(causes) + current_dependencies = { + self._p.identify(d) + for d in self._p.get_dependencies(candidate) + } + incompatible_state = not current_dependencies.isdisjoint( + incompatible_deps + ) + + incompatibilities_from_broken = [ + (k, list(v.incompatibilities)) + for k, v in broken_state.criteria.items() + ] + + # Also mark the newly known incompatibility. + incompatibilities_from_broken.append((name, [candidate])) + + # Create a new state from the last known-to-work one, and apply + # the previously gathered incompatibility information. + def _patch_criteria(): + for k, incompatibilities in incompatibilities_from_broken: + if not incompatibilities: + continue + try: + criterion = self.state.criteria[k] + except KeyError: + continue + matches = self._p.find_matches( + identifier=k, + requirements=IteratorMapping( + self.state.criteria, + operator.methodcaller("iter_requirement"), + ), + incompatibilities=IteratorMapping( + self.state.criteria, + operator.attrgetter("incompatibilities"), + {k: incompatibilities}, + ), + ) + candidates = build_iter_view(matches) + if not candidates: + return False + incompatibilities.extend(criterion.incompatibilities) + self.state.criteria[k] = Criterion( + candidates=candidates, + information=list(criterion.information), + incompatibilities=incompatibilities, + ) + return True + + self._push_new_state() + success = _patch_criteria() + + # It works! Let's work on this new state. + if success: + return True + + # State does not work after applying known incompatibilities. + # Try the still previous state. + + # No way to backtrack anymore. + return False + + def resolve(self, requirements, max_rounds): + if self._states: + raise RuntimeError("already resolved") + + self._r.starting() + + # Initialize the root state. + self._states = [ + State( + mapping=collections.OrderedDict(), + criteria={}, + backtrack_causes=[], + ) + ] + for r in requirements: + try: + self._add_to_criteria(self.state.criteria, r, parent=None) + except RequirementsConflicted as e: + raise ResolutionImpossible(e.criterion.information) + + # The root state is saved as a sentinel so the first ever pin can have + # something to backtrack to if it fails. The root state is basically + # pinning the virtual "root" package in the graph. + self._push_new_state() + + for round_index in range(max_rounds): + self._r.starting_round(index=round_index) + + unsatisfied_names = [ + key + for key, criterion in self.state.criteria.items() + if not self._is_current_pin_satisfying(key, criterion) + ] + + # All criteria are accounted for. Nothing more to pin, we are done! + if not unsatisfied_names: + self._r.ending(state=self.state) + return self.state + + # keep track of satisfied names to calculate diff after pinning + satisfied_names = set(self.state.criteria.keys()) - set( + unsatisfied_names + ) + + # Choose the most preferred unpinned criterion to try. + name = min(unsatisfied_names, key=self._get_preference) + failure_causes = self._attempt_to_pin_criterion(name) + + if failure_causes: + causes = [i for c in failure_causes for i in c.information] + # Backjump if pinning fails. The backjump process puts us in + # an unpinned state, so we can work on it in the next round. + self._r.resolving_conflicts(causes=causes) + success = self._backjump(causes) + self.state.backtrack_causes[:] = causes + + # Dead ends everywhere. Give up. + if not success: + raise ResolutionImpossible(self.state.backtrack_causes) + else: + # discard as information sources any invalidated names + # (unsatisfied names that were previously satisfied) + newly_unsatisfied_names = { + key + for key, criterion in self.state.criteria.items() + if key in satisfied_names + and not self._is_current_pin_satisfying(key, criterion) + } + self._remove_information_from_criteria( + self.state.criteria, newly_unsatisfied_names + ) + # Pinning was successful. Push a new state to do another pin. + self._push_new_state() + + self._r.ending_round(index=round_index, state=self.state) + + raise ResolutionTooDeep(max_rounds) + + +def _has_route_to_root(criteria, key, all_keys, connected): + if key in connected: + return True + if key not in criteria: + return False + for p in criteria[key].iter_parent(): + try: + pkey = all_keys[id(p)] + except KeyError: + continue + if pkey in connected: + connected.add(key) + return True + if _has_route_to_root(criteria, pkey, all_keys, connected): + connected.add(key) + return True + return False + + +Result = collections.namedtuple("Result", "mapping graph criteria") + + +def _build_result(state): + mapping = state.mapping + all_keys = {id(v): k for k, v in mapping.items()} + all_keys[id(None)] = None + + graph = DirectedGraph() + graph.add(None) # Sentinel as root dependencies' parent. + + connected = {None} + for key, criterion in state.criteria.items(): + if not _has_route_to_root(state.criteria, key, all_keys, connected): + continue + if key not in graph: + graph.add(key) + for p in criterion.iter_parent(): + try: + pkey = all_keys[id(p)] + except KeyError: + continue + if pkey not in graph: + graph.add(pkey) + graph.connect(pkey, key) + + return Result( + mapping={k: v for k, v in mapping.items() if k in connected}, + graph=graph, + criteria=state.criteria, + ) + + +class Resolver(AbstractResolver): + """The thing that performs the actual resolution work.""" + + base_exception = ResolverException + + def resolve(self, requirements, max_rounds=100): + """Take a collection of constraints, spit out the resolution result. + + The return value is a representation to the final resolution result. It + is a tuple subclass with three public members: + + * `mapping`: A dict of resolved candidates. Each key is an identifier + of a requirement (as returned by the provider's `identify` method), + and the value is the resolved candidate. + * `graph`: A `DirectedGraph` instance representing the dependency tree. + The vertices are keys of `mapping`, and each edge represents *why* + a particular package is included. A special vertex `None` is + included to represent parents of user-supplied requirements. + * `criteria`: A dict of "criteria" that hold detailed information on + how edges in the graph are derived. Each key is an identifier of a + requirement, and the value is a `Criterion` instance. + + The following exceptions may be raised if a resolution cannot be found: + + * `ResolutionImpossible`: A resolution cannot be found for the given + combination of requirements. The `causes` attribute of the + exception is a list of (requirement, parent), giving the + requirements that could not be satisfied. + * `ResolutionTooDeep`: The dependency tree is too deeply nested and + the resolver gave up. This is usually caused by a circular + dependency, but you can try to resolve this by increasing the + `max_rounds` argument. + """ + resolution = Resolution(self.provider, self.reporter) + state = resolution.resolve(requirements, max_rounds=max_rounds) + return _build_result(state) diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/structs.py b/.venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/structs.py new file mode 100644 index 0000000..359a34f --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/structs.py @@ -0,0 +1,170 @@ +import itertools + +from .compat import collections_abc + + +class DirectedGraph(object): + """A graph structure with directed edges.""" + + def __init__(self): + self._vertices = set() + self._forwards = {} # -> Set[] + self._backwards = {} # -> Set[] + + def __iter__(self): + return iter(self._vertices) + + def __len__(self): + return len(self._vertices) + + def __contains__(self, key): + return key in self._vertices + + def copy(self): + """Return a shallow copy of this graph.""" + other = DirectedGraph() + other._vertices = set(self._vertices) + other._forwards = {k: set(v) for k, v in self._forwards.items()} + other._backwards = {k: set(v) for k, v in self._backwards.items()} + return other + + def add(self, key): + """Add a new vertex to the graph.""" + if key in self._vertices: + raise ValueError("vertex exists") + self._vertices.add(key) + self._forwards[key] = set() + self._backwards[key] = set() + + def remove(self, key): + """Remove a vertex from the graph, disconnecting all edges from/to it.""" + self._vertices.remove(key) + for f in self._forwards.pop(key): + self._backwards[f].remove(key) + for t in self._backwards.pop(key): + self._forwards[t].remove(key) + + def connected(self, f, t): + return f in self._backwards[t] and t in self._forwards[f] + + def connect(self, f, t): + """Connect two existing vertices. + + Nothing happens if the vertices are already connected. + """ + if t not in self._vertices: + raise KeyError(t) + self._forwards[f].add(t) + self._backwards[t].add(f) + + def iter_edges(self): + for f, children in self._forwards.items(): + for t in children: + yield f, t + + def iter_children(self, key): + return iter(self._forwards[key]) + + def iter_parents(self, key): + return iter(self._backwards[key]) + + +class IteratorMapping(collections_abc.Mapping): + def __init__(self, mapping, accessor, appends=None): + self._mapping = mapping + self._accessor = accessor + self._appends = appends or {} + + def __repr__(self): + return "IteratorMapping({!r}, {!r}, {!r})".format( + self._mapping, + self._accessor, + self._appends, + ) + + def __bool__(self): + return bool(self._mapping or self._appends) + + __nonzero__ = __bool__ # XXX: Python 2. + + def __contains__(self, key): + return key in self._mapping or key in self._appends + + def __getitem__(self, k): + try: + v = self._mapping[k] + except KeyError: + return iter(self._appends[k]) + return itertools.chain(self._accessor(v), self._appends.get(k, ())) + + def __iter__(self): + more = (k for k in self._appends if k not in self._mapping) + return itertools.chain(self._mapping, more) + + def __len__(self): + more = sum(1 for k in self._appends if k not in self._mapping) + return len(self._mapping) + more + + +class _FactoryIterableView(object): + """Wrap an iterator factory returned by `find_matches()`. + + Calling `iter()` on this class would invoke the underlying iterator + factory, making it a "collection with ordering" that can be iterated + through multiple times, but lacks random access methods presented in + built-in Python sequence types. + """ + + def __init__(self, factory): + self._factory = factory + self._iterable = None + + def __repr__(self): + return "{}({})".format(type(self).__name__, list(self)) + + def __bool__(self): + try: + next(iter(self)) + except StopIteration: + return False + return True + + __nonzero__ = __bool__ # XXX: Python 2. + + def __iter__(self): + iterable = ( + self._factory() if self._iterable is None else self._iterable + ) + self._iterable, current = itertools.tee(iterable) + return current + + +class _SequenceIterableView(object): + """Wrap an iterable returned by find_matches(). + + This is essentially just a proxy to the underlying sequence that provides + the same interface as `_FactoryIterableView`. + """ + + def __init__(self, sequence): + self._sequence = sequence + + def __repr__(self): + return "{}({})".format(type(self).__name__, self._sequence) + + def __bool__(self): + return bool(self._sequence) + + __nonzero__ = __bool__ # XXX: Python 2. + + def __iter__(self): + return iter(self._sequence) + + +def build_iter_view(matches): + """Build an iterable view from the value returned by `find_matches()`.""" + if callable(matches): + return _FactoryIterableView(matches) + if not isinstance(matches, collections_abc.Sequence): + matches = list(matches) + return _SequenceIterableView(matches) diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__init__.py b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__init__.py new file mode 100644 index 0000000..73f58d7 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__init__.py @@ -0,0 +1,177 @@ +"""Rich text and beautiful formatting in the terminal.""" + +import os +from typing import IO, TYPE_CHECKING, Any, Callable, Optional, Union + +from ._extension import load_ipython_extension # noqa: F401 + +__all__ = ["get_console", "reconfigure", "print", "inspect", "print_json"] + +if TYPE_CHECKING: + from .console import Console + +# Global console used by alternative print +_console: Optional["Console"] = None + +try: + _IMPORT_CWD = os.path.abspath(os.getcwd()) +except FileNotFoundError: + # Can happen if the cwd has been deleted + _IMPORT_CWD = "" + + +def get_console() -> "Console": + """Get a global :class:`~rich.console.Console` instance. This function is used when Rich requires a Console, + and hasn't been explicitly given one. + + Returns: + Console: A console instance. + """ + global _console + if _console is None: + from .console import Console + + _console = Console() + + return _console + + +def reconfigure(*args: Any, **kwargs: Any) -> None: + """Reconfigures the global console by replacing it with another. + + Args: + *args (Any): Positional arguments for the replacement :class:`~rich.console.Console`. + **kwargs (Any): Keyword arguments for the replacement :class:`~rich.console.Console`. + """ + from pip._vendor.rich.console import Console + + new_console = Console(*args, **kwargs) + _console = get_console() + _console.__dict__ = new_console.__dict__ + + +def print( + *objects: Any, + sep: str = " ", + end: str = "\n", + file: Optional[IO[str]] = None, + flush: bool = False, +) -> None: + r"""Print object(s) supplied via positional arguments. + This function has an identical signature to the built-in print. + For more advanced features, see the :class:`~rich.console.Console` class. + + Args: + sep (str, optional): Separator between printed objects. Defaults to " ". + end (str, optional): Character to write at end of output. Defaults to "\\n". + file (IO[str], optional): File to write to, or None for stdout. Defaults to None. + flush (bool, optional): Has no effect as Rich always flushes output. Defaults to False. + + """ + from .console import Console + + write_console = get_console() if file is None else Console(file=file) + return write_console.print(*objects, sep=sep, end=end) + + +def print_json( + json: Optional[str] = None, + *, + data: Any = None, + indent: Union[None, int, str] = 2, + highlight: bool = True, + skip_keys: bool = False, + ensure_ascii: bool = False, + check_circular: bool = True, + allow_nan: bool = True, + default: Optional[Callable[[Any], Any]] = None, + sort_keys: bool = False, +) -> None: + """Pretty prints JSON. Output will be valid JSON. + + Args: + json (str): A string containing JSON. + data (Any): If json is not supplied, then encode this data. + indent (int, optional): Number of spaces to indent. Defaults to 2. + highlight (bool, optional): Enable highlighting of output: Defaults to True. + skip_keys (bool, optional): Skip keys not of a basic type. Defaults to False. + ensure_ascii (bool, optional): Escape all non-ascii characters. Defaults to False. + check_circular (bool, optional): Check for circular references. Defaults to True. + allow_nan (bool, optional): Allow NaN and Infinity values. Defaults to True. + default (Callable, optional): A callable that converts values that can not be encoded + in to something that can be JSON encoded. Defaults to None. + sort_keys (bool, optional): Sort dictionary keys. Defaults to False. + """ + + get_console().print_json( + json, + data=data, + indent=indent, + highlight=highlight, + skip_keys=skip_keys, + ensure_ascii=ensure_ascii, + check_circular=check_circular, + allow_nan=allow_nan, + default=default, + sort_keys=sort_keys, + ) + + +def inspect( + obj: Any, + *, + console: Optional["Console"] = None, + title: Optional[str] = None, + help: bool = False, + methods: bool = False, + docs: bool = True, + private: bool = False, + dunder: bool = False, + sort: bool = True, + all: bool = False, + value: bool = True, +) -> None: + """Inspect any Python object. + + * inspect() to see summarized info. + * inspect(, methods=True) to see methods. + * inspect(, help=True) to see full (non-abbreviated) help. + * inspect(, private=True) to see private attributes (single underscore). + * inspect(, dunder=True) to see attributes beginning with double underscore. + * inspect(, all=True) to see all attributes. + + Args: + obj (Any): An object to inspect. + title (str, optional): Title to display over inspect result, or None use type. Defaults to None. + help (bool, optional): Show full help text rather than just first paragraph. Defaults to False. + methods (bool, optional): Enable inspection of callables. Defaults to False. + docs (bool, optional): Also render doc strings. Defaults to True. + private (bool, optional): Show private attributes (beginning with underscore). Defaults to False. + dunder (bool, optional): Show attributes starting with double underscore. Defaults to False. + sort (bool, optional): Sort attributes alphabetically. Defaults to True. + all (bool, optional): Show all attributes. Defaults to False. + value (bool, optional): Pretty print value. Defaults to True. + """ + _console = console or get_console() + from pip._vendor.rich._inspect import Inspect + + # Special case for inspect(inspect) + is_inspect = obj is inspect + + _inspect = Inspect( + obj, + title=title, + help=is_inspect or help, + methods=is_inspect or methods, + docs=is_inspect or docs, + private=private, + dunder=dunder, + sort=sort, + all=all, + value=value, + ) + _console.print(_inspect) + + +if __name__ == "__main__": # pragma: no cover + print("Hello, **World**") diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__main__.py b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__main__.py new file mode 100644 index 0000000..270629f --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__main__.py @@ -0,0 +1,274 @@ +import colorsys +import io +from time import process_time + +from pip._vendor.rich import box +from pip._vendor.rich.color import Color +from pip._vendor.rich.console import Console, ConsoleOptions, Group, RenderableType, RenderResult +from pip._vendor.rich.markdown import Markdown +from pip._vendor.rich.measure import Measurement +from pip._vendor.rich.pretty import Pretty +from pip._vendor.rich.segment import Segment +from pip._vendor.rich.style import Style +from pip._vendor.rich.syntax import Syntax +from pip._vendor.rich.table import Table +from pip._vendor.rich.text import Text + + +class ColorBox: + def __rich_console__( + self, console: Console, options: ConsoleOptions + ) -> RenderResult: + for y in range(0, 5): + for x in range(options.max_width): + h = x / options.max_width + l = 0.1 + ((y / 5) * 0.7) + r1, g1, b1 = colorsys.hls_to_rgb(h, l, 1.0) + r2, g2, b2 = colorsys.hls_to_rgb(h, l + 0.7 / 10, 1.0) + bgcolor = Color.from_rgb(r1 * 255, g1 * 255, b1 * 255) + color = Color.from_rgb(r2 * 255, g2 * 255, b2 * 255) + yield Segment("▄", Style(color=color, bgcolor=bgcolor)) + yield Segment.line() + + def __rich_measure__( + self, console: "Console", options: ConsoleOptions + ) -> Measurement: + return Measurement(1, options.max_width) + + +def make_test_card() -> Table: + """Get a renderable that demonstrates a number of features.""" + table = Table.grid(padding=1, pad_edge=True) + table.title = "Rich features" + table.add_column("Feature", no_wrap=True, justify="center", style="bold red") + table.add_column("Demonstration") + + color_table = Table( + box=None, + expand=False, + show_header=False, + show_edge=False, + pad_edge=False, + ) + color_table.add_row( + ( + "✓ [bold green]4-bit color[/]\n" + "✓ [bold blue]8-bit color[/]\n" + "✓ [bold magenta]Truecolor (16.7 million)[/]\n" + "✓ [bold yellow]Dumb terminals[/]\n" + "✓ [bold cyan]Automatic color conversion" + ), + ColorBox(), + ) + + table.add_row("Colors", color_table) + + table.add_row( + "Styles", + "All ansi styles: [bold]bold[/], [dim]dim[/], [italic]italic[/italic], [underline]underline[/], [strike]strikethrough[/], [reverse]reverse[/], and even [blink]blink[/].", + ) + + lorem = "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque in metus sed sapien ultricies pretium a at justo. Maecenas luctus velit et auctor maximus." + lorem_table = Table.grid(padding=1, collapse_padding=True) + lorem_table.pad_edge = False + lorem_table.add_row( + Text(lorem, justify="left", style="green"), + Text(lorem, justify="center", style="yellow"), + Text(lorem, justify="right", style="blue"), + Text(lorem, justify="full", style="red"), + ) + table.add_row( + "Text", + Group( + Text.from_markup( + """Word wrap text. Justify [green]left[/], [yellow]center[/], [blue]right[/] or [red]full[/].\n""" + ), + lorem_table, + ), + ) + + def comparison(renderable1: RenderableType, renderable2: RenderableType) -> Table: + table = Table(show_header=False, pad_edge=False, box=None, expand=True) + table.add_column("1", ratio=1) + table.add_column("2", ratio=1) + table.add_row(renderable1, renderable2) + return table + + table.add_row( + "Asian\nlanguage\nsupport", + ":flag_for_china: 该库支持中文,日文和韩文文本!\n:flag_for_japan: ライブラリは中国語、日本語、韓国語のテキストをサポートしています\n:flag_for_south_korea: 이 라이브러리는 중국어, 일본어 및 한국어 텍스트를 지원합니다", + ) + + markup_example = ( + "[bold magenta]Rich[/] supports a simple [i]bbcode[/i]-like [b]markup[/b] for [yellow]color[/], [underline]style[/], and emoji! " + ":+1: :apple: :ant: :bear: :baguette_bread: :bus: " + ) + table.add_row("Markup", markup_example) + + example_table = Table( + show_edge=False, + show_header=True, + expand=False, + row_styles=["none", "dim"], + box=box.SIMPLE, + ) + example_table.add_column("[green]Date", style="green", no_wrap=True) + example_table.add_column("[blue]Title", style="blue") + example_table.add_column( + "[cyan]Production Budget", + style="cyan", + justify="right", + no_wrap=True, + ) + example_table.add_column( + "[magenta]Box Office", + style="magenta", + justify="right", + no_wrap=True, + ) + example_table.add_row( + "Dec 20, 2019", + "Star Wars: The Rise of Skywalker", + "$275,000,000", + "$375,126,118", + ) + example_table.add_row( + "May 25, 2018", + "[b]Solo[/]: A Star Wars Story", + "$275,000,000", + "$393,151,347", + ) + example_table.add_row( + "Dec 15, 2017", + "Star Wars Ep. VIII: The Last Jedi", + "$262,000,000", + "[bold]$1,332,539,889[/bold]", + ) + example_table.add_row( + "May 19, 1999", + "Star Wars Ep. [b]I[/b]: [i]The phantom Menace", + "$115,000,000", + "$1,027,044,677", + ) + + table.add_row("Tables", example_table) + + code = '''\ +def iter_last(values: Iterable[T]) -> Iterable[Tuple[bool, T]]: + """Iterate and generate a tuple with a flag for last value.""" + iter_values = iter(values) + try: + previous_value = next(iter_values) + except StopIteration: + return + for value in iter_values: + yield False, previous_value + previous_value = value + yield True, previous_value''' + + pretty_data = { + "foo": [ + 3.1427, + ( + "Paul Atreides", + "Vladimir Harkonnen", + "Thufir Hawat", + ), + ], + "atomic": (False, True, None), + } + table.add_row( + "Syntax\nhighlighting\n&\npretty\nprinting", + comparison( + Syntax(code, "python3", line_numbers=True, indent_guides=True), + Pretty(pretty_data, indent_guides=True), + ), + ) + + markdown_example = """\ +# Markdown + +Supports much of the *markdown* __syntax__! + +- Headers +- Basic formatting: **bold**, *italic*, `code` +- Block quotes +- Lists, and more... + """ + table.add_row( + "Markdown", comparison("[cyan]" + markdown_example, Markdown(markdown_example)) + ) + + table.add_row( + "+more!", + """Progress bars, columns, styled logging handler, tracebacks, etc...""", + ) + return table + + +if __name__ == "__main__": # pragma: no cover + + console = Console( + file=io.StringIO(), + force_terminal=True, + ) + test_card = make_test_card() + + # Print once to warm cache + start = process_time() + console.print(test_card) + pre_cache_taken = round((process_time() - start) * 1000.0, 1) + + console.file = io.StringIO() + + start = process_time() + console.print(test_card) + taken = round((process_time() - start) * 1000.0, 1) + + c = Console(record=True) + c.print(test_card) + + print(f"rendered in {pre_cache_taken}ms (cold cache)") + print(f"rendered in {taken}ms (warm cache)") + + from pip._vendor.rich.panel import Panel + + console = Console() + + sponsor_message = Table.grid(padding=1) + sponsor_message.add_column(style="green", justify="right") + sponsor_message.add_column(no_wrap=True) + + sponsor_message.add_row( + "Textualize", + "[u blue link=https://github.com/textualize]https://github.com/textualize", + ) + sponsor_message.add_row( + "Twitter", + "[u blue link=https://twitter.com/willmcgugan]https://twitter.com/willmcgugan", + ) + + intro_message = Text.from_markup( + """\ +We hope you enjoy using Rich! + +Rich is maintained with [red]:heart:[/] by [link=https://www.textualize.io]Textualize.io[/] + +- Will McGugan""" + ) + + message = Table.grid(padding=2) + message.add_column() + message.add_column(no_wrap=True) + message.add_row(intro_message, sponsor_message) + + console.print( + Panel.fit( + message, + box=box.ROUNDED, + padding=(1, 2), + title="[b red]Thanks for trying out Rich!", + border_style="bright_blue", + ), + justify="center", + ) diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8f9c944c3eb5d3b6dbdd5bbae4b7b83572f7600e GIT binary patch literal 7541 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/__main__.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/__main__.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..21bcffd6a5e714d85dab8d818aec0ca4164ca349 GIT binary patch literal 11619 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 Y`2w5&D;$Akm*A?7qBq11bwmREFCuf$y8r+H literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_cell_widths.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_cell_widths.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f31bade54b4a652f1bf95d99475cd5c32a926ad8 GIT binary patch literal 7880 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_emoji_replace.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_emoji_replace.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0e51be8db2bfa36d9a1f4b8aedbc90e649bf9b9c GIT binary patch literal 1979 zcma)6OKcNI7@pnrKI}LSiBkx1lbS%AY?^pOODh_p5QLC;h)0Pi!lJS^yW?ctwbzO2-*WQJ~I$N=uav%TCmP+{07W@q$8a%QI<(ESvJXLxg^I>9cu=X0iDwW zCZ83O0)sG%#r=&nP*TDSmZljjrrB-UAZUYFoCe<=`jF1D2nRAPjRkaml|kqc{I!+| zH@Gyb3s}@e%x&LKmvBgjmD7?Qy2U43b#@ZTEidRKnRBI+s%ffICU*Jrs-w-g(#5=E zSUJ_a@Pck3GcJGX{Kd0p<_`>v4qTrcJT4C$ABBE>SRTMxD`ONLeAAKTtb|a zyFMLQ@v=qs)pl!@Nv!3aootoDMX0^4fn4n zpV!APWR}p)UEcR~fyvU#AoS9;X7C{J@JHd__yx$9+;;99lpq}Y+tqMw{zCcJcD^ck-M`C$a$DMi4G!%USho+LWE}kbd9|Rwj1ascMaWO zWaa|on=nnRLf&?H)4G9)E1ko0rwFl#ERr^u?uKfqLeXmQIW>!2v5`!jyRs|gy9TGR zQ_C{9g|c;TTZA>^&`PD!>pRL78xvc}sg7zIhU&~^t+as+JgX{~=Cm1=WG@jbgEhxi zPG5abF|kT=sr;NXW5H0fD2Z8|n^jC>N~sy%PaHn1*oK3L^Q!ilI*n~5Z{(E}xak&A zh@s6W_4FsTd`RTy+>mai>f(IgF7udaX{u?DC$@a{K@@fo$Yu#u2bEukejIw3_$je2 z^)H5&&aQ|a%LjX_(KnYqT2B7aGyJS)c)drd^eF4mkxF#r@v+Cps(bd8_Yc41*dvj@ z5s;UN?TmPcZH;Wc640J54>7^sEmDp4l*9GzabViq+_c-_0AI@|c=VJHpXlVCMj4B>z>}>iH=$*wU zCMHNX2ySF2L?jMMTJ`KDAaJx2dKE_Pdn94f(mjnG9a3&;2T)~;k8@XvhpSlkQp^w*P33kKvcxdX{K7OQ^+9IjTc+w#- zt5%DBxiHl%(QTmH)d}QLyBH&(T}uo!t{q$G#=|UUw-{ZQs8F8d*0Ag(9@xgNJgG$GTr8X~w-Wja+4XyNjH&`D2c)jm(h4xQ8v6C6_5Rhu9)#G4% g{zlKTcJEV_a6B^`Fr~F)~&Jy&mY!Ccz@Bd z{?Uu#Ddm&b%P{%f3ak?=D4mpoxs$nI{$xH_XjzpH$TuL?xclf}>-fdtHVRc7ZIl}! zB>@aERRsAV5t6E={p@(hd0+!ss$oPo$|Ez%kWw`+pYmXcMx!!<$LA3jbu?;oK|6wX zlVJRVVVn~GWkzrcnJEcm#^Z7W=chMtZbWX9RdGT}MxJ+3izE{5@r18beV#}j5m{Z?;$6Y0K>M`6QjLKrQ{q#5qv7*_ZjAJI+`wkh zz@P@4#hGF-$ApIb`XR(i_BzOi6J^sD%nuz!Ma&Ws*{H{8{~;eV?Ha0~QJ)1W9HUW4 zStnFu8x7(pflZ-OX&vK!zwh?%xm=mMnu?^sySQB6;D@yU}2jdBxlm~Bi;?#AWvPN$C#Xv0gl+I#BI>0LyW(3 z*WDWK^LBe3Ya?crxQ1+3z*Z3xwQA?<_pbVS%~urLm1$^9@Jx*BDAC46S9pDs>^iz% zt7RN0YaOTenu~`#3jW(fXbt~E7A9)nF$Je!<_!t>ekK7X1MaAsuwS~=W5L*gsuFB) zN+V?PCX(R0VJbDDu+mz*HOD0 zMUDZGNfo{Agkmas`)X%~tv#5v#^@mNeefm)Kby8jy)SO` zw31`_XxifnizeM;c5_yc#indkc+e@_gb8Gz2gCU%rXft~^nB5@BH-;;7A}^y4)$9I zyW8HA^Z4RUL2NyLT+nWN*<%0L+u7WEy8Gf{$xya-H(RakmUnoxz4P?v zzpU5#Z{p2w_?e_a;)Ez@JdCJe%-f7I+9UXIsBc1iDEJvcIik$CA)g&c;A zgWVoYdb$_jjB(FhTf>qm3SsqMk`9$PWhwSREZ_obx3EVCDHqDi+JT!6-z+v_9(3VH zM0^aE>7O0>HGD4TOQq7~+^3%}yt0-qzxs9=#ygiu$@=WeSJv&nml2S&S9}EG{{lDo B+8Y1> literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_extension.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_extension.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..91fdd43fbf6a1bb0f0d1b0a4ee5f4a4645289ed1 GIT binary patch literal 680 zcmZ`$L2DE-6iza6s;w(}so-hxwg)FvuTm;Pb)}Soh|tTBPSS34HZ#1Wivty=u>J-; zc<`i%e`b%%oC==2E$po)UuM_BD!zGn?vYx$%4f1YxIqc|88&}}FN67g z3_cP?6wS$y9#Tpa(^N%@A9HnW%nzC3FG(-{6@KW^CVFD4hMBU7LHkp%`x!!C3BxGD zHQz;puvD=C`#!*im|@H)VdRW{#fl%e7Sf)vzt0rG*3mu$SnR!Ktn)I@dr@<@G-Z;G zv{eNpV6s6{A|GGD8kRQq{>gffnLd))+g=1=_C?*ghjfYQ0_|?Md-*}UavGel5?dJ~ zeKjnOjW&8D#X*$~Bn%Irc%w7##Pin=MXn{-w5WHDY%I=!vJmvO-(Min5^oQ?@U(p zf^XE%&imtj-JkMX^^5bp@m}42bHu<4Zem}R#-2d9gSNwW0-X?Vpt-#Mcvz^@TyMi| j+=l0NPtnXGO6inrPF8gm$Mnu8HzVl2_}2Z`v`u~k56iR@ literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_fileno.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_fileno.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..14becd0f74919d26875d1c29554e4e2373351896 GIT binary patch literal 1022 zcmZ`%&1(}u6rbHqlkB#&rR|{wp@Rxdq{&h(Qi>FcpE=kR>j#ZU*zQh}wYxjZ>?Ca@ zLKP1^R#18oyj7+C0UrGmDtIUhg5XK;5GX>($v3;LR@7nkx9?-#e^;qd8l-0h8z^oMZ z8lFeF!ENdVSviyo#V~!za2#XBA)#8a9a47eRnkoriuVG}?uSW6c%6A&&GtBM;RWgu zQ;Jzc*aHYGr2`9uZN!iHTENbdcfh*~Uwj@(E$Q(|70IY2?SN_b$bpv7X~Ylf6UH-$ zK^4nT)e>4m>&h}(gKSWX^6>jL!m;4$(M%Rs766$nO0fN|eE)*sfrsVc1d2Cozx|Jr!2!6BbPdSHMlIe8eV9#+5F>xKdRDv*RpO zudJKI7gNm2ED7CWy#Rq|AI9A$`t5+QK=%x8IJRx@rb{a}u}QY2LA-|U*eiPMIG>-I(gT~5oNt(`MwJA*Z~J-~o>`RX%rhsz%)3ZEtl8&~&J{d=jgwwzQ)_lL)} zE$BWql9`K(r9FKYkF(Ct%AMN>9jS}H@G<+^g-$u>Nt9(<&<|)PFct% z;>M)F!O{X$fNV0<%H>KOcAAvSOzdTti--Y;l;?_al_9Fhjx=s&=QA>&UDWE36% literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_inspect.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_inspect.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b8e5d5404c445deb276c503cdf36f8ad68c6ba4c GIT binary patch literal 14232 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 bijlsN@2vSBrCE5xY_FJ+M&+Li80-8uDAR)? literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_log_render.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_log_render.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b78fe9f8dc73b344bfb14fae103d3828010f0e0f GIT binary patch literal 4814 zcmb6cTWlN0agRKbNAgG>DNzrKk||MgL`x+TIj|$kcHF3zT3~BuyA>+hith zOWX4Hv^~$J*}Nm|$UD={yesX3e!IxZT;82_=RIi;LnH?kfaZ|Bc|OhOeQ96bpY~gP zPC1Yl(gN_fB(lax?p0fVQv#9>+Q>W+T^|#X`^rYhLwM^Y9g@04_lFivuYo)sxf|zZ zh>b}6SHSeJ$x6~;DO~Mop=}M(EAo$goil?Z;c9OiQ>!WZpT{i*-X{1agzu3v!5EyF zRU{>sml95cyP-%ldsCJS_KjRwF}OENO0HPQ%7$R2IV5MhYD72CJ)ku1SY3FWtA5e< zu_Nt1p36skp*HR=80~GtIl!M;r>(zR;>9rVINE4ECnV@S(eD-eRzqSx zNaPcFP*T)zzfoMPpVIQ&Q`h@rcVc6|`QUpFj>2%4*Ne9^s5!%9HD&3RBsa*Vtg>!+ zu`{z;r1`93bQSYCB}1i>1o{@Oab?46jmg~3iNNlplCnt)ODnF%k>dw#)(-EJbpQ`Y zg{hDXwCbf|0}NGfm5Lp(md#gKz;I-}&jDETj*^NKFh{dbB!D@OG1xe>lyFhJ1QczX z_94J?q!9!I01Qt?&XyHx9|@PimL+-hr$>}=Td{h1`iImzWr>zkg{+d5bGfXtl`pR5 zq?~jsn|f<&Wj#ytZ_(n0w4#(#3-3*(WGPDvnbMZBUW8A*CzZS<6>g>E+|5+I<9za^ zmr~`NBK@qCUHLG(CY4jATq%_SHnB)kG`F&z%E-kv&;s6pWNFLbGMQWf^pe>QwKSb< z(gGlG`7(gJ#0-&0e3!lF*CV6w3F!SJ7B+Bpm({pFJ$?bdF};bOOCr}UJWpUeF^J(> zsb56uL)=>z0dHHG`jNt+V3svG>W0KxHsq3X1u0V~8g6KOm_Zs10{@B|K(nAdT1N6N zs2H3t0}hwunH@JcO-8iK;COeyvD!$*v(YjFk$vR&3XJDr%Yb&gqO;;XHjE0{Xqg4= zsd%gHhS^*j9PT5oa~=i^Y6E4m3XPsR(hYpAeLV7I zU&Z+oGW(yEd5!Gw9XtL<#a`;FFja4TADyr>XzbW4YzZ#a286|W*rX@4TdTc-8Q)fA0zc9-wyMohpS8Sc~ zbzrvlcq-F_A)^zEHkjL(j-{ z+Dfj^39QA{*AlxbfPcxJvf?S{Qt_W$4Nl6t(cRQ~h5s`oa1}3vgzhDZmkTl$?{V5t zrl_)njbhko_Pa`1QOp(AmbcNTC9T{BQj4;(B}?0GBv}p)MkQgC;jp6Lwii3{Qn?I% z+hA9VvIyCWgJvNCs`GKhTM}KBi?{33q9=UH#I||#i?P+5EL}>aXdGsI%3ONN#1mn| z11?v|g8!stI%zGXpu@HNr@^k#oMqf^BBoLfKfRfimb{034(xzhAVHQJZ#*2)YE0^T#mf^-D$taNfmC;6yDrp#>*)oqAt% z*LlyUdjt2bnuKw`sPm!6{NN!!SbbgP2Wxyv<5Mc1LWWn7;RbWevG|RmU7WYr7BqfA zD>iAGNwkR54yF)^zPz!f!=*@EikGDMonV(EiigKS)Dn!Q;WZ%#a~f{ z7}Wp7UpU|%k534?KVI zeED+K{zb%>lNtwloNR4>1kcLr z9{H{>`kC_!=k5)i4?pIkhkR5Qy1z}R(M2_S;b0m-z5Xj?+KF%Q2V(R2e?(wfz)6H& zlQ?`KUFd%-#14g6wW}tKX~LK)jJ0Tb@6g^G`fH17zWufTONn(}9SSg!@ewwm8z=XS%WFAw2{8=hfJhIxwY$ z&zoK(@?>bl^kK_SdWQB_?tf69O&}h>8ALkH+Xl{&@k#yKFZ4)M9~#kz$MpCMX4eHr zk4XR=1tX>d5hqNh4!xv>r%V^(9O)X^e?<$8nr=ivl%aj8I;$pT)X^Dj=&}~RVtTQM zCqkd;!23e}#X{_+yeWOKAjxtO;zn+5U4dBT+Sn{Bxz(*Uj&x};g?_6Aa literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_loop.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_loop.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..30173a1ec4544c9805d97f85d01dfd3d21d5a18a GIT binary patch literal 2160 zcmcgt-D?|15Z}EIS(5FOoZ7|CmoKmPsKcI!yrC+X72a{qsAug>r`&QP~C*5W5 zBwMW%RGNYwLQxw-{1Aen&?Y1gdgy~6^Cw(D6mbv;ltTL^@QcY)XYb_5HZi27WHmcC zJ2U$+`s6s;kK~tfp7z9NW%uo;su=L7Pu_Gz+=QA!fV_w z7@@n+gSH@OJi$a5+EpM;fH6lzBBZ&Fwj-qlO}r{Bg#N?45X|d3bROH0@9fi&V8vcC=vOaoixFF;j<2*>Y_nBF`2jE)0He*RFByf7DT z4vj$H{sGtw!f;#89(xJxzo9aYAcqInb}Qinb}rX9f*iJLyS;>{fYBvDU=FRKHU1J> z#Tr-Q(%c1f17lReAE7V8WlrNex@!^Uoe;i$+YiejvYON6Ws-v!*+6z!jPk1PWMGgs z)MYtsQaP#$~6s)nke77yB;ot;NfsU}v>xWYg{&A#Kz_n6PBVpDpdHeWT|@X;s4W(MZ%9yrJK z*a-SLI>FcR1poBB`U$+AS6=zK6fMKM?&MO5FLT$r_hwf+x84eJ;TdzwP&=tLm87in zBm_T&s06YnS(FrXGj9jEL}Q?|*)xDdl4+c|M0_yWLUaJeN0`U=zz)H3=)}g#gQ3yJ z&}dbvO3#2L!;TY&eHLK%r7MlN;WjmgPO^oX0J-EwPrAZBqU<}|SLS^b zd&@$J_fg}6I-&7k5dcdG^bFr!eNZVr_*ZBKm4X$Oy|^Z)0$jxouCyP5_r%}@`k0EK zV3@W+jdfmV%7=Ck?8DIQ>%jgmXnW$7kNvmFGkk%y-{!`wD~-D0HZ|h|px=c#R_m`_ zaicH0!ankWo=rr&kW;ku+%jd=jJHilj{IDH9DXNj zYI%c9(i5O#e;D@fz@R!{+(c*G!|9RGUHPQ?;kW0mo~z(iD1wjG);96_H!TF>=2~5> zYg_Nvmw%HQue|5$4zj^09Ni~ kyE)TBAl{y?&u_hPzyJQ_t#=!5o^6bM>Z=cB^f-j}59mA#dH?_b literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_null_file.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_null_file.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..343bded3a8620fd217f97c999c9f65a3ddc53049 GIT binary patch literal 4219 zcmbtX%}*Ow5Pxg0*K1>A444Fx010V}qkx;BDpi}0wjm^>$cdUnRef14-e=fmZIibP z0i;SCQq_?-aElK}Z+HmS|S8L$kMRdDfy#oi}Kcv#QJ%=XBGu&5VkxAFz(=$(O`;M=q9sv_K8h6Nrd9@R474#%8wYJ1 zBwbw6MWd~3VQvDn3D71%+s!SclBA_TnrwRP0gv6lOMsmQJ_Xjjw1-M9KU^zneK0HC zoYfDOy;_F$`SCPC3jyW;==#Af3LcLDp8*YOQ@~8CvK-Tki#eqN;VUJGe{yNfjuefmN!PpGoF@4gL*I)6 z*&wgwL`~cSmUPTgfGk7#8I}S=)&s;zll1~?OS-9A*4lc?LvaK#P`WUw{@OCjfZz?T zkDX9lTSci9Lm+aW;QBhqHsR3O5KDt0I|jtWS)-#)2qL4Zww`pIPU0{DdJjHbV;ugl zEZGtCe_)z2I>lCBPq*Qqh)=-M;~;jAFFivq>(*f@vJ)<>o8lM<+EV23hF%H6qX@Tw zjUvG%wo^X%MZMAyeE|xXb>mdb!9{-`_%`$yCXZ0&dT(3yT!yG-v!GJxTFeO}?F*w? zDw))>{i279v{Ix+?+gYX2X8*Zop!D5;LuV#i{=NGnrKnO@Fjx7VYHq^vTu(~eVra!VIG>h$5Y^|ZI5M( zEmw-F<*zVTbg~Wo(9}9~(L<(Nf%S7mrxC2=KUz&idom}4BVs8h&&ULm)H zA7BXmNN|-8&C_e!eTSk92OC|r6vcO1xFW3FR=c)=U_ImC-YFnYh=m=|d^BM}cnaee zo(wt{1AuQ65t3pD#enia43205CYpGXZ;;d8-RDE~9BlsLK zMv-72!I6WvaXu@sAsn8xu|3o>RTMj}DCMfQY#^Udln2YI;b>SNnA+lewQ4Xt#qBU$ zWp>!K7#o2h!wzBZA;Fu6jU&OTX1vDEBZuGF>?0%>kifqcgnfeKA`+|^b_EF*1mhv& zUfanpRFhs?EmHmk&#=7M43b$SUn0pP;b%AI$3H??7jj4t$NUlYdBgi@goH@4LE4EV zL^5>|rI{cBRWHhV>tX)dxyoNb!abZu>AOAbI3Aw8(}M%#noYm#`(-wWgOM}a|Bi;s9nv|p^j6Vli%z{+O^nrN;qC9Z@TCJ6wC@a%+!=p1_0t4SO1_-t zuOI;jz4bAaIxFDgKs8h!-)IJ>H1oP$mPz_401!Y$JxlIEi;Rx{xF7qz6}=hne1SUI^-6Zwx0G z2v07I(tXK!GTxiKV)NOA9kJlwRFhY`Edj4r7M#Z5ZNr;|HyUp$>=Sm^EqFVYzc)9h z%*@VR3pB-B`J&U^m)SR9jmMYy1CT~o5QNuc9cYjWk)fB9`lmjuXfKdG^;vCW5n aqUNub`m+#8W@p5yKz80{;L-VtnHO literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_palettes.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_palettes.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..61191e4406cdb4f1306116ca9a032b46864b30c3 GIT binary patch literal 5296 zcmZXYO>9(E7>4i66ljb{Ye9@)To{E>=(V8Y4^|7UP&KvMVhx)*v?Cpz(&od*0Jd+IK#l^PTTGXF3o% zpY7g#Q(}*+$?(FJ14;5b{@@=yuDJe+6<3n^WWLl)7E9+#rKFtHOBa**^2eo5OG)yj zedmw!Ww%n?ym=$9ko+g8FtJ zrv20E&RN7u76#DW`O(6k^k0B$h)*o6<8jn)BL2(4H};gD?!z3^u=q3Rp&a~;`mm2` z-+F!CMz;1>)!F7#ml znEfCELkN0<{nz{7DJaLZB8b zMiv6K5U7PfEd&U!CE$;GNGO3$CeXVr0#FO)`Ma=# zKrIAV^5-B>3xQe))Ka+pj6xLwwXj1i1Zp8r3%aAb5a2N0LZB7`MAV@ccBlo5k%d4l z1Zp8r3jxAw3Dkl*vJj|+KrIAnAy5ke!nC}XzQ+P^mH?b3094ToX9*o@!90H#b`YqA zKrIAnAy5l}TChE`5TMPUlt3*6Y9UYyfm(_i`k}>zBA^y_sD(f+1Zu%zbQc1>3xQe) z)Ixyp2P04m>c~Q%76P>psD(f+1PIg8sPC}=oFxEf3BXwbKot#D3+DN|a0`K22-HHL z76P>ps0G_23jx~v!3fkspcVqP5U2&+k%d4l1Zp8b_;V1bg+MKQmE8YSSu@l^pcVqP z6#KlEKrN`FyAY^_KrIAnA;4sBAz(a^Q`UT=xyb>z$pN^@0r1QZ${@_}XJ#9LPA1UF z1Ui|(ojJ@vWtSkp_Q*n@76P>psD(f+1ZqKdWFb%sfm#R<{-gwIAy5lnLib+c_`#2AZf(7qK5zYGF(7qNW33 z;5~pbA9kX9P#0kxp94JY!@$?5&-gI#Eoyu&!>}25qAtQZHUP$bSO-2$3Sk|806gQv zz+b4J^)XT1vAJtG|Bx!H7~R}6Gd?l;{LIwsDg1`(;lrS*KKcd@Iu;7a|{O4@8(Nb`l`gF{1UtI@6>U9Qc&Ub|RtrOS=w zbk^GDm$Ec#%q^s|?hdWN<<%R#Cl{CI-)Po{vne~2eX5eQ@bl?bN~O}T$-#~ItJ|9l z+_843TkhYnvzz$1Rv8#5|C3l;-qSsj>^-n{VtdD4bnGo}Bz@h%WZ%KHGu`q?52l2? URyp0X&)Se1Nq_#8y$d)0U(eXtHB`<0R%=xp=O6na z7oO?FxxVT2SP#gmU{39l}WM9Uh>&=z0D%9^kk7 z09zVHYiOqsg7BFQ@IFL`CtpB{w)L&atxXbk8EJDFgv1lx5)4K*gm8$EBvq7TI3^?{ zN{wQXfUU|-P*0GGZls4G*VWc)oveBh@p|qClSH%=K4yA~vZ46XFPv7Equ2v;}FlkW_N3OIto%wc$r`L4lT1C{>3kjlq3z+h{V6=H^Gbq22}KyKel@ zjp6O_g~bWdvX#UQv*XhFQR&Kf;nMJtdL|h(clB54+-~;6^3L)|zc>Xd)TrulE{uHc zb)@Pbsahy0_Z7*K!Ub?g`8%$#dk$NXXCYLrktmsDFveqadGzl)$(8Zq?yJxG$2SuM N@XNJiI@KkG{s7zE-c$ep literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_ratio.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_ratio.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..94dfc06b67cc6c836900a61d832fb93405e009ae GIT binary patch literal 7979 zcmd5>U2NM{mL?@q|Can4+lqf^JBg!dY{zxe$tJF+X`HmF6X(ZCcSh5!%80bhM1LhI zCw3*QW{?G#fq_*PQ$zz~01q&mb;hR}9{MO2dJqT{@LN z=Tfvx#oKP*hChdwyyxC~&OP^j=iJMGX=(9Ma6G1FmOtpCsQ+shTFZvu5^@tKE zflg3Sd^!?z(h+sgn06+dNhZpWG?QSHuBa>Nj=Gbcs3+--dTC0eZj&~!Hi5mv;!}1* zNf&VYqkfu7xyW0W5+<|DM>IWO~ZRZ6EI&BR415npK!ixI~&wD2JK3 z(gGEA+<^9@PQejnL{@Y)`d)Mk&S~Hjn5ai|!5dqD^O83gd2=jK5x2pd6PCoa$up@{ zE`95^7*{!UnO8YMT$ECx!tp6i1P1P?l8rBOyuw}NSJPQFGCprGinJy^!`?AinFqCu zKvGIc$!s!)IT4@XiN#WUQjEn6Uo4hP3)uvw1F_hLSw2zEamQjpIv$J3L8wS}V{J|; zr5d4Fj8CP~Dps6QAiov!+kkvRy#Pvm`-_PiiYO}+DPH9hlEka4$@HQmO5zGXab-2W z%*#pWOH@gjc;|0lok)nhoQh>u)#Wri%$$kw6*09kk&tdpm>E;!lamvQq>5u1K7NN^ z5|xRJl$nSDn~;_#WGTKp5hL1;XIAAFlnF@yZsh`y!k)9roGvq`cftdOS?y?XYJIHC z48Wx`1J$|Z5kT6&@gkrd4QO(M! z`0n%oKI}FeA}`*AuK-o_eJV%KHcgzoLj@M=$iuM7IaVn7Yr%P+Qmp|7*(!l3lP~AU z(e~+Kp9C+p!Q?0vrKukR1CltJx$JeU0X*i}91Gw`rkWfUTp-bRO3_^70_C7`&KzrN z8$dM2G;`Y9w(FL6A^*)o??W%<-FZ*WmGj(YEM3+>B6#1Gt1fL|?>Fc#H%=}9^^@y| zQ6_=4x0v^mHjY|ts5pG;$3E?O*C0>u*ySW;eNdCnYHvM~VoZB(eXWM9`oNYrYwCyE zZlx%y0Tnriy>0*nFTV~QFe|M{g2<7v$0;xyFwH42AC<*b4rll=j!cAO01^VXcj_PG z;xK1bnTLt2jQe~X9M_jc&K$X-z$E|+x%46j`Qj4HVNO|2XA=U)3j&wTU^`~BQi@Ba zffW!`RE}}kR6aDLl?yNO2kBEKnYG8S1)A`XDJH4`MK12U`o6Nj|ABo{*rIut(E(6_eR4 zoL&*-#YFlp$yDO92%;^E($cb8H^UiuNjXL8K%ZbCVHg7DC7U@o&pGF<8{UL$a|r%_TEn!I_6o8PA~ZV@a+ zx*8iZn~v}LU>L#(RUL4@;D9`$mZ%(c)1Rkv^lf-Ij|_OnhmQ5Y0`&zl^m7*8iNGiyU+M8{-NNhems@##c5&L@-^NLVa~p@=dFq(GGe zQ|7gCT@%)&a&WNp+U_@k-}5%X5lM*PM<7ubJV@p;O{gR9%sKwem!oseMF)rj+2__kwhHF#UU^cv) zwE4D|nqCzfv#GFanQ_ReTc+K#OddR7!JBi~1{a+I<-kH6sM5TQfD5AxgOiA}p_Duf z9~2y}Kh!)Yu;6JRXdY*0utEOZIZ&J}9jZC0@mDwBFCMD2kCfYwZhZJZ+iJ~e<9yjr zCo`fl(7at^2SrI9=Y)Oq&|G9GJNS_sK^v0sMf5r z7^nu?YUk+P4*knJG!==S*|ly4#dB*{#81FNXmS22{Jb=16J;I!Yo9@tIXgJ=YAf>P=f! zn0aPI{au08OQI^=QWnBFh_|7WFpkeA@j>+8C&t1dK|&P{5>|}Wa1=5)#nhe{i+FX@ zsn`7ijW7xcl&tzcPZa86W0$UX6Y)Xg(OyqwZnSPAqBy##mKbY%!BUFFc1$|g? zE7^o9zk&QjF?ZdR21^WL_ysVrEZxegqM+bjfMrX3njRovc>vT|J`X%s;a2_|2snT~ zDtL(oh5i`dKJxUa{`y?y^*MOeTP{{wE*8#z+1^!LeE7<*Un$I0{Re6k&GuG9T}2+x z_0_Vcr+VOE;c~SnTsU8C=~%xBC58@dytnz&trdM}rZO~Bqugwm5Z%+SvD)1dTlKfr zD3>=}{Q1V@KgEi%FT?$%rGL(D-q?!iW3x{`(#NjpqYIVM1wDMd627j@RRitX`QnMv zX}#l!9vH0zM$3WGYT#h$BR%jV?Q%8H4JaDmv^i~V$7FqQY5kH0XVu?UxMbq0r@l^9 z;)t8pv5TV_nCuWfI$#d~_Ar|9%#Jlb5KEniqbAlVzIS2c_6fA!*jD@{4VcORrov9d z9!z!R9EDE7u|(U@u?eRU8}sfI?5Dhh!R}_6Z=NU92oSg-k9^36wq6xui24E8%Mk2! zelPa=KmsQ313Y!*e9d?YyCWvzI&)0USI6GBb1cEwX@arV5XMcvzjB;4_ZgM{182=# zZhx31IQv(FoifJ3`ywZ7R^Sw|0K{C`9Wqg*0XO?CQU4x_S?JkzrA)3*PH&#rIt1&} z_9Ml^#lss{&Cfv1m>Q#qwcZ8r3gD>f&M%n-zjaIGX1L=KR|8iG4jRscm;z+w@5$&Z ztcaT6>f7)^eiO+VAVyn5S|LWT)vUoAv#`JdRnup=1BZ%0atzj@{HD|+W)&8vBLI{P#)qUYj< zq=%1J!p9M4M+tclM6dT4nT_9$u(~7YKBQBLKCY zpytv((me+&o`Yr2!K$aDnAJUfn!oDl1_1UP(L!3N>hCKveRW)g4R%1v;PRe+VM{L1+Y+qDyd)e+15`8~-c_O#RJ6-ps!VxSn?z^tpL+ zGXhs-jg?o#E8}*fj6sBqOC6I5w}#0QOolLU4?CFw=19an8Tq47KqFoq$0hr za$JQ~;9~v%jbbh@nIx|+lM!yX)YS|u0rxB=i8AQAi~wxADX=VzNh#R9!l7&Q!*7G} z`fr1AvuI4br-~`$Q_MdHxE3XAK@ty;u}pdm;t9)wq9R{IE|l5u)c2(XgU!f*&?L-h z>bh?|)8?O+85yG}0Cw0(fZ1Jh(llMAdt*{@bFnl8BQF!} z-lC~l`W?FF9HRSc6cAD|KCOx|J$7PC*q-`Ks*Jr!ICpEbN|B-_fh8vs(AK_i_LiN! zRR#dYcI~jinuB2nU_0(50&9DA0M_>Gz;h?%3W3OkGeEWWYx&Z`#w48AHzzmw-@Wns zH@1f0oZTMUzWRr;&&Hm%!TH+fZJ(d{&;CF4mxnLwp(~ZpmBKq!#tZ+UM&Mk2Ft$FX UGd&fir)*udZrDixImxW~Up4c*=l}o! literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_spinners.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_spinners.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..805f61760976ae848a06ceae454ca941323a9382 GIT binary patch literal 13729 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 C<#O8q literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_stack.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_stack.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b4d17c06b48355ca3ad0dac211ca1e8c94b1d584 GIT binary patch literal 1175 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_windows.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_windows.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..af2a993bce3ac5f3b7535fc1452c33ce638118bd GIT binary patch literal 2875 zcmbVNO>7&-6`tK4F8@hU)IS}SmK|HPB(ky$v~`oTa!ScUWJ!?h1lh}C#T{9cmRxpr zC0T-m5RFl=Ko4pWzy^{6X%DUo_taC5&9$ec%A$(}3<&5cHwJD1!Kc32C8|f2toS{y|ejqKSKXxlXmm92Csh2A@l^PNaZvnu`jQ2C0^n=M0g&} zBUN~eRQ!xb=mor9dj_8u?Fo{Epr?-|4EjC|mwb{B^wE~s7E;A+SDPkyM0^Bq!G65< z4E(=<*K1Os9920f08&BK-_83O2i5~xs1%mMrHB+MMWtvdCdD|U28po2tD(nOikJJY zAkssEB(Wh}MKsvqh8g!mRK|Pgk?Y3*tbEOVMDiQqSW;dDvhMYX8=-sWo*rlol4Lihdj@;u*4#JK^CdICl;ND9s+dYaQw*cf z_Q<|MYx3$Q44y!+B?yniKLB+}Pyzz4;$s_z-^ z>SaUM$Q)739ZHOYRBJuG(OO9>yGl`0)-{rybNF4;37T|=6m(6eOPPQZkma&cBC_m+ zWVxiPI~p5DWcjB%iq_)zWm(k=vP@YNH1-h0UD2=S3x3*{2L7E@1=X zhd`>|cuw(~7JlVzD;zVG+W~z6UvZ@iMcac0)3j3`K%~PsVN2CPqx!jdZ7`Da|>eVf` z8kikCBGjGTN03ZrJM}=}5Ortp5vOuTJj0;LY_=NU&=0xI16MfWzllM!QwP8nuLln~ zGtkyT=m7R{!M*?%@S#9&nc;J}^Ez{3x4uK)d8JYDw!5cF|AkezGU*{$?f6!G+irzC z!e;W^&!KRL|0s6X!Xxoe1UUH*K8DD*FE3s2Fx7!jHWW&?+Nv9V<926(t+#II0u*nj zXUpkg*)WxIfu!|~ZxPFOOx>sKEOTG7x?lXqZGyK$8YQu3dAtZ9XesK z2H^5c1={7rV0YdM2JKbgQq#3XdtjtCUz{&8Xq{Vp~m{E3?px)90k(M9AK44$C>g~&q$`NzSp!n+@iG8KbCIPHel4WLU{ zB#mAmRrE5MsV65I$%)o(-0H+ic}amglc7ZUDzsQO4?-19F*kHtdVB0OH4=ctKUrLKM3!Be=7bkY6`h)1J^Bum;B2b|XITl( zvQ(J4*-ivELA|7P)7Q;hb`mExYnrsUzGD*4Qs{j}+wsPfA=wRt({s^2y~dP9$as^K z985`t(ijtW3p7i}*MYaZ|JXb97EDJL3WJl;F;k6QjwJ286v#?#%;j_Qf2 zMq;Wa*2L39e@(Pw!?o?FQ}x(*BQ|aY#+%sZ6PxJ&Bk6wMkagq7O$6WnM$Vc^6dZgS z{#>&B-vuWeNOg$Fx0K-v;P@8e2YEnW^A3k_q;_y33|qpmjg!@7_MFBitoTGdKGld% zRqxvPn$_J;aj=@VLKDXy9Y6Zyqx#@@V{ja%Ua#ZH2A;I=q|KyiSK)c|i|jA6bv)d_ h!&bXD;|Py{Q-h`IZ+|p<9er^0B>xM^JWYo zGHnk%q3jQdipJ_BOVriZxQys8v!&8gpvXY9d{Ha&Fo zJnwtopWpkw@4YwQ^B>*rIs%?Ah>`Wb0`+%wU_1_;c)bF|9>EbDnIux=GMTb0TT<3# zYs$84BUQd7X-_$p9VzFsQyW{8HL2R=+Em?gUCOoW0-g<#$aT&@COA8Ca1PG7>fmaA zYg?}8ob!aQ_LVC4*_4`yh;VEriIkdobSI0_airK6vKe65;xR$=S(K(Jv=)nREhW+% zzbPyroKoJ?2V*>sxkNf9BEe@>Tw{D%#C&p$=TLdDu$4iIa~`dwP+C+RE7{dmgcTdi zno=AXiCLVE#w}%U38EHgEBszBKvMRI95GJpT5omS1m3n~+q!Mb*@QsOiqGcAeUn** z%vo~Q$AI{>j7kza7eJe==v1hj-SYyM{?xx44jxJ zUp0@*h+m(FhIvexHlzgc7|5sPA*}hos*v1<&=h@x!87;ONW0`tOBGh5p>M+S7(8=- z3f6~JSmhNqVZCR@Fz8dT)~m3Z4P6~;{D0lKtCs(;Tj4Zp*KE6B1t?=4bDwjS_GR^& zLjL|##U(~!txqCbAJNMvQtxqRSsUq`qlp-fAzU~jx_oD z6SI#7eTuKY1Urk#?!2LE?oYA12X=Pdj)JvoG3y)jDR!S#<>q}uSH~KCr`!x1Rs``5 zd&>>}wN)%CRL*^3S6O!cxoh3&;v7)?oG}7E_tUZ4NMK@_4CXU90VRyliy8xEOyHA< z3C%{Bcr2L|n3b4-IEGI%;yPl4QY{mhL}^?qY5ux82A&XJ6M`D0j!Gh?+bFW1=ymXx zFUS}?hF@iLw!nxy6X(+#2#YES4h{5I-0+ui)#}M~pQy`#x~Mv;qJZC;x2FVE!og~} zdZpGqsPR_JZz|R}pL|2QU#Wtqk5TG3aY96_AZ{fQr__~3BDyPL^?R-~j4jU1&&;vY zGrtJ43p3aOOl(&r)&!LLh7`Yn*mxETJZ426*Qk=lvC!OHB=k|3oeM84&P5g5T~$7ZG$r=tpORu*{{vXo7w71v~BJj|9%6xVu!GlErI^OG}6Wr?uP zZ|Z4K+~K*+VnR$JUjtT49#$)ude6EmDt2uN6(?*h^?s(fbpk@+kf79? zhn112-rPu5A@3^Wmg3OEwx!hDon4zsP%EOk&nwTHod9e>ECk?E7)vJLTy3TJ)dWhQ zjaXoIE507Xsaec_isGUWm|W@)BvA~f+02%>&O=v{1pFH)y%9(zRsto#fWNOVAi!q4 zoPouPtsxnsBt_F;6!{qz;2cgcx3}LA zM-4>#r6Z!p-t&X{%Gb2qx7|m(OU1@BM{rl}DK=6^gw=hq=%Jo_+6$ic{mv)$yvHwl z{F2sQdZ@j|hmHHTyr)a{bV*u!IS{-*U1TmF5f|J546oh#Vq5Q%&=P{wa{d1$tPbhcy*nf%4_4 zUYY8Zs9qp+l+gk`D$%2w$_EANgFNMzDZfPdfjHs&bLw(|x}2v1G8K@h01&#$M1h`= z=!q9h=fUE$p>M5H?~vRze3;BL*JbAVg9s#ULz}{1p!`oZ4#_X?<*A@d1tls7gpOi% zx3fTX=BbM^by1=&0`cxDBL#XyqDRWhDEWRacLWco@~siMHKHw|SUh|F(Vd4|yIVzX z%X6>4;PvOdS7h%M$$JHe;<@+tn?67H=$t0KQc#)wvbSII_5)#-{-N>n#=O@jdwr7E z_oMD(s6dA#I`pEg;~@O3_iI7w3Cf*Ahd1+WAIohYKbVAMWFZ-Q(TCCf!Sbs8_(Pb4 zZF$rLn_k=gui;D(KDXk4v!6(>VfDWaR{!j1-*xQ^ue8C*^Xn(iubw==db$Ss;bWqe zO{^ZQ(%0U5LRGJwSp9RMRS~RS*|qcdC4om(`YOEM)C|LCCYwYfcpQdmkrI9fuOll- yl0~9l`fu$eaYH(-6^RMy?d{0XNA~P@Kl!PAVc>`WS{j-v^*0u^{;e;~^?w6-N7UQ^ literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4f09bad8ba87dab081f7c044a45deb4eb40f99b0 GIT binary patch literal 2831 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 MC@@-dn5bF$ANk+qCjbBd literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/bar.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/bar.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5500822148f992ad82d3402e2beb813b15a31719 GIT binary patch literal 4594 zcmb^#?{5>yb=LNJ{bS=Fi5-#sx((kPrR92R`&quq&Trt%QVHA(d}F<@iuO_08jgL-g`6ey_q*}-i-a{mKG0!vWAY$|D8wZUxcU?)`fwDDF_$lr!c`aWO9Cin%C{Rop30%tLXf;!W`}p5mO+lJdoT6n829R3H{$ z&>RxoUof#Cv>s?%MQ^OlhE5=nzm3Ee$@9>T&|~g#%0MFmR3ji+&yr5`za@dU{_>Om{HQn>%vR|4|zNSlpo_c zZH!`s(&Qyc7?@Sk2|Y38q1406%iS|K3R+CCblW$0op}Jk7yKZ(8i0>)?i7e{#!T{JD6w+3N!U8T+ z_U5Fa6AM?bPN!Ar>Q%b1RN|(b%A^FUU`UvdW)l#enxLlzGHP>%NfO_}01f(|(O@4G zG#y`QvPb!iPHIxvCz{&(Hnq;oeLub6c-Xt-^*Nl*sABVcx2T^sILjWKN|vtAV5v2O zv&4m0W*tEdaRO#Bk|A% zSp>djfsu7w=W1Mpvi9toBWpHM)&X+0?1=Q1201qC{L1!*jk;zL!6C3uV`4O7+gwk? zg*$*{*kRi-IfH=7D((WzTsg5}uo}%b9JohPW~l@n+%T^0A&uCi$3PHX|2%q8ldu+5 z6M90C<%GVNO3%uYEZs;%&n+hB6F7Aar>{v#U5lQ)JQ7u;1Xkma1?SVym_5;<8 zs>m}@v*QOt!^2Tc)}{RmuY*noX3Sl!xfLqs;tN3OZ;)* z)TkXWMeQVjTc{dB;m(|6#r-VYkq;M`J6G;r0n+oVt$kI?Puw|n_ZX0_O1O)1!(D~& zI#&#jmcpau@F?Ns;Ijd`km1CVp22F8+yJ#gyg_4R6cD(}AV#j$`p_TYE(5wg-lFS~ z0kr*39PFH9ddUF`7+A6m3a^<+#J*(@A`IRMS~a3czyd(BbSy34&83^veljcq;1;U* zkFJV$<)Z&6)WX3BVV`Fb$~97|Gi$q6UvDGc9Lvjgkg8h*ynZIG)AN9bbuZYr3V7MR1bi6htnr%l zT|)O51~tlDtDlvJAo92-hRl)V{OG|t6V9n!R(fuZ_!&{;s2nQ%W{@p7sZHPH+X?1vdf;V69=*$Jye?+c&6bJUV<~e?9s^y zwo2AT<-A!p$a!^=A!}_8261?-MHono@Sr6!Kl=3u7iRc#% zPl6>-pXDk1zwRi>h-6b=x&TCcnB)bT_6#@V!#KSn8WJ76QxWa~U^o<6l?*%Fu4eiS z9iKe$lj->JGiS$7$0yHBPEAgKbiwd^aPiC;lWDY0PETy@w=0qwX`v?h{|g zurw>*j3?8n1x3=OxFpZb>zWa;_>kYAFQe*4o5e8)Sj^B&T3mcX*hjgWqCrYG2|7(} zhJ$n&PAxMFv(U&TV5M}kF;h$cQVb+putOiXkZM9^mTl%90BP-)a0vblpIhja3k5@! zuAa5M#jXRniIr2iQ|oi(cTZIKwlcrt8`d85e2W0&*s2Hdft9g*XszQP-rl0O_gQOa zzQ4f!VP8RiuvBUtDYuRkd8UuwEf+ptE19$aQ)*_&uG!L{l(6{!Vez}-#`3F|LSI` z|Im|NPa~!N@zTzT^3I8(tGm*vXM-0s3>-N3HeaFh}@0a-ZVMhMW{B+5`H|MB$yUCcb3Lp47^iFZlXgPGa#2?O0 zJP(HQ?3eb!#C`Vzcc~*%3hvE0U--hSvw8i?@kh@4ryrayOckceJ4Z_GBkPw+?MI$` z^fXrTohxUtfN-ju#csv&7?Lj?d2nT9Ls)2^n6OhZrOsOIFV zh8krcK{TZJ=8c%)@`eqd~$WE9PHbo*|Z@r?0fls2xs=at-!gP-BH=rQ?-*ea)`Fi-Qg+=bQLv& zX@+AxbTDbjU}&GaLsb^qDtZer{Y1Po9SIvweQ`ln=S=@o*VD%-@xK{O&0aUSYv%86 zO#YEDI4gGOJ{X*4{^-W_+>c2z#6tv-#D=2;(A}9N7aA literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/box.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/box.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9566f96666be8da1df68ca3f4cf49c816ed478d6 GIT binary patch literal 13036 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 GK>icJSHPM8 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/cells.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/cells.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8f94d8f46bf36a6f23c6bce2e44af1e26a617656 GIT binary patch literal 6666 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/color.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/color.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..70fba54c134dfe96b6b3afdbfefbec777f0fe870 GIT binary patch literal 27850 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/color_triplet.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/color_triplet.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6c0383a6c5de8a7008d06fa82d5d72fd9181d836 GIT binary patch literal 1920 zcmah}&2Jk;6rcUF9p}RkKn1C)Mrn(1W4y6LXd6WpkVZ`-5tSwp$bdE*@7P{g@0!_h zs7)d{QV!wfTZ&3ixRge{^grmoU?dLKo+5GL<|>?W;?1mUJ57P{`uEQHf^BbKn_5 zLRSWKwW~)gjYJEw71>oELFAL}gb3wg z<$*zj5>};dUh1un5T~BgdHgQGKH5TGL2p~ymbVp4+LA2!fx0CNR5(85bSw3XMZz$H z4T-fd3-^d^7tgP(V4u|-l0K0x2Fg_S-XS_v1Jx%^fkt5s8sjho;6oZ94DDo3U-Jp| zb=PF3W7{UHmA!&ZY_e(UcWU{PNy~Sr_YKK2Utjz@t2@M`u2HG6k_RI6=;=-3Zt9M` zp@)v?bS9(wHY4v>%>1`zk@$MWuIL7YSsvA?oiFKP`$l*B=}Ik7O5|SswL#+3U>W1P z%>Xn|CxXu7-(zp@DSKF*`9$LeMV>T$1bMDjc|AhlXNkS z*ViY&^j>CaDwUm1WoKrR6YJ~g-q5x9&J~vjH$%xWHc8)rp{Kaw2_m?<0?O&+gw&Mk!w5lgh7!`1_X`T} zCD(tQ_uNfF863J-9Jb3mTyQ)S3T1<^@1ctDlqjRj|IsL(k}t*BR5(Rfd=2bk#@`!W zd#nVdiCum(j$J2~pu9>4HqocJ2uDKb$ouGD`HlA{s-HWRl6}Von8Qy3KxV$g_IPvc z#~EjQcUOt>_C9bw&R|U(<$f| zu>covE3r&xhuE`4=f6)N5V;LE@b@%y##UmQT9Ir=qQpTwb7;4 XtG-TTLV{(_LUZ;xxBmSKm)P4sx`Og# literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/columns.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/columns.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3c91f4122b05106db3dffa73d3420a71c0d0fe49 GIT binary patch literal 10691 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

i-OCrTsK`Nm3e!sa{?hY9LUx z!^flk!Q`Xahg0#??4_uGUMUIbL$01v8$vXA^Zj_Roy;{PHq$_R^nff4MG>rL0nl$J zvkeLQ26~B#cf&R^o$m?dV7Y9$i_z|>2$NxADgHY^*`*dHngmC6)Imse4>AxUE@E6p znHe1shSf9WWDNN!S^$$B0{?qZ4T0mhIvTCLsBNQ>T6e1>wbtFXh5iQOxC>leoUZ*} XYsfEo@_}~mY-Jf6BfBKw6P95< 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/default_styles.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/default_styles.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d4ce38dc3d7947dee567748b4eeada5fdb411081 GIT binary patch literal 12647 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/diagnose.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/diagnose.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f2eddb8ffd1bbc9d70534c56d212bb016edb9236 GIT binary patch literal 1867 zcmZ`3Sx+QIxO%$g1a=g;J(v(pb~H?bi(yTWWQCE#xxxU3A)8J!T|lvYOsWeIGQ?3y z#AIKLyIGBp5Fb#3KgEY0GY^waHrd4Z;2Q~VJXzJvzz%2~UwvnNRp0kj{nFMJ0jwQ@ z@%2AM0RG}cqxmk8^DTxv11eAj4HUdpCI`wL{}&_ zjd+U#=aX}3Cp?i&W#?QpG?AKdDJPW4${yCrC30>qJ2m$p&1xi@T1aQ|jz2Y%N#>pC z>_TpdX>eti-_~Gw@;kG+B{}zCE}5B^b2F1p*J6GmJDHRhlXD+u^GP|Cotm1-Ock&4 z&0-K>^EEcl?=$cWU{D4RyZ3~$@Nx}pTv?QF?>NFjz? z+M(+vTRe%B*kZd&8eWk+!M()ruw-G121`ouk+Oy?sf0_C%+yqqNCX$xB^4`chH0Th zY3Cv`rs5(kntEw`x6jLBVoWoOie`-`u4QkrBU=LuRDc~B^~Ul1!N}A0C%r$6eAoY^ z|B8Liw7_o9^2)=cv4x3g=!libqC&8;qInOPVydCtNJ&#DFNlu@E`)(hJWL?7B>Y_v zUiyx|#H)+&ggD|Vri4FgC)6-=0@jX2ksgOm@ba5*LXCgI3A4D!Znzzhp%&je#u|B@ zZ^FI|Ua;gYBlurw{meiG{C%hMTl^STrk=x=gQ+U)sKE{!c07;1SB(zVqJx!bE|{*u z&Km5rVdoiaeKk;-IqL&0_gMgbU1Fdb8LdS|D-(6t@=f}y^wW2q#E%w_Cw^Q$T(*Zl zwcAtG_Ee2Qn6AOJ4bv|?J-hwh(dUO>RQrc&{X>lKMiq|K;E3HATbZhZt0ZxSLie%-9N zf#e6{5tn7s#gD@e>xTOxG^U&CriR9e#CZJeSVs(;iGm>1LAc`fI*3->{sO#hH;+1) zwf}3>!Ckv~)WN%U^EeB13m=?;W-tO^>%s1yVy`Xs)?uXb$(Pgn(-pU$i2(L7wtM`4 E0c0WGT>t<8 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..769e526f57b888a136fc741a97404e760124ebac GIT binary patch literal 4845 zcmaJETWlN0agTQ-j}%4fVLeFM@>xC#y2YeMTS`RD&G%8*RCe8sfNYwCCE@c7af`6s}LH z2X1>2XMUI^2(v`gh(Pi_-s*5$)Wd=>Uz^dH>r%UN-D-F4h7&_AH}-a+~?ctcBrb=rMEzN$A!>$uCLl?syk?!!vH;;X?y z>T%k+t2Bl;A@q2wEWWlApxdE3Q!8B;Z%asFBOr0O&eQyD9;=H7nr)Q>`VeLtZ@m98 zib%ypr+x1In^W4Qt5cV*UrSwaAdgX7alr{quPm=yl-%4Vp!VpwsHd^&N z)IGBV=SUT%a5Wpfse;1AC?BmW)?(UH^64B+q~ekzYZ~I3<^(k@SI}1s#6z0)@k-jL zQT&>w7c!dmkUYiNpO=!iOv=n;K5eCqY&LDJ=L+*#nx(7hg>AD5C$tkV2y(#U?4bP3~$GiQ<}=;xK?bmn$?fttzX>~c~AHod@- zESp(O@;xM$*I6$tgM&UmOl*}JPeoGfdSyrJj4i5zIKs^xc z{p-)au6=(K_pl?-!@2>$z(Ss;n1UTA5Da6lk5Oxd@OcYLCSjUSyd#^cNf zztbEN}(2nV0=9uDV#f@T&DABhzX`*6_gYlWYa=s(pi%pT1w6NCzNaR;Pdru z=ml!#M=gb}Wlif~Q5zkN5Rpk62Gy06L*ju$ro!;Z7{+TyzE0Pt7%MRDhK~H+H_?)TGAzq2VT;6>5nc<03RIo6lOBwh`u*ov61Jpqjr0P$Jbq(i7d3?glD7 zG57>4eS`1`RXt+h_3xsC+t$v&=HSi?P=>Bj!zd^dW-e>c^@$Th2L?XFBf}xX0&x?{4@h-|Dz&T6bms$?fs5p@53n}S z4_t0y#xS`SP1IuDF#I(U8||)L)S7Pqi;0(AiTvjX=@{JB_aejP$gnLB^EjVr()Phg z^uqv14IzLn0p^x3Ji6yg5%0*2)|gNvva4A{f)K3xQGod}05mn=0j zTNHMi?Y%AmH`0*UYUiy1_dRk?zyx)cu(L2YE-{SMZb%70i?Z1vg&jI)cJYYIL66xL2KVRA%{dQ>l(a`uem;W@q zH}qC{=&il*+vV`vw%k&=KH(M}0ST$N&s`2`m9NRw=u6l{wZ=ObW+V)aj^Wkk1mL8M zf@Q*Ln}e!ueIydC)o)Y8>zkc^zHoJ>>$ecm^!1i*f{v+Bi$ zk972G&2GQ6rIsT~)sI~=>56TiE_aT)>_HL?SKI0X`DhosMtq%BPry5}Jzgd7*>yi0 z=irG59Ctq8Jk?&oJGMOxG21(K82AKlY`YtKV~2rH^iB$uKBX#h4Up*HlHaw6a@MDBH=t;cFLr-%Ud>**4 zK=X8MnO$T*g}GFC&5HnBJGSLpPRXZWqj z@a<~zS!P=C5irbk)A3pB%WzdN^fYdp+*BR^lKTt9Fu`*Cruzfry6y>NMO%iS1|CVl zBjIjwQ-u)kUxl9q_@RQ^e!jpW*mVq2`$R3ZPq=exaAnav@|jIO)(BV(ckTqH)-sf5 zNbWBHH+%Frr@vVu27rXSKa)-V7}@>*@|gu@QQeVlQ&0fJO>P8^cNy+X%MlHlcce61 zSakwsdX;L6R?ax&e9z?z?vK+&_CCyovC@16q9i05f>0sB5`QY>jQ!(vpPaB;YlR%O zTWf{%+pV=ij@zxZLQdMPbzk(A#qO=uN8&MCJXVng?HB64bk=UI5CEi3@H*kGigeNb z@rr?>Z|mpf$Y?24^$EfW9CH|KW}jg1_Xi|-TtFxNVYvCu6HfWQnQjO~3Tl ztw`b0G(P*%t9EOxv^IgdAMV*)*q*b)Lwn(&a(Jk8h4)mrGd%FYv+-c%>y3xSuZw$Q z7s_K7z^nG;TV?rHr6&sEB;tEQ0DO<2bOmCjH}uOJzqqkAx+lfTQp}cO6@Rc~ZjRqQ z|JkQ^KHd8Gk-y*e_gCb|w{rB69Niw?8QVRxb81h1xh%hI*K74Sfx%+5dX&gf;OB1n EKlJ^N(EtDd literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/errors.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/errors.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6360880ee0b5d0a8d5b378dfa326c5ec5ccaffbc GIT binary patch literal 2376 zcmb7F&yU+g7#%y_Zj#Mzw_AQRrMq&=Zo4a$ScMY^RjN=02O26?2x%|YtUYZ^9owC8 zLbKukhzqye%7HVe;-AS8?UjFE(Q@jE@69-c+R4F_@$-1z^Z5Dm_f39ZUvD#Nzp}f7 zA8p3|!o|F;6oYfyV(dAy*{3XIKe5mf?6(GEf6!stk)=7CxJHGuHRlkwBCOJV4b5F3 zZdKSN&e2?xxK`!970tDYTdQyvG}j?+y~3?(ZiBds6|SkdP2w(9xK_Az$PO+C^B2aM zVxrsm7M-3m!H%qu9oeCE)Cg@-H%>dBq=`ynabL<*p6uL9T!E1rC2n9CH_e3Pd6Xu- z{tM@{>H7&E3g16%`~ENuM={17-+wydalx$mewYTn|AL+4@h^YyzEVOeFX1_lqlo8| zVfrW%kr;FD;UpMvIeaM7Z$ywQ@3XJp_hP|i;%Ae5kkZL8UT-Xtu@^_jo*_Qy-MQnb zC>QT#Jb1z%3*}`|=J_NGQ|ZYl7rrK04qHg>YnPhB+%2Cfd= z5>Loy30Pm`>B`J0y72^IO-~n1+;U1S6SlWa*c4{mNKt`|DVLYU><#z>Tw3Js`phZ1 z@dsf|e_Q=D|B^DDO7nQ0cHJ+IQA2Q-q`50!(My7ebd!KL7nyu_<`mtSgs`T`wFg{2 z8D%Db@0g1kiFXD50Nq9Y_GV7ejXwx$`fGh2jpsX`Hc2syIaPw2r!F`*j8qo$$&vtG zg+ahJ1|5JdZA{g)ver-U#ra_%g-A}eY3M3Fc4>$VLFXcA?yXvY<%02W1(i-$A(tWkHd$3uPIm zA3@oLvY<$L1IjW?V<>MxSx}_hg|ZC4T!V5K%7P;0O(@GSy$$6}C<}^|i=)(mvJ|C# QtXT%L=04UeQ~IO-3%48c2mk;8 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/file_proxy.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/file_proxy.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e824867190b9990b0c3594084d5835ef02fdc974 GIT binary patch literal 4080 zcmai1Z)_9E6`%cUJGNsdF(D-6SkB>yuhcGoDvHWQ

r+EJrKZzT(}v|80Qnp8vHMTUcdDTY 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 V3ICT{y}xPoeYq|0n}`SS{{WfaCs)&PbxdhjwO^ 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/prompt.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/prompt.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1137f17b65dab460cc7a615b8749fbd8e36a2718 GIT binary patch literal 16425 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 Ju=8{3{|A}_LD~QS literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/protocol.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/protocol.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d84b6644a27888c119d984a09eb8730ba9ca6fc4 GIT binary patch literal 2143 zcmah~-D}%c6u+`$MV8_ujoY+jU8l9nRy&Qg=7W{2l(iwWWl&1eG3L<;MY@UQ$db7C zCdI*l!ba(11|7}A1{rK!OCS0)*q>n!j~PLrF#51JL+MMOcCPHSw%NMN_5C{c9G&|+ z=Xd-|I;|pT-=hn~Ac@dld~?vG&f@u3u(*#Lu#w<$T_~QDaxo~B1;nSkz@@flQTj-ThL*7JU}CL!_(mnf(Uj#D zZ(-t=rf24+XJ)+;b^LHr#uu{S{i)4b?2Jvm7 z^J+eE1Vs2f_h7h>SeLAdSON|^?E$PGzuJfIFu?MlRROm?`EZ{+(JKc$#I4B%?w#(g z>Xxs!ebmcVMPI=>iJy%feWju=xppxhDW*waVVcoMXJrRI4Lod`Sus*w>iU#fzKtW1 zG7=3GEow1FvI5b-P0HV;zx>+xjAB9!-(r^Mx)!UHgH;#1c+)bjSL~ui%GXK2!J@{M z&!-I!Tf{fR3M&RMwIxP=6Z@Nn=dKuS!A$<_S%bO^PlcAfZmnTzgl=e zmj!m<<-a;3)0Ja~$N+WuwSDVFTY+vrPGtANlR`_>%?JOfU z+%4_*Vp~k0s@Uf_Vu!kQdM$2CRjHcTL`3jstBJj?H+1Ppy*hx?o3R*v6BbYIup?cz z1$bi*selyH)*lN{7`h0-0^RD+fu{>6gl&1A>#yktjNl9k38vU*c~#Y+T_kICK3?(N z>y*$>w`rE0*DvZ}z(B(VW0meJ?Hg@7OL4*IGSwE&>opstQH*uj^sNW$#ah6JA5WQ5DXW}M)W#CTy8Eyp3em}Qe>jH|^~M&gpO3B`e7#{`p+#_O(G#=vMN8h(w8$*oXc z(>P)}$?&hHVs)-TPQsp_(WfxnMy*klJXe!G>h8}@PW(9W(?m@=yssYG$?cZvYPO+f zTPT&x|N6mix%%{CV|p>(a{A8yuvOP`4K3F~Lh8N!%+X!7o;lUXoT?3;+8=v+xAZVq zADe58&E3_SNA#U9zrA_y=3RAv{KW27eLU9~&)pqvYU8yN`I^RibMR18IrgV={CDN} zu31;68p>2nnR<~y@U1sG^I{AQj_eHWsda6#p-tALNy5|gT6QRs0TswJ!v7&+bO}d@ z$S}aalutvblyQK_F@DZ5C*xcwtptG=m$pc5=S+;?BNUsC(S50$F9*(shcA%Rpu#H# zeFQ^G6a=A(KCJy;Z=$zqz5S^;0$>W~n!SO6AU#cga$9Z5vLNq?Ed8MY{1`+O>tV;Qb|{r*$&^+tO2;XmB$jt6J)f{- ztu!g+X=tWhA$7G+DU&kQOq(`2rC-p}Zt;3X&T>#Wkxa8h2&Rj1IuamY%E)OE#!QV* zRr=bjG$&7AJ|GD&C23aZI5nYGNOuZyN)qvk)WXB=;UUR|hWi-{->?XBl8KB^Q^r$8 zln7%|Z@8Nk%3k5hc?R-F#+83ObMNTNJNnjamA$ez>&>@t<7U|}`?LOhcfTBzgP9rS zK;7E>Y}j!tUl*B>k+Sz#w>hx1s=00Gdgr)4yc2cDq}YsnVBEsR7|+q&tH0lc@8g37 R`qzC7e%jez|B+VBegjMPzBd2> literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..34796e5bfbbaa45cb3068675ce7a98e6c7431b3f GIT binary patch literal 7673 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 QF(KzpBEAijLM_RE0=Ex?7ytkO literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/rule.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/rule.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..90e93bd9b9844e839a21e74c2a03ae019d03453e GIT binary patch literal 7212 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 J0^juy_kXf0YJUI# literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/screen.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/screen.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5c492cf23f73943c23452dbe1cd0b7037a260598 GIT binary patch literal 2821 zcmbtWU2NRO5nl56chud9vg}AYyAsvNs!xsX>KKX9B(RZ6iqi&=jo3-hLtBDAu5?s+ zB)g=X%AtS+Fp3Lc6fV%fLSP_z2;3C*Lm&F!#}r84Pl4JT2ox~Tm*$OuQlQ9FXUMzL zDM_EYBxiTHGqbZZ^DX&@Vo@c~?vV@4^AaKdM5f<_-ryjF!Chhzi*rbet8*>B&U3`# zt(=o<33VYI3y#>5>QXuu9l52{6^>Azl|W8%@-4NlwnpkBtwO!fD%OjwQoY0xo?If9 ze2ZAheV&j9@MNt%YUQtziuyUS6+Tuj`=RZ*rV|&h{q)L;vGnrF(knk+z4SSU^IR-n zrRy!~hA_-u4YwS6ZOf;~IG*Pljv0g%F_xD+H}D)9mwJQDXb=}(rLINUt2Eej!nl-i z=Jm`XYo|9axcJ)C0L>*-Qz78VxUlw zN>e>Wn9EbyQY~Rku|{r5btO*@FYA~!c1x(|EdgRM9!pmnj8gaJ-(S>O>L|LVhfOoo z*KEfLUrQ#8LsKfz+XkATI>eSv!2g#!&!m1tJj4i2l_(wbug5f|_fFreoV?xYhF3 zY--aRX6?#WqiM3%73OWwMi|sye&gwyLrvxy{#Mw82>IDetqMNfs5$oaS~hX6diHEB zutU1&Lsran8q~n`TF>6~aL(BYp#3WbJ2=lkMEL5Rr|3@(C+P-0mQ;eM#(xrS60LgMp3< z7~U2mes_57fohbCgooVGQ)*j+RR$$85Y1M>jHb5}p_^B$AKXSSCLo zPotaPRwH!8g& zJNMzjp0>EJEq1iUkB_&-?v(z)^!w8v(MK=sOz%xC?N2SWOI>Z^Gi~luZLV9;ZeQ*c zW_Q@`g-0hoUQTjk?DQ9eA5*_X(iZbz^Y5zDsk%+)2s>tP6tw8XQ3hz9=lq?i~=!r*XCKe*W!DhtCyev^EG M@4oz&iFDil1y{VUfdBvi literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/segment.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/segment.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fad80daa873d3f34e22cd8cc4db2791a91d09918 GIT binary patch literal 31651 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/style.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/style.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f3f6863075480168f615d3b5809b266434e2d286 GIT binary patch literal 35245 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 GSN*^4`E=0$ literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/styled.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/styled.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a2d21f0487c4aa55357d25d962546737fb496c3f GIT binary patch literal 2486 zcmah~&2JM&6rc5e_&at!AP^#9%BN{#3knjYRZ4&~RHY^&R8{w~+IWU!!>;YlZm1j? zHAozM;6T+%L8wwWR1`!j_0R)&oCEg7HxLm}jM6gG$2Wj5A;Ss|2A$tI4ZOA?_GD%%l9)@8vfw&JL|DtOh_ zoTwg^2$OgU)@gRkiR*DEp(mWAo^(=rN+J<5MQHRMp|K|sLY~7D3_Z>IX#AFtc>&&- zurp3p&w^({lXkx|pby|~mWF45rk+T!8=hd$^bT)>uqw+2!>hno-;8+jnOC?mFZt;k zpG{91m#$1+`sl;b)GPD|+T_Q~bQd{uSj7V|I>Y9=Y<$M6+w4ZY#`20Ey;QBZRh#*J zUFKTNvq0siuCoed{5o?NZO`uuBy%>{SPo(isMZxWE&{Vc7||t4^az!7nPzG1o}w#p zvUSmZ+6Ow7#%Y2kX^Lu0yQ$F(=%O?_L-GT@CL*LuKTXtXc0Fh2T#Pv9Re|LqEDWTO zNaSEl@HzLq;85B!=T3xU&Y#asRO;In6ndKi_b0Y+fu-Bt83a-0RoBgV^DGC5TAc0j znYLw_UfrqQw3x+io5ksRdEVsCG_NkO zvga1Be0sWQGm}@0THTwk!W3AFh1;xhyJ%ap#lY}(;nb<3Yk6#}W|nW6bIdK)tXk24 zWwgqR+$zr(#TU~;t?tJR!>U-GVJu|?u(YtL7=$3*At1}7J#wU}+|RW4jKGv=!nFZ< z;z!FtS@M{WszFimI7l3uK7=Clet_a5U=YQ}Fz+4>vd}{_+*NmE*n_#)HDFIKUyVq( zL+>aa#?u`OnYl*|DbD9zFbB=~3zFnIGSOF||5+d2RG^E4Kf)!I8DWW3A)o zUL0K=ys$QSp&4suhMO6_7kq`1g)oVdKL^YT@p>sC+tLG#0L8!1OUV=1@w}IaO(b~}Ht|R08=DT8Ej}LcLkUJzyva)(n5{m_ctC3lc4|P;zI^@4-5HCiFAMcn}#W3LK zq}I44{!;3+Sz)%X&NJJtE=8-A+^oIGO8FsQ^XfILGRLt9{Af2*LH?uNy60H-+tRQF zfA823$8rGGVRV#*^Q+K3zY5q1Jdf(VJJp36#>G#fQ4RRx_%f_+0srgRdqD!n`DxH$ zQM+lN9a)m3Hp#WZ_j*_aYnzO=!uM{?x}5D0NxCMrl~U{f?v6GrVLJYu{wef-ZMU8w zN~*c^Qr_Q^_qUZ}t?=De-fD&K_0&M~g9m3HoP9X_)%Z8#kKb8Mjjg4|mM7ave0j2Y U^zPMrSC_@rNfKoQyb8Gf0qb{J?f?J) literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/syntax.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/syntax.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d53b8cbaddb8f9f4e755f1a35835ed3c7cb97e88 GIT binary patch literal 42696 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/table.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/table.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..66d770743c9b40f5273b7a5c7a36e7443b0fcab3 GIT binary patch literal 48847 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 Co^0v> literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/text.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/text.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..571cfeec9da13e539eb9d14b3c3030075aa91284 GIT binary patch literal 65004 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 WcRIi5eH%!tF(t{}T60uP5dH_$zkDYE literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9826f31f1d813c0ac6eb0f32331f179f71e0e6da GIT binary patch literal 7351 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 HmTB<|u)uGo literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/traceback.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/traceback.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4a318c47cf7a2febbbaf3a61f5f8482fbaa08c85 GIT binary patch literal 34614 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 m9ZP*`>1N8w#Q4&M| literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/_cell_widths.py b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/_cell_widths.py new file mode 100644 index 0000000..36286df --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/_cell_widths.py @@ -0,0 +1,451 @@ +# Auto generated by make_terminal_widths.py + +CELL_WIDTHS = [ + (0, 0, 0), + (1, 31, -1), + (127, 159, -1), + (768, 879, 0), + (1155, 1161, 0), + (1425, 1469, 0), + (1471, 1471, 0), + (1473, 1474, 0), + (1476, 1477, 0), + (1479, 1479, 0), + (1552, 1562, 0), + (1611, 1631, 0), + (1648, 1648, 0), + (1750, 1756, 0), + (1759, 1764, 0), + (1767, 1768, 0), + (1770, 1773, 0), + (1809, 1809, 0), + (1840, 1866, 0), + (1958, 1968, 0), + (2027, 2035, 0), + (2045, 2045, 0), + (2070, 2073, 0), + (2075, 2083, 0), + (2085, 2087, 0), + (2089, 2093, 0), + (2137, 2139, 0), + (2259, 2273, 0), + (2275, 2306, 0), + (2362, 2362, 0), + (2364, 2364, 0), + (2369, 2376, 0), + (2381, 2381, 0), + (2385, 2391, 0), + (2402, 2403, 0), + (2433, 2433, 0), + (2492, 2492, 0), + (2497, 2500, 0), + (2509, 2509, 0), + (2530, 2531, 0), + (2558, 2558, 0), + (2561, 2562, 0), + (2620, 2620, 0), + (2625, 2626, 0), + (2631, 2632, 0), + (2635, 2637, 0), + (2641, 2641, 0), + (2672, 2673, 0), + (2677, 2677, 0), + (2689, 2690, 0), + (2748, 2748, 0), + (2753, 2757, 0), + (2759, 2760, 0), + (2765, 2765, 0), + (2786, 2787, 0), + (2810, 2815, 0), + (2817, 2817, 0), + (2876, 2876, 0), + (2879, 2879, 0), + (2881, 2884, 0), + (2893, 2893, 0), + (2901, 2902, 0), + (2914, 2915, 0), + (2946, 2946, 0), + (3008, 3008, 0), + (3021, 3021, 0), + (3072, 3072, 0), + (3076, 3076, 0), + (3134, 3136, 0), + (3142, 3144, 0), + (3146, 3149, 0), + (3157, 3158, 0), + (3170, 3171, 0), + (3201, 3201, 0), + (3260, 3260, 0), + (3263, 3263, 0), + (3270, 3270, 0), + (3276, 3277, 0), + (3298, 3299, 0), + (3328, 3329, 0), + (3387, 3388, 0), + (3393, 3396, 0), + (3405, 3405, 0), + (3426, 3427, 0), + (3457, 3457, 0), + (3530, 3530, 0), + (3538, 3540, 0), + (3542, 3542, 0), + (3633, 3633, 0), + (3636, 3642, 0), + (3655, 3662, 0), + (3761, 3761, 0), + (3764, 3772, 0), + (3784, 3789, 0), + (3864, 3865, 0), + (3893, 3893, 0), + (3895, 3895, 0), + (3897, 3897, 0), + (3953, 3966, 0), + (3968, 3972, 0), + (3974, 3975, 0), + (3981, 3991, 0), + (3993, 4028, 0), + (4038, 4038, 0), + (4141, 4144, 0), + (4146, 4151, 0), + (4153, 4154, 0), + (4157, 4158, 0), + (4184, 4185, 0), + (4190, 4192, 0), + (4209, 4212, 0), + (4226, 4226, 0), + (4229, 4230, 0), + (4237, 4237, 0), + (4253, 4253, 0), + (4352, 4447, 2), + (4957, 4959, 0), + (5906, 5908, 0), + (5938, 5940, 0), + (5970, 5971, 0), + (6002, 6003, 0), + (6068, 6069, 0), + (6071, 6077, 0), + (6086, 6086, 0), + (6089, 6099, 0), + (6109, 6109, 0), + (6155, 6157, 0), + (6277, 6278, 0), + (6313, 6313, 0), + (6432, 6434, 0), + (6439, 6440, 0), + (6450, 6450, 0), + (6457, 6459, 0), + (6679, 6680, 0), + (6683, 6683, 0), + (6742, 6742, 0), + (6744, 6750, 0), + (6752, 6752, 0), + (6754, 6754, 0), + (6757, 6764, 0), + (6771, 6780, 0), + (6783, 6783, 0), + (6832, 6848, 0), + (6912, 6915, 0), + (6964, 6964, 0), + (6966, 6970, 0), + (6972, 6972, 0), + (6978, 6978, 0), + (7019, 7027, 0), + (7040, 7041, 0), + (7074, 7077, 0), + (7080, 7081, 0), + (7083, 7085, 0), + (7142, 7142, 0), + (7144, 7145, 0), + (7149, 7149, 0), + (7151, 7153, 0), + (7212, 7219, 0), + (7222, 7223, 0), + (7376, 7378, 0), + (7380, 7392, 0), + (7394, 7400, 0), + (7405, 7405, 0), + (7412, 7412, 0), + (7416, 7417, 0), + (7616, 7673, 0), + (7675, 7679, 0), + (8203, 8207, 0), + (8232, 8238, 0), + (8288, 8291, 0), + (8400, 8432, 0), + (8986, 8987, 2), + (9001, 9002, 2), + (9193, 9196, 2), + (9200, 9200, 2), + (9203, 9203, 2), + (9725, 9726, 2), + (9748, 9749, 2), + (9800, 9811, 2), + (9855, 9855, 2), + (9875, 9875, 2), + (9889, 9889, 2), + (9898, 9899, 2), + (9917, 9918, 2), + (9924, 9925, 2), + (9934, 9934, 2), + (9940, 9940, 2), + (9962, 9962, 2), + (9970, 9971, 2), + (9973, 9973, 2), + (9978, 9978, 2), + (9981, 9981, 2), + (9989, 9989, 2), + (9994, 9995, 2), + (10024, 10024, 2), + (10060, 10060, 2), + (10062, 10062, 2), + (10067, 10069, 2), + (10071, 10071, 2), + (10133, 10135, 2), + (10160, 10160, 2), + (10175, 10175, 2), + (11035, 11036, 2), + (11088, 11088, 2), + (11093, 11093, 2), + (11503, 11505, 0), + (11647, 11647, 0), + (11744, 11775, 0), + (11904, 11929, 2), + (11931, 12019, 2), + (12032, 12245, 2), + (12272, 12283, 2), + (12288, 12329, 2), + (12330, 12333, 0), + (12334, 12350, 2), + (12353, 12438, 2), + (12441, 12442, 0), + (12443, 12543, 2), + (12549, 12591, 2), + (12593, 12686, 2), + (12688, 12771, 2), + (12784, 12830, 2), + (12832, 12871, 2), + (12880, 19903, 2), + (19968, 42124, 2), + (42128, 42182, 2), + (42607, 42610, 0), + (42612, 42621, 0), + (42654, 42655, 0), + (42736, 42737, 0), + (43010, 43010, 0), + (43014, 43014, 0), + (43019, 43019, 0), + (43045, 43046, 0), + (43052, 43052, 0), + (43204, 43205, 0), + (43232, 43249, 0), + (43263, 43263, 0), + (43302, 43309, 0), + (43335, 43345, 0), + (43360, 43388, 2), + (43392, 43394, 0), + (43443, 43443, 0), + (43446, 43449, 0), + (43452, 43453, 0), + (43493, 43493, 0), + (43561, 43566, 0), + (43569, 43570, 0), + (43573, 43574, 0), + (43587, 43587, 0), + (43596, 43596, 0), + (43644, 43644, 0), + (43696, 43696, 0), + (43698, 43700, 0), + (43703, 43704, 0), + (43710, 43711, 0), + (43713, 43713, 0), + (43756, 43757, 0), + (43766, 43766, 0), + (44005, 44005, 0), + (44008, 44008, 0), + (44013, 44013, 0), + (44032, 55203, 2), + (63744, 64255, 2), + (64286, 64286, 0), + (65024, 65039, 0), + (65040, 65049, 2), + (65056, 65071, 0), + (65072, 65106, 2), + (65108, 65126, 2), + (65128, 65131, 2), + (65281, 65376, 2), + (65504, 65510, 2), + (66045, 66045, 0), + (66272, 66272, 0), + (66422, 66426, 0), + (68097, 68099, 0), + (68101, 68102, 0), + (68108, 68111, 0), + (68152, 68154, 0), + (68159, 68159, 0), + (68325, 68326, 0), + (68900, 68903, 0), + (69291, 69292, 0), + (69446, 69456, 0), + (69633, 69633, 0), + (69688, 69702, 0), + (69759, 69761, 0), + (69811, 69814, 0), + (69817, 69818, 0), + (69888, 69890, 0), + (69927, 69931, 0), + (69933, 69940, 0), + (70003, 70003, 0), + (70016, 70017, 0), + (70070, 70078, 0), + (70089, 70092, 0), + (70095, 70095, 0), + (70191, 70193, 0), + (70196, 70196, 0), + (70198, 70199, 0), + (70206, 70206, 0), + (70367, 70367, 0), + (70371, 70378, 0), + (70400, 70401, 0), + (70459, 70460, 0), + (70464, 70464, 0), + (70502, 70508, 0), + (70512, 70516, 0), + (70712, 70719, 0), + (70722, 70724, 0), + (70726, 70726, 0), + (70750, 70750, 0), + (70835, 70840, 0), + (70842, 70842, 0), + (70847, 70848, 0), + (70850, 70851, 0), + (71090, 71093, 0), + (71100, 71101, 0), + (71103, 71104, 0), + (71132, 71133, 0), + (71219, 71226, 0), + (71229, 71229, 0), + (71231, 71232, 0), + (71339, 71339, 0), + (71341, 71341, 0), + (71344, 71349, 0), + (71351, 71351, 0), + (71453, 71455, 0), + (71458, 71461, 0), + (71463, 71467, 0), + (71727, 71735, 0), + (71737, 71738, 0), + (71995, 71996, 0), + (71998, 71998, 0), + (72003, 72003, 0), + (72148, 72151, 0), + (72154, 72155, 0), + (72160, 72160, 0), + (72193, 72202, 0), + (72243, 72248, 0), + (72251, 72254, 0), + (72263, 72263, 0), + (72273, 72278, 0), + (72281, 72283, 0), + (72330, 72342, 0), + (72344, 72345, 0), + (72752, 72758, 0), + (72760, 72765, 0), + (72767, 72767, 0), + (72850, 72871, 0), + (72874, 72880, 0), + (72882, 72883, 0), + (72885, 72886, 0), + (73009, 73014, 0), + (73018, 73018, 0), + (73020, 73021, 0), + (73023, 73029, 0), + (73031, 73031, 0), + (73104, 73105, 0), + (73109, 73109, 0), + (73111, 73111, 0), + (73459, 73460, 0), + (92912, 92916, 0), + (92976, 92982, 0), + (94031, 94031, 0), + (94095, 94098, 0), + (94176, 94179, 2), + (94180, 94180, 0), + (94192, 94193, 2), + (94208, 100343, 2), + (100352, 101589, 2), + (101632, 101640, 2), + (110592, 110878, 2), + (110928, 110930, 2), + (110948, 110951, 2), + (110960, 111355, 2), + (113821, 113822, 0), + (119143, 119145, 0), + (119163, 119170, 0), + (119173, 119179, 0), + (119210, 119213, 0), + (119362, 119364, 0), + (121344, 121398, 0), + (121403, 121452, 0), + (121461, 121461, 0), + (121476, 121476, 0), + (121499, 121503, 0), + (121505, 121519, 0), + (122880, 122886, 0), + (122888, 122904, 0), + (122907, 122913, 0), + (122915, 122916, 0), + (122918, 122922, 0), + (123184, 123190, 0), + (123628, 123631, 0), + (125136, 125142, 0), + (125252, 125258, 0), + (126980, 126980, 2), + (127183, 127183, 2), + (127374, 127374, 2), + (127377, 127386, 2), + (127488, 127490, 2), + (127504, 127547, 2), + (127552, 127560, 2), + (127568, 127569, 2), + (127584, 127589, 2), + (127744, 127776, 2), + (127789, 127797, 2), + (127799, 127868, 2), + (127870, 127891, 2), + (127904, 127946, 2), + (127951, 127955, 2), + (127968, 127984, 2), + (127988, 127988, 2), + (127992, 128062, 2), + (128064, 128064, 2), + (128066, 128252, 2), + (128255, 128317, 2), + (128331, 128334, 2), + (128336, 128359, 2), + (128378, 128378, 2), + (128405, 128406, 2), + (128420, 128420, 2), + (128507, 128591, 2), + (128640, 128709, 2), + (128716, 128716, 2), + (128720, 128722, 2), + (128725, 128727, 2), + (128747, 128748, 2), + (128756, 128764, 2), + (128992, 129003, 2), + (129292, 129338, 2), + (129340, 129349, 2), + (129351, 129400, 2), + (129402, 129483, 2), + (129485, 129535, 2), + (129648, 129652, 2), + (129656, 129658, 2), + (129664, 129670, 2), + (129680, 129704, 2), + (129712, 129718, 2), + (129728, 129730, 2), + (129744, 129750, 2), + (131072, 196605, 2), + (196608, 262141, 2), + (917760, 917999, 0), +] diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/_emoji_codes.py b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/_emoji_codes.py new file mode 100644 index 0000000..1f2877b --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/_emoji_codes.py @@ -0,0 +1,3610 @@ +EMOJI = { + "1st_place_medal": "🥇", + "2nd_place_medal": "🥈", + "3rd_place_medal": "🥉", + "ab_button_(blood_type)": "🆎", + "atm_sign": "🏧", + "a_button_(blood_type)": "🅰", + "afghanistan": "🇦🇫", + "albania": "🇦🇱", + "algeria": "🇩🇿", + "american_samoa": "🇦🇸", + "andorra": "🇦🇩", + "angola": "🇦🇴", + "anguilla": "🇦🇮", + "antarctica": "🇦🇶", + "antigua_&_barbuda": "🇦🇬", + "aquarius": "♒", + "argentina": "🇦🇷", + "aries": "♈", + "armenia": "🇦🇲", + "aruba": "🇦🇼", + "ascension_island": "🇦🇨", + "australia": "🇦🇺", + "austria": "🇦🇹", + "azerbaijan": "🇦🇿", + "back_arrow": "🔙", + "b_button_(blood_type)": "🅱", + "bahamas": "🇧🇸", + "bahrain": "🇧🇭", + "bangladesh": "🇧🇩", + "barbados": "🇧🇧", + "belarus": "🇧🇾", + "belgium": "🇧🇪", + "belize": "🇧🇿", + "benin": "🇧🇯", + "bermuda": "🇧🇲", + "bhutan": "🇧🇹", + "bolivia": "🇧🇴", + "bosnia_&_herzegovina": "🇧🇦", + "botswana": "🇧🇼", + "bouvet_island": "🇧🇻", + "brazil": "🇧🇷", + "british_indian_ocean_territory": "🇮🇴", + "british_virgin_islands": "🇻🇬", + "brunei": "🇧🇳", + "bulgaria": "🇧🇬", + "burkina_faso": "🇧🇫", + "burundi": "🇧🇮", + "cl_button": "🆑", + "cool_button": "🆒", + "cambodia": "🇰🇭", + "cameroon": "🇨🇲", + "canada": "🇨🇦", + "canary_islands": "🇮🇨", + "cancer": "♋", + "cape_verde": "🇨🇻", + "capricorn": "♑", + "caribbean_netherlands": "🇧🇶", + "cayman_islands": "🇰🇾", + "central_african_republic": "🇨🇫", + "ceuta_&_melilla": "🇪🇦", + "chad": "🇹🇩", + "chile": "🇨🇱", + "china": "🇨🇳", + "christmas_island": "🇨🇽", + "christmas_tree": "🎄", + "clipperton_island": "🇨🇵", + "cocos_(keeling)_islands": "🇨🇨", + "colombia": "🇨🇴", + "comoros": "🇰🇲", + "congo_-_brazzaville": "🇨🇬", + "congo_-_kinshasa": "🇨🇩", + "cook_islands": "🇨🇰", + "costa_rica": "🇨🇷", + "croatia": "🇭🇷", + "cuba": "🇨🇺", + "curaçao": "🇨🇼", + "cyprus": "🇨🇾", + "czechia": "🇨🇿", + "côte_d’ivoire": "🇨🇮", + "denmark": "🇩🇰", + "diego_garcia": "🇩🇬", + "djibouti": "🇩🇯", + "dominica": "🇩🇲", + "dominican_republic": "🇩🇴", + "end_arrow": "🔚", + "ecuador": "🇪🇨", + "egypt": "🇪🇬", + "el_salvador": "🇸🇻", + "england": "🏴\U000e0067\U000e0062\U000e0065\U000e006e\U000e0067\U000e007f", + "equatorial_guinea": "🇬🇶", + "eritrea": "🇪🇷", + "estonia": "🇪🇪", + "ethiopia": "🇪🇹", + "european_union": "🇪🇺", + "free_button": "🆓", + "falkland_islands": "🇫🇰", + "faroe_islands": "🇫🇴", + "fiji": "🇫🇯", + "finland": "🇫🇮", + "france": "🇫🇷", + "french_guiana": "🇬🇫", + "french_polynesia": "🇵🇫", + "french_southern_territories": "🇹🇫", + "gabon": "🇬🇦", + "gambia": "🇬🇲", + "gemini": "♊", + "georgia": "🇬🇪", + "germany": "🇩🇪", + "ghana": "🇬🇭", + "gibraltar": "🇬🇮", + "greece": "🇬🇷", + "greenland": "🇬🇱", + "grenada": "🇬🇩", + "guadeloupe": "🇬🇵", + "guam": "🇬🇺", + "guatemala": "🇬🇹", + "guernsey": "🇬🇬", + "guinea": "🇬🇳", + "guinea-bissau": "🇬🇼", + "guyana": "🇬🇾", + "haiti": "🇭🇹", + "heard_&_mcdonald_islands": "🇭🇲", + "honduras": "🇭🇳", + "hong_kong_sar_china": "🇭🇰", + "hungary": "🇭🇺", + "id_button": "🆔", + "iceland": "🇮🇸", + "india": "🇮🇳", + "indonesia": "🇮🇩", + "iran": "🇮🇷", + "iraq": "🇮🇶", + "ireland": "🇮🇪", + "isle_of_man": "🇮🇲", + "israel": "🇮🇱", + "italy": "🇮🇹", + "jamaica": "🇯🇲", + "japan": "🗾", + "japanese_acceptable_button": "🉑", + "japanese_application_button": "🈸", + "japanese_bargain_button": "🉐", + "japanese_castle": "🏯", + "japanese_congratulations_button": "㊗", + "japanese_discount_button": "🈹", + "japanese_dolls": "🎎", + "japanese_free_of_charge_button": "🈚", + "japanese_here_button": "🈁", + "japanese_monthly_amount_button": "🈷", + "japanese_no_vacancy_button": "🈵", + "japanese_not_free_of_charge_button": "🈶", + "japanese_open_for_business_button": "🈺", + "japanese_passing_grade_button": "🈴", + "japanese_post_office": "🏣", + "japanese_prohibited_button": "🈲", + "japanese_reserved_button": "🈯", + "japanese_secret_button": "㊙", + "japanese_service_charge_button": "🈂", + "japanese_symbol_for_beginner": "🔰", + "japanese_vacancy_button": "🈳", + "jersey": "🇯🇪", + "jordan": "🇯🇴", + "kazakhstan": "🇰🇿", + "kenya": "🇰🇪", + "kiribati": "🇰🇮", + "kosovo": "🇽🇰", + "kuwait": "🇰🇼", + "kyrgyzstan": "🇰🇬", + "laos": "🇱🇦", + "latvia": "🇱🇻", + "lebanon": "🇱🇧", + "leo": "♌", + "lesotho": "🇱🇸", + "liberia": "🇱🇷", + "libra": "♎", + "libya": "🇱🇾", + "liechtenstein": "🇱🇮", + "lithuania": "🇱🇹", + "luxembourg": "🇱🇺", + "macau_sar_china": "🇲🇴", + "macedonia": "🇲🇰", + "madagascar": "🇲🇬", + "malawi": "🇲🇼", + "malaysia": "🇲🇾", + "maldives": "🇲🇻", + "mali": "🇲🇱", + "malta": "🇲🇹", + "marshall_islands": "🇲🇭", + "martinique": "🇲🇶", + "mauritania": "🇲🇷", + "mauritius": "🇲🇺", + "mayotte": "🇾🇹", + "mexico": "🇲🇽", + "micronesia": "🇫🇲", + "moldova": "🇲🇩", + "monaco": "🇲🇨", + "mongolia": "🇲🇳", + "montenegro": "🇲🇪", + "montserrat": "🇲🇸", + "morocco": "🇲🇦", + "mozambique": "🇲🇿", + "mrs._claus": "🤶", + "mrs._claus_dark_skin_tone": "🤶🏿", + "mrs._claus_light_skin_tone": "🤶🏻", + "mrs._claus_medium-dark_skin_tone": "🤶🏾", + "mrs._claus_medium-light_skin_tone": "🤶🏼", + "mrs._claus_medium_skin_tone": "🤶🏽", + "myanmar_(burma)": "🇲🇲", + "new_button": "🆕", + "ng_button": "🆖", + "namibia": "🇳🇦", + "nauru": "🇳🇷", + "nepal": "🇳🇵", + "netherlands": "🇳🇱", + "new_caledonia": "🇳🇨", + "new_zealand": "🇳🇿", + "nicaragua": "🇳🇮", + "niger": "🇳🇪", + "nigeria": "🇳🇬", + "niue": "🇳🇺", + "norfolk_island": "🇳🇫", + "north_korea": "🇰🇵", + "northern_mariana_islands": "🇲🇵", + "norway": "🇳🇴", + "ok_button": "🆗", + "ok_hand": "👌", + "ok_hand_dark_skin_tone": "👌🏿", + "ok_hand_light_skin_tone": "👌🏻", + "ok_hand_medium-dark_skin_tone": "👌🏾", + "ok_hand_medium-light_skin_tone": "👌🏼", + "ok_hand_medium_skin_tone": "👌🏽", + "on!_arrow": "🔛", + "o_button_(blood_type)": "🅾", + "oman": "🇴🇲", + "ophiuchus": "⛎", + "p_button": "🅿", + "pakistan": "🇵🇰", + "palau": "🇵🇼", + "palestinian_territories": "🇵🇸", + "panama": "🇵🇦", + "papua_new_guinea": "🇵🇬", + "paraguay": "🇵🇾", + "peru": "🇵🇪", + "philippines": "🇵🇭", + "pisces": "♓", + "pitcairn_islands": "🇵🇳", + "poland": "🇵🇱", + "portugal": "🇵🇹", + "puerto_rico": "🇵🇷", + "qatar": "🇶🇦", + "romania": "🇷🇴", + "russia": "🇷🇺", + "rwanda": "🇷🇼", + "réunion": "🇷🇪", + "soon_arrow": "🔜", + "sos_button": "🆘", + "sagittarius": "♐", + "samoa": "🇼🇸", + "san_marino": "🇸🇲", + "santa_claus": "🎅", + "santa_claus_dark_skin_tone": "🎅🏿", + "santa_claus_light_skin_tone": "🎅🏻", + "santa_claus_medium-dark_skin_tone": "🎅🏾", + "santa_claus_medium-light_skin_tone": "🎅🏼", + "santa_claus_medium_skin_tone": "🎅🏽", + "saudi_arabia": "🇸🇦", + "scorpio": "♏", + "scotland": "🏴\U000e0067\U000e0062\U000e0073\U000e0063\U000e0074\U000e007f", + "senegal": "🇸🇳", + "serbia": "🇷🇸", + "seychelles": "🇸🇨", + "sierra_leone": "🇸🇱", + "singapore": "🇸🇬", + "sint_maarten": "🇸🇽", + "slovakia": "🇸🇰", + "slovenia": "🇸🇮", + "solomon_islands": "🇸🇧", + "somalia": "🇸🇴", + "south_africa": "🇿🇦", + "south_georgia_&_south_sandwich_islands": "🇬🇸", + "south_korea": "🇰🇷", + "south_sudan": "🇸🇸", + "spain": "🇪🇸", + "sri_lanka": "🇱🇰", + "st._barthélemy": "🇧🇱", + "st._helena": "🇸🇭", + "st._kitts_&_nevis": "🇰🇳", + "st._lucia": "🇱🇨", + "st._martin": "🇲🇫", + "st._pierre_&_miquelon": "🇵🇲", + "st._vincent_&_grenadines": "🇻🇨", + "statue_of_liberty": "🗽", + "sudan": "🇸🇩", + "suriname": "🇸🇷", + "svalbard_&_jan_mayen": "🇸🇯", + "swaziland": "🇸🇿", + "sweden": "🇸🇪", + "switzerland": "🇨🇭", + "syria": "🇸🇾", + "são_tomé_&_príncipe": "🇸🇹", + "t-rex": "🦖", + "top_arrow": "🔝", + "taiwan": "🇹🇼", + "tajikistan": "🇹🇯", + "tanzania": "🇹🇿", + "taurus": "♉", + "thailand": "🇹🇭", + "timor-leste": "🇹🇱", + "togo": "🇹🇬", + "tokelau": "🇹🇰", + "tokyo_tower": "🗼", + "tonga": "🇹🇴", + "trinidad_&_tobago": "🇹🇹", + "tristan_da_cunha": "🇹🇦", + "tunisia": "🇹🇳", + "turkey": "🦃", + "turkmenistan": "🇹🇲", + "turks_&_caicos_islands": "🇹🇨", + "tuvalu": "🇹🇻", + "u.s._outlying_islands": "🇺🇲", + "u.s._virgin_islands": "🇻🇮", + "up!_button": "🆙", + "uganda": "🇺🇬", + "ukraine": "🇺🇦", + "united_arab_emirates": "🇦🇪", + "united_kingdom": "🇬🇧", + "united_nations": "🇺🇳", + "united_states": "🇺🇸", + "uruguay": "🇺🇾", + "uzbekistan": "🇺🇿", + "vs_button": "🆚", + "vanuatu": "🇻🇺", + "vatican_city": "🇻🇦", + "venezuela": "🇻🇪", + "vietnam": "🇻🇳", + "virgo": "♍", + "wales": "🏴\U000e0067\U000e0062\U000e0077\U000e006c\U000e0073\U000e007f", + "wallis_&_futuna": "🇼🇫", + "western_sahara": "🇪🇭", + "yemen": "🇾🇪", + "zambia": "🇿🇲", + "zimbabwe": "🇿🇼", + "abacus": "🧮", + "adhesive_bandage": "🩹", + "admission_tickets": "🎟", + "adult": "🧑", + "adult_dark_skin_tone": "🧑🏿", + "adult_light_skin_tone": "🧑🏻", + "adult_medium-dark_skin_tone": "🧑🏾", + "adult_medium-light_skin_tone": "🧑🏼", + "adult_medium_skin_tone": "🧑🏽", + "aerial_tramway": "🚡", + "airplane": "✈", + "airplane_arrival": "🛬", + "airplane_departure": "🛫", + "alarm_clock": "⏰", + "alembic": "⚗", + "alien": "👽", + "alien_monster": "👾", + "ambulance": "🚑", + "american_football": "🏈", + "amphora": "🏺", + "anchor": "⚓", + "anger_symbol": "💢", + "angry_face": "😠", + "angry_face_with_horns": "👿", + "anguished_face": "😧", + "ant": "🐜", + "antenna_bars": "📶", + "anxious_face_with_sweat": "😰", + "articulated_lorry": "🚛", + "artist_palette": "🎨", + "astonished_face": "😲", + "atom_symbol": "⚛", + "auto_rickshaw": "🛺", + "automobile": "🚗", + "avocado": "🥑", + "axe": "🪓", + "baby": "👶", + "baby_angel": "👼", + "baby_angel_dark_skin_tone": "👼🏿", + "baby_angel_light_skin_tone": "👼🏻", + "baby_angel_medium-dark_skin_tone": "👼🏾", + "baby_angel_medium-light_skin_tone": "👼🏼", + "baby_angel_medium_skin_tone": "👼🏽", + "baby_bottle": "🍼", + "baby_chick": "🐤", + "baby_dark_skin_tone": "👶🏿", + "baby_light_skin_tone": "👶🏻", + "baby_medium-dark_skin_tone": "👶🏾", + "baby_medium-light_skin_tone": "👶🏼", + "baby_medium_skin_tone": "👶🏽", + "baby_symbol": "🚼", + "backhand_index_pointing_down": "👇", + "backhand_index_pointing_down_dark_skin_tone": "👇🏿", + "backhand_index_pointing_down_light_skin_tone": "👇🏻", + "backhand_index_pointing_down_medium-dark_skin_tone": "👇🏾", + "backhand_index_pointing_down_medium-light_skin_tone": "👇🏼", + "backhand_index_pointing_down_medium_skin_tone": "👇🏽", + "backhand_index_pointing_left": "👈", + "backhand_index_pointing_left_dark_skin_tone": "👈🏿", + "backhand_index_pointing_left_light_skin_tone": "👈🏻", + "backhand_index_pointing_left_medium-dark_skin_tone": "👈🏾", + "backhand_index_pointing_left_medium-light_skin_tone": "👈🏼", + "backhand_index_pointing_left_medium_skin_tone": "👈🏽", + "backhand_index_pointing_right": "👉", + "backhand_index_pointing_right_dark_skin_tone": "👉🏿", + "backhand_index_pointing_right_light_skin_tone": "👉🏻", + "backhand_index_pointing_right_medium-dark_skin_tone": "👉🏾", + "backhand_index_pointing_right_medium-light_skin_tone": "👉🏼", + "backhand_index_pointing_right_medium_skin_tone": "👉🏽", + "backhand_index_pointing_up": "👆", + "backhand_index_pointing_up_dark_skin_tone": "👆🏿", + "backhand_index_pointing_up_light_skin_tone": "👆🏻", + "backhand_index_pointing_up_medium-dark_skin_tone": "👆🏾", + "backhand_index_pointing_up_medium-light_skin_tone": "👆🏼", + "backhand_index_pointing_up_medium_skin_tone": "👆🏽", + "bacon": "🥓", + "badger": "🦡", + "badminton": "🏸", + "bagel": "🥯", + "baggage_claim": "🛄", + "baguette_bread": "🥖", + "balance_scale": "⚖", + "bald": "🦲", + "bald_man": "👨\u200d🦲", + "bald_woman": "👩\u200d🦲", + "ballet_shoes": "🩰", + "balloon": "🎈", + "ballot_box_with_ballot": "🗳", + "ballot_box_with_check": "☑", + "banana": "🍌", + "banjo": "🪕", + "bank": "🏦", + "bar_chart": "📊", + "barber_pole": "💈", + "baseball": "⚾", + "basket": "🧺", + "basketball": "🏀", + "bat": "🦇", + "bathtub": "🛁", + "battery": "🔋", + "beach_with_umbrella": "🏖", + "beaming_face_with_smiling_eyes": "😁", + "bear_face": "🐻", + "bearded_person": "🧔", + "bearded_person_dark_skin_tone": "🧔🏿", + "bearded_person_light_skin_tone": "🧔🏻", + "bearded_person_medium-dark_skin_tone": "🧔🏾", + "bearded_person_medium-light_skin_tone": "🧔🏼", + "bearded_person_medium_skin_tone": "🧔🏽", + "beating_heart": "💓", + "bed": "🛏", + "beer_mug": "🍺", + "bell": "🔔", + "bell_with_slash": "🔕", + "bellhop_bell": "🛎", + "bento_box": "🍱", + "beverage_box": "🧃", + "bicycle": "🚲", + "bikini": "👙", + "billed_cap": "🧢", + "biohazard": "☣", + "bird": "🐦", + "birthday_cake": "🎂", + "black_circle": "⚫", + "black_flag": "🏴", + "black_heart": "🖤", + "black_large_square": "⬛", + "black_medium-small_square": "◾", + "black_medium_square": "◼", + "black_nib": "✒", + "black_small_square": "▪", + "black_square_button": "🔲", + "blond-haired_man": "👱\u200d♂️", + "blond-haired_man_dark_skin_tone": "👱🏿\u200d♂️", + "blond-haired_man_light_skin_tone": "👱🏻\u200d♂️", + "blond-haired_man_medium-dark_skin_tone": "👱🏾\u200d♂️", + "blond-haired_man_medium-light_skin_tone": "👱🏼\u200d♂️", + "blond-haired_man_medium_skin_tone": "👱🏽\u200d♂️", + "blond-haired_person": "👱", + "blond-haired_person_dark_skin_tone": "👱🏿", + "blond-haired_person_light_skin_tone": "👱🏻", + "blond-haired_person_medium-dark_skin_tone": "👱🏾", + "blond-haired_person_medium-light_skin_tone": "👱🏼", + "blond-haired_person_medium_skin_tone": "👱🏽", + "blond-haired_woman": "👱\u200d♀️", + "blond-haired_woman_dark_skin_tone": "👱🏿\u200d♀️", + "blond-haired_woman_light_skin_tone": "👱🏻\u200d♀️", + "blond-haired_woman_medium-dark_skin_tone": "👱🏾\u200d♀️", + "blond-haired_woman_medium-light_skin_tone": "👱🏼\u200d♀️", + "blond-haired_woman_medium_skin_tone": "👱🏽\u200d♀️", + "blossom": "🌼", + "blowfish": "🐡", + "blue_book": "📘", + "blue_circle": "🔵", + "blue_heart": "💙", + "blue_square": "🟦", + "boar": "🐗", + "bomb": "💣", + "bone": "🦴", + "bookmark": "🔖", + "bookmark_tabs": "📑", + "books": "📚", + "bottle_with_popping_cork": "🍾", + "bouquet": "💐", + "bow_and_arrow": "🏹", + "bowl_with_spoon": "🥣", + "bowling": "🎳", + "boxing_glove": "🥊", + "boy": "👦", + "boy_dark_skin_tone": "👦🏿", + "boy_light_skin_tone": "👦🏻", + "boy_medium-dark_skin_tone": "👦🏾", + "boy_medium-light_skin_tone": "👦🏼", + "boy_medium_skin_tone": "👦🏽", + "brain": "🧠", + "bread": "🍞", + "breast-feeding": "🤱", + "breast-feeding_dark_skin_tone": "🤱🏿", + "breast-feeding_light_skin_tone": "🤱🏻", + "breast-feeding_medium-dark_skin_tone": "🤱🏾", + "breast-feeding_medium-light_skin_tone": "🤱🏼", + "breast-feeding_medium_skin_tone": "🤱🏽", + "brick": "🧱", + "bride_with_veil": "👰", + "bride_with_veil_dark_skin_tone": "👰🏿", + "bride_with_veil_light_skin_tone": "👰🏻", + "bride_with_veil_medium-dark_skin_tone": "👰🏾", + "bride_with_veil_medium-light_skin_tone": "👰🏼", + "bride_with_veil_medium_skin_tone": "👰🏽", + "bridge_at_night": "🌉", + "briefcase": "💼", + "briefs": "🩲", + "bright_button": "🔆", + "broccoli": "🥦", + "broken_heart": "💔", + "broom": "🧹", + "brown_circle": "🟤", + "brown_heart": "🤎", + "brown_square": "🟫", + "bug": "🐛", + "building_construction": "🏗", + "bullet_train": "🚅", + "burrito": "🌯", + "bus": "🚌", + "bus_stop": "🚏", + "bust_in_silhouette": "👤", + "busts_in_silhouette": "👥", + "butter": "🧈", + "butterfly": "🦋", + "cactus": "🌵", + "calendar": "📆", + "call_me_hand": "🤙", + "call_me_hand_dark_skin_tone": "🤙🏿", + "call_me_hand_light_skin_tone": "🤙🏻", + "call_me_hand_medium-dark_skin_tone": "🤙🏾", + "call_me_hand_medium-light_skin_tone": "🤙🏼", + "call_me_hand_medium_skin_tone": "🤙🏽", + "camel": "🐫", + "camera": "📷", + "camera_with_flash": "📸", + "camping": "🏕", + "candle": "🕯", + "candy": "🍬", + "canned_food": "🥫", + "canoe": "🛶", + "card_file_box": "🗃", + "card_index": "📇", + "card_index_dividers": "🗂", + "carousel_horse": "🎠", + "carp_streamer": "🎏", + "carrot": "🥕", + "castle": "🏰", + "cat": "🐱", + "cat_face": "🐱", + "cat_face_with_tears_of_joy": "😹", + "cat_face_with_wry_smile": "😼", + "chains": "⛓", + "chair": "🪑", + "chart_decreasing": "📉", + "chart_increasing": "📈", + "chart_increasing_with_yen": "💹", + "cheese_wedge": "🧀", + "chequered_flag": "🏁", + "cherries": "🍒", + "cherry_blossom": "🌸", + "chess_pawn": "♟", + "chestnut": "🌰", + "chicken": "🐔", + "child": "🧒", + "child_dark_skin_tone": "🧒🏿", + "child_light_skin_tone": "🧒🏻", + "child_medium-dark_skin_tone": "🧒🏾", + "child_medium-light_skin_tone": "🧒🏼", + "child_medium_skin_tone": "🧒🏽", + "children_crossing": "🚸", + "chipmunk": "🐿", + "chocolate_bar": "🍫", + "chopsticks": "🥢", + "church": "⛪", + "cigarette": "🚬", + "cinema": "🎦", + "circled_m": "Ⓜ", + "circus_tent": "🎪", + "cityscape": "🏙", + "cityscape_at_dusk": "🌆", + "clamp": "🗜", + "clapper_board": "🎬", + "clapping_hands": "👏", + "clapping_hands_dark_skin_tone": "👏🏿", + "clapping_hands_light_skin_tone": "👏🏻", + "clapping_hands_medium-dark_skin_tone": "👏🏾", + "clapping_hands_medium-light_skin_tone": "👏🏼", + "clapping_hands_medium_skin_tone": "👏🏽", + "classical_building": "🏛", + "clinking_beer_mugs": "🍻", + "clinking_glasses": "🥂", + "clipboard": "📋", + "clockwise_vertical_arrows": "🔃", + "closed_book": "📕", + "closed_mailbox_with_lowered_flag": "📪", + "closed_mailbox_with_raised_flag": "📫", + "closed_umbrella": "🌂", + "cloud": "☁", + "cloud_with_lightning": "🌩", + "cloud_with_lightning_and_rain": "⛈", + "cloud_with_rain": "🌧", + "cloud_with_snow": "🌨", + "clown_face": "🤡", + "club_suit": "♣", + "clutch_bag": "👝", + "coat": "🧥", + "cocktail_glass": "🍸", + "coconut": "🥥", + "coffin": "⚰", + "cold_face": "🥶", + "collision": "💥", + "comet": "☄", + "compass": "🧭", + "computer_disk": "💽", + "computer_mouse": "🖱", + "confetti_ball": "🎊", + "confounded_face": "😖", + "confused_face": "😕", + "construction": "🚧", + "construction_worker": "👷", + "construction_worker_dark_skin_tone": "👷🏿", + "construction_worker_light_skin_tone": "👷🏻", + "construction_worker_medium-dark_skin_tone": "👷🏾", + "construction_worker_medium-light_skin_tone": "👷🏼", + "construction_worker_medium_skin_tone": "👷🏽", + "control_knobs": "🎛", + "convenience_store": "🏪", + "cooked_rice": "🍚", + "cookie": "🍪", + "cooking": "🍳", + "copyright": "©", + "couch_and_lamp": "🛋", + "counterclockwise_arrows_button": "🔄", + "couple_with_heart": "💑", + "couple_with_heart_man_man": "👨\u200d❤️\u200d👨", + "couple_with_heart_woman_man": "👩\u200d❤️\u200d👨", + "couple_with_heart_woman_woman": "👩\u200d❤️\u200d👩", + "cow": "🐮", + "cow_face": "🐮", + "cowboy_hat_face": "🤠", + "crab": "🦀", + "crayon": "🖍", + "credit_card": "💳", + "crescent_moon": "🌙", + "cricket": "🦗", + "cricket_game": "🏏", + "crocodile": "🐊", + "croissant": "🥐", + "cross_mark": "❌", + "cross_mark_button": "❎", + "crossed_fingers": "🤞", + "crossed_fingers_dark_skin_tone": "🤞🏿", + "crossed_fingers_light_skin_tone": "🤞🏻", + "crossed_fingers_medium-dark_skin_tone": "🤞🏾", + "crossed_fingers_medium-light_skin_tone": "🤞🏼", + "crossed_fingers_medium_skin_tone": "🤞🏽", + "crossed_flags": "🎌", + "crossed_swords": "⚔", + "crown": "👑", + "crying_cat_face": "😿", + "crying_face": "😢", + "crystal_ball": "🔮", + "cucumber": "🥒", + "cupcake": "🧁", + "cup_with_straw": "🥤", + "curling_stone": "🥌", + "curly_hair": "🦱", + "curly-haired_man": "👨\u200d🦱", + "curly-haired_woman": "👩\u200d🦱", + "curly_loop": "➰", + "currency_exchange": "💱", + "curry_rice": "🍛", + "custard": "🍮", + "customs": "🛃", + "cut_of_meat": "🥩", + "cyclone": "🌀", + "dagger": "🗡", + "dango": "🍡", + "dashing_away": "💨", + "deaf_person": "🧏", + "deciduous_tree": "🌳", + "deer": "🦌", + "delivery_truck": "🚚", + "department_store": "🏬", + "derelict_house": "🏚", + "desert": "🏜", + "desert_island": "🏝", + "desktop_computer": "🖥", + "detective": "🕵", + "detective_dark_skin_tone": "🕵🏿", + "detective_light_skin_tone": "🕵🏻", + "detective_medium-dark_skin_tone": "🕵🏾", + "detective_medium-light_skin_tone": "🕵🏼", + "detective_medium_skin_tone": "🕵🏽", + "diamond_suit": "♦", + "diamond_with_a_dot": "💠", + "dim_button": "🔅", + "direct_hit": "🎯", + "disappointed_face": "😞", + "diving_mask": "🤿", + "diya_lamp": "🪔", + "dizzy": "💫", + "dizzy_face": "😵", + "dna": "🧬", + "dog": "🐶", + "dog_face": "🐶", + "dollar_banknote": "💵", + "dolphin": "🐬", + "door": "🚪", + "dotted_six-pointed_star": "🔯", + "double_curly_loop": "➿", + "double_exclamation_mark": "‼", + "doughnut": "🍩", + "dove": "🕊", + "down-left_arrow": "↙", + "down-right_arrow": "↘", + "down_arrow": "⬇", + "downcast_face_with_sweat": "😓", + "downwards_button": "🔽", + "dragon": "🐉", + "dragon_face": "🐲", + "dress": "👗", + "drooling_face": "🤤", + "drop_of_blood": "🩸", + "droplet": "💧", + "drum": "🥁", + "duck": "🦆", + "dumpling": "🥟", + "dvd": "📀", + "e-mail": "📧", + "eagle": "🦅", + "ear": "👂", + "ear_dark_skin_tone": "👂🏿", + "ear_light_skin_tone": "👂🏻", + "ear_medium-dark_skin_tone": "👂🏾", + "ear_medium-light_skin_tone": "👂🏼", + "ear_medium_skin_tone": "👂🏽", + "ear_of_corn": "🌽", + "ear_with_hearing_aid": "🦻", + "egg": "🍳", + "eggplant": "🍆", + "eight-pointed_star": "✴", + "eight-spoked_asterisk": "✳", + "eight-thirty": "🕣", + "eight_o’clock": "🕗", + "eject_button": "⏏", + "electric_plug": "🔌", + "elephant": "🐘", + "eleven-thirty": "🕦", + "eleven_o’clock": "🕚", + "elf": "🧝", + "elf_dark_skin_tone": "🧝🏿", + "elf_light_skin_tone": "🧝🏻", + "elf_medium-dark_skin_tone": "🧝🏾", + "elf_medium-light_skin_tone": "🧝🏼", + "elf_medium_skin_tone": "🧝🏽", + "envelope": "✉", + "envelope_with_arrow": "📩", + "euro_banknote": "💶", + "evergreen_tree": "🌲", + "ewe": "🐑", + "exclamation_mark": "❗", + "exclamation_question_mark": "⁉", + "exploding_head": "🤯", + "expressionless_face": "😑", + "eye": "👁", + "eye_in_speech_bubble": "👁️\u200d🗨️", + "eyes": "👀", + "face_blowing_a_kiss": "😘", + "face_savoring_food": "😋", + "face_screaming_in_fear": "😱", + "face_vomiting": "🤮", + "face_with_hand_over_mouth": "🤭", + "face_with_head-bandage": "🤕", + "face_with_medical_mask": "😷", + "face_with_monocle": "🧐", + "face_with_open_mouth": "😮", + "face_with_raised_eyebrow": "🤨", + "face_with_rolling_eyes": "🙄", + "face_with_steam_from_nose": "😤", + "face_with_symbols_on_mouth": "🤬", + "face_with_tears_of_joy": "😂", + "face_with_thermometer": "🤒", + "face_with_tongue": "😛", + "face_without_mouth": "😶", + "factory": "🏭", + "fairy": "🧚", + "fairy_dark_skin_tone": "🧚🏿", + "fairy_light_skin_tone": "🧚🏻", + "fairy_medium-dark_skin_tone": "🧚🏾", + "fairy_medium-light_skin_tone": "🧚🏼", + "fairy_medium_skin_tone": "🧚🏽", + "falafel": "🧆", + "fallen_leaf": "🍂", + "family": "👪", + "family_man_boy": "👨\u200d👦", + "family_man_boy_boy": "👨\u200d👦\u200d👦", + "family_man_girl": "👨\u200d👧", + "family_man_girl_boy": "👨\u200d👧\u200d👦", + "family_man_girl_girl": "👨\u200d👧\u200d👧", + "family_man_man_boy": "👨\u200d👨\u200d👦", + "family_man_man_boy_boy": "👨\u200d👨\u200d👦\u200d👦", + "family_man_man_girl": "👨\u200d👨\u200d👧", + "family_man_man_girl_boy": "👨\u200d👨\u200d👧\u200d👦", + "family_man_man_girl_girl": "👨\u200d👨\u200d👧\u200d👧", + "family_man_woman_boy": "👨\u200d👩\u200d👦", + "family_man_woman_boy_boy": "👨\u200d👩\u200d👦\u200d👦", + "family_man_woman_girl": "👨\u200d👩\u200d👧", + "family_man_woman_girl_boy": "👨\u200d👩\u200d👧\u200d👦", + "family_man_woman_girl_girl": "👨\u200d👩\u200d👧\u200d👧", + "family_woman_boy": "👩\u200d👦", + "family_woman_boy_boy": "👩\u200d👦\u200d👦", + "family_woman_girl": "👩\u200d👧", + "family_woman_girl_boy": "👩\u200d👧\u200d👦", + "family_woman_girl_girl": "👩\u200d👧\u200d👧", + "family_woman_woman_boy": "👩\u200d👩\u200d👦", + "family_woman_woman_boy_boy": "👩\u200d👩\u200d👦\u200d👦", + "family_woman_woman_girl": "👩\u200d👩\u200d👧", + "family_woman_woman_girl_boy": "👩\u200d👩\u200d👧\u200d👦", + "family_woman_woman_girl_girl": "👩\u200d👩\u200d👧\u200d👧", + "fast-forward_button": "⏩", + "fast_down_button": "⏬", + "fast_reverse_button": "⏪", + "fast_up_button": "⏫", + "fax_machine": "📠", + "fearful_face": "😨", + "female_sign": "♀", + "ferris_wheel": "🎡", + "ferry": "⛴", + "field_hockey": "🏑", + "file_cabinet": "🗄", + "file_folder": "📁", + "film_frames": "🎞", + "film_projector": "📽", + "fire": "🔥", + "fire_extinguisher": "🧯", + "firecracker": "🧨", + "fire_engine": "🚒", + "fireworks": "🎆", + "first_quarter_moon": "🌓", + "first_quarter_moon_face": "🌛", + "fish": "🐟", + "fish_cake_with_swirl": "🍥", + "fishing_pole": "🎣", + "five-thirty": "🕠", + "five_o’clock": "🕔", + "flag_in_hole": "⛳", + "flamingo": "🦩", + "flashlight": "🔦", + "flat_shoe": "🥿", + "fleur-de-lis": "⚜", + "flexed_biceps": "💪", + "flexed_biceps_dark_skin_tone": "💪🏿", + "flexed_biceps_light_skin_tone": "💪🏻", + "flexed_biceps_medium-dark_skin_tone": "💪🏾", + "flexed_biceps_medium-light_skin_tone": "💪🏼", + "flexed_biceps_medium_skin_tone": "💪🏽", + "floppy_disk": "💾", + "flower_playing_cards": "🎴", + "flushed_face": "😳", + "flying_disc": "🥏", + "flying_saucer": "🛸", + "fog": "🌫", + "foggy": "🌁", + "folded_hands": "🙏", + "folded_hands_dark_skin_tone": "🙏🏿", + "folded_hands_light_skin_tone": "🙏🏻", + "folded_hands_medium-dark_skin_tone": "🙏🏾", + "folded_hands_medium-light_skin_tone": "🙏🏼", + "folded_hands_medium_skin_tone": "🙏🏽", + "foot": "🦶", + "footprints": "👣", + "fork_and_knife": "🍴", + "fork_and_knife_with_plate": "🍽", + "fortune_cookie": "🥠", + "fountain": "⛲", + "fountain_pen": "🖋", + "four-thirty": "🕟", + "four_leaf_clover": "🍀", + "four_o’clock": "🕓", + "fox_face": "🦊", + "framed_picture": "🖼", + "french_fries": "🍟", + "fried_shrimp": "🍤", + "frog_face": "🐸", + "front-facing_baby_chick": "🐥", + "frowning_face": "☹", + "frowning_face_with_open_mouth": "😦", + "fuel_pump": "⛽", + "full_moon": "🌕", + "full_moon_face": "🌝", + "funeral_urn": "⚱", + "game_die": "🎲", + "garlic": "🧄", + "gear": "⚙", + "gem_stone": "💎", + "genie": "🧞", + "ghost": "👻", + "giraffe": "🦒", + "girl": "👧", + "girl_dark_skin_tone": "👧🏿", + "girl_light_skin_tone": "👧🏻", + "girl_medium-dark_skin_tone": "👧🏾", + "girl_medium-light_skin_tone": "👧🏼", + "girl_medium_skin_tone": "👧🏽", + "glass_of_milk": "🥛", + "glasses": "👓", + "globe_showing_americas": "🌎", + "globe_showing_asia-australia": "🌏", + "globe_showing_europe-africa": "🌍", + "globe_with_meridians": "🌐", + "gloves": "🧤", + "glowing_star": "🌟", + "goal_net": "🥅", + "goat": "🐐", + "goblin": "👺", + "goggles": "🥽", + "gorilla": "🦍", + "graduation_cap": "🎓", + "grapes": "🍇", + "green_apple": "🍏", + "green_book": "📗", + "green_circle": "🟢", + "green_heart": "💚", + "green_salad": "🥗", + "green_square": "🟩", + "grimacing_face": "😬", + "grinning_cat_face": "😺", + "grinning_cat_face_with_smiling_eyes": "😸", + "grinning_face": "😀", + "grinning_face_with_big_eyes": "😃", + "grinning_face_with_smiling_eyes": "😄", + "grinning_face_with_sweat": "😅", + "grinning_squinting_face": "😆", + "growing_heart": "💗", + "guard": "💂", + "guard_dark_skin_tone": "💂🏿", + "guard_light_skin_tone": "💂🏻", + "guard_medium-dark_skin_tone": "💂🏾", + "guard_medium-light_skin_tone": "💂🏼", + "guard_medium_skin_tone": "💂🏽", + "guide_dog": "🦮", + "guitar": "🎸", + "hamburger": "🍔", + "hammer": "🔨", + "hammer_and_pick": "⚒", + "hammer_and_wrench": "🛠", + "hamster_face": "🐹", + "hand_with_fingers_splayed": "🖐", + "hand_with_fingers_splayed_dark_skin_tone": "🖐🏿", + "hand_with_fingers_splayed_light_skin_tone": "🖐🏻", + "hand_with_fingers_splayed_medium-dark_skin_tone": "🖐🏾", + "hand_with_fingers_splayed_medium-light_skin_tone": "🖐🏼", + "hand_with_fingers_splayed_medium_skin_tone": "🖐🏽", + "handbag": "👜", + "handshake": "🤝", + "hatching_chick": "🐣", + "headphone": "🎧", + "hear-no-evil_monkey": "🙉", + "heart_decoration": "💟", + "heart_suit": "♥", + "heart_with_arrow": "💘", + "heart_with_ribbon": "💝", + "heavy_check_mark": "✔", + "heavy_division_sign": "➗", + "heavy_dollar_sign": "💲", + "heavy_heart_exclamation": "❣", + "heavy_large_circle": "⭕", + "heavy_minus_sign": "➖", + "heavy_multiplication_x": "✖", + "heavy_plus_sign": "➕", + "hedgehog": "🦔", + "helicopter": "🚁", + "herb": "🌿", + "hibiscus": "🌺", + "high-heeled_shoe": "👠", + "high-speed_train": "🚄", + "high_voltage": "⚡", + "hiking_boot": "🥾", + "hindu_temple": "🛕", + "hippopotamus": "🦛", + "hole": "🕳", + "honey_pot": "🍯", + "honeybee": "🐝", + "horizontal_traffic_light": "🚥", + "horse": "🐴", + "horse_face": "🐴", + "horse_racing": "🏇", + "horse_racing_dark_skin_tone": "🏇🏿", + "horse_racing_light_skin_tone": "🏇🏻", + "horse_racing_medium-dark_skin_tone": "🏇🏾", + "horse_racing_medium-light_skin_tone": "🏇🏼", + "horse_racing_medium_skin_tone": "🏇🏽", + "hospital": "🏥", + "hot_beverage": "☕", + "hot_dog": "🌭", + "hot_face": "🥵", + "hot_pepper": "🌶", + "hot_springs": "♨", + "hotel": "🏨", + "hourglass_done": "⌛", + "hourglass_not_done": "⏳", + "house": "🏠", + "house_with_garden": "🏡", + "houses": "🏘", + "hugging_face": "🤗", + "hundred_points": "💯", + "hushed_face": "😯", + "ice": "🧊", + "ice_cream": "🍨", + "ice_hockey": "🏒", + "ice_skate": "⛸", + "inbox_tray": "📥", + "incoming_envelope": "📨", + "index_pointing_up": "☝", + "index_pointing_up_dark_skin_tone": "☝🏿", + "index_pointing_up_light_skin_tone": "☝🏻", + "index_pointing_up_medium-dark_skin_tone": "☝🏾", + "index_pointing_up_medium-light_skin_tone": "☝🏼", + "index_pointing_up_medium_skin_tone": "☝🏽", + "infinity": "♾", + "information": "ℹ", + "input_latin_letters": "🔤", + "input_latin_lowercase": "🔡", + "input_latin_uppercase": "🔠", + "input_numbers": "🔢", + "input_symbols": "🔣", + "jack-o-lantern": "🎃", + "jeans": "👖", + "jigsaw": "🧩", + "joker": "🃏", + "joystick": "🕹", + "kaaba": "🕋", + "kangaroo": "🦘", + "key": "🔑", + "keyboard": "⌨", + "keycap_#": "#️⃣", + "keycap_*": "*️⃣", + "keycap_0": "0️⃣", + "keycap_1": "1️⃣", + "keycap_10": "🔟", + "keycap_2": "2️⃣", + "keycap_3": "3️⃣", + "keycap_4": "4️⃣", + "keycap_5": "5️⃣", + "keycap_6": "6️⃣", + "keycap_7": "7️⃣", + "keycap_8": "8️⃣", + "keycap_9": "9️⃣", + "kick_scooter": "🛴", + "kimono": "👘", + "kiss": "💋", + "kiss_man_man": "👨\u200d❤️\u200d💋\u200d👨", + "kiss_mark": "💋", + "kiss_woman_man": "👩\u200d❤️\u200d💋\u200d👨", + "kiss_woman_woman": "👩\u200d❤️\u200d💋\u200d👩", + "kissing_cat_face": "😽", + "kissing_face": "😗", + "kissing_face_with_closed_eyes": "😚", + "kissing_face_with_smiling_eyes": "😙", + "kitchen_knife": "🔪", + "kite": "🪁", + "kiwi_fruit": "🥝", + "koala": "🐨", + "lab_coat": "🥼", + "label": "🏷", + "lacrosse": "🥍", + "lady_beetle": "🐞", + "laptop_computer": "💻", + "large_blue_diamond": "🔷", + "large_orange_diamond": "🔶", + "last_quarter_moon": "🌗", + "last_quarter_moon_face": "🌜", + "last_track_button": "⏮", + "latin_cross": "✝", + "leaf_fluttering_in_wind": "🍃", + "leafy_green": "🥬", + "ledger": "📒", + "left-facing_fist": "🤛", + "left-facing_fist_dark_skin_tone": "🤛🏿", + "left-facing_fist_light_skin_tone": "🤛🏻", + "left-facing_fist_medium-dark_skin_tone": "🤛🏾", + "left-facing_fist_medium-light_skin_tone": "🤛🏼", + "left-facing_fist_medium_skin_tone": "🤛🏽", + "left-right_arrow": "↔", + "left_arrow": "⬅", + "left_arrow_curving_right": "↪", + "left_luggage": "🛅", + "left_speech_bubble": "🗨", + "leg": "🦵", + "lemon": "🍋", + "leopard": "🐆", + "level_slider": "🎚", + "light_bulb": "💡", + "light_rail": "🚈", + "link": "🔗", + "linked_paperclips": "🖇", + "lion_face": "🦁", + "lipstick": "💄", + "litter_in_bin_sign": "🚮", + "lizard": "🦎", + "llama": "🦙", + "lobster": "🦞", + "locked": "🔒", + "locked_with_key": "🔐", + "locked_with_pen": "🔏", + "locomotive": "🚂", + "lollipop": "🍭", + "lotion_bottle": "🧴", + "loudly_crying_face": "😭", + "loudspeaker": "📢", + "love-you_gesture": "🤟", + "love-you_gesture_dark_skin_tone": "🤟🏿", + "love-you_gesture_light_skin_tone": "🤟🏻", + "love-you_gesture_medium-dark_skin_tone": "🤟🏾", + "love-you_gesture_medium-light_skin_tone": "🤟🏼", + "love-you_gesture_medium_skin_tone": "🤟🏽", + "love_hotel": "🏩", + "love_letter": "💌", + "luggage": "🧳", + "lying_face": "🤥", + "mage": "🧙", + "mage_dark_skin_tone": "🧙🏿", + "mage_light_skin_tone": "🧙🏻", + "mage_medium-dark_skin_tone": "🧙🏾", + "mage_medium-light_skin_tone": "🧙🏼", + "mage_medium_skin_tone": "🧙🏽", + "magnet": "🧲", + "magnifying_glass_tilted_left": "🔍", + "magnifying_glass_tilted_right": "🔎", + "mahjong_red_dragon": "🀄", + "male_sign": "♂", + "man": "👨", + "man_and_woman_holding_hands": "👫", + "man_artist": "👨\u200d🎨", + "man_artist_dark_skin_tone": "👨🏿\u200d🎨", + "man_artist_light_skin_tone": "👨🏻\u200d🎨", + "man_artist_medium-dark_skin_tone": "👨🏾\u200d🎨", + "man_artist_medium-light_skin_tone": "👨🏼\u200d🎨", + "man_artist_medium_skin_tone": "👨🏽\u200d🎨", + "man_astronaut": "👨\u200d🚀", + "man_astronaut_dark_skin_tone": "👨🏿\u200d🚀", + "man_astronaut_light_skin_tone": "👨🏻\u200d🚀", + "man_astronaut_medium-dark_skin_tone": "👨🏾\u200d🚀", + "man_astronaut_medium-light_skin_tone": "👨🏼\u200d🚀", + "man_astronaut_medium_skin_tone": "👨🏽\u200d🚀", + "man_biking": "🚴\u200d♂️", + "man_biking_dark_skin_tone": "🚴🏿\u200d♂️", + "man_biking_light_skin_tone": "🚴🏻\u200d♂️", + "man_biking_medium-dark_skin_tone": "🚴🏾\u200d♂️", + "man_biking_medium-light_skin_tone": "🚴🏼\u200d♂️", + "man_biking_medium_skin_tone": "🚴🏽\u200d♂️", + "man_bouncing_ball": "⛹️\u200d♂️", + "man_bouncing_ball_dark_skin_tone": "⛹🏿\u200d♂️", + "man_bouncing_ball_light_skin_tone": "⛹🏻\u200d♂️", + "man_bouncing_ball_medium-dark_skin_tone": "⛹🏾\u200d♂️", + "man_bouncing_ball_medium-light_skin_tone": "⛹🏼\u200d♂️", + "man_bouncing_ball_medium_skin_tone": "⛹🏽\u200d♂️", + "man_bowing": "🙇\u200d♂️", + "man_bowing_dark_skin_tone": "🙇🏿\u200d♂️", + "man_bowing_light_skin_tone": "🙇🏻\u200d♂️", + "man_bowing_medium-dark_skin_tone": "🙇🏾\u200d♂️", + "man_bowing_medium-light_skin_tone": "🙇🏼\u200d♂️", + "man_bowing_medium_skin_tone": "🙇🏽\u200d♂️", + "man_cartwheeling": "🤸\u200d♂️", + "man_cartwheeling_dark_skin_tone": "🤸🏿\u200d♂️", + "man_cartwheeling_light_skin_tone": "🤸🏻\u200d♂️", + "man_cartwheeling_medium-dark_skin_tone": "🤸🏾\u200d♂️", + "man_cartwheeling_medium-light_skin_tone": "🤸🏼\u200d♂️", + "man_cartwheeling_medium_skin_tone": "🤸🏽\u200d♂️", + "man_climbing": "🧗\u200d♂️", + "man_climbing_dark_skin_tone": "🧗🏿\u200d♂️", + "man_climbing_light_skin_tone": "🧗🏻\u200d♂️", + "man_climbing_medium-dark_skin_tone": "🧗🏾\u200d♂️", + "man_climbing_medium-light_skin_tone": "🧗🏼\u200d♂️", + "man_climbing_medium_skin_tone": "🧗🏽\u200d♂️", + "man_construction_worker": "👷\u200d♂️", + "man_construction_worker_dark_skin_tone": "👷🏿\u200d♂️", + "man_construction_worker_light_skin_tone": "👷🏻\u200d♂️", + "man_construction_worker_medium-dark_skin_tone": "👷🏾\u200d♂️", + "man_construction_worker_medium-light_skin_tone": "👷🏼\u200d♂️", + "man_construction_worker_medium_skin_tone": "👷🏽\u200d♂️", + "man_cook": "👨\u200d🍳", + "man_cook_dark_skin_tone": "👨🏿\u200d🍳", + "man_cook_light_skin_tone": "👨🏻\u200d🍳", + "man_cook_medium-dark_skin_tone": "👨🏾\u200d🍳", + "man_cook_medium-light_skin_tone": "👨🏼\u200d🍳", + "man_cook_medium_skin_tone": "👨🏽\u200d🍳", + "man_dancing": "🕺", + "man_dancing_dark_skin_tone": "🕺🏿", + "man_dancing_light_skin_tone": "🕺🏻", + "man_dancing_medium-dark_skin_tone": "🕺🏾", + "man_dancing_medium-light_skin_tone": "🕺🏼", + "man_dancing_medium_skin_tone": "🕺🏽", + "man_dark_skin_tone": "👨🏿", + "man_detective": "🕵️\u200d♂️", + "man_detective_dark_skin_tone": "🕵🏿\u200d♂️", + "man_detective_light_skin_tone": "🕵🏻\u200d♂️", + "man_detective_medium-dark_skin_tone": "🕵🏾\u200d♂️", + "man_detective_medium-light_skin_tone": "🕵🏼\u200d♂️", + "man_detective_medium_skin_tone": "🕵🏽\u200d♂️", + "man_elf": "🧝\u200d♂️", + "man_elf_dark_skin_tone": "🧝🏿\u200d♂️", + "man_elf_light_skin_tone": "🧝🏻\u200d♂️", + "man_elf_medium-dark_skin_tone": "🧝🏾\u200d♂️", + "man_elf_medium-light_skin_tone": "🧝🏼\u200d♂️", + "man_elf_medium_skin_tone": "🧝🏽\u200d♂️", + "man_facepalming": "🤦\u200d♂️", + "man_facepalming_dark_skin_tone": "🤦🏿\u200d♂️", + "man_facepalming_light_skin_tone": "🤦🏻\u200d♂️", + "man_facepalming_medium-dark_skin_tone": "🤦🏾\u200d♂️", + "man_facepalming_medium-light_skin_tone": "🤦🏼\u200d♂️", + "man_facepalming_medium_skin_tone": "🤦🏽\u200d♂️", + "man_factory_worker": "👨\u200d🏭", + "man_factory_worker_dark_skin_tone": "👨🏿\u200d🏭", + "man_factory_worker_light_skin_tone": "👨🏻\u200d🏭", + "man_factory_worker_medium-dark_skin_tone": "👨🏾\u200d🏭", + "man_factory_worker_medium-light_skin_tone": "👨🏼\u200d🏭", + "man_factory_worker_medium_skin_tone": "👨🏽\u200d🏭", + "man_fairy": "🧚\u200d♂️", + "man_fairy_dark_skin_tone": "🧚🏿\u200d♂️", + "man_fairy_light_skin_tone": "🧚🏻\u200d♂️", + "man_fairy_medium-dark_skin_tone": "🧚🏾\u200d♂️", + "man_fairy_medium-light_skin_tone": "🧚🏼\u200d♂️", + "man_fairy_medium_skin_tone": "🧚🏽\u200d♂️", + "man_farmer": "👨\u200d🌾", + "man_farmer_dark_skin_tone": "👨🏿\u200d🌾", + "man_farmer_light_skin_tone": "👨🏻\u200d🌾", + "man_farmer_medium-dark_skin_tone": "👨🏾\u200d🌾", + "man_farmer_medium-light_skin_tone": "👨🏼\u200d🌾", + "man_farmer_medium_skin_tone": "👨🏽\u200d🌾", + "man_firefighter": "👨\u200d🚒", + "man_firefighter_dark_skin_tone": "👨🏿\u200d🚒", + "man_firefighter_light_skin_tone": "👨🏻\u200d🚒", + "man_firefighter_medium-dark_skin_tone": "👨🏾\u200d🚒", + "man_firefighter_medium-light_skin_tone": "👨🏼\u200d🚒", + "man_firefighter_medium_skin_tone": "👨🏽\u200d🚒", + "man_frowning": "🙍\u200d♂️", + "man_frowning_dark_skin_tone": "🙍🏿\u200d♂️", + "man_frowning_light_skin_tone": "🙍🏻\u200d♂️", + "man_frowning_medium-dark_skin_tone": "🙍🏾\u200d♂️", + "man_frowning_medium-light_skin_tone": "🙍🏼\u200d♂️", + "man_frowning_medium_skin_tone": "🙍🏽\u200d♂️", + "man_genie": "🧞\u200d♂️", + "man_gesturing_no": "🙅\u200d♂️", + "man_gesturing_no_dark_skin_tone": "🙅🏿\u200d♂️", + "man_gesturing_no_light_skin_tone": "🙅🏻\u200d♂️", + "man_gesturing_no_medium-dark_skin_tone": "🙅🏾\u200d♂️", + "man_gesturing_no_medium-light_skin_tone": "🙅🏼\u200d♂️", + "man_gesturing_no_medium_skin_tone": "🙅🏽\u200d♂️", + "man_gesturing_ok": "🙆\u200d♂️", + "man_gesturing_ok_dark_skin_tone": "🙆🏿\u200d♂️", + "man_gesturing_ok_light_skin_tone": "🙆🏻\u200d♂️", + "man_gesturing_ok_medium-dark_skin_tone": "🙆🏾\u200d♂️", + "man_gesturing_ok_medium-light_skin_tone": "🙆🏼\u200d♂️", + "man_gesturing_ok_medium_skin_tone": "🙆🏽\u200d♂️", + "man_getting_haircut": "💇\u200d♂️", + "man_getting_haircut_dark_skin_tone": "💇🏿\u200d♂️", + "man_getting_haircut_light_skin_tone": "💇🏻\u200d♂️", + "man_getting_haircut_medium-dark_skin_tone": "💇🏾\u200d♂️", + "man_getting_haircut_medium-light_skin_tone": "💇🏼\u200d♂️", + "man_getting_haircut_medium_skin_tone": "💇🏽\u200d♂️", + "man_getting_massage": "💆\u200d♂️", + "man_getting_massage_dark_skin_tone": "💆🏿\u200d♂️", + "man_getting_massage_light_skin_tone": "💆🏻\u200d♂️", + "man_getting_massage_medium-dark_skin_tone": "💆🏾\u200d♂️", + "man_getting_massage_medium-light_skin_tone": "💆🏼\u200d♂️", + "man_getting_massage_medium_skin_tone": "💆🏽\u200d♂️", + "man_golfing": "🏌️\u200d♂️", + "man_golfing_dark_skin_tone": "🏌🏿\u200d♂️", + "man_golfing_light_skin_tone": "🏌🏻\u200d♂️", + "man_golfing_medium-dark_skin_tone": "🏌🏾\u200d♂️", + "man_golfing_medium-light_skin_tone": "🏌🏼\u200d♂️", + "man_golfing_medium_skin_tone": "🏌🏽\u200d♂️", + "man_guard": "💂\u200d♂️", + "man_guard_dark_skin_tone": "💂🏿\u200d♂️", + "man_guard_light_skin_tone": "💂🏻\u200d♂️", + "man_guard_medium-dark_skin_tone": "💂🏾\u200d♂️", + "man_guard_medium-light_skin_tone": "💂🏼\u200d♂️", + "man_guard_medium_skin_tone": "💂🏽\u200d♂️", + "man_health_worker": "👨\u200d⚕️", + "man_health_worker_dark_skin_tone": "👨🏿\u200d⚕️", + "man_health_worker_light_skin_tone": "👨🏻\u200d⚕️", + "man_health_worker_medium-dark_skin_tone": "👨🏾\u200d⚕️", + "man_health_worker_medium-light_skin_tone": "👨🏼\u200d⚕️", + "man_health_worker_medium_skin_tone": "👨🏽\u200d⚕️", + "man_in_lotus_position": "🧘\u200d♂️", + "man_in_lotus_position_dark_skin_tone": "🧘🏿\u200d♂️", + "man_in_lotus_position_light_skin_tone": "🧘🏻\u200d♂️", + "man_in_lotus_position_medium-dark_skin_tone": "🧘🏾\u200d♂️", + "man_in_lotus_position_medium-light_skin_tone": "🧘🏼\u200d♂️", + "man_in_lotus_position_medium_skin_tone": "🧘🏽\u200d♂️", + "man_in_manual_wheelchair": "👨\u200d🦽", + "man_in_motorized_wheelchair": "👨\u200d🦼", + "man_in_steamy_room": "🧖\u200d♂️", + "man_in_steamy_room_dark_skin_tone": "🧖🏿\u200d♂️", + "man_in_steamy_room_light_skin_tone": "🧖🏻\u200d♂️", + "man_in_steamy_room_medium-dark_skin_tone": "🧖🏾\u200d♂️", + "man_in_steamy_room_medium-light_skin_tone": "🧖🏼\u200d♂️", + "man_in_steamy_room_medium_skin_tone": "🧖🏽\u200d♂️", + "man_in_suit_levitating": "🕴", + "man_in_suit_levitating_dark_skin_tone": "🕴🏿", + "man_in_suit_levitating_light_skin_tone": "🕴🏻", + "man_in_suit_levitating_medium-dark_skin_tone": "🕴🏾", + "man_in_suit_levitating_medium-light_skin_tone": "🕴🏼", + "man_in_suit_levitating_medium_skin_tone": "🕴🏽", + "man_in_tuxedo": "🤵", + "man_in_tuxedo_dark_skin_tone": "🤵🏿", + "man_in_tuxedo_light_skin_tone": "🤵🏻", + "man_in_tuxedo_medium-dark_skin_tone": "🤵🏾", + "man_in_tuxedo_medium-light_skin_tone": "🤵🏼", + "man_in_tuxedo_medium_skin_tone": "🤵🏽", + "man_judge": "👨\u200d⚖️", + "man_judge_dark_skin_tone": "👨🏿\u200d⚖️", + "man_judge_light_skin_tone": "👨🏻\u200d⚖️", + "man_judge_medium-dark_skin_tone": "👨🏾\u200d⚖️", + "man_judge_medium-light_skin_tone": "👨🏼\u200d⚖️", + "man_judge_medium_skin_tone": "👨🏽\u200d⚖️", + "man_juggling": "🤹\u200d♂️", + "man_juggling_dark_skin_tone": "🤹🏿\u200d♂️", + "man_juggling_light_skin_tone": "🤹🏻\u200d♂️", + "man_juggling_medium-dark_skin_tone": "🤹🏾\u200d♂️", + "man_juggling_medium-light_skin_tone": "🤹🏼\u200d♂️", + "man_juggling_medium_skin_tone": "🤹🏽\u200d♂️", + "man_lifting_weights": "🏋️\u200d♂️", + "man_lifting_weights_dark_skin_tone": "🏋🏿\u200d♂️", + "man_lifting_weights_light_skin_tone": "🏋🏻\u200d♂️", + "man_lifting_weights_medium-dark_skin_tone": "🏋🏾\u200d♂️", + "man_lifting_weights_medium-light_skin_tone": "🏋🏼\u200d♂️", + "man_lifting_weights_medium_skin_tone": "🏋🏽\u200d♂️", + "man_light_skin_tone": "👨🏻", + "man_mage": "🧙\u200d♂️", + "man_mage_dark_skin_tone": "🧙🏿\u200d♂️", + "man_mage_light_skin_tone": "🧙🏻\u200d♂️", + "man_mage_medium-dark_skin_tone": "🧙🏾\u200d♂️", + "man_mage_medium-light_skin_tone": "🧙🏼\u200d♂️", + "man_mage_medium_skin_tone": "🧙🏽\u200d♂️", + "man_mechanic": "👨\u200d🔧", + "man_mechanic_dark_skin_tone": "👨🏿\u200d🔧", + "man_mechanic_light_skin_tone": "👨🏻\u200d🔧", + "man_mechanic_medium-dark_skin_tone": "👨🏾\u200d🔧", + "man_mechanic_medium-light_skin_tone": "👨🏼\u200d🔧", + "man_mechanic_medium_skin_tone": "👨🏽\u200d🔧", + "man_medium-dark_skin_tone": "👨🏾", + "man_medium-light_skin_tone": "👨🏼", + "man_medium_skin_tone": "👨🏽", + "man_mountain_biking": "🚵\u200d♂️", + "man_mountain_biking_dark_skin_tone": "🚵🏿\u200d♂️", + "man_mountain_biking_light_skin_tone": "🚵🏻\u200d♂️", + "man_mountain_biking_medium-dark_skin_tone": "🚵🏾\u200d♂️", + "man_mountain_biking_medium-light_skin_tone": "🚵🏼\u200d♂️", + "man_mountain_biking_medium_skin_tone": "🚵🏽\u200d♂️", + "man_office_worker": "👨\u200d💼", + "man_office_worker_dark_skin_tone": "👨🏿\u200d💼", + "man_office_worker_light_skin_tone": "👨🏻\u200d💼", + "man_office_worker_medium-dark_skin_tone": "👨🏾\u200d💼", + "man_office_worker_medium-light_skin_tone": "👨🏼\u200d💼", + "man_office_worker_medium_skin_tone": "👨🏽\u200d💼", + "man_pilot": "👨\u200d✈️", + "man_pilot_dark_skin_tone": "👨🏿\u200d✈️", + "man_pilot_light_skin_tone": "👨🏻\u200d✈️", + "man_pilot_medium-dark_skin_tone": "👨🏾\u200d✈️", + "man_pilot_medium-light_skin_tone": "👨🏼\u200d✈️", + "man_pilot_medium_skin_tone": "👨🏽\u200d✈️", + "man_playing_handball": "🤾\u200d♂️", + "man_playing_handball_dark_skin_tone": "🤾🏿\u200d♂️", + "man_playing_handball_light_skin_tone": "🤾🏻\u200d♂️", + "man_playing_handball_medium-dark_skin_tone": "🤾🏾\u200d♂️", + "man_playing_handball_medium-light_skin_tone": "🤾🏼\u200d♂️", + "man_playing_handball_medium_skin_tone": "🤾🏽\u200d♂️", + "man_playing_water_polo": "🤽\u200d♂️", + "man_playing_water_polo_dark_skin_tone": "🤽🏿\u200d♂️", + "man_playing_water_polo_light_skin_tone": "🤽🏻\u200d♂️", + "man_playing_water_polo_medium-dark_skin_tone": "🤽🏾\u200d♂️", + "man_playing_water_polo_medium-light_skin_tone": "🤽🏼\u200d♂️", + "man_playing_water_polo_medium_skin_tone": "🤽🏽\u200d♂️", + "man_police_officer": "👮\u200d♂️", + "man_police_officer_dark_skin_tone": "👮🏿\u200d♂️", + "man_police_officer_light_skin_tone": "👮🏻\u200d♂️", + "man_police_officer_medium-dark_skin_tone": "👮🏾\u200d♂️", + "man_police_officer_medium-light_skin_tone": "👮🏼\u200d♂️", + "man_police_officer_medium_skin_tone": "👮🏽\u200d♂️", + "man_pouting": "🙎\u200d♂️", + "man_pouting_dark_skin_tone": "🙎🏿\u200d♂️", + "man_pouting_light_skin_tone": "🙎🏻\u200d♂️", + "man_pouting_medium-dark_skin_tone": "🙎🏾\u200d♂️", + "man_pouting_medium-light_skin_tone": "🙎🏼\u200d♂️", + "man_pouting_medium_skin_tone": "🙎🏽\u200d♂️", + "man_raising_hand": "🙋\u200d♂️", + "man_raising_hand_dark_skin_tone": "🙋🏿\u200d♂️", + "man_raising_hand_light_skin_tone": "🙋🏻\u200d♂️", + "man_raising_hand_medium-dark_skin_tone": "🙋🏾\u200d♂️", + "man_raising_hand_medium-light_skin_tone": "🙋🏼\u200d♂️", + "man_raising_hand_medium_skin_tone": "🙋🏽\u200d♂️", + "man_rowing_boat": "🚣\u200d♂️", + "man_rowing_boat_dark_skin_tone": "🚣🏿\u200d♂️", + "man_rowing_boat_light_skin_tone": "🚣🏻\u200d♂️", + "man_rowing_boat_medium-dark_skin_tone": "🚣🏾\u200d♂️", + "man_rowing_boat_medium-light_skin_tone": "🚣🏼\u200d♂️", + "man_rowing_boat_medium_skin_tone": "🚣🏽\u200d♂️", + "man_running": "🏃\u200d♂️", + "man_running_dark_skin_tone": "🏃🏿\u200d♂️", + "man_running_light_skin_tone": "🏃🏻\u200d♂️", + "man_running_medium-dark_skin_tone": "🏃🏾\u200d♂️", + "man_running_medium-light_skin_tone": "🏃🏼\u200d♂️", + "man_running_medium_skin_tone": "🏃🏽\u200d♂️", + "man_scientist": "👨\u200d🔬", + "man_scientist_dark_skin_tone": "👨🏿\u200d🔬", + "man_scientist_light_skin_tone": "👨🏻\u200d🔬", + "man_scientist_medium-dark_skin_tone": "👨🏾\u200d🔬", + "man_scientist_medium-light_skin_tone": "👨🏼\u200d🔬", + "man_scientist_medium_skin_tone": "👨🏽\u200d🔬", + "man_shrugging": "🤷\u200d♂️", + "man_shrugging_dark_skin_tone": "🤷🏿\u200d♂️", + "man_shrugging_light_skin_tone": "🤷🏻\u200d♂️", + "man_shrugging_medium-dark_skin_tone": "🤷🏾\u200d♂️", + "man_shrugging_medium-light_skin_tone": "🤷🏼\u200d♂️", + "man_shrugging_medium_skin_tone": "🤷🏽\u200d♂️", + "man_singer": "👨\u200d🎤", + "man_singer_dark_skin_tone": "👨🏿\u200d🎤", + "man_singer_light_skin_tone": "👨🏻\u200d🎤", + "man_singer_medium-dark_skin_tone": "👨🏾\u200d🎤", + "man_singer_medium-light_skin_tone": "👨🏼\u200d🎤", + "man_singer_medium_skin_tone": "👨🏽\u200d🎤", + "man_student": "👨\u200d🎓", + "man_student_dark_skin_tone": "👨🏿\u200d🎓", + "man_student_light_skin_tone": "👨🏻\u200d🎓", + "man_student_medium-dark_skin_tone": "👨🏾\u200d🎓", + "man_student_medium-light_skin_tone": "👨🏼\u200d🎓", + "man_student_medium_skin_tone": "👨🏽\u200d🎓", + "man_surfing": "🏄\u200d♂️", + "man_surfing_dark_skin_tone": "🏄🏿\u200d♂️", + "man_surfing_light_skin_tone": "🏄🏻\u200d♂️", + "man_surfing_medium-dark_skin_tone": "🏄🏾\u200d♂️", + "man_surfing_medium-light_skin_tone": "🏄🏼\u200d♂️", + "man_surfing_medium_skin_tone": "🏄🏽\u200d♂️", + "man_swimming": "🏊\u200d♂️", + "man_swimming_dark_skin_tone": "🏊🏿\u200d♂️", + "man_swimming_light_skin_tone": "🏊🏻\u200d♂️", + "man_swimming_medium-dark_skin_tone": "🏊🏾\u200d♂️", + "man_swimming_medium-light_skin_tone": "🏊🏼\u200d♂️", + "man_swimming_medium_skin_tone": "🏊🏽\u200d♂️", + "man_teacher": "👨\u200d🏫", + "man_teacher_dark_skin_tone": "👨🏿\u200d🏫", + "man_teacher_light_skin_tone": "👨🏻\u200d🏫", + "man_teacher_medium-dark_skin_tone": "👨🏾\u200d🏫", + "man_teacher_medium-light_skin_tone": "👨🏼\u200d🏫", + "man_teacher_medium_skin_tone": "👨🏽\u200d🏫", + "man_technologist": "👨\u200d💻", + "man_technologist_dark_skin_tone": "👨🏿\u200d💻", + "man_technologist_light_skin_tone": "👨🏻\u200d💻", + "man_technologist_medium-dark_skin_tone": "👨🏾\u200d💻", + "man_technologist_medium-light_skin_tone": "👨🏼\u200d💻", + "man_technologist_medium_skin_tone": "👨🏽\u200d💻", + "man_tipping_hand": "💁\u200d♂️", + "man_tipping_hand_dark_skin_tone": "💁🏿\u200d♂️", + "man_tipping_hand_light_skin_tone": "💁🏻\u200d♂️", + "man_tipping_hand_medium-dark_skin_tone": "💁🏾\u200d♂️", + "man_tipping_hand_medium-light_skin_tone": "💁🏼\u200d♂️", + "man_tipping_hand_medium_skin_tone": "💁🏽\u200d♂️", + "man_vampire": "🧛\u200d♂️", + "man_vampire_dark_skin_tone": "🧛🏿\u200d♂️", + "man_vampire_light_skin_tone": "🧛🏻\u200d♂️", + "man_vampire_medium-dark_skin_tone": "🧛🏾\u200d♂️", + "man_vampire_medium-light_skin_tone": "🧛🏼\u200d♂️", + "man_vampire_medium_skin_tone": "🧛🏽\u200d♂️", + "man_walking": "🚶\u200d♂️", + "man_walking_dark_skin_tone": "🚶🏿\u200d♂️", + "man_walking_light_skin_tone": "🚶🏻\u200d♂️", + "man_walking_medium-dark_skin_tone": "🚶🏾\u200d♂️", + "man_walking_medium-light_skin_tone": "🚶🏼\u200d♂️", + "man_walking_medium_skin_tone": "🚶🏽\u200d♂️", + "man_wearing_turban": "👳\u200d♂️", + "man_wearing_turban_dark_skin_tone": "👳🏿\u200d♂️", + "man_wearing_turban_light_skin_tone": "👳🏻\u200d♂️", + "man_wearing_turban_medium-dark_skin_tone": "👳🏾\u200d♂️", + "man_wearing_turban_medium-light_skin_tone": "👳🏼\u200d♂️", + "man_wearing_turban_medium_skin_tone": "👳🏽\u200d♂️", + "man_with_probing_cane": "👨\u200d🦯", + "man_with_chinese_cap": "👲", + "man_with_chinese_cap_dark_skin_tone": "👲🏿", + "man_with_chinese_cap_light_skin_tone": "👲🏻", + "man_with_chinese_cap_medium-dark_skin_tone": "👲🏾", + "man_with_chinese_cap_medium-light_skin_tone": "👲🏼", + "man_with_chinese_cap_medium_skin_tone": "👲🏽", + "man_zombie": "🧟\u200d♂️", + "mango": "🥭", + "mantelpiece_clock": "🕰", + "manual_wheelchair": "🦽", + "man’s_shoe": "👞", + "map_of_japan": "🗾", + "maple_leaf": "🍁", + "martial_arts_uniform": "🥋", + "mate": "🧉", + "meat_on_bone": "🍖", + "mechanical_arm": "🦾", + "mechanical_leg": "🦿", + "medical_symbol": "⚕", + "megaphone": "📣", + "melon": "🍈", + "memo": "📝", + "men_with_bunny_ears": "👯\u200d♂️", + "men_wrestling": "🤼\u200d♂️", + "menorah": "🕎", + "men’s_room": "🚹", + "mermaid": "🧜\u200d♀️", + "mermaid_dark_skin_tone": "🧜🏿\u200d♀️", + "mermaid_light_skin_tone": "🧜🏻\u200d♀️", + "mermaid_medium-dark_skin_tone": "🧜🏾\u200d♀️", + "mermaid_medium-light_skin_tone": "🧜🏼\u200d♀️", + "mermaid_medium_skin_tone": "🧜🏽\u200d♀️", + "merman": "🧜\u200d♂️", + "merman_dark_skin_tone": "🧜🏿\u200d♂️", + "merman_light_skin_tone": "🧜🏻\u200d♂️", + "merman_medium-dark_skin_tone": "🧜🏾\u200d♂️", + "merman_medium-light_skin_tone": "🧜🏼\u200d♂️", + "merman_medium_skin_tone": "🧜🏽\u200d♂️", + "merperson": "🧜", + "merperson_dark_skin_tone": "🧜🏿", + "merperson_light_skin_tone": "🧜🏻", + "merperson_medium-dark_skin_tone": "🧜🏾", + "merperson_medium-light_skin_tone": "🧜🏼", + "merperson_medium_skin_tone": "🧜🏽", + "metro": "🚇", + "microbe": "🦠", + "microphone": "🎤", + "microscope": "🔬", + "middle_finger": "🖕", + "middle_finger_dark_skin_tone": "🖕🏿", + "middle_finger_light_skin_tone": "🖕🏻", + "middle_finger_medium-dark_skin_tone": "🖕🏾", + "middle_finger_medium-light_skin_tone": "🖕🏼", + "middle_finger_medium_skin_tone": "🖕🏽", + "military_medal": "🎖", + "milky_way": "🌌", + "minibus": "🚐", + "moai": "🗿", + "mobile_phone": "📱", + "mobile_phone_off": "📴", + "mobile_phone_with_arrow": "📲", + "money-mouth_face": "🤑", + "money_bag": "💰", + "money_with_wings": "💸", + "monkey": "🐒", + "monkey_face": "🐵", + "monorail": "🚝", + "moon_cake": "🥮", + "moon_viewing_ceremony": "🎑", + "mosque": "🕌", + "mosquito": "🦟", + "motor_boat": "🛥", + "motor_scooter": "🛵", + "motorcycle": "🏍", + "motorized_wheelchair": "🦼", + "motorway": "🛣", + "mount_fuji": "🗻", + "mountain": "⛰", + "mountain_cableway": "🚠", + "mountain_railway": "🚞", + "mouse": "🐭", + "mouse_face": "🐭", + "mouth": "👄", + "movie_camera": "🎥", + "mushroom": "🍄", + "musical_keyboard": "🎹", + "musical_note": "🎵", + "musical_notes": "🎶", + "musical_score": "🎼", + "muted_speaker": "🔇", + "nail_polish": "💅", + "nail_polish_dark_skin_tone": "💅🏿", + "nail_polish_light_skin_tone": "💅🏻", + "nail_polish_medium-dark_skin_tone": "💅🏾", + "nail_polish_medium-light_skin_tone": "💅🏼", + "nail_polish_medium_skin_tone": "💅🏽", + "name_badge": "📛", + "national_park": "🏞", + "nauseated_face": "🤢", + "nazar_amulet": "🧿", + "necktie": "👔", + "nerd_face": "🤓", + "neutral_face": "😐", + "new_moon": "🌑", + "new_moon_face": "🌚", + "newspaper": "📰", + "next_track_button": "⏭", + "night_with_stars": "🌃", + "nine-thirty": "🕤", + "nine_o’clock": "🕘", + "no_bicycles": "🚳", + "no_entry": "⛔", + "no_littering": "🚯", + "no_mobile_phones": "📵", + "no_one_under_eighteen": "🔞", + "no_pedestrians": "🚷", + "no_smoking": "🚭", + "non-potable_water": "🚱", + "nose": "👃", + "nose_dark_skin_tone": "👃🏿", + "nose_light_skin_tone": "👃🏻", + "nose_medium-dark_skin_tone": "👃🏾", + "nose_medium-light_skin_tone": "👃🏼", + "nose_medium_skin_tone": "👃🏽", + "notebook": "📓", + "notebook_with_decorative_cover": "📔", + "nut_and_bolt": "🔩", + "octopus": "🐙", + "oden": "🍢", + "office_building": "🏢", + "ogre": "👹", + "oil_drum": "🛢", + "old_key": "🗝", + "old_man": "👴", + "old_man_dark_skin_tone": "👴🏿", + "old_man_light_skin_tone": "👴🏻", + "old_man_medium-dark_skin_tone": "👴🏾", + "old_man_medium-light_skin_tone": "👴🏼", + "old_man_medium_skin_tone": "👴🏽", + "old_woman": "👵", + "old_woman_dark_skin_tone": "👵🏿", + "old_woman_light_skin_tone": "👵🏻", + "old_woman_medium-dark_skin_tone": "👵🏾", + "old_woman_medium-light_skin_tone": "👵🏼", + "old_woman_medium_skin_tone": "👵🏽", + "older_adult": "🧓", + "older_adult_dark_skin_tone": "🧓🏿", + "older_adult_light_skin_tone": "🧓🏻", + "older_adult_medium-dark_skin_tone": "🧓🏾", + "older_adult_medium-light_skin_tone": "🧓🏼", + "older_adult_medium_skin_tone": "🧓🏽", + "om": "🕉", + "oncoming_automobile": "🚘", + "oncoming_bus": "🚍", + "oncoming_fist": "👊", + "oncoming_fist_dark_skin_tone": "👊🏿", + "oncoming_fist_light_skin_tone": "👊🏻", + "oncoming_fist_medium-dark_skin_tone": "👊🏾", + "oncoming_fist_medium-light_skin_tone": "👊🏼", + "oncoming_fist_medium_skin_tone": "👊🏽", + "oncoming_police_car": "🚔", + "oncoming_taxi": "🚖", + "one-piece_swimsuit": "🩱", + "one-thirty": "🕜", + "one_o’clock": "🕐", + "onion": "🧅", + "open_book": "📖", + "open_file_folder": "📂", + "open_hands": "👐", + "open_hands_dark_skin_tone": "👐🏿", + "open_hands_light_skin_tone": "👐🏻", + "open_hands_medium-dark_skin_tone": "👐🏾", + "open_hands_medium-light_skin_tone": "👐🏼", + "open_hands_medium_skin_tone": "👐🏽", + "open_mailbox_with_lowered_flag": "📭", + "open_mailbox_with_raised_flag": "📬", + "optical_disk": "💿", + "orange_book": "📙", + "orange_circle": "🟠", + "orange_heart": "🧡", + "orange_square": "🟧", + "orangutan": "🦧", + "orthodox_cross": "☦", + "otter": "🦦", + "outbox_tray": "📤", + "owl": "🦉", + "ox": "🐂", + "oyster": "🦪", + "package": "📦", + "page_facing_up": "📄", + "page_with_curl": "📃", + "pager": "📟", + "paintbrush": "🖌", + "palm_tree": "🌴", + "palms_up_together": "🤲", + "palms_up_together_dark_skin_tone": "🤲🏿", + "palms_up_together_light_skin_tone": "🤲🏻", + "palms_up_together_medium-dark_skin_tone": "🤲🏾", + "palms_up_together_medium-light_skin_tone": "🤲🏼", + "palms_up_together_medium_skin_tone": "🤲🏽", + "pancakes": "🥞", + "panda_face": "🐼", + "paperclip": "📎", + "parrot": "🦜", + "part_alternation_mark": "〽", + "party_popper": "🎉", + "partying_face": "🥳", + "passenger_ship": "🛳", + "passport_control": "🛂", + "pause_button": "⏸", + "paw_prints": "🐾", + "peace_symbol": "☮", + "peach": "🍑", + "peacock": "🦚", + "peanuts": "🥜", + "pear": "🍐", + "pen": "🖊", + "pencil": "📝", + "penguin": "🐧", + "pensive_face": "😔", + "people_holding_hands": "🧑\u200d🤝\u200d🧑", + "people_with_bunny_ears": "👯", + "people_wrestling": "🤼", + "performing_arts": "🎭", + "persevering_face": "😣", + "person_biking": "🚴", + "person_biking_dark_skin_tone": "🚴🏿", + "person_biking_light_skin_tone": "🚴🏻", + "person_biking_medium-dark_skin_tone": "🚴🏾", + "person_biking_medium-light_skin_tone": "🚴🏼", + "person_biking_medium_skin_tone": "🚴🏽", + "person_bouncing_ball": "⛹", + "person_bouncing_ball_dark_skin_tone": "⛹🏿", + "person_bouncing_ball_light_skin_tone": "⛹🏻", + "person_bouncing_ball_medium-dark_skin_tone": "⛹🏾", + "person_bouncing_ball_medium-light_skin_tone": "⛹🏼", + "person_bouncing_ball_medium_skin_tone": "⛹🏽", + "person_bowing": "🙇", + "person_bowing_dark_skin_tone": "🙇🏿", + "person_bowing_light_skin_tone": "🙇🏻", + "person_bowing_medium-dark_skin_tone": "🙇🏾", + "person_bowing_medium-light_skin_tone": "🙇🏼", + "person_bowing_medium_skin_tone": "🙇🏽", + "person_cartwheeling": "🤸", + "person_cartwheeling_dark_skin_tone": "🤸🏿", + "person_cartwheeling_light_skin_tone": "🤸🏻", + "person_cartwheeling_medium-dark_skin_tone": "🤸🏾", + "person_cartwheeling_medium-light_skin_tone": "🤸🏼", + "person_cartwheeling_medium_skin_tone": "🤸🏽", + "person_climbing": "🧗", + "person_climbing_dark_skin_tone": "🧗🏿", + "person_climbing_light_skin_tone": "🧗🏻", + "person_climbing_medium-dark_skin_tone": "🧗🏾", + "person_climbing_medium-light_skin_tone": "🧗🏼", + "person_climbing_medium_skin_tone": "🧗🏽", + "person_facepalming": "🤦", + "person_facepalming_dark_skin_tone": "🤦🏿", + "person_facepalming_light_skin_tone": "🤦🏻", + "person_facepalming_medium-dark_skin_tone": "🤦🏾", + "person_facepalming_medium-light_skin_tone": "🤦🏼", + "person_facepalming_medium_skin_tone": "🤦🏽", + "person_fencing": "🤺", + "person_frowning": "🙍", + "person_frowning_dark_skin_tone": "🙍🏿", + "person_frowning_light_skin_tone": "🙍🏻", + "person_frowning_medium-dark_skin_tone": "🙍🏾", + "person_frowning_medium-light_skin_tone": "🙍🏼", + "person_frowning_medium_skin_tone": "🙍🏽", + "person_gesturing_no": "🙅", + "person_gesturing_no_dark_skin_tone": "🙅🏿", + "person_gesturing_no_light_skin_tone": "🙅🏻", + "person_gesturing_no_medium-dark_skin_tone": "🙅🏾", + "person_gesturing_no_medium-light_skin_tone": "🙅🏼", + "person_gesturing_no_medium_skin_tone": "🙅🏽", + "person_gesturing_ok": "🙆", + "person_gesturing_ok_dark_skin_tone": "🙆🏿", + "person_gesturing_ok_light_skin_tone": "🙆🏻", + "person_gesturing_ok_medium-dark_skin_tone": "🙆🏾", + "person_gesturing_ok_medium-light_skin_tone": "🙆🏼", + "person_gesturing_ok_medium_skin_tone": "🙆🏽", + "person_getting_haircut": "💇", + "person_getting_haircut_dark_skin_tone": "💇🏿", + "person_getting_haircut_light_skin_tone": "💇🏻", + "person_getting_haircut_medium-dark_skin_tone": "💇🏾", + "person_getting_haircut_medium-light_skin_tone": "💇🏼", + "person_getting_haircut_medium_skin_tone": "💇🏽", + "person_getting_massage": "💆", + "person_getting_massage_dark_skin_tone": "💆🏿", + "person_getting_massage_light_skin_tone": "💆🏻", + "person_getting_massage_medium-dark_skin_tone": "💆🏾", + "person_getting_massage_medium-light_skin_tone": "💆🏼", + "person_getting_massage_medium_skin_tone": "💆🏽", + "person_golfing": "🏌", + "person_golfing_dark_skin_tone": "🏌🏿", + "person_golfing_light_skin_tone": "🏌🏻", + "person_golfing_medium-dark_skin_tone": "🏌🏾", + "person_golfing_medium-light_skin_tone": "🏌🏼", + "person_golfing_medium_skin_tone": "🏌🏽", + "person_in_bed": "🛌", + "person_in_bed_dark_skin_tone": "🛌🏿", + "person_in_bed_light_skin_tone": "🛌🏻", + "person_in_bed_medium-dark_skin_tone": "🛌🏾", + "person_in_bed_medium-light_skin_tone": "🛌🏼", + "person_in_bed_medium_skin_tone": "🛌🏽", + "person_in_lotus_position": "🧘", + "person_in_lotus_position_dark_skin_tone": "🧘🏿", + "person_in_lotus_position_light_skin_tone": "🧘🏻", + "person_in_lotus_position_medium-dark_skin_tone": "🧘🏾", + "person_in_lotus_position_medium-light_skin_tone": "🧘🏼", + "person_in_lotus_position_medium_skin_tone": "🧘🏽", + "person_in_steamy_room": "🧖", + "person_in_steamy_room_dark_skin_tone": "🧖🏿", + "person_in_steamy_room_light_skin_tone": "🧖🏻", + "person_in_steamy_room_medium-dark_skin_tone": "🧖🏾", + "person_in_steamy_room_medium-light_skin_tone": "🧖🏼", + "person_in_steamy_room_medium_skin_tone": "🧖🏽", + "person_juggling": "🤹", + "person_juggling_dark_skin_tone": "🤹🏿", + "person_juggling_light_skin_tone": "🤹🏻", + "person_juggling_medium-dark_skin_tone": "🤹🏾", + "person_juggling_medium-light_skin_tone": "🤹🏼", + "person_juggling_medium_skin_tone": "🤹🏽", + "person_kneeling": "🧎", + "person_lifting_weights": "🏋", + "person_lifting_weights_dark_skin_tone": "🏋🏿", + "person_lifting_weights_light_skin_tone": "🏋🏻", + "person_lifting_weights_medium-dark_skin_tone": "🏋🏾", + "person_lifting_weights_medium-light_skin_tone": "🏋🏼", + "person_lifting_weights_medium_skin_tone": "🏋🏽", + "person_mountain_biking": "🚵", + "person_mountain_biking_dark_skin_tone": "🚵🏿", + "person_mountain_biking_light_skin_tone": "🚵🏻", + "person_mountain_biking_medium-dark_skin_tone": "🚵🏾", + "person_mountain_biking_medium-light_skin_tone": "🚵🏼", + "person_mountain_biking_medium_skin_tone": "🚵🏽", + "person_playing_handball": "🤾", + "person_playing_handball_dark_skin_tone": "🤾🏿", + "person_playing_handball_light_skin_tone": "🤾🏻", + "person_playing_handball_medium-dark_skin_tone": "🤾🏾", + "person_playing_handball_medium-light_skin_tone": "🤾🏼", + "person_playing_handball_medium_skin_tone": "🤾🏽", + "person_playing_water_polo": "🤽", + "person_playing_water_polo_dark_skin_tone": "🤽🏿", + "person_playing_water_polo_light_skin_tone": "🤽🏻", + "person_playing_water_polo_medium-dark_skin_tone": "🤽🏾", + "person_playing_water_polo_medium-light_skin_tone": "🤽🏼", + "person_playing_water_polo_medium_skin_tone": "🤽🏽", + "person_pouting": "🙎", + "person_pouting_dark_skin_tone": "🙎🏿", + "person_pouting_light_skin_tone": "🙎🏻", + "person_pouting_medium-dark_skin_tone": "🙎🏾", + "person_pouting_medium-light_skin_tone": "🙎🏼", + "person_pouting_medium_skin_tone": "🙎🏽", + "person_raising_hand": "🙋", + "person_raising_hand_dark_skin_tone": "🙋🏿", + "person_raising_hand_light_skin_tone": "🙋🏻", + "person_raising_hand_medium-dark_skin_tone": "🙋🏾", + "person_raising_hand_medium-light_skin_tone": "🙋🏼", + "person_raising_hand_medium_skin_tone": "🙋🏽", + "person_rowing_boat": "🚣", + "person_rowing_boat_dark_skin_tone": "🚣🏿", + "person_rowing_boat_light_skin_tone": "🚣🏻", + "person_rowing_boat_medium-dark_skin_tone": "🚣🏾", + "person_rowing_boat_medium-light_skin_tone": "🚣🏼", + "person_rowing_boat_medium_skin_tone": "🚣🏽", + "person_running": "🏃", + "person_running_dark_skin_tone": "🏃🏿", + "person_running_light_skin_tone": "🏃🏻", + "person_running_medium-dark_skin_tone": "🏃🏾", + "person_running_medium-light_skin_tone": "🏃🏼", + "person_running_medium_skin_tone": "🏃🏽", + "person_shrugging": "🤷", + "person_shrugging_dark_skin_tone": "🤷🏿", + "person_shrugging_light_skin_tone": "🤷🏻", + "person_shrugging_medium-dark_skin_tone": "🤷🏾", + "person_shrugging_medium-light_skin_tone": "🤷🏼", + "person_shrugging_medium_skin_tone": "🤷🏽", + "person_standing": "🧍", + "person_surfing": "🏄", + "person_surfing_dark_skin_tone": "🏄🏿", + "person_surfing_light_skin_tone": "🏄🏻", + "person_surfing_medium-dark_skin_tone": "🏄🏾", + "person_surfing_medium-light_skin_tone": "🏄🏼", + "person_surfing_medium_skin_tone": "🏄🏽", + "person_swimming": "🏊", + "person_swimming_dark_skin_tone": "🏊🏿", + "person_swimming_light_skin_tone": "🏊🏻", + "person_swimming_medium-dark_skin_tone": "🏊🏾", + "person_swimming_medium-light_skin_tone": "🏊🏼", + "person_swimming_medium_skin_tone": "🏊🏽", + "person_taking_bath": "🛀", + "person_taking_bath_dark_skin_tone": "🛀🏿", + "person_taking_bath_light_skin_tone": "🛀🏻", + "person_taking_bath_medium-dark_skin_tone": "🛀🏾", + "person_taking_bath_medium-light_skin_tone": "🛀🏼", + "person_taking_bath_medium_skin_tone": "🛀🏽", + "person_tipping_hand": "💁", + "person_tipping_hand_dark_skin_tone": "💁🏿", + "person_tipping_hand_light_skin_tone": "💁🏻", + "person_tipping_hand_medium-dark_skin_tone": "💁🏾", + "person_tipping_hand_medium-light_skin_tone": "💁🏼", + "person_tipping_hand_medium_skin_tone": "💁🏽", + "person_walking": "🚶", + "person_walking_dark_skin_tone": "🚶🏿", + "person_walking_light_skin_tone": "🚶🏻", + "person_walking_medium-dark_skin_tone": "🚶🏾", + "person_walking_medium-light_skin_tone": "🚶🏼", + "person_walking_medium_skin_tone": "🚶🏽", + "person_wearing_turban": "👳", + "person_wearing_turban_dark_skin_tone": "👳🏿", + "person_wearing_turban_light_skin_tone": "👳🏻", + "person_wearing_turban_medium-dark_skin_tone": "👳🏾", + "person_wearing_turban_medium-light_skin_tone": "👳🏼", + "person_wearing_turban_medium_skin_tone": "👳🏽", + "petri_dish": "🧫", + "pick": "⛏", + "pie": "🥧", + "pig": "🐷", + "pig_face": "🐷", + "pig_nose": "🐽", + "pile_of_poo": "💩", + "pill": "💊", + "pinching_hand": "🤏", + "pine_decoration": "🎍", + "pineapple": "🍍", + "ping_pong": "🏓", + "pirate_flag": "🏴\u200d☠️", + "pistol": "🔫", + "pizza": "🍕", + "place_of_worship": "🛐", + "play_button": "▶", + "play_or_pause_button": "⏯", + "pleading_face": "🥺", + "police_car": "🚓", + "police_car_light": "🚨", + "police_officer": "👮", + "police_officer_dark_skin_tone": "👮🏿", + "police_officer_light_skin_tone": "👮🏻", + "police_officer_medium-dark_skin_tone": "👮🏾", + "police_officer_medium-light_skin_tone": "👮🏼", + "police_officer_medium_skin_tone": "👮🏽", + "poodle": "🐩", + "pool_8_ball": "🎱", + "popcorn": "🍿", + "post_office": "🏣", + "postal_horn": "📯", + "postbox": "📮", + "pot_of_food": "🍲", + "potable_water": "🚰", + "potato": "🥔", + "poultry_leg": "🍗", + "pound_banknote": "💷", + "pouting_cat_face": "😾", + "pouting_face": "😡", + "prayer_beads": "📿", + "pregnant_woman": "🤰", + "pregnant_woman_dark_skin_tone": "🤰🏿", + "pregnant_woman_light_skin_tone": "🤰🏻", + "pregnant_woman_medium-dark_skin_tone": "🤰🏾", + "pregnant_woman_medium-light_skin_tone": "🤰🏼", + "pregnant_woman_medium_skin_tone": "🤰🏽", + "pretzel": "🥨", + "probing_cane": "🦯", + "prince": "🤴", + "prince_dark_skin_tone": "🤴🏿", + "prince_light_skin_tone": "🤴🏻", + "prince_medium-dark_skin_tone": "🤴🏾", + "prince_medium-light_skin_tone": "🤴🏼", + "prince_medium_skin_tone": "🤴🏽", + "princess": "👸", + "princess_dark_skin_tone": "👸🏿", + "princess_light_skin_tone": "👸🏻", + "princess_medium-dark_skin_tone": "👸🏾", + "princess_medium-light_skin_tone": "👸🏼", + "princess_medium_skin_tone": "👸🏽", + "printer": "🖨", + "prohibited": "🚫", + "purple_circle": "🟣", + "purple_heart": "💜", + "purple_square": "🟪", + "purse": "👛", + "pushpin": "📌", + "question_mark": "❓", + "rabbit": "🐰", + "rabbit_face": "🐰", + "raccoon": "🦝", + "racing_car": "🏎", + "radio": "📻", + "radio_button": "🔘", + "radioactive": "☢", + "railway_car": "🚃", + "railway_track": "🛤", + "rainbow": "🌈", + "rainbow_flag": "🏳️\u200d🌈", + "raised_back_of_hand": "🤚", + "raised_back_of_hand_dark_skin_tone": "🤚🏿", + "raised_back_of_hand_light_skin_tone": "🤚🏻", + "raised_back_of_hand_medium-dark_skin_tone": "🤚🏾", + "raised_back_of_hand_medium-light_skin_tone": "🤚🏼", + "raised_back_of_hand_medium_skin_tone": "🤚🏽", + "raised_fist": "✊", + "raised_fist_dark_skin_tone": "✊🏿", + "raised_fist_light_skin_tone": "✊🏻", + "raised_fist_medium-dark_skin_tone": "✊🏾", + "raised_fist_medium-light_skin_tone": "✊🏼", + "raised_fist_medium_skin_tone": "✊🏽", + "raised_hand": "✋", + "raised_hand_dark_skin_tone": "✋🏿", + "raised_hand_light_skin_tone": "✋🏻", + "raised_hand_medium-dark_skin_tone": "✋🏾", + "raised_hand_medium-light_skin_tone": "✋🏼", + "raised_hand_medium_skin_tone": "✋🏽", + "raising_hands": "🙌", + "raising_hands_dark_skin_tone": "🙌🏿", + "raising_hands_light_skin_tone": "🙌🏻", + "raising_hands_medium-dark_skin_tone": "🙌🏾", + "raising_hands_medium-light_skin_tone": "🙌🏼", + "raising_hands_medium_skin_tone": "🙌🏽", + "ram": "🐏", + "rat": "🐀", + "razor": "🪒", + "ringed_planet": "🪐", + "receipt": "🧾", + "record_button": "⏺", + "recycling_symbol": "♻", + "red_apple": "🍎", + "red_circle": "🔴", + "red_envelope": "🧧", + "red_hair": "🦰", + "red-haired_man": "👨\u200d🦰", + "red-haired_woman": "👩\u200d🦰", + "red_heart": "❤", + "red_paper_lantern": "🏮", + "red_square": "🟥", + "red_triangle_pointed_down": "🔻", + "red_triangle_pointed_up": "🔺", + "registered": "®", + "relieved_face": "😌", + "reminder_ribbon": "🎗", + "repeat_button": "🔁", + "repeat_single_button": "🔂", + "rescue_worker’s_helmet": "⛑", + "restroom": "🚻", + "reverse_button": "◀", + "revolving_hearts": "💞", + "rhinoceros": "🦏", + "ribbon": "🎀", + "rice_ball": "🍙", + "rice_cracker": "🍘", + "right-facing_fist": "🤜", + "right-facing_fist_dark_skin_tone": "🤜🏿", + "right-facing_fist_light_skin_tone": "🤜🏻", + "right-facing_fist_medium-dark_skin_tone": "🤜🏾", + "right-facing_fist_medium-light_skin_tone": "🤜🏼", + "right-facing_fist_medium_skin_tone": "🤜🏽", + "right_anger_bubble": "🗯", + "right_arrow": "➡", + "right_arrow_curving_down": "⤵", + "right_arrow_curving_left": "↩", + "right_arrow_curving_up": "⤴", + "ring": "💍", + "roasted_sweet_potato": "🍠", + "robot_face": "🤖", + "rocket": "🚀", + "roll_of_paper": "🧻", + "rolled-up_newspaper": "🗞", + "roller_coaster": "🎢", + "rolling_on_the_floor_laughing": "🤣", + "rooster": "🐓", + "rose": "🌹", + "rosette": "🏵", + "round_pushpin": "📍", + "rugby_football": "🏉", + "running_shirt": "🎽", + "running_shoe": "👟", + "sad_but_relieved_face": "😥", + "safety_pin": "🧷", + "safety_vest": "🦺", + "salt": "🧂", + "sailboat": "⛵", + "sake": "🍶", + "sandwich": "🥪", + "sari": "🥻", + "satellite": "📡", + "satellite_antenna": "📡", + "sauropod": "🦕", + "saxophone": "🎷", + "scarf": "🧣", + "school": "🏫", + "school_backpack": "🎒", + "scissors": "✂", + "scorpion": "🦂", + "scroll": "📜", + "seat": "💺", + "see-no-evil_monkey": "🙈", + "seedling": "🌱", + "selfie": "🤳", + "selfie_dark_skin_tone": "🤳🏿", + "selfie_light_skin_tone": "🤳🏻", + "selfie_medium-dark_skin_tone": "🤳🏾", + "selfie_medium-light_skin_tone": "🤳🏼", + "selfie_medium_skin_tone": "🤳🏽", + "service_dog": "🐕\u200d🦺", + "seven-thirty": "🕢", + "seven_o’clock": "🕖", + "shallow_pan_of_food": "🥘", + "shamrock": "☘", + "shark": "🦈", + "shaved_ice": "🍧", + "sheaf_of_rice": "🌾", + "shield": "🛡", + "shinto_shrine": "⛩", + "ship": "🚢", + "shooting_star": "🌠", + "shopping_bags": "🛍", + "shopping_cart": "🛒", + "shortcake": "🍰", + "shorts": "🩳", + "shower": "🚿", + "shrimp": "🦐", + "shuffle_tracks_button": "🔀", + "shushing_face": "🤫", + "sign_of_the_horns": "🤘", + "sign_of_the_horns_dark_skin_tone": "🤘🏿", + "sign_of_the_horns_light_skin_tone": "🤘🏻", + "sign_of_the_horns_medium-dark_skin_tone": "🤘🏾", + "sign_of_the_horns_medium-light_skin_tone": "🤘🏼", + "sign_of_the_horns_medium_skin_tone": "🤘🏽", + "six-thirty": "🕡", + "six_o’clock": "🕕", + "skateboard": "🛹", + "skier": "⛷", + "skis": "🎿", + "skull": "💀", + "skull_and_crossbones": "☠", + "skunk": "🦨", + "sled": "🛷", + "sleeping_face": "😴", + "sleepy_face": "😪", + "slightly_frowning_face": "🙁", + "slightly_smiling_face": "🙂", + "slot_machine": "🎰", + "sloth": "🦥", + "small_airplane": "🛩", + "small_blue_diamond": "🔹", + "small_orange_diamond": "🔸", + "smiling_cat_face_with_heart-eyes": "😻", + "smiling_face": "☺", + "smiling_face_with_halo": "😇", + "smiling_face_with_3_hearts": "🥰", + "smiling_face_with_heart-eyes": "😍", + "smiling_face_with_horns": "😈", + "smiling_face_with_smiling_eyes": "😊", + "smiling_face_with_sunglasses": "😎", + "smirking_face": "😏", + "snail": "🐌", + "snake": "🐍", + "sneezing_face": "🤧", + "snow-capped_mountain": "🏔", + "snowboarder": "🏂", + "snowboarder_dark_skin_tone": "🏂🏿", + "snowboarder_light_skin_tone": "🏂🏻", + "snowboarder_medium-dark_skin_tone": "🏂🏾", + "snowboarder_medium-light_skin_tone": "🏂🏼", + "snowboarder_medium_skin_tone": "🏂🏽", + "snowflake": "❄", + "snowman": "☃", + "snowman_without_snow": "⛄", + "soap": "🧼", + "soccer_ball": "⚽", + "socks": "🧦", + "softball": "🥎", + "soft_ice_cream": "🍦", + "spade_suit": "♠", + "spaghetti": "🍝", + "sparkle": "❇", + "sparkler": "🎇", + "sparkles": "✨", + "sparkling_heart": "💖", + "speak-no-evil_monkey": "🙊", + "speaker_high_volume": "🔊", + "speaker_low_volume": "🔈", + "speaker_medium_volume": "🔉", + "speaking_head": "🗣", + "speech_balloon": "💬", + "speedboat": "🚤", + "spider": "🕷", + "spider_web": "🕸", + "spiral_calendar": "🗓", + "spiral_notepad": "🗒", + "spiral_shell": "🐚", + "spoon": "🥄", + "sponge": "🧽", + "sport_utility_vehicle": "🚙", + "sports_medal": "🏅", + "spouting_whale": "🐳", + "squid": "🦑", + "squinting_face_with_tongue": "😝", + "stadium": "🏟", + "star-struck": "🤩", + "star_and_crescent": "☪", + "star_of_david": "✡", + "station": "🚉", + "steaming_bowl": "🍜", + "stethoscope": "🩺", + "stop_button": "⏹", + "stop_sign": "🛑", + "stopwatch": "⏱", + "straight_ruler": "📏", + "strawberry": "🍓", + "studio_microphone": "🎙", + "stuffed_flatbread": "🥙", + "sun": "☀", + "sun_behind_cloud": "⛅", + "sun_behind_large_cloud": "🌥", + "sun_behind_rain_cloud": "🌦", + "sun_behind_small_cloud": "🌤", + "sun_with_face": "🌞", + "sunflower": "🌻", + "sunglasses": "😎", + "sunrise": "🌅", + "sunrise_over_mountains": "🌄", + "sunset": "🌇", + "superhero": "🦸", + "supervillain": "🦹", + "sushi": "🍣", + "suspension_railway": "🚟", + "swan": "🦢", + "sweat_droplets": "💦", + "synagogue": "🕍", + "syringe": "💉", + "t-shirt": "👕", + "taco": "🌮", + "takeout_box": "🥡", + "tanabata_tree": "🎋", + "tangerine": "🍊", + "taxi": "🚕", + "teacup_without_handle": "🍵", + "tear-off_calendar": "📆", + "teddy_bear": "🧸", + "telephone": "☎", + "telephone_receiver": "📞", + "telescope": "🔭", + "television": "📺", + "ten-thirty": "🕥", + "ten_o’clock": "🕙", + "tennis": "🎾", + "tent": "⛺", + "test_tube": "🧪", + "thermometer": "🌡", + "thinking_face": "🤔", + "thought_balloon": "💭", + "thread": "🧵", + "three-thirty": "🕞", + "three_o’clock": "🕒", + "thumbs_down": "👎", + "thumbs_down_dark_skin_tone": "👎🏿", + "thumbs_down_light_skin_tone": "👎🏻", + "thumbs_down_medium-dark_skin_tone": "👎🏾", + "thumbs_down_medium-light_skin_tone": "👎🏼", + "thumbs_down_medium_skin_tone": "👎🏽", + "thumbs_up": "👍", + "thumbs_up_dark_skin_tone": "👍🏿", + "thumbs_up_light_skin_tone": "👍🏻", + "thumbs_up_medium-dark_skin_tone": "👍🏾", + "thumbs_up_medium-light_skin_tone": "👍🏼", + "thumbs_up_medium_skin_tone": "👍🏽", + "ticket": "🎫", + "tiger": "🐯", + "tiger_face": "🐯", + "timer_clock": "⏲", + "tired_face": "😫", + "toolbox": "🧰", + "toilet": "🚽", + "tomato": "🍅", + "tongue": "👅", + "tooth": "🦷", + "top_hat": "🎩", + "tornado": "🌪", + "trackball": "🖲", + "tractor": "🚜", + "trade_mark": "™", + "train": "🚋", + "tram": "🚊", + "tram_car": "🚋", + "triangular_flag": "🚩", + "triangular_ruler": "📐", + "trident_emblem": "🔱", + "trolleybus": "🚎", + "trophy": "🏆", + "tropical_drink": "🍹", + "tropical_fish": "🐠", + "trumpet": "🎺", + "tulip": "🌷", + "tumbler_glass": "🥃", + "turtle": "🐢", + "twelve-thirty": "🕧", + "twelve_o’clock": "🕛", + "two-hump_camel": "🐫", + "two-thirty": "🕝", + "two_hearts": "💕", + "two_men_holding_hands": "👬", + "two_o’clock": "🕑", + "two_women_holding_hands": "👭", + "umbrella": "☂", + "umbrella_on_ground": "⛱", + "umbrella_with_rain_drops": "☔", + "unamused_face": "😒", + "unicorn_face": "🦄", + "unlocked": "🔓", + "up-down_arrow": "↕", + "up-left_arrow": "↖", + "up-right_arrow": "↗", + "up_arrow": "⬆", + "upside-down_face": "🙃", + "upwards_button": "🔼", + "vampire": "🧛", + "vampire_dark_skin_tone": "🧛🏿", + "vampire_light_skin_tone": "🧛🏻", + "vampire_medium-dark_skin_tone": "🧛🏾", + "vampire_medium-light_skin_tone": "🧛🏼", + "vampire_medium_skin_tone": "🧛🏽", + "vertical_traffic_light": "🚦", + "vibration_mode": "📳", + "victory_hand": "✌", + "victory_hand_dark_skin_tone": "✌🏿", + "victory_hand_light_skin_tone": "✌🏻", + "victory_hand_medium-dark_skin_tone": "✌🏾", + "victory_hand_medium-light_skin_tone": "✌🏼", + "victory_hand_medium_skin_tone": "✌🏽", + "video_camera": "📹", + "video_game": "🎮", + "videocassette": "📼", + "violin": "🎻", + "volcano": "🌋", + "volleyball": "🏐", + "vulcan_salute": "🖖", + "vulcan_salute_dark_skin_tone": "🖖🏿", + "vulcan_salute_light_skin_tone": "🖖🏻", + "vulcan_salute_medium-dark_skin_tone": "🖖🏾", + "vulcan_salute_medium-light_skin_tone": "🖖🏼", + "vulcan_salute_medium_skin_tone": "🖖🏽", + "waffle": "🧇", + "waning_crescent_moon": "🌘", + "waning_gibbous_moon": "🌖", + "warning": "⚠", + "wastebasket": "🗑", + "watch": "⌚", + "water_buffalo": "🐃", + "water_closet": "🚾", + "water_wave": "🌊", + "watermelon": "🍉", + "waving_hand": "👋", + "waving_hand_dark_skin_tone": "👋🏿", + "waving_hand_light_skin_tone": "👋🏻", + "waving_hand_medium-dark_skin_tone": "👋🏾", + "waving_hand_medium-light_skin_tone": "👋🏼", + "waving_hand_medium_skin_tone": "👋🏽", + "wavy_dash": "〰", + "waxing_crescent_moon": "🌒", + "waxing_gibbous_moon": "🌔", + "weary_cat_face": "🙀", + "weary_face": "😩", + "wedding": "💒", + "whale": "🐳", + "wheel_of_dharma": "☸", + "wheelchair_symbol": "♿", + "white_circle": "⚪", + "white_exclamation_mark": "❕", + "white_flag": "🏳", + "white_flower": "💮", + "white_hair": "🦳", + "white-haired_man": "👨\u200d🦳", + "white-haired_woman": "👩\u200d🦳", + "white_heart": "🤍", + "white_heavy_check_mark": "✅", + "white_large_square": "⬜", + "white_medium-small_square": "◽", + "white_medium_square": "◻", + "white_medium_star": "⭐", + "white_question_mark": "❔", + "white_small_square": "▫", + "white_square_button": "🔳", + "wilted_flower": "🥀", + "wind_chime": "🎐", + "wind_face": "🌬", + "wine_glass": "🍷", + "winking_face": "😉", + "winking_face_with_tongue": "😜", + "wolf_face": "🐺", + "woman": "👩", + "woman_artist": "👩\u200d🎨", + "woman_artist_dark_skin_tone": "👩🏿\u200d🎨", + "woman_artist_light_skin_tone": "👩🏻\u200d🎨", + "woman_artist_medium-dark_skin_tone": "👩🏾\u200d🎨", + "woman_artist_medium-light_skin_tone": "👩🏼\u200d🎨", + "woman_artist_medium_skin_tone": "👩🏽\u200d🎨", + "woman_astronaut": "👩\u200d🚀", + "woman_astronaut_dark_skin_tone": "👩🏿\u200d🚀", + "woman_astronaut_light_skin_tone": "👩🏻\u200d🚀", + "woman_astronaut_medium-dark_skin_tone": "👩🏾\u200d🚀", + "woman_astronaut_medium-light_skin_tone": "👩🏼\u200d🚀", + "woman_astronaut_medium_skin_tone": "👩🏽\u200d🚀", + "woman_biking": "🚴\u200d♀️", + "woman_biking_dark_skin_tone": "🚴🏿\u200d♀️", + "woman_biking_light_skin_tone": "🚴🏻\u200d♀️", + "woman_biking_medium-dark_skin_tone": "🚴🏾\u200d♀️", + "woman_biking_medium-light_skin_tone": "🚴🏼\u200d♀️", + "woman_biking_medium_skin_tone": "🚴🏽\u200d♀️", + "woman_bouncing_ball": "⛹️\u200d♀️", + "woman_bouncing_ball_dark_skin_tone": "⛹🏿\u200d♀️", + "woman_bouncing_ball_light_skin_tone": "⛹🏻\u200d♀️", + "woman_bouncing_ball_medium-dark_skin_tone": "⛹🏾\u200d♀️", + "woman_bouncing_ball_medium-light_skin_tone": "⛹🏼\u200d♀️", + "woman_bouncing_ball_medium_skin_tone": "⛹🏽\u200d♀️", + "woman_bowing": "🙇\u200d♀️", + "woman_bowing_dark_skin_tone": "🙇🏿\u200d♀️", + "woman_bowing_light_skin_tone": "🙇🏻\u200d♀️", + "woman_bowing_medium-dark_skin_tone": "🙇🏾\u200d♀️", + "woman_bowing_medium-light_skin_tone": "🙇🏼\u200d♀️", + "woman_bowing_medium_skin_tone": "🙇🏽\u200d♀️", + "woman_cartwheeling": "🤸\u200d♀️", + "woman_cartwheeling_dark_skin_tone": "🤸🏿\u200d♀️", + "woman_cartwheeling_light_skin_tone": "🤸🏻\u200d♀️", + "woman_cartwheeling_medium-dark_skin_tone": "🤸🏾\u200d♀️", + "woman_cartwheeling_medium-light_skin_tone": "🤸🏼\u200d♀️", + "woman_cartwheeling_medium_skin_tone": "🤸🏽\u200d♀️", + "woman_climbing": "🧗\u200d♀️", + "woman_climbing_dark_skin_tone": "🧗🏿\u200d♀️", + "woman_climbing_light_skin_tone": "🧗🏻\u200d♀️", + "woman_climbing_medium-dark_skin_tone": "🧗🏾\u200d♀️", + "woman_climbing_medium-light_skin_tone": "🧗🏼\u200d♀️", + "woman_climbing_medium_skin_tone": "🧗🏽\u200d♀️", + "woman_construction_worker": "👷\u200d♀️", + "woman_construction_worker_dark_skin_tone": "👷🏿\u200d♀️", + "woman_construction_worker_light_skin_tone": "👷🏻\u200d♀️", + "woman_construction_worker_medium-dark_skin_tone": "👷🏾\u200d♀️", + "woman_construction_worker_medium-light_skin_tone": "👷🏼\u200d♀️", + "woman_construction_worker_medium_skin_tone": "👷🏽\u200d♀️", + "woman_cook": "👩\u200d🍳", + "woman_cook_dark_skin_tone": "👩🏿\u200d🍳", + "woman_cook_light_skin_tone": "👩🏻\u200d🍳", + "woman_cook_medium-dark_skin_tone": "👩🏾\u200d🍳", + "woman_cook_medium-light_skin_tone": "👩🏼\u200d🍳", + "woman_cook_medium_skin_tone": "👩🏽\u200d🍳", + "woman_dancing": "💃", + "woman_dancing_dark_skin_tone": "💃🏿", + "woman_dancing_light_skin_tone": "💃🏻", + "woman_dancing_medium-dark_skin_tone": "💃🏾", + "woman_dancing_medium-light_skin_tone": "💃🏼", + "woman_dancing_medium_skin_tone": "💃🏽", + "woman_dark_skin_tone": "👩🏿", + "woman_detective": "🕵️\u200d♀️", + "woman_detective_dark_skin_tone": "🕵🏿\u200d♀️", + "woman_detective_light_skin_tone": "🕵🏻\u200d♀️", + "woman_detective_medium-dark_skin_tone": "🕵🏾\u200d♀️", + "woman_detective_medium-light_skin_tone": "🕵🏼\u200d♀️", + "woman_detective_medium_skin_tone": "🕵🏽\u200d♀️", + "woman_elf": "🧝\u200d♀️", + "woman_elf_dark_skin_tone": "🧝🏿\u200d♀️", + "woman_elf_light_skin_tone": "🧝🏻\u200d♀️", + "woman_elf_medium-dark_skin_tone": "🧝🏾\u200d♀️", + "woman_elf_medium-light_skin_tone": "🧝🏼\u200d♀️", + "woman_elf_medium_skin_tone": "🧝🏽\u200d♀️", + "woman_facepalming": "🤦\u200d♀️", + "woman_facepalming_dark_skin_tone": "🤦🏿\u200d♀️", + "woman_facepalming_light_skin_tone": "🤦🏻\u200d♀️", + "woman_facepalming_medium-dark_skin_tone": "🤦🏾\u200d♀️", + "woman_facepalming_medium-light_skin_tone": "🤦🏼\u200d♀️", + "woman_facepalming_medium_skin_tone": "🤦🏽\u200d♀️", + "woman_factory_worker": "👩\u200d🏭", + "woman_factory_worker_dark_skin_tone": "👩🏿\u200d🏭", + "woman_factory_worker_light_skin_tone": "👩🏻\u200d🏭", + "woman_factory_worker_medium-dark_skin_tone": "👩🏾\u200d🏭", + "woman_factory_worker_medium-light_skin_tone": "👩🏼\u200d🏭", + "woman_factory_worker_medium_skin_tone": "👩🏽\u200d🏭", + "woman_fairy": "🧚\u200d♀️", + "woman_fairy_dark_skin_tone": "🧚🏿\u200d♀️", + "woman_fairy_light_skin_tone": "🧚🏻\u200d♀️", + "woman_fairy_medium-dark_skin_tone": "🧚🏾\u200d♀️", + "woman_fairy_medium-light_skin_tone": "🧚🏼\u200d♀️", + "woman_fairy_medium_skin_tone": "🧚🏽\u200d♀️", + "woman_farmer": "👩\u200d🌾", + "woman_farmer_dark_skin_tone": "👩🏿\u200d🌾", + "woman_farmer_light_skin_tone": "👩🏻\u200d🌾", + "woman_farmer_medium-dark_skin_tone": "👩🏾\u200d🌾", + "woman_farmer_medium-light_skin_tone": "👩🏼\u200d🌾", + "woman_farmer_medium_skin_tone": "👩🏽\u200d🌾", + "woman_firefighter": "👩\u200d🚒", + "woman_firefighter_dark_skin_tone": "👩🏿\u200d🚒", + "woman_firefighter_light_skin_tone": "👩🏻\u200d🚒", + "woman_firefighter_medium-dark_skin_tone": "👩🏾\u200d🚒", + "woman_firefighter_medium-light_skin_tone": "👩🏼\u200d🚒", + "woman_firefighter_medium_skin_tone": "👩🏽\u200d🚒", + "woman_frowning": "🙍\u200d♀️", + "woman_frowning_dark_skin_tone": "🙍🏿\u200d♀️", + "woman_frowning_light_skin_tone": "🙍🏻\u200d♀️", + "woman_frowning_medium-dark_skin_tone": "🙍🏾\u200d♀️", + "woman_frowning_medium-light_skin_tone": "🙍🏼\u200d♀️", + "woman_frowning_medium_skin_tone": "🙍🏽\u200d♀️", + "woman_genie": "🧞\u200d♀️", + "woman_gesturing_no": "🙅\u200d♀️", + "woman_gesturing_no_dark_skin_tone": "🙅🏿\u200d♀️", + "woman_gesturing_no_light_skin_tone": "🙅🏻\u200d♀️", + "woman_gesturing_no_medium-dark_skin_tone": "🙅🏾\u200d♀️", + "woman_gesturing_no_medium-light_skin_tone": "🙅🏼\u200d♀️", + "woman_gesturing_no_medium_skin_tone": "🙅🏽\u200d♀️", + "woman_gesturing_ok": "🙆\u200d♀️", + "woman_gesturing_ok_dark_skin_tone": "🙆🏿\u200d♀️", + "woman_gesturing_ok_light_skin_tone": "🙆🏻\u200d♀️", + "woman_gesturing_ok_medium-dark_skin_tone": "🙆🏾\u200d♀️", + "woman_gesturing_ok_medium-light_skin_tone": "🙆🏼\u200d♀️", + "woman_gesturing_ok_medium_skin_tone": "🙆🏽\u200d♀️", + "woman_getting_haircut": "💇\u200d♀️", + "woman_getting_haircut_dark_skin_tone": "💇🏿\u200d♀️", + "woman_getting_haircut_light_skin_tone": "💇🏻\u200d♀️", + "woman_getting_haircut_medium-dark_skin_tone": "💇🏾\u200d♀️", + "woman_getting_haircut_medium-light_skin_tone": "💇🏼\u200d♀️", + "woman_getting_haircut_medium_skin_tone": "💇🏽\u200d♀️", + "woman_getting_massage": "💆\u200d♀️", + "woman_getting_massage_dark_skin_tone": "💆🏿\u200d♀️", + "woman_getting_massage_light_skin_tone": "💆🏻\u200d♀️", + "woman_getting_massage_medium-dark_skin_tone": "💆🏾\u200d♀️", + "woman_getting_massage_medium-light_skin_tone": "💆🏼\u200d♀️", + "woman_getting_massage_medium_skin_tone": "💆🏽\u200d♀️", + "woman_golfing": "🏌️\u200d♀️", + "woman_golfing_dark_skin_tone": "🏌🏿\u200d♀️", + "woman_golfing_light_skin_tone": "🏌🏻\u200d♀️", + "woman_golfing_medium-dark_skin_tone": "🏌🏾\u200d♀️", + "woman_golfing_medium-light_skin_tone": "🏌🏼\u200d♀️", + "woman_golfing_medium_skin_tone": "🏌🏽\u200d♀️", + "woman_guard": "💂\u200d♀️", + "woman_guard_dark_skin_tone": "💂🏿\u200d♀️", + "woman_guard_light_skin_tone": "💂🏻\u200d♀️", + "woman_guard_medium-dark_skin_tone": "💂🏾\u200d♀️", + "woman_guard_medium-light_skin_tone": "💂🏼\u200d♀️", + "woman_guard_medium_skin_tone": "💂🏽\u200d♀️", + "woman_health_worker": "👩\u200d⚕️", + "woman_health_worker_dark_skin_tone": "👩🏿\u200d⚕️", + "woman_health_worker_light_skin_tone": "👩🏻\u200d⚕️", + "woman_health_worker_medium-dark_skin_tone": "👩🏾\u200d⚕️", + "woman_health_worker_medium-light_skin_tone": "👩🏼\u200d⚕️", + "woman_health_worker_medium_skin_tone": "👩🏽\u200d⚕️", + "woman_in_lotus_position": "🧘\u200d♀️", + "woman_in_lotus_position_dark_skin_tone": "🧘🏿\u200d♀️", + "woman_in_lotus_position_light_skin_tone": "🧘🏻\u200d♀️", + "woman_in_lotus_position_medium-dark_skin_tone": "🧘🏾\u200d♀️", + "woman_in_lotus_position_medium-light_skin_tone": "🧘🏼\u200d♀️", + "woman_in_lotus_position_medium_skin_tone": "🧘🏽\u200d♀️", + "woman_in_manual_wheelchair": "👩\u200d🦽", + "woman_in_motorized_wheelchair": "👩\u200d🦼", + "woman_in_steamy_room": "🧖\u200d♀️", + "woman_in_steamy_room_dark_skin_tone": "🧖🏿\u200d♀️", + "woman_in_steamy_room_light_skin_tone": "🧖🏻\u200d♀️", + "woman_in_steamy_room_medium-dark_skin_tone": "🧖🏾\u200d♀️", + "woman_in_steamy_room_medium-light_skin_tone": "🧖🏼\u200d♀️", + "woman_in_steamy_room_medium_skin_tone": "🧖🏽\u200d♀️", + "woman_judge": "👩\u200d⚖️", + "woman_judge_dark_skin_tone": "👩🏿\u200d⚖️", + "woman_judge_light_skin_tone": "👩🏻\u200d⚖️", + "woman_judge_medium-dark_skin_tone": "👩🏾\u200d⚖️", + "woman_judge_medium-light_skin_tone": "👩🏼\u200d⚖️", + "woman_judge_medium_skin_tone": "👩🏽\u200d⚖️", + "woman_juggling": "🤹\u200d♀️", + "woman_juggling_dark_skin_tone": "🤹🏿\u200d♀️", + "woman_juggling_light_skin_tone": "🤹🏻\u200d♀️", + "woman_juggling_medium-dark_skin_tone": "🤹🏾\u200d♀️", + "woman_juggling_medium-light_skin_tone": "🤹🏼\u200d♀️", + "woman_juggling_medium_skin_tone": "🤹🏽\u200d♀️", + "woman_lifting_weights": "🏋️\u200d♀️", + "woman_lifting_weights_dark_skin_tone": "🏋🏿\u200d♀️", + "woman_lifting_weights_light_skin_tone": "🏋🏻\u200d♀️", + "woman_lifting_weights_medium-dark_skin_tone": "🏋🏾\u200d♀️", + "woman_lifting_weights_medium-light_skin_tone": "🏋🏼\u200d♀️", + "woman_lifting_weights_medium_skin_tone": "🏋🏽\u200d♀️", + "woman_light_skin_tone": "👩🏻", + "woman_mage": "🧙\u200d♀️", + "woman_mage_dark_skin_tone": "🧙🏿\u200d♀️", + "woman_mage_light_skin_tone": "🧙🏻\u200d♀️", + "woman_mage_medium-dark_skin_tone": "🧙🏾\u200d♀️", + "woman_mage_medium-light_skin_tone": "🧙🏼\u200d♀️", + "woman_mage_medium_skin_tone": "🧙🏽\u200d♀️", + "woman_mechanic": "👩\u200d🔧", + "woman_mechanic_dark_skin_tone": "👩🏿\u200d🔧", + "woman_mechanic_light_skin_tone": "👩🏻\u200d🔧", + "woman_mechanic_medium-dark_skin_tone": "👩🏾\u200d🔧", + "woman_mechanic_medium-light_skin_tone": "👩🏼\u200d🔧", + "woman_mechanic_medium_skin_tone": "👩🏽\u200d🔧", + "woman_medium-dark_skin_tone": "👩🏾", + "woman_medium-light_skin_tone": "👩🏼", + "woman_medium_skin_tone": "👩🏽", + "woman_mountain_biking": "🚵\u200d♀️", + "woman_mountain_biking_dark_skin_tone": "🚵🏿\u200d♀️", + "woman_mountain_biking_light_skin_tone": "🚵🏻\u200d♀️", + "woman_mountain_biking_medium-dark_skin_tone": "🚵🏾\u200d♀️", + "woman_mountain_biking_medium-light_skin_tone": "🚵🏼\u200d♀️", + "woman_mountain_biking_medium_skin_tone": "🚵🏽\u200d♀️", + "woman_office_worker": "👩\u200d💼", + "woman_office_worker_dark_skin_tone": "👩🏿\u200d💼", + "woman_office_worker_light_skin_tone": "👩🏻\u200d💼", + "woman_office_worker_medium-dark_skin_tone": "👩🏾\u200d💼", + "woman_office_worker_medium-light_skin_tone": "👩🏼\u200d💼", + "woman_office_worker_medium_skin_tone": "👩🏽\u200d💼", + "woman_pilot": "👩\u200d✈️", + "woman_pilot_dark_skin_tone": "👩🏿\u200d✈️", + "woman_pilot_light_skin_tone": "👩🏻\u200d✈️", + "woman_pilot_medium-dark_skin_tone": "👩🏾\u200d✈️", + "woman_pilot_medium-light_skin_tone": "👩🏼\u200d✈️", + "woman_pilot_medium_skin_tone": "👩🏽\u200d✈️", + "woman_playing_handball": "🤾\u200d♀️", + "woman_playing_handball_dark_skin_tone": "🤾🏿\u200d♀️", + "woman_playing_handball_light_skin_tone": "🤾🏻\u200d♀️", + "woman_playing_handball_medium-dark_skin_tone": "🤾🏾\u200d♀️", + "woman_playing_handball_medium-light_skin_tone": "🤾🏼\u200d♀️", + "woman_playing_handball_medium_skin_tone": "🤾🏽\u200d♀️", + "woman_playing_water_polo": "🤽\u200d♀️", + "woman_playing_water_polo_dark_skin_tone": "🤽🏿\u200d♀️", + "woman_playing_water_polo_light_skin_tone": "🤽🏻\u200d♀️", + "woman_playing_water_polo_medium-dark_skin_tone": "🤽🏾\u200d♀️", + "woman_playing_water_polo_medium-light_skin_tone": "🤽🏼\u200d♀️", + "woman_playing_water_polo_medium_skin_tone": "🤽🏽\u200d♀️", + "woman_police_officer": "👮\u200d♀️", + "woman_police_officer_dark_skin_tone": "👮🏿\u200d♀️", + "woman_police_officer_light_skin_tone": "👮🏻\u200d♀️", + "woman_police_officer_medium-dark_skin_tone": "👮🏾\u200d♀️", + "woman_police_officer_medium-light_skin_tone": "👮🏼\u200d♀️", + "woman_police_officer_medium_skin_tone": "👮🏽\u200d♀️", + "woman_pouting": "🙎\u200d♀️", + "woman_pouting_dark_skin_tone": "🙎🏿\u200d♀️", + "woman_pouting_light_skin_tone": "🙎🏻\u200d♀️", + "woman_pouting_medium-dark_skin_tone": "🙎🏾\u200d♀️", + "woman_pouting_medium-light_skin_tone": "🙎🏼\u200d♀️", + "woman_pouting_medium_skin_tone": "🙎🏽\u200d♀️", + "woman_raising_hand": "🙋\u200d♀️", + "woman_raising_hand_dark_skin_tone": "🙋🏿\u200d♀️", + "woman_raising_hand_light_skin_tone": "🙋🏻\u200d♀️", + "woman_raising_hand_medium-dark_skin_tone": "🙋🏾\u200d♀️", + "woman_raising_hand_medium-light_skin_tone": "🙋🏼\u200d♀️", + "woman_raising_hand_medium_skin_tone": "🙋🏽\u200d♀️", + "woman_rowing_boat": "🚣\u200d♀️", + "woman_rowing_boat_dark_skin_tone": "🚣🏿\u200d♀️", + "woman_rowing_boat_light_skin_tone": "🚣🏻\u200d♀️", + "woman_rowing_boat_medium-dark_skin_tone": "🚣🏾\u200d♀️", + "woman_rowing_boat_medium-light_skin_tone": "🚣🏼\u200d♀️", + "woman_rowing_boat_medium_skin_tone": "🚣🏽\u200d♀️", + "woman_running": "🏃\u200d♀️", + "woman_running_dark_skin_tone": "🏃🏿\u200d♀️", + "woman_running_light_skin_tone": "🏃🏻\u200d♀️", + "woman_running_medium-dark_skin_tone": "🏃🏾\u200d♀️", + "woman_running_medium-light_skin_tone": "🏃🏼\u200d♀️", + "woman_running_medium_skin_tone": "🏃🏽\u200d♀️", + "woman_scientist": "👩\u200d🔬", + "woman_scientist_dark_skin_tone": "👩🏿\u200d🔬", + "woman_scientist_light_skin_tone": "👩🏻\u200d🔬", + "woman_scientist_medium-dark_skin_tone": "👩🏾\u200d🔬", + "woman_scientist_medium-light_skin_tone": "👩🏼\u200d🔬", + "woman_scientist_medium_skin_tone": "👩🏽\u200d🔬", + "woman_shrugging": "🤷\u200d♀️", + "woman_shrugging_dark_skin_tone": "🤷🏿\u200d♀️", + "woman_shrugging_light_skin_tone": "🤷🏻\u200d♀️", + "woman_shrugging_medium-dark_skin_tone": "🤷🏾\u200d♀️", + "woman_shrugging_medium-light_skin_tone": "🤷🏼\u200d♀️", + "woman_shrugging_medium_skin_tone": "🤷🏽\u200d♀️", + "woman_singer": "👩\u200d🎤", + "woman_singer_dark_skin_tone": "👩🏿\u200d🎤", + "woman_singer_light_skin_tone": "👩🏻\u200d🎤", + "woman_singer_medium-dark_skin_tone": "👩🏾\u200d🎤", + "woman_singer_medium-light_skin_tone": "👩🏼\u200d🎤", + "woman_singer_medium_skin_tone": "👩🏽\u200d🎤", + "woman_student": "👩\u200d🎓", + "woman_student_dark_skin_tone": "👩🏿\u200d🎓", + "woman_student_light_skin_tone": "👩🏻\u200d🎓", + "woman_student_medium-dark_skin_tone": "👩🏾\u200d🎓", + "woman_student_medium-light_skin_tone": "👩🏼\u200d🎓", + "woman_student_medium_skin_tone": "👩🏽\u200d🎓", + "woman_surfing": "🏄\u200d♀️", + "woman_surfing_dark_skin_tone": "🏄🏿\u200d♀️", + "woman_surfing_light_skin_tone": "🏄🏻\u200d♀️", + "woman_surfing_medium-dark_skin_tone": "🏄🏾\u200d♀️", + "woman_surfing_medium-light_skin_tone": "🏄🏼\u200d♀️", + "woman_surfing_medium_skin_tone": "🏄🏽\u200d♀️", + "woman_swimming": "🏊\u200d♀️", + "woman_swimming_dark_skin_tone": "🏊🏿\u200d♀️", + "woman_swimming_light_skin_tone": "🏊🏻\u200d♀️", + "woman_swimming_medium-dark_skin_tone": "🏊🏾\u200d♀️", + "woman_swimming_medium-light_skin_tone": "🏊🏼\u200d♀️", + "woman_swimming_medium_skin_tone": "🏊🏽\u200d♀️", + "woman_teacher": "👩\u200d🏫", + "woman_teacher_dark_skin_tone": "👩🏿\u200d🏫", + "woman_teacher_light_skin_tone": "👩🏻\u200d🏫", + "woman_teacher_medium-dark_skin_tone": "👩🏾\u200d🏫", + "woman_teacher_medium-light_skin_tone": "👩🏼\u200d🏫", + "woman_teacher_medium_skin_tone": "👩🏽\u200d🏫", + "woman_technologist": "👩\u200d💻", + "woman_technologist_dark_skin_tone": "👩🏿\u200d💻", + "woman_technologist_light_skin_tone": "👩🏻\u200d💻", + "woman_technologist_medium-dark_skin_tone": "👩🏾\u200d💻", + "woman_technologist_medium-light_skin_tone": "👩🏼\u200d💻", + "woman_technologist_medium_skin_tone": "👩🏽\u200d💻", + "woman_tipping_hand": "💁\u200d♀️", + "woman_tipping_hand_dark_skin_tone": "💁🏿\u200d♀️", + "woman_tipping_hand_light_skin_tone": "💁🏻\u200d♀️", + "woman_tipping_hand_medium-dark_skin_tone": "💁🏾\u200d♀️", + "woman_tipping_hand_medium-light_skin_tone": "💁🏼\u200d♀️", + "woman_tipping_hand_medium_skin_tone": "💁🏽\u200d♀️", + "woman_vampire": "🧛\u200d♀️", + "woman_vampire_dark_skin_tone": "🧛🏿\u200d♀️", + "woman_vampire_light_skin_tone": "🧛🏻\u200d♀️", + "woman_vampire_medium-dark_skin_tone": "🧛🏾\u200d♀️", + "woman_vampire_medium-light_skin_tone": "🧛🏼\u200d♀️", + "woman_vampire_medium_skin_tone": "🧛🏽\u200d♀️", + "woman_walking": "🚶\u200d♀️", + "woman_walking_dark_skin_tone": "🚶🏿\u200d♀️", + "woman_walking_light_skin_tone": "🚶🏻\u200d♀️", + "woman_walking_medium-dark_skin_tone": "🚶🏾\u200d♀️", + "woman_walking_medium-light_skin_tone": "🚶🏼\u200d♀️", + "woman_walking_medium_skin_tone": "🚶🏽\u200d♀️", + "woman_wearing_turban": "👳\u200d♀️", + "woman_wearing_turban_dark_skin_tone": "👳🏿\u200d♀️", + "woman_wearing_turban_light_skin_tone": "👳🏻\u200d♀️", + "woman_wearing_turban_medium-dark_skin_tone": "👳🏾\u200d♀️", + "woman_wearing_turban_medium-light_skin_tone": "👳🏼\u200d♀️", + "woman_wearing_turban_medium_skin_tone": "👳🏽\u200d♀️", + "woman_with_headscarf": "🧕", + "woman_with_headscarf_dark_skin_tone": "🧕🏿", + "woman_with_headscarf_light_skin_tone": "🧕🏻", + "woman_with_headscarf_medium-dark_skin_tone": "🧕🏾", + "woman_with_headscarf_medium-light_skin_tone": "🧕🏼", + "woman_with_headscarf_medium_skin_tone": "🧕🏽", + "woman_with_probing_cane": "👩\u200d🦯", + "woman_zombie": "🧟\u200d♀️", + "woman’s_boot": "👢", + "woman’s_clothes": "👚", + "woman’s_hat": "👒", + "woman’s_sandal": "👡", + "women_with_bunny_ears": "👯\u200d♀️", + "women_wrestling": "🤼\u200d♀️", + "women’s_room": "🚺", + "woozy_face": "🥴", + "world_map": "🗺", + "worried_face": "😟", + "wrapped_gift": "🎁", + "wrench": "🔧", + "writing_hand": "✍", + "writing_hand_dark_skin_tone": "✍🏿", + "writing_hand_light_skin_tone": "✍🏻", + "writing_hand_medium-dark_skin_tone": "✍🏾", + "writing_hand_medium-light_skin_tone": "✍🏼", + "writing_hand_medium_skin_tone": "✍🏽", + "yarn": "🧶", + "yawning_face": "🥱", + "yellow_circle": "🟡", + "yellow_heart": "💛", + "yellow_square": "🟨", + "yen_banknote": "💴", + "yo-yo": "🪀", + "yin_yang": "☯", + "zany_face": "🤪", + "zebra": "🦓", + "zipper-mouth_face": "🤐", + "zombie": "🧟", + "zzz": "💤", + "åland_islands": "🇦🇽", + "keycap_asterisk": "*⃣", + "keycap_digit_eight": "8⃣", + "keycap_digit_five": "5⃣", + "keycap_digit_four": "4⃣", + "keycap_digit_nine": "9⃣", + "keycap_digit_one": "1⃣", + "keycap_digit_seven": "7⃣", + "keycap_digit_six": "6⃣", + "keycap_digit_three": "3⃣", + "keycap_digit_two": "2⃣", + "keycap_digit_zero": "0⃣", + "keycap_number_sign": "#⃣", + "light_skin_tone": "🏻", + "medium_light_skin_tone": "🏼", + "medium_skin_tone": "🏽", + "medium_dark_skin_tone": "🏾", + "dark_skin_tone": "🏿", + "regional_indicator_symbol_letter_a": "🇦", + "regional_indicator_symbol_letter_b": "🇧", + "regional_indicator_symbol_letter_c": "🇨", + "regional_indicator_symbol_letter_d": "🇩", + "regional_indicator_symbol_letter_e": "🇪", + "regional_indicator_symbol_letter_f": "🇫", + "regional_indicator_symbol_letter_g": "🇬", + "regional_indicator_symbol_letter_h": "🇭", + "regional_indicator_symbol_letter_i": "🇮", + "regional_indicator_symbol_letter_j": "🇯", + "regional_indicator_symbol_letter_k": "🇰", + "regional_indicator_symbol_letter_l": "🇱", + "regional_indicator_symbol_letter_m": "🇲", + "regional_indicator_symbol_letter_n": "🇳", + "regional_indicator_symbol_letter_o": "🇴", + "regional_indicator_symbol_letter_p": "🇵", + "regional_indicator_symbol_letter_q": "🇶", + "regional_indicator_symbol_letter_r": "🇷", + "regional_indicator_symbol_letter_s": "🇸", + "regional_indicator_symbol_letter_t": "🇹", + "regional_indicator_symbol_letter_u": "🇺", + "regional_indicator_symbol_letter_v": "🇻", + "regional_indicator_symbol_letter_w": "🇼", + "regional_indicator_symbol_letter_x": "🇽", + "regional_indicator_symbol_letter_y": "🇾", + "regional_indicator_symbol_letter_z": "🇿", + "airplane_arriving": "🛬", + "space_invader": "👾", + "football": "🏈", + "anger": "💢", + "angry": "😠", + "anguished": "😧", + "signal_strength": "📶", + "arrows_counterclockwise": "🔄", + "arrow_heading_down": "⤵", + "arrow_heading_up": "⤴", + "art": "🎨", + "astonished": "😲", + "athletic_shoe": "👟", + "atm": "🏧", + "car": "🚗", + "red_car": "🚗", + "angel": "👼", + "back": "🔙", + "badminton_racquet_and_shuttlecock": "🏸", + "dollar": "💵", + "euro": "💶", + "pound": "💷", + "yen": "💴", + "barber": "💈", + "bath": "🛀", + "bear": "🐻", + "heartbeat": "💓", + "beer": "🍺", + "no_bell": "🔕", + "bento": "🍱", + "bike": "🚲", + "bicyclist": "🚴", + "8ball": "🎱", + "biohazard_sign": "☣", + "birthday": "🎂", + "black_circle_for_record": "⏺", + "clubs": "♣", + "diamonds": "♦", + "arrow_double_down": "⏬", + "hearts": "♥", + "rewind": "⏪", + "black_left__pointing_double_triangle_with_vertical_bar": "⏮", + "arrow_backward": "◀", + "black_medium_small_square": "◾", + "question": "❓", + "fast_forward": "⏩", + "black_right__pointing_double_triangle_with_vertical_bar": "⏭", + "arrow_forward": "▶", + "black_right__pointing_triangle_with_double_vertical_bar": "⏯", + "arrow_right": "➡", + "spades": "♠", + "black_square_for_stop": "⏹", + "sunny": "☀", + "phone": "☎", + "recycle": "♻", + "arrow_double_up": "⏫", + "busstop": "🚏", + "date": "📅", + "flags": "🎏", + "cat2": "🐈", + "joy_cat": "😹", + "smirk_cat": "😼", + "chart_with_downwards_trend": "📉", + "chart_with_upwards_trend": "📈", + "chart": "💹", + "mega": "📣", + "checkered_flag": "🏁", + "accept": "🉑", + "ideograph_advantage": "🉐", + "congratulations": "㊗", + "secret": "㊙", + "m": "Ⓜ", + "city_sunset": "🌆", + "clapper": "🎬", + "clap": "👏", + "beers": "🍻", + "clock830": "🕣", + "clock8": "🕗", + "clock1130": "🕦", + "clock11": "🕚", + "clock530": "🕠", + "clock5": "🕔", + "clock430": "🕟", + "clock4": "🕓", + "clock930": "🕤", + "clock9": "🕘", + "clock130": "🕜", + "clock1": "🕐", + "clock730": "🕢", + "clock7": "🕖", + "clock630": "🕡", + "clock6": "🕕", + "clock1030": "🕥", + "clock10": "🕙", + "clock330": "🕞", + "clock3": "🕒", + "clock1230": "🕧", + "clock12": "🕛", + "clock230": "🕝", + "clock2": "🕑", + "arrows_clockwise": "🔃", + "repeat": "🔁", + "repeat_one": "🔂", + "closed_lock_with_key": "🔐", + "mailbox_closed": "📪", + "mailbox": "📫", + "cloud_with_tornado": "🌪", + "cocktail": "🍸", + "boom": "💥", + "compression": "🗜", + "confounded": "😖", + "confused": "😕", + "rice": "🍚", + "cow2": "🐄", + "cricket_bat_and_ball": "🏏", + "x": "❌", + "cry": "😢", + "curry": "🍛", + "dagger_knife": "🗡", + "dancer": "💃", + "dark_sunglasses": "🕶", + "dash": "💨", + "truck": "🚚", + "derelict_house_building": "🏚", + "diamond_shape_with_a_dot_inside": "💠", + "dart": "🎯", + "disappointed_relieved": "😥", + "disappointed": "😞", + "do_not_litter": "🚯", + "dog2": "🐕", + "flipper": "🐬", + "loop": "➿", + "bangbang": "‼", + "double_vertical_bar": "⏸", + "dove_of_peace": "🕊", + "small_red_triangle_down": "🔻", + "arrow_down_small": "🔽", + "arrow_down": "⬇", + "dromedary_camel": "🐪", + "e__mail": "📧", + "corn": "🌽", + "ear_of_rice": "🌾", + "earth_americas": "🌎", + "earth_asia": "🌏", + "earth_africa": "🌍", + "eight_pointed_black_star": "✴", + "eight_spoked_asterisk": "✳", + "eject_symbol": "⏏", + "bulb": "💡", + "emoji_modifier_fitzpatrick_type__1__2": "🏻", + "emoji_modifier_fitzpatrick_type__3": "🏼", + "emoji_modifier_fitzpatrick_type__4": "🏽", + "emoji_modifier_fitzpatrick_type__5": "🏾", + "emoji_modifier_fitzpatrick_type__6": "🏿", + "end": "🔚", + "email": "✉", + "european_castle": "🏰", + "european_post_office": "🏤", + "interrobang": "⁉", + "expressionless": "😑", + "eyeglasses": "👓", + "massage": "💆", + "yum": "😋", + "scream": "😱", + "kissing_heart": "😘", + "sweat": "😓", + "face_with_head__bandage": "🤕", + "triumph": "😤", + "mask": "😷", + "no_good": "🙅", + "ok_woman": "🙆", + "open_mouth": "😮", + "cold_sweat": "😰", + "stuck_out_tongue": "😛", + "stuck_out_tongue_closed_eyes": "😝", + "stuck_out_tongue_winking_eye": "😜", + "joy": "😂", + "no_mouth": "😶", + "santa": "🎅", + "fax": "📠", + "fearful": "😨", + "field_hockey_stick_and_ball": "🏑", + "first_quarter_moon_with_face": "🌛", + "fish_cake": "🍥", + "fishing_pole_and_fish": "🎣", + "facepunch": "👊", + "punch": "👊", + "flag_for_afghanistan": "🇦🇫", + "flag_for_albania": "🇦🇱", + "flag_for_algeria": "🇩🇿", + "flag_for_american_samoa": "🇦🇸", + "flag_for_andorra": "🇦🇩", + "flag_for_angola": "🇦🇴", + "flag_for_anguilla": "🇦🇮", + "flag_for_antarctica": "🇦🇶", + "flag_for_antigua_&_barbuda": "🇦🇬", + "flag_for_argentina": "🇦🇷", + "flag_for_armenia": "🇦🇲", + "flag_for_aruba": "🇦🇼", + "flag_for_ascension_island": "🇦🇨", + "flag_for_australia": "🇦🇺", + "flag_for_austria": "🇦🇹", + "flag_for_azerbaijan": "🇦🇿", + "flag_for_bahamas": "🇧🇸", + "flag_for_bahrain": "🇧🇭", + "flag_for_bangladesh": "🇧🇩", + "flag_for_barbados": "🇧🇧", + "flag_for_belarus": "🇧🇾", + "flag_for_belgium": "🇧🇪", + "flag_for_belize": "🇧🇿", + "flag_for_benin": "🇧🇯", + "flag_for_bermuda": "🇧🇲", + "flag_for_bhutan": "🇧🇹", + "flag_for_bolivia": "🇧🇴", + "flag_for_bosnia_&_herzegovina": "🇧🇦", + "flag_for_botswana": "🇧🇼", + "flag_for_bouvet_island": "🇧🇻", + "flag_for_brazil": "🇧🇷", + "flag_for_british_indian_ocean_territory": "🇮🇴", + "flag_for_british_virgin_islands": "🇻🇬", + "flag_for_brunei": "🇧🇳", + "flag_for_bulgaria": "🇧🇬", + "flag_for_burkina_faso": "🇧🇫", + "flag_for_burundi": "🇧🇮", + "flag_for_cambodia": "🇰🇭", + "flag_for_cameroon": "🇨🇲", + "flag_for_canada": "🇨🇦", + "flag_for_canary_islands": "🇮🇨", + "flag_for_cape_verde": "🇨🇻", + "flag_for_caribbean_netherlands": "🇧🇶", + "flag_for_cayman_islands": "🇰🇾", + "flag_for_central_african_republic": "🇨🇫", + "flag_for_ceuta_&_melilla": "🇪🇦", + "flag_for_chad": "🇹🇩", + "flag_for_chile": "🇨🇱", + "flag_for_china": "🇨🇳", + "flag_for_christmas_island": "🇨🇽", + "flag_for_clipperton_island": "🇨🇵", + "flag_for_cocos__islands": "🇨🇨", + "flag_for_colombia": "🇨🇴", + "flag_for_comoros": "🇰🇲", + "flag_for_congo____brazzaville": "🇨🇬", + "flag_for_congo____kinshasa": "🇨🇩", + "flag_for_cook_islands": "🇨🇰", + "flag_for_costa_rica": "🇨🇷", + "flag_for_croatia": "🇭🇷", + "flag_for_cuba": "🇨🇺", + "flag_for_curaçao": "🇨🇼", + "flag_for_cyprus": "🇨🇾", + "flag_for_czech_republic": "🇨🇿", + "flag_for_côte_d’ivoire": "🇨🇮", + "flag_for_denmark": "🇩🇰", + "flag_for_diego_garcia": "🇩🇬", + "flag_for_djibouti": "🇩🇯", + "flag_for_dominica": "🇩🇲", + "flag_for_dominican_republic": "🇩🇴", + "flag_for_ecuador": "🇪🇨", + "flag_for_egypt": "🇪🇬", + "flag_for_el_salvador": "🇸🇻", + "flag_for_equatorial_guinea": "🇬🇶", + "flag_for_eritrea": "🇪🇷", + "flag_for_estonia": "🇪🇪", + "flag_for_ethiopia": "🇪🇹", + "flag_for_european_union": "🇪🇺", + "flag_for_falkland_islands": "🇫🇰", + "flag_for_faroe_islands": "🇫🇴", + "flag_for_fiji": "🇫🇯", + "flag_for_finland": "🇫🇮", + "flag_for_france": "🇫🇷", + "flag_for_french_guiana": "🇬🇫", + "flag_for_french_polynesia": "🇵🇫", + "flag_for_french_southern_territories": "🇹🇫", + "flag_for_gabon": "🇬🇦", + "flag_for_gambia": "🇬🇲", + "flag_for_georgia": "🇬🇪", + "flag_for_germany": "🇩🇪", + "flag_for_ghana": "🇬🇭", + "flag_for_gibraltar": "🇬🇮", + "flag_for_greece": "🇬🇷", + "flag_for_greenland": "🇬🇱", + "flag_for_grenada": "🇬🇩", + "flag_for_guadeloupe": "🇬🇵", + "flag_for_guam": "🇬🇺", + "flag_for_guatemala": "🇬🇹", + "flag_for_guernsey": "🇬🇬", + "flag_for_guinea": "🇬🇳", + "flag_for_guinea__bissau": "🇬🇼", + "flag_for_guyana": "🇬🇾", + "flag_for_haiti": "🇭🇹", + "flag_for_heard_&_mcdonald_islands": "🇭🇲", + "flag_for_honduras": "🇭🇳", + "flag_for_hong_kong": "🇭🇰", + "flag_for_hungary": "🇭🇺", + "flag_for_iceland": "🇮🇸", + "flag_for_india": "🇮🇳", + "flag_for_indonesia": "🇮🇩", + "flag_for_iran": "🇮🇷", + "flag_for_iraq": "🇮🇶", + "flag_for_ireland": "🇮🇪", + "flag_for_isle_of_man": "🇮🇲", + "flag_for_israel": "🇮🇱", + "flag_for_italy": "🇮🇹", + "flag_for_jamaica": "🇯🇲", + "flag_for_japan": "🇯🇵", + "flag_for_jersey": "🇯🇪", + "flag_for_jordan": "🇯🇴", + "flag_for_kazakhstan": "🇰🇿", + "flag_for_kenya": "🇰🇪", + "flag_for_kiribati": "🇰🇮", + "flag_for_kosovo": "🇽🇰", + "flag_for_kuwait": "🇰🇼", + "flag_for_kyrgyzstan": "🇰🇬", + "flag_for_laos": "🇱🇦", + "flag_for_latvia": "🇱🇻", + "flag_for_lebanon": "🇱🇧", + "flag_for_lesotho": "🇱🇸", + "flag_for_liberia": "🇱🇷", + "flag_for_libya": "🇱🇾", + "flag_for_liechtenstein": "🇱🇮", + "flag_for_lithuania": "🇱🇹", + "flag_for_luxembourg": "🇱🇺", + "flag_for_macau": "🇲🇴", + "flag_for_macedonia": "🇲🇰", + "flag_for_madagascar": "🇲🇬", + "flag_for_malawi": "🇲🇼", + "flag_for_malaysia": "🇲🇾", + "flag_for_maldives": "🇲🇻", + "flag_for_mali": "🇲🇱", + "flag_for_malta": "🇲🇹", + "flag_for_marshall_islands": "🇲🇭", + "flag_for_martinique": "🇲🇶", + "flag_for_mauritania": "🇲🇷", + "flag_for_mauritius": "🇲🇺", + "flag_for_mayotte": "🇾🇹", + "flag_for_mexico": "🇲🇽", + "flag_for_micronesia": "🇫🇲", + "flag_for_moldova": "🇲🇩", + "flag_for_monaco": "🇲🇨", + "flag_for_mongolia": "🇲🇳", + "flag_for_montenegro": "🇲🇪", + "flag_for_montserrat": "🇲🇸", + "flag_for_morocco": "🇲🇦", + "flag_for_mozambique": "🇲🇿", + "flag_for_myanmar": "🇲🇲", + "flag_for_namibia": "🇳🇦", + "flag_for_nauru": "🇳🇷", + "flag_for_nepal": "🇳🇵", + "flag_for_netherlands": "🇳🇱", + "flag_for_new_caledonia": "🇳🇨", + "flag_for_new_zealand": "🇳🇿", + "flag_for_nicaragua": "🇳🇮", + "flag_for_niger": "🇳🇪", + "flag_for_nigeria": "🇳🇬", + "flag_for_niue": "🇳🇺", + "flag_for_norfolk_island": "🇳🇫", + "flag_for_north_korea": "🇰🇵", + "flag_for_northern_mariana_islands": "🇲🇵", + "flag_for_norway": "🇳🇴", + "flag_for_oman": "🇴🇲", + "flag_for_pakistan": "🇵🇰", + "flag_for_palau": "🇵🇼", + "flag_for_palestinian_territories": "🇵🇸", + "flag_for_panama": "🇵🇦", + "flag_for_papua_new_guinea": "🇵🇬", + "flag_for_paraguay": "🇵🇾", + "flag_for_peru": "🇵🇪", + "flag_for_philippines": "🇵🇭", + "flag_for_pitcairn_islands": "🇵🇳", + "flag_for_poland": "🇵🇱", + "flag_for_portugal": "🇵🇹", + "flag_for_puerto_rico": "🇵🇷", + "flag_for_qatar": "🇶🇦", + "flag_for_romania": "🇷🇴", + "flag_for_russia": "🇷🇺", + "flag_for_rwanda": "🇷🇼", + "flag_for_réunion": "🇷🇪", + "flag_for_samoa": "🇼🇸", + "flag_for_san_marino": "🇸🇲", + "flag_for_saudi_arabia": "🇸🇦", + "flag_for_senegal": "🇸🇳", + "flag_for_serbia": "🇷🇸", + "flag_for_seychelles": "🇸🇨", + "flag_for_sierra_leone": "🇸🇱", + "flag_for_singapore": "🇸🇬", + "flag_for_sint_maarten": "🇸🇽", + "flag_for_slovakia": "🇸🇰", + "flag_for_slovenia": "🇸🇮", + "flag_for_solomon_islands": "🇸🇧", + "flag_for_somalia": "🇸🇴", + "flag_for_south_africa": "🇿🇦", + "flag_for_south_georgia_&_south_sandwich_islands": "🇬🇸", + "flag_for_south_korea": "🇰🇷", + "flag_for_south_sudan": "🇸🇸", + "flag_for_spain": "🇪🇸", + "flag_for_sri_lanka": "🇱🇰", + "flag_for_st._barthélemy": "🇧🇱", + "flag_for_st._helena": "🇸🇭", + "flag_for_st._kitts_&_nevis": "🇰🇳", + "flag_for_st._lucia": "🇱🇨", + "flag_for_st._martin": "🇲🇫", + "flag_for_st._pierre_&_miquelon": "🇵🇲", + "flag_for_st._vincent_&_grenadines": "🇻🇨", + "flag_for_sudan": "🇸🇩", + "flag_for_suriname": "🇸🇷", + "flag_for_svalbard_&_jan_mayen": "🇸🇯", + "flag_for_swaziland": "🇸🇿", + "flag_for_sweden": "🇸🇪", + "flag_for_switzerland": "🇨🇭", + "flag_for_syria": "🇸🇾", + "flag_for_são_tomé_&_príncipe": "🇸🇹", + "flag_for_taiwan": "🇹🇼", + "flag_for_tajikistan": "🇹🇯", + "flag_for_tanzania": "🇹🇿", + "flag_for_thailand": "🇹🇭", + "flag_for_timor__leste": "🇹🇱", + "flag_for_togo": "🇹🇬", + "flag_for_tokelau": "🇹🇰", + "flag_for_tonga": "🇹🇴", + "flag_for_trinidad_&_tobago": "🇹🇹", + "flag_for_tristan_da_cunha": "🇹🇦", + "flag_for_tunisia": "🇹🇳", + "flag_for_turkey": "🇹🇷", + "flag_for_turkmenistan": "🇹🇲", + "flag_for_turks_&_caicos_islands": "🇹🇨", + "flag_for_tuvalu": "🇹🇻", + "flag_for_u.s._outlying_islands": "🇺🇲", + "flag_for_u.s._virgin_islands": "🇻🇮", + "flag_for_uganda": "🇺🇬", + "flag_for_ukraine": "🇺🇦", + "flag_for_united_arab_emirates": "🇦🇪", + "flag_for_united_kingdom": "🇬🇧", + "flag_for_united_states": "🇺🇸", + "flag_for_uruguay": "🇺🇾", + "flag_for_uzbekistan": "🇺🇿", + "flag_for_vanuatu": "🇻🇺", + "flag_for_vatican_city": "🇻🇦", + "flag_for_venezuela": "🇻🇪", + "flag_for_vietnam": "🇻🇳", + "flag_for_wallis_&_futuna": "🇼🇫", + "flag_for_western_sahara": "🇪🇭", + "flag_for_yemen": "🇾🇪", + "flag_for_zambia": "🇿🇲", + "flag_for_zimbabwe": "🇿🇼", + "flag_for_åland_islands": "🇦🇽", + "golf": "⛳", + "fleur__de__lis": "⚜", + "muscle": "💪", + "flushed": "😳", + "frame_with_picture": "🖼", + "fries": "🍟", + "frog": "🐸", + "hatched_chick": "🐥", + "frowning": "😦", + "fuelpump": "⛽", + "full_moon_with_face": "🌝", + "gem": "💎", + "star2": "🌟", + "golfer": "🏌", + "mortar_board": "🎓", + "grimacing": "😬", + "smile_cat": "😸", + "grinning": "😀", + "grin": "😁", + "heartpulse": "💗", + "guardsman": "💂", + "haircut": "💇", + "hamster": "🐹", + "raising_hand": "🙋", + "headphones": "🎧", + "hear_no_evil": "🙉", + "cupid": "💘", + "gift_heart": "💝", + "heart": "❤", + "exclamation": "❗", + "heavy_exclamation_mark": "❗", + "heavy_heart_exclamation_mark_ornament": "❣", + "o": "⭕", + "helm_symbol": "⎈", + "helmet_with_white_cross": "⛑", + "high_heel": "👠", + "bullettrain_side": "🚄", + "bullettrain_front": "🚅", + "high_brightness": "🔆", + "zap": "⚡", + "hocho": "🔪", + "knife": "🔪", + "bee": "🐝", + "traffic_light": "🚥", + "racehorse": "🐎", + "coffee": "☕", + "hotsprings": "♨", + "hourglass": "⌛", + "hourglass_flowing_sand": "⏳", + "house_buildings": "🏘", + "100": "💯", + "hushed": "😯", + "ice_hockey_stick_and_puck": "🏒", + "imp": "👿", + "information_desk_person": "💁", + "information_source": "ℹ", + "capital_abcd": "🔠", + "abc": "🔤", + "abcd": "🔡", + "1234": "🔢", + "symbols": "🔣", + "izakaya_lantern": "🏮", + "lantern": "🏮", + "jack_o_lantern": "🎃", + "dolls": "🎎", + "japanese_goblin": "👺", + "japanese_ogre": "👹", + "beginner": "🔰", + "zero": "0️⃣", + "one": "1️⃣", + "ten": "🔟", + "two": "2️⃣", + "three": "3️⃣", + "four": "4️⃣", + "five": "5️⃣", + "six": "6️⃣", + "seven": "7️⃣", + "eight": "8️⃣", + "nine": "9️⃣", + "couplekiss": "💏", + "kissing_cat": "😽", + "kissing": "😗", + "kissing_closed_eyes": "😚", + "kissing_smiling_eyes": "😙", + "beetle": "🐞", + "large_blue_circle": "🔵", + "last_quarter_moon_with_face": "🌜", + "leaves": "🍃", + "mag": "🔍", + "left_right_arrow": "↔", + "leftwards_arrow_with_hook": "↩", + "arrow_left": "⬅", + "lock": "🔒", + "lock_with_ink_pen": "🔏", + "sob": "😭", + "low_brightness": "🔅", + "lower_left_ballpoint_pen": "🖊", + "lower_left_crayon": "🖍", + "lower_left_fountain_pen": "🖋", + "lower_left_paintbrush": "🖌", + "mahjong": "🀄", + "couple": "👫", + "man_in_business_suit_levitating": "🕴", + "man_with_gua_pi_mao": "👲", + "man_with_turban": "👳", + "mans_shoe": "👞", + "shoe": "👞", + "menorah_with_nine_branches": "🕎", + "mens": "🚹", + "minidisc": "💽", + "iphone": "📱", + "calling": "📲", + "money__mouth_face": "🤑", + "moneybag": "💰", + "rice_scene": "🎑", + "mountain_bicyclist": "🚵", + "mouse2": "🐁", + "lips": "👄", + "moyai": "🗿", + "notes": "🎶", + "nail_care": "💅", + "ab": "🆎", + "negative_squared_cross_mark": "❎", + "a": "🅰", + "b": "🅱", + "o2": "🅾", + "parking": "🅿", + "new_moon_with_face": "🌚", + "no_entry_sign": "🚫", + "underage": "🔞", + "non__potable_water": "🚱", + "arrow_upper_right": "↗", + "arrow_upper_left": "↖", + "office": "🏢", + "older_man": "👴", + "older_woman": "👵", + "om_symbol": "🕉", + "on": "🔛", + "book": "📖", + "unlock": "🔓", + "mailbox_with_no_mail": "📭", + "mailbox_with_mail": "📬", + "cd": "💿", + "tada": "🎉", + "feet": "🐾", + "walking": "🚶", + "pencil2": "✏", + "pensive": "😔", + "persevere": "😣", + "bow": "🙇", + "raised_hands": "🙌", + "person_with_ball": "⛹", + "person_with_blond_hair": "👱", + "pray": "🙏", + "person_with_pouting_face": "🙎", + "computer": "💻", + "pig2": "🐖", + "hankey": "💩", + "poop": "💩", + "shit": "💩", + "bamboo": "🎍", + "gun": "🔫", + "black_joker": "🃏", + "rotating_light": "🚨", + "cop": "👮", + "stew": "🍲", + "pouch": "👝", + "pouting_cat": "😾", + "rage": "😡", + "put_litter_in_its_place": "🚮", + "rabbit2": "🐇", + "racing_motorcycle": "🏍", + "radioactive_sign": "☢", + "fist": "✊", + "hand": "✋", + "raised_hand_with_fingers_splayed": "🖐", + "raised_hand_with_part_between_middle_and_ring_fingers": "🖖", + "blue_car": "🚙", + "apple": "🍎", + "relieved": "😌", + "reversed_hand_with_middle_finger_extended": "🖕", + "mag_right": "🔎", + "arrow_right_hook": "↪", + "sweet_potato": "🍠", + "robot": "🤖", + "rolled__up_newspaper": "🗞", + "rowboat": "🚣", + "runner": "🏃", + "running": "🏃", + "running_shirt_with_sash": "🎽", + "boat": "⛵", + "scales": "⚖", + "school_satchel": "🎒", + "scorpius": "♏", + "see_no_evil": "🙈", + "sheep": "🐑", + "stars": "🌠", + "cake": "🍰", + "six_pointed_star": "🔯", + "ski": "🎿", + "sleeping_accommodation": "🛌", + "sleeping": "😴", + "sleepy": "😪", + "sleuth_or_spy": "🕵", + "heart_eyes_cat": "😻", + "smiley_cat": "😺", + "innocent": "😇", + "heart_eyes": "😍", + "smiling_imp": "😈", + "smiley": "😃", + "sweat_smile": "😅", + "smile": "😄", + "laughing": "😆", + "satisfied": "😆", + "blush": "😊", + "smirk": "😏", + "smoking": "🚬", + "snow_capped_mountain": "🏔", + "soccer": "⚽", + "icecream": "🍦", + "soon": "🔜", + "arrow_lower_right": "↘", + "arrow_lower_left": "↙", + "speak_no_evil": "🙊", + "speaker": "🔈", + "mute": "🔇", + "sound": "🔉", + "loud_sound": "🔊", + "speaking_head_in_silhouette": "🗣", + "spiral_calendar_pad": "🗓", + "spiral_note_pad": "🗒", + "shell": "🐚", + "sweat_drops": "💦", + "u5272": "🈹", + "u5408": "🈴", + "u55b6": "🈺", + "u6307": "🈯", + "u6708": "🈷", + "u6709": "🈶", + "u6e80": "🈵", + "u7121": "🈚", + "u7533": "🈸", + "u7981": "🈲", + "u7a7a": "🈳", + "cl": "🆑", + "cool": "🆒", + "free": "🆓", + "id": "🆔", + "koko": "🈁", + "sa": "🈂", + "new": "🆕", + "ng": "🆖", + "ok": "🆗", + "sos": "🆘", + "up": "🆙", + "vs": "🆚", + "steam_locomotive": "🚂", + "ramen": "🍜", + "partly_sunny": "⛅", + "city_sunrise": "🌇", + "surfer": "🏄", + "swimmer": "🏊", + "shirt": "👕", + "tshirt": "👕", + "table_tennis_paddle_and_ball": "🏓", + "tea": "🍵", + "tv": "📺", + "three_button_mouse": "🖱", + "+1": "👍", + "thumbsup": "👍", + "__1": "👎", + "-1": "👎", + "thumbsdown": "👎", + "thunder_cloud_and_rain": "⛈", + "tiger2": "🐅", + "tophat": "🎩", + "top": "🔝", + "tm": "™", + "train2": "🚆", + "triangular_flag_on_post": "🚩", + "trident": "🔱", + "twisted_rightwards_arrows": "🔀", + "unamused": "😒", + "small_red_triangle": "🔺", + "arrow_up_small": "🔼", + "arrow_up_down": "↕", + "upside__down_face": "🙃", + "arrow_up": "⬆", + "v": "✌", + "vhs": "📼", + "wc": "🚾", + "ocean": "🌊", + "waving_black_flag": "🏴", + "wave": "👋", + "waving_white_flag": "🏳", + "moon": "🌔", + "scream_cat": "🙀", + "weary": "😩", + "weight_lifter": "🏋", + "whale2": "🐋", + "wheelchair": "♿", + "point_down": "👇", + "grey_exclamation": "❕", + "white_frowning_face": "☹", + "white_check_mark": "✅", + "point_left": "👈", + "white_medium_small_square": "◽", + "star": "⭐", + "grey_question": "❔", + "point_right": "👉", + "relaxed": "☺", + "white_sun_behind_cloud": "🌥", + "white_sun_behind_cloud_with_rain": "🌦", + "white_sun_with_small_cloud": "🌤", + "point_up_2": "👆", + "point_up": "☝", + "wind_blowing_face": "🌬", + "wink": "😉", + "wolf": "🐺", + "dancers": "👯", + "boot": "👢", + "womans_clothes": "👚", + "womans_hat": "👒", + "sandal": "👡", + "womens": "🚺", + "worried": "😟", + "gift": "🎁", + "zipper__mouth_face": "🤐", + "regional_indicator_a": "🇦", + "regional_indicator_b": "🇧", + "regional_indicator_c": "🇨", + "regional_indicator_d": "🇩", + "regional_indicator_e": "🇪", + "regional_indicator_f": "🇫", + "regional_indicator_g": "🇬", + "regional_indicator_h": "🇭", + "regional_indicator_i": "🇮", + "regional_indicator_j": "🇯", + "regional_indicator_k": "🇰", + "regional_indicator_l": "🇱", + "regional_indicator_m": "🇲", + "regional_indicator_n": "🇳", + "regional_indicator_o": "🇴", + "regional_indicator_p": "🇵", + "regional_indicator_q": "🇶", + "regional_indicator_r": "🇷", + "regional_indicator_s": "🇸", + "regional_indicator_t": "🇹", + "regional_indicator_u": "🇺", + "regional_indicator_v": "🇻", + "regional_indicator_w": "🇼", + "regional_indicator_x": "🇽", + "regional_indicator_y": "🇾", + "regional_indicator_z": "🇿", +} diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/_emoji_replace.py b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/_emoji_replace.py new file mode 100644 index 0000000..bb2cafa --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/_emoji_replace.py @@ -0,0 +1,32 @@ +from typing import Callable, Match, Optional +import re + +from ._emoji_codes import EMOJI + + +_ReStringMatch = Match[str] # regex match object +_ReSubCallable = Callable[[_ReStringMatch], str] # Callable invoked by re.sub +_EmojiSubMethod = Callable[[_ReSubCallable, str], str] # Sub method of a compiled re + + +def _emoji_replace( + text: str, + default_variant: Optional[str] = None, + _emoji_sub: _EmojiSubMethod = re.compile(r"(:(\S*?)(?:(?:\-)(emoji|text))?:)").sub, +) -> str: + """Replace emoji code in text.""" + get_emoji = EMOJI.__getitem__ + variants = {"text": "\uFE0E", "emoji": "\uFE0F"} + get_variant = variants.get + default_variant_code = variants.get(default_variant, "") if default_variant else "" + + def do_replace(match: Match[str]) -> str: + emoji_code, emoji_name, variant = match.groups() + try: + return get_emoji(emoji_name.lower()) + get_variant( + variant, default_variant_code + ) + except KeyError: + return emoji_code + + return _emoji_sub(do_replace, text) diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/_export_format.py b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/_export_format.py new file mode 100644 index 0000000..094d2dc --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/_export_format.py @@ -0,0 +1,76 @@ +CONSOLE_HTML_FORMAT = """\ + + + + + + + +
{code}
+ + +""" + +CONSOLE_SVG_FORMAT = """\ + + + + + + + + + {lines} + + + {chrome} + + {backgrounds} + + {matrix} + + + +""" + +_SVG_FONT_FAMILY = "Rich Fira Code" +_SVG_CLASSES_PREFIX = "rich-svg" diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/_extension.py b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/_extension.py new file mode 100644 index 0000000..cbd6da9 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/_extension.py @@ -0,0 +1,10 @@ +from typing import Any + + +def load_ipython_extension(ip: Any) -> None: # pragma: no cover + # prevent circular import + from pip._vendor.rich.pretty import install + from pip._vendor.rich.traceback import install as tr_install + + install() + tr_install() diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/_fileno.py b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/_fileno.py new file mode 100644 index 0000000..b17ee65 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/_fileno.py @@ -0,0 +1,24 @@ +from __future__ import annotations + +from typing import IO, Callable + + +def get_fileno(file_like: IO[str]) -> int | None: + """Get fileno() from a file, accounting for poorly implemented file-like objects. + + Args: + file_like (IO): A file-like object. + + Returns: + int | None: The result of fileno if available, or None if operation failed. + """ + fileno: Callable[[], int] | None = getattr(file_like, "fileno", None) + if fileno is not None: + try: + return fileno() + except Exception: + # `fileno` is documented as potentially raising a OSError + # Alas, from the issues, there are so many poorly implemented file-like objects, + # that `fileno()` can raise just about anything. + return None + return None diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/_inspect.py b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/_inspect.py new file mode 100644 index 0000000..30446ce --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/_inspect.py @@ -0,0 +1,270 @@ +from __future__ import absolute_import + +import inspect +from inspect import cleandoc, getdoc, getfile, isclass, ismodule, signature +from typing import Any, Collection, Iterable, Optional, Tuple, Type, Union + +from .console import Group, RenderableType +from .control import escape_control_codes +from .highlighter import ReprHighlighter +from .jupyter import JupyterMixin +from .panel import Panel +from .pretty import Pretty +from .table import Table +from .text import Text, TextType + + +def _first_paragraph(doc: str) -> str: + """Get the first paragraph from a docstring.""" + paragraph, _, _ = doc.partition("\n\n") + return paragraph + + +class Inspect(JupyterMixin): + """A renderable to inspect any Python Object. + + Args: + obj (Any): An object to inspect. + title (str, optional): Title to display over inspect result, or None use type. Defaults to None. + help (bool, optional): Show full help text rather than just first paragraph. Defaults to False. + methods (bool, optional): Enable inspection of callables. Defaults to False. + docs (bool, optional): Also render doc strings. Defaults to True. + private (bool, optional): Show private attributes (beginning with underscore). Defaults to False. + dunder (bool, optional): Show attributes starting with double underscore. Defaults to False. + sort (bool, optional): Sort attributes alphabetically. Defaults to True. + all (bool, optional): Show all attributes. Defaults to False. + value (bool, optional): Pretty print value of object. Defaults to True. + """ + + def __init__( + self, + obj: Any, + *, + title: Optional[TextType] = None, + help: bool = False, + methods: bool = False, + docs: bool = True, + private: bool = False, + dunder: bool = False, + sort: bool = True, + all: bool = True, + value: bool = True, + ) -> None: + self.highlighter = ReprHighlighter() + self.obj = obj + self.title = title or self._make_title(obj) + if all: + methods = private = dunder = True + self.help = help + self.methods = methods + self.docs = docs or help + self.private = private or dunder + self.dunder = dunder + self.sort = sort + self.value = value + + def _make_title(self, obj: Any) -> Text: + """Make a default title.""" + title_str = ( + str(obj) + if (isclass(obj) or callable(obj) or ismodule(obj)) + else str(type(obj)) + ) + title_text = self.highlighter(title_str) + return title_text + + def __rich__(self) -> Panel: + return Panel.fit( + Group(*self._render()), + title=self.title, + border_style="scope.border", + padding=(0, 1), + ) + + def _get_signature(self, name: str, obj: Any) -> Optional[Text]: + """Get a signature for a callable.""" + try: + _signature = str(signature(obj)) + ":" + except ValueError: + _signature = "(...)" + except TypeError: + return None + + source_filename: Optional[str] = None + try: + source_filename = getfile(obj) + except (OSError, TypeError): + # OSError is raised if obj has no source file, e.g. when defined in REPL. + pass + + callable_name = Text(name, style="inspect.callable") + if source_filename: + callable_name.stylize(f"link file://{source_filename}") + signature_text = self.highlighter(_signature) + + qualname = name or getattr(obj, "__qualname__", name) + + # If obj is a module, there may be classes (which are callable) to display + if inspect.isclass(obj): + prefix = "class" + elif inspect.iscoroutinefunction(obj): + prefix = "async def" + else: + prefix = "def" + + qual_signature = Text.assemble( + (f"{prefix} ", f"inspect.{prefix.replace(' ', '_')}"), + (qualname, "inspect.callable"), + signature_text, + ) + + return qual_signature + + def _render(self) -> Iterable[RenderableType]: + """Render object.""" + + def sort_items(item: Tuple[str, Any]) -> Tuple[bool, str]: + key, (_error, value) = item + return (callable(value), key.strip("_").lower()) + + def safe_getattr(attr_name: str) -> Tuple[Any, Any]: + """Get attribute or any exception.""" + try: + return (None, getattr(obj, attr_name)) + except Exception as error: + return (error, None) + + obj = self.obj + keys = dir(obj) + total_items = len(keys) + if not self.dunder: + keys = [key for key in keys if not key.startswith("__")] + if not self.private: + keys = [key for key in keys if not key.startswith("_")] + not_shown_count = total_items - len(keys) + items = [(key, safe_getattr(key)) for key in keys] + if self.sort: + items.sort(key=sort_items) + + items_table = Table.grid(padding=(0, 1), expand=False) + items_table.add_column(justify="right") + add_row = items_table.add_row + highlighter = self.highlighter + + if callable(obj): + signature = self._get_signature("", obj) + if signature is not None: + yield signature + yield "" + + if self.docs: + _doc = self._get_formatted_doc(obj) + if _doc is not None: + doc_text = Text(_doc, style="inspect.help") + doc_text = highlighter(doc_text) + yield doc_text + yield "" + + if self.value and not (isclass(obj) or callable(obj) or ismodule(obj)): + yield Panel( + Pretty(obj, indent_guides=True, max_length=10, max_string=60), + border_style="inspect.value.border", + ) + yield "" + + for key, (error, value) in items: + key_text = Text.assemble( + ( + key, + "inspect.attr.dunder" if key.startswith("__") else "inspect.attr", + ), + (" =", "inspect.equals"), + ) + if error is not None: + warning = key_text.copy() + warning.stylize("inspect.error") + add_row(warning, highlighter(repr(error))) + continue + + if callable(value): + if not self.methods: + continue + + _signature_text = self._get_signature(key, value) + if _signature_text is None: + add_row(key_text, Pretty(value, highlighter=highlighter)) + else: + if self.docs: + docs = self._get_formatted_doc(value) + if docs is not None: + _signature_text.append("\n" if "\n" in docs else " ") + doc = highlighter(docs) + doc.stylize("inspect.doc") + _signature_text.append(doc) + + add_row(key_text, _signature_text) + else: + add_row(key_text, Pretty(value, highlighter=highlighter)) + if items_table.row_count: + yield items_table + elif not_shown_count: + yield Text.from_markup( + f"[b cyan]{not_shown_count}[/][i] attribute(s) not shown.[/i] " + f"Run [b][magenta]inspect[/]([not b]inspect[/])[/b] for options." + ) + + def _get_formatted_doc(self, object_: Any) -> Optional[str]: + """ + Extract the docstring of an object, process it and returns it. + The processing consists in cleaning up the doctring's indentation, + taking only its 1st paragraph if `self.help` is not True, + and escape its control codes. + + Args: + object_ (Any): the object to get the docstring from. + + Returns: + Optional[str]: the processed docstring, or None if no docstring was found. + """ + docs = getdoc(object_) + if docs is None: + return None + docs = cleandoc(docs).strip() + if not self.help: + docs = _first_paragraph(docs) + return escape_control_codes(docs) + + +def get_object_types_mro(obj: Union[object, Type[Any]]) -> Tuple[type, ...]: + """Returns the MRO of an object's class, or of the object itself if it's a class.""" + if not hasattr(obj, "__mro__"): + # N.B. we cannot use `if type(obj) is type` here because it doesn't work with + # some types of classes, such as the ones that use abc.ABCMeta. + obj = type(obj) + return getattr(obj, "__mro__", ()) + + +def get_object_types_mro_as_strings(obj: object) -> Collection[str]: + """ + Returns the MRO of an object's class as full qualified names, or of the object itself if it's a class. + + Examples: + `object_types_mro_as_strings(JSONDecoder)` will return `['json.decoder.JSONDecoder', 'builtins.object']` + """ + return [ + f'{getattr(type_, "__module__", "")}.{getattr(type_, "__qualname__", "")}' + for type_ in get_object_types_mro(obj) + ] + + +def is_object_one_of_types( + obj: object, fully_qualified_types_names: Collection[str] +) -> bool: + """ + Returns `True` if the given object's class (or the object itself, if it's a class) has one of the + fully qualified names in its MRO. + """ + for type_name in get_object_types_mro_as_strings(obj): + if type_name in fully_qualified_types_names: + return True + return False diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/_log_render.py b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/_log_render.py new file mode 100644 index 0000000..fc16c84 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/_log_render.py @@ -0,0 +1,94 @@ +from datetime import datetime +from typing import Iterable, List, Optional, TYPE_CHECKING, Union, Callable + + +from .text import Text, TextType + +if TYPE_CHECKING: + from .console import Console, ConsoleRenderable, RenderableType + from .table import Table + +FormatTimeCallable = Callable[[datetime], Text] + + +class LogRender: + def __init__( + self, + show_time: bool = True, + show_level: bool = False, + show_path: bool = True, + time_format: Union[str, FormatTimeCallable] = "[%x %X]", + omit_repeated_times: bool = True, + level_width: Optional[int] = 8, + ) -> None: + self.show_time = show_time + self.show_level = show_level + self.show_path = show_path + self.time_format = time_format + self.omit_repeated_times = omit_repeated_times + self.level_width = level_width + self._last_time: Optional[Text] = None + + def __call__( + self, + console: "Console", + renderables: Iterable["ConsoleRenderable"], + log_time: Optional[datetime] = None, + time_format: Optional[Union[str, FormatTimeCallable]] = None, + level: TextType = "", + path: Optional[str] = None, + line_no: Optional[int] = None, + link_path: Optional[str] = None, + ) -> "Table": + from .containers import Renderables + from .table import Table + + output = Table.grid(padding=(0, 1)) + output.expand = True + if self.show_time: + output.add_column(style="log.time") + if self.show_level: + output.add_column(style="log.level", width=self.level_width) + output.add_column(ratio=1, style="log.message", overflow="fold") + if self.show_path and path: + output.add_column(style="log.path") + row: List["RenderableType"] = [] + if self.show_time: + log_time = log_time or console.get_datetime() + time_format = time_format or self.time_format + if callable(time_format): + log_time_display = time_format(log_time) + else: + log_time_display = Text(log_time.strftime(time_format)) + if log_time_display == self._last_time and self.omit_repeated_times: + row.append(Text(" " * len(log_time_display))) + else: + row.append(log_time_display) + self._last_time = log_time_display + if self.show_level: + row.append(level) + + row.append(Renderables(renderables)) + if self.show_path and path: + path_text = Text() + path_text.append( + path, style=f"link file://{link_path}" if link_path else "" + ) + if line_no: + path_text.append(":") + path_text.append( + f"{line_no}", + style=f"link file://{link_path}#{line_no}" if link_path else "", + ) + row.append(path_text) + + output.add_row(*row) + return output + + +if __name__ == "__main__": # pragma: no cover + from pip._vendor.rich.console import Console + + c = Console() + c.print("[on blue]Hello", justify="right") + c.log("[on blue]hello", justify="right") diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/_loop.py b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/_loop.py new file mode 100644 index 0000000..01c6caf --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/_loop.py @@ -0,0 +1,43 @@ +from typing import Iterable, Tuple, TypeVar + +T = TypeVar("T") + + +def loop_first(values: Iterable[T]) -> Iterable[Tuple[bool, T]]: + """Iterate and generate a tuple with a flag for first value.""" + iter_values = iter(values) + try: + value = next(iter_values) + except StopIteration: + return + yield True, value + for value in iter_values: + yield False, value + + +def loop_last(values: Iterable[T]) -> Iterable[Tuple[bool, T]]: + """Iterate and generate a tuple with a flag for last value.""" + iter_values = iter(values) + try: + previous_value = next(iter_values) + except StopIteration: + return + for value in iter_values: + yield False, previous_value + previous_value = value + yield True, previous_value + + +def loop_first_last(values: Iterable[T]) -> Iterable[Tuple[bool, bool, T]]: + """Iterate and generate a tuple with a flag for first and last value.""" + iter_values = iter(values) + try: + previous_value = next(iter_values) + except StopIteration: + return + first = True + for value in iter_values: + yield first, False, previous_value + first = False + previous_value = value + yield first, True, previous_value diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/_null_file.py b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/_null_file.py new file mode 100644 index 0000000..b659673 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/_null_file.py @@ -0,0 +1,69 @@ +from types import TracebackType +from typing import IO, Iterable, Iterator, List, Optional, Type + + +class NullFile(IO[str]): + def close(self) -> None: + pass + + def isatty(self) -> bool: + return False + + def read(self, __n: int = 1) -> str: + return "" + + def readable(self) -> bool: + return False + + def readline(self, __limit: int = 1) -> str: + return "" + + def readlines(self, __hint: int = 1) -> List[str]: + return [] + + def seek(self, __offset: int, __whence: int = 1) -> int: + return 0 + + def seekable(self) -> bool: + return False + + def tell(self) -> int: + return 0 + + def truncate(self, __size: Optional[int] = 1) -> int: + return 0 + + def writable(self) -> bool: + return False + + def writelines(self, __lines: Iterable[str]) -> None: + pass + + def __next__(self) -> str: + return "" + + def __iter__(self) -> Iterator[str]: + return iter([""]) + + def __enter__(self) -> IO[str]: + pass + + def __exit__( + self, + __t: Optional[Type[BaseException]], + __value: Optional[BaseException], + __traceback: Optional[TracebackType], + ) -> None: + pass + + def write(self, text: str) -> int: + return 0 + + def flush(self) -> None: + pass + + def fileno(self) -> int: + return -1 + + +NULL_FILE = NullFile() diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/_palettes.py b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/_palettes.py new file mode 100644 index 0000000..3c748d3 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/_palettes.py @@ -0,0 +1,309 @@ +from .palette import Palette + + +# Taken from https://en.wikipedia.org/wiki/ANSI_escape_code (Windows 10 column) +WINDOWS_PALETTE = Palette( + [ + (12, 12, 12), + (197, 15, 31), + (19, 161, 14), + (193, 156, 0), + (0, 55, 218), + (136, 23, 152), + (58, 150, 221), + (204, 204, 204), + (118, 118, 118), + (231, 72, 86), + (22, 198, 12), + (249, 241, 165), + (59, 120, 255), + (180, 0, 158), + (97, 214, 214), + (242, 242, 242), + ] +) + +# # The standard ansi colors (including bright variants) +STANDARD_PALETTE = Palette( + [ + (0, 0, 0), + (170, 0, 0), + (0, 170, 0), + (170, 85, 0), + (0, 0, 170), + (170, 0, 170), + (0, 170, 170), + (170, 170, 170), + (85, 85, 85), + (255, 85, 85), + (85, 255, 85), + (255, 255, 85), + (85, 85, 255), + (255, 85, 255), + (85, 255, 255), + (255, 255, 255), + ] +) + + +# The 256 color palette +EIGHT_BIT_PALETTE = Palette( + [ + (0, 0, 0), + (128, 0, 0), + (0, 128, 0), + (128, 128, 0), + (0, 0, 128), + (128, 0, 128), + (0, 128, 128), + (192, 192, 192), + (128, 128, 128), + (255, 0, 0), + (0, 255, 0), + (255, 255, 0), + (0, 0, 255), + (255, 0, 255), + (0, 255, 255), + (255, 255, 255), + (0, 0, 0), + (0, 0, 95), + (0, 0, 135), + (0, 0, 175), + (0, 0, 215), + (0, 0, 255), + (0, 95, 0), + (0, 95, 95), + (0, 95, 135), + (0, 95, 175), + (0, 95, 215), + (0, 95, 255), + (0, 135, 0), + (0, 135, 95), + (0, 135, 135), + (0, 135, 175), + (0, 135, 215), + (0, 135, 255), + (0, 175, 0), + (0, 175, 95), + (0, 175, 135), + (0, 175, 175), + (0, 175, 215), + (0, 175, 255), + (0, 215, 0), + (0, 215, 95), + (0, 215, 135), + (0, 215, 175), + (0, 215, 215), + (0, 215, 255), + (0, 255, 0), + (0, 255, 95), + (0, 255, 135), + (0, 255, 175), + (0, 255, 215), + (0, 255, 255), + (95, 0, 0), + (95, 0, 95), + (95, 0, 135), + (95, 0, 175), + (95, 0, 215), + (95, 0, 255), + (95, 95, 0), + (95, 95, 95), + (95, 95, 135), + (95, 95, 175), + (95, 95, 215), + (95, 95, 255), + (95, 135, 0), + (95, 135, 95), + (95, 135, 135), + (95, 135, 175), + (95, 135, 215), + (95, 135, 255), + (95, 175, 0), + (95, 175, 95), + (95, 175, 135), + (95, 175, 175), + (95, 175, 215), + (95, 175, 255), + (95, 215, 0), + (95, 215, 95), + (95, 215, 135), + (95, 215, 175), + (95, 215, 215), + (95, 215, 255), + (95, 255, 0), + (95, 255, 95), + (95, 255, 135), + (95, 255, 175), + (95, 255, 215), + (95, 255, 255), + (135, 0, 0), + (135, 0, 95), + (135, 0, 135), + (135, 0, 175), + (135, 0, 215), + (135, 0, 255), + (135, 95, 0), + (135, 95, 95), + (135, 95, 135), + (135, 95, 175), + (135, 95, 215), + (135, 95, 255), + (135, 135, 0), + (135, 135, 95), + (135, 135, 135), + (135, 135, 175), + (135, 135, 215), + (135, 135, 255), + (135, 175, 0), + (135, 175, 95), + (135, 175, 135), + (135, 175, 175), + (135, 175, 215), + (135, 175, 255), + (135, 215, 0), + (135, 215, 95), + (135, 215, 135), + (135, 215, 175), + (135, 215, 215), + (135, 215, 255), + (135, 255, 0), + (135, 255, 95), + (135, 255, 135), + (135, 255, 175), + (135, 255, 215), + (135, 255, 255), + (175, 0, 0), + (175, 0, 95), + (175, 0, 135), + (175, 0, 175), + (175, 0, 215), + (175, 0, 255), + (175, 95, 0), + (175, 95, 95), + (175, 95, 135), + (175, 95, 175), + (175, 95, 215), + (175, 95, 255), + (175, 135, 0), + (175, 135, 95), + (175, 135, 135), + (175, 135, 175), + (175, 135, 215), + (175, 135, 255), + (175, 175, 0), + (175, 175, 95), + (175, 175, 135), + (175, 175, 175), + (175, 175, 215), + (175, 175, 255), + (175, 215, 0), + (175, 215, 95), + (175, 215, 135), + (175, 215, 175), + (175, 215, 215), + (175, 215, 255), + (175, 255, 0), + (175, 255, 95), + (175, 255, 135), + (175, 255, 175), + (175, 255, 215), + (175, 255, 255), + (215, 0, 0), + (215, 0, 95), + (215, 0, 135), + (215, 0, 175), + (215, 0, 215), + (215, 0, 255), + (215, 95, 0), + (215, 95, 95), + (215, 95, 135), + (215, 95, 175), + (215, 95, 215), + (215, 95, 255), + (215, 135, 0), + (215, 135, 95), + (215, 135, 135), + (215, 135, 175), + (215, 135, 215), + (215, 135, 255), + (215, 175, 0), + (215, 175, 95), + (215, 175, 135), + (215, 175, 175), + (215, 175, 215), + (215, 175, 255), + (215, 215, 0), + (215, 215, 95), + (215, 215, 135), + (215, 215, 175), + (215, 215, 215), + (215, 215, 255), + (215, 255, 0), + (215, 255, 95), + (215, 255, 135), + (215, 255, 175), + (215, 255, 215), + (215, 255, 255), + (255, 0, 0), + (255, 0, 95), + (255, 0, 135), + (255, 0, 175), + (255, 0, 215), + (255, 0, 255), + (255, 95, 0), + (255, 95, 95), + (255, 95, 135), + (255, 95, 175), + (255, 95, 215), + (255, 95, 255), + (255, 135, 0), + (255, 135, 95), + (255, 135, 135), + (255, 135, 175), + (255, 135, 215), + (255, 135, 255), + (255, 175, 0), + (255, 175, 95), + (255, 175, 135), + (255, 175, 175), + (255, 175, 215), + (255, 175, 255), + (255, 215, 0), + (255, 215, 95), + (255, 215, 135), + (255, 215, 175), + (255, 215, 215), + (255, 215, 255), + (255, 255, 0), + (255, 255, 95), + (255, 255, 135), + (255, 255, 175), + (255, 255, 215), + (255, 255, 255), + (8, 8, 8), + (18, 18, 18), + (28, 28, 28), + (38, 38, 38), + (48, 48, 48), + (58, 58, 58), + (68, 68, 68), + (78, 78, 78), + (88, 88, 88), + (98, 98, 98), + (108, 108, 108), + (118, 118, 118), + (128, 128, 128), + (138, 138, 138), + (148, 148, 148), + (158, 158, 158), + (168, 168, 168), + (178, 178, 178), + (188, 188, 188), + (198, 198, 198), + (208, 208, 208), + (218, 218, 218), + (228, 228, 228), + (238, 238, 238), + ] +) diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/_pick.py b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/_pick.py new file mode 100644 index 0000000..4f6d8b2 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/_pick.py @@ -0,0 +1,17 @@ +from typing import Optional + + +def pick_bool(*values: Optional[bool]) -> bool: + """Pick the first non-none bool or return the last value. + + Args: + *values (bool): Any number of boolean or None values. + + Returns: + bool: First non-none boolean. + """ + assert values, "1 or more values required" + for value in values: + if value is not None: + return value + return bool(value) diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/_ratio.py b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/_ratio.py new file mode 100644 index 0000000..e8a3a67 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/_ratio.py @@ -0,0 +1,160 @@ +import sys +from fractions import Fraction +from math import ceil +from typing import cast, List, Optional, Sequence + +if sys.version_info >= (3, 8): + from typing import Protocol +else: + from pip._vendor.typing_extensions import Protocol # pragma: no cover + + +class Edge(Protocol): + """Any object that defines an edge (such as Layout).""" + + size: Optional[int] = None + ratio: int = 1 + minimum_size: int = 1 + + +def ratio_resolve(total: int, edges: Sequence[Edge]) -> List[int]: + """Divide total space to satisfy size, ratio, and minimum_size, constraints. + + The returned list of integers should add up to total in most cases, unless it is + impossible to satisfy all the constraints. For instance, if there are two edges + with a minimum size of 20 each and `total` is 30 then the returned list will be + greater than total. In practice, this would mean that a Layout object would + clip the rows that would overflow the screen height. + + Args: + total (int): Total number of characters. + edges (List[Edge]): Edges within total space. + + Returns: + List[int]: Number of characters for each edge. + """ + # Size of edge or None for yet to be determined + sizes = [(edge.size or None) for edge in edges] + + _Fraction = Fraction + + # While any edges haven't been calculated + while None in sizes: + # Get flexible edges and index to map these back on to sizes list + flexible_edges = [ + (index, edge) + for index, (size, edge) in enumerate(zip(sizes, edges)) + if size is None + ] + # Remaining space in total + remaining = total - sum(size or 0 for size in sizes) + if remaining <= 0: + # No room for flexible edges + return [ + ((edge.minimum_size or 1) if size is None else size) + for size, edge in zip(sizes, edges) + ] + # Calculate number of characters in a ratio portion + portion = _Fraction( + remaining, sum((edge.ratio or 1) for _, edge in flexible_edges) + ) + + # If any edges will be less than their minimum, replace size with the minimum + for index, edge in flexible_edges: + if portion * edge.ratio <= edge.minimum_size: + sizes[index] = edge.minimum_size + # New fixed size will invalidate calculations, so we need to repeat the process + break + else: + # Distribute flexible space and compensate for rounding error + # Since edge sizes can only be integers we need to add the remainder + # to the following line + remainder = _Fraction(0) + for index, edge in flexible_edges: + size, remainder = divmod(portion * edge.ratio + remainder, 1) + sizes[index] = size + break + # Sizes now contains integers only + return cast(List[int], sizes) + + +def ratio_reduce( + total: int, ratios: List[int], maximums: List[int], values: List[int] +) -> List[int]: + """Divide an integer total in to parts based on ratios. + + Args: + total (int): The total to divide. + ratios (List[int]): A list of integer ratios. + maximums (List[int]): List of maximums values for each slot. + values (List[int]): List of values + + Returns: + List[int]: A list of integers guaranteed to sum to total. + """ + ratios = [ratio if _max else 0 for ratio, _max in zip(ratios, maximums)] + total_ratio = sum(ratios) + if not total_ratio: + return values[:] + total_remaining = total + result: List[int] = [] + append = result.append + for ratio, maximum, value in zip(ratios, maximums, values): + if ratio and total_ratio > 0: + distributed = min(maximum, round(ratio * total_remaining / total_ratio)) + append(value - distributed) + total_remaining -= distributed + total_ratio -= ratio + else: + append(value) + return result + + +def ratio_distribute( + total: int, ratios: List[int], minimums: Optional[List[int]] = None +) -> List[int]: + """Distribute an integer total in to parts based on ratios. + + Args: + total (int): The total to divide. + ratios (List[int]): A list of integer ratios. + minimums (List[int]): List of minimum values for each slot. + + Returns: + List[int]: A list of integers guaranteed to sum to total. + """ + if minimums: + ratios = [ratio if _min else 0 for ratio, _min in zip(ratios, minimums)] + total_ratio = sum(ratios) + assert total_ratio > 0, "Sum of ratios must be > 0" + + total_remaining = total + distributed_total: List[int] = [] + append = distributed_total.append + if minimums is None: + _minimums = [0] * len(ratios) + else: + _minimums = minimums + for ratio, minimum in zip(ratios, _minimums): + if total_ratio > 0: + distributed = max(minimum, ceil(ratio * total_remaining / total_ratio)) + else: + distributed = total_remaining + append(distributed) + total_ratio -= ratio + total_remaining -= distributed + return distributed_total + + +if __name__ == "__main__": + from dataclasses import dataclass + + @dataclass + class E: + + size: Optional[int] = None + ratio: int = 1 + minimum_size: int = 1 + + resolved = ratio_resolve(110, [E(None, 1, 1), E(None, 1, 1), E(None, 1, 1)]) + print(sum(resolved)) diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/_spinners.py b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/_spinners.py new file mode 100644 index 0000000..d0bb1fe --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/_spinners.py @@ -0,0 +1,482 @@ +""" +Spinners are from: +* cli-spinners: + MIT License + Copyright (c) Sindre Sorhus (sindresorhus.com) + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights to + use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + the Software, and to permit persons to whom the Software is furnished to do so, + subject to the following conditions: + The above copyright notice and this permission notice shall be included + in all copies or substantial portions of the Software. + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, + INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR + PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE + FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, + ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS + IN THE SOFTWARE. +""" + +SPINNERS = { + "dots": { + "interval": 80, + "frames": "⠋⠙⠹⠸⠼⠴⠦⠧⠇⠏", + }, + "dots2": {"interval": 80, "frames": "⣾⣽⣻⢿⡿⣟⣯⣷"}, + "dots3": { + "interval": 80, + "frames": "⠋⠙⠚⠞⠖⠦⠴⠲⠳⠓", + }, + "dots4": { + "interval": 80, + "frames": "⠄⠆⠇⠋⠙⠸⠰⠠⠰⠸⠙⠋⠇⠆", + }, + "dots5": { + "interval": 80, + "frames": "⠋⠙⠚⠒⠂⠂⠒⠲⠴⠦⠖⠒⠐⠐⠒⠓⠋", + }, + "dots6": { + "interval": 80, + "frames": "⠁⠉⠙⠚⠒⠂⠂⠒⠲⠴⠤⠄⠄⠤⠴⠲⠒⠂⠂⠒⠚⠙⠉⠁", + }, + "dots7": { + "interval": 80, + "frames": "⠈⠉⠋⠓⠒⠐⠐⠒⠖⠦⠤⠠⠠⠤⠦⠖⠒⠐⠐⠒⠓⠋⠉⠈", + }, + "dots8": { + "interval": 80, + "frames": "⠁⠁⠉⠙⠚⠒⠂⠂⠒⠲⠴⠤⠄⠄⠤⠠⠠⠤⠦⠖⠒⠐⠐⠒⠓⠋⠉⠈⠈", + }, + "dots9": {"interval": 80, "frames": "⢹⢺⢼⣸⣇⡧⡗⡏"}, + "dots10": {"interval": 80, "frames": "⢄⢂⢁⡁⡈⡐⡠"}, + "dots11": {"interval": 100, "frames": "⠁⠂⠄⡀⢀⠠⠐⠈"}, + "dots12": { + "interval": 80, + "frames": [ + "⢀⠀", + "⡀⠀", + "⠄⠀", + "⢂⠀", + "⡂⠀", + "⠅⠀", + "⢃⠀", + "⡃⠀", + "⠍⠀", + "⢋⠀", + "⡋⠀", + "⠍⠁", + "⢋⠁", + "⡋⠁", + "⠍⠉", + "⠋⠉", + "⠋⠉", + "⠉⠙", + "⠉⠙", + "⠉⠩", + "⠈⢙", + "⠈⡙", + "⢈⠩", + "⡀⢙", + "⠄⡙", + "⢂⠩", + "⡂⢘", + "⠅⡘", + "⢃⠨", + "⡃⢐", + "⠍⡐", + "⢋⠠", + "⡋⢀", + "⠍⡁", + "⢋⠁", + "⡋⠁", + "⠍⠉", + "⠋⠉", + "⠋⠉", + "⠉⠙", + "⠉⠙", + "⠉⠩", + "⠈⢙", + "⠈⡙", + "⠈⠩", + "⠀⢙", + "⠀⡙", + "⠀⠩", + "⠀⢘", + "⠀⡘", + "⠀⠨", + "⠀⢐", + "⠀⡐", + "⠀⠠", + "⠀⢀", + "⠀⡀", + ], + }, + "dots8Bit": { + "interval": 80, + "frames": "⠀⠁⠂⠃⠄⠅⠆⠇⡀⡁⡂⡃⡄⡅⡆⡇⠈⠉⠊⠋⠌⠍⠎⠏⡈⡉⡊⡋⡌⡍⡎⡏⠐⠑⠒⠓⠔⠕⠖⠗⡐⡑⡒⡓⡔⡕⡖⡗⠘⠙⠚⠛⠜⠝⠞⠟⡘⡙" + "⡚⡛⡜⡝⡞⡟⠠⠡⠢⠣⠤⠥⠦⠧⡠⡡⡢⡣⡤⡥⡦⡧⠨⠩⠪⠫⠬⠭⠮⠯⡨⡩⡪⡫⡬⡭⡮⡯⠰⠱⠲⠳⠴⠵⠶⠷⡰⡱⡲⡳⡴⡵⡶⡷⠸⠹⠺⠻" + "⠼⠽⠾⠿⡸⡹⡺⡻⡼⡽⡾⡿⢀⢁⢂⢃⢄⢅⢆⢇⣀⣁⣂⣃⣄⣅⣆⣇⢈⢉⢊⢋⢌⢍⢎⢏⣈⣉⣊⣋⣌⣍⣎⣏⢐⢑⢒⢓⢔⢕⢖⢗⣐⣑⣒⣓⣔⣕" + "⣖⣗⢘⢙⢚⢛⢜⢝⢞⢟⣘⣙⣚⣛⣜⣝⣞⣟⢠⢡⢢⢣⢤⢥⢦⢧⣠⣡⣢⣣⣤⣥⣦⣧⢨⢩⢪⢫⢬⢭⢮⢯⣨⣩⣪⣫⣬⣭⣮⣯⢰⢱⢲⢳⢴⢵⢶⢷" + "⣰⣱⣲⣳⣴⣵⣶⣷⢸⢹⢺⢻⢼⢽⢾⢿⣸⣹⣺⣻⣼⣽⣾⣿", + }, + "line": {"interval": 130, "frames": ["-", "\\", "|", "/"]}, + "line2": {"interval": 100, "frames": "⠂-–—–-"}, + "pipe": {"interval": 100, "frames": "┤┘┴└├┌┬┐"}, + "simpleDots": {"interval": 400, "frames": [". ", ".. ", "...", " "]}, + "simpleDotsScrolling": { + "interval": 200, + "frames": [". ", ".. ", "...", " ..", " .", " "], + }, + "star": {"interval": 70, "frames": "✶✸✹✺✹✷"}, + "star2": {"interval": 80, "frames": "+x*"}, + "flip": { + "interval": 70, + "frames": "___-``'´-___", + }, + "hamburger": {"interval": 100, "frames": "☱☲☴"}, + "growVertical": { + "interval": 120, + "frames": "▁▃▄▅▆▇▆▅▄▃", + }, + "growHorizontal": { + "interval": 120, + "frames": "▏▎▍▌▋▊▉▊▋▌▍▎", + }, + "balloon": {"interval": 140, "frames": " .oO@* "}, + "balloon2": {"interval": 120, "frames": ".oO°Oo."}, + "noise": {"interval": 100, "frames": "▓▒░"}, + "bounce": {"interval": 120, "frames": "⠁⠂⠄⠂"}, + "boxBounce": {"interval": 120, "frames": "▖▘▝▗"}, + "boxBounce2": {"interval": 100, "frames": "▌▀▐▄"}, + "triangle": {"interval": 50, "frames": "◢◣◤◥"}, + "arc": {"interval": 100, "frames": "◜◠◝◞◡◟"}, + "circle": {"interval": 120, "frames": "◡⊙◠"}, + "squareCorners": {"interval": 180, "frames": "◰◳◲◱"}, + "circleQuarters": {"interval": 120, "frames": "◴◷◶◵"}, + "circleHalves": {"interval": 50, "frames": "◐◓◑◒"}, + "squish": {"interval": 100, "frames": "╫╪"}, + "toggle": {"interval": 250, "frames": "⊶⊷"}, + "toggle2": {"interval": 80, "frames": "▫▪"}, + "toggle3": {"interval": 120, "frames": "□■"}, + "toggle4": {"interval": 100, "frames": "■□▪▫"}, + "toggle5": {"interval": 100, "frames": "▮▯"}, + "toggle6": {"interval": 300, "frames": "ဝ၀"}, + "toggle7": {"interval": 80, "frames": "⦾⦿"}, + "toggle8": {"interval": 100, "frames": "◍◌"}, + "toggle9": {"interval": 100, "frames": "◉◎"}, + "toggle10": {"interval": 100, "frames": "㊂㊀㊁"}, + "toggle11": {"interval": 50, "frames": "⧇⧆"}, + "toggle12": {"interval": 120, "frames": "☗☖"}, + "toggle13": {"interval": 80, "frames": "=*-"}, + "arrow": {"interval": 100, "frames": "←↖↑↗→↘↓↙"}, + "arrow2": { + "interval": 80, + "frames": ["⬆️ ", "↗️ ", "➡️ ", "↘️ ", "⬇️ ", "↙️ ", "⬅️ ", "↖️ "], + }, + "arrow3": { + "interval": 120, + "frames": ["▹▹▹▹▹", "▸▹▹▹▹", "▹▸▹▹▹", "▹▹▸▹▹", "▹▹▹▸▹", "▹▹▹▹▸"], + }, + "bouncingBar": { + "interval": 80, + "frames": [ + "[ ]", + "[= ]", + "[== ]", + "[=== ]", + "[ ===]", + "[ ==]", + "[ =]", + "[ ]", + "[ =]", + "[ ==]", + "[ ===]", + "[====]", + "[=== ]", + "[== ]", + "[= ]", + ], + }, + "bouncingBall": { + "interval": 80, + "frames": [ + "( ● )", + "( ● )", + "( ● )", + "( ● )", + "( ●)", + "( ● )", + "( ● )", + "( ● )", + "( ● )", + "(● )", + ], + }, + "smiley": {"interval": 200, "frames": ["😄 ", "😝 "]}, + "monkey": {"interval": 300, "frames": ["🙈 ", "🙈 ", "🙉 ", "🙊 "]}, + "hearts": {"interval": 100, "frames": ["💛 ", "💙 ", "💜 ", "💚 ", "❤️ "]}, + "clock": { + "interval": 100, + "frames": [ + "🕛 ", + "🕐 ", + "🕑 ", + "🕒 ", + "🕓 ", + "🕔 ", + "🕕 ", + "🕖 ", + "🕗 ", + "🕘 ", + "🕙 ", + "🕚 ", + ], + }, + "earth": {"interval": 180, "frames": ["🌍 ", "🌎 ", "🌏 "]}, + "material": { + "interval": 17, + "frames": [ + "█▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁", + "██▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁", + "███▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁", + "████▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁", + "██████▁▁▁▁▁▁▁▁▁▁▁▁▁▁", + "██████▁▁▁▁▁▁▁▁▁▁▁▁▁▁", + "███████▁▁▁▁▁▁▁▁▁▁▁▁▁", + "████████▁▁▁▁▁▁▁▁▁▁▁▁", + "█████████▁▁▁▁▁▁▁▁▁▁▁", + "█████████▁▁▁▁▁▁▁▁▁▁▁", + "██████████▁▁▁▁▁▁▁▁▁▁", + "███████████▁▁▁▁▁▁▁▁▁", + "█████████████▁▁▁▁▁▁▁", + "██████████████▁▁▁▁▁▁", + "██████████████▁▁▁▁▁▁", + "▁██████████████▁▁▁▁▁", + "▁██████████████▁▁▁▁▁", + "▁██████████████▁▁▁▁▁", + "▁▁██████████████▁▁▁▁", + "▁▁▁██████████████▁▁▁", + "▁▁▁▁█████████████▁▁▁", + "▁▁▁▁██████████████▁▁", + "▁▁▁▁██████████████▁▁", + "▁▁▁▁▁██████████████▁", + "▁▁▁▁▁██████████████▁", + "▁▁▁▁▁██████████████▁", + "▁▁▁▁▁▁██████████████", + "▁▁▁▁▁▁██████████████", + "▁▁▁▁▁▁▁█████████████", + "▁▁▁▁▁▁▁█████████████", + "▁▁▁▁▁▁▁▁████████████", + "▁▁▁▁▁▁▁▁████████████", + "▁▁▁▁▁▁▁▁▁███████████", + "▁▁▁▁▁▁▁▁▁███████████", + "▁▁▁▁▁▁▁▁▁▁██████████", + "▁▁▁▁▁▁▁▁▁▁██████████", + "▁▁▁▁▁▁▁▁▁▁▁▁████████", + "▁▁▁▁▁▁▁▁▁▁▁▁▁███████", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁██████", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█████", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█████", + "█▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁████", + "██▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁███", + "██▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁███", + "███▁▁▁▁▁▁▁▁▁▁▁▁▁▁███", + "████▁▁▁▁▁▁▁▁▁▁▁▁▁▁██", + "█████▁▁▁▁▁▁▁▁▁▁▁▁▁▁█", + "█████▁▁▁▁▁▁▁▁▁▁▁▁▁▁█", + "██████▁▁▁▁▁▁▁▁▁▁▁▁▁█", + "████████▁▁▁▁▁▁▁▁▁▁▁▁", + "█████████▁▁▁▁▁▁▁▁▁▁▁", + "█████████▁▁▁▁▁▁▁▁▁▁▁", + "█████████▁▁▁▁▁▁▁▁▁▁▁", + "█████████▁▁▁▁▁▁▁▁▁▁▁", + "███████████▁▁▁▁▁▁▁▁▁", + "████████████▁▁▁▁▁▁▁▁", + "████████████▁▁▁▁▁▁▁▁", + "██████████████▁▁▁▁▁▁", + "██████████████▁▁▁▁▁▁", + "▁██████████████▁▁▁▁▁", + "▁██████████████▁▁▁▁▁", + "▁▁▁█████████████▁▁▁▁", + "▁▁▁▁▁████████████▁▁▁", + "▁▁▁▁▁████████████▁▁▁", + "▁▁▁▁▁▁███████████▁▁▁", + "▁▁▁▁▁▁▁▁█████████▁▁▁", + "▁▁▁▁▁▁▁▁█████████▁▁▁", + "▁▁▁▁▁▁▁▁▁█████████▁▁", + "▁▁▁▁▁▁▁▁▁█████████▁▁", + "▁▁▁▁▁▁▁▁▁▁█████████▁", + "▁▁▁▁▁▁▁▁▁▁▁████████▁", + "▁▁▁▁▁▁▁▁▁▁▁████████▁", + "▁▁▁▁▁▁▁▁▁▁▁▁███████▁", + "▁▁▁▁▁▁▁▁▁▁▁▁███████▁", + "▁▁▁▁▁▁▁▁▁▁▁▁▁███████", + "▁▁▁▁▁▁▁▁▁▁▁▁▁███████", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█████", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁████", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁████", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁████", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁███", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁███", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁██", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁██", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁██", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁", + ], + }, + "moon": { + "interval": 80, + "frames": ["🌑 ", "🌒 ", "🌓 ", "🌔 ", "🌕 ", "🌖 ", "🌗 ", "🌘 "], + }, + "runner": {"interval": 140, "frames": ["🚶 ", "🏃 "]}, + "pong": { + "interval": 80, + "frames": [ + "▐⠂ ▌", + "▐⠈ ▌", + "▐ ⠂ ▌", + "▐ ⠠ ▌", + "▐ ⡀ ▌", + "▐ ⠠ ▌", + "▐ ⠂ ▌", + "▐ ⠈ ▌", + "▐ ⠂ ▌", + "▐ ⠠ ▌", + "▐ ⡀ ▌", + "▐ ⠠ ▌", + "▐ ⠂ ▌", + "▐ ⠈ ▌", + "▐ ⠂▌", + "▐ ⠠▌", + "▐ ⡀▌", + "▐ ⠠ ▌", + "▐ ⠂ ▌", + "▐ ⠈ ▌", + "▐ ⠂ ▌", + "▐ ⠠ ▌", + "▐ ⡀ ▌", + "▐ ⠠ ▌", + "▐ ⠂ ▌", + "▐ ⠈ ▌", + "▐ ⠂ ▌", + "▐ ⠠ ▌", + "▐ ⡀ ▌", + "▐⠠ ▌", + ], + }, + "shark": { + "interval": 120, + "frames": [ + "▐|\\____________▌", + "▐_|\\___________▌", + "▐__|\\__________▌", + "▐___|\\_________▌", + "▐____|\\________▌", + "▐_____|\\_______▌", + "▐______|\\______▌", + "▐_______|\\_____▌", + "▐________|\\____▌", + "▐_________|\\___▌", + "▐__________|\\__▌", + "▐___________|\\_▌", + "▐____________|\\▌", + "▐____________/|▌", + "▐___________/|_▌", + "▐__________/|__▌", + "▐_________/|___▌", + "▐________/|____▌", + "▐_______/|_____▌", + "▐______/|______▌", + "▐_____/|_______▌", + "▐____/|________▌", + "▐___/|_________▌", + "▐__/|__________▌", + "▐_/|___________▌", + "▐/|____________▌", + ], + }, + "dqpb": {"interval": 100, "frames": "dqpb"}, + "weather": { + "interval": 100, + "frames": [ + "☀️ ", + "☀️ ", + "☀️ ", + "🌤 ", + "⛅️ ", + "🌥 ", + "☁️ ", + "🌧 ", + "🌨 ", + "🌧 ", + "🌨 ", + "🌧 ", + "🌨 ", + "⛈ ", + "🌨 ", + "🌧 ", + "🌨 ", + "☁️ ", + "🌥 ", + "⛅️ ", + "🌤 ", + "☀️ ", + "☀️ ", + ], + }, + "christmas": {"interval": 400, "frames": "🌲🎄"}, + "grenade": { + "interval": 80, + "frames": [ + "، ", + "′ ", + " ´ ", + " ‾ ", + " ⸌", + " ⸊", + " |", + " ⁎", + " ⁕", + " ෴ ", + " ⁓", + " ", + " ", + " ", + ], + }, + "point": {"interval": 125, "frames": ["∙∙∙", "●∙∙", "∙●∙", "∙∙●", "∙∙∙"]}, + "layer": {"interval": 150, "frames": "-=≡"}, + "betaWave": { + "interval": 80, + "frames": [ + "ρββββββ", + "βρβββββ", + "ββρββββ", + "βββρβββ", + "ββββρββ", + "βββββρβ", + "ββββββρ", + ], + }, + "aesthetic": { + "interval": 80, + "frames": [ + "▰▱▱▱▱▱▱", + "▰▰▱▱▱▱▱", + "▰▰▰▱▱▱▱", + "▰▰▰▰▱▱▱", + "▰▰▰▰▰▱▱", + "▰▰▰▰▰▰▱", + "▰▰▰▰▰▰▰", + "▰▱▱▱▱▱▱", + ], + }, +} diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/_stack.py b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/_stack.py new file mode 100644 index 0000000..194564e --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/_stack.py @@ -0,0 +1,16 @@ +from typing import List, TypeVar + +T = TypeVar("T") + + +class Stack(List[T]): + """A small shim over builtin list.""" + + @property + def top(self) -> T: + """Get top of stack.""" + return self[-1] + + def push(self, item: T) -> None: + """Push an item on to the stack (append in stack nomenclature).""" + self.append(item) diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/_timer.py b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/_timer.py new file mode 100644 index 0000000..a2ca6be --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/_timer.py @@ -0,0 +1,19 @@ +""" +Timer context manager, only used in debug. + +""" + +from time import time + +import contextlib +from typing import Generator + + +@contextlib.contextmanager +def timer(subject: str = "time") -> Generator[None, None, None]: + """print the elapsed time. (only used in debugging)""" + start = time() + yield + elapsed = time() - start + elapsed_ms = elapsed * 1000 + print(f"{subject} elapsed {elapsed_ms:.1f}ms") diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/_win32_console.py b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/_win32_console.py new file mode 100644 index 0000000..81b1082 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/_win32_console.py @@ -0,0 +1,662 @@ +"""Light wrapper around the Win32 Console API - this module should only be imported on Windows + +The API that this module wraps is documented at https://docs.microsoft.com/en-us/windows/console/console-functions +""" +import ctypes +import sys +from typing import Any + +windll: Any = None +if sys.platform == "win32": + windll = ctypes.LibraryLoader(ctypes.WinDLL) +else: + raise ImportError(f"{__name__} can only be imported on Windows") + +import time +from ctypes import Structure, byref, wintypes +from typing import IO, NamedTuple, Type, cast + +from pip._vendor.rich.color import ColorSystem +from pip._vendor.rich.style import Style + +STDOUT = -11 +ENABLE_VIRTUAL_TERMINAL_PROCESSING = 4 + +COORD = wintypes._COORD + + +class LegacyWindowsError(Exception): + pass + + +class WindowsCoordinates(NamedTuple): + """Coordinates in the Windows Console API are (y, x), not (x, y). + This class is intended to prevent that confusion. + Rows and columns are indexed from 0. + This class can be used in place of wintypes._COORD in arguments and argtypes. + """ + + row: int + col: int + + @classmethod + def from_param(cls, value: "WindowsCoordinates") -> COORD: + """Converts a WindowsCoordinates into a wintypes _COORD structure. + This classmethod is internally called by ctypes to perform the conversion. + + Args: + value (WindowsCoordinates): The input coordinates to convert. + + Returns: + wintypes._COORD: The converted coordinates struct. + """ + return COORD(value.col, value.row) + + +class CONSOLE_SCREEN_BUFFER_INFO(Structure): + _fields_ = [ + ("dwSize", COORD), + ("dwCursorPosition", COORD), + ("wAttributes", wintypes.WORD), + ("srWindow", wintypes.SMALL_RECT), + ("dwMaximumWindowSize", COORD), + ] + + +class CONSOLE_CURSOR_INFO(ctypes.Structure): + _fields_ = [("dwSize", wintypes.DWORD), ("bVisible", wintypes.BOOL)] + + +_GetStdHandle = windll.kernel32.GetStdHandle +_GetStdHandle.argtypes = [ + wintypes.DWORD, +] +_GetStdHandle.restype = wintypes.HANDLE + + +def GetStdHandle(handle: int = STDOUT) -> wintypes.HANDLE: + """Retrieves a handle to the specified standard device (standard input, standard output, or standard error). + + Args: + handle (int): Integer identifier for the handle. Defaults to -11 (stdout). + + Returns: + wintypes.HANDLE: The handle + """ + return cast(wintypes.HANDLE, _GetStdHandle(handle)) + + +_GetConsoleMode = windll.kernel32.GetConsoleMode +_GetConsoleMode.argtypes = [wintypes.HANDLE, wintypes.LPDWORD] +_GetConsoleMode.restype = wintypes.BOOL + + +def GetConsoleMode(std_handle: wintypes.HANDLE) -> int: + """Retrieves the current input mode of a console's input buffer + or the current output mode of a console screen buffer. + + Args: + std_handle (wintypes.HANDLE): A handle to the console input buffer or the console screen buffer. + + Raises: + LegacyWindowsError: If any error occurs while calling the Windows console API. + + Returns: + int: Value representing the current console mode as documented at + https://docs.microsoft.com/en-us/windows/console/getconsolemode#parameters + """ + + console_mode = wintypes.DWORD() + success = bool(_GetConsoleMode(std_handle, console_mode)) + if not success: + raise LegacyWindowsError("Unable to get legacy Windows Console Mode") + return console_mode.value + + +_FillConsoleOutputCharacterW = windll.kernel32.FillConsoleOutputCharacterW +_FillConsoleOutputCharacterW.argtypes = [ + wintypes.HANDLE, + ctypes.c_char, + wintypes.DWORD, + cast(Type[COORD], WindowsCoordinates), + ctypes.POINTER(wintypes.DWORD), +] +_FillConsoleOutputCharacterW.restype = wintypes.BOOL + + +def FillConsoleOutputCharacter( + std_handle: wintypes.HANDLE, + char: str, + length: int, + start: WindowsCoordinates, +) -> int: + """Writes a character to the console screen buffer a specified number of times, beginning at the specified coordinates. + + Args: + std_handle (wintypes.HANDLE): A handle to the console input buffer or the console screen buffer. + char (str): The character to write. Must be a string of length 1. + length (int): The number of times to write the character. + start (WindowsCoordinates): The coordinates to start writing at. + + Returns: + int: The number of characters written. + """ + character = ctypes.c_char(char.encode()) + num_characters = wintypes.DWORD(length) + num_written = wintypes.DWORD(0) + _FillConsoleOutputCharacterW( + std_handle, + character, + num_characters, + start, + byref(num_written), + ) + return num_written.value + + +_FillConsoleOutputAttribute = windll.kernel32.FillConsoleOutputAttribute +_FillConsoleOutputAttribute.argtypes = [ + wintypes.HANDLE, + wintypes.WORD, + wintypes.DWORD, + cast(Type[COORD], WindowsCoordinates), + ctypes.POINTER(wintypes.DWORD), +] +_FillConsoleOutputAttribute.restype = wintypes.BOOL + + +def FillConsoleOutputAttribute( + std_handle: wintypes.HANDLE, + attributes: int, + length: int, + start: WindowsCoordinates, +) -> int: + """Sets the character attributes for a specified number of character cells, + beginning at the specified coordinates in a screen buffer. + + Args: + std_handle (wintypes.HANDLE): A handle to the console input buffer or the console screen buffer. + attributes (int): Integer value representing the foreground and background colours of the cells. + length (int): The number of cells to set the output attribute of. + start (WindowsCoordinates): The coordinates of the first cell whose attributes are to be set. + + Returns: + int: The number of cells whose attributes were actually set. + """ + num_cells = wintypes.DWORD(length) + style_attrs = wintypes.WORD(attributes) + num_written = wintypes.DWORD(0) + _FillConsoleOutputAttribute( + std_handle, style_attrs, num_cells, start, byref(num_written) + ) + return num_written.value + + +_SetConsoleTextAttribute = windll.kernel32.SetConsoleTextAttribute +_SetConsoleTextAttribute.argtypes = [ + wintypes.HANDLE, + wintypes.WORD, +] +_SetConsoleTextAttribute.restype = wintypes.BOOL + + +def SetConsoleTextAttribute( + std_handle: wintypes.HANDLE, attributes: wintypes.WORD +) -> bool: + """Set the colour attributes for all text written after this function is called. + + Args: + std_handle (wintypes.HANDLE): A handle to the console input buffer or the console screen buffer. + attributes (int): Integer value representing the foreground and background colours. + + + Returns: + bool: True if the attribute was set successfully, otherwise False. + """ + return bool(_SetConsoleTextAttribute(std_handle, attributes)) + + +_GetConsoleScreenBufferInfo = windll.kernel32.GetConsoleScreenBufferInfo +_GetConsoleScreenBufferInfo.argtypes = [ + wintypes.HANDLE, + ctypes.POINTER(CONSOLE_SCREEN_BUFFER_INFO), +] +_GetConsoleScreenBufferInfo.restype = wintypes.BOOL + + +def GetConsoleScreenBufferInfo( + std_handle: wintypes.HANDLE, +) -> CONSOLE_SCREEN_BUFFER_INFO: + """Retrieves information about the specified console screen buffer. + + Args: + std_handle (wintypes.HANDLE): A handle to the console input buffer or the console screen buffer. + + Returns: + CONSOLE_SCREEN_BUFFER_INFO: A CONSOLE_SCREEN_BUFFER_INFO ctype struct contain information about + screen size, cursor position, colour attributes, and more.""" + console_screen_buffer_info = CONSOLE_SCREEN_BUFFER_INFO() + _GetConsoleScreenBufferInfo(std_handle, byref(console_screen_buffer_info)) + return console_screen_buffer_info + + +_SetConsoleCursorPosition = windll.kernel32.SetConsoleCursorPosition +_SetConsoleCursorPosition.argtypes = [ + wintypes.HANDLE, + cast(Type[COORD], WindowsCoordinates), +] +_SetConsoleCursorPosition.restype = wintypes.BOOL + + +def SetConsoleCursorPosition( + std_handle: wintypes.HANDLE, coords: WindowsCoordinates +) -> bool: + """Set the position of the cursor in the console screen + + Args: + std_handle (wintypes.HANDLE): A handle to the console input buffer or the console screen buffer. + coords (WindowsCoordinates): The coordinates to move the cursor to. + + Returns: + bool: True if the function succeeds, otherwise False. + """ + return bool(_SetConsoleCursorPosition(std_handle, coords)) + + +_GetConsoleCursorInfo = windll.kernel32.GetConsoleCursorInfo +_GetConsoleCursorInfo.argtypes = [ + wintypes.HANDLE, + ctypes.POINTER(CONSOLE_CURSOR_INFO), +] +_GetConsoleCursorInfo.restype = wintypes.BOOL + + +def GetConsoleCursorInfo( + std_handle: wintypes.HANDLE, cursor_info: CONSOLE_CURSOR_INFO +) -> bool: + """Get the cursor info - used to get cursor visibility and width + + Args: + std_handle (wintypes.HANDLE): A handle to the console input buffer or the console screen buffer. + cursor_info (CONSOLE_CURSOR_INFO): CONSOLE_CURSOR_INFO ctype struct that receives information + about the console's cursor. + + Returns: + bool: True if the function succeeds, otherwise False. + """ + return bool(_GetConsoleCursorInfo(std_handle, byref(cursor_info))) + + +_SetConsoleCursorInfo = windll.kernel32.SetConsoleCursorInfo +_SetConsoleCursorInfo.argtypes = [ + wintypes.HANDLE, + ctypes.POINTER(CONSOLE_CURSOR_INFO), +] +_SetConsoleCursorInfo.restype = wintypes.BOOL + + +def SetConsoleCursorInfo( + std_handle: wintypes.HANDLE, cursor_info: CONSOLE_CURSOR_INFO +) -> bool: + """Set the cursor info - used for adjusting cursor visibility and width + + Args: + std_handle (wintypes.HANDLE): A handle to the console input buffer or the console screen buffer. + cursor_info (CONSOLE_CURSOR_INFO): CONSOLE_CURSOR_INFO ctype struct containing the new cursor info. + + Returns: + bool: True if the function succeeds, otherwise False. + """ + return bool(_SetConsoleCursorInfo(std_handle, byref(cursor_info))) + + +_SetConsoleTitle = windll.kernel32.SetConsoleTitleW +_SetConsoleTitle.argtypes = [wintypes.LPCWSTR] +_SetConsoleTitle.restype = wintypes.BOOL + + +def SetConsoleTitle(title: str) -> bool: + """Sets the title of the current console window + + Args: + title (str): The new title of the console window. + + Returns: + bool: True if the function succeeds, otherwise False. + """ + return bool(_SetConsoleTitle(title)) + + +class LegacyWindowsTerm: + """This class allows interaction with the legacy Windows Console API. It should only be used in the context + of environments where virtual terminal processing is not available. However, if it is used in a Windows environment, + the entire API should work. + + Args: + file (IO[str]): The file which the Windows Console API HANDLE is retrieved from, defaults to sys.stdout. + """ + + BRIGHT_BIT = 8 + + # Indices are ANSI color numbers, values are the corresponding Windows Console API color numbers + ANSI_TO_WINDOWS = [ + 0, # black The Windows colours are defined in wincon.h as follows: + 4, # red define FOREGROUND_BLUE 0x0001 -- 0000 0001 + 2, # green define FOREGROUND_GREEN 0x0002 -- 0000 0010 + 6, # yellow define FOREGROUND_RED 0x0004 -- 0000 0100 + 1, # blue define FOREGROUND_INTENSITY 0x0008 -- 0000 1000 + 5, # magenta define BACKGROUND_BLUE 0x0010 -- 0001 0000 + 3, # cyan define BACKGROUND_GREEN 0x0020 -- 0010 0000 + 7, # white define BACKGROUND_RED 0x0040 -- 0100 0000 + 8, # bright black (grey) define BACKGROUND_INTENSITY 0x0080 -- 1000 0000 + 12, # bright red + 10, # bright green + 14, # bright yellow + 9, # bright blue + 13, # bright magenta + 11, # bright cyan + 15, # bright white + ] + + def __init__(self, file: "IO[str]") -> None: + handle = GetStdHandle(STDOUT) + self._handle = handle + default_text = GetConsoleScreenBufferInfo(handle).wAttributes + self._default_text = default_text + + self._default_fore = default_text & 7 + self._default_back = (default_text >> 4) & 7 + self._default_attrs = self._default_fore | (self._default_back << 4) + + self._file = file + self.write = file.write + self.flush = file.flush + + @property + def cursor_position(self) -> WindowsCoordinates: + """Returns the current position of the cursor (0-based) + + Returns: + WindowsCoordinates: The current cursor position. + """ + coord: COORD = GetConsoleScreenBufferInfo(self._handle).dwCursorPosition + return WindowsCoordinates(row=cast(int, coord.Y), col=cast(int, coord.X)) + + @property + def screen_size(self) -> WindowsCoordinates: + """Returns the current size of the console screen buffer, in character columns and rows + + Returns: + WindowsCoordinates: The width and height of the screen as WindowsCoordinates. + """ + screen_size: COORD = GetConsoleScreenBufferInfo(self._handle).dwSize + return WindowsCoordinates( + row=cast(int, screen_size.Y), col=cast(int, screen_size.X) + ) + + def write_text(self, text: str) -> None: + """Write text directly to the terminal without any modification of styles + + Args: + text (str): The text to write to the console + """ + self.write(text) + self.flush() + + def write_styled(self, text: str, style: Style) -> None: + """Write styled text to the terminal. + + Args: + text (str): The text to write + style (Style): The style of the text + """ + color = style.color + bgcolor = style.bgcolor + if style.reverse: + color, bgcolor = bgcolor, color + + if color: + fore = color.downgrade(ColorSystem.WINDOWS).number + fore = fore if fore is not None else 7 # Default to ANSI 7: White + if style.bold: + fore = fore | self.BRIGHT_BIT + if style.dim: + fore = fore & ~self.BRIGHT_BIT + fore = self.ANSI_TO_WINDOWS[fore] + else: + fore = self._default_fore + + if bgcolor: + back = bgcolor.downgrade(ColorSystem.WINDOWS).number + back = back if back is not None else 0 # Default to ANSI 0: Black + back = self.ANSI_TO_WINDOWS[back] + else: + back = self._default_back + + assert fore is not None + assert back is not None + + SetConsoleTextAttribute( + self._handle, attributes=ctypes.c_ushort(fore | (back << 4)) + ) + self.write_text(text) + SetConsoleTextAttribute(self._handle, attributes=self._default_text) + + def move_cursor_to(self, new_position: WindowsCoordinates) -> None: + """Set the position of the cursor + + Args: + new_position (WindowsCoordinates): The WindowsCoordinates representing the new position of the cursor. + """ + if new_position.col < 0 or new_position.row < 0: + return + SetConsoleCursorPosition(self._handle, coords=new_position) + + def erase_line(self) -> None: + """Erase all content on the line the cursor is currently located at""" + screen_size = self.screen_size + cursor_position = self.cursor_position + cells_to_erase = screen_size.col + start_coordinates = WindowsCoordinates(row=cursor_position.row, col=0) + FillConsoleOutputCharacter( + self._handle, " ", length=cells_to_erase, start=start_coordinates + ) + FillConsoleOutputAttribute( + self._handle, + self._default_attrs, + length=cells_to_erase, + start=start_coordinates, + ) + + def erase_end_of_line(self) -> None: + """Erase all content from the cursor position to the end of that line""" + cursor_position = self.cursor_position + cells_to_erase = self.screen_size.col - cursor_position.col + FillConsoleOutputCharacter( + self._handle, " ", length=cells_to_erase, start=cursor_position + ) + FillConsoleOutputAttribute( + self._handle, + self._default_attrs, + length=cells_to_erase, + start=cursor_position, + ) + + def erase_start_of_line(self) -> None: + """Erase all content from the cursor position to the start of that line""" + row, col = self.cursor_position + start = WindowsCoordinates(row, 0) + FillConsoleOutputCharacter(self._handle, " ", length=col, start=start) + FillConsoleOutputAttribute( + self._handle, self._default_attrs, length=col, start=start + ) + + def move_cursor_up(self) -> None: + """Move the cursor up a single cell""" + cursor_position = self.cursor_position + SetConsoleCursorPosition( + self._handle, + coords=WindowsCoordinates( + row=cursor_position.row - 1, col=cursor_position.col + ), + ) + + def move_cursor_down(self) -> None: + """Move the cursor down a single cell""" + cursor_position = self.cursor_position + SetConsoleCursorPosition( + self._handle, + coords=WindowsCoordinates( + row=cursor_position.row + 1, + col=cursor_position.col, + ), + ) + + def move_cursor_forward(self) -> None: + """Move the cursor forward a single cell. Wrap to the next line if required.""" + row, col = self.cursor_position + if col == self.screen_size.col - 1: + row += 1 + col = 0 + else: + col += 1 + SetConsoleCursorPosition( + self._handle, coords=WindowsCoordinates(row=row, col=col) + ) + + def move_cursor_to_column(self, column: int) -> None: + """Move cursor to the column specified by the zero-based column index, staying on the same row + + Args: + column (int): The zero-based column index to move the cursor to. + """ + row, _ = self.cursor_position + SetConsoleCursorPosition(self._handle, coords=WindowsCoordinates(row, column)) + + def move_cursor_backward(self) -> None: + """Move the cursor backward a single cell. Wrap to the previous line if required.""" + row, col = self.cursor_position + if col == 0: + row -= 1 + col = self.screen_size.col - 1 + else: + col -= 1 + SetConsoleCursorPosition( + self._handle, coords=WindowsCoordinates(row=row, col=col) + ) + + def hide_cursor(self) -> None: + """Hide the cursor""" + current_cursor_size = self._get_cursor_size() + invisible_cursor = CONSOLE_CURSOR_INFO(dwSize=current_cursor_size, bVisible=0) + SetConsoleCursorInfo(self._handle, cursor_info=invisible_cursor) + + def show_cursor(self) -> None: + """Show the cursor""" + current_cursor_size = self._get_cursor_size() + visible_cursor = CONSOLE_CURSOR_INFO(dwSize=current_cursor_size, bVisible=1) + SetConsoleCursorInfo(self._handle, cursor_info=visible_cursor) + + def set_title(self, title: str) -> None: + """Set the title of the terminal window + + Args: + title (str): The new title of the console window + """ + assert len(title) < 255, "Console title must be less than 255 characters" + SetConsoleTitle(title) + + def _get_cursor_size(self) -> int: + """Get the percentage of the character cell that is filled by the cursor""" + cursor_info = CONSOLE_CURSOR_INFO() + GetConsoleCursorInfo(self._handle, cursor_info=cursor_info) + return int(cursor_info.dwSize) + + +if __name__ == "__main__": + handle = GetStdHandle() + + from pip._vendor.rich.console import Console + + console = Console() + + term = LegacyWindowsTerm(sys.stdout) + term.set_title("Win32 Console Examples") + + style = Style(color="black", bgcolor="red") + + heading = Style.parse("black on green") + + # Check colour output + console.rule("Checking colour output") + console.print("[on red]on red!") + console.print("[blue]blue!") + console.print("[yellow]yellow!") + console.print("[bold yellow]bold yellow!") + console.print("[bright_yellow]bright_yellow!") + console.print("[dim bright_yellow]dim bright_yellow!") + console.print("[italic cyan]italic cyan!") + console.print("[bold white on blue]bold white on blue!") + console.print("[reverse bold white on blue]reverse bold white on blue!") + console.print("[bold black on cyan]bold black on cyan!") + console.print("[black on green]black on green!") + console.print("[blue on green]blue on green!") + console.print("[white on black]white on black!") + console.print("[black on white]black on white!") + console.print("[#1BB152 on #DA812D]#1BB152 on #DA812D!") + + # Check cursor movement + console.rule("Checking cursor movement") + console.print() + term.move_cursor_backward() + term.move_cursor_backward() + term.write_text("went back and wrapped to prev line") + time.sleep(1) + term.move_cursor_up() + term.write_text("we go up") + time.sleep(1) + term.move_cursor_down() + term.write_text("and down") + time.sleep(1) + term.move_cursor_up() + term.move_cursor_backward() + term.move_cursor_backward() + term.write_text("we went up and back 2") + time.sleep(1) + term.move_cursor_down() + term.move_cursor_backward() + term.move_cursor_backward() + term.write_text("we went down and back 2") + time.sleep(1) + + # Check erasing of lines + term.hide_cursor() + console.print() + console.rule("Checking line erasing") + console.print("\n...Deleting to the start of the line...") + term.write_text("The red arrow shows the cursor location, and direction of erase") + time.sleep(1) + term.move_cursor_to_column(16) + term.write_styled("<", Style.parse("black on red")) + term.move_cursor_backward() + time.sleep(1) + term.erase_start_of_line() + time.sleep(1) + + console.print("\n\n...And to the end of the line...") + term.write_text("The red arrow shows the cursor location, and direction of erase") + time.sleep(1) + + term.move_cursor_to_column(16) + term.write_styled(">", Style.parse("black on red")) + time.sleep(1) + term.erase_end_of_line() + time.sleep(1) + + console.print("\n\n...Now the whole line will be erased...") + term.write_styled("I'm going to disappear!", style=Style.parse("black on cyan")) + time.sleep(1) + term.erase_line() + + term.show_cursor() + print("\n") diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/_windows.py b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/_windows.py new file mode 100644 index 0000000..10fc0d7 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/_windows.py @@ -0,0 +1,72 @@ +import sys +from dataclasses import dataclass + + +@dataclass +class WindowsConsoleFeatures: + """Windows features available.""" + + vt: bool = False + """The console supports VT codes.""" + truecolor: bool = False + """The console supports truecolor.""" + + +try: + import ctypes + from ctypes import LibraryLoader + + if sys.platform == "win32": + windll = LibraryLoader(ctypes.WinDLL) + else: + windll = None + raise ImportError("Not windows") + + from pip._vendor.rich._win32_console import ( + ENABLE_VIRTUAL_TERMINAL_PROCESSING, + GetConsoleMode, + GetStdHandle, + LegacyWindowsError, + ) + +except (AttributeError, ImportError, ValueError): + + # Fallback if we can't load the Windows DLL + def get_windows_console_features() -> WindowsConsoleFeatures: + features = WindowsConsoleFeatures() + return features + +else: + + def get_windows_console_features() -> WindowsConsoleFeatures: + """Get windows console features. + + Returns: + WindowsConsoleFeatures: An instance of WindowsConsoleFeatures. + """ + handle = GetStdHandle() + try: + console_mode = GetConsoleMode(handle) + success = True + except LegacyWindowsError: + console_mode = 0 + success = False + vt = bool(success and console_mode & ENABLE_VIRTUAL_TERMINAL_PROCESSING) + truecolor = False + if vt: + win_version = sys.getwindowsversion() + truecolor = win_version.major > 10 or ( + win_version.major == 10 and win_version.build >= 15063 + ) + features = WindowsConsoleFeatures(vt=vt, truecolor=truecolor) + return features + + +if __name__ == "__main__": + import platform + + features = get_windows_console_features() + from pip._vendor.rich import print + + print(f'platform="{platform.system()}"') + print(repr(features)) diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/_windows_renderer.py b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/_windows_renderer.py new file mode 100644 index 0000000..5ece056 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/_windows_renderer.py @@ -0,0 +1,56 @@ +from typing import Iterable, Sequence, Tuple, cast + +from pip._vendor.rich._win32_console import LegacyWindowsTerm, WindowsCoordinates +from pip._vendor.rich.segment import ControlCode, ControlType, Segment + + +def legacy_windows_render(buffer: Iterable[Segment], term: LegacyWindowsTerm) -> None: + """Makes appropriate Windows Console API calls based on the segments in the buffer. + + Args: + buffer (Iterable[Segment]): Iterable of Segments to convert to Win32 API calls. + term (LegacyWindowsTerm): Used to call the Windows Console API. + """ + for text, style, control in buffer: + if not control: + if style: + term.write_styled(text, style) + else: + term.write_text(text) + else: + control_codes: Sequence[ControlCode] = control + for control_code in control_codes: + control_type = control_code[0] + if control_type == ControlType.CURSOR_MOVE_TO: + _, x, y = cast(Tuple[ControlType, int, int], control_code) + term.move_cursor_to(WindowsCoordinates(row=y - 1, col=x - 1)) + elif control_type == ControlType.CARRIAGE_RETURN: + term.write_text("\r") + elif control_type == ControlType.HOME: + term.move_cursor_to(WindowsCoordinates(0, 0)) + elif control_type == ControlType.CURSOR_UP: + term.move_cursor_up() + elif control_type == ControlType.CURSOR_DOWN: + term.move_cursor_down() + elif control_type == ControlType.CURSOR_FORWARD: + term.move_cursor_forward() + elif control_type == ControlType.CURSOR_BACKWARD: + term.move_cursor_backward() + elif control_type == ControlType.CURSOR_MOVE_TO_COLUMN: + _, column = cast(Tuple[ControlType, int], control_code) + term.move_cursor_to_column(column - 1) + elif control_type == ControlType.HIDE_CURSOR: + term.hide_cursor() + elif control_type == ControlType.SHOW_CURSOR: + term.show_cursor() + elif control_type == ControlType.ERASE_IN_LINE: + _, mode = cast(Tuple[ControlType, int], control_code) + if mode == 0: + term.erase_end_of_line() + elif mode == 1: + term.erase_start_of_line() + elif mode == 2: + term.erase_line() + elif control_type == ControlType.SET_WINDOW_TITLE: + _, title = cast(Tuple[ControlType, str], control_code) + term.set_title(title) diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/_wrap.py b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/_wrap.py new file mode 100644 index 0000000..c45f193 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/_wrap.py @@ -0,0 +1,56 @@ +import re +from typing import Iterable, List, Tuple + +from ._loop import loop_last +from .cells import cell_len, chop_cells + +re_word = re.compile(r"\s*\S+\s*") + + +def words(text: str) -> Iterable[Tuple[int, int, str]]: + position = 0 + word_match = re_word.match(text, position) + while word_match is not None: + start, end = word_match.span() + word = word_match.group(0) + yield start, end, word + word_match = re_word.match(text, end) + + +def divide_line(text: str, width: int, fold: bool = True) -> List[int]: + divides: List[int] = [] + append = divides.append + line_position = 0 + _cell_len = cell_len + for start, _end, word in words(text): + word_length = _cell_len(word.rstrip()) + if line_position + word_length > width: + if word_length > width: + if fold: + chopped_words = chop_cells(word, max_size=width, position=0) + for last, line in loop_last(chopped_words): + if start: + append(start) + + if last: + line_position = _cell_len(line) + else: + start += len(line) + else: + if start: + append(start) + line_position = _cell_len(word) + elif line_position and start: + append(start) + line_position = _cell_len(word) + else: + line_position += _cell_len(word) + return divides + + +if __name__ == "__main__": # pragma: no cover + from .console import Console + + console = Console(width=10) + console.print("12345 abcdefghijklmnopqrstuvwyxzABCDEFGHIJKLMNOPQRSTUVWXYZ 12345") + print(chop_cells("abcdefghijklmnopqrstuvwxyz", 10, position=2)) diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/abc.py b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/abc.py new file mode 100644 index 0000000..e6e498e --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/abc.py @@ -0,0 +1,33 @@ +from abc import ABC + + +class RichRenderable(ABC): + """An abstract base class for Rich renderables. + + Note that there is no need to extend this class, the intended use is to check if an + object supports the Rich renderable protocol. For example:: + + if isinstance(my_object, RichRenderable): + console.print(my_object) + + """ + + @classmethod + def __subclasshook__(cls, other: type) -> bool: + """Check if this class supports the rich render protocol.""" + return hasattr(other, "__rich_console__") or hasattr(other, "__rich__") + + +if __name__ == "__main__": # pragma: no cover + from pip._vendor.rich.text import Text + + t = Text() + print(isinstance(Text, RichRenderable)) + print(isinstance(t, RichRenderable)) + + class Foo: + pass + + f = Foo() + print(isinstance(f, RichRenderable)) + print(isinstance("", RichRenderable)) diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/align.py b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/align.py new file mode 100644 index 0000000..c310b66 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/align.py @@ -0,0 +1,311 @@ +import sys +from itertools import chain +from typing import TYPE_CHECKING, Iterable, Optional + +if sys.version_info >= (3, 8): + from typing import Literal +else: + from pip._vendor.typing_extensions import Literal # pragma: no cover + +from .constrain import Constrain +from .jupyter import JupyterMixin +from .measure import Measurement +from .segment import Segment +from .style import StyleType + +if TYPE_CHECKING: + from .console import Console, ConsoleOptions, RenderableType, RenderResult + +AlignMethod = Literal["left", "center", "right"] +VerticalAlignMethod = Literal["top", "middle", "bottom"] + + +class Align(JupyterMixin): + """Align a renderable by adding spaces if necessary. + + Args: + renderable (RenderableType): A console renderable. + align (AlignMethod): One of "left", "center", or "right"" + style (StyleType, optional): An optional style to apply to the background. + vertical (Optional[VerticalAlginMethod], optional): Optional vertical align, one of "top", "middle", or "bottom". Defaults to None. + pad (bool, optional): Pad the right with spaces. Defaults to True. + width (int, optional): Restrict contents to given width, or None to use default width. Defaults to None. + height (int, optional): Set height of align renderable, or None to fit to contents. Defaults to None. + + Raises: + ValueError: if ``align`` is not one of the expected values. + """ + + def __init__( + self, + renderable: "RenderableType", + align: AlignMethod = "left", + style: Optional[StyleType] = None, + *, + vertical: Optional[VerticalAlignMethod] = None, + pad: bool = True, + width: Optional[int] = None, + height: Optional[int] = None, + ) -> None: + if align not in ("left", "center", "right"): + raise ValueError( + f'invalid value for align, expected "left", "center", or "right" (not {align!r})' + ) + if vertical is not None and vertical not in ("top", "middle", "bottom"): + raise ValueError( + f'invalid value for vertical, expected "top", "middle", or "bottom" (not {vertical!r})' + ) + self.renderable = renderable + self.align = align + self.style = style + self.vertical = vertical + self.pad = pad + self.width = width + self.height = height + + def __repr__(self) -> str: + return f"Align({self.renderable!r}, {self.align!r})" + + @classmethod + def left( + cls, + renderable: "RenderableType", + style: Optional[StyleType] = None, + *, + vertical: Optional[VerticalAlignMethod] = None, + pad: bool = True, + width: Optional[int] = None, + height: Optional[int] = None, + ) -> "Align": + """Align a renderable to the left.""" + return cls( + renderable, + "left", + style=style, + vertical=vertical, + pad=pad, + width=width, + height=height, + ) + + @classmethod + def center( + cls, + renderable: "RenderableType", + style: Optional[StyleType] = None, + *, + vertical: Optional[VerticalAlignMethod] = None, + pad: bool = True, + width: Optional[int] = None, + height: Optional[int] = None, + ) -> "Align": + """Align a renderable to the center.""" + return cls( + renderable, + "center", + style=style, + vertical=vertical, + pad=pad, + width=width, + height=height, + ) + + @classmethod + def right( + cls, + renderable: "RenderableType", + style: Optional[StyleType] = None, + *, + vertical: Optional[VerticalAlignMethod] = None, + pad: bool = True, + width: Optional[int] = None, + height: Optional[int] = None, + ) -> "Align": + """Align a renderable to the right.""" + return cls( + renderable, + "right", + style=style, + vertical=vertical, + pad=pad, + width=width, + height=height, + ) + + def __rich_console__( + self, console: "Console", options: "ConsoleOptions" + ) -> "RenderResult": + align = self.align + width = console.measure(self.renderable, options=options).maximum + rendered = console.render( + Constrain( + self.renderable, width if self.width is None else min(width, self.width) + ), + options.update(height=None), + ) + lines = list(Segment.split_lines(rendered)) + width, height = Segment.get_shape(lines) + lines = Segment.set_shape(lines, width, height) + new_line = Segment.line() + excess_space = options.max_width - width + style = console.get_style(self.style) if self.style is not None else None + + def generate_segments() -> Iterable[Segment]: + if excess_space <= 0: + # Exact fit + for line in lines: + yield from line + yield new_line + + elif align == "left": + # Pad on the right + pad = Segment(" " * excess_space, style) if self.pad else None + for line in lines: + yield from line + if pad: + yield pad + yield new_line + + elif align == "center": + # Pad left and right + left = excess_space // 2 + pad = Segment(" " * left, style) + pad_right = ( + Segment(" " * (excess_space - left), style) if self.pad else None + ) + for line in lines: + if left: + yield pad + yield from line + if pad_right: + yield pad_right + yield new_line + + elif align == "right": + # Padding on left + pad = Segment(" " * excess_space, style) + for line in lines: + yield pad + yield from line + yield new_line + + blank_line = ( + Segment(f"{' ' * (self.width or options.max_width)}\n", style) + if self.pad + else Segment("\n") + ) + + def blank_lines(count: int) -> Iterable[Segment]: + if count > 0: + for _ in range(count): + yield blank_line + + vertical_height = self.height or options.height + iter_segments: Iterable[Segment] + if self.vertical and vertical_height is not None: + if self.vertical == "top": + bottom_space = vertical_height - height + iter_segments = chain(generate_segments(), blank_lines(bottom_space)) + elif self.vertical == "middle": + top_space = (vertical_height - height) // 2 + bottom_space = vertical_height - top_space - height + iter_segments = chain( + blank_lines(top_space), + generate_segments(), + blank_lines(bottom_space), + ) + else: # self.vertical == "bottom": + top_space = vertical_height - height + iter_segments = chain(blank_lines(top_space), generate_segments()) + else: + iter_segments = generate_segments() + if self.style: + style = console.get_style(self.style) + iter_segments = Segment.apply_style(iter_segments, style) + yield from iter_segments + + def __rich_measure__( + self, console: "Console", options: "ConsoleOptions" + ) -> Measurement: + measurement = Measurement.get(console, options, self.renderable) + return measurement + + +class VerticalCenter(JupyterMixin): + """Vertically aligns a renderable. + + Warn: + This class is deprecated and may be removed in a future version. Use Align class with + `vertical="middle"`. + + Args: + renderable (RenderableType): A renderable object. + """ + + def __init__( + self, + renderable: "RenderableType", + style: Optional[StyleType] = None, + ) -> None: + self.renderable = renderable + self.style = style + + def __repr__(self) -> str: + return f"VerticalCenter({self.renderable!r})" + + def __rich_console__( + self, console: "Console", options: "ConsoleOptions" + ) -> "RenderResult": + style = console.get_style(self.style) if self.style is not None else None + lines = console.render_lines( + self.renderable, options.update(height=None), pad=False + ) + width, _height = Segment.get_shape(lines) + new_line = Segment.line() + height = options.height or options.size.height + top_space = (height - len(lines)) // 2 + bottom_space = height - top_space - len(lines) + blank_line = Segment(f"{' ' * width}", style) + + def blank_lines(count: int) -> Iterable[Segment]: + for _ in range(count): + yield blank_line + yield new_line + + if top_space > 0: + yield from blank_lines(top_space) + for line in lines: + yield from line + yield new_line + if bottom_space > 0: + yield from blank_lines(bottom_space) + + def __rich_measure__( + self, console: "Console", options: "ConsoleOptions" + ) -> Measurement: + measurement = Measurement.get(console, options, self.renderable) + return measurement + + +if __name__ == "__main__": # pragma: no cover + from pip._vendor.rich.console import Console, Group + from pip._vendor.rich.highlighter import ReprHighlighter + from pip._vendor.rich.panel import Panel + + highlighter = ReprHighlighter() + console = Console() + + panel = Panel( + Group( + Align.left(highlighter("align='left'")), + Align.center(highlighter("align='center'")), + Align.right(highlighter("align='right'")), + ), + width=60, + style="on dark_blue", + title="Align", + ) + + console.print( + Align.center(panel, vertical="middle", style="on red", height=console.height) + ) diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/ansi.py b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/ansi.py new file mode 100644 index 0000000..66365e6 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/ansi.py @@ -0,0 +1,240 @@ +import re +import sys +from contextlib import suppress +from typing import Iterable, NamedTuple, Optional + +from .color import Color +from .style import Style +from .text import Text + +re_ansi = re.compile( + r""" +(?:\x1b\](.*?)\x1b\\)| +(?:\x1b([(@-Z\\-_]|\[[0-?]*[ -/]*[@-~])) +""", + re.VERBOSE, +) + + +class _AnsiToken(NamedTuple): + """Result of ansi tokenized string.""" + + plain: str = "" + sgr: Optional[str] = "" + osc: Optional[str] = "" + + +def _ansi_tokenize(ansi_text: str) -> Iterable[_AnsiToken]: + """Tokenize a string in to plain text and ANSI codes. + + Args: + ansi_text (str): A String containing ANSI codes. + + Yields: + AnsiToken: A named tuple of (plain, sgr, osc) + """ + + position = 0 + sgr: Optional[str] + osc: Optional[str] + for match in re_ansi.finditer(ansi_text): + start, end = match.span(0) + osc, sgr = match.groups() + if start > position: + yield _AnsiToken(ansi_text[position:start]) + if sgr: + if sgr == "(": + position = end + 1 + continue + if sgr.endswith("m"): + yield _AnsiToken("", sgr[1:-1], osc) + else: + yield _AnsiToken("", sgr, osc) + position = end + if position < len(ansi_text): + yield _AnsiToken(ansi_text[position:]) + + +SGR_STYLE_MAP = { + 1: "bold", + 2: "dim", + 3: "italic", + 4: "underline", + 5: "blink", + 6: "blink2", + 7: "reverse", + 8: "conceal", + 9: "strike", + 21: "underline2", + 22: "not dim not bold", + 23: "not italic", + 24: "not underline", + 25: "not blink", + 26: "not blink2", + 27: "not reverse", + 28: "not conceal", + 29: "not strike", + 30: "color(0)", + 31: "color(1)", + 32: "color(2)", + 33: "color(3)", + 34: "color(4)", + 35: "color(5)", + 36: "color(6)", + 37: "color(7)", + 39: "default", + 40: "on color(0)", + 41: "on color(1)", + 42: "on color(2)", + 43: "on color(3)", + 44: "on color(4)", + 45: "on color(5)", + 46: "on color(6)", + 47: "on color(7)", + 49: "on default", + 51: "frame", + 52: "encircle", + 53: "overline", + 54: "not frame not encircle", + 55: "not overline", + 90: "color(8)", + 91: "color(9)", + 92: "color(10)", + 93: "color(11)", + 94: "color(12)", + 95: "color(13)", + 96: "color(14)", + 97: "color(15)", + 100: "on color(8)", + 101: "on color(9)", + 102: "on color(10)", + 103: "on color(11)", + 104: "on color(12)", + 105: "on color(13)", + 106: "on color(14)", + 107: "on color(15)", +} + + +class AnsiDecoder: + """Translate ANSI code in to styled Text.""" + + def __init__(self) -> None: + self.style = Style.null() + + def decode(self, terminal_text: str) -> Iterable[Text]: + """Decode ANSI codes in an iterable of lines. + + Args: + lines (Iterable[str]): An iterable of lines of terminal output. + + Yields: + Text: Marked up Text. + """ + for line in terminal_text.splitlines(): + yield self.decode_line(line) + + def decode_line(self, line: str) -> Text: + """Decode a line containing ansi codes. + + Args: + line (str): A line of terminal output. + + Returns: + Text: A Text instance marked up according to ansi codes. + """ + from_ansi = Color.from_ansi + from_rgb = Color.from_rgb + _Style = Style + text = Text() + append = text.append + line = line.rsplit("\r", 1)[-1] + for plain_text, sgr, osc in _ansi_tokenize(line): + if plain_text: + append(plain_text, self.style or None) + elif osc is not None: + if osc.startswith("8;"): + _params, semicolon, link = osc[2:].partition(";") + if semicolon: + self.style = self.style.update_link(link or None) + elif sgr is not None: + # Translate in to semi-colon separated codes + # Ignore invalid codes, because we want to be lenient + codes = [ + min(255, int(_code) if _code else 0) + for _code in sgr.split(";") + if _code.isdigit() or _code == "" + ] + iter_codes = iter(codes) + for code in iter_codes: + if code == 0: + # reset + self.style = _Style.null() + elif code in SGR_STYLE_MAP: + # styles + self.style += _Style.parse(SGR_STYLE_MAP[code]) + elif code == 38: + #  Foreground + with suppress(StopIteration): + color_type = next(iter_codes) + if color_type == 5: + self.style += _Style.from_color( + from_ansi(next(iter_codes)) + ) + elif color_type == 2: + self.style += _Style.from_color( + from_rgb( + next(iter_codes), + next(iter_codes), + next(iter_codes), + ) + ) + elif code == 48: + # Background + with suppress(StopIteration): + color_type = next(iter_codes) + if color_type == 5: + self.style += _Style.from_color( + None, from_ansi(next(iter_codes)) + ) + elif color_type == 2: + self.style += _Style.from_color( + None, + from_rgb( + next(iter_codes), + next(iter_codes), + next(iter_codes), + ), + ) + + return text + + +if sys.platform != "win32" and __name__ == "__main__": # pragma: no cover + import io + import os + import pty + import sys + + decoder = AnsiDecoder() + + stdout = io.BytesIO() + + def read(fd: int) -> bytes: + data = os.read(fd, 1024) + stdout.write(data) + return data + + pty.spawn(sys.argv[1:], read) + + from .console import Console + + console = Console(record=True) + + stdout_result = stdout.getvalue().decode("utf-8") + print(stdout_result) + + for line in decoder.decode(stdout_result): + console.print(line) + + console.save_html("stdout.html") diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/bar.py b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/bar.py new file mode 100644 index 0000000..ed86a55 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/bar.py @@ -0,0 +1,94 @@ +from typing import Optional, Union + +from .color import Color +from .console import Console, ConsoleOptions, RenderResult +from .jupyter import JupyterMixin +from .measure import Measurement +from .segment import Segment +from .style import Style + +# There are left-aligned characters for 1/8 to 7/8, but +# the right-aligned characters exist only for 1/8 and 4/8. +BEGIN_BLOCK_ELEMENTS = ["█", "█", "█", "▐", "▐", "▐", "▕", "▕"] +END_BLOCK_ELEMENTS = [" ", "▏", "▎", "▍", "▌", "▋", "▊", "▉"] +FULL_BLOCK = "█" + + +class Bar(JupyterMixin): + """Renders a solid block bar. + + Args: + size (float): Value for the end of the bar. + begin (float): Begin point (between 0 and size, inclusive). + end (float): End point (between 0 and size, inclusive). + width (int, optional): Width of the bar, or ``None`` for maximum width. Defaults to None. + color (Union[Color, str], optional): Color of the bar. Defaults to "default". + bgcolor (Union[Color, str], optional): Color of bar background. Defaults to "default". + """ + + def __init__( + self, + size: float, + begin: float, + end: float, + *, + width: Optional[int] = None, + color: Union[Color, str] = "default", + bgcolor: Union[Color, str] = "default", + ): + self.size = size + self.begin = max(begin, 0) + self.end = min(end, size) + self.width = width + self.style = Style(color=color, bgcolor=bgcolor) + + def __repr__(self) -> str: + return f"Bar({self.size}, {self.begin}, {self.end})" + + def __rich_console__( + self, console: Console, options: ConsoleOptions + ) -> RenderResult: + + width = min( + self.width if self.width is not None else options.max_width, + options.max_width, + ) + + if self.begin >= self.end: + yield Segment(" " * width, self.style) + yield Segment.line() + return + + prefix_complete_eights = int(width * 8 * self.begin / self.size) + prefix_bar_count = prefix_complete_eights // 8 + prefix_eights_count = prefix_complete_eights % 8 + + body_complete_eights = int(width * 8 * self.end / self.size) + body_bar_count = body_complete_eights // 8 + body_eights_count = body_complete_eights % 8 + + # When start and end fall into the same cell, we ideally should render + # a symbol that's "center-aligned", but there is no good symbol in Unicode. + # In this case, we fall back to right-aligned block symbol for simplicity. + + prefix = " " * prefix_bar_count + if prefix_eights_count: + prefix += BEGIN_BLOCK_ELEMENTS[prefix_eights_count] + + body = FULL_BLOCK * body_bar_count + if body_eights_count: + body += END_BLOCK_ELEMENTS[body_eights_count] + + suffix = " " * (width - len(body)) + + yield Segment(prefix + body[len(prefix) :] + suffix, self.style) + yield Segment.line() + + def __rich_measure__( + self, console: Console, options: ConsoleOptions + ) -> Measurement: + return ( + Measurement(self.width, self.width) + if self.width is not None + else Measurement(4, options.max_width) + ) diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/box.py b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/box.py new file mode 100644 index 0000000..97d2a94 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/box.py @@ -0,0 +1,517 @@ +import sys +from typing import TYPE_CHECKING, Iterable, List + +if sys.version_info >= (3, 8): + from typing import Literal +else: + from pip._vendor.typing_extensions import Literal # pragma: no cover + + +from ._loop import loop_last + +if TYPE_CHECKING: + from pip._vendor.rich.console import ConsoleOptions + + +class Box: + """Defines characters to render boxes. + + ┌─┬┐ top + │ ││ head + ├─┼┤ head_row + │ ││ mid + ├─┼┤ row + ├─┼┤ foot_row + │ ││ foot + └─┴┘ bottom + + Args: + box (str): Characters making up box. + ascii (bool, optional): True if this box uses ascii characters only. Default is False. + """ + + def __init__(self, box: str, *, ascii: bool = False) -> None: + self._box = box + self.ascii = ascii + line1, line2, line3, line4, line5, line6, line7, line8 = box.splitlines() + # top + self.top_left, self.top, self.top_divider, self.top_right = iter(line1) + # head + self.head_left, _, self.head_vertical, self.head_right = iter(line2) + # head_row + ( + self.head_row_left, + self.head_row_horizontal, + self.head_row_cross, + self.head_row_right, + ) = iter(line3) + + # mid + self.mid_left, _, self.mid_vertical, self.mid_right = iter(line4) + # row + self.row_left, self.row_horizontal, self.row_cross, self.row_right = iter(line5) + # foot_row + ( + self.foot_row_left, + self.foot_row_horizontal, + self.foot_row_cross, + self.foot_row_right, + ) = iter(line6) + # foot + self.foot_left, _, self.foot_vertical, self.foot_right = iter(line7) + # bottom + self.bottom_left, self.bottom, self.bottom_divider, self.bottom_right = iter( + line8 + ) + + def __repr__(self) -> str: + return "Box(...)" + + def __str__(self) -> str: + return self._box + + def substitute(self, options: "ConsoleOptions", safe: bool = True) -> "Box": + """Substitute this box for another if it won't render due to platform issues. + + Args: + options (ConsoleOptions): Console options used in rendering. + safe (bool, optional): Substitute this for another Box if there are known problems + displaying on the platform (currently only relevant on Windows). Default is True. + + Returns: + Box: A different Box or the same Box. + """ + box = self + if options.legacy_windows and safe: + box = LEGACY_WINDOWS_SUBSTITUTIONS.get(box, box) + if options.ascii_only and not box.ascii: + box = ASCII + return box + + def get_plain_headed_box(self) -> "Box": + """If this box uses special characters for the borders of the header, then + return the equivalent box that does not. + + Returns: + Box: The most similar Box that doesn't use header-specific box characters. + If the current Box already satisfies this criterion, then it's returned. + """ + return PLAIN_HEADED_SUBSTITUTIONS.get(self, self) + + def get_top(self, widths: Iterable[int]) -> str: + """Get the top of a simple box. + + Args: + widths (List[int]): Widths of columns. + + Returns: + str: A string of box characters. + """ + + parts: List[str] = [] + append = parts.append + append(self.top_left) + for last, width in loop_last(widths): + append(self.top * width) + if not last: + append(self.top_divider) + append(self.top_right) + return "".join(parts) + + def get_row( + self, + widths: Iterable[int], + level: Literal["head", "row", "foot", "mid"] = "row", + edge: bool = True, + ) -> str: + """Get the top of a simple box. + + Args: + width (List[int]): Widths of columns. + + Returns: + str: A string of box characters. + """ + if level == "head": + left = self.head_row_left + horizontal = self.head_row_horizontal + cross = self.head_row_cross + right = self.head_row_right + elif level == "row": + left = self.row_left + horizontal = self.row_horizontal + cross = self.row_cross + right = self.row_right + elif level == "mid": + left = self.mid_left + horizontal = " " + cross = self.mid_vertical + right = self.mid_right + elif level == "foot": + left = self.foot_row_left + horizontal = self.foot_row_horizontal + cross = self.foot_row_cross + right = self.foot_row_right + else: + raise ValueError("level must be 'head', 'row' or 'foot'") + + parts: List[str] = [] + append = parts.append + if edge: + append(left) + for last, width in loop_last(widths): + append(horizontal * width) + if not last: + append(cross) + if edge: + append(right) + return "".join(parts) + + def get_bottom(self, widths: Iterable[int]) -> str: + """Get the bottom of a simple box. + + Args: + widths (List[int]): Widths of columns. + + Returns: + str: A string of box characters. + """ + + parts: List[str] = [] + append = parts.append + append(self.bottom_left) + for last, width in loop_last(widths): + append(self.bottom * width) + if not last: + append(self.bottom_divider) + append(self.bottom_right) + return "".join(parts) + + +ASCII: Box = Box( + """\ ++--+ +| || +|-+| +| || +|-+| +|-+| +| || ++--+ +""", + ascii=True, +) + +ASCII2: Box = Box( + """\ ++-++ +| || ++-++ +| || ++-++ ++-++ +| || ++-++ +""", + ascii=True, +) + +ASCII_DOUBLE_HEAD: Box = Box( + """\ ++-++ +| || ++=++ +| || ++-++ ++-++ +| || ++-++ +""", + ascii=True, +) + +SQUARE: Box = Box( + """\ +┌─┬┐ +│ ││ +├─┼┤ +│ ││ +├─┼┤ +├─┼┤ +│ ││ +└─┴┘ +""" +) + +SQUARE_DOUBLE_HEAD: Box = Box( + """\ +┌─┬┐ +│ ││ +╞═╪╡ +│ ││ +├─┼┤ +├─┼┤ +│ ││ +└─┴┘ +""" +) + +MINIMAL: Box = Box( + """\ + ╷ + │ +╶─┼╴ + │ +╶─┼╴ +╶─┼╴ + │ + ╵ +""" +) + + +MINIMAL_HEAVY_HEAD: Box = Box( + """\ + ╷ + │ +╺━┿╸ + │ +╶─┼╴ +╶─┼╴ + │ + ╵ +""" +) + +MINIMAL_DOUBLE_HEAD: Box = Box( + """\ + ╷ + │ + ═╪ + │ + ─┼ + ─┼ + │ + ╵ +""" +) + + +SIMPLE: Box = Box( + """\ + + + ── + + + ── + + +""" +) + +SIMPLE_HEAD: Box = Box( + """\ + + + ── + + + + + +""" +) + + +SIMPLE_HEAVY: Box = Box( + """\ + + + ━━ + + + ━━ + + +""" +) + + +HORIZONTALS: Box = Box( + """\ + ── + + ── + + ── + ── + + ── +""" +) + +ROUNDED: Box = Box( + """\ +╭─┬╮ +│ ││ +├─┼┤ +│ ││ +├─┼┤ +├─┼┤ +│ ││ +╰─┴╯ +""" +) + +HEAVY: Box = Box( + """\ +┏━┳┓ +┃ ┃┃ +┣━╋┫ +┃ ┃┃ +┣━╋┫ +┣━╋┫ +┃ ┃┃ +┗━┻┛ +""" +) + +HEAVY_EDGE: Box = Box( + """\ +┏━┯┓ +┃ │┃ +┠─┼┨ +┃ │┃ +┠─┼┨ +┠─┼┨ +┃ │┃ +┗━┷┛ +""" +) + +HEAVY_HEAD: Box = Box( + """\ +┏━┳┓ +┃ ┃┃ +┡━╇┩ +│ ││ +├─┼┤ +├─┼┤ +│ ││ +└─┴┘ +""" +) + +DOUBLE: Box = Box( + """\ +╔═╦╗ +║ ║║ +╠═╬╣ +║ ║║ +╠═╬╣ +╠═╬╣ +║ ║║ +╚═╩╝ +""" +) + +DOUBLE_EDGE: Box = Box( + """\ +╔═╤╗ +║ │║ +╟─┼╢ +║ │║ +╟─┼╢ +╟─┼╢ +║ │║ +╚═╧╝ +""" +) + +MARKDOWN: Box = Box( + """\ + +| || +|-|| +| || +|-|| +|-|| +| || + +""", + ascii=True, +) + +# Map Boxes that don't render with raster fonts on to equivalent that do +LEGACY_WINDOWS_SUBSTITUTIONS = { + ROUNDED: SQUARE, + MINIMAL_HEAVY_HEAD: MINIMAL, + SIMPLE_HEAVY: SIMPLE, + HEAVY: SQUARE, + HEAVY_EDGE: SQUARE, + HEAVY_HEAD: SQUARE, +} + +# Map headed boxes to their headerless equivalents +PLAIN_HEADED_SUBSTITUTIONS = { + HEAVY_HEAD: SQUARE, + SQUARE_DOUBLE_HEAD: SQUARE, + MINIMAL_DOUBLE_HEAD: MINIMAL, + MINIMAL_HEAVY_HEAD: MINIMAL, + ASCII_DOUBLE_HEAD: ASCII2, +} + + +if __name__ == "__main__": # pragma: no cover + + from pip._vendor.rich.columns import Columns + from pip._vendor.rich.panel import Panel + + from . import box as box + from .console import Console + from .table import Table + from .text import Text + + console = Console(record=True) + + BOXES = [ + "ASCII", + "ASCII2", + "ASCII_DOUBLE_HEAD", + "SQUARE", + "SQUARE_DOUBLE_HEAD", + "MINIMAL", + "MINIMAL_HEAVY_HEAD", + "MINIMAL_DOUBLE_HEAD", + "SIMPLE", + "SIMPLE_HEAD", + "SIMPLE_HEAVY", + "HORIZONTALS", + "ROUNDED", + "HEAVY", + "HEAVY_EDGE", + "HEAVY_HEAD", + "DOUBLE", + "DOUBLE_EDGE", + "MARKDOWN", + ] + + console.print(Panel("[bold green]Box Constants", style="green"), justify="center") + console.print() + + columns = Columns(expand=True, padding=2) + for box_name in sorted(BOXES): + table = Table( + show_footer=True, style="dim", border_style="not dim", expand=True + ) + table.add_column("Header 1", "Footer 1") + table.add_column("Header 2", "Footer 2") + table.add_row("Cell", "Cell") + table.add_row("Cell", "Cell") + table.box = getattr(box, box_name) + table.title = Text(f"box.{box_name}", style="magenta") + columns.add_renderable(table) + console.print(columns) + + # console.save_svg("box.svg") diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/cells.py b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/cells.py new file mode 100644 index 0000000..9354f9e --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/cells.py @@ -0,0 +1,154 @@ +import re +from functools import lru_cache +from typing import Callable, List + +from ._cell_widths import CELL_WIDTHS + +# Regex to match sequence of the most common character ranges +_is_single_cell_widths = re.compile("^[\u0020-\u006f\u00a0\u02ff\u0370-\u0482]*$").match + + +@lru_cache(4096) +def cached_cell_len(text: str) -> int: + """Get the number of cells required to display text. + + This method always caches, which may use up a lot of memory. It is recommended to use + `cell_len` over this method. + + Args: + text (str): Text to display. + + Returns: + int: Get the number of cells required to display text. + """ + _get_size = get_character_cell_size + total_size = sum(_get_size(character) for character in text) + return total_size + + +def cell_len(text: str, _cell_len: Callable[[str], int] = cached_cell_len) -> int: + """Get the number of cells required to display text. + + Args: + text (str): Text to display. + + Returns: + int: Get the number of cells required to display text. + """ + if len(text) < 512: + return _cell_len(text) + _get_size = get_character_cell_size + total_size = sum(_get_size(character) for character in text) + return total_size + + +@lru_cache(maxsize=4096) +def get_character_cell_size(character: str) -> int: + """Get the cell size of a character. + + Args: + character (str): A single character. + + Returns: + int: Number of cells (0, 1 or 2) occupied by that character. + """ + return _get_codepoint_cell_size(ord(character)) + + +@lru_cache(maxsize=4096) +def _get_codepoint_cell_size(codepoint: int) -> int: + """Get the cell size of a character. + + Args: + codepoint (int): Codepoint of a character. + + Returns: + int: Number of cells (0, 1 or 2) occupied by that character. + """ + + _table = CELL_WIDTHS + lower_bound = 0 + upper_bound = len(_table) - 1 + index = (lower_bound + upper_bound) // 2 + while True: + start, end, width = _table[index] + if codepoint < start: + upper_bound = index - 1 + elif codepoint > end: + lower_bound = index + 1 + else: + return 0 if width == -1 else width + if upper_bound < lower_bound: + break + index = (lower_bound + upper_bound) // 2 + return 1 + + +def set_cell_size(text: str, total: int) -> str: + """Set the length of a string to fit within given number of cells.""" + + if _is_single_cell_widths(text): + size = len(text) + if size < total: + return text + " " * (total - size) + return text[:total] + + if total <= 0: + return "" + cell_size = cell_len(text) + if cell_size == total: + return text + if cell_size < total: + return text + " " * (total - cell_size) + + start = 0 + end = len(text) + + # Binary search until we find the right size + while True: + pos = (start + end) // 2 + before = text[: pos + 1] + before_len = cell_len(before) + if before_len == total + 1 and cell_len(before[-1]) == 2: + return before[:-1] + " " + if before_len == total: + return before + if before_len > total: + end = pos + else: + start = pos + + +# TODO: This is inefficient +# TODO: This might not work with CWJ type characters +def chop_cells(text: str, max_size: int, position: int = 0) -> List[str]: + """Break text in to equal (cell) length strings, returning the characters in reverse + order""" + _get_character_cell_size = get_character_cell_size + characters = [ + (character, _get_character_cell_size(character)) for character in text + ] + total_size = position + lines: List[List[str]] = [[]] + append = lines[-1].append + + for character, size in reversed(characters): + if total_size + size > max_size: + lines.append([character]) + append = lines[-1].append + total_size = size + else: + total_size += size + append(character) + + return ["".join(line) for line in lines] + + +if __name__ == "__main__": # pragma: no cover + + print(get_character_cell_size("😽")) + for line in chop_cells("""这是对亚洲语言支持的测试。面对模棱两可的想法,拒绝猜测的诱惑。""", 8): + print(line) + for n in range(80, 1, -1): + print(set_cell_size("""这是对亚洲语言支持的测试。面对模棱两可的想法,拒绝猜测的诱惑。""", n) + "|") + print("x" * n) diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/color.py b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/color.py new file mode 100644 index 0000000..dfe4559 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/color.py @@ -0,0 +1,622 @@ +import platform +import re +from colorsys import rgb_to_hls +from enum import IntEnum +from functools import lru_cache +from typing import TYPE_CHECKING, NamedTuple, Optional, Tuple + +from ._palettes import EIGHT_BIT_PALETTE, STANDARD_PALETTE, WINDOWS_PALETTE +from .color_triplet import ColorTriplet +from .repr import Result, rich_repr +from .terminal_theme import DEFAULT_TERMINAL_THEME + +if TYPE_CHECKING: # pragma: no cover + from .terminal_theme import TerminalTheme + from .text import Text + + +WINDOWS = platform.system() == "Windows" + + +class ColorSystem(IntEnum): + """One of the 3 color system supported by terminals.""" + + STANDARD = 1 + EIGHT_BIT = 2 + TRUECOLOR = 3 + WINDOWS = 4 + + def __repr__(self) -> str: + return f"ColorSystem.{self.name}" + + def __str__(self) -> str: + return repr(self) + + +class ColorType(IntEnum): + """Type of color stored in Color class.""" + + DEFAULT = 0 + STANDARD = 1 + EIGHT_BIT = 2 + TRUECOLOR = 3 + WINDOWS = 4 + + def __repr__(self) -> str: + return f"ColorType.{self.name}" + + +ANSI_COLOR_NAMES = { + "black": 0, + "red": 1, + "green": 2, + "yellow": 3, + "blue": 4, + "magenta": 5, + "cyan": 6, + "white": 7, + "bright_black": 8, + "bright_red": 9, + "bright_green": 10, + "bright_yellow": 11, + "bright_blue": 12, + "bright_magenta": 13, + "bright_cyan": 14, + "bright_white": 15, + "grey0": 16, + "gray0": 16, + "navy_blue": 17, + "dark_blue": 18, + "blue3": 20, + "blue1": 21, + "dark_green": 22, + "deep_sky_blue4": 25, + "dodger_blue3": 26, + "dodger_blue2": 27, + "green4": 28, + "spring_green4": 29, + "turquoise4": 30, + "deep_sky_blue3": 32, + "dodger_blue1": 33, + "green3": 40, + "spring_green3": 41, + "dark_cyan": 36, + "light_sea_green": 37, + "deep_sky_blue2": 38, + "deep_sky_blue1": 39, + "spring_green2": 47, + "cyan3": 43, + "dark_turquoise": 44, + "turquoise2": 45, + "green1": 46, + "spring_green1": 48, + "medium_spring_green": 49, + "cyan2": 50, + "cyan1": 51, + "dark_red": 88, + "deep_pink4": 125, + "purple4": 55, + "purple3": 56, + "blue_violet": 57, + "orange4": 94, + "grey37": 59, + "gray37": 59, + "medium_purple4": 60, + "slate_blue3": 62, + "royal_blue1": 63, + "chartreuse4": 64, + "dark_sea_green4": 71, + "pale_turquoise4": 66, + "steel_blue": 67, + "steel_blue3": 68, + "cornflower_blue": 69, + "chartreuse3": 76, + "cadet_blue": 73, + "sky_blue3": 74, + "steel_blue1": 81, + "pale_green3": 114, + "sea_green3": 78, + "aquamarine3": 79, + "medium_turquoise": 80, + "chartreuse2": 112, + "sea_green2": 83, + "sea_green1": 85, + "aquamarine1": 122, + "dark_slate_gray2": 87, + "dark_magenta": 91, + "dark_violet": 128, + "purple": 129, + "light_pink4": 95, + "plum4": 96, + "medium_purple3": 98, + "slate_blue1": 99, + "yellow4": 106, + "wheat4": 101, + "grey53": 102, + "gray53": 102, + "light_slate_grey": 103, + "light_slate_gray": 103, + "medium_purple": 104, + "light_slate_blue": 105, + "dark_olive_green3": 149, + "dark_sea_green": 108, + "light_sky_blue3": 110, + "sky_blue2": 111, + "dark_sea_green3": 150, + "dark_slate_gray3": 116, + "sky_blue1": 117, + "chartreuse1": 118, + "light_green": 120, + "pale_green1": 156, + "dark_slate_gray1": 123, + "red3": 160, + "medium_violet_red": 126, + "magenta3": 164, + "dark_orange3": 166, + "indian_red": 167, + "hot_pink3": 168, + "medium_orchid3": 133, + "medium_orchid": 134, + "medium_purple2": 140, + "dark_goldenrod": 136, + "light_salmon3": 173, + "rosy_brown": 138, + "grey63": 139, + "gray63": 139, + "medium_purple1": 141, + "gold3": 178, + "dark_khaki": 143, + "navajo_white3": 144, + "grey69": 145, + "gray69": 145, + "light_steel_blue3": 146, + "light_steel_blue": 147, + "yellow3": 184, + "dark_sea_green2": 157, + "light_cyan3": 152, + "light_sky_blue1": 153, + "green_yellow": 154, + "dark_olive_green2": 155, + "dark_sea_green1": 193, + "pale_turquoise1": 159, + "deep_pink3": 162, + "magenta2": 200, + "hot_pink2": 169, + "orchid": 170, + "medium_orchid1": 207, + "orange3": 172, + "light_pink3": 174, + "pink3": 175, + "plum3": 176, + "violet": 177, + "light_goldenrod3": 179, + "tan": 180, + "misty_rose3": 181, + "thistle3": 182, + "plum2": 183, + "khaki3": 185, + "light_goldenrod2": 222, + "light_yellow3": 187, + "grey84": 188, + "gray84": 188, + "light_steel_blue1": 189, + "yellow2": 190, + "dark_olive_green1": 192, + "honeydew2": 194, + "light_cyan1": 195, + "red1": 196, + "deep_pink2": 197, + "deep_pink1": 199, + "magenta1": 201, + "orange_red1": 202, + "indian_red1": 204, + "hot_pink": 206, + "dark_orange": 208, + "salmon1": 209, + "light_coral": 210, + "pale_violet_red1": 211, + "orchid2": 212, + "orchid1": 213, + "orange1": 214, + "sandy_brown": 215, + "light_salmon1": 216, + "light_pink1": 217, + "pink1": 218, + "plum1": 219, + "gold1": 220, + "navajo_white1": 223, + "misty_rose1": 224, + "thistle1": 225, + "yellow1": 226, + "light_goldenrod1": 227, + "khaki1": 228, + "wheat1": 229, + "cornsilk1": 230, + "grey100": 231, + "gray100": 231, + "grey3": 232, + "gray3": 232, + "grey7": 233, + "gray7": 233, + "grey11": 234, + "gray11": 234, + "grey15": 235, + "gray15": 235, + "grey19": 236, + "gray19": 236, + "grey23": 237, + "gray23": 237, + "grey27": 238, + "gray27": 238, + "grey30": 239, + "gray30": 239, + "grey35": 240, + "gray35": 240, + "grey39": 241, + "gray39": 241, + "grey42": 242, + "gray42": 242, + "grey46": 243, + "gray46": 243, + "grey50": 244, + "gray50": 244, + "grey54": 245, + "gray54": 245, + "grey58": 246, + "gray58": 246, + "grey62": 247, + "gray62": 247, + "grey66": 248, + "gray66": 248, + "grey70": 249, + "gray70": 249, + "grey74": 250, + "gray74": 250, + "grey78": 251, + "gray78": 251, + "grey82": 252, + "gray82": 252, + "grey85": 253, + "gray85": 253, + "grey89": 254, + "gray89": 254, + "grey93": 255, + "gray93": 255, +} + + +class ColorParseError(Exception): + """The color could not be parsed.""" + + +RE_COLOR = re.compile( + r"""^ +\#([0-9a-f]{6})$| +color\(([0-9]{1,3})\)$| +rgb\(([\d\s,]+)\)$ +""", + re.VERBOSE, +) + + +@rich_repr +class Color(NamedTuple): + """Terminal color definition.""" + + name: str + """The name of the color (typically the input to Color.parse).""" + type: ColorType + """The type of the color.""" + number: Optional[int] = None + """The color number, if a standard color, or None.""" + triplet: Optional[ColorTriplet] = None + """A triplet of color components, if an RGB color.""" + + def __rich__(self) -> "Text": + """Displays the actual color if Rich printed.""" + from .style import Style + from .text import Text + + return Text.assemble( + f"", + ) + + def __rich_repr__(self) -> Result: + yield self.name + yield self.type + yield "number", self.number, None + yield "triplet", self.triplet, None + + @property + def system(self) -> ColorSystem: + """Get the native color system for this color.""" + if self.type == ColorType.DEFAULT: + return ColorSystem.STANDARD + return ColorSystem(int(self.type)) + + @property + def is_system_defined(self) -> bool: + """Check if the color is ultimately defined by the system.""" + return self.system not in (ColorSystem.EIGHT_BIT, ColorSystem.TRUECOLOR) + + @property + def is_default(self) -> bool: + """Check if the color is a default color.""" + return self.type == ColorType.DEFAULT + + def get_truecolor( + self, theme: Optional["TerminalTheme"] = None, foreground: bool = True + ) -> ColorTriplet: + """Get an equivalent color triplet for this color. + + Args: + theme (TerminalTheme, optional): Optional terminal theme, or None to use default. Defaults to None. + foreground (bool, optional): True for a foreground color, or False for background. Defaults to True. + + Returns: + ColorTriplet: A color triplet containing RGB components. + """ + + if theme is None: + theme = DEFAULT_TERMINAL_THEME + if self.type == ColorType.TRUECOLOR: + assert self.triplet is not None + return self.triplet + elif self.type == ColorType.EIGHT_BIT: + assert self.number is not None + return EIGHT_BIT_PALETTE[self.number] + elif self.type == ColorType.STANDARD: + assert self.number is not None + return theme.ansi_colors[self.number] + elif self.type == ColorType.WINDOWS: + assert self.number is not None + return WINDOWS_PALETTE[self.number] + else: # self.type == ColorType.DEFAULT: + assert self.number is None + return theme.foreground_color if foreground else theme.background_color + + @classmethod + def from_ansi(cls, number: int) -> "Color": + """Create a Color number from it's 8-bit ansi number. + + Args: + number (int): A number between 0-255 inclusive. + + Returns: + Color: A new Color instance. + """ + return cls( + name=f"color({number})", + type=(ColorType.STANDARD if number < 16 else ColorType.EIGHT_BIT), + number=number, + ) + + @classmethod + def from_triplet(cls, triplet: "ColorTriplet") -> "Color": + """Create a truecolor RGB color from a triplet of values. + + Args: + triplet (ColorTriplet): A color triplet containing red, green and blue components. + + Returns: + Color: A new color object. + """ + return cls(name=triplet.hex, type=ColorType.TRUECOLOR, triplet=triplet) + + @classmethod + def from_rgb(cls, red: float, green: float, blue: float) -> "Color": + """Create a truecolor from three color components in the range(0->255). + + Args: + red (float): Red component in range 0-255. + green (float): Green component in range 0-255. + blue (float): Blue component in range 0-255. + + Returns: + Color: A new color object. + """ + return cls.from_triplet(ColorTriplet(int(red), int(green), int(blue))) + + @classmethod + def default(cls) -> "Color": + """Get a Color instance representing the default color. + + Returns: + Color: Default color. + """ + return cls(name="default", type=ColorType.DEFAULT) + + @classmethod + @lru_cache(maxsize=1024) + def parse(cls, color: str) -> "Color": + """Parse a color definition.""" + original_color = color + color = color.lower().strip() + + if color == "default": + return cls(color, type=ColorType.DEFAULT) + + color_number = ANSI_COLOR_NAMES.get(color) + if color_number is not None: + return cls( + color, + type=(ColorType.STANDARD if color_number < 16 else ColorType.EIGHT_BIT), + number=color_number, + ) + + color_match = RE_COLOR.match(color) + if color_match is None: + raise ColorParseError(f"{original_color!r} is not a valid color") + + color_24, color_8, color_rgb = color_match.groups() + if color_24: + triplet = ColorTriplet( + int(color_24[0:2], 16), int(color_24[2:4], 16), int(color_24[4:6], 16) + ) + return cls(color, ColorType.TRUECOLOR, triplet=triplet) + + elif color_8: + number = int(color_8) + if number > 255: + raise ColorParseError(f"color number must be <= 255 in {color!r}") + return cls( + color, + type=(ColorType.STANDARD if number < 16 else ColorType.EIGHT_BIT), + number=number, + ) + + else: # color_rgb: + components = color_rgb.split(",") + if len(components) != 3: + raise ColorParseError( + f"expected three components in {original_color!r}" + ) + red, green, blue = components + triplet = ColorTriplet(int(red), int(green), int(blue)) + if not all(component <= 255 for component in triplet): + raise ColorParseError( + f"color components must be <= 255 in {original_color!r}" + ) + return cls(color, ColorType.TRUECOLOR, triplet=triplet) + + @lru_cache(maxsize=1024) + def get_ansi_codes(self, foreground: bool = True) -> Tuple[str, ...]: + """Get the ANSI escape codes for this color.""" + _type = self.type + if _type == ColorType.DEFAULT: + return ("39" if foreground else "49",) + + elif _type == ColorType.WINDOWS: + number = self.number + assert number is not None + fore, back = (30, 40) if number < 8 else (82, 92) + return (str(fore + number if foreground else back + number),) + + elif _type == ColorType.STANDARD: + number = self.number + assert number is not None + fore, back = (30, 40) if number < 8 else (82, 92) + return (str(fore + number if foreground else back + number),) + + elif _type == ColorType.EIGHT_BIT: + assert self.number is not None + return ("38" if foreground else "48", "5", str(self.number)) + + else: # self.standard == ColorStandard.TRUECOLOR: + assert self.triplet is not None + red, green, blue = self.triplet + return ("38" if foreground else "48", "2", str(red), str(green), str(blue)) + + @lru_cache(maxsize=1024) + def downgrade(self, system: ColorSystem) -> "Color": + """Downgrade a color system to a system with fewer colors.""" + + if self.type in (ColorType.DEFAULT, system): + return self + # Convert to 8-bit color from truecolor color + if system == ColorSystem.EIGHT_BIT and self.system == ColorSystem.TRUECOLOR: + assert self.triplet is not None + _h, l, s = rgb_to_hls(*self.triplet.normalized) + # If saturation is under 15% assume it is grayscale + if s < 0.15: + gray = round(l * 25.0) + if gray == 0: + color_number = 16 + elif gray == 25: + color_number = 231 + else: + color_number = 231 + gray + return Color(self.name, ColorType.EIGHT_BIT, number=color_number) + + red, green, blue = self.triplet + six_red = red / 95 if red < 95 else 1 + (red - 95) / 40 + six_green = green / 95 if green < 95 else 1 + (green - 95) / 40 + six_blue = blue / 95 if blue < 95 else 1 + (blue - 95) / 40 + + color_number = ( + 16 + 36 * round(six_red) + 6 * round(six_green) + round(six_blue) + ) + return Color(self.name, ColorType.EIGHT_BIT, number=color_number) + + # Convert to standard from truecolor or 8-bit + elif system == ColorSystem.STANDARD: + if self.system == ColorSystem.TRUECOLOR: + assert self.triplet is not None + triplet = self.triplet + else: # self.system == ColorSystem.EIGHT_BIT + assert self.number is not None + triplet = ColorTriplet(*EIGHT_BIT_PALETTE[self.number]) + + color_number = STANDARD_PALETTE.match(triplet) + return Color(self.name, ColorType.STANDARD, number=color_number) + + elif system == ColorSystem.WINDOWS: + if self.system == ColorSystem.TRUECOLOR: + assert self.triplet is not None + triplet = self.triplet + else: # self.system == ColorSystem.EIGHT_BIT + assert self.number is not None + if self.number < 16: + return Color(self.name, ColorType.WINDOWS, number=self.number) + triplet = ColorTriplet(*EIGHT_BIT_PALETTE[self.number]) + + color_number = WINDOWS_PALETTE.match(triplet) + return Color(self.name, ColorType.WINDOWS, number=color_number) + + return self + + +def parse_rgb_hex(hex_color: str) -> ColorTriplet: + """Parse six hex characters in to RGB triplet.""" + assert len(hex_color) == 6, "must be 6 characters" + color = ColorTriplet( + int(hex_color[0:2], 16), int(hex_color[2:4], 16), int(hex_color[4:6], 16) + ) + return color + + +def blend_rgb( + color1: ColorTriplet, color2: ColorTriplet, cross_fade: float = 0.5 +) -> ColorTriplet: + """Blend one RGB color in to another.""" + r1, g1, b1 = color1 + r2, g2, b2 = color2 + new_color = ColorTriplet( + int(r1 + (r2 - r1) * cross_fade), + int(g1 + (g2 - g1) * cross_fade), + int(b1 + (b2 - b1) * cross_fade), + ) + return new_color + + +if __name__ == "__main__": # pragma: no cover + + from .console import Console + from .table import Table + from .text import Text + + console = Console() + + table = Table(show_footer=False, show_edge=True) + table.add_column("Color", width=10, overflow="ellipsis") + table.add_column("Number", justify="right", style="yellow") + table.add_column("Name", style="green") + table.add_column("Hex", style="blue") + table.add_column("RGB", style="magenta") + + colors = sorted((v, k) for k, v in ANSI_COLOR_NAMES.items()) + for color_number, name in colors: + if "grey" in name: + continue + color_cell = Text(" " * 10, style=f"on {name}") + if color_number < 16: + table.add_row(color_cell, f"{color_number}", Text(f'"{name}"')) + else: + color = EIGHT_BIT_PALETTE[color_number] # type: ignore[has-type] + table.add_row( + color_cell, str(color_number), Text(f'"{name}"'), color.hex, color.rgb + ) + + console.print(table) diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/color_triplet.py b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/color_triplet.py new file mode 100644 index 0000000..02cab32 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/color_triplet.py @@ -0,0 +1,38 @@ +from typing import NamedTuple, Tuple + + +class ColorTriplet(NamedTuple): + """The red, green, and blue components of a color.""" + + red: int + """Red component in 0 to 255 range.""" + green: int + """Green component in 0 to 255 range.""" + blue: int + """Blue component in 0 to 255 range.""" + + @property + def hex(self) -> str: + """get the color triplet in CSS style.""" + red, green, blue = self + return f"#{red:02x}{green:02x}{blue:02x}" + + @property + def rgb(self) -> str: + """The color in RGB format. + + Returns: + str: An rgb color, e.g. ``"rgb(100,23,255)"``. + """ + red, green, blue = self + return f"rgb({red},{green},{blue})" + + @property + def normalized(self) -> Tuple[float, float, float]: + """Convert components into floats between 0 and 1. + + Returns: + Tuple[float, float, float]: A tuple of three normalized colour components. + """ + red, green, blue = self + return red / 255.0, green / 255.0, blue / 255.0 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/columns.py b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/columns.py new file mode 100644 index 0000000..669a3a7 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/columns.py @@ -0,0 +1,187 @@ +from collections import defaultdict +from itertools import chain +from operator import itemgetter +from typing import Dict, Iterable, List, Optional, Tuple + +from .align import Align, AlignMethod +from .console import Console, ConsoleOptions, RenderableType, RenderResult +from .constrain import Constrain +from .measure import Measurement +from .padding import Padding, PaddingDimensions +from .table import Table +from .text import TextType +from .jupyter import JupyterMixin + + +class Columns(JupyterMixin): + """Display renderables in neat columns. + + Args: + renderables (Iterable[RenderableType]): Any number of Rich renderables (including str). + width (int, optional): The desired width of the columns, or None to auto detect. Defaults to None. + padding (PaddingDimensions, optional): Optional padding around cells. Defaults to (0, 1). + expand (bool, optional): Expand columns to full width. Defaults to False. + equal (bool, optional): Arrange in to equal sized columns. Defaults to False. + column_first (bool, optional): Align items from top to bottom (rather than left to right). Defaults to False. + right_to_left (bool, optional): Start column from right hand side. Defaults to False. + align (str, optional): Align value ("left", "right", or "center") or None for default. Defaults to None. + title (TextType, optional): Optional title for Columns. + """ + + def __init__( + self, + renderables: Optional[Iterable[RenderableType]] = None, + padding: PaddingDimensions = (0, 1), + *, + width: Optional[int] = None, + expand: bool = False, + equal: bool = False, + column_first: bool = False, + right_to_left: bool = False, + align: Optional[AlignMethod] = None, + title: Optional[TextType] = None, + ) -> None: + self.renderables = list(renderables or []) + self.width = width + self.padding = padding + self.expand = expand + self.equal = equal + self.column_first = column_first + self.right_to_left = right_to_left + self.align: Optional[AlignMethod] = align + self.title = title + + def add_renderable(self, renderable: RenderableType) -> None: + """Add a renderable to the columns. + + Args: + renderable (RenderableType): Any renderable object. + """ + self.renderables.append(renderable) + + def __rich_console__( + self, console: Console, options: ConsoleOptions + ) -> RenderResult: + render_str = console.render_str + renderables = [ + render_str(renderable) if isinstance(renderable, str) else renderable + for renderable in self.renderables + ] + if not renderables: + return + _top, right, _bottom, left = Padding.unpack(self.padding) + width_padding = max(left, right) + max_width = options.max_width + widths: Dict[int, int] = defaultdict(int) + column_count = len(renderables) + + get_measurement = Measurement.get + renderable_widths = [ + get_measurement(console, options, renderable).maximum + for renderable in renderables + ] + if self.equal: + renderable_widths = [max(renderable_widths)] * len(renderable_widths) + + def iter_renderables( + column_count: int, + ) -> Iterable[Tuple[int, Optional[RenderableType]]]: + item_count = len(renderables) + if self.column_first: + width_renderables = list(zip(renderable_widths, renderables)) + + column_lengths: List[int] = [item_count // column_count] * column_count + for col_no in range(item_count % column_count): + column_lengths[col_no] += 1 + + row_count = (item_count + column_count - 1) // column_count + cells = [[-1] * column_count for _ in range(row_count)] + row = col = 0 + for index in range(item_count): + cells[row][col] = index + column_lengths[col] -= 1 + if column_lengths[col]: + row += 1 + else: + col += 1 + row = 0 + for index in chain.from_iterable(cells): + if index == -1: + break + yield width_renderables[index] + else: + yield from zip(renderable_widths, renderables) + # Pad odd elements with spaces + if item_count % column_count: + for _ in range(column_count - (item_count % column_count)): + yield 0, None + + table = Table.grid(padding=self.padding, collapse_padding=True, pad_edge=False) + table.expand = self.expand + table.title = self.title + + if self.width is not None: + column_count = (max_width) // (self.width + width_padding) + for _ in range(column_count): + table.add_column(width=self.width) + else: + while column_count > 1: + widths.clear() + column_no = 0 + for renderable_width, _ in iter_renderables(column_count): + widths[column_no] = max(widths[column_no], renderable_width) + total_width = sum(widths.values()) + width_padding * ( + len(widths) - 1 + ) + if total_width > max_width: + column_count = len(widths) - 1 + break + else: + column_no = (column_no + 1) % column_count + else: + break + + get_renderable = itemgetter(1) + _renderables = [ + get_renderable(_renderable) + for _renderable in iter_renderables(column_count) + ] + if self.equal: + _renderables = [ + None + if renderable is None + else Constrain(renderable, renderable_widths[0]) + for renderable in _renderables + ] + if self.align: + align = self.align + _Align = Align + _renderables = [ + None if renderable is None else _Align(renderable, align) + for renderable in _renderables + ] + + right_to_left = self.right_to_left + add_row = table.add_row + for start in range(0, len(_renderables), column_count): + row = _renderables[start : start + column_count] + if right_to_left: + row = row[::-1] + add_row(*row) + yield table + + +if __name__ == "__main__": # pragma: no cover + import os + + console = Console() + + files = [f"{i} {s}" for i, s in enumerate(sorted(os.listdir()))] + columns = Columns(files, padding=(0, 1), expand=False, equal=False) + console.print(columns) + console.rule() + columns.column_first = True + console.print(columns) + columns.right_to_left = True + console.rule() + console.print(columns) diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/console.py b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/console.py new file mode 100644 index 0000000..e559cbb --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/console.py @@ -0,0 +1,2633 @@ +import inspect +import os +import platform +import sys +import threading +import zlib +from abc import ABC, abstractmethod +from dataclasses import dataclass, field +from datetime import datetime +from functools import wraps +from getpass import getpass +from html import escape +from inspect import isclass +from itertools import islice +from math import ceil +from time import monotonic +from types import FrameType, ModuleType, TracebackType +from typing import ( + IO, + TYPE_CHECKING, + Any, + Callable, + Dict, + Iterable, + List, + Mapping, + NamedTuple, + Optional, + TextIO, + Tuple, + Type, + Union, + cast, +) + +from pip._vendor.rich._null_file import NULL_FILE + +if sys.version_info >= (3, 8): + from typing import Literal, Protocol, runtime_checkable +else: + from pip._vendor.typing_extensions import ( + Literal, + Protocol, + runtime_checkable, + ) # pragma: no cover + +from . import errors, themes +from ._emoji_replace import _emoji_replace +from ._export_format import CONSOLE_HTML_FORMAT, CONSOLE_SVG_FORMAT +from ._fileno import get_fileno +from ._log_render import FormatTimeCallable, LogRender +from .align import Align, AlignMethod +from .color import ColorSystem, blend_rgb +from .control import Control +from .emoji import EmojiVariant +from .highlighter import NullHighlighter, ReprHighlighter +from .markup import render as render_markup +from .measure import Measurement, measure_renderables +from .pager import Pager, SystemPager +from .pretty import Pretty, is_expandable +from .protocol import rich_cast +from .region import Region +from .scope import render_scope +from .screen import Screen +from .segment import Segment +from .style import Style, StyleType +from .styled import Styled +from .terminal_theme import DEFAULT_TERMINAL_THEME, SVG_EXPORT_THEME, TerminalTheme +from .text import Text, TextType +from .theme import Theme, ThemeStack + +if TYPE_CHECKING: + from ._windows import WindowsConsoleFeatures + from .live import Live + from .status import Status + +JUPYTER_DEFAULT_COLUMNS = 115 +JUPYTER_DEFAULT_LINES = 100 +WINDOWS = platform.system() == "Windows" + +HighlighterType = Callable[[Union[str, "Text"]], "Text"] +JustifyMethod = Literal["default", "left", "center", "right", "full"] +OverflowMethod = Literal["fold", "crop", "ellipsis", "ignore"] + + +class NoChange: + pass + + +NO_CHANGE = NoChange() + +try: + _STDIN_FILENO = sys.__stdin__.fileno() +except Exception: + _STDIN_FILENO = 0 +try: + _STDOUT_FILENO = sys.__stdout__.fileno() +except Exception: + _STDOUT_FILENO = 1 +try: + _STDERR_FILENO = sys.__stderr__.fileno() +except Exception: + _STDERR_FILENO = 2 + +_STD_STREAMS = (_STDIN_FILENO, _STDOUT_FILENO, _STDERR_FILENO) +_STD_STREAMS_OUTPUT = (_STDOUT_FILENO, _STDERR_FILENO) + + +_TERM_COLORS = { + "kitty": ColorSystem.EIGHT_BIT, + "256color": ColorSystem.EIGHT_BIT, + "16color": ColorSystem.STANDARD, +} + + +class ConsoleDimensions(NamedTuple): + """Size of the terminal.""" + + width: int + """The width of the console in 'cells'.""" + height: int + """The height of the console in lines.""" + + +@dataclass +class ConsoleOptions: + """Options for __rich_console__ method.""" + + size: ConsoleDimensions + """Size of console.""" + legacy_windows: bool + """legacy_windows: flag for legacy windows.""" + min_width: int + """Minimum width of renderable.""" + max_width: int + """Maximum width of renderable.""" + is_terminal: bool + """True if the target is a terminal, otherwise False.""" + encoding: str + """Encoding of terminal.""" + max_height: int + """Height of container (starts as terminal)""" + justify: Optional[JustifyMethod] = None + """Justify value override for renderable.""" + overflow: Optional[OverflowMethod] = None + """Overflow value override for renderable.""" + no_wrap: Optional[bool] = False + """Disable wrapping for text.""" + highlight: Optional[bool] = None + """Highlight override for render_str.""" + markup: Optional[bool] = None + """Enable markup when rendering strings.""" + height: Optional[int] = None + + @property + def ascii_only(self) -> bool: + """Check if renderables should use ascii only.""" + return not self.encoding.startswith("utf") + + def copy(self) -> "ConsoleOptions": + """Return a copy of the options. + + Returns: + ConsoleOptions: a copy of self. + """ + options: ConsoleOptions = ConsoleOptions.__new__(ConsoleOptions) + options.__dict__ = self.__dict__.copy() + return options + + def update( + self, + *, + width: Union[int, NoChange] = NO_CHANGE, + min_width: Union[int, NoChange] = NO_CHANGE, + max_width: Union[int, NoChange] = NO_CHANGE, + justify: Union[Optional[JustifyMethod], NoChange] = NO_CHANGE, + overflow: Union[Optional[OverflowMethod], NoChange] = NO_CHANGE, + no_wrap: Union[Optional[bool], NoChange] = NO_CHANGE, + highlight: Union[Optional[bool], NoChange] = NO_CHANGE, + markup: Union[Optional[bool], NoChange] = NO_CHANGE, + height: Union[Optional[int], NoChange] = NO_CHANGE, + ) -> "ConsoleOptions": + """Update values, return a copy.""" + options = self.copy() + if not isinstance(width, NoChange): + options.min_width = options.max_width = max(0, width) + if not isinstance(min_width, NoChange): + options.min_width = min_width + if not isinstance(max_width, NoChange): + options.max_width = max_width + if not isinstance(justify, NoChange): + options.justify = justify + if not isinstance(overflow, NoChange): + options.overflow = overflow + if not isinstance(no_wrap, NoChange): + options.no_wrap = no_wrap + if not isinstance(highlight, NoChange): + options.highlight = highlight + if not isinstance(markup, NoChange): + options.markup = markup + if not isinstance(height, NoChange): + if height is not None: + options.max_height = height + options.height = None if height is None else max(0, height) + return options + + def update_width(self, width: int) -> "ConsoleOptions": + """Update just the width, return a copy. + + Args: + width (int): New width (sets both min_width and max_width) + + Returns: + ~ConsoleOptions: New console options instance. + """ + options = self.copy() + options.min_width = options.max_width = max(0, width) + return options + + def update_height(self, height: int) -> "ConsoleOptions": + """Update the height, and return a copy. + + Args: + height (int): New height + + Returns: + ~ConsoleOptions: New Console options instance. + """ + options = self.copy() + options.max_height = options.height = height + return options + + def reset_height(self) -> "ConsoleOptions": + """Return a copy of the options with height set to ``None``. + + Returns: + ~ConsoleOptions: New console options instance. + """ + options = self.copy() + options.height = None + return options + + def update_dimensions(self, width: int, height: int) -> "ConsoleOptions": + """Update the width and height, and return a copy. + + Args: + width (int): New width (sets both min_width and max_width). + height (int): New height. + + Returns: + ~ConsoleOptions: New console options instance. + """ + options = self.copy() + options.min_width = options.max_width = max(0, width) + options.height = options.max_height = height + return options + + +@runtime_checkable +class RichCast(Protocol): + """An object that may be 'cast' to a console renderable.""" + + def __rich__( + self, + ) -> Union["ConsoleRenderable", "RichCast", str]: # pragma: no cover + ... + + +@runtime_checkable +class ConsoleRenderable(Protocol): + """An object that supports the console protocol.""" + + def __rich_console__( + self, console: "Console", options: "ConsoleOptions" + ) -> "RenderResult": # pragma: no cover + ... + + +# A type that may be rendered by Console. +RenderableType = Union[ConsoleRenderable, RichCast, str] + +# The result of calling a __rich_console__ method. +RenderResult = Iterable[Union[RenderableType, Segment]] + +_null_highlighter = NullHighlighter() + + +class CaptureError(Exception): + """An error in the Capture context manager.""" + + +class NewLine: + """A renderable to generate new line(s)""" + + def __init__(self, count: int = 1) -> None: + self.count = count + + def __rich_console__( + self, console: "Console", options: "ConsoleOptions" + ) -> Iterable[Segment]: + yield Segment("\n" * self.count) + + +class ScreenUpdate: + """Render a list of lines at a given offset.""" + + def __init__(self, lines: List[List[Segment]], x: int, y: int) -> None: + self._lines = lines + self.x = x + self.y = y + + def __rich_console__( + self, console: "Console", options: ConsoleOptions + ) -> RenderResult: + x = self.x + move_to = Control.move_to + for offset, line in enumerate(self._lines, self.y): + yield move_to(x, offset) + yield from line + + +class Capture: + """Context manager to capture the result of printing to the console. + See :meth:`~rich.console.Console.capture` for how to use. + + Args: + console (Console): A console instance to capture output. + """ + + def __init__(self, console: "Console") -> None: + self._console = console + self._result: Optional[str] = None + + def __enter__(self) -> "Capture": + self._console.begin_capture() + return self + + def __exit__( + self, + exc_type: Optional[Type[BaseException]], + exc_val: Optional[BaseException], + exc_tb: Optional[TracebackType], + ) -> None: + self._result = self._console.end_capture() + + def get(self) -> str: + """Get the result of the capture.""" + if self._result is None: + raise CaptureError( + "Capture result is not available until context manager exits." + ) + return self._result + + +class ThemeContext: + """A context manager to use a temporary theme. See :meth:`~rich.console.Console.use_theme` for usage.""" + + def __init__(self, console: "Console", theme: Theme, inherit: bool = True) -> None: + self.console = console + self.theme = theme + self.inherit = inherit + + def __enter__(self) -> "ThemeContext": + self.console.push_theme(self.theme) + return self + + def __exit__( + self, + exc_type: Optional[Type[BaseException]], + exc_val: Optional[BaseException], + exc_tb: Optional[TracebackType], + ) -> None: + self.console.pop_theme() + + +class PagerContext: + """A context manager that 'pages' content. See :meth:`~rich.console.Console.pager` for usage.""" + + def __init__( + self, + console: "Console", + pager: Optional[Pager] = None, + styles: bool = False, + links: bool = False, + ) -> None: + self._console = console + self.pager = SystemPager() if pager is None else pager + self.styles = styles + self.links = links + + def __enter__(self) -> "PagerContext": + self._console._enter_buffer() + return self + + def __exit__( + self, + exc_type: Optional[Type[BaseException]], + exc_val: Optional[BaseException], + exc_tb: Optional[TracebackType], + ) -> None: + if exc_type is None: + with self._console._lock: + buffer: List[Segment] = self._console._buffer[:] + del self._console._buffer[:] + segments: Iterable[Segment] = buffer + if not self.styles: + segments = Segment.strip_styles(segments) + elif not self.links: + segments = Segment.strip_links(segments) + content = self._console._render_buffer(segments) + self.pager.show(content) + self._console._exit_buffer() + + +class ScreenContext: + """A context manager that enables an alternative screen. See :meth:`~rich.console.Console.screen` for usage.""" + + def __init__( + self, console: "Console", hide_cursor: bool, style: StyleType = "" + ) -> None: + self.console = console + self.hide_cursor = hide_cursor + self.screen = Screen(style=style) + self._changed = False + + def update( + self, *renderables: RenderableType, style: Optional[StyleType] = None + ) -> None: + """Update the screen. + + Args: + renderable (RenderableType, optional): Optional renderable to replace current renderable, + or None for no change. Defaults to None. + style: (Style, optional): Replacement style, or None for no change. Defaults to None. + """ + if renderables: + self.screen.renderable = ( + Group(*renderables) if len(renderables) > 1 else renderables[0] + ) + if style is not None: + self.screen.style = style + self.console.print(self.screen, end="") + + def __enter__(self) -> "ScreenContext": + self._changed = self.console.set_alt_screen(True) + if self._changed and self.hide_cursor: + self.console.show_cursor(False) + return self + + def __exit__( + self, + exc_type: Optional[Type[BaseException]], + exc_val: Optional[BaseException], + exc_tb: Optional[TracebackType], + ) -> None: + if self._changed: + self.console.set_alt_screen(False) + if self.hide_cursor: + self.console.show_cursor(True) + + +class Group: + """Takes a group of renderables and returns a renderable object that renders the group. + + Args: + renderables (Iterable[RenderableType]): An iterable of renderable objects. + fit (bool, optional): Fit dimension of group to contents, or fill available space. Defaults to True. + """ + + def __init__(self, *renderables: "RenderableType", fit: bool = True) -> None: + self._renderables = renderables + self.fit = fit + self._render: Optional[List[RenderableType]] = None + + @property + def renderables(self) -> List["RenderableType"]: + if self._render is None: + self._render = list(self._renderables) + return self._render + + def __rich_measure__( + self, console: "Console", options: "ConsoleOptions" + ) -> "Measurement": + if self.fit: + return measure_renderables(console, options, self.renderables) + else: + return Measurement(options.max_width, options.max_width) + + def __rich_console__( + self, console: "Console", options: "ConsoleOptions" + ) -> RenderResult: + yield from self.renderables + + +def group(fit: bool = True) -> Callable[..., Callable[..., Group]]: + """A decorator that turns an iterable of renderables in to a group. + + Args: + fit (bool, optional): Fit dimension of group to contents, or fill available space. Defaults to True. + """ + + def decorator( + method: Callable[..., Iterable[RenderableType]] + ) -> Callable[..., Group]: + """Convert a method that returns an iterable of renderables in to a Group.""" + + @wraps(method) + def _replace(*args: Any, **kwargs: Any) -> Group: + renderables = method(*args, **kwargs) + return Group(*renderables, fit=fit) + + return _replace + + return decorator + + +def _is_jupyter() -> bool: # pragma: no cover + """Check if we're running in a Jupyter notebook.""" + try: + get_ipython # type: ignore[name-defined] + except NameError: + return False + ipython = get_ipython() # type: ignore[name-defined] + shell = ipython.__class__.__name__ + if ( + "google.colab" in str(ipython.__class__) + or os.getenv("DATABRICKS_RUNTIME_VERSION") + or shell == "ZMQInteractiveShell" + ): + return True # Jupyter notebook or qtconsole + elif shell == "TerminalInteractiveShell": + return False # Terminal running IPython + else: + return False # Other type (?) + + +COLOR_SYSTEMS = { + "standard": ColorSystem.STANDARD, + "256": ColorSystem.EIGHT_BIT, + "truecolor": ColorSystem.TRUECOLOR, + "windows": ColorSystem.WINDOWS, +} + +_COLOR_SYSTEMS_NAMES = {system: name for name, system in COLOR_SYSTEMS.items()} + + +@dataclass +class ConsoleThreadLocals(threading.local): + """Thread local values for Console context.""" + + theme_stack: ThemeStack + buffer: List[Segment] = field(default_factory=list) + buffer_index: int = 0 + + +class RenderHook(ABC): + """Provides hooks in to the render process.""" + + @abstractmethod + def process_renderables( + self, renderables: List[ConsoleRenderable] + ) -> List[ConsoleRenderable]: + """Called with a list of objects to render. + + This method can return a new list of renderables, or modify and return the same list. + + Args: + renderables (List[ConsoleRenderable]): A number of renderable objects. + + Returns: + List[ConsoleRenderable]: A replacement list of renderables. + """ + + +_windows_console_features: Optional["WindowsConsoleFeatures"] = None + + +def get_windows_console_features() -> "WindowsConsoleFeatures": # pragma: no cover + global _windows_console_features + if _windows_console_features is not None: + return _windows_console_features + from ._windows import get_windows_console_features + + _windows_console_features = get_windows_console_features() + return _windows_console_features + + +def detect_legacy_windows() -> bool: + """Detect legacy Windows.""" + return WINDOWS and not get_windows_console_features().vt + + +class Console: + """A high level console interface. + + Args: + color_system (str, optional): The color system supported by your terminal, + either ``"standard"``, ``"256"`` or ``"truecolor"``. Leave as ``"auto"`` to autodetect. + force_terminal (Optional[bool], optional): Enable/disable terminal control codes, or None to auto-detect terminal. Defaults to None. + force_jupyter (Optional[bool], optional): Enable/disable Jupyter rendering, or None to auto-detect Jupyter. Defaults to None. + force_interactive (Optional[bool], optional): Enable/disable interactive mode, or None to auto detect. Defaults to None. + soft_wrap (Optional[bool], optional): Set soft wrap default on print method. Defaults to False. + theme (Theme, optional): An optional style theme object, or ``None`` for default theme. + stderr (bool, optional): Use stderr rather than stdout if ``file`` is not specified. Defaults to False. + file (IO, optional): A file object where the console should write to. Defaults to stdout. + quiet (bool, Optional): Boolean to suppress all output. Defaults to False. + width (int, optional): The width of the terminal. Leave as default to auto-detect width. + height (int, optional): The height of the terminal. Leave as default to auto-detect height. + style (StyleType, optional): Style to apply to all output, or None for no style. Defaults to None. + no_color (Optional[bool], optional): Enabled no color mode, or None to auto detect. Defaults to None. + tab_size (int, optional): Number of spaces used to replace a tab character. Defaults to 8. + record (bool, optional): Boolean to enable recording of terminal output, + required to call :meth:`export_html`, :meth:`export_svg`, and :meth:`export_text`. Defaults to False. + markup (bool, optional): Boolean to enable :ref:`console_markup`. Defaults to True. + emoji (bool, optional): Enable emoji code. Defaults to True. + emoji_variant (str, optional): Optional emoji variant, either "text" or "emoji". Defaults to None. + highlight (bool, optional): Enable automatic highlighting. Defaults to True. + log_time (bool, optional): Boolean to enable logging of time by :meth:`log` methods. Defaults to True. + log_path (bool, optional): Boolean to enable the logging of the caller by :meth:`log`. Defaults to True. + log_time_format (Union[str, TimeFormatterCallable], optional): If ``log_time`` is enabled, either string for strftime or callable that formats the time. Defaults to "[%X] ". + highlighter (HighlighterType, optional): Default highlighter. + legacy_windows (bool, optional): Enable legacy Windows mode, or ``None`` to auto detect. Defaults to ``None``. + safe_box (bool, optional): Restrict box options that don't render on legacy Windows. + get_datetime (Callable[[], datetime], optional): Callable that gets the current time as a datetime.datetime object (used by Console.log), + or None for datetime.now. + get_time (Callable[[], time], optional): Callable that gets the current time in seconds, default uses time.monotonic. + """ + + _environ: Mapping[str, str] = os.environ + + def __init__( + self, + *, + color_system: Optional[ + Literal["auto", "standard", "256", "truecolor", "windows"] + ] = "auto", + force_terminal: Optional[bool] = None, + force_jupyter: Optional[bool] = None, + force_interactive: Optional[bool] = None, + soft_wrap: bool = False, + theme: Optional[Theme] = None, + stderr: bool = False, + file: Optional[IO[str]] = None, + quiet: bool = False, + width: Optional[int] = None, + height: Optional[int] = None, + style: Optional[StyleType] = None, + no_color: Optional[bool] = None, + tab_size: int = 8, + record: bool = False, + markup: bool = True, + emoji: bool = True, + emoji_variant: Optional[EmojiVariant] = None, + highlight: bool = True, + log_time: bool = True, + log_path: bool = True, + log_time_format: Union[str, FormatTimeCallable] = "[%X]", + highlighter: Optional["HighlighterType"] = ReprHighlighter(), + legacy_windows: Optional[bool] = None, + safe_box: bool = True, + get_datetime: Optional[Callable[[], datetime]] = None, + get_time: Optional[Callable[[], float]] = None, + _environ: Optional[Mapping[str, str]] = None, + ): + # Copy of os.environ allows us to replace it for testing + if _environ is not None: + self._environ = _environ + + self.is_jupyter = _is_jupyter() if force_jupyter is None else force_jupyter + if self.is_jupyter: + if width is None: + jupyter_columns = self._environ.get("JUPYTER_COLUMNS") + if jupyter_columns is not None and jupyter_columns.isdigit(): + width = int(jupyter_columns) + else: + width = JUPYTER_DEFAULT_COLUMNS + if height is None: + jupyter_lines = self._environ.get("JUPYTER_LINES") + if jupyter_lines is not None and jupyter_lines.isdigit(): + height = int(jupyter_lines) + else: + height = JUPYTER_DEFAULT_LINES + + self.tab_size = tab_size + self.record = record + self._markup = markup + self._emoji = emoji + self._emoji_variant: Optional[EmojiVariant] = emoji_variant + self._highlight = highlight + self.legacy_windows: bool = ( + (detect_legacy_windows() and not self.is_jupyter) + if legacy_windows is None + else legacy_windows + ) + + if width is None: + columns = self._environ.get("COLUMNS") + if columns is not None and columns.isdigit(): + width = int(columns) - self.legacy_windows + if height is None: + lines = self._environ.get("LINES") + if lines is not None and lines.isdigit(): + height = int(lines) + + self.soft_wrap = soft_wrap + self._width = width + self._height = height + + self._color_system: Optional[ColorSystem] + + self._force_terminal = None + if force_terminal is not None: + self._force_terminal = force_terminal + + self._file = file + self.quiet = quiet + self.stderr = stderr + + if color_system is None: + self._color_system = None + elif color_system == "auto": + self._color_system = self._detect_color_system() + else: + self._color_system = COLOR_SYSTEMS[color_system] + + self._lock = threading.RLock() + self._log_render = LogRender( + show_time=log_time, + show_path=log_path, + time_format=log_time_format, + ) + self.highlighter: HighlighterType = highlighter or _null_highlighter + self.safe_box = safe_box + self.get_datetime = get_datetime or datetime.now + self.get_time = get_time or monotonic + self.style = style + self.no_color = ( + no_color if no_color is not None else "NO_COLOR" in self._environ + ) + self.is_interactive = ( + (self.is_terminal and not self.is_dumb_terminal) + if force_interactive is None + else force_interactive + ) + + self._record_buffer_lock = threading.RLock() + self._thread_locals = ConsoleThreadLocals( + theme_stack=ThemeStack(themes.DEFAULT if theme is None else theme) + ) + self._record_buffer: List[Segment] = [] + self._render_hooks: List[RenderHook] = [] + self._live: Optional["Live"] = None + self._is_alt_screen = False + + def __repr__(self) -> str: + return f"" + + @property + def file(self) -> IO[str]: + """Get the file object to write to.""" + file = self._file or (sys.stderr if self.stderr else sys.stdout) + file = getattr(file, "rich_proxied_file", file) + if file is None: + file = NULL_FILE + return file + + @file.setter + def file(self, new_file: IO[str]) -> None: + """Set a new file object.""" + self._file = new_file + + @property + def _buffer(self) -> List[Segment]: + """Get a thread local buffer.""" + return self._thread_locals.buffer + + @property + def _buffer_index(self) -> int: + """Get a thread local buffer.""" + return self._thread_locals.buffer_index + + @_buffer_index.setter + def _buffer_index(self, value: int) -> None: + self._thread_locals.buffer_index = value + + @property + def _theme_stack(self) -> ThemeStack: + """Get the thread local theme stack.""" + return self._thread_locals.theme_stack + + def _detect_color_system(self) -> Optional[ColorSystem]: + """Detect color system from env vars.""" + if self.is_jupyter: + return ColorSystem.TRUECOLOR + if not self.is_terminal or self.is_dumb_terminal: + return None + if WINDOWS: # pragma: no cover + if self.legacy_windows: # pragma: no cover + return ColorSystem.WINDOWS + windows_console_features = get_windows_console_features() + return ( + ColorSystem.TRUECOLOR + if windows_console_features.truecolor + else ColorSystem.EIGHT_BIT + ) + else: + color_term = self._environ.get("COLORTERM", "").strip().lower() + if color_term in ("truecolor", "24bit"): + return ColorSystem.TRUECOLOR + term = self._environ.get("TERM", "").strip().lower() + _term_name, _hyphen, colors = term.rpartition("-") + color_system = _TERM_COLORS.get(colors, ColorSystem.STANDARD) + return color_system + + def _enter_buffer(self) -> None: + """Enter in to a buffer context, and buffer all output.""" + self._buffer_index += 1 + + def _exit_buffer(self) -> None: + """Leave buffer context, and render content if required.""" + self._buffer_index -= 1 + self._check_buffer() + + def set_live(self, live: "Live") -> None: + """Set Live instance. Used by Live context manager. + + Args: + live (Live): Live instance using this Console. + + Raises: + errors.LiveError: If this Console has a Live context currently active. + """ + with self._lock: + if self._live is not None: + raise errors.LiveError("Only one live display may be active at once") + self._live = live + + def clear_live(self) -> None: + """Clear the Live instance.""" + with self._lock: + self._live = None + + def push_render_hook(self, hook: RenderHook) -> None: + """Add a new render hook to the stack. + + Args: + hook (RenderHook): Render hook instance. + """ + with self._lock: + self._render_hooks.append(hook) + + def pop_render_hook(self) -> None: + """Pop the last renderhook from the stack.""" + with self._lock: + self._render_hooks.pop() + + def __enter__(self) -> "Console": + """Own context manager to enter buffer context.""" + self._enter_buffer() + return self + + def __exit__(self, exc_type: Any, exc_value: Any, traceback: Any) -> None: + """Exit buffer context.""" + self._exit_buffer() + + def begin_capture(self) -> None: + """Begin capturing console output. Call :meth:`end_capture` to exit capture mode and return output.""" + self._enter_buffer() + + def end_capture(self) -> str: + """End capture mode and return captured string. + + Returns: + str: Console output. + """ + render_result = self._render_buffer(self._buffer) + del self._buffer[:] + self._exit_buffer() + return render_result + + def push_theme(self, theme: Theme, *, inherit: bool = True) -> None: + """Push a new theme on to the top of the stack, replacing the styles from the previous theme. + Generally speaking, you should call :meth:`~rich.console.Console.use_theme` to get a context manager, rather + than calling this method directly. + + Args: + theme (Theme): A theme instance. + inherit (bool, optional): Inherit existing styles. Defaults to True. + """ + self._theme_stack.push_theme(theme, inherit=inherit) + + def pop_theme(self) -> None: + """Remove theme from top of stack, restoring previous theme.""" + self._theme_stack.pop_theme() + + def use_theme(self, theme: Theme, *, inherit: bool = True) -> ThemeContext: + """Use a different theme for the duration of the context manager. + + Args: + theme (Theme): Theme instance to user. + inherit (bool, optional): Inherit existing console styles. Defaults to True. + + Returns: + ThemeContext: [description] + """ + return ThemeContext(self, theme, inherit) + + @property + def color_system(self) -> Optional[str]: + """Get color system string. + + Returns: + Optional[str]: "standard", "256" or "truecolor". + """ + + if self._color_system is not None: + return _COLOR_SYSTEMS_NAMES[self._color_system] + else: + return None + + @property + def encoding(self) -> str: + """Get the encoding of the console file, e.g. ``"utf-8"``. + + Returns: + str: A standard encoding string. + """ + return (getattr(self.file, "encoding", "utf-8") or "utf-8").lower() + + @property + def is_terminal(self) -> bool: + """Check if the console is writing to a terminal. + + Returns: + bool: True if the console writing to a device capable of + understanding terminal codes, otherwise False. + """ + if self._force_terminal is not None: + return self._force_terminal + + if hasattr(sys.stdin, "__module__") and sys.stdin.__module__.startswith( + "idlelib" + ): + # Return False for Idle which claims to be a tty but can't handle ansi codes + return False + + if self.is_jupyter: + # return False for Jupyter, which may have FORCE_COLOR set + return False + + # If FORCE_COLOR env var has any value at all, we assume a terminal. + force_color = self._environ.get("FORCE_COLOR") + if force_color is not None: + self._force_terminal = True + return True + + isatty: Optional[Callable[[], bool]] = getattr(self.file, "isatty", None) + try: + return False if isatty is None else isatty() + except ValueError: + # in some situation (at the end of a pytest run for example) isatty() can raise + # ValueError: I/O operation on closed file + # return False because we aren't in a terminal anymore + return False + + @property + def is_dumb_terminal(self) -> bool: + """Detect dumb terminal. + + Returns: + bool: True if writing to a dumb terminal, otherwise False. + + """ + _term = self._environ.get("TERM", "") + is_dumb = _term.lower() in ("dumb", "unknown") + return self.is_terminal and is_dumb + + @property + def options(self) -> ConsoleOptions: + """Get default console options.""" + return ConsoleOptions( + max_height=self.size.height, + size=self.size, + legacy_windows=self.legacy_windows, + min_width=1, + max_width=self.width, + encoding=self.encoding, + is_terminal=self.is_terminal, + ) + + @property + def size(self) -> ConsoleDimensions: + """Get the size of the console. + + Returns: + ConsoleDimensions: A named tuple containing the dimensions. + """ + + if self._width is not None and self._height is not None: + return ConsoleDimensions(self._width - self.legacy_windows, self._height) + + if self.is_dumb_terminal: + return ConsoleDimensions(80, 25) + + width: Optional[int] = None + height: Optional[int] = None + + if WINDOWS: # pragma: no cover + try: + width, height = os.get_terminal_size() + except (AttributeError, ValueError, OSError): # Probably not a terminal + pass + else: + for file_descriptor in _STD_STREAMS: + try: + width, height = os.get_terminal_size(file_descriptor) + except (AttributeError, ValueError, OSError): + pass + else: + break + + columns = self._environ.get("COLUMNS") + if columns is not None and columns.isdigit(): + width = int(columns) + lines = self._environ.get("LINES") + if lines is not None and lines.isdigit(): + height = int(lines) + + # get_terminal_size can report 0, 0 if run from pseudo-terminal + width = width or 80 + height = height or 25 + return ConsoleDimensions( + width - self.legacy_windows if self._width is None else self._width, + height if self._height is None else self._height, + ) + + @size.setter + def size(self, new_size: Tuple[int, int]) -> None: + """Set a new size for the terminal. + + Args: + new_size (Tuple[int, int]): New width and height. + """ + width, height = new_size + self._width = width + self._height = height + + @property + def width(self) -> int: + """Get the width of the console. + + Returns: + int: The width (in characters) of the console. + """ + return self.size.width + + @width.setter + def width(self, width: int) -> None: + """Set width. + + Args: + width (int): New width. + """ + self._width = width + + @property + def height(self) -> int: + """Get the height of the console. + + Returns: + int: The height (in lines) of the console. + """ + return self.size.height + + @height.setter + def height(self, height: int) -> None: + """Set height. + + Args: + height (int): new height. + """ + self._height = height + + def bell(self) -> None: + """Play a 'bell' sound (if supported by the terminal).""" + self.control(Control.bell()) + + def capture(self) -> Capture: + """A context manager to *capture* the result of print() or log() in a string, + rather than writing it to the console. + + Example: + >>> from rich.console import Console + >>> console = Console() + >>> with console.capture() as capture: + ... console.print("[bold magenta]Hello World[/]") + >>> print(capture.get()) + + Returns: + Capture: Context manager with disables writing to the terminal. + """ + capture = Capture(self) + return capture + + def pager( + self, pager: Optional[Pager] = None, styles: bool = False, links: bool = False + ) -> PagerContext: + """A context manager to display anything printed within a "pager". The pager application + is defined by the system and will typically support at least pressing a key to scroll. + + Args: + pager (Pager, optional): A pager object, or None to use :class:`~rich.pager.SystemPager`. Defaults to None. + styles (bool, optional): Show styles in pager. Defaults to False. + links (bool, optional): Show links in pager. Defaults to False. + + Example: + >>> from rich.console import Console + >>> from rich.__main__ import make_test_card + >>> console = Console() + >>> with console.pager(): + console.print(make_test_card()) + + Returns: + PagerContext: A context manager. + """ + return PagerContext(self, pager=pager, styles=styles, links=links) + + def line(self, count: int = 1) -> None: + """Write new line(s). + + Args: + count (int, optional): Number of new lines. Defaults to 1. + """ + + assert count >= 0, "count must be >= 0" + self.print(NewLine(count)) + + def clear(self, home: bool = True) -> None: + """Clear the screen. + + Args: + home (bool, optional): Also move the cursor to 'home' position. Defaults to True. + """ + if home: + self.control(Control.clear(), Control.home()) + else: + self.control(Control.clear()) + + def status( + self, + status: RenderableType, + *, + spinner: str = "dots", + spinner_style: StyleType = "status.spinner", + speed: float = 1.0, + refresh_per_second: float = 12.5, + ) -> "Status": + """Display a status and spinner. + + Args: + status (RenderableType): A status renderable (str or Text typically). + spinner (str, optional): Name of spinner animation (see python -m rich.spinner). Defaults to "dots". + spinner_style (StyleType, optional): Style of spinner. Defaults to "status.spinner". + speed (float, optional): Speed factor for spinner animation. Defaults to 1.0. + refresh_per_second (float, optional): Number of refreshes per second. Defaults to 12.5. + + Returns: + Status: A Status object that may be used as a context manager. + """ + from .status import Status + + status_renderable = Status( + status, + console=self, + spinner=spinner, + spinner_style=spinner_style, + speed=speed, + refresh_per_second=refresh_per_second, + ) + return status_renderable + + def show_cursor(self, show: bool = True) -> bool: + """Show or hide the cursor. + + Args: + show (bool, optional): Set visibility of the cursor. + """ + if self.is_terminal: + self.control(Control.show_cursor(show)) + return True + return False + + def set_alt_screen(self, enable: bool = True) -> bool: + """Enables alternative screen mode. + + Note, if you enable this mode, you should ensure that is disabled before + the application exits. See :meth:`~rich.Console.screen` for a context manager + that handles this for you. + + Args: + enable (bool, optional): Enable (True) or disable (False) alternate screen. Defaults to True. + + Returns: + bool: True if the control codes were written. + + """ + changed = False + if self.is_terminal and not self.legacy_windows: + self.control(Control.alt_screen(enable)) + changed = True + self._is_alt_screen = enable + return changed + + @property + def is_alt_screen(self) -> bool: + """Check if the alt screen was enabled. + + Returns: + bool: True if the alt screen was enabled, otherwise False. + """ + return self._is_alt_screen + + def set_window_title(self, title: str) -> bool: + """Set the title of the console terminal window. + + Warning: There is no means within Rich of "resetting" the window title to its + previous value, meaning the title you set will persist even after your application + exits. + + ``fish`` shell resets the window title before and after each command by default, + negating this issue. Windows Terminal and command prompt will also reset the title for you. + Most other shells and terminals, however, do not do this. + + Some terminals may require configuration changes before you can set the title. + Some terminals may not support setting the title at all. + + Other software (including the terminal itself, the shell, custom prompts, plugins, etc.) + may also set the terminal window title. This could result in whatever value you write + using this method being overwritten. + + Args: + title (str): The new title of the terminal window. + + Returns: + bool: True if the control code to change the terminal title was + written, otherwise False. Note that a return value of True + does not guarantee that the window title has actually changed, + since the feature may be unsupported/disabled in some terminals. + """ + if self.is_terminal: + self.control(Control.title(title)) + return True + return False + + def screen( + self, hide_cursor: bool = True, style: Optional[StyleType] = None + ) -> "ScreenContext": + """Context manager to enable and disable 'alternative screen' mode. + + Args: + hide_cursor (bool, optional): Also hide the cursor. Defaults to False. + style (Style, optional): Optional style for screen. Defaults to None. + + Returns: + ~ScreenContext: Context which enables alternate screen on enter, and disables it on exit. + """ + return ScreenContext(self, hide_cursor=hide_cursor, style=style or "") + + def measure( + self, renderable: RenderableType, *, options: Optional[ConsoleOptions] = None + ) -> Measurement: + """Measure a renderable. Returns a :class:`~rich.measure.Measurement` object which contains + information regarding the number of characters required to print the renderable. + + Args: + renderable (RenderableType): Any renderable or string. + options (Optional[ConsoleOptions], optional): Options to use when measuring, or None + to use default options. Defaults to None. + + Returns: + Measurement: A measurement of the renderable. + """ + measurement = Measurement.get(self, options or self.options, renderable) + return measurement + + def render( + self, renderable: RenderableType, options: Optional[ConsoleOptions] = None + ) -> Iterable[Segment]: + """Render an object in to an iterable of `Segment` instances. + + This method contains the logic for rendering objects with the console protocol. + You are unlikely to need to use it directly, unless you are extending the library. + + Args: + renderable (RenderableType): An object supporting the console protocol, or + an object that may be converted to a string. + options (ConsoleOptions, optional): An options object, or None to use self.options. Defaults to None. + + Returns: + Iterable[Segment]: An iterable of segments that may be rendered. + """ + + _options = options or self.options + if _options.max_width < 1: + # No space to render anything. This prevents potential recursion errors. + return + render_iterable: RenderResult + + renderable = rich_cast(renderable) + if hasattr(renderable, "__rich_console__") and not isclass(renderable): + render_iterable = renderable.__rich_console__(self, _options) # type: ignore[union-attr] + elif isinstance(renderable, str): + text_renderable = self.render_str( + renderable, highlight=_options.highlight, markup=_options.markup + ) + render_iterable = text_renderable.__rich_console__(self, _options) + else: + raise errors.NotRenderableError( + f"Unable to render {renderable!r}; " + "A str, Segment or object with __rich_console__ method is required" + ) + + try: + iter_render = iter(render_iterable) + except TypeError: + raise errors.NotRenderableError( + f"object {render_iterable!r} is not renderable" + ) + _Segment = Segment + _options = _options.reset_height() + for render_output in iter_render: + if isinstance(render_output, _Segment): + yield render_output + else: + yield from self.render(render_output, _options) + + def render_lines( + self, + renderable: RenderableType, + options: Optional[ConsoleOptions] = None, + *, + style: Optional[Style] = None, + pad: bool = True, + new_lines: bool = False, + ) -> List[List[Segment]]: + """Render objects in to a list of lines. + + The output of render_lines is useful when further formatting of rendered console text + is required, such as the Panel class which draws a border around any renderable object. + + Args: + renderable (RenderableType): Any object renderable in the console. + options (Optional[ConsoleOptions], optional): Console options, or None to use self.options. Default to ``None``. + style (Style, optional): Optional style to apply to renderables. Defaults to ``None``. + pad (bool, optional): Pad lines shorter than render width. Defaults to ``True``. + new_lines (bool, optional): Include "\n" characters at end of lines. + + Returns: + List[List[Segment]]: A list of lines, where a line is a list of Segment objects. + """ + with self._lock: + render_options = options or self.options + _rendered = self.render(renderable, render_options) + if style: + _rendered = Segment.apply_style(_rendered, style) + + render_height = render_options.height + if render_height is not None: + render_height = max(0, render_height) + + lines = list( + islice( + Segment.split_and_crop_lines( + _rendered, + render_options.max_width, + include_new_lines=new_lines, + pad=pad, + style=style, + ), + None, + render_height, + ) + ) + if render_options.height is not None: + extra_lines = render_options.height - len(lines) + if extra_lines > 0: + pad_line = [ + [Segment(" " * render_options.max_width, style), Segment("\n")] + if new_lines + else [Segment(" " * render_options.max_width, style)] + ] + lines.extend(pad_line * extra_lines) + + return lines + + def render_str( + self, + text: str, + *, + style: Union[str, Style] = "", + justify: Optional[JustifyMethod] = None, + overflow: Optional[OverflowMethod] = None, + emoji: Optional[bool] = None, + markup: Optional[bool] = None, + highlight: Optional[bool] = None, + highlighter: Optional[HighlighterType] = None, + ) -> "Text": + """Convert a string to a Text instance. This is called automatically if + you print or log a string. + + Args: + text (str): Text to render. + style (Union[str, Style], optional): Style to apply to rendered text. + justify (str, optional): Justify method: "default", "left", "center", "full", or "right". Defaults to ``None``. + overflow (str, optional): Overflow method: "crop", "fold", or "ellipsis". Defaults to ``None``. + emoji (Optional[bool], optional): Enable emoji, or ``None`` to use Console default. + markup (Optional[bool], optional): Enable markup, or ``None`` to use Console default. + highlight (Optional[bool], optional): Enable highlighting, or ``None`` to use Console default. + highlighter (HighlighterType, optional): Optional highlighter to apply. + Returns: + ConsoleRenderable: Renderable object. + + """ + emoji_enabled = emoji or (emoji is None and self._emoji) + markup_enabled = markup or (markup is None and self._markup) + highlight_enabled = highlight or (highlight is None and self._highlight) + + if markup_enabled: + rich_text = render_markup( + text, + style=style, + emoji=emoji_enabled, + emoji_variant=self._emoji_variant, + ) + rich_text.justify = justify + rich_text.overflow = overflow + else: + rich_text = Text( + _emoji_replace(text, default_variant=self._emoji_variant) + if emoji_enabled + else text, + justify=justify, + overflow=overflow, + style=style, + ) + + _highlighter = (highlighter or self.highlighter) if highlight_enabled else None + if _highlighter is not None: + highlight_text = _highlighter(str(rich_text)) + highlight_text.copy_styles(rich_text) + return highlight_text + + return rich_text + + def get_style( + self, name: Union[str, Style], *, default: Optional[Union[Style, str]] = None + ) -> Style: + """Get a Style instance by its theme name or parse a definition. + + Args: + name (str): The name of a style or a style definition. + + Returns: + Style: A Style object. + + Raises: + MissingStyle: If no style could be parsed from name. + + """ + if isinstance(name, Style): + return name + + try: + style = self._theme_stack.get(name) + if style is None: + style = Style.parse(name) + return style.copy() if style.link else style + except errors.StyleSyntaxError as error: + if default is not None: + return self.get_style(default) + raise errors.MissingStyle( + f"Failed to get style {name!r}; {error}" + ) from None + + def _collect_renderables( + self, + objects: Iterable[Any], + sep: str, + end: str, + *, + justify: Optional[JustifyMethod] = None, + emoji: Optional[bool] = None, + markup: Optional[bool] = None, + highlight: Optional[bool] = None, + ) -> List[ConsoleRenderable]: + """Combine a number of renderables and text into one renderable. + + Args: + objects (Iterable[Any]): Anything that Rich can render. + sep (str): String to write between print data. + end (str): String to write at end of print data. + justify (str, optional): One of "left", "right", "center", or "full". Defaults to ``None``. + emoji (Optional[bool], optional): Enable emoji code, or ``None`` to use console default. + markup (Optional[bool], optional): Enable markup, or ``None`` to use console default. + highlight (Optional[bool], optional): Enable automatic highlighting, or ``None`` to use console default. + + Returns: + List[ConsoleRenderable]: A list of things to render. + """ + renderables: List[ConsoleRenderable] = [] + _append = renderables.append + text: List[Text] = [] + append_text = text.append + + append = _append + if justify in ("left", "center", "right"): + + def align_append(renderable: RenderableType) -> None: + _append(Align(renderable, cast(AlignMethod, justify))) + + append = align_append + + _highlighter: HighlighterType = _null_highlighter + if highlight or (highlight is None and self._highlight): + _highlighter = self.highlighter + + def check_text() -> None: + if text: + sep_text = Text(sep, justify=justify, end=end) + append(sep_text.join(text)) + text.clear() + + for renderable in objects: + renderable = rich_cast(renderable) + if isinstance(renderable, str): + append_text( + self.render_str( + renderable, emoji=emoji, markup=markup, highlighter=_highlighter + ) + ) + elif isinstance(renderable, Text): + append_text(renderable) + elif isinstance(renderable, ConsoleRenderable): + check_text() + append(renderable) + elif is_expandable(renderable): + check_text() + append(Pretty(renderable, highlighter=_highlighter)) + else: + append_text(_highlighter(str(renderable))) + + check_text() + + if self.style is not None: + style = self.get_style(self.style) + renderables = [Styled(renderable, style) for renderable in renderables] + + return renderables + + def rule( + self, + title: TextType = "", + *, + characters: str = "─", + style: Union[str, Style] = "rule.line", + align: AlignMethod = "center", + ) -> None: + """Draw a line with optional centered title. + + Args: + title (str, optional): Text to render over the rule. Defaults to "". + characters (str, optional): Character(s) to form the line. Defaults to "─". + style (str, optional): Style of line. Defaults to "rule.line". + align (str, optional): How to align the title, one of "left", "center", or "right". Defaults to "center". + """ + from .rule import Rule + + rule = Rule(title=title, characters=characters, style=style, align=align) + self.print(rule) + + def control(self, *control: Control) -> None: + """Insert non-printing control codes. + + Args: + control_codes (str): Control codes, such as those that may move the cursor. + """ + if not self.is_dumb_terminal: + with self: + self._buffer.extend(_control.segment for _control in control) + + def out( + self, + *objects: Any, + sep: str = " ", + end: str = "\n", + style: Optional[Union[str, Style]] = None, + highlight: Optional[bool] = None, + ) -> None: + """Output to the terminal. This is a low-level way of writing to the terminal which unlike + :meth:`~rich.console.Console.print` won't pretty print, wrap text, or apply markup, but will + optionally apply highlighting and a basic style. + + Args: + sep (str, optional): String to write between print data. Defaults to " ". + end (str, optional): String to write at end of print data. Defaults to "\\\\n". + style (Union[str, Style], optional): A style to apply to output. Defaults to None. + highlight (Optional[bool], optional): Enable automatic highlighting, or ``None`` to use + console default. Defaults to ``None``. + """ + raw_output: str = sep.join(str(_object) for _object in objects) + self.print( + raw_output, + style=style, + highlight=highlight, + emoji=False, + markup=False, + no_wrap=True, + overflow="ignore", + crop=False, + end=end, + ) + + def print( + self, + *objects: Any, + sep: str = " ", + end: str = "\n", + style: Optional[Union[str, Style]] = None, + justify: Optional[JustifyMethod] = None, + overflow: Optional[OverflowMethod] = None, + no_wrap: Optional[bool] = None, + emoji: Optional[bool] = None, + markup: Optional[bool] = None, + highlight: Optional[bool] = None, + width: Optional[int] = None, + height: Optional[int] = None, + crop: bool = True, + soft_wrap: Optional[bool] = None, + new_line_start: bool = False, + ) -> None: + """Print to the console. + + Args: + objects (positional args): Objects to log to the terminal. + sep (str, optional): String to write between print data. Defaults to " ". + end (str, optional): String to write at end of print data. Defaults to "\\\\n". + style (Union[str, Style], optional): A style to apply to output. Defaults to None. + justify (str, optional): Justify method: "default", "left", "right", "center", or "full". Defaults to ``None``. + overflow (str, optional): Overflow method: "ignore", "crop", "fold", or "ellipsis". Defaults to None. + no_wrap (Optional[bool], optional): Disable word wrapping. Defaults to None. + emoji (Optional[bool], optional): Enable emoji code, or ``None`` to use console default. Defaults to ``None``. + markup (Optional[bool], optional): Enable markup, or ``None`` to use console default. Defaults to ``None``. + highlight (Optional[bool], optional): Enable automatic highlighting, or ``None`` to use console default. Defaults to ``None``. + width (Optional[int], optional): Width of output, or ``None`` to auto-detect. Defaults to ``None``. + crop (Optional[bool], optional): Crop output to width of terminal. Defaults to True. + soft_wrap (bool, optional): Enable soft wrap mode which disables word wrapping and cropping of text or ``None`` for + Console default. Defaults to ``None``. + new_line_start (bool, False): Insert a new line at the start if the output contains more than one line. Defaults to ``False``. + """ + if not objects: + objects = (NewLine(),) + + if soft_wrap is None: + soft_wrap = self.soft_wrap + if soft_wrap: + if no_wrap is None: + no_wrap = True + if overflow is None: + overflow = "ignore" + crop = False + render_hooks = self._render_hooks[:] + with self: + renderables = self._collect_renderables( + objects, + sep, + end, + justify=justify, + emoji=emoji, + markup=markup, + highlight=highlight, + ) + for hook in render_hooks: + renderables = hook.process_renderables(renderables) + render_options = self.options.update( + justify=justify, + overflow=overflow, + width=min(width, self.width) if width is not None else NO_CHANGE, + height=height, + no_wrap=no_wrap, + markup=markup, + highlight=highlight, + ) + + new_segments: List[Segment] = [] + extend = new_segments.extend + render = self.render + if style is None: + for renderable in renderables: + extend(render(renderable, render_options)) + else: + for renderable in renderables: + extend( + Segment.apply_style( + render(renderable, render_options), self.get_style(style) + ) + ) + if new_line_start: + if ( + len("".join(segment.text for segment in new_segments).splitlines()) + > 1 + ): + new_segments.insert(0, Segment.line()) + if crop: + buffer_extend = self._buffer.extend + for line in Segment.split_and_crop_lines( + new_segments, self.width, pad=False + ): + buffer_extend(line) + else: + self._buffer.extend(new_segments) + + def print_json( + self, + json: Optional[str] = None, + *, + data: Any = None, + indent: Union[None, int, str] = 2, + highlight: bool = True, + skip_keys: bool = False, + ensure_ascii: bool = False, + check_circular: bool = True, + allow_nan: bool = True, + default: Optional[Callable[[Any], Any]] = None, + sort_keys: bool = False, + ) -> None: + """Pretty prints JSON. Output will be valid JSON. + + Args: + json (Optional[str]): A string containing JSON. + data (Any): If json is not supplied, then encode this data. + indent (Union[None, int, str], optional): Number of spaces to indent. Defaults to 2. + highlight (bool, optional): Enable highlighting of output: Defaults to True. + skip_keys (bool, optional): Skip keys not of a basic type. Defaults to False. + ensure_ascii (bool, optional): Escape all non-ascii characters. Defaults to False. + check_circular (bool, optional): Check for circular references. Defaults to True. + allow_nan (bool, optional): Allow NaN and Infinity values. Defaults to True. + default (Callable, optional): A callable that converts values that can not be encoded + in to something that can be JSON encoded. Defaults to None. + sort_keys (bool, optional): Sort dictionary keys. Defaults to False. + """ + from pip._vendor.rich.json import JSON + + if json is None: + json_renderable = JSON.from_data( + data, + indent=indent, + highlight=highlight, + skip_keys=skip_keys, + ensure_ascii=ensure_ascii, + check_circular=check_circular, + allow_nan=allow_nan, + default=default, + sort_keys=sort_keys, + ) + else: + if not isinstance(json, str): + raise TypeError( + f"json must be str. Did you mean print_json(data={json!r}) ?" + ) + json_renderable = JSON( + json, + indent=indent, + highlight=highlight, + skip_keys=skip_keys, + ensure_ascii=ensure_ascii, + check_circular=check_circular, + allow_nan=allow_nan, + default=default, + sort_keys=sort_keys, + ) + self.print(json_renderable, soft_wrap=True) + + def update_screen( + self, + renderable: RenderableType, + *, + region: Optional[Region] = None, + options: Optional[ConsoleOptions] = None, + ) -> None: + """Update the screen at a given offset. + + Args: + renderable (RenderableType): A Rich renderable. + region (Region, optional): Region of screen to update, or None for entire screen. Defaults to None. + x (int, optional): x offset. Defaults to 0. + y (int, optional): y offset. Defaults to 0. + + Raises: + errors.NoAltScreen: If the Console isn't in alt screen mode. + + """ + if not self.is_alt_screen: + raise errors.NoAltScreen("Alt screen must be enabled to call update_screen") + render_options = options or self.options + if region is None: + x = y = 0 + render_options = render_options.update_dimensions( + render_options.max_width, render_options.height or self.height + ) + else: + x, y, width, height = region + render_options = render_options.update_dimensions(width, height) + + lines = self.render_lines(renderable, options=render_options) + self.update_screen_lines(lines, x, y) + + def update_screen_lines( + self, lines: List[List[Segment]], x: int = 0, y: int = 0 + ) -> None: + """Update lines of the screen at a given offset. + + Args: + lines (List[List[Segment]]): Rendered lines (as produced by :meth:`~rich.Console.render_lines`). + x (int, optional): x offset (column no). Defaults to 0. + y (int, optional): y offset (column no). Defaults to 0. + + Raises: + errors.NoAltScreen: If the Console isn't in alt screen mode. + """ + if not self.is_alt_screen: + raise errors.NoAltScreen("Alt screen must be enabled to call update_screen") + screen_update = ScreenUpdate(lines, x, y) + segments = self.render(screen_update) + self._buffer.extend(segments) + self._check_buffer() + + def print_exception( + self, + *, + width: Optional[int] = 100, + extra_lines: int = 3, + theme: Optional[str] = None, + word_wrap: bool = False, + show_locals: bool = False, + suppress: Iterable[Union[str, ModuleType]] = (), + max_frames: int = 100, + ) -> None: + """Prints a rich render of the last exception and traceback. + + Args: + width (Optional[int], optional): Number of characters used to render code. Defaults to 100. + extra_lines (int, optional): Additional lines of code to render. Defaults to 3. + theme (str, optional): Override pygments theme used in traceback + word_wrap (bool, optional): Enable word wrapping of long lines. Defaults to False. + show_locals (bool, optional): Enable display of local variables. Defaults to False. + suppress (Iterable[Union[str, ModuleType]]): Optional sequence of modules or paths to exclude from traceback. + max_frames (int): Maximum number of frames to show in a traceback, 0 for no maximum. Defaults to 100. + """ + from .traceback import Traceback + + traceback = Traceback( + width=width, + extra_lines=extra_lines, + theme=theme, + word_wrap=word_wrap, + show_locals=show_locals, + suppress=suppress, + max_frames=max_frames, + ) + self.print(traceback) + + @staticmethod + def _caller_frame_info( + offset: int, + currentframe: Callable[[], Optional[FrameType]] = inspect.currentframe, + ) -> Tuple[str, int, Dict[str, Any]]: + """Get caller frame information. + + Args: + offset (int): the caller offset within the current frame stack. + currentframe (Callable[[], Optional[FrameType]], optional): the callable to use to + retrieve the current frame. Defaults to ``inspect.currentframe``. + + Returns: + Tuple[str, int, Dict[str, Any]]: A tuple containing the filename, the line number and + the dictionary of local variables associated with the caller frame. + + Raises: + RuntimeError: If the stack offset is invalid. + """ + # Ignore the frame of this local helper + offset += 1 + + frame = currentframe() + if frame is not None: + # Use the faster currentframe where implemented + while offset and frame is not None: + frame = frame.f_back + offset -= 1 + assert frame is not None + return frame.f_code.co_filename, frame.f_lineno, frame.f_locals + else: + # Fallback to the slower stack + frame_info = inspect.stack()[offset] + return frame_info.filename, frame_info.lineno, frame_info.frame.f_locals + + def log( + self, + *objects: Any, + sep: str = " ", + end: str = "\n", + style: Optional[Union[str, Style]] = None, + justify: Optional[JustifyMethod] = None, + emoji: Optional[bool] = None, + markup: Optional[bool] = None, + highlight: Optional[bool] = None, + log_locals: bool = False, + _stack_offset: int = 1, + ) -> None: + """Log rich content to the terminal. + + Args: + objects (positional args): Objects to log to the terminal. + sep (str, optional): String to write between print data. Defaults to " ". + end (str, optional): String to write at end of print data. Defaults to "\\\\n". + style (Union[str, Style], optional): A style to apply to output. Defaults to None. + justify (str, optional): One of "left", "right", "center", or "full". Defaults to ``None``. + overflow (str, optional): Overflow method: "crop", "fold", or "ellipsis". Defaults to None. + emoji (Optional[bool], optional): Enable emoji code, or ``None`` to use console default. Defaults to None. + markup (Optional[bool], optional): Enable markup, or ``None`` to use console default. Defaults to None. + highlight (Optional[bool], optional): Enable automatic highlighting, or ``None`` to use console default. Defaults to None. + log_locals (bool, optional): Boolean to enable logging of locals where ``log()`` + was called. Defaults to False. + _stack_offset (int, optional): Offset of caller from end of call stack. Defaults to 1. + """ + if not objects: + objects = (NewLine(),) + + render_hooks = self._render_hooks[:] + + with self: + renderables = self._collect_renderables( + objects, + sep, + end, + justify=justify, + emoji=emoji, + markup=markup, + highlight=highlight, + ) + if style is not None: + renderables = [Styled(renderable, style) for renderable in renderables] + + filename, line_no, locals = self._caller_frame_info(_stack_offset) + link_path = None if filename.startswith("<") else os.path.abspath(filename) + path = filename.rpartition(os.sep)[-1] + if log_locals: + locals_map = { + key: value + for key, value in locals.items() + if not key.startswith("__") + } + renderables.append(render_scope(locals_map, title="[i]locals")) + + renderables = [ + self._log_render( + self, + renderables, + log_time=self.get_datetime(), + path=path, + line_no=line_no, + link_path=link_path, + ) + ] + for hook in render_hooks: + renderables = hook.process_renderables(renderables) + new_segments: List[Segment] = [] + extend = new_segments.extend + render = self.render + render_options = self.options + for renderable in renderables: + extend(render(renderable, render_options)) + buffer_extend = self._buffer.extend + for line in Segment.split_and_crop_lines( + new_segments, self.width, pad=False + ): + buffer_extend(line) + + def _check_buffer(self) -> None: + """Check if the buffer may be rendered. Render it if it can (e.g. Console.quiet is False) + Rendering is supported on Windows, Unix and Jupyter environments. For + legacy Windows consoles, the win32 API is called directly. + This method will also record what it renders if recording is enabled via Console.record. + """ + if self.quiet: + del self._buffer[:] + return + with self._lock: + if self.record: + with self._record_buffer_lock: + self._record_buffer.extend(self._buffer[:]) + + if self._buffer_index == 0: + if self.is_jupyter: # pragma: no cover + from .jupyter import display + + display(self._buffer, self._render_buffer(self._buffer[:])) + del self._buffer[:] + else: + if WINDOWS: + use_legacy_windows_render = False + if self.legacy_windows: + fileno = get_fileno(self.file) + if fileno is not None: + use_legacy_windows_render = ( + fileno in _STD_STREAMS_OUTPUT + ) + + if use_legacy_windows_render: + from pip._vendor.rich._win32_console import LegacyWindowsTerm + from pip._vendor.rich._windows_renderer import legacy_windows_render + + buffer = self._buffer[:] + if self.no_color and self._color_system: + buffer = list(Segment.remove_color(buffer)) + + legacy_windows_render(buffer, LegacyWindowsTerm(self.file)) + else: + # Either a non-std stream on legacy Windows, or modern Windows. + text = self._render_buffer(self._buffer[:]) + # https://bugs.python.org/issue37871 + # https://github.com/python/cpython/issues/82052 + # We need to avoid writing more than 32Kb in a single write, due to the above bug + write = self.file.write + # Worse case scenario, every character is 4 bytes of utf-8 + MAX_WRITE = 32 * 1024 // 4 + try: + if len(text) <= MAX_WRITE: + write(text) + else: + batch: List[str] = [] + batch_append = batch.append + size = 0 + for line in text.splitlines(True): + if size + len(line) > MAX_WRITE and batch: + write("".join(batch)) + batch.clear() + size = 0 + batch_append(line) + size += len(line) + if batch: + write("".join(batch)) + batch.clear() + except UnicodeEncodeError as error: + error.reason = f"{error.reason}\n*** You may need to add PYTHONIOENCODING=utf-8 to your environment ***" + raise + else: + text = self._render_buffer(self._buffer[:]) + try: + self.file.write(text) + except UnicodeEncodeError as error: + error.reason = f"{error.reason}\n*** You may need to add PYTHONIOENCODING=utf-8 to your environment ***" + raise + + self.file.flush() + del self._buffer[:] + + def _render_buffer(self, buffer: Iterable[Segment]) -> str: + """Render buffered output, and clear buffer.""" + output: List[str] = [] + append = output.append + color_system = self._color_system + legacy_windows = self.legacy_windows + not_terminal = not self.is_terminal + if self.no_color and color_system: + buffer = Segment.remove_color(buffer) + for text, style, control in buffer: + if style: + append( + style.render( + text, + color_system=color_system, + legacy_windows=legacy_windows, + ) + ) + elif not (not_terminal and control): + append(text) + + rendered = "".join(output) + return rendered + + def input( + self, + prompt: TextType = "", + *, + markup: bool = True, + emoji: bool = True, + password: bool = False, + stream: Optional[TextIO] = None, + ) -> str: + """Displays a prompt and waits for input from the user. The prompt may contain color / style. + + It works in the same way as Python's builtin :func:`input` function and provides elaborate line editing and history features if Python's builtin :mod:`readline` module is previously loaded. + + Args: + prompt (Union[str, Text]): Text to render in the prompt. + markup (bool, optional): Enable console markup (requires a str prompt). Defaults to True. + emoji (bool, optional): Enable emoji (requires a str prompt). Defaults to True. + password: (bool, optional): Hide typed text. Defaults to False. + stream: (TextIO, optional): Optional file to read input from (rather than stdin). Defaults to None. + + Returns: + str: Text read from stdin. + """ + if prompt: + self.print(prompt, markup=markup, emoji=emoji, end="") + if password: + result = getpass("", stream=stream) + else: + if stream: + result = stream.readline() + else: + result = input() + return result + + def export_text(self, *, clear: bool = True, styles: bool = False) -> str: + """Generate text from console contents (requires record=True argument in constructor). + + Args: + clear (bool, optional): Clear record buffer after exporting. Defaults to ``True``. + styles (bool, optional): If ``True``, ansi escape codes will be included. ``False`` for plain text. + Defaults to ``False``. + + Returns: + str: String containing console contents. + + """ + assert ( + self.record + ), "To export console contents set record=True in the constructor or instance" + + with self._record_buffer_lock: + if styles: + text = "".join( + (style.render(text) if style else text) + for text, style, _ in self._record_buffer + ) + else: + text = "".join( + segment.text + for segment in self._record_buffer + if not segment.control + ) + if clear: + del self._record_buffer[:] + return text + + def save_text(self, path: str, *, clear: bool = True, styles: bool = False) -> None: + """Generate text from console and save to a given location (requires record=True argument in constructor). + + Args: + path (str): Path to write text files. + clear (bool, optional): Clear record buffer after exporting. Defaults to ``True``. + styles (bool, optional): If ``True``, ansi style codes will be included. ``False`` for plain text. + Defaults to ``False``. + + """ + text = self.export_text(clear=clear, styles=styles) + with open(path, "wt", encoding="utf-8") as write_file: + write_file.write(text) + + def export_html( + self, + *, + theme: Optional[TerminalTheme] = None, + clear: bool = True, + code_format: Optional[str] = None, + inline_styles: bool = False, + ) -> str: + """Generate HTML from console contents (requires record=True argument in constructor). + + Args: + theme (TerminalTheme, optional): TerminalTheme object containing console colors. + clear (bool, optional): Clear record buffer after exporting. Defaults to ``True``. + code_format (str, optional): Format string to render HTML. In addition to '{foreground}', + '{background}', and '{code}', should contain '{stylesheet}' if inline_styles is ``False``. + inline_styles (bool, optional): If ``True`` styles will be inlined in to spans, which makes files + larger but easier to cut and paste markup. If ``False``, styles will be embedded in a style tag. + Defaults to False. + + Returns: + str: String containing console contents as HTML. + """ + assert ( + self.record + ), "To export console contents set record=True in the constructor or instance" + fragments: List[str] = [] + append = fragments.append + _theme = theme or DEFAULT_TERMINAL_THEME + stylesheet = "" + + render_code_format = CONSOLE_HTML_FORMAT if code_format is None else code_format + + with self._record_buffer_lock: + if inline_styles: + for text, style, _ in Segment.filter_control( + Segment.simplify(self._record_buffer) + ): + text = escape(text) + if style: + rule = style.get_html_style(_theme) + if style.link: + text = f'
{text}' + text = f'{text}' if rule else text + append(text) + else: + styles: Dict[str, int] = {} + for text, style, _ in Segment.filter_control( + Segment.simplify(self._record_buffer) + ): + text = escape(text) + if style: + rule = style.get_html_style(_theme) + style_number = styles.setdefault(rule, len(styles) + 1) + if style.link: + text = f'{text}' + else: + text = f'{text}' + append(text) + stylesheet_rules: List[str] = [] + stylesheet_append = stylesheet_rules.append + for style_rule, style_number in styles.items(): + if style_rule: + stylesheet_append(f".r{style_number} {{{style_rule}}}") + stylesheet = "\n".join(stylesheet_rules) + + rendered_code = render_code_format.format( + code="".join(fragments), + stylesheet=stylesheet, + foreground=_theme.foreground_color.hex, + background=_theme.background_color.hex, + ) + if clear: + del self._record_buffer[:] + return rendered_code + + def save_html( + self, + path: str, + *, + theme: Optional[TerminalTheme] = None, + clear: bool = True, + code_format: str = CONSOLE_HTML_FORMAT, + inline_styles: bool = False, + ) -> None: + """Generate HTML from console contents and write to a file (requires record=True argument in constructor). + + Args: + path (str): Path to write html file. + theme (TerminalTheme, optional): TerminalTheme object containing console colors. + clear (bool, optional): Clear record buffer after exporting. Defaults to ``True``. + code_format (str, optional): Format string to render HTML. In addition to '{foreground}', + '{background}', and '{code}', should contain '{stylesheet}' if inline_styles is ``False``. + inline_styles (bool, optional): If ``True`` styles will be inlined in to spans, which makes files + larger but easier to cut and paste markup. If ``False``, styles will be embedded in a style tag. + Defaults to False. + + """ + html = self.export_html( + theme=theme, + clear=clear, + code_format=code_format, + inline_styles=inline_styles, + ) + with open(path, "wt", encoding="utf-8") as write_file: + write_file.write(html) + + def export_svg( + self, + *, + title: str = "Rich", + theme: Optional[TerminalTheme] = None, + clear: bool = True, + code_format: str = CONSOLE_SVG_FORMAT, + font_aspect_ratio: float = 0.61, + unique_id: Optional[str] = None, + ) -> str: + """ + Generate an SVG from the console contents (requires record=True in Console constructor). + + Args: + title (str, optional): The title of the tab in the output image + theme (TerminalTheme, optional): The ``TerminalTheme`` object to use to style the terminal + clear (bool, optional): Clear record buffer after exporting. Defaults to ``True`` + code_format (str, optional): Format string used to generate the SVG. Rich will inject a number of variables + into the string in order to form the final SVG output. The default template used and the variables + injected by Rich can be found by inspecting the ``console.CONSOLE_SVG_FORMAT`` variable. + font_aspect_ratio (float, optional): The width to height ratio of the font used in the ``code_format`` + string. Defaults to 0.61, which is the width to height ratio of Fira Code (the default font). + If you aren't specifying a different font inside ``code_format``, you probably don't need this. + unique_id (str, optional): unique id that is used as the prefix for various elements (CSS styles, node + ids). If not set, this defaults to a computed value based on the recorded content. + """ + + from pip._vendor.rich.cells import cell_len + + style_cache: Dict[Style, str] = {} + + def get_svg_style(style: Style) -> str: + """Convert a Style to CSS rules for SVG.""" + if style in style_cache: + return style_cache[style] + css_rules = [] + color = ( + _theme.foreground_color + if (style.color is None or style.color.is_default) + else style.color.get_truecolor(_theme) + ) + bgcolor = ( + _theme.background_color + if (style.bgcolor is None or style.bgcolor.is_default) + else style.bgcolor.get_truecolor(_theme) + ) + if style.reverse: + color, bgcolor = bgcolor, color + if style.dim: + color = blend_rgb(color, bgcolor, 0.4) + css_rules.append(f"fill: {color.hex}") + if style.bold: + css_rules.append("font-weight: bold") + if style.italic: + css_rules.append("font-style: italic;") + if style.underline: + css_rules.append("text-decoration: underline;") + if style.strike: + css_rules.append("text-decoration: line-through;") + + css = ";".join(css_rules) + style_cache[style] = css + return css + + _theme = theme or SVG_EXPORT_THEME + + width = self.width + char_height = 20 + char_width = char_height * font_aspect_ratio + line_height = char_height * 1.22 + + margin_top = 1 + margin_right = 1 + margin_bottom = 1 + margin_left = 1 + + padding_top = 40 + padding_right = 8 + padding_bottom = 8 + padding_left = 8 + + padding_width = padding_left + padding_right + padding_height = padding_top + padding_bottom + margin_width = margin_left + margin_right + margin_height = margin_top + margin_bottom + + text_backgrounds: List[str] = [] + text_group: List[str] = [] + classes: Dict[str, int] = {} + style_no = 1 + + def escape_text(text: str) -> str: + """HTML escape text and replace spaces with nbsp.""" + return escape(text).replace(" ", " ") + + def make_tag( + name: str, content: Optional[str] = None, **attribs: object + ) -> str: + """Make a tag from name, content, and attributes.""" + + def stringify(value: object) -> str: + if isinstance(value, (float)): + return format(value, "g") + return str(value) + + tag_attribs = " ".join( + f'{k.lstrip("_").replace("_", "-")}="{stringify(v)}"' + for k, v in attribs.items() + ) + return ( + f"<{name} {tag_attribs}>{content}" + if content + else f"<{name} {tag_attribs}/>" + ) + + with self._record_buffer_lock: + segments = list(Segment.filter_control(self._record_buffer)) + if clear: + self._record_buffer.clear() + + if unique_id is None: + unique_id = "terminal-" + str( + zlib.adler32( + ("".join(repr(segment) for segment in segments)).encode( + "utf-8", + "ignore", + ) + + title.encode("utf-8", "ignore") + ) + ) + y = 0 + for y, line in enumerate(Segment.split_and_crop_lines(segments, length=width)): + x = 0 + for text, style, _control in line: + style = style or Style() + rules = get_svg_style(style) + if rules not in classes: + classes[rules] = style_no + style_no += 1 + class_name = f"r{classes[rules]}" + + if style.reverse: + has_background = True + background = ( + _theme.foreground_color.hex + if style.color is None + else style.color.get_truecolor(_theme).hex + ) + else: + bgcolor = style.bgcolor + has_background = bgcolor is not None and not bgcolor.is_default + background = ( + _theme.background_color.hex + if style.bgcolor is None + else style.bgcolor.get_truecolor(_theme).hex + ) + + text_length = cell_len(text) + if has_background: + text_backgrounds.append( + make_tag( + "rect", + fill=background, + x=x * char_width, + y=y * line_height + 1.5, + width=char_width * text_length, + height=line_height + 0.25, + shape_rendering="crispEdges", + ) + ) + + if text != " " * len(text): + text_group.append( + make_tag( + "text", + escape_text(text), + _class=f"{unique_id}-{class_name}", + x=x * char_width, + y=y * line_height + char_height, + textLength=char_width * len(text), + clip_path=f"url(#{unique_id}-line-{y})", + ) + ) + x += cell_len(text) + + line_offsets = [line_no * line_height + 1.5 for line_no in range(y)] + lines = "\n".join( + f""" + {make_tag("rect", x=0, y=offset, width=char_width * width, height=line_height + 0.25)} + """ + for line_no, offset in enumerate(line_offsets) + ) + + styles = "\n".join( + f".{unique_id}-r{rule_no} {{ {css} }}" for css, rule_no in classes.items() + ) + backgrounds = "".join(text_backgrounds) + matrix = "".join(text_group) + + terminal_width = ceil(width * char_width + padding_width) + terminal_height = (y + 1) * line_height + padding_height + chrome = make_tag( + "rect", + fill=_theme.background_color.hex, + stroke="rgba(255,255,255,0.35)", + stroke_width="1", + x=margin_left, + y=margin_top, + width=terminal_width, + height=terminal_height, + rx=8, + ) + + title_color = _theme.foreground_color.hex + if title: + chrome += make_tag( + "text", + escape_text(title), + _class=f"{unique_id}-title", + fill=title_color, + text_anchor="middle", + x=terminal_width // 2, + y=margin_top + char_height + 6, + ) + chrome += f""" + + + + + + """ + + svg = code_format.format( + unique_id=unique_id, + char_width=char_width, + char_height=char_height, + line_height=line_height, + terminal_width=char_width * width - 1, + terminal_height=(y + 1) * line_height - 1, + width=terminal_width + margin_width, + height=terminal_height + margin_height, + terminal_x=margin_left + padding_left, + terminal_y=margin_top + padding_top, + styles=styles, + chrome=chrome, + backgrounds=backgrounds, + matrix=matrix, + lines=lines, + ) + return svg + + def save_svg( + self, + path: str, + *, + title: str = "Rich", + theme: Optional[TerminalTheme] = None, + clear: bool = True, + code_format: str = CONSOLE_SVG_FORMAT, + font_aspect_ratio: float = 0.61, + unique_id: Optional[str] = None, + ) -> None: + """Generate an SVG file from the console contents (requires record=True in Console constructor). + + Args: + path (str): The path to write the SVG to. + title (str, optional): The title of the tab in the output image + theme (TerminalTheme, optional): The ``TerminalTheme`` object to use to style the terminal + clear (bool, optional): Clear record buffer after exporting. Defaults to ``True`` + code_format (str, optional): Format string used to generate the SVG. Rich will inject a number of variables + into the string in order to form the final SVG output. The default template used and the variables + injected by Rich can be found by inspecting the ``console.CONSOLE_SVG_FORMAT`` variable. + font_aspect_ratio (float, optional): The width to height ratio of the font used in the ``code_format`` + string. Defaults to 0.61, which is the width to height ratio of Fira Code (the default font). + If you aren't specifying a different font inside ``code_format``, you probably don't need this. + unique_id (str, optional): unique id that is used as the prefix for various elements (CSS styles, node + ids). If not set, this defaults to a computed value based on the recorded content. + """ + svg = self.export_svg( + title=title, + theme=theme, + clear=clear, + code_format=code_format, + font_aspect_ratio=font_aspect_ratio, + unique_id=unique_id, + ) + with open(path, "wt", encoding="utf-8") as write_file: + write_file.write(svg) + + +def _svg_hash(svg_main_code: str) -> str: + """Returns a unique hash for the given SVG main code. + + Args: + svg_main_code (str): The content we're going to inject in the SVG envelope. + + Returns: + str: a hash of the given content + """ + return str(zlib.adler32(svg_main_code.encode())) + + +if __name__ == "__main__": # pragma: no cover + console = Console(record=True) + + console.log( + "JSONRPC [i]request[/i]", + 5, + 1.3, + True, + False, + None, + { + "jsonrpc": "2.0", + "method": "subtract", + "params": {"minuend": 42, "subtrahend": 23}, + "id": 3, + }, + ) + + console.log("Hello, World!", "{'a': 1}", repr(console)) + + console.print( + { + "name": None, + "empty": [], + "quiz": { + "sport": { + "answered": True, + "q1": { + "question": "Which one is correct team name in NBA?", + "options": [ + "New York Bulls", + "Los Angeles Kings", + "Golden State Warriors", + "Huston Rocket", + ], + "answer": "Huston Rocket", + }, + }, + "maths": { + "answered": False, + "q1": { + "question": "5 + 7 = ?", + "options": [10, 11, 12, 13], + "answer": 12, + }, + "q2": { + "question": "12 - 8 = ?", + "options": [1, 2, 3, 4], + "answer": 4, + }, + }, + }, + } + ) diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/constrain.py b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/constrain.py new file mode 100644 index 0000000..65fdf56 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/constrain.py @@ -0,0 +1,37 @@ +from typing import Optional, TYPE_CHECKING + +from .jupyter import JupyterMixin +from .measure import Measurement + +if TYPE_CHECKING: + from .console import Console, ConsoleOptions, RenderableType, RenderResult + + +class Constrain(JupyterMixin): + """Constrain the width of a renderable to a given number of characters. + + Args: + renderable (RenderableType): A renderable object. + width (int, optional): The maximum width (in characters) to render. Defaults to 80. + """ + + def __init__(self, renderable: "RenderableType", width: Optional[int] = 80) -> None: + self.renderable = renderable + self.width = width + + def __rich_console__( + self, console: "Console", options: "ConsoleOptions" + ) -> "RenderResult": + if self.width is None: + yield self.renderable + else: + child_options = options.update_width(min(self.width, options.max_width)) + yield from console.render(self.renderable, child_options) + + def __rich_measure__( + self, console: "Console", options: "ConsoleOptions" + ) -> "Measurement": + if self.width is not None: + options = options.update_width(self.width) + measurement = Measurement.get(console, options, self.renderable) + return measurement diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/containers.py b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/containers.py new file mode 100644 index 0000000..e29cf36 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/containers.py @@ -0,0 +1,167 @@ +from itertools import zip_longest +from typing import ( + Iterator, + Iterable, + List, + Optional, + Union, + overload, + TypeVar, + TYPE_CHECKING, +) + +if TYPE_CHECKING: + from .console import ( + Console, + ConsoleOptions, + JustifyMethod, + OverflowMethod, + RenderResult, + RenderableType, + ) + from .text import Text + +from .cells import cell_len +from .measure import Measurement + +T = TypeVar("T") + + +class Renderables: + """A list subclass which renders its contents to the console.""" + + def __init__( + self, renderables: Optional[Iterable["RenderableType"]] = None + ) -> None: + self._renderables: List["RenderableType"] = ( + list(renderables) if renderables is not None else [] + ) + + def __rich_console__( + self, console: "Console", options: "ConsoleOptions" + ) -> "RenderResult": + """Console render method to insert line-breaks.""" + yield from self._renderables + + def __rich_measure__( + self, console: "Console", options: "ConsoleOptions" + ) -> "Measurement": + dimensions = [ + Measurement.get(console, options, renderable) + for renderable in self._renderables + ] + if not dimensions: + return Measurement(1, 1) + _min = max(dimension.minimum for dimension in dimensions) + _max = max(dimension.maximum for dimension in dimensions) + return Measurement(_min, _max) + + def append(self, renderable: "RenderableType") -> None: + self._renderables.append(renderable) + + def __iter__(self) -> Iterable["RenderableType"]: + return iter(self._renderables) + + +class Lines: + """A list subclass which can render to the console.""" + + def __init__(self, lines: Iterable["Text"] = ()) -> None: + self._lines: List["Text"] = list(lines) + + def __repr__(self) -> str: + return f"Lines({self._lines!r})" + + def __iter__(self) -> Iterator["Text"]: + return iter(self._lines) + + @overload + def __getitem__(self, index: int) -> "Text": + ... + + @overload + def __getitem__(self, index: slice) -> List["Text"]: + ... + + def __getitem__(self, index: Union[slice, int]) -> Union["Text", List["Text"]]: + return self._lines[index] + + def __setitem__(self, index: int, value: "Text") -> "Lines": + self._lines[index] = value + return self + + def __len__(self) -> int: + return self._lines.__len__() + + def __rich_console__( + self, console: "Console", options: "ConsoleOptions" + ) -> "RenderResult": + """Console render method to insert line-breaks.""" + yield from self._lines + + def append(self, line: "Text") -> None: + self._lines.append(line) + + def extend(self, lines: Iterable["Text"]) -> None: + self._lines.extend(lines) + + def pop(self, index: int = -1) -> "Text": + return self._lines.pop(index) + + def justify( + self, + console: "Console", + width: int, + justify: "JustifyMethod" = "left", + overflow: "OverflowMethod" = "fold", + ) -> None: + """Justify and overflow text to a given width. + + Args: + console (Console): Console instance. + width (int): Number of characters per line. + justify (str, optional): Default justify method for text: "left", "center", "full" or "right". Defaults to "left". + overflow (str, optional): Default overflow for text: "crop", "fold", or "ellipsis". Defaults to "fold". + + """ + from .text import Text + + if justify == "left": + for line in self._lines: + line.truncate(width, overflow=overflow, pad=True) + elif justify == "center": + for line in self._lines: + line.rstrip() + line.truncate(width, overflow=overflow) + line.pad_left((width - cell_len(line.plain)) // 2) + line.pad_right(width - cell_len(line.plain)) + elif justify == "right": + for line in self._lines: + line.rstrip() + line.truncate(width, overflow=overflow) + line.pad_left(width - cell_len(line.plain)) + elif justify == "full": + for line_index, line in enumerate(self._lines): + if line_index == len(self._lines) - 1: + break + words = line.split(" ") + words_size = sum(cell_len(word.plain) for word in words) + num_spaces = len(words) - 1 + spaces = [1 for _ in range(num_spaces)] + index = 0 + if spaces: + while words_size + num_spaces < width: + spaces[len(spaces) - index - 1] += 1 + num_spaces += 1 + index = (index + 1) % len(spaces) + tokens: List[Text] = [] + for index, (word, next_word) in enumerate( + zip_longest(words, words[1:]) + ): + tokens.append(word) + if index < len(spaces): + style = word.get_style_at_offset(console, -1) + next_style = next_word.get_style_at_offset(console, 0) + space_style = style if style == next_style else line.style + tokens.append(Text(" " * spaces[index], style=space_style)) + self[line_index] = Text("").join(tokens) diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/control.py b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/control.py new file mode 100644 index 0000000..88fcb92 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/control.py @@ -0,0 +1,225 @@ +import sys +import time +from typing import TYPE_CHECKING, Callable, Dict, Iterable, List, Union + +if sys.version_info >= (3, 8): + from typing import Final +else: + from pip._vendor.typing_extensions import Final # pragma: no cover + +from .segment import ControlCode, ControlType, Segment + +if TYPE_CHECKING: + from .console import Console, ConsoleOptions, RenderResult + +STRIP_CONTROL_CODES: Final = [ + 7, # Bell + 8, # Backspace + 11, # Vertical tab + 12, # Form feed + 13, # Carriage return +] +_CONTROL_STRIP_TRANSLATE: Final = { + _codepoint: None for _codepoint in STRIP_CONTROL_CODES +} + +CONTROL_ESCAPE: Final = { + 7: "\\a", + 8: "\\b", + 11: "\\v", + 12: "\\f", + 13: "\\r", +} + +CONTROL_CODES_FORMAT: Dict[int, Callable[..., str]] = { + ControlType.BELL: lambda: "\x07", + ControlType.CARRIAGE_RETURN: lambda: "\r", + ControlType.HOME: lambda: "\x1b[H", + ControlType.CLEAR: lambda: "\x1b[2J", + ControlType.ENABLE_ALT_SCREEN: lambda: "\x1b[?1049h", + ControlType.DISABLE_ALT_SCREEN: lambda: "\x1b[?1049l", + ControlType.SHOW_CURSOR: lambda: "\x1b[?25h", + ControlType.HIDE_CURSOR: lambda: "\x1b[?25l", + ControlType.CURSOR_UP: lambda param: f"\x1b[{param}A", + ControlType.CURSOR_DOWN: lambda param: f"\x1b[{param}B", + ControlType.CURSOR_FORWARD: lambda param: f"\x1b[{param}C", + ControlType.CURSOR_BACKWARD: lambda param: f"\x1b[{param}D", + ControlType.CURSOR_MOVE_TO_COLUMN: lambda param: f"\x1b[{param+1}G", + ControlType.ERASE_IN_LINE: lambda param: f"\x1b[{param}K", + ControlType.CURSOR_MOVE_TO: lambda x, y: f"\x1b[{y+1};{x+1}H", + ControlType.SET_WINDOW_TITLE: lambda title: f"\x1b]0;{title}\x07", +} + + +class Control: + """A renderable that inserts a control code (non printable but may move cursor). + + Args: + *codes (str): Positional arguments are either a :class:`~rich.segment.ControlType` enum or a + tuple of ControlType and an integer parameter + """ + + __slots__ = ["segment"] + + def __init__(self, *codes: Union[ControlType, ControlCode]) -> None: + control_codes: List[ControlCode] = [ + (code,) if isinstance(code, ControlType) else code for code in codes + ] + _format_map = CONTROL_CODES_FORMAT + rendered_codes = "".join( + _format_map[code](*parameters) for code, *parameters in control_codes + ) + self.segment = Segment(rendered_codes, None, control_codes) + + @classmethod + def bell(cls) -> "Control": + """Ring the 'bell'.""" + return cls(ControlType.BELL) + + @classmethod + def home(cls) -> "Control": + """Move cursor to 'home' position.""" + return cls(ControlType.HOME) + + @classmethod + def move(cls, x: int = 0, y: int = 0) -> "Control": + """Move cursor relative to current position. + + Args: + x (int): X offset. + y (int): Y offset. + + Returns: + ~Control: Control object. + + """ + + def get_codes() -> Iterable[ControlCode]: + control = ControlType + if x: + yield ( + control.CURSOR_FORWARD if x > 0 else control.CURSOR_BACKWARD, + abs(x), + ) + if y: + yield ( + control.CURSOR_DOWN if y > 0 else control.CURSOR_UP, + abs(y), + ) + + control = cls(*get_codes()) + return control + + @classmethod + def move_to_column(cls, x: int, y: int = 0) -> "Control": + """Move to the given column, optionally add offset to row. + + Returns: + x (int): absolute x (column) + y (int): optional y offset (row) + + Returns: + ~Control: Control object. + """ + + return ( + cls( + (ControlType.CURSOR_MOVE_TO_COLUMN, x), + ( + ControlType.CURSOR_DOWN if y > 0 else ControlType.CURSOR_UP, + abs(y), + ), + ) + if y + else cls((ControlType.CURSOR_MOVE_TO_COLUMN, x)) + ) + + @classmethod + def move_to(cls, x: int, y: int) -> "Control": + """Move cursor to absolute position. + + Args: + x (int): x offset (column) + y (int): y offset (row) + + Returns: + ~Control: Control object. + """ + return cls((ControlType.CURSOR_MOVE_TO, x, y)) + + @classmethod + def clear(cls) -> "Control": + """Clear the screen.""" + return cls(ControlType.CLEAR) + + @classmethod + def show_cursor(cls, show: bool) -> "Control": + """Show or hide the cursor.""" + return cls(ControlType.SHOW_CURSOR if show else ControlType.HIDE_CURSOR) + + @classmethod + def alt_screen(cls, enable: bool) -> "Control": + """Enable or disable alt screen.""" + if enable: + return cls(ControlType.ENABLE_ALT_SCREEN, ControlType.HOME) + else: + return cls(ControlType.DISABLE_ALT_SCREEN) + + @classmethod + def title(cls, title: str) -> "Control": + """Set the terminal window title + + Args: + title (str): The new terminal window title + """ + return cls((ControlType.SET_WINDOW_TITLE, title)) + + def __str__(self) -> str: + return self.segment.text + + def __rich_console__( + self, console: "Console", options: "ConsoleOptions" + ) -> "RenderResult": + if self.segment.text: + yield self.segment + + +def strip_control_codes( + text: str, _translate_table: Dict[int, None] = _CONTROL_STRIP_TRANSLATE +) -> str: + """Remove control codes from text. + + Args: + text (str): A string possibly contain control codes. + + Returns: + str: String with control codes removed. + """ + return text.translate(_translate_table) + + +def escape_control_codes( + text: str, + _translate_table: Dict[int, str] = CONTROL_ESCAPE, +) -> str: + """Replace control codes with their "escaped" equivalent in the given text. + (e.g. "\b" becomes "\\b") + + Args: + text (str): A string possibly containing control codes. + + Returns: + str: String with control codes replaced with their escaped version. + """ + return text.translate(_translate_table) + + +if __name__ == "__main__": # pragma: no cover + from pip._vendor.rich.console import Console + + console = Console() + console.print("Look at the title of your terminal window ^") + # console.print(Control((ControlType.SET_WINDOW_TITLE, "Hello, world!"))) + for i in range(10): + console.set_window_title("🚀 Loading" + "." * i) + time.sleep(0.5) diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/default_styles.py b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/default_styles.py new file mode 100644 index 0000000..dca3719 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/default_styles.py @@ -0,0 +1,190 @@ +from typing import Dict + +from .style import Style + +DEFAULT_STYLES: Dict[str, Style] = { + "none": Style.null(), + "reset": Style( + color="default", + bgcolor="default", + dim=False, + bold=False, + italic=False, + underline=False, + blink=False, + blink2=False, + reverse=False, + conceal=False, + strike=False, + ), + "dim": Style(dim=True), + "bright": Style(dim=False), + "bold": Style(bold=True), + "strong": Style(bold=True), + "code": Style(reverse=True, bold=True), + "italic": Style(italic=True), + "emphasize": Style(italic=True), + "underline": Style(underline=True), + "blink": Style(blink=True), + "blink2": Style(blink2=True), + "reverse": Style(reverse=True), + "strike": Style(strike=True), + "black": Style(color="black"), + "red": Style(color="red"), + "green": Style(color="green"), + "yellow": Style(color="yellow"), + "magenta": Style(color="magenta"), + "cyan": Style(color="cyan"), + "white": Style(color="white"), + "inspect.attr": Style(color="yellow", italic=True), + "inspect.attr.dunder": Style(color="yellow", italic=True, dim=True), + "inspect.callable": Style(bold=True, color="red"), + "inspect.async_def": Style(italic=True, color="bright_cyan"), + "inspect.def": Style(italic=True, color="bright_cyan"), + "inspect.class": Style(italic=True, color="bright_cyan"), + "inspect.error": Style(bold=True, color="red"), + "inspect.equals": Style(), + "inspect.help": Style(color="cyan"), + "inspect.doc": Style(dim=True), + "inspect.value.border": Style(color="green"), + "live.ellipsis": Style(bold=True, color="red"), + "layout.tree.row": Style(dim=False, color="red"), + "layout.tree.column": Style(dim=False, color="blue"), + "logging.keyword": Style(bold=True, color="yellow"), + "logging.level.notset": Style(dim=True), + "logging.level.debug": Style(color="green"), + "logging.level.info": Style(color="blue"), + "logging.level.warning": Style(color="red"), + "logging.level.error": Style(color="red", bold=True), + "logging.level.critical": Style(color="red", bold=True, reverse=True), + "log.level": Style.null(), + "log.time": Style(color="cyan", dim=True), + "log.message": Style.null(), + "log.path": Style(dim=True), + "repr.ellipsis": Style(color="yellow"), + "repr.indent": Style(color="green", dim=True), + "repr.error": Style(color="red", bold=True), + "repr.str": Style(color="green", italic=False, bold=False), + "repr.brace": Style(bold=True), + "repr.comma": Style(bold=True), + "repr.ipv4": Style(bold=True, color="bright_green"), + "repr.ipv6": Style(bold=True, color="bright_green"), + "repr.eui48": Style(bold=True, color="bright_green"), + "repr.eui64": Style(bold=True, color="bright_green"), + "repr.tag_start": Style(bold=True), + "repr.tag_name": Style(color="bright_magenta", bold=True), + "repr.tag_contents": Style(color="default"), + "repr.tag_end": Style(bold=True), + "repr.attrib_name": Style(color="yellow", italic=False), + "repr.attrib_equal": Style(bold=True), + "repr.attrib_value": Style(color="magenta", italic=False), + "repr.number": Style(color="cyan", bold=True, italic=False), + "repr.number_complex": Style(color="cyan", bold=True, italic=False), # same + "repr.bool_true": Style(color="bright_green", italic=True), + "repr.bool_false": Style(color="bright_red", italic=True), + "repr.none": Style(color="magenta", italic=True), + "repr.url": Style(underline=True, color="bright_blue", italic=False, bold=False), + "repr.uuid": Style(color="bright_yellow", bold=False), + "repr.call": Style(color="magenta", bold=True), + "repr.path": Style(color="magenta"), + "repr.filename": Style(color="bright_magenta"), + "rule.line": Style(color="bright_green"), + "rule.text": Style.null(), + "json.brace": Style(bold=True), + "json.bool_true": Style(color="bright_green", italic=True), + "json.bool_false": Style(color="bright_red", italic=True), + "json.null": Style(color="magenta", italic=True), + "json.number": Style(color="cyan", bold=True, italic=False), + "json.str": Style(color="green", italic=False, bold=False), + "json.key": Style(color="blue", bold=True), + "prompt": Style.null(), + "prompt.choices": Style(color="magenta", bold=True), + "prompt.default": Style(color="cyan", bold=True), + "prompt.invalid": Style(color="red"), + "prompt.invalid.choice": Style(color="red"), + "pretty": Style.null(), + "scope.border": Style(color="blue"), + "scope.key": Style(color="yellow", italic=True), + "scope.key.special": Style(color="yellow", italic=True, dim=True), + "scope.equals": Style(color="red"), + "table.header": Style(bold=True), + "table.footer": Style(bold=True), + "table.cell": Style.null(), + "table.title": Style(italic=True), + "table.caption": Style(italic=True, dim=True), + "traceback.error": Style(color="red", italic=True), + "traceback.border.syntax_error": Style(color="bright_red"), + "traceback.border": Style(color="red"), + "traceback.text": Style.null(), + "traceback.title": Style(color="red", bold=True), + "traceback.exc_type": Style(color="bright_red", bold=True), + "traceback.exc_value": Style.null(), + "traceback.offset": Style(color="bright_red", bold=True), + "bar.back": Style(color="grey23"), + "bar.complete": Style(color="rgb(249,38,114)"), + "bar.finished": Style(color="rgb(114,156,31)"), + "bar.pulse": Style(color="rgb(249,38,114)"), + "progress.description": Style.null(), + "progress.filesize": Style(color="green"), + "progress.filesize.total": Style(color="green"), + "progress.download": Style(color="green"), + "progress.elapsed": Style(color="yellow"), + "progress.percentage": Style(color="magenta"), + "progress.remaining": Style(color="cyan"), + "progress.data.speed": Style(color="red"), + "progress.spinner": Style(color="green"), + "status.spinner": Style(color="green"), + "tree": Style(), + "tree.line": Style(), + "markdown.paragraph": Style(), + "markdown.text": Style(), + "markdown.em": Style(italic=True), + "markdown.emph": Style(italic=True), # For commonmark backwards compatibility + "markdown.strong": Style(bold=True), + "markdown.code": Style(bold=True, color="cyan", bgcolor="black"), + "markdown.code_block": Style(color="cyan", bgcolor="black"), + "markdown.block_quote": Style(color="magenta"), + "markdown.list": Style(color="cyan"), + "markdown.item": Style(), + "markdown.item.bullet": Style(color="yellow", bold=True), + "markdown.item.number": Style(color="yellow", bold=True), + "markdown.hr": Style(color="yellow"), + "markdown.h1.border": Style(), + "markdown.h1": Style(bold=True), + "markdown.h2": Style(bold=True, underline=True), + "markdown.h3": Style(bold=True), + "markdown.h4": Style(bold=True, dim=True), + "markdown.h5": Style(underline=True), + "markdown.h6": Style(italic=True), + "markdown.h7": Style(italic=True, dim=True), + "markdown.link": Style(color="bright_blue"), + "markdown.link_url": Style(color="blue", underline=True), + "markdown.s": Style(strike=True), + "iso8601.date": Style(color="blue"), + "iso8601.time": Style(color="magenta"), + "iso8601.timezone": Style(color="yellow"), +} + + +if __name__ == "__main__": # pragma: no cover + import argparse + import io + + from pip._vendor.rich.console import Console + from pip._vendor.rich.table import Table + from pip._vendor.rich.text import Text + + parser = argparse.ArgumentParser() + parser.add_argument("--html", action="store_true", help="Export as HTML table") + args = parser.parse_args() + html: bool = args.html + console = Console(record=True, width=70, file=io.StringIO()) if html else Console() + + table = Table("Name", "Styling") + + for style_name, style in DEFAULT_STYLES.items(): + table.add_row(Text(style_name, style=style), str(style)) + + console.print(table) + if html: + print(console.export_html(inline_styles=True)) diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/diagnose.py b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/diagnose.py new file mode 100644 index 0000000..ad36183 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/diagnose.py @@ -0,0 +1,37 @@ +import os +import platform + +from pip._vendor.rich import inspect +from pip._vendor.rich.console import Console, get_windows_console_features +from pip._vendor.rich.panel import Panel +from pip._vendor.rich.pretty import Pretty + + +def report() -> None: # pragma: no cover + """Print a report to the terminal with debugging information""" + console = Console() + inspect(console) + features = get_windows_console_features() + inspect(features) + + env_names = ( + "TERM", + "COLORTERM", + "CLICOLOR", + "NO_COLOR", + "TERM_PROGRAM", + "COLUMNS", + "LINES", + "JUPYTER_COLUMNS", + "JUPYTER_LINES", + "JPY_PARENT_PID", + "VSCODE_VERBOSE_LOGGING", + ) + env = {name: os.getenv(name) for name in env_names} + console.print(Panel.fit((Pretty(env)), title="[b]Environment Variables")) + + console.print(f'platform="{platform.system()}"') + + +if __name__ == "__main__": # pragma: no cover + report() diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/emoji.py b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/emoji.py new file mode 100644 index 0000000..791f046 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/emoji.py @@ -0,0 +1,96 @@ +import sys +from typing import TYPE_CHECKING, Optional, Union + +from .jupyter import JupyterMixin +from .segment import Segment +from .style import Style +from ._emoji_codes import EMOJI +from ._emoji_replace import _emoji_replace + +if sys.version_info >= (3, 8): + from typing import Literal +else: + from pip._vendor.typing_extensions import Literal # pragma: no cover + + +if TYPE_CHECKING: + from .console import Console, ConsoleOptions, RenderResult + + +EmojiVariant = Literal["emoji", "text"] + + +class NoEmoji(Exception): + """No emoji by that name.""" + + +class Emoji(JupyterMixin): + __slots__ = ["name", "style", "_char", "variant"] + + VARIANTS = {"text": "\uFE0E", "emoji": "\uFE0F"} + + def __init__( + self, + name: str, + style: Union[str, Style] = "none", + variant: Optional[EmojiVariant] = None, + ) -> None: + """A single emoji character. + + Args: + name (str): Name of emoji. + style (Union[str, Style], optional): Optional style. Defaults to None. + + Raises: + NoEmoji: If the emoji doesn't exist. + """ + self.name = name + self.style = style + self.variant = variant + try: + self._char = EMOJI[name] + except KeyError: + raise NoEmoji(f"No emoji called {name!r}") + if variant is not None: + self._char += self.VARIANTS.get(variant, "") + + @classmethod + def replace(cls, text: str) -> str: + """Replace emoji markup with corresponding unicode characters. + + Args: + text (str): A string with emojis codes, e.g. "Hello :smiley:!" + + Returns: + str: A string with emoji codes replaces with actual emoji. + """ + return _emoji_replace(text) + + def __repr__(self) -> str: + return f"" + + def __str__(self) -> str: + return self._char + + def __rich_console__( + self, console: "Console", options: "ConsoleOptions" + ) -> "RenderResult": + yield Segment(self._char, console.get_style(self.style)) + + +if __name__ == "__main__": # pragma: no cover + import sys + + from pip._vendor.rich.columns import Columns + from pip._vendor.rich.console import Console + + console = Console(record=True) + + columns = Columns( + (f":{name}: {name}" for name in sorted(EMOJI.keys()) if "\u200D" not in name), + column_first=True, + ) + + console.print(columns) + if len(sys.argv) > 1: + console.save_html(sys.argv[1]) diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/errors.py b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/errors.py new file mode 100644 index 0000000..0bcbe53 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/errors.py @@ -0,0 +1,34 @@ +class ConsoleError(Exception): + """An error in console operation.""" + + +class StyleError(Exception): + """An error in styles.""" + + +class StyleSyntaxError(ConsoleError): + """Style was badly formatted.""" + + +class MissingStyle(StyleError): + """No such style.""" + + +class StyleStackError(ConsoleError): + """Style stack is invalid.""" + + +class NotRenderableError(ConsoleError): + """Object is not renderable.""" + + +class MarkupError(ConsoleError): + """Markup was badly formatted.""" + + +class LiveError(ConsoleError): + """Error related to Live display.""" + + +class NoAltScreen(ConsoleError): + """Alt screen mode was required.""" diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/file_proxy.py b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/file_proxy.py new file mode 100644 index 0000000..4b0b0da --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/file_proxy.py @@ -0,0 +1,57 @@ +import io +from typing import IO, TYPE_CHECKING, Any, List + +from .ansi import AnsiDecoder +from .text import Text + +if TYPE_CHECKING: + from .console import Console + + +class FileProxy(io.TextIOBase): + """Wraps a file (e.g. sys.stdout) and redirects writes to a console.""" + + def __init__(self, console: "Console", file: IO[str]) -> None: + self.__console = console + self.__file = file + self.__buffer: List[str] = [] + self.__ansi_decoder = AnsiDecoder() + + @property + def rich_proxied_file(self) -> IO[str]: + """Get proxied file.""" + return self.__file + + def __getattr__(self, name: str) -> Any: + return getattr(self.__file, name) + + def write(self, text: str) -> int: + if not isinstance(text, str): + raise TypeError(f"write() argument must be str, not {type(text).__name__}") + buffer = self.__buffer + lines: List[str] = [] + while text: + line, new_line, text = text.partition("\n") + if new_line: + lines.append("".join(buffer) + line) + buffer.clear() + else: + buffer.append(line) + break + if lines: + console = self.__console + with console: + output = Text("\n").join( + self.__ansi_decoder.decode_line(line) for line in lines + ) + console.print(output) + return len(text) + + def flush(self) -> None: + output = "".join(self.__buffer) + if output: + self.__console.print(output) + del self.__buffer[:] + + def fileno(self) -> int: + return self.__file.fileno() diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/filesize.py b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/filesize.py new file mode 100644 index 0000000..99f118e --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/filesize.py @@ -0,0 +1,89 @@ +# coding: utf-8 +"""Functions for reporting filesizes. Borrowed from https://github.com/PyFilesystem/pyfilesystem2 + +The functions declared in this module should cover the different +use cases needed to generate a string representation of a file size +using several different units. Since there are many standards regarding +file size units, three different functions have been implemented. + +See Also: + * `Wikipedia: Binary prefix `_ + +""" + +__all__ = ["decimal"] + +from typing import Iterable, List, Optional, Tuple + + +def _to_str( + size: int, + suffixes: Iterable[str], + base: int, + *, + precision: Optional[int] = 1, + separator: Optional[str] = " ", +) -> str: + if size == 1: + return "1 byte" + elif size < base: + return "{:,} bytes".format(size) + + for i, suffix in enumerate(suffixes, 2): # noqa: B007 + unit = base**i + if size < unit: + break + return "{:,.{precision}f}{separator}{}".format( + (base * size / unit), + suffix, + precision=precision, + separator=separator, + ) + + +def pick_unit_and_suffix(size: int, suffixes: List[str], base: int) -> Tuple[int, str]: + """Pick a suffix and base for the given size.""" + for i, suffix in enumerate(suffixes): + unit = base**i + if size < unit * base: + break + return unit, suffix + + +def decimal( + size: int, + *, + precision: Optional[int] = 1, + separator: Optional[str] = " ", +) -> str: + """Convert a filesize in to a string (powers of 1000, SI prefixes). + + In this convention, ``1000 B = 1 kB``. + + This is typically the format used to advertise the storage + capacity of USB flash drives and the like (*256 MB* meaning + actually a storage capacity of more than *256 000 000 B*), + or used by **Mac OS X** since v10.6 to report file sizes. + + Arguments: + int (size): A file size. + int (precision): The number of decimal places to include (default = 1). + str (separator): The string to separate the value from the units (default = " "). + + Returns: + `str`: A string containing a abbreviated file size and units. + + Example: + >>> filesize.decimal(30000) + '30.0 kB' + >>> filesize.decimal(30000, precision=2, separator="") + '30.00kB' + + """ + return _to_str( + size, + ("kB", "MB", "GB", "TB", "PB", "EB", "ZB", "YB"), + 1000, + precision=precision, + separator=separator, + ) diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/highlighter.py b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/highlighter.py new file mode 100644 index 0000000..c264679 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/highlighter.py @@ -0,0 +1,232 @@ +import re +from abc import ABC, abstractmethod +from typing import List, Union + +from .text import Span, Text + + +def _combine_regex(*regexes: str) -> str: + """Combine a number of regexes in to a single regex. + + Returns: + str: New regex with all regexes ORed together. + """ + return "|".join(regexes) + + +class Highlighter(ABC): + """Abstract base class for highlighters.""" + + def __call__(self, text: Union[str, Text]) -> Text: + """Highlight a str or Text instance. + + Args: + text (Union[str, ~Text]): Text to highlight. + + Raises: + TypeError: If not called with text or str. + + Returns: + Text: A test instance with highlighting applied. + """ + if isinstance(text, str): + highlight_text = Text(text) + elif isinstance(text, Text): + highlight_text = text.copy() + else: + raise TypeError(f"str or Text instance required, not {text!r}") + self.highlight(highlight_text) + return highlight_text + + @abstractmethod + def highlight(self, text: Text) -> None: + """Apply highlighting in place to text. + + Args: + text (~Text): A text object highlight. + """ + + +class NullHighlighter(Highlighter): + """A highlighter object that doesn't highlight. + + May be used to disable highlighting entirely. + + """ + + def highlight(self, text: Text) -> None: + """Nothing to do""" + + +class RegexHighlighter(Highlighter): + """Applies highlighting from a list of regular expressions.""" + + highlights: List[str] = [] + base_style: str = "" + + def highlight(self, text: Text) -> None: + """Highlight :class:`rich.text.Text` using regular expressions. + + Args: + text (~Text): Text to highlighted. + + """ + + highlight_regex = text.highlight_regex + for re_highlight in self.highlights: + highlight_regex(re_highlight, style_prefix=self.base_style) + + +class ReprHighlighter(RegexHighlighter): + """Highlights the text typically produced from ``__repr__`` methods.""" + + base_style = "repr." + highlights = [ + r"(?P<)(?P[-\w.:|]*)(?P[\w\W]*)(?P>)", + r'(?P[\w_]{1,50})=(?P"?[\w_]+"?)?', + r"(?P[][{}()])", + _combine_regex( + r"(?P[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3})", + r"(?P([A-Fa-f0-9]{1,4}::?){1,7}[A-Fa-f0-9]{1,4})", + r"(?P(?:[0-9A-Fa-f]{1,2}-){7}[0-9A-Fa-f]{1,2}|(?:[0-9A-Fa-f]{1,2}:){7}[0-9A-Fa-f]{1,2}|(?:[0-9A-Fa-f]{4}\.){3}[0-9A-Fa-f]{4})", + r"(?P(?:[0-9A-Fa-f]{1,2}-){5}[0-9A-Fa-f]{1,2}|(?:[0-9A-Fa-f]{1,2}:){5}[0-9A-Fa-f]{1,2}|(?:[0-9A-Fa-f]{4}\.){2}[0-9A-Fa-f]{4})", + r"(?P[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12})", + r"(?P[\w.]*?)\(", + r"\b(?PTrue)\b|\b(?PFalse)\b|\b(?PNone)\b", + r"(?P\.\.\.)", + r"(?P(?(?\B(/[-\w._+]+)*\/)(?P[-\w._+]*)?", + r"(?b?'''.*?(?(file|https|http|ws|wss)://[-0-9a-zA-Z$_+!`(),.?/;:&=%#]*)", + ), + ] + + +class JSONHighlighter(RegexHighlighter): + """Highlights JSON""" + + # Captures the start and end of JSON strings, handling escaped quotes + JSON_STR = r"(?b?\".*?(?[\{\[\(\)\]\}])", + r"\b(?Ptrue)\b|\b(?Pfalse)\b|\b(?Pnull)\b", + r"(?P(? None: + super().highlight(text) + + # Additional work to handle highlighting JSON keys + plain = text.plain + append = text.spans.append + whitespace = self.JSON_WHITESPACE + for match in re.finditer(self.JSON_STR, plain): + start, end = match.span() + cursor = end + while cursor < len(plain): + char = plain[cursor] + cursor += 1 + if char == ":": + append(Span(start, end, "json.key")) + elif char in whitespace: + continue + break + + +class ISO8601Highlighter(RegexHighlighter): + """Highlights the ISO8601 date time strings. + Regex reference: https://www.oreilly.com/library/view/regular-expressions-cookbook/9781449327453/ch04s07.html + """ + + base_style = "iso8601." + highlights = [ + # + # Dates + # + # Calendar month (e.g. 2008-08). The hyphen is required + r"^(?P[0-9]{4})-(?P1[0-2]|0[1-9])$", + # Calendar date w/o hyphens (e.g. 20080830) + r"^(?P(?P[0-9]{4})(?P1[0-2]|0[1-9])(?P3[01]|0[1-9]|[12][0-9]))$", + # Ordinal date (e.g. 2008-243). The hyphen is optional + r"^(?P(?P[0-9]{4})-?(?P36[0-6]|3[0-5][0-9]|[12][0-9]{2}|0[1-9][0-9]|00[1-9]))$", + # + # Weeks + # + # Week of the year (e.g., 2008-W35). The hyphen is optional + r"^(?P(?P[0-9]{4})-?W(?P5[0-3]|[1-4][0-9]|0[1-9]))$", + # Week date (e.g., 2008-W35-6). The hyphens are optional + r"^(?P(?P[0-9]{4})-?W(?P5[0-3]|[1-4][0-9]|0[1-9])-?(?P[1-7]))$", + # + # Times + # + # Hours and minutes (e.g., 17:21). The colon is optional + r"^(?P

9eYYr7k4(qC|@vg(B_S&7@ z01l26Ropd5QI%4vge%oqrz>}eFMQ~Ser#3x-A0zMRzgCmD&2iEf=Y-_eQ!4Y8>Eic zZ{EzjnR)Ncyx-gXIvDIDQ0|hc%YTpw`8PJ2McQOu*ubn4jc8n!B(dhRT#irjIUyoUdnoNzNC*Mx(^|kJ;(E=mCx#FcWsw~v8=rK9aQT?CrM5tNnYcUg2tmMx~NM# zHiZb$Bu&o9pthKlb&n=>k7jtydqcbj(hpiQl3vZHOCagXh*}@a>(l(K?T2;%+5s)3 z1)&atj2~9$2fkmE!R)Z(`@qQRXKDUgaq-wJO%*I9rDUK>nbhNRam6ZHam&{73wBIN znVLd%&7gYPwv?;XuysqZ^DrUpnjLpMn;gZnc0^prk*RJkP;(~T@;Qw0@W=Lx3qaOM zi7OEmIJcB|XrZTBnIq6bc~)#slOv?t4Im{p$24+|+~;Ouk~5^X3{=%k?VNCDCsT5; zv**%6CZkj8h1Hyq&Vdx1x~gp+yWohHp3Tr8h|zu^78;}|%Ii-PKeu#hCCrqa${I$> zF6QzXLpSs*sl?f0`f`fqz~l4i#>A=F1BtAjqNZ9X+L!ZCxg&}A72Uj&$QqXt?!dwL z{{0CHeE$7HD*da}oNgrwMj@esn3ksrYNRhG&=g$YS}|TII$l*ZOv6^y#le;j;>|v$ za10b)CiNZ4in!WeA0CCuUytsAD){uR*qz+n+=^K9j#b$60)$Drbu7?8o*iNs7&t^S z54Bt1ZgGnPCv{svbqrl&mnt6P=nx3p=jbq07A~OB?LeIYG=S+2!YUfFIM&vB%U}ej zV@NNPhD^ed)$0}SD8(ppL^GAs)2#~wU3e{+p8J4VCw7MopmVEL;_kt$2d$as2pxb4 zG2Zda>2}JtDN{biGv(Czg1Xzb0HHS2>Pc1dT!GvG!`cHvmFbnpu3C;rb+?J)K*~>87pZ7A#x2q$`$9 z_bF!HR$g;`PB#$X-8l&V7as!oBXRbQ?@?{4VmUS;N$0g2Tsu;E2e(Sb`CvD9a2@Ui*&D>85_IK&KYpZU-VWEq*kc zPp7ihRJQnEpP1hoOpF|EmjvRbAU5y;6MUFIt=6GAO z&9N|!^*eorWtf(oGSj*vfb$&R`C>soL1~^kq75tpG-8#iQiKG@S4dIYu#LRw$f-gB zaNQB-^M>h2Y0MCG5QHdRaz`pq!?YbCtD7;ei$=S#Uv@K>BcWR?I*EN=Q@_ew#uAky zLn<#U*cOJ`FBP}A2rM!8EQWggwG#xb&*0=Y4 z57ooNDDeCK+x=_sdj`$mt>A`M4M%I?XeAtl6&fKD8e-cu!Xz-zAhPcrNO8B#m6P>> zkp>Zi?=bRo$M}YJXY}sq7rQ>+)jq{GSO4G)JMiatD_$Z2ZWOuE!8IAO&%g-VJyQ+u zsfG7c!h0IN=HhIJ=eXC))`sn^d$?DxUiI{_=70N0cxdg=&EjgY;vKOtfBsWECQe6$ zM-g#)#Pev31KO3CF&0?H_zW0$pXSO?Z!Mk4uNzkYsX00dDF*p0tRV5j@A znC)^Q8qQpJ2$=47n>WK)ccN)S7oL|RXW)g#%u|Hlj<+8A9<&$3?TB;5m>2K`39JhZ ztzLf;+Wk1RyBdntLeYvh>H-W;Lm)8|3(+{#PM@mg^4bEt|EW$uRe!yZ%DUL%cvMx( zrvYTp9Qr*ZBRIngZ)OFZ+C_>XPBFhz1qTGc7J3AmKSqK&-Y0BR1{4%C6C-|Ltp5O6 zZvE=wnTmL(A&SzzvJbAWwC~~I!{dL2xCZub=ULTD0z~d_@VqouK2T17br>Q~8f%m1 z0u0~ym71$R9MPz2M?S3h+FQY#EU_AZN`ziQN zVD3DQLil#*<}dG2_b{jEDd@wrY2p292pq@NiEo+x>LgM5f6p^AUg>`7WVq7(JQKoT fG`G7hDwXc1A;&rJ#a6P$-wr;<{+DkUWOn=y6j+D{ literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/filesize.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/filesize.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fa5f659930619063c8c4c09ca704393a66985cdf GIT binary patch literal 3348 zcma)8OKcm*8J;DV%cn%YB&${9PK5vwDV5ZtF$%>NV6{$bAWqy!MpB^#HQXJNTP=6l znWb#X6e_ei(18!?$wrZbPi_MH&|{80^bnvq$cBLsdlFC-sBa9MUVQ5R&+;L==wqPy zH8cCqH~;(RAIHX01jZ+1wf1F_kiX$(Fvj|e=SQ%(ODwWUEUl_-YF5OGI+1#GGg{X- z^?GbGRyQ^cjaa%Bvy4w7R-DJJ1dsB>w+2|mO2S!+$9VkMSsM1oc``gv$yj3_8Jo#I zhW^rb#K>@i$AK?0!l@*z@sIS))JyOGKW`D!(wX~h#% z@P;RR+pW@y?Qm)Da#^5jo)F#*ZqbVH>a^zj4Y^V*R&Br5EEi0#UcA}q%{{bO2L=11v!yUno342V_8r$Kt%(+YLdc)y$5RF@f zRB9dgFFDd%Nl_Siy7hs*Z8x}OvlY5#yG*nwXi~9n(hCDibGL9~z*O)=wTQc7$Xp7U zSGP*3R1gRA+I8kU!ywG*LE?%J3YQ%o=KXW-ywK=pkst{; zrY+%Xkd(Z^z`C9YbhKWOkj)AR#ATqD!4V=2w?qa=UK2)g4@MH4J zQ@?=SUTn{3N7}L71gzumQoR3CL?f?8;11c10djm7bZZ;!Xj^||Jka3{ znBjngiN7lVnCu#hwA}LfZtB*`{GM9MXDG|=IXEcX8d`F%vUh7}%e`BB0xM505*Uza zb>;_2?l$Wxj&litwMUF2$s!rqShE8obU>i1ctsg7c5uA-UGX}2L>67->Q2R zo7;ScL0XzMChFIO_bYDtviQ>vmWmE%!Ywsge$9h_;g@1zhr2sP$1X$i;)mtJ;$l(S zKL37$ncJ+&WwBv5iX~vPJW&+3Su3g}hv+CYT0y+zdnHIjffedBO!)^O`=ob*Br=^} z|F*T?>SoV&Zg!Jn2l~g;o#}3N`m5~BlkCj>A3V;^KF!V^CT9OWaqiyDPftFcn0q=g z*CWx`DMfB4J6h*_H+%ZvXSZ*3^lmzP@cPGZb>8Y`PIfN$q9k+nC_VR8dg)1eNx|Qq zKJXtWr@M*q?x|_`>m^BM`D+r(7~df2kyy-l4$_ff(BcN&tb%p}7I%q13_T3DmxB?4 zZ9)ZGbWexCiK<|WL9oTz5e%Z2LT(aH^$LW2PTS32v(0S^6-#9kh3Y~vomAb$l2^6C zzN%goa+){;g5-=>!(swX#UzrmKqTgxiUTU9U>Tfgz!N2mk`lm|!k5H%;L|*^UjedD zl%XF_%s!o%{qJVJcjotVPtva)re7Nx``i)Of3kDoP(Lfa4QS@TP#FJln97KGSiE9H zr~+1`t+gYMq7T4G4`GG_Orx`9xb`E@h4So!fd-+anuLcI3v2vr1GSbjUekDbRxgTT&ixP21<*3ZeCr7Zmnc2w`e|pm6`Ot zb^2jG4*`VDY-e$ya2{J_*wIJ5Q1+F-B&tw+TwjKb2nDiTpUz^%&#ll)qZl{d z-hgWZG=v&fhNcZh=yxC5aF_`ufX6`;r)hx!EM8$v$43u##&un9R_NlulejUcxWLv)bEYug~9?v+#AD_|9op6Lpkig z7nkM-x_jc{%*-o*3kawXbBQ3by%t2S!u$!$4Vc$pUWT~|^XF^!KOnQhzN4w?oQsAf zW!PUNFc9#CDj)*WSdlkjAu*5l$v-cU%;|0-(@p#kX;@X$M#lJ>0Qm+HlNP4^%$5o1)n7S9ev)4=GE;HCEjB#Qlds#dmqJ^s^Lz}uM!ARQF zr`DgAAK7a8d3f^Y<`?US?_dAo!@vAS9luJZ`eG(uN8kZbV&cXah!DqJVz5)(DHJF@ MxH7stS}7C%3$uxVegFUf literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/highlighter.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/highlighter.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..25584afd1283fbb21c5565f77d4c1c1193c210cc GIT binary patch literal 11034 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/layout.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/layout.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..06a8cae76faf850e1d5d9bbb333ae9ee43e71f81 GIT binary patch literal 23358 zcmc(HdvIIlmEQ$$0bD!?zCaRugHHjJ1X54ik}O-+)0R!kk}TVdZ4~0Yq#y$za{=nX zfR2*YZeW+2g;VXAN#t3i^?2#EGRtj~u68$RolIuy=^r~68q5fTsdw0Rwo~_y3^a1u z)c>@<^WA#^T#!0??w#_ocOljmZ=Y&s?~YhU+&ATm zcTRQ2yQaG0-BaDn-x=$P_fGY)cUP=0-apmP-rX^Od|+yTy*I=L<3m$J?A;R^j*m=@ z#7Cz_nY%HzB_5axu=l1|Fg`XlX5u8LY(v|cV_W0frnZ?lGk2U5Tds3rtK|8>!f_wr zuU=EzC70-xhGxv2x)(PUVt(5Ve&Z~UHssMRP1NPFgN1b<%qQ)r3){)UIuX|Off*&^ zua&%ug>)mNM>5r=+Regx5!NT|t_$14!uk>B-w?J}8fBpa2=yAv`vAp$q!-RjJt93S z4!*%^lQqdNiJUkTdyGbidQ0-v#qNOLBXxfJq{>FA=RQHKns-u)UP*Y^(m6fsW*7grfXf6Kg#e75J_^pY$5)324N(gs&@jJgy-i|(YZt2vp;&Y_5#&qu!*dCEN+pl>qGp*ac}`0S zQ7!rG)p@DpR^6wi;+_WL2JmVNJ5Gs%yvpf97Uld1B<4~y5Q!vwUGSCr06ygI19D${WBkRWBqzrckyIoWjYd*e<8w1nDJorx zjGwwXeIX*pPswu^rRh|1{KQK;$751NPK4*LVtV1BhKz?UNr_A2vFQ16HDFh0$BywN z=G*r9$n+bLSt&U_ADtf$BbqoTkJDg`tIZ9~UzLZbP6Yh;C$V^Q*J^%6epKN{*WE4G zCa+C?W3uRO%6hZ2H+l>1eubwy&mdmpZAi*8D%sSIHVmdt2k*BaT6HjKC`B`d$5L{s zsgBC>oV?hkIxrrwNJ_#gL%yNO4|#c%irGRSKp;q9D*;yic6yu80r@A}0jfh-Nu znPUHzRdr6zotckC37HoMPZJs@sgg;}&o9nNNk0bOFI@rth9>15RHM3D?jk<|?!tBFD- zu4IcbypltxWXYN&d?%brEy#(2(q|Aj#xvZ9 zrpcgLegrY(M*%Q>_@oq@srn=-Gr!+2(~Kb8jV7Y0aCot;wpk(FoAO9{0j_by_MQyC z>?*c(;o;2S#|EHepVp|ReU4G!q@nsW8bkQs2j|C~3g+zWlYa#oQ3g zTw4B`;@*WjXH}o8qv}(I>&=1ei%N3<_sS*p30Sss4$rTgT%-3>ck}YI@3rS_-|f5E zw-!*``}6Mo1^519OZ$y6fV(Y&cUlH>d-5&8LQAmN*82^b;V?PbNH++X!?Jc%DEV?c76t1c)pqzX4E7;SVbO!S$Ab z?0CLqsL(QW?PQrZTf55~z{(Z&SaYz)$Gh319th1=XR)KNY@uiH5%yenw3V%Jm$?T3 zl}uBertz;_I+EOf8(vj1tuis9c?xU{NHSwnB)bULj9Ii^uP5IE!fYVZHEfP3NKV9e zNp8^&;$0&U3ywUDI0iDkd6oae z5#j$X74lAJDn;fVwaS zgZuo4{E3D5c}e!q&D3Y9=SWYj5&?~mrgSnmz(`_tAr_JK;MAO-F|SgnQUSF`gBF!; zokQbU4;Yt1o0@8|vC^%o$14<_I+gY0WYDuIzS2x6Ss>-eV-%H^C;2P^4*}wOWt#DF zBY~F*)M4%m-y?xN41^A&t!WeYiW?_U zJ~>OS({q>gp;{bZZpQm{d!a zC4PxGm>PPMwx&%+eq_lmnwErAg_A-$N2DNXnXZ&fSLI2H#ki3MRi0EClw`>^H#3uzQYCv>MfQ@F5s;FLJ+xSEq&Cn8Vrdz2 zEwg$`BrkMlOqm@SDSPfy-$+hceL3&jTk!48G!&a#GPX}!d>Q+v zgCn^MYYq9qgN4C^SP>nA4CLK?nWI^-105^)<(hNne$ci0!kX*$xqRo5Lgx{s<%r_e z?xMRT`$pb9kU5q)R<`OnsPyE+&DVdnvM|!~TTzj(P!AB0sI@eHRVq^Cw<`SBbyw51 zBW2!X9aRa(C=rfYU~^aptHgpFL@e;!j99?C%sl|8vz#jPPe>)8%84z+6BR-+{4hc> z&EkSq*wnW#O)iKZGmr~4Jt)TSKZIiR80%&v8gJ47>O>=;GzR{WiH7a}5z*i^vSCfT zz8ukzNt~7c8NdcAA)lupnmsj?!lO|NRj^6QG}Gl70Xm%wqlL~#GoBhMF*KUHveuU$da^L|BoT-q2J-HHP>BOoDsgDl_Je2E ztZV7bsYERA9@MFXnuAIu;d?E$x-8W!0oJYJHa@(@ONW(s6n*Mctp>2`;=R3kQyL2G=gpLNR4oTwGf*& zaQ;m!tXbr$IU-*3hIlP3UMs>{HiUU0cQ{aj-H;0}wxaAdHB97Yc+m@YJM!5kwr|Lz zL+lWJH%(%v0_HBnq?E{0m@|jK%IUgy;^kB<^+)_O(JRofsb~&;wa(}HA*QLs zSC>bOvPeyCkR$Y*N!7m1uj;QNF-RoUAmj#JNFs$`**`g#keDP`tIhKtk!B)L=O?KS z6r(D5kY2?ffK*_}T;HkiL$*q!qR?y0EK^k=3Oyu0QrY+eQC1smy91T2pW;LwI@lrI&q6N;+ z&BY8oc#cA%P&8j9k#VzZ&dLkgI6xixDkzW~1DKSX0nY}ls^tC*93^*cFO;mTnkBnd zcF9?tFx51&Oc^E#qzF6)FpbH|F5Ri#V%gOdLAh_xL^5^SVxxv{x~}^sMg1xORE=J) zXH@Cl|HGa&F(2Gt2=34D1;JPJ`k?!E6ng^X?9^1@x^G7x0^P;IeYxTHLuZl9zThq2cvb zI=Qmf84mv$@=QhmR8g$x@n*#v(VSQDj3|P3KftqRMJ)7g4}(cqd7%%QV@(o*Qo}jr%jHOloy^Ve5WH*uSx^Ll4iLuXLttyF-Y6+jf=HP@0UZK_VRKXs%{@0gd}XH@nR zT5CcnY+{>36O7|dQY|$V{};{!F>LHj&&B5tE)Hp3P$~KVFg6lP9t>3@{d=TMl7{;l zr!*c`@0F3Y7k~5`-m}(aL|L!bcQ|PkD%h--_7lpP^lq%Xn~s=}S8n(F2l2=^ z9xk9T;qb;Dugnf&T#d7X&4pf4;zsbCojjXCHU(@8O3Rdi&{4aeBdY?3;kv`cL7N+!ioWeAb_ui;Lf z2Eg=c;oMEjkFD@`Ts?}br`Xz&Il121d$X_1SsDTiWUa;i;Xk_iy{oIX&&V8+<0vmTg-xMEh(Bo+J!a5^nLSt zX5$?ArYTL92Ik2{?_{+Pqp1siHgX_#)cTTeQo72F5OhU4>$yh|WK^WP!eMj}ne~AF zYs3>9$`!vNrPv7ob!cj6{n&jg zHnwFNSl7q{NNXTtI?HwcFA?%B{#({>*}i2bdI<|kSX91E7L+E@5;MmwZ(G?rALHZJ zB@^BuZ;JM}tTTLu&(I!|aNYg3JBd3;?gAdG%t=HXY_?Od1}@h5-gGz<}T~=8v@0` zG)x7g5L35eOW4LNhRCwYdY0@DWIt-B?!__uESK)*8+R_tx z?z*_>Xfvz{$nJ@s1O*@($z%fcjhyI1`+P(cqlwv)MU2LSHu);WItx(ZXXU7?aW~(UNurnNmpRB7EUh2;}Q9){B6qS4*;qR>9uR>*0^1Zv)H4p z5;Oy_PHGFL7W#LT_7cFauW{?Goj0Di+d6Tlbt2!ov(UOTb7bAy`R+5{c_x?6K9l$E zE_iomj$;33DENLzX*%Z8@f&aw6s*eYR=HckNlZoz zYt^@$b`vXUs;)f)Q3H0FgULj_={2VisF8?AU@_kYTL$ zUHB(y8e+}RhE>kN`G6tSlKpQ=l>oqy!ib>I3GJM{p@jjg8ciKpJLHRZPkiS@(bvCX z&so3gx#=kmpIF=Tql1NA$CTj{xXV_qt@j>hX>0$SKw040y6(Ab%`GrPXhvQYV9~Q? zLy4Kq8bkE7j#iLeUk8liLYi@0h`9FY%2aOJd*zn;Mceq&*#`xkr33EqA;Nt@1hV= zjCYxLIeJ!3lsP_csWN?#-8P~BKE2ZLboDxQ&BE;C1irOiFIkouJJ9* zRaqX1lGCIlnfd;I0?@<=bG`7eWN~l?9fhfO|ImmsU^-0+FVis)#bj6dVLFBi3zF~; zaVZ*2?HY!~k%_Cd$Aab7rYy>3?uz9V?lLGk){@HdOKRiaH6K83OmWCB{!-oFQ8{z6 zYSnauaVY4buoLzt7tU|jdg`GD3u9U&ziy|n&wpwT#-q%}*dLK+7syyQN$c`LO!S{8 zJ>SClU_FBhEhJ4`{nB+C{s6N{{tBxtOs%&0v8KNU{#f@wwW}O1W5d8S>#3`GR>qn7 zlX`^_)+xNa%Q0y#uw?qJM%7cxF4i-YkOPC79QdIbmfK0al1yLwp;`VW3TBj~Rw$Hz z2fmA1$AnlLsw-Pn6l}&+O&&s2ATMX}!k|b8>rL&yvTz*(x%MBn=i4U=?GxBprCpLA z&)h!uXNeyr$`(B;OT=(vu@$_m-eG>ooiRu6kPlhjs=ngO-iHXF6$kC6)PXxHnt-ZfCR!T}=f1^NSIgtB0F95VgN z#(DczF8ol)x9%vk?ttxD^F&t23hQm#vuAI-o;y)!+n#S5FSL!rHm#v~`MJziX>+ z==q;tS8QGuh{egg(ql{HBcEFXl>6^u4?6;WB5Lif)D zXf_+%Yh(YI_@^rTmbVhSBJW2rGR-sjLx5U@`@(TxR!T@$=H;pqhWONa)YBu4(u^f* zLd`Pb?~Qm>l&#_+nIjWYm26;!p$XQ7N5U)lPpIZJ$3P!dM%YoQ=wg#Pj-iSV4xe#J zvN{E3c^-~goTFjcb64oSBlNCZ$O~Hv!WKop8F|<+bZnOUk@>qgV^uq!(P1x->#W*HadQT{B0IPwf7z^ZgC_13q*X(p{J!|&yok2c zs7@Y=c2#=suiFeJO(j;Onh0~}>9kRm^CG&IMrGL^0NxpHk?P-oTebyOp~VKh^O*BV z>O0~-7*=^&mZxYLA7h}{AIuynxO-^TR(+WFJ&N#oB~~^5W^Y*QH}kIgCEX}IBlKF{ z;|J{Tn+EKvF~1kSC0C3spX^MR!A6+ab~b=i{Y?fCs+CSeQ7*KBI{m!9o)G8EraNtLl-z25;aD^wCDk(^&FV}KLt`c- zl60<59-^qNntyT{8i0hFBIr`lh1PQUuLzLxjG4ifY+9zoMb(>rSy_3EVb$w}r^-0M zER6MLSS?6DC>Jt%KTVkTKan-D5S)s6f@2Q};d_d0ohw@lZKIiE#omEJ@AlQ1Lhqip zCNsyf$BM&aWWM=A)|B0|GFtR@-}MIWcmu_z_7(fh#=E}9?)Vl1d$rdy{bLikxt(Kp+@=tZxf8J#RtXkI@5S~~fhVbV! zgs+t(Y086Uo9m7IW=*uERNan(w$)Nq%`I7Hxg}fLRugVdTjbMVx$O8`KR}Vhtf-e! zGmJIDCf1M`Mo5Ts2vq{H;sKgrXFbV);;~`Lg*w3AxxUEzrE0LpwUbNu=^x`b-B*SaqKR5MdZ7Vj?Gq+}s zL13>9WXu9n!$bLQc|*Dy6ja-BTV#G7GDFESKQ}MaHm}Oo(l%JhmYkDuxKt)W4Pz6w z{!UVq6BLRgmEaLe{QN@lg8U!J$D>g@wFSwNSIt|K?6rnf2@xx<)Wo)vaatK#e)Zrp z41)9?NYWN=4I$D=QB!?aEp|Mh52vWVeu-SbM2+wI@wwZFZh!UTkx$z5drlShoKiwB zDBDltxLc!lIi2B)p4R1P#!}o%hNu183;nwlp$DFH%xr7X?N{9XTx+iN2W{`S<=tBf z?k$RYOR;zB>QjZ@agB_1^xpV7l=+PvFivgQS`374HQo&zyc0Nh`w9vToGJuPfk|lI z%7Ee>hUz(cMClCXy<-LMn8NOI15U@WGRsZ+DE{4GV72e3Q=gdr;7$Mtg*pd~`uS=Cj-?MS<- z8-{pCJJrirOQUPaZ8(kUO1q8WX?xm9vw!(unocO27ys93W^u*jQ|Kgh-PJ#owW#vG zH0M=gNm!a_9EiGApR8d?v=}wTZo0>>R`$8bJe}vNBY`T~sB#_%WQxA@K-L4N84hmq zGk#!mbxegMj-hKbWoT2CBv$oRYi=TtGiE3^o2y1HjM)4&k{Sr3s>&SDuvuk-YUp6a z_9abt{TNac9pt+}2X&y)K^zvn@dP#mx|~JO!*dGp`+5`>nW0F~AwP{w7)6us;H_k( zZS|!5Q}X?H1eoC)BYQ(|>U5AXR)k*_PK}+=#kVim%m}MyvvQtt_#29*nK?4^x@zVX zu1x+JB0YfI$s-7>2smm1bJTvy8146RzWzc-AcGTV{Wm>|@6pvQw?a5z)7E*nZR}3l z*y@4Xz4^A|g|_1$5N5p-)(5xU9o%_maA$sScVTdM*@^({opjOONtZL@DLXmPK{}0E z=-7(9dxi=?<_oG)o-usKk^FuEbhF+-S z)&@hXGiy?Q;6P#EK<1h3C7kn7+gQdrBvAT`FV zY8$kX0H$<%exwH}wB~9y^0iFys3)VZ9j&rzOyO6d>irQ8j<3cOtTz_k+qgz zgMxwhwUQ}Zt6osaQH4RPJ6*pSVY)$x=|fJix0^Vr-nUI_Eft4KcRZ@B$A}LjF2qwY zL|3T}69Qo>otTwmTK`J6OA&mDASp*E-k%caBX6Dvbg-pH+9RS=6*uG}#nLPaRKX8N z{?u;+F}9Quo{~9yg^7YNF4dSgjhtyNjhwwodH*ftC}2B*Wmj@)QJ~9Y!jFMnV-6-h zvcvRMHm$BFm#Noo0#uF;s*+=~qaVlK9sLjp3*HgMyLYwYR&VBLv90IE>q^_6+~xP* zgfQ9J`$yg1>(0HjI(s*C{7&fjC)Q6cP^)0k~vX)EqMkZ;2f(~_XOFKuyE=eliM{#l2lL)13f?C^ZUey^gk=B#*z;y&0r1Y#*~2Sd7=X0- z$b@7imG=%8yu)AtahL6gfjuW*|BduJZ{Bzl9AqCN;P>%Q#zA(jReojOVHM~|mr!o!I)_)^RGJRrzVw zO|9iddTW9Kg_>at=k%0Y$*+>N`ZmT}M^-LjO}ApY8iAX$dCF$9^}xy`W~22$70}sr z&-IsCAX=bCJ7QWHUb%8JMA435_p}OYq9Z_$@6WzMk^EIq6VG23nylUxOPRwXC#?Dk z{+;Z-9t`u=_8g+&v5LONqaLWu7_maK(m|yl@;Gba#&(wN9n=9jSjX98As1476NQ!? zWh;5xxKUkc?{rxMxsg?2Eu;jVEDRokor^W_vB)0vpvz|6 zZj1{Lii<}*XtG%+axbnvy7s!V^>AV22!&64LL#Geq8>DvtuT`{0>N$_%fT0qH6+HP z9<(%C_vE5w4v*W@>_Jt5s~!xtTDx+Hfyde|_PG5Rd(?xmZfn=dY?;Gj&BGoaBO+Y& zV4v68&pv@dPx=H3p6nASc$T>b0Jf;ox0d3OXd)bjg&EVd+b&2Ee5vO%;sQXGP7;zn z15n~A9(4p`DvMI#=d1yazOBqQ=ofEb-@>i z*hNxvGSk159Qdjb8iW0M^>mIcb#oB&uJ(U{sOz9#p#Op*PZ@$wURA`elc& z*tY{pR($tuHo?9}RNb6Vzkb8WaR()PjsUSUCF?wWZ;yS$sAQXGpWIVFUo=cnx+w}z zM^a=)v3tpFPpTi>W2_4M%#r%7oqt6s1_%rh_#Xs511LF;UYVBIu{(K!Ja-Y;Lx7o+ zR96m0ZbvDJZ-XJ6ro&eiO^n7fYR}dJBJ^m9j76sItnU}X0rksz2W1EN5Zqj{$a5Ta ziA<&7NK7r7qAco(^T#dsIFZpC<)%}$fK%>DlYKF&0#a09h>k@G3WyU0DG{HD9e z1r+1GSw39~XSj<-CqjRl-mLH6bxRXeXQr)1eoQgmWgBn8BC-)=_d%>R`61To;U1Xz zWPK}pmF9thd+?frzAflmIiNH{rx&>9DBDaFb0f$Gu}MfdRe}VQ3DkKb$aYiA?G#fB z7rIPPQfvhG$nW!Nz`hm}z7DeyWRmyD_w#DdShESAhS&(Q0kD0hL9l&#c%a!dL^10@ z_GOAWL@~9X0B3fU&8K-2NbTnE9`pa4L9Cx<*Y!>KZmd?DTv&c^<#(Uk< zmYIDkx*WZB92%L-xwl?ke)-z5b>4ZG@3_Nv6a`PlmOX(ZW&%DMGExvmRG$}C&f&ya zUKlP2!>Z3yD=#a;XkHjC2&4Dxyw!%0wc2R8w}Jbyx-xsOPu}Hw?(jV;=T^?Gwky38 z`QC{_@5I{Z+UV_>PYx+NC-XZe3xNFd1^#)3e;&1{OVxRMK$iHJ#c#lsfLw< z&*u+5UjXD!75GyMe~MD=zW(f8zV{B_tJdwPB6Q`2u7c3Da%|<;s-X1j$oK3h^z2yM zySDfC6=m0n{H_y)U9^Ek^#-7|*#>4vuXq0)zCUNf@6!8UyWOGq59R%b3jRYM@BMi1 zCzqAOFXa!vQ~=~(F7Pia{L55_#|nI#*5DWO{7``(Quv{D-u12LzWH2sG|zVy_)bN? O%R8XnQ7o#a<^KZt4m|Au literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/live.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/live.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..950c8bf673beb4828b189c034462591f0b1233b7 GIT binary patch literal 21344 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/live_render.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/live_render.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2527a5ad6f3caeefe08b3fd958b3901a58b7216b GIT binary patch literal 5192 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 Q$fdWCwh$l@n||2(|3l)?R{#J2 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/markup.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/markup.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5d0e28d0ec319c97a162b6008555d2b1946cac06 GIT binary patch literal 10485 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 YHId%)?)2^H6#f-^2yH9SgqOnq0vh-fFaQ7m literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/measure.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/measure.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c89522397dfc9ff03a2f4e97d4eaa18fa987a8eb GIT binary patch literal 7318 zcmcH;TWlLu_RfsQ9@}y3yiRW8n{ zuDDC(J!T3cQaUYNN-L&sR8kfBm6>TM3umT{ zR5l}}O<_#AGNWXY%J+;ln_JPetfog;Gmz2~nv#(fjgI$fspMoLDd|RpGd&~OjGl#= zn(cx$p>8&xt&VtQZdyrJ_YVb+U3u^~DBK_li8C^Zv*&=)aZYh5yv!bg9xtI~&Mv!U zm*N^{Wq!%^3H08!Cm|&6kvn8J&_j?tic5CMWZWeSQ1?3OUa0%LMDCRRieGU#=-Jdz z$MJ4Cu*AoklzjY&mRQ<;=H zql!{S7FFpjTAoeG#-uLpNoB<3q@+nnV4EHhHDE(ZQ)JP|LK%q;qr~i`DJ5w{O^-bj z6s&1Xx26~~S|*8Ht0Wc*C`k`Q05?dEOhIlXC|5D(;SRvQnfd->iXqCW@o@!KOe*3f z#h6u;Om(Yt+tv}H5msx1skBxAAagEVNssF|rTEjYW9M`@Lo6d1QaY8Aj5#$so>EfE zn^NqhIXtBLl9t7T=&|Fk?vJGvNy{Xr=ZwiLWL8fs`lgb3GnP(Widh{8qWkv6bdc=9 zX(@SGno#uEbZR=505mzP#ZVSwszvtb^c?JGTFT6a9E^x!3vO9Qut>^o5^8@xw<6z6 z7lM6xq3;1SlREmLZlLu03JOTSH-MrG%mQmvX-9}ry{iP|HphGdIJc4VH09X(`T}F{ zmA;3Kt)JOh%Q21f)~`}u1KzUpzeV2K1VXt4d6W!M$)KE~a6+Xborex@#Bp)xu(;Rf z6YX@Cikp70+JNm2avv0j#Y|RHK?3GMiXAIQt3xy-6DSW3Rt6xwrM1uotrIdTSyaY! zq%h2`bwO@=tFz8`IM$0+o4Wx^e;EMqxQRR_7KH9)&(*HA){YO8E4?ePUdvw3uFe)( zW5w3kvS%$A{`kPkmDMLcdhX_Pe;&ERd~x8;?AM;cf#byk#|r}|iUTJK!IQ<{$-Hn< zLv3O5^u{KuEQU5zWK>XOC{zW7UEnqolpNbAD0S@R8hh6h;x>F)7YY z!ri61#?~tmRDq$i7Ok;wSet0z9mPO3WJC^%FWSmUR&=U_8izle`=iRNQyeOqtIB)O zAINO22f$}8i{sm{0TqhHb{CX@?Ka<=X5oAZTiwlfJ6Z4Sc^n4m`vCy=TOHh|Y@WTv z7kZ+_p6D0conv2~E9@O9?j0!vj}(JP^1>0y-i`UX1QTw?*Y%ekF1bS~IAvf1zB^P& z?%{lA{~f-=jcsJy!}x9+sQ(||tvkRHbOY^IRFj34z*n! zzB+R)a6PchTlf1B7(Z%yK@BA+!JsI;WfhYSPSQJ0@A)_^it?}k9DBPX$E`wreS%vI z+`V1pFkrJ3yV~L$11h}{n?tiKjY9KCT2iOsx;ykJ@Ya|FuK^tk9XzWP*jQQAq|Ai! zvlqR3%Iam`i0K1jRueB?9L;8wixX*@+Fi0GNIUksAb)Pa+@YTb$a5Ha!ai^ot$)td!D~2A{|ZeWRmUqqf3P42KVjC&sDbwE{9RrGt7j zHYVT0)s;h=*nW}-BsC<^%b5vFql?+`T6kz#bsd&l7bBuEu!F>^zSL0Ksoni0MDcD_ z(k{b=|6pKt45>)E|} zvG2MbU){GlRp{DR?An(P?fb5^yV%-aW|@|A%$>e6!Q2V&b6gu73jiEG&`fO~LX7LWKAY~vme-7-RDI^jZc-BfJfVT-XE6=2{+>}UMnUT_Vk0+6k zvq@;?AlNa3iG-Aa%PZjnm=3K1JV8t=nlYzgBN21dXnO#delYyHZV9#a477Yk z=>Dm2SgtLaD3n)ymKi^#H++OA|?>lJa$6up4 z9SH4ZQUQ3*mZkG_RISybE{z)LJ+2oB({J5YR9kvYFzWnwRD{$yg11=m4ta-phesDl z4>@BrnUNbFalp*Nz)Gq;oV~{{lVyIH8RuknNyxEBNWBZu5dT+QAws~Rsyu$ew6GrR zrxquC&efawsj7R`;FLM%XmCu{%~4&wer|LMAq@+h(*rxU_ZYCRW~I-YZ(aX5as72f?v7anA{OQAMdZf41%^`T}g> zOa{!QCaUm4>o|{XL3R6B>kPO<<-=1+?XCAeHQrTAjkX2IhL&H1XL@lW1<#v~jlqr( zh1&AEmr4`_eAaw`w(Udi2AP21^g?ifVadDPyX?Cz2t`5gYu^>FvG0e*i1q@YQve?d z*yvtMsp91_gJ=#Nl0Y@DjzT1gi;Ig?$^GOzluqeJGOJDx%|BryJ3bNU(L?EMQcCMX zP^chYg(>tW0sIISlCbUW8Ymq+vK(9vu6S0vZuJ#}r;5T;Wv&jxG7yZ(T~_9(TN80x znilo1^`?OLyY`3#{WY6E0$pa4<52Kn@xYpTwJ-c`Y^tSW3wS&`A>G&8uEtvXt zH<}J XxUbmKU-n>KAnvxZ7fWOlK$-L}7myPD literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/padding.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/padding.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4f8c6c341971a4782373d6429fdfef206826833d GIT binary patch literal 7534 zcmbU`Yit`wdb8XIpCTzyqD1+%de{=J2kqE7$5!n0PNwZfw&RN|+o9tUYwk*>%!e|& z@>vW8qzB``7XG0g3|NOa09&Lf5B34NgM;&rE1&{7AV2zJX%GmpfB~aLfu_G`_}U-t zpMEpDd`Z4bbF<5DXTF*F=9`)CHN$`E=x`xO573DlivfiGofPWHX=PrD3_|yjjASN- z(oBp=+hVpf8)MU4j7#$|J}txq1}QxD$Tpcx+0%}gBkhbi)2^5+?T)z_1b8mxNq59L zXr51b)4rIG=7p3$-5Kkod3&lW9f$>hmY{SioYEbt^MXi8>7KW3#ZWBQ#Ll z8p)13NOme6U$6*0grAvWL8VuA-L#Ps-UD-Ur~1;NScpM3q=euXls$5X?0w{G@An0) z#Y6a+3Apyp(qFjqTY?G;2A7aj&EU=^0Xp7W(vsPXlrs2>%S$Q6=(za7g=l>GOmuqY zFVCMg__+*Je@p0vIm14k&8S&u<+UkQ+sO=+-RBfZUB*gU$&hM(R$ECakg?Ay3j~)ixi=vd0LZ?43gA9cP>hjL z%qBB2)`{dDGAna3|G*{-vR!t_PT2)p!7D=RR>*F}KJSn{ckD5T;-oD*6qoFk(Yzr0 z?r>iK<%i~I0Ap^&Ln(O`Xk|XF+cwY1{%w7{vRC2fZF1)wF6MKh<|FTvdjaQfVu0&i zatLspa{nv}?>6igBw0>o7995cQH#vz;29;A$_|c;qi>9hhr{EdO4j%IU^XLOPc18h;jl^Shj>A4 z(!q^A6i3_lGki>()nJ4LF^k2lc0<8pv+-nuktInMN2$PE1#ZSgDp4eR?HW+9m=ouL zhL&9#7jbgo2DG}K)wFDST$Es@DP>**1O{1Bn{>$}&q*udbp_T%NhIf!iY)#lsof9{ zj*BouAb41WVUz{vCXP7sED#r?WByb9BSi+!O49eg+G}8lBd%0PsXDu&q7IPlsG8a>m?b1f-vX94%`PQLs-s$V%#)X5Fmr60%QoL02v$+p61-b zyuqnTYMyq)#QrwxR5CV^D)H4%BXcTjZzLmWQYx90w3T!gC~9OWxfF>* zGdYVRIGMN+u|#5WX~l5F0?`N7T7;YUZSJ^g@kRf9X><1WDS5=bC}Pbs&Qlp$b6 zTgI8j?vpyQ;&k^XA#)#TExVm(WcuW7VEAm0*mi#d`@`k__ndT75v?hKDyo{40s95w zZptJmH(=$a5hH8gZhZ)*DZqcG1tLV~9K}(v2cXjDm($n5T4m>3RGF}~jhXl9lC)Su zLdx2WW8x3%*~Z+Ox=+>fRM=+97*VS*gCSHwVb)+1Db*Cfy?{{30s~n*2wy`mdB}O| zdv5VW8j=Q|p#Sbe{@%4*i76c{NgF--$dOH6_nj*HPE~xTbjK+?49yZPJJsC9e*^56 zT|`<#D-rqv@(&wjEaX8u$urN*BCVmBM3>w3TV||?#G8khsTtL*GGH(0^PLn}i^2h| zq2&l^4w#CSTKR0vw>os-t8E4!LTS~u%I0lgP2l&PTyPc_C%!KitsJ%HTLXk`+=1O& zcWhz;FqI>=;3Y$kyzk{N7D z$zUScnAmW`bxDE{BZ_ergViPyVsLRFWY_`3iQRUR47J^O7wNW}fIS3=08}Cgpd>U= zO~E?>(^M1F1-wm~{ucmH69IXGYl+VemEC(P?maccI7h49z3YMXMDdUw7|}f=&)nXE z`ZsUgeQWKbzdc?!UJV4-KDzgV!pUlP-}-QoE6RFcO!tg!Y4&Vj?>{QPn*K6SI`esU zLoE+XRR*TYp52AhYadj*cdUO{rn*hrU$*dHVMO{f(2A@#v;n z9+|0(%#=ODh3U1Pb)m=+CVPrPiPHlUx@Y2I!7dx9q)C@m|s$ zm$s`r5g%%_uRsP4K;W_$A!nvfZL$r@4f6mZ1devGq4ZXn^ry)x6UnHTxzF5S-ud%6 z#|1MW8qKi~RK8-ybGC3e%$ug|HJb<)Z~%y?WN^#efs@0^5^i^LCgv<@YC5^9FR?!S zAfo#c@NRIA9cJ#y;oluIb6<1+>Na!wrC8-s+{#0HM}jVpVTW*;98xejHyCy^zEd$- zE8GEKo7)=#*Y0%06H7M6lM~IeNMs7Edt6bhzY#F;bKQKtGRDoU_RVZ(n zEuZHXNqkAuUytSaB3agLskIeQ^wt~X%n^L87~GcG;cgqs+vWBdgS*SK?W>i66XvR;bsccH(X+YY(DT!6ee?EWS9APk zuKkR;V9Rv>KU*@ZPT+*{f>+sk)*Gd;9V7xekAwgKR}vD0`Y?^^2m9-KFNZs(jF z4CvuNI1l#*!VQHSCgD(I2KmJ8ykf*xj4K>4oC}H;r$?pc3BYisrQ30O`ZCybGK0xb z1`93CgN7Zdlj-F&bxG7i8J^`OS<)1<6Fx@TcUUNMbkmy=M`n1;NH(5IW)u~75)?=B zVGp&7_y}O|TLh4^n8BNjc&%QR$%1g5bcf@Cbt}@sjO%(z%G{*%aTG|XL?KO|X+kr` z^n=lb!$#aPiC}#DEK3e2jP{!M2$g>T@9>}Sz-dE3oqgZ<2cG%|io>7pFZ(Ad{)qx# zb^Gp4)sVyK1qWE^-dl(kqW{s|`^>-Np08*x^==G5j+FgBs*v~HYFF@H_yx;!?tBip z{V#Z1=PpXO;vab7* zw`MW?)IVJH`0u{A{#P4sK9QkW=U!;m>4IjRt^yAcME8z@rtUASGiz0Sg6 zD)|dvsi*9VRD9r(BAden4hZ_Y@8)W(tz)QgrEmp;4DCU#9182fvC>?*<4~pJ(8iVD zUi;0pU&kNEbx#!D=Ux5xCw@NhcaeJ$y>qZ;M^10eg(8OvF0z_$)sW3OQSBdGA1x+I z(Z9c`54~x=8_VVXYZ@#N=c%Dv;d=QS@-BD*qB?b}sDY{vivYg{$h zzvd!Ob;q7HU+YudA?p6uzco7{;6kC@z#1V107!ig3YL`EoCm6*Aw6`qWMmEn8zXZn{+5!7pj|EV>#kRsBso{kXT5R|pI06wrPB@{d z-H+2l3LFAj`+^VSsOJ{UZ@Uc#?`1DGqJ%nC@&%4yKFy0>(h_1d+j$!4hwb<|m?wX4s91I4iocX@E?$?X>hW%QVt%i1djsB*RMPJshELx!QH@8STL7|IDgY}(|~dx zDU$H#Pt_CO67C|`JQ*pi#N&o59#3cGWQLxb@DE6ChJg10{1TbULn0)4 zNkKsXO6o0;r%xJB&F1DEHAH}jh7Z*2ZhjZogyH?w-W|0LQh+)WJntT^@uVOi??Anw zzh`ZBeeYVV;uC9bQt3gRJzF}OB>IuiNk%)(=pyJh$vg>|-_4NuZG|sbXn*Ib*`o%X zyK1%${xYL?kJJ#!l%g9$8|stkP3z!gVp}00(RJrTvtMmD!^_P25F8uf`x+>W^9QQE zVvQx=u_^j}?(D7cP_ChN@FC;kchJVf!)|G&X*|dfrZC!7^IsYo*q9>NPb$d_@GR-+hwIKs z>$-E2#2NS+sk=(RFabpVUOC=2wcrF!K#`bdbs1odWf-Q4PU_$1ea`x8NMMATjpv0L z`tyJXF@ri9Xnm_l)Z5=G>eJibD%z>Hzn}^|{p&;P%f;CTxzd{(fsMpQ-=lY)L^p>v z)vu@ZA79jebg}aGoZdfI>As|+&YGYx3`of9VIlQ`*8HKhKEoo;Q^-AKLpmF(a{Ki5 q_c`bMBw83LjI2!-_iZ?J*RiteSOp+ARpF-e`U~L**AE2fw)`I}`SoZ3 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..98db47aef1cfb5bec498d9f2bccaa39ead3598bf GIT binary patch literal 2292 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7d65ec664e282aa41a2c6f86abd026ed1d27a9b1 GIT binary patch literal 12781 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

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

!I7S{BS4i1|@R7s@ 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/distlib/t64.exe b/.venv/lib/python3.11/site-packages/pip/_vendor/distlib/t64.exe new file mode 100644 index 0000000000000000000000000000000000000000..e8bebdba6d8f242244bf397ab067965d47c5093e GIT binary patch literal 108032 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%0AHbpwE%ZM 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 H#ex3;_fXA_ literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/distlib/util.py b/.venv/lib/python3.11/site-packages/pip/_vendor/distlib/util.py new file mode 100644 index 0000000..ba58858 --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/distlib/util.py @@ -0,0 +1,2025 @@ +# +# Copyright (C) 2012-2023 The Python Software Foundation. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +import codecs +from collections import deque +import contextlib +import csv +from glob import iglob as std_iglob +import io +import json +import logging +import os +import py_compile +import re +import socket +try: + import ssl +except ImportError: # pragma: no cover + ssl = None +import subprocess +import sys +import tarfile +import tempfile +import textwrap + +try: + import threading +except ImportError: # pragma: no cover + import dummy_threading as threading +import time + +from . import DistlibException +from .compat import (string_types, text_type, shutil, raw_input, StringIO, + cache_from_source, urlopen, urljoin, httplib, xmlrpclib, + HTTPHandler, BaseConfigurator, valid_ident, + Container, configparser, URLError, ZipFile, fsdecode, + unquote, urlparse) + +logger = logging.getLogger(__name__) + +# +# Requirement parsing code as per PEP 508 +# + +IDENTIFIER = re.compile(r'^([\w\.-]+)\s*') +VERSION_IDENTIFIER = re.compile(r'^([\w\.*+-]+)\s*') +COMPARE_OP = re.compile(r'^(<=?|>=?|={2,3}|[~!]=)\s*') +MARKER_OP = re.compile(r'^((<=?)|(>=?)|={2,3}|[~!]=|in|not\s+in)\s*') +OR = re.compile(r'^or\b\s*') +AND = re.compile(r'^and\b\s*') +NON_SPACE = re.compile(r'(\S+)\s*') +STRING_CHUNK = re.compile(r'([\s\w\.{}()*+#:;,/?!~`@$%^&=|<>\[\]-]+)') + + +def parse_marker(marker_string): + """ + Parse a marker string and return a dictionary containing a marker expression. + + The dictionary will contain keys "op", "lhs" and "rhs" for non-terminals in + the expression grammar, or strings. A string contained in quotes is to be + interpreted as a literal string, and a string not contained in quotes is a + variable (such as os_name). + """ + + def marker_var(remaining): + # either identifier, or literal string + m = IDENTIFIER.match(remaining) + if m: + result = m.groups()[0] + remaining = remaining[m.end():] + elif not remaining: + raise SyntaxError('unexpected end of input') + else: + q = remaining[0] + if q not in '\'"': + raise SyntaxError('invalid expression: %s' % remaining) + oq = '\'"'.replace(q, '') + remaining = remaining[1:] + parts = [q] + while remaining: + # either a string chunk, or oq, or q to terminate + if remaining[0] == q: + break + elif remaining[0] == oq: + parts.append(oq) + remaining = remaining[1:] + else: + m = STRING_CHUNK.match(remaining) + if not m: + raise SyntaxError('error in string literal: %s' % + remaining) + parts.append(m.groups()[0]) + remaining = remaining[m.end():] + else: + s = ''.join(parts) + raise SyntaxError('unterminated string: %s' % s) + parts.append(q) + result = ''.join(parts) + remaining = remaining[1:].lstrip() # skip past closing quote + return result, remaining + + def marker_expr(remaining): + if remaining and remaining[0] == '(': + result, remaining = marker(remaining[1:].lstrip()) + if remaining[0] != ')': + raise SyntaxError('unterminated parenthesis: %s' % remaining) + remaining = remaining[1:].lstrip() + else: + lhs, remaining = marker_var(remaining) + while remaining: + m = MARKER_OP.match(remaining) + if not m: + break + op = m.groups()[0] + remaining = remaining[m.end():] + rhs, remaining = marker_var(remaining) + lhs = {'op': op, 'lhs': lhs, 'rhs': rhs} + result = lhs + return result, remaining + + def marker_and(remaining): + lhs, remaining = marker_expr(remaining) + while remaining: + m = AND.match(remaining) + if not m: + break + remaining = remaining[m.end():] + rhs, remaining = marker_expr(remaining) + lhs = {'op': 'and', 'lhs': lhs, 'rhs': rhs} + return lhs, remaining + + def marker(remaining): + lhs, remaining = marker_and(remaining) + while remaining: + m = OR.match(remaining) + if not m: + break + remaining = remaining[m.end():] + rhs, remaining = marker_and(remaining) + lhs = {'op': 'or', 'lhs': lhs, 'rhs': rhs} + return lhs, remaining + + return marker(marker_string) + + +def parse_requirement(req): + """ + Parse a requirement passed in as a string. Return a Container + whose attributes contain the various parts of the requirement. + """ + remaining = req.strip() + if not remaining or remaining.startswith('#'): + return None + m = IDENTIFIER.match(remaining) + if not m: + raise SyntaxError('name expected: %s' % remaining) + distname = m.groups()[0] + remaining = remaining[m.end():] + extras = mark_expr = versions = uri = None + if remaining and remaining[0] == '[': + i = remaining.find(']', 1) + if i < 0: + raise SyntaxError('unterminated extra: %s' % remaining) + s = remaining[1:i] + remaining = remaining[i + 1:].lstrip() + extras = [] + while s: + m = IDENTIFIER.match(s) + if not m: + raise SyntaxError('malformed extra: %s' % s) + extras.append(m.groups()[0]) + s = s[m.end():] + if not s: + break + if s[0] != ',': + raise SyntaxError('comma expected in extras: %s' % s) + s = s[1:].lstrip() + if not extras: + extras = None + if remaining: + if remaining[0] == '@': + # it's a URI + remaining = remaining[1:].lstrip() + m = NON_SPACE.match(remaining) + if not m: + raise SyntaxError('invalid URI: %s' % remaining) + uri = m.groups()[0] + t = urlparse(uri) + # there are issues with Python and URL parsing, so this test + # is a bit crude. See bpo-20271, bpo-23505. Python doesn't + # always parse invalid URLs correctly - it should raise + # exceptions for malformed URLs + if not (t.scheme and t.netloc): + raise SyntaxError('Invalid URL: %s' % uri) + remaining = remaining[m.end():].lstrip() + else: + + def get_versions(ver_remaining): + """ + Return a list of operator, version tuples if any are + specified, else None. + """ + m = COMPARE_OP.match(ver_remaining) + versions = None + if m: + versions = [] + while True: + op = m.groups()[0] + ver_remaining = ver_remaining[m.end():] + m = VERSION_IDENTIFIER.match(ver_remaining) + if not m: + raise SyntaxError('invalid version: %s' % + ver_remaining) + v = m.groups()[0] + versions.append((op, v)) + ver_remaining = ver_remaining[m.end():] + if not ver_remaining or ver_remaining[0] != ',': + break + ver_remaining = ver_remaining[1:].lstrip() + # Some packages have a trailing comma which would break things + # See issue #148 + if not ver_remaining: + break + m = COMPARE_OP.match(ver_remaining) + if not m: + raise SyntaxError('invalid constraint: %s' % + ver_remaining) + if not versions: + versions = None + return versions, ver_remaining + + if remaining[0] != '(': + versions, remaining = get_versions(remaining) + else: + i = remaining.find(')', 1) + if i < 0: + raise SyntaxError('unterminated parenthesis: %s' % + remaining) + s = remaining[1:i] + remaining = remaining[i + 1:].lstrip() + # As a special diversion from PEP 508, allow a version number + # a.b.c in parentheses as a synonym for ~= a.b.c (because this + # is allowed in earlier PEPs) + if COMPARE_OP.match(s): + versions, _ = get_versions(s) + else: + m = VERSION_IDENTIFIER.match(s) + if not m: + raise SyntaxError('invalid constraint: %s' % s) + v = m.groups()[0] + s = s[m.end():].lstrip() + if s: + raise SyntaxError('invalid constraint: %s' % s) + versions = [('~=', v)] + + if remaining: + if remaining[0] != ';': + raise SyntaxError('invalid requirement: %s' % remaining) + remaining = remaining[1:].lstrip() + + mark_expr, remaining = parse_marker(remaining) + + if remaining and remaining[0] != '#': + raise SyntaxError('unexpected trailing data: %s' % remaining) + + if not versions: + rs = distname + else: + rs = '%s %s' % (distname, ', '.join( + ['%s %s' % con for con in versions])) + return Container(name=distname, + extras=extras, + constraints=versions, + marker=mark_expr, + url=uri, + requirement=rs) + + +def get_resources_dests(resources_root, rules): + """Find destinations for resources files""" + + def get_rel_path(root, path): + # normalizes and returns a lstripped-/-separated path + root = root.replace(os.path.sep, '/') + path = path.replace(os.path.sep, '/') + assert path.startswith(root) + return path[len(root):].lstrip('/') + + destinations = {} + for base, suffix, dest in rules: + prefix = os.path.join(resources_root, base) + for abs_base in iglob(prefix): + abs_glob = os.path.join(abs_base, suffix) + for abs_path in iglob(abs_glob): + resource_file = get_rel_path(resources_root, abs_path) + if dest is None: # remove the entry if it was here + destinations.pop(resource_file, None) + else: + rel_path = get_rel_path(abs_base, abs_path) + rel_dest = dest.replace(os.path.sep, '/').rstrip('/') + destinations[resource_file] = rel_dest + '/' + rel_path + return destinations + + +def in_venv(): + if hasattr(sys, 'real_prefix'): + # virtualenv venvs + result = True + else: + # PEP 405 venvs + result = sys.prefix != getattr(sys, 'base_prefix', sys.prefix) + return result + + +def get_executable(): + # The __PYVENV_LAUNCHER__ dance is apparently no longer needed, as + # changes to the stub launcher mean that sys.executable always points + # to the stub on OS X + # if sys.platform == 'darwin' and ('__PYVENV_LAUNCHER__' + # in os.environ): + # result = os.environ['__PYVENV_LAUNCHER__'] + # else: + # result = sys.executable + # return result + # Avoid normcasing: see issue #143 + # result = os.path.normcase(sys.executable) + result = sys.executable + if not isinstance(result, text_type): + result = fsdecode(result) + return result + + +def proceed(prompt, allowed_chars, error_prompt=None, default=None): + p = prompt + while True: + s = raw_input(p) + p = prompt + if not s and default: + s = default + if s: + c = s[0].lower() + if c in allowed_chars: + break + if error_prompt: + p = '%c: %s\n%s' % (c, error_prompt, prompt) + return c + + +def extract_by_key(d, keys): + if isinstance(keys, string_types): + keys = keys.split() + result = {} + for key in keys: + if key in d: + result[key] = d[key] + return result + + +def read_exports(stream): + if sys.version_info[0] >= 3: + # needs to be a text stream + stream = codecs.getreader('utf-8')(stream) + # Try to load as JSON, falling back on legacy format + data = stream.read() + stream = StringIO(data) + try: + jdata = json.load(stream) + result = jdata['extensions']['python.exports']['exports'] + for group, entries in result.items(): + for k, v in entries.items(): + s = '%s = %s' % (k, v) + entry = get_export_entry(s) + assert entry is not None + entries[k] = entry + return result + except Exception: + stream.seek(0, 0) + + def read_stream(cp, stream): + if hasattr(cp, 'read_file'): + cp.read_file(stream) + else: + cp.readfp(stream) + + cp = configparser.ConfigParser() + try: + read_stream(cp, stream) + except configparser.MissingSectionHeaderError: + stream.close() + data = textwrap.dedent(data) + stream = StringIO(data) + read_stream(cp, stream) + + result = {} + for key in cp.sections(): + result[key] = entries = {} + for name, value in cp.items(key): + s = '%s = %s' % (name, value) + entry = get_export_entry(s) + assert entry is not None + # entry.dist = self + entries[name] = entry + return result + + +def write_exports(exports, stream): + if sys.version_info[0] >= 3: + # needs to be a text stream + stream = codecs.getwriter('utf-8')(stream) + cp = configparser.ConfigParser() + for k, v in exports.items(): + # TODO check k, v for valid values + cp.add_section(k) + for entry in v.values(): + if entry.suffix is None: + s = entry.prefix + else: + s = '%s:%s' % (entry.prefix, entry.suffix) + if entry.flags: + s = '%s [%s]' % (s, ', '.join(entry.flags)) + cp.set(k, entry.name, s) + cp.write(stream) + + +@contextlib.contextmanager +def tempdir(): + td = tempfile.mkdtemp() + try: + yield td + finally: + shutil.rmtree(td) + + +@contextlib.contextmanager +def chdir(d): + cwd = os.getcwd() + try: + os.chdir(d) + yield + finally: + os.chdir(cwd) + + +@contextlib.contextmanager +def socket_timeout(seconds=15): + cto = socket.getdefaulttimeout() + try: + socket.setdefaulttimeout(seconds) + yield + finally: + socket.setdefaulttimeout(cto) + + +class cached_property(object): + + def __init__(self, func): + self.func = func + # for attr in ('__name__', '__module__', '__doc__'): + # setattr(self, attr, getattr(func, attr, None)) + + def __get__(self, obj, cls=None): + if obj is None: + return self + value = self.func(obj) + object.__setattr__(obj, self.func.__name__, value) + # obj.__dict__[self.func.__name__] = value = self.func(obj) + return value + + +def convert_path(pathname): + """Return 'pathname' as a name that will work on the native filesystem. + + The path is split on '/' and put back together again using the current + directory separator. Needed because filenames in the setup script are + always supplied in Unix style, and have to be converted to the local + convention before we can actually use them in the filesystem. Raises + ValueError on non-Unix-ish systems if 'pathname' either starts or + ends with a slash. + """ + if os.sep == '/': + return pathname + if not pathname: + return pathname + if pathname[0] == '/': + raise ValueError("path '%s' cannot be absolute" % pathname) + if pathname[-1] == '/': + raise ValueError("path '%s' cannot end with '/'" % pathname) + + paths = pathname.split('/') + while os.curdir in paths: + paths.remove(os.curdir) + if not paths: + return os.curdir + return os.path.join(*paths) + + +class FileOperator(object): + + def __init__(self, dry_run=False): + self.dry_run = dry_run + self.ensured = set() + self._init_record() + + def _init_record(self): + self.record = False + self.files_written = set() + self.dirs_created = set() + + def record_as_written(self, path): + if self.record: + self.files_written.add(path) + + def newer(self, source, target): + """Tell if the target is newer than the source. + + Returns true if 'source' exists and is more recently modified than + 'target', or if 'source' exists and 'target' doesn't. + + Returns false if both exist and 'target' is the same age or younger + than 'source'. Raise PackagingFileError if 'source' does not exist. + + Note that this test is not very accurate: files created in the same + second will have the same "age". + """ + if not os.path.exists(source): + raise DistlibException("file '%r' does not exist" % + os.path.abspath(source)) + if not os.path.exists(target): + return True + + return os.stat(source).st_mtime > os.stat(target).st_mtime + + def copy_file(self, infile, outfile, check=True): + """Copy a file respecting dry-run and force flags. + """ + self.ensure_dir(os.path.dirname(outfile)) + logger.info('Copying %s to %s', infile, outfile) + if not self.dry_run: + msg = None + if check: + if os.path.islink(outfile): + msg = '%s is a symlink' % outfile + elif os.path.exists(outfile) and not os.path.isfile(outfile): + msg = '%s is a non-regular file' % outfile + if msg: + raise ValueError(msg + ' which would be overwritten') + shutil.copyfile(infile, outfile) + self.record_as_written(outfile) + + def copy_stream(self, instream, outfile, encoding=None): + assert not os.path.isdir(outfile) + self.ensure_dir(os.path.dirname(outfile)) + logger.info('Copying stream %s to %s', instream, outfile) + if not self.dry_run: + if encoding is None: + outstream = open(outfile, 'wb') + else: + outstream = codecs.open(outfile, 'w', encoding=encoding) + try: + shutil.copyfileobj(instream, outstream) + finally: + outstream.close() + self.record_as_written(outfile) + + def write_binary_file(self, path, data): + self.ensure_dir(os.path.dirname(path)) + if not self.dry_run: + if os.path.exists(path): + os.remove(path) + with open(path, 'wb') as f: + f.write(data) + self.record_as_written(path) + + def write_text_file(self, path, data, encoding): + self.write_binary_file(path, data.encode(encoding)) + + def set_mode(self, bits, mask, files): + if os.name == 'posix' or (os.name == 'java' and os._name == 'posix'): + # Set the executable bits (owner, group, and world) on + # all the files specified. + for f in files: + if self.dry_run: + logger.info("changing mode of %s", f) + else: + mode = (os.stat(f).st_mode | bits) & mask + logger.info("changing mode of %s to %o", f, mode) + os.chmod(f, mode) + + set_executable_mode = lambda s, f: s.set_mode(0o555, 0o7777, f) + + def ensure_dir(self, path): + path = os.path.abspath(path) + if path not in self.ensured and not os.path.exists(path): + self.ensured.add(path) + d, f = os.path.split(path) + self.ensure_dir(d) + logger.info('Creating %s' % path) + if not self.dry_run: + os.mkdir(path) + if self.record: + self.dirs_created.add(path) + + def byte_compile(self, + path, + optimize=False, + force=False, + prefix=None, + hashed_invalidation=False): + dpath = cache_from_source(path, not optimize) + logger.info('Byte-compiling %s to %s', path, dpath) + if not self.dry_run: + if force or self.newer(path, dpath): + if not prefix: + diagpath = None + else: + assert path.startswith(prefix) + diagpath = path[len(prefix):] + compile_kwargs = {} + if hashed_invalidation and hasattr(py_compile, + 'PycInvalidationMode'): + compile_kwargs[ + 'invalidation_mode'] = py_compile.PycInvalidationMode.CHECKED_HASH + py_compile.compile(path, dpath, diagpath, True, + **compile_kwargs) # raise error + self.record_as_written(dpath) + return dpath + + def ensure_removed(self, path): + if os.path.exists(path): + if os.path.isdir(path) and not os.path.islink(path): + logger.debug('Removing directory tree at %s', path) + if not self.dry_run: + shutil.rmtree(path) + if self.record: + if path in self.dirs_created: + self.dirs_created.remove(path) + else: + if os.path.islink(path): + s = 'link' + else: + s = 'file' + logger.debug('Removing %s %s', s, path) + if not self.dry_run: + os.remove(path) + if self.record: + if path in self.files_written: + self.files_written.remove(path) + + def is_writable(self, path): + result = False + while not result: + if os.path.exists(path): + result = os.access(path, os.W_OK) + break + parent = os.path.dirname(path) + if parent == path: + break + path = parent + return result + + def commit(self): + """ + Commit recorded changes, turn off recording, return + changes. + """ + assert self.record + result = self.files_written, self.dirs_created + self._init_record() + return result + + def rollback(self): + if not self.dry_run: + for f in list(self.files_written): + if os.path.exists(f): + os.remove(f) + # dirs should all be empty now, except perhaps for + # __pycache__ subdirs + # reverse so that subdirs appear before their parents + dirs = sorted(self.dirs_created, reverse=True) + for d in dirs: + flist = os.listdir(d) + if flist: + assert flist == ['__pycache__'] + sd = os.path.join(d, flist[0]) + os.rmdir(sd) + os.rmdir(d) # should fail if non-empty + self._init_record() + + +def resolve(module_name, dotted_path): + if module_name in sys.modules: + mod = sys.modules[module_name] + else: + mod = __import__(module_name) + if dotted_path is None: + result = mod + else: + parts = dotted_path.split('.') + result = getattr(mod, parts.pop(0)) + for p in parts: + result = getattr(result, p) + return result + + +class ExportEntry(object): + + def __init__(self, name, prefix, suffix, flags): + self.name = name + self.prefix = prefix + self.suffix = suffix + self.flags = flags + + @cached_property + def value(self): + return resolve(self.prefix, self.suffix) + + def __repr__(self): # pragma: no cover + return '' % (self.name, self.prefix, + self.suffix, self.flags) + + def __eq__(self, other): + if not isinstance(other, ExportEntry): + result = False + else: + result = (self.name == other.name and self.prefix == other.prefix + and self.suffix == other.suffix + and self.flags == other.flags) + return result + + __hash__ = object.__hash__ + + +ENTRY_RE = re.compile( + r'''(?P([^\[]\S*)) + \s*=\s*(?P(\w+)([:\.]\w+)*) + \s*(\[\s*(?P[\w-]+(=\w+)?(,\s*\w+(=\w+)?)*)\s*\])? + ''', re.VERBOSE) + + +def get_export_entry(specification): + m = ENTRY_RE.search(specification) + if not m: + result = None + if '[' in specification or ']' in specification: + raise DistlibException("Invalid specification " + "'%s'" % specification) + else: + d = m.groupdict() + name = d['name'] + path = d['callable'] + colons = path.count(':') + if colons == 0: + prefix, suffix = path, None + else: + if colons != 1: + raise DistlibException("Invalid specification " + "'%s'" % specification) + prefix, suffix = path.split(':') + flags = d['flags'] + if flags is None: + if '[' in specification or ']' in specification: + raise DistlibException("Invalid specification " + "'%s'" % specification) + flags = [] + else: + flags = [f.strip() for f in flags.split(',')] + result = ExportEntry(name, prefix, suffix, flags) + return result + + +def get_cache_base(suffix=None): + """ + Return the default base location for distlib caches. If the directory does + not exist, it is created. Use the suffix provided for the base directory, + and default to '.distlib' if it isn't provided. + + On Windows, if LOCALAPPDATA is defined in the environment, then it is + assumed to be a directory, and will be the parent directory of the result. + On POSIX, and on Windows if LOCALAPPDATA is not defined, the user's home + directory - using os.expanduser('~') - will be the parent directory of + the result. + + The result is just the directory '.distlib' in the parent directory as + determined above, or with the name specified with ``suffix``. + """ + if suffix is None: + suffix = '.distlib' + if os.name == 'nt' and 'LOCALAPPDATA' in os.environ: + result = os.path.expandvars('$localappdata') + else: + # Assume posix, or old Windows + result = os.path.expanduser('~') + # we use 'isdir' instead of 'exists', because we want to + # fail if there's a file with that name + if os.path.isdir(result): + usable = os.access(result, os.W_OK) + if not usable: + logger.warning('Directory exists but is not writable: %s', result) + else: + try: + os.makedirs(result) + usable = True + except OSError: + logger.warning('Unable to create %s', result, exc_info=True) + usable = False + if not usable: + result = tempfile.mkdtemp() + logger.warning('Default location unusable, using %s', result) + return os.path.join(result, suffix) + + +def path_to_cache_dir(path): + """ + Convert an absolute path to a directory name for use in a cache. + + The algorithm used is: + + #. On Windows, any ``':'`` in the drive is replaced with ``'---'``. + #. Any occurrence of ``os.sep`` is replaced with ``'--'``. + #. ``'.cache'`` is appended. + """ + d, p = os.path.splitdrive(os.path.abspath(path)) + if d: + d = d.replace(':', '---') + p = p.replace(os.sep, '--') + return d + p + '.cache' + + +def ensure_slash(s): + if not s.endswith('/'): + return s + '/' + return s + + +def parse_credentials(netloc): + username = password = None + if '@' in netloc: + prefix, netloc = netloc.rsplit('@', 1) + if ':' not in prefix: + username = prefix + else: + username, password = prefix.split(':', 1) + if username: + username = unquote(username) + if password: + password = unquote(password) + return username, password, netloc + + +def get_process_umask(): + result = os.umask(0o22) + os.umask(result) + return result + + +def is_string_sequence(seq): + result = True + i = None + for i, s in enumerate(seq): + if not isinstance(s, string_types): + result = False + break + assert i is not None + return result + + +PROJECT_NAME_AND_VERSION = re.compile( + '([a-z0-9_]+([.-][a-z_][a-z0-9_]*)*)-' + '([a-z0-9_.+-]+)', re.I) +PYTHON_VERSION = re.compile(r'-py(\d\.?\d?)') + + +def split_filename(filename, project_name=None): + """ + Extract name, version, python version from a filename (no extension) + + Return name, version, pyver or None + """ + result = None + pyver = None + filename = unquote(filename).replace(' ', '-') + m = PYTHON_VERSION.search(filename) + if m: + pyver = m.group(1) + filename = filename[:m.start()] + if project_name and len(filename) > len(project_name) + 1: + m = re.match(re.escape(project_name) + r'\b', filename) + if m: + n = m.end() + result = filename[:n], filename[n + 1:], pyver + if result is None: + m = PROJECT_NAME_AND_VERSION.match(filename) + if m: + result = m.group(1), m.group(3), pyver + return result + + +# Allow spaces in name because of legacy dists like "Twisted Core" +NAME_VERSION_RE = re.compile(r'(?P[\w .-]+)\s*' + r'\(\s*(?P[^\s)]+)\)$') + + +def parse_name_and_version(p): + """ + A utility method used to get name and version from a string. + + From e.g. a Provides-Dist value. + + :param p: A value in a form 'foo (1.0)' + :return: The name and version as a tuple. + """ + m = NAME_VERSION_RE.match(p) + if not m: + raise DistlibException('Ill-formed name/version string: \'%s\'' % p) + d = m.groupdict() + return d['name'].strip().lower(), d['ver'] + + +def get_extras(requested, available): + result = set() + requested = set(requested or []) + available = set(available or []) + if '*' in requested: + requested.remove('*') + result |= available + for r in requested: + if r == '-': + result.add(r) + elif r.startswith('-'): + unwanted = r[1:] + if unwanted not in available: + logger.warning('undeclared extra: %s' % unwanted) + if unwanted in result: + result.remove(unwanted) + else: + if r not in available: + logger.warning('undeclared extra: %s' % r) + result.add(r) + return result + + +# +# Extended metadata functionality +# + + +def _get_external_data(url): + result = {} + try: + # urlopen might fail if it runs into redirections, + # because of Python issue #13696. Fixed in locators + # using a custom redirect handler. + resp = urlopen(url) + headers = resp.info() + ct = headers.get('Content-Type') + if not ct.startswith('application/json'): + logger.debug('Unexpected response for JSON request: %s', ct) + else: + reader = codecs.getreader('utf-8')(resp) + # data = reader.read().decode('utf-8') + # result = json.loads(data) + result = json.load(reader) + except Exception as e: + logger.exception('Failed to get external data for %s: %s', url, e) + return result + + +_external_data_base_url = 'https://www.red-dove.com/pypi/projects/' + + +def get_project_data(name): + url = '%s/%s/project.json' % (name[0].upper(), name) + url = urljoin(_external_data_base_url, url) + result = _get_external_data(url) + return result + + +def get_package_data(name, version): + url = '%s/%s/package-%s.json' % (name[0].upper(), name, version) + url = urljoin(_external_data_base_url, url) + return _get_external_data(url) + + +class Cache(object): + """ + A class implementing a cache for resources that need to live in the file system + e.g. shared libraries. This class was moved from resources to here because it + could be used by other modules, e.g. the wheel module. + """ + + def __init__(self, base): + """ + Initialise an instance. + + :param base: The base directory where the cache should be located. + """ + # we use 'isdir' instead of 'exists', because we want to + # fail if there's a file with that name + if not os.path.isdir(base): # pragma: no cover + os.makedirs(base) + if (os.stat(base).st_mode & 0o77) != 0: + logger.warning('Directory \'%s\' is not private', base) + self.base = os.path.abspath(os.path.normpath(base)) + + def prefix_to_dir(self, prefix): + """ + Converts a resource prefix to a directory name in the cache. + """ + return path_to_cache_dir(prefix) + + def clear(self): + """ + Clear the cache. + """ + not_removed = [] + for fn in os.listdir(self.base): + fn = os.path.join(self.base, fn) + try: + if os.path.islink(fn) or os.path.isfile(fn): + os.remove(fn) + elif os.path.isdir(fn): + shutil.rmtree(fn) + except Exception: + not_removed.append(fn) + return not_removed + + +class EventMixin(object): + """ + A very simple publish/subscribe system. + """ + + def __init__(self): + self._subscribers = {} + + def add(self, event, subscriber, append=True): + """ + Add a subscriber for an event. + + :param event: The name of an event. + :param subscriber: The subscriber to be added (and called when the + event is published). + :param append: Whether to append or prepend the subscriber to an + existing subscriber list for the event. + """ + subs = self._subscribers + if event not in subs: + subs[event] = deque([subscriber]) + else: + sq = subs[event] + if append: + sq.append(subscriber) + else: + sq.appendleft(subscriber) + + def remove(self, event, subscriber): + """ + Remove a subscriber for an event. + + :param event: The name of an event. + :param subscriber: The subscriber to be removed. + """ + subs = self._subscribers + if event not in subs: + raise ValueError('No subscribers: %r' % event) + subs[event].remove(subscriber) + + def get_subscribers(self, event): + """ + Return an iterator for the subscribers for an event. + :param event: The event to return subscribers for. + """ + return iter(self._subscribers.get(event, ())) + + def publish(self, event, *args, **kwargs): + """ + Publish a event and return a list of values returned by its + subscribers. + + :param event: The event to publish. + :param args: The positional arguments to pass to the event's + subscribers. + :param kwargs: The keyword arguments to pass to the event's + subscribers. + """ + result = [] + for subscriber in self.get_subscribers(event): + try: + value = subscriber(event, *args, **kwargs) + except Exception: + logger.exception('Exception during event publication') + value = None + result.append(value) + logger.debug('publish %s: args = %s, kwargs = %s, result = %s', event, + args, kwargs, result) + return result + + +# +# Simple sequencing +# +class Sequencer(object): + + def __init__(self): + self._preds = {} + self._succs = {} + self._nodes = set() # nodes with no preds/succs + + def add_node(self, node): + self._nodes.add(node) + + def remove_node(self, node, edges=False): + if node in self._nodes: + self._nodes.remove(node) + if edges: + for p in set(self._preds.get(node, ())): + self.remove(p, node) + for s in set(self._succs.get(node, ())): + self.remove(node, s) + # Remove empties + for k, v in list(self._preds.items()): + if not v: + del self._preds[k] + for k, v in list(self._succs.items()): + if not v: + del self._succs[k] + + def add(self, pred, succ): + assert pred != succ + self._preds.setdefault(succ, set()).add(pred) + self._succs.setdefault(pred, set()).add(succ) + + def remove(self, pred, succ): + assert pred != succ + try: + preds = self._preds[succ] + succs = self._succs[pred] + except KeyError: # pragma: no cover + raise ValueError('%r not a successor of anything' % succ) + try: + preds.remove(pred) + succs.remove(succ) + except KeyError: # pragma: no cover + raise ValueError('%r not a successor of %r' % (succ, pred)) + + def is_step(self, step): + return (step in self._preds or step in self._succs + or step in self._nodes) + + def get_steps(self, final): + if not self.is_step(final): + raise ValueError('Unknown: %r' % final) + result = [] + todo = [] + seen = set() + todo.append(final) + while todo: + step = todo.pop(0) + if step in seen: + # if a step was already seen, + # move it to the end (so it will appear earlier + # when reversed on return) ... but not for the + # final step, as that would be confusing for + # users + if step != final: + result.remove(step) + result.append(step) + else: + seen.add(step) + result.append(step) + preds = self._preds.get(step, ()) + todo.extend(preds) + return reversed(result) + + @property + def strong_connections(self): + # http://en.wikipedia.org/wiki/Tarjan%27s_strongly_connected_components_algorithm + index_counter = [0] + stack = [] + lowlinks = {} + index = {} + result = [] + + graph = self._succs + + def strongconnect(node): + # set the depth index for this node to the smallest unused index + index[node] = index_counter[0] + lowlinks[node] = index_counter[0] + index_counter[0] += 1 + stack.append(node) + + # Consider successors + try: + successors = graph[node] + except Exception: + successors = [] + for successor in successors: + if successor not in lowlinks: + # Successor has not yet been visited + strongconnect(successor) + lowlinks[node] = min(lowlinks[node], lowlinks[successor]) + elif successor in stack: + # the successor is in the stack and hence in the current + # strongly connected component (SCC) + lowlinks[node] = min(lowlinks[node], index[successor]) + + # If `node` is a root node, pop the stack and generate an SCC + if lowlinks[node] == index[node]: + connected_component = [] + + while True: + successor = stack.pop() + connected_component.append(successor) + if successor == node: + break + component = tuple(connected_component) + # storing the result + result.append(component) + + for node in graph: + if node not in lowlinks: + strongconnect(node) + + return result + + @property + def dot(self): + result = ['digraph G {'] + for succ in self._preds: + preds = self._preds[succ] + for pred in preds: + result.append(' %s -> %s;' % (pred, succ)) + for node in self._nodes: + result.append(' %s;' % node) + result.append('}') + return '\n'.join(result) + + +# +# Unarchiving functionality for zip, tar, tgz, tbz, whl +# + +ARCHIVE_EXTENSIONS = ('.tar.gz', '.tar.bz2', '.tar', '.zip', '.tgz', '.tbz', + '.whl') + + +def unarchive(archive_filename, dest_dir, format=None, check=True): + + def check_path(path): + if not isinstance(path, text_type): + path = path.decode('utf-8') + p = os.path.abspath(os.path.join(dest_dir, path)) + if not p.startswith(dest_dir) or p[plen] != os.sep: + raise ValueError('path outside destination: %r' % p) + + dest_dir = os.path.abspath(dest_dir) + plen = len(dest_dir) + archive = None + if format is None: + if archive_filename.endswith(('.zip', '.whl')): + format = 'zip' + elif archive_filename.endswith(('.tar.gz', '.tgz')): + format = 'tgz' + mode = 'r:gz' + elif archive_filename.endswith(('.tar.bz2', '.tbz')): + format = 'tbz' + mode = 'r:bz2' + elif archive_filename.endswith('.tar'): + format = 'tar' + mode = 'r' + else: # pragma: no cover + raise ValueError('Unknown format for %r' % archive_filename) + try: + if format == 'zip': + archive = ZipFile(archive_filename, 'r') + if check: + names = archive.namelist() + for name in names: + check_path(name) + else: + archive = tarfile.open(archive_filename, mode) + if check: + names = archive.getnames() + for name in names: + check_path(name) + if format != 'zip' and sys.version_info[0] < 3: + # See Python issue 17153. If the dest path contains Unicode, + # tarfile extraction fails on Python 2.x if a member path name + # contains non-ASCII characters - it leads to an implicit + # bytes -> unicode conversion using ASCII to decode. + for tarinfo in archive.getmembers(): + if not isinstance(tarinfo.name, text_type): + tarinfo.name = tarinfo.name.decode('utf-8') + + # Limit extraction of dangerous items, if this Python + # allows it easily. If not, just trust the input. + # See: https://docs.python.org/3/library/tarfile.html#extraction-filters + def extraction_filter(member, path): + """Run tarfile.tar_filter, but raise the expected ValueError""" + # This is only called if the current Python has tarfile filters + try: + return tarfile.tar_filter(member, path) + except tarfile.FilterError as exc: + raise ValueError(str(exc)) + + archive.extraction_filter = extraction_filter + + archive.extractall(dest_dir) + + finally: + if archive: + archive.close() + + +def zip_dir(directory): + """zip a directory tree into a BytesIO object""" + result = io.BytesIO() + dlen = len(directory) + with ZipFile(result, "w") as zf: + for root, dirs, files in os.walk(directory): + for name in files: + full = os.path.join(root, name) + rel = root[dlen:] + dest = os.path.join(rel, name) + zf.write(full, dest) + return result + + +# +# Simple progress bar +# + +UNITS = ('', 'K', 'M', 'G', 'T', 'P') + + +class Progress(object): + unknown = 'UNKNOWN' + + def __init__(self, minval=0, maxval=100): + assert maxval is None or maxval >= minval + self.min = self.cur = minval + self.max = maxval + self.started = None + self.elapsed = 0 + self.done = False + + def update(self, curval): + assert self.min <= curval + assert self.max is None or curval <= self.max + self.cur = curval + now = time.time() + if self.started is None: + self.started = now + else: + self.elapsed = now - self.started + + def increment(self, incr): + assert incr >= 0 + self.update(self.cur + incr) + + def start(self): + self.update(self.min) + return self + + def stop(self): + if self.max is not None: + self.update(self.max) + self.done = True + + @property + def maximum(self): + return self.unknown if self.max is None else self.max + + @property + def percentage(self): + if self.done: + result = '100 %' + elif self.max is None: + result = ' ?? %' + else: + v = 100.0 * (self.cur - self.min) / (self.max - self.min) + result = '%3d %%' % v + return result + + def format_duration(self, duration): + if (duration <= 0) and self.max is None or self.cur == self.min: + result = '??:??:??' + # elif duration < 1: + # result = '--:--:--' + else: + result = time.strftime('%H:%M:%S', time.gmtime(duration)) + return result + + @property + def ETA(self): + if self.done: + prefix = 'Done' + t = self.elapsed + # import pdb; pdb.set_trace() + else: + prefix = 'ETA ' + if self.max is None: + t = -1 + elif self.elapsed == 0 or (self.cur == self.min): + t = 0 + else: + # import pdb; pdb.set_trace() + t = float(self.max - self.min) + t /= self.cur - self.min + t = (t - 1) * self.elapsed + return '%s: %s' % (prefix, self.format_duration(t)) + + @property + def speed(self): + if self.elapsed == 0: + result = 0.0 + else: + result = (self.cur - self.min) / self.elapsed + for unit in UNITS: + if result < 1000: + break + result /= 1000.0 + return '%d %sB/s' % (result, unit) + + +# +# Glob functionality +# + +RICH_GLOB = re.compile(r'\{([^}]*)\}') +_CHECK_RECURSIVE_GLOB = re.compile(r'[^/\\,{]\*\*|\*\*[^/\\,}]') +_CHECK_MISMATCH_SET = re.compile(r'^[^{]*\}|\{[^}]*$') + + +def iglob(path_glob): + """Extended globbing function that supports ** and {opt1,opt2,opt3}.""" + if _CHECK_RECURSIVE_GLOB.search(path_glob): + msg = """invalid glob %r: recursive glob "**" must be used alone""" + raise ValueError(msg % path_glob) + if _CHECK_MISMATCH_SET.search(path_glob): + msg = """invalid glob %r: mismatching set marker '{' or '}'""" + raise ValueError(msg % path_glob) + return _iglob(path_glob) + + +def _iglob(path_glob): + rich_path_glob = RICH_GLOB.split(path_glob, 1) + if len(rich_path_glob) > 1: + assert len(rich_path_glob) == 3, rich_path_glob + prefix, set, suffix = rich_path_glob + for item in set.split(','): + for path in _iglob(''.join((prefix, item, suffix))): + yield path + else: + if '**' not in path_glob: + for item in std_iglob(path_glob): + yield item + else: + prefix, radical = path_glob.split('**', 1) + if prefix == '': + prefix = '.' + if radical == '': + radical = '*' + else: + # we support both + radical = radical.lstrip('/') + radical = radical.lstrip('\\') + for path, dir, files in os.walk(prefix): + path = os.path.normpath(path) + for fn in _iglob(os.path.join(path, radical)): + yield fn + + +if ssl: + from .compat import (HTTPSHandler as BaseHTTPSHandler, match_hostname, + CertificateError) + + # + # HTTPSConnection which verifies certificates/matches domains + # + + class HTTPSConnection(httplib.HTTPSConnection): + ca_certs = None # set this to the path to the certs file (.pem) + check_domain = True # only used if ca_certs is not None + + # noinspection PyPropertyAccess + def connect(self): + sock = socket.create_connection((self.host, self.port), + self.timeout) + if getattr(self, '_tunnel_host', False): + self.sock = sock + self._tunnel() + + context = ssl.SSLContext(ssl.PROTOCOL_SSLv23) + if hasattr(ssl, 'OP_NO_SSLv2'): + context.options |= ssl.OP_NO_SSLv2 + if getattr(self, 'cert_file', None): + context.load_cert_chain(self.cert_file, self.key_file) + kwargs = {} + if self.ca_certs: + context.verify_mode = ssl.CERT_REQUIRED + context.load_verify_locations(cafile=self.ca_certs) + if getattr(ssl, 'HAS_SNI', False): + kwargs['server_hostname'] = self.host + + self.sock = context.wrap_socket(sock, **kwargs) + if self.ca_certs and self.check_domain: + try: + match_hostname(self.sock.getpeercert(), self.host) + logger.debug('Host verified: %s', self.host) + except CertificateError: # pragma: no cover + self.sock.shutdown(socket.SHUT_RDWR) + self.sock.close() + raise + + class HTTPSHandler(BaseHTTPSHandler): + + def __init__(self, ca_certs, check_domain=True): + BaseHTTPSHandler.__init__(self) + self.ca_certs = ca_certs + self.check_domain = check_domain + + def _conn_maker(self, *args, **kwargs): + """ + This is called to create a connection instance. Normally you'd + pass a connection class to do_open, but it doesn't actually check for + a class, and just expects a callable. As long as we behave just as a + constructor would have, we should be OK. If it ever changes so that + we *must* pass a class, we'll create an UnsafeHTTPSConnection class + which just sets check_domain to False in the class definition, and + choose which one to pass to do_open. + """ + result = HTTPSConnection(*args, **kwargs) + if self.ca_certs: + result.ca_certs = self.ca_certs + result.check_domain = self.check_domain + return result + + def https_open(self, req): + try: + return self.do_open(self._conn_maker, req) + except URLError as e: + if 'certificate verify failed' in str(e.reason): + raise CertificateError( + 'Unable to verify server certificate ' + 'for %s' % req.host) + else: + raise + + # + # To prevent against mixing HTTP traffic with HTTPS (examples: A Man-In-The- + # Middle proxy using HTTP listens on port 443, or an index mistakenly serves + # HTML containing a http://xyz link when it should be https://xyz), + # you can use the following handler class, which does not allow HTTP traffic. + # + # It works by inheriting from HTTPHandler - so build_opener won't add a + # handler for HTTP itself. + # + class HTTPSOnlyHandler(HTTPSHandler, HTTPHandler): + + def http_open(self, req): + raise URLError( + 'Unexpected HTTP request on what should be a secure ' + 'connection: %s' % req) + + +# +# XML-RPC with timeouts +# +class Transport(xmlrpclib.Transport): + + def __init__(self, timeout, use_datetime=0): + self.timeout = timeout + xmlrpclib.Transport.__init__(self, use_datetime) + + def make_connection(self, host): + h, eh, x509 = self.get_host_info(host) + if not self._connection or host != self._connection[0]: + self._extra_headers = eh + self._connection = host, httplib.HTTPConnection(h) + return self._connection[1] + + +if ssl: + + class SafeTransport(xmlrpclib.SafeTransport): + + def __init__(self, timeout, use_datetime=0): + self.timeout = timeout + xmlrpclib.SafeTransport.__init__(self, use_datetime) + + def make_connection(self, host): + h, eh, kwargs = self.get_host_info(host) + if not kwargs: + kwargs = {} + kwargs['timeout'] = self.timeout + if not self._connection or host != self._connection[0]: + self._extra_headers = eh + self._connection = host, httplib.HTTPSConnection( + h, None, **kwargs) + return self._connection[1] + + +class ServerProxy(xmlrpclib.ServerProxy): + + def __init__(self, uri, **kwargs): + self.timeout = timeout = kwargs.pop('timeout', None) + # The above classes only come into play if a timeout + # is specified + if timeout is not None: + # scheme = splittype(uri) # deprecated as of Python 3.8 + scheme = urlparse(uri)[0] + use_datetime = kwargs.get('use_datetime', 0) + if scheme == 'https': + tcls = SafeTransport + else: + tcls = Transport + kwargs['transport'] = t = tcls(timeout, use_datetime=use_datetime) + self.transport = t + xmlrpclib.ServerProxy.__init__(self, uri, **kwargs) + + +# +# CSV functionality. This is provided because on 2.x, the csv module can't +# handle Unicode. However, we need to deal with Unicode in e.g. RECORD files. +# + + +def _csv_open(fn, mode, **kwargs): + if sys.version_info[0] < 3: + mode += 'b' + else: + kwargs['newline'] = '' + # Python 3 determines encoding from locale. Force 'utf-8' + # file encoding to match other forced utf-8 encoding + kwargs['encoding'] = 'utf-8' + return open(fn, mode, **kwargs) + + +class CSVBase(object): + defaults = { + 'delimiter': str(','), # The strs are used because we need native + 'quotechar': str('"'), # str in the csv API (2.x won't take + 'lineterminator': str('\n') # Unicode) + } + + def __enter__(self): + return self + + def __exit__(self, *exc_info): + self.stream.close() + + +class CSVReader(CSVBase): + + def __init__(self, **kwargs): + if 'stream' in kwargs: + stream = kwargs['stream'] + if sys.version_info[0] >= 3: + # needs to be a text stream + stream = codecs.getreader('utf-8')(stream) + self.stream = stream + else: + self.stream = _csv_open(kwargs['path'], 'r') + self.reader = csv.reader(self.stream, **self.defaults) + + def __iter__(self): + return self + + def next(self): + result = next(self.reader) + if sys.version_info[0] < 3: + for i, item in enumerate(result): + if not isinstance(item, text_type): + result[i] = item.decode('utf-8') + return result + + __next__ = next + + +class CSVWriter(CSVBase): + + def __init__(self, fn, **kwargs): + self.stream = _csv_open(fn, 'w') + self.writer = csv.writer(self.stream, **self.defaults) + + def writerow(self, row): + if sys.version_info[0] < 3: + r = [] + for item in row: + if isinstance(item, text_type): + item = item.encode('utf-8') + r.append(item) + row = r + self.writer.writerow(row) + + +# +# Configurator functionality +# + + +class Configurator(BaseConfigurator): + + value_converters = dict(BaseConfigurator.value_converters) + value_converters['inc'] = 'inc_convert' + + def __init__(self, config, base=None): + super(Configurator, self).__init__(config) + self.base = base or os.getcwd() + + def configure_custom(self, config): + + def convert(o): + if isinstance(o, (list, tuple)): + result = type(o)([convert(i) for i in o]) + elif isinstance(o, dict): + if '()' in o: + result = self.configure_custom(o) + else: + result = {} + for k in o: + result[k] = convert(o[k]) + else: + result = self.convert(o) + return result + + c = config.pop('()') + if not callable(c): + c = self.resolve(c) + props = config.pop('.', None) + # Check for valid identifiers + args = config.pop('[]', ()) + if args: + args = tuple([convert(o) for o in args]) + items = [(k, convert(config[k])) for k in config if valid_ident(k)] + kwargs = dict(items) + result = c(*args, **kwargs) + if props: + for n, v in props.items(): + setattr(result, n, convert(v)) + return result + + def __getitem__(self, key): + result = self.config[key] + if isinstance(result, dict) and '()' in result: + self.config[key] = result = self.configure_custom(result) + return result + + def inc_convert(self, value): + """Default converter for the inc:// protocol.""" + if not os.path.isabs(value): + value = os.path.join(self.base, value) + with codecs.open(value, 'r', encoding='utf-8') as f: + result = json.load(f) + return result + + +class SubprocessMixin(object): + """ + Mixin for running subprocesses and capturing their output + """ + + def __init__(self, verbose=False, progress=None): + self.verbose = verbose + self.progress = progress + + def reader(self, stream, context): + """ + Read lines from a subprocess' output stream and either pass to a progress + callable (if specified) or write progress information to sys.stderr. + """ + progress = self.progress + verbose = self.verbose + while True: + s = stream.readline() + if not s: + break + if progress is not None: + progress(s, context) + else: + if not verbose: + sys.stderr.write('.') + else: + sys.stderr.write(s.decode('utf-8')) + sys.stderr.flush() + stream.close() + + def run_command(self, cmd, **kwargs): + p = subprocess.Popen(cmd, + stdout=subprocess.PIPE, + stderr=subprocess.PIPE, + **kwargs) + t1 = threading.Thread(target=self.reader, args=(p.stdout, 'stdout')) + t1.start() + t2 = threading.Thread(target=self.reader, args=(p.stderr, 'stderr')) + t2.start() + p.wait() + t1.join() + t2.join() + if self.progress is not None: + self.progress('done.', 'main') + elif self.verbose: + sys.stderr.write('done.\n') + return p + + +def normalize_name(name): + """Normalize a python package name a la PEP 503""" + # https://www.python.org/dev/peps/pep-0503/#normalized-names + return re.sub('[-_.]+', '-', name).lower() + + +# def _get_pypirc_command(): +# """ +# Get the distutils command for interacting with PyPI configurations. +# :return: the command. +# """ +# from distutils.core import Distribution +# from distutils.config import PyPIRCCommand +# d = Distribution() +# return PyPIRCCommand(d) + + +class PyPIRCFile(object): + + DEFAULT_REPOSITORY = 'https://upload.pypi.org/legacy/' + DEFAULT_REALM = 'pypi' + + def __init__(self, fn=None, url=None): + if fn is None: + fn = os.path.join(os.path.expanduser('~'), '.pypirc') + self.filename = fn + self.url = url + + def read(self): + result = {} + + if os.path.exists(self.filename): + repository = self.url or self.DEFAULT_REPOSITORY + + config = configparser.RawConfigParser() + config.read(self.filename) + sections = config.sections() + if 'distutils' in sections: + # let's get the list of servers + index_servers = config.get('distutils', 'index-servers') + _servers = [ + server.strip() for server in index_servers.split('\n') + if server.strip() != '' + ] + if _servers == []: + # nothing set, let's try to get the default pypi + if 'pypi' in sections: + _servers = ['pypi'] + else: + for server in _servers: + result = {'server': server} + result['username'] = config.get(server, 'username') + + # optional params + for key, default in (('repository', + self.DEFAULT_REPOSITORY), + ('realm', self.DEFAULT_REALM), + ('password', None)): + if config.has_option(server, key): + result[key] = config.get(server, key) + else: + result[key] = default + + # work around people having "repository" for the "pypi" + # section of their config set to the HTTP (rather than + # HTTPS) URL + if (server == 'pypi' and repository + in (self.DEFAULT_REPOSITORY, 'pypi')): + result['repository'] = self.DEFAULT_REPOSITORY + elif (result['server'] != repository + and result['repository'] != repository): + result = {} + elif 'server-login' in sections: + # old format + server = 'server-login' + if config.has_option(server, 'repository'): + repository = config.get(server, 'repository') + else: + repository = self.DEFAULT_REPOSITORY + result = { + 'username': config.get(server, 'username'), + 'password': config.get(server, 'password'), + 'repository': repository, + 'server': server, + 'realm': self.DEFAULT_REALM + } + return result + + def update(self, username, password): + # import pdb; pdb.set_trace() + config = configparser.RawConfigParser() + fn = self.filename + config.read(fn) + if not config.has_section('pypi'): + config.add_section('pypi') + config.set('pypi', 'username', username) + config.set('pypi', 'password', password) + with open(fn, 'w') as f: + config.write(f) + + +def _load_pypirc(index): + """ + Read the PyPI access configuration as supported by distutils. + """ + return PyPIRCFile(url=index.url).read() + + +def _store_pypirc(index): + PyPIRCFile().update(index.username, index.password) + + +# +# get_platform()/get_host_platform() copied from Python 3.10.a0 source, with some minor +# tweaks +# + + +def get_host_platform(): + """Return a string that identifies the current platform. This is used mainly to + distinguish platform-specific build directories and platform-specific built + distributions. Typically includes the OS name and version and the + architecture (as supplied by 'os.uname()'), although the exact information + included depends on the OS; eg. on Linux, the kernel version isn't + particularly important. + + Examples of returned values: + linux-i586 + linux-alpha (?) + solaris-2.6-sun4u + + Windows will return one of: + win-amd64 (64bit Windows on AMD64 (aka x86_64, Intel64, EM64T, etc) + win32 (all others - specifically, sys.platform is returned) + + For other non-POSIX platforms, currently just returns 'sys.platform'. + + """ + if os.name == 'nt': + if 'amd64' in sys.version.lower(): + return 'win-amd64' + if '(arm)' in sys.version.lower(): + return 'win-arm32' + if '(arm64)' in sys.version.lower(): + return 'win-arm64' + return sys.platform + + # Set for cross builds explicitly + if "_PYTHON_HOST_PLATFORM" in os.environ: + return os.environ["_PYTHON_HOST_PLATFORM"] + + if os.name != 'posix' or not hasattr(os, 'uname'): + # XXX what about the architecture? NT is Intel or Alpha, + # Mac OS is M68k or PPC, etc. + return sys.platform + + # Try to distinguish various flavours of Unix + + (osname, host, release, version, machine) = os.uname() + + # Convert the OS name to lowercase, remove '/' characters, and translate + # spaces (for "Power Macintosh") + osname = osname.lower().replace('/', '') + machine = machine.replace(' ', '_').replace('/', '-') + + if osname[:5] == 'linux': + # At least on Linux/Intel, 'machine' is the processor -- + # i386, etc. + # XXX what about Alpha, SPARC, etc? + return "%s-%s" % (osname, machine) + + elif osname[:5] == 'sunos': + if release[0] >= '5': # SunOS 5 == Solaris 2 + osname = 'solaris' + release = '%d.%s' % (int(release[0]) - 3, release[2:]) + # We can't use 'platform.architecture()[0]' because a + # bootstrap problem. We use a dict to get an error + # if some suspicious happens. + bitness = {2147483647: '32bit', 9223372036854775807: '64bit'} + machine += '.%s' % bitness[sys.maxsize] + # fall through to standard osname-release-machine representation + elif osname[:3] == 'aix': + from _aix_support import aix_platform + return aix_platform() + elif osname[:6] == 'cygwin': + osname = 'cygwin' + rel_re = re.compile(r'[\d.]+', re.ASCII) + m = rel_re.match(release) + if m: + release = m.group() + elif osname[:6] == 'darwin': + import _osx_support + try: + from distutils import sysconfig + except ImportError: + import sysconfig + osname, release, machine = _osx_support.get_platform_osx( + sysconfig.get_config_vars(), osname, release, machine) + + return '%s-%s-%s' % (osname, release, machine) + + +_TARGET_TO_PLAT = { + 'x86': 'win32', + 'x64': 'win-amd64', + 'arm': 'win-arm32', +} + + +def get_platform(): + if os.name != 'nt': + return get_host_platform() + cross_compilation_target = os.environ.get('VSCMD_ARG_TGT_ARCH') + if cross_compilation_target not in _TARGET_TO_PLAT: + return get_host_platform() + return _TARGET_TO_PLAT[cross_compilation_target] diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/distlib/version.py b/.venv/lib/python3.11/site-packages/pip/_vendor/distlib/version.py new file mode 100644 index 0000000..14171ac --- /dev/null +++ b/.venv/lib/python3.11/site-packages/pip/_vendor/distlib/version.py @@ -0,0 +1,751 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2012-2023 The Python Software Foundation. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +""" +Implementation of a flexible versioning scheme providing support for PEP-440, +setuptools-compatible and semantic versioning. +""" + +import logging +import re + +from .compat import string_types +from .util import parse_requirement + +__all__ = ['NormalizedVersion', 'NormalizedMatcher', + 'LegacyVersion', 'LegacyMatcher', + 'SemanticVersion', 'SemanticMatcher', + 'UnsupportedVersionError', 'get_scheme'] + +logger = logging.getLogger(__name__) + + +class UnsupportedVersionError(ValueError): + """This is an unsupported version.""" + pass + + +class Version(object): + def __init__(self, s): + self._string = s = s.strip() + self._parts = parts = self.parse(s) + assert isinstance(parts, tuple) + assert len(parts) > 0 + + def parse(self, s): + raise NotImplementedError('please implement in a subclass') + + def _check_compatible(self, other): + if type(self) != type(other): + raise TypeError('cannot compare %r and %r' % (self, other)) + + def __eq__(self, other): + self._check_compatible(other) + return self._parts == other._parts + + def __ne__(self, other): + return not self.__eq__(other) + + def __lt__(self, other): + self._check_compatible(other) + return self._parts < other._parts + + def __gt__(self, other): + return not (self.__lt__(other) or self.__eq__(other)) + + def __le__(self, other): + return self.__lt__(other) or self.__eq__(other) + + def __ge__(self, other): + return self.__gt__(other) or self.__eq__(other) + + # See http://docs.python.org/reference/datamodel#object.__hash__ + def __hash__(self): + return hash(self._parts) + + def __repr__(self): + return "%s('%s')" % (self.__class__.__name__, self._string) + + def __str__(self): + return self._string + + @property + def is_prerelease(self): + raise NotImplementedError('Please implement in subclasses.') + + +class Matcher(object): + version_class = None + + # value is either a callable or the name of a method + _operators = { + '<': lambda v, c, p: v < c, + '>': lambda v, c, p: v > c, + '<=': lambda v, c, p: v == c or v < c, + '>=': lambda v, c, p: v == c or v > c, + '==': lambda v, c, p: v == c, + '===': lambda v, c, p: v == c, + # by default, compatible => >=. + '~=': lambda v, c, p: v == c or v > c, + '!=': lambda v, c, p: v != c, + } + + # this is a method only to support alternative implementations + # via overriding + def parse_requirement(self, s): + return parse_requirement(s) + + def __init__(self, s): + if self.version_class is None: + raise ValueError('Please specify a version class') + self._string = s = s.strip() + r = self.parse_requirement(s) + if not r: + raise ValueError('Not valid: %r' % s) + self.name = r.name + self.key = self.name.lower() # for case-insensitive comparisons + clist = [] + if r.constraints: + # import pdb; pdb.set_trace() + for op, s in r.constraints: + if s.endswith('.*'): + if op not in ('==', '!='): + raise ValueError('\'.*\' not allowed for ' + '%r constraints' % op) + # Could be a partial version (e.g. for '2.*') which + # won't parse as a version, so keep it as a string + vn, prefix = s[:-2], True + # Just to check that vn is a valid version + self.version_class(vn) + else: + # Should parse as a version, so we can create an + # instance for the comparison + vn, prefix = self.version_class(s), False + clist.append((op, vn, prefix)) + self._parts = tuple(clist) + + def match(self, version): + """ + Check if the provided version matches the constraints. + + :param version: The version to match against this instance. + :type version: String or :class:`Version` instance. + """ + if isinstance(version, string_types): + version = self.version_class(version) + for operator, constraint, prefix in self._parts: + f = self._operators.get(operator) + if isinstance(f, string_types): + f = getattr(self, f) + if not f: + msg = ('%r not implemented ' + 'for %s' % (operator, self.__class__.__name__)) + raise NotImplementedError(msg) + if not f(version, constraint, prefix): + return False + return True + + @property + def exact_version(self): + result = None + if len(self._parts) == 1 and self._parts[0][0] in ('==', '==='): + result = self._parts[0][1] + return result + + def _check_compatible(self, other): + if type(self) != type(other) or self.name != other.name: + raise TypeError('cannot compare %s and %s' % (self, other)) + + def __eq__(self, other): + self._check_compatible(other) + return self.key == other.key and self._parts == other._parts + + def __ne__(self, other): + return not self.__eq__(other) + + # See http://docs.python.org/reference/datamodel#object.__hash__ + def __hash__(self): + return hash(self.key) + hash(self._parts) + + def __repr__(self): + return "%s(%r)" % (self.__class__.__name__, self._string) + + def __str__(self): + return self._string + + +PEP440_VERSION_RE = re.compile(r'^v?(\d+!)?(\d+(\.\d+)*)((a|alpha|b|beta|c|rc|pre|preview)(\d+)?)?' + r'(\.(post|r|rev)(\d+)?)?([._-]?(dev)(\d+)?)?' + r'(\+([a-zA-Z\d]+(\.[a-zA-Z\d]+)?))?$', re.I) + + +def _pep_440_key(s): + s = s.strip() + m = PEP440_VERSION_RE.match(s) + if not m: + raise UnsupportedVersionError('Not a valid version: %s' % s) + groups = m.groups() + nums = tuple(int(v) for v in groups[1].split('.')) + while len(nums) > 1 and nums[-1] == 0: + nums = nums[:-1] + + if not groups[0]: + epoch = 0 + else: + epoch = int(groups[0][:-1]) + pre = groups[4:6] + post = groups[7:9] + dev = groups[10:12] + local = groups[13] + if pre == (None, None): + pre = () + else: + if pre[1] is None: + pre = pre[0], 0 + else: + pre = pre[0], int(pre[1]) + if post == (None, None): + post = () + else: + if post[1] is None: + post = post[0], 0 + else: + post = post[0], int(post[1]) + if dev == (None, None): + dev = () + else: + if dev[1] is None: + dev = dev[0], 0 + else: + dev = dev[0], int(dev[1]) + if local is None: + local = () + else: + parts = [] + for part in local.split('.'): + # to ensure that numeric compares as > lexicographic, avoid + # comparing them directly, but encode a tuple which ensures + # correct sorting + if part.isdigit(): + part = (1, int(part)) + else: + part = (0, part) + parts.append(part) + local = tuple(parts) + if not pre: + # either before pre-release, or final release and after + if not post and dev: + # before pre-release + pre = ('a', -1) # to sort before a0 + else: + pre = ('z',) # to sort after all pre-releases + # now look at the state of post and dev. + if not post: + post = ('_',) # sort before 'a' + if not dev: + dev = ('final',) + + return epoch, nums, pre, post, dev, local + + +_normalized_key = _pep_440_key + + +class NormalizedVersion(Version): + """A rational version. + + Good: + 1.2 # equivalent to "1.2.0" + 1.2.0 + 1.2a1 + 1.2.3a2 + 1.2.3b1 + 1.2.3c1 + 1.2.3.4 + TODO: fill this out + + Bad: + 1 # minimum two numbers + 1.2a # release level must have a release serial + 1.2.3b + """ + def parse(self, s): + result = _normalized_key(s) + # _normalized_key loses trailing zeroes in the release + # clause, since that's needed to ensure that X.Y == X.Y.0 == X.Y.0.0 + # However, PEP 440 prefix matching needs it: for example, + # (~= 1.4.5.0) matches differently to (~= 1.4.5.0.0). + m = PEP440_VERSION_RE.match(s) # must succeed + groups = m.groups() + self._release_clause = tuple(int(v) for v in groups[1].split('.')) + return result + + PREREL_TAGS = set(['a', 'b', 'c', 'rc', 'dev']) + + @property + def is_prerelease(self): + return any(t[0] in self.PREREL_TAGS for t in self._parts if t) + + +def _match_prefix(x, y): + x = str(x) + y = str(y) + if x == y: + return True + if not x.startswith(y): + return False + n = len(y) + return x[n] == '.' + + +class NormalizedMatcher(Matcher): + version_class = NormalizedVersion + + # value is either a callable or the name of a method + _operators = { + '~=': '_match_compatible', + '<': '_match_lt', + '>': '_match_gt', + '<=': '_match_le', + '>=': '_match_ge', + '==': '_match_eq', + '===': '_match_arbitrary', + '!=': '_match_ne', + } + + def _adjust_local(self, version, constraint, prefix): + if prefix: + strip_local = '+' not in constraint and version._parts[-1] + else: + # both constraint and version are + # NormalizedVersion instances. + # If constraint does not have a local component, + # ensure the version doesn't, either. + strip_local = not constraint._parts[-1] and version._parts[-1] + if strip_local: + s = version._string.split('+', 1)[0] + version = self.version_class(s) + return version, constraint + + def _match_lt(self, version, constraint, prefix): + version, constraint = self._adjust_local(version, constraint, prefix) + if version >= constraint: + return False + release_clause = constraint._release_clause + pfx = '.'.join([str(i) for i in release_clause]) + return not _match_prefix(version, pfx) + + def _match_gt(self, version, constraint, prefix): + version, constraint = self._adjust_local(version, constraint, prefix) + if version <= constraint: + return False + release_clause = constraint._release_clause + pfx = '.'.join([str(i) for i in release_clause]) + return not _match_prefix(version, pfx) + + def _match_le(self, version, constraint, prefix): + version, constraint = self._adjust_local(version, constraint, prefix) + return version <= constraint + + def _match_ge(self, version, constraint, prefix): + version, constraint = self._adjust_local(version, constraint, prefix) + return version >= constraint + + def _match_eq(self, version, constraint, prefix): + version, constraint = self._adjust_local(version, constraint, prefix) + if not prefix: + result = (version == constraint) + else: + result = _match_prefix(version, constraint) + return result + + def _match_arbitrary(self, version, constraint, prefix): + return str(version) == str(constraint) + + def _match_ne(self, version, constraint, prefix): + version, constraint = self._adjust_local(version, constraint, prefix) + if not prefix: + result = (version != constraint) + else: + result = not _match_prefix(version, constraint) + return result + + def _match_compatible(self, version, constraint, prefix): + version, constraint = self._adjust_local(version, constraint, prefix) + if version == constraint: + return True + if version < constraint: + return False +# if not prefix: +# return True + release_clause = constraint._release_clause + if len(release_clause) > 1: + release_clause = release_clause[:-1] + pfx = '.'.join([str(i) for i in release_clause]) + return _match_prefix(version, pfx) + + +_REPLACEMENTS = ( + (re.compile('[.+-]$'), ''), # remove trailing puncts + (re.compile(r'^[.](\d)'), r'0.\1'), # .N -> 0.N at start + (re.compile('^[.-]'), ''), # remove leading puncts + (re.compile(r'^\((.*)\)$'), r'\1'), # remove parentheses + (re.compile(r'^v(ersion)?\s*(\d+)'), r'\2'), # remove leading v(ersion) + (re.compile(r'^r(ev)?\s*(\d+)'), r'\2'), # remove leading v(ersion) + (re.compile('[.]{2,}'), '.'), # multiple runs of '.' + (re.compile(r'\b(alfa|apha)\b'), 'alpha'), # misspelt alpha + (re.compile(r'\b(pre-alpha|prealpha)\b'), + 'pre.alpha'), # standardise + (re.compile(r'\(beta\)$'), 'beta'), # remove parentheses +) + +_SUFFIX_REPLACEMENTS = ( + (re.compile('^[:~._+-]+'), ''), # remove leading puncts + (re.compile('[,*")([\\]]'), ''), # remove unwanted chars + (re.compile('[~:+_ -]'), '.'), # replace illegal chars + (re.compile('[.]{2,}'), '.'), # multiple runs of '.' + (re.compile(r'\.$'), ''), # trailing '.' +) + +_NUMERIC_PREFIX = re.compile(r'(\d+(\.\d+)*)') + + +def _suggest_semantic_version(s): + """ + Try to suggest a semantic form for a version for which + _suggest_normalized_version couldn't come up with anything. + """ + result = s.strip().lower() + for pat, repl in _REPLACEMENTS: + result = pat.sub(repl, result) + if not result: + result = '0.0.0' + + # Now look for numeric prefix, and separate it out from + # the rest. + # import pdb; pdb.set_trace() + m = _NUMERIC_PREFIX.match(result) + if not m: + prefix = '0.0.0' + suffix = result + else: + prefix = m.groups()[0].split('.') + prefix = [int(i) for i in prefix] + while len(prefix) < 3: + prefix.append(0) + if len(prefix) == 3: + suffix = result[m.end():] + else: + suffix = '.'.join([str(i) for i in prefix[3:]]) + result[m.end():] + prefix = prefix[:3] + prefix = '.'.join([str(i) for i in prefix]) + suffix = suffix.strip() + if suffix: + # import pdb; pdb.set_trace() + # massage the suffix. + for pat, repl in _SUFFIX_REPLACEMENTS: + suffix = pat.sub(repl, suffix) + + if not suffix: + result = prefix + else: + sep = '-' if 'dev' in suffix else '+' + result = prefix + sep + suffix + if not is_semver(result): + result = None + return result + + +def _suggest_normalized_version(s): + """Suggest a normalized version close to the given version string. + + If you have a version string that isn't rational (i.e. NormalizedVersion + doesn't like it) then you might be able to get an equivalent (or close) + rational version from this function. + + This does a number of simple normalizations to the given string, based + on observation of versions currently in use on PyPI. Given a dump of + those version during PyCon 2009, 4287 of them: + - 2312 (53.93%) match NormalizedVersion without change + with the automatic suggestion + - 3474 (81.04%) match when using this suggestion method + + @param s {str} An irrational version string. + @returns A rational version string, or None, if couldn't determine one. + """ + try: + _normalized_key(s) + return s # already rational + except UnsupportedVersionError: + pass + + rs = s.lower() + + # part of this could use maketrans + for orig, repl in (('-alpha', 'a'), ('-beta', 'b'), ('alpha', 'a'), + ('beta', 'b'), ('rc', 'c'), ('-final', ''), + ('-pre', 'c'), + ('-release', ''), ('.release', ''), ('-stable', ''), + ('+', '.'), ('_', '.'), (' ', ''), ('.final', ''), + ('final', '')): + rs = rs.replace(orig, repl) + + # if something ends with dev or pre, we add a 0 + rs = re.sub(r"pre$", r"pre0", rs) + rs = re.sub(r"dev$", r"dev0", rs) + + # if we have something like "b-2" or "a.2" at the end of the + # version, that is probably beta, alpha, etc + # let's remove the dash or dot + rs = re.sub(r"([abc]|rc)[\-\.](\d+)$", r"\1\2", rs) + + # 1.0-dev-r371 -> 1.0.dev371 + # 0.1-dev-r79 -> 0.1.dev79 + rs = re.sub(r"[\-\.](dev)[\-\.]?r?(\d+)$", r".\1\2", rs) + + # Clean: 2.0.a.3, 2.0.b1, 0.9.0~c1 + rs = re.sub(r"[.~]?([abc])\.?", r"\1", rs) + + # Clean: v0.3, v1.0 + if rs.startswith('v'): + rs = rs[1:] + + # Clean leading '0's on numbers. + # TODO: unintended side-effect on, e.g., "2003.05.09" + # PyPI stats: 77 (~2%) better + rs = re.sub(r"\b0+(\d+)(?!\d)", r"\1", rs) + + # Clean a/b/c with no version. E.g. "1.0a" -> "1.0a0". Setuptools infers + # zero. + # PyPI stats: 245 (7.56%) better + rs = re.sub(r"(\d+[abc])$", r"\g<1>0", rs) + + # the 'dev-rNNN' tag is a dev tag + rs = re.sub(r"\.?(dev-r|dev\.r)\.?(\d+)$", r".dev\2", rs) + + # clean the - when used as a pre delimiter + rs = re.sub(r"-(a|b|c)(\d+)$", r"\1\2", rs) + + # a terminal "dev" or "devel" can be changed into ".dev0" + rs = re.sub(r"[\.\-](dev|devel)$", r".dev0", rs) + + # a terminal "dev" can be changed into ".dev0" + rs = re.sub(r"(?![\.\-])dev$", r".dev0", rs) + + # a terminal "final" or "stable" can be removed + rs = re.sub(r"(final|stable)$", "", rs) + + # The 'r' and the '-' tags are post release tags + # 0.4a1.r10 -> 0.4a1.post10 + # 0.9.33-17222 -> 0.9.33.post17222 + # 0.9.33-r17222 -> 0.9.33.post17222 + rs = re.sub(r"\.?(r|-|-r)\.?(\d+)$", r".post\2", rs) + + # Clean 'r' instead of 'dev' usage: + # 0.9.33+r17222 -> 0.9.33.dev17222 + # 1.0dev123 -> 1.0.dev123 + # 1.0.git123 -> 1.0.dev123 + # 1.0.bzr123 -> 1.0.dev123 + # 0.1a0dev.123 -> 0.1a0.dev123 + # PyPI stats: ~150 (~4%) better + rs = re.sub(r"\.?(dev|git|bzr)\.?(\d+)$", r".dev\2", rs) + + # Clean '.pre' (normalized from '-pre' above) instead of 'c' usage: + # 0.2.pre1 -> 0.2c1 + # 0.2-c1 -> 0.2c1 + # 1.0preview123 -> 1.0c123 + # PyPI stats: ~21 (0.62%) better + rs = re.sub(r"\.?(pre|preview|-c)(\d+)$", r"c\g<2>", rs) + + # Tcl/Tk uses "px" for their post release markers + rs = re.sub(r"p(\d+)$", r".post\1", rs) + + try: + _normalized_key(rs) + except UnsupportedVersionError: + rs = None + return rs + +# +# Legacy version processing (distribute-compatible) +# + + +_VERSION_PART = re.compile(r'([a-z]+|\d+|[\.-])', re.I) +_VERSION_REPLACE = { + 'pre': 'c', + 'preview': 'c', + '-': 'final-', + 'rc': 'c', + 'dev': '@', + '': None, + '.': None, +} + + +def _legacy_key(s): + def get_parts(s): + result = [] + for p in _VERSION_PART.split(s.lower()): + p = _VERSION_REPLACE.get(p, p) + if p: + if '0' <= p[:1] <= '9': + p = p.zfill(8) + else: + p = '*' + p + result.append(p) + result.append('*final') + return result + + result = [] + for p in get_parts(s): + if p.startswith('*'): + if p < '*final': + while result and result[-1] == '*final-': + result.pop() + while result and result[-1] == '00000000': + result.pop() + result.append(p) + return tuple(result) + + +class LegacyVersion(Version): + def parse(self, s): + return _legacy_key(s) + + @property + def is_prerelease(self): + result = False + for x in self._parts: + if (isinstance(x, string_types) and x.startswith('*') and + x < '*final'): + result = True + break + return result + + +class LegacyMatcher(Matcher): + version_class = LegacyVersion + + _operators = dict(Matcher._operators) + _operators['~='] = '_match_compatible' + + numeric_re = re.compile(r'^(\d+(\.\d+)*)') + + def _match_compatible(self, version, constraint, prefix): + if version < constraint: + return False + m = self.numeric_re.match(str(constraint)) + if not m: + logger.warning('Cannot compute compatible match for version %s ' + ' and constraint %s', version, constraint) + return True + s = m.groups()[0] + if '.' in s: + s = s.rsplit('.', 1)[0] + return _match_prefix(version, s) + +# +# Semantic versioning +# + + +_SEMVER_RE = re.compile(r'^(\d+)\.(\d+)\.(\d+)' + r'(-[a-z0-9]+(\.[a-z0-9-]+)*)?' + r'(\+[a-z0-9]+(\.[a-z0-9-]+)*)?$', re.I) + + +def is_semver(s): + return _SEMVER_RE.match(s) + + +def _semantic_key(s): + def make_tuple(s, absent): + if s is None: + result = (absent,) + else: + parts = s[1:].split('.') + # We can't compare ints and strings on Python 3, so fudge it + # by zero-filling numeric values so simulate a numeric comparison + result = tuple([p.zfill(8) if p.isdigit() else p for p in parts]) + return result + + m = is_semver(s) + if not m: + raise UnsupportedVersionError(s) + groups = m.groups() + major, minor, patch = [int(i) for i in groups[:3]] + # choose the '|' and '*' so that versions sort correctly + pre, build = make_tuple(groups[3], '|'), make_tuple(groups[5], '*') + return (major, minor, patch), pre, build + + +class SemanticVersion(Version): + def parse(self, s): + return _semantic_key(s) + + @property + def is_prerelease(self): + return self._parts[1][0] != '|' + + +class SemanticMatcher(Matcher): + version_class = SemanticVersion + + +class VersionScheme(object): + def __init__(self, key, matcher, suggester=None): + self.key = key + self.matcher = matcher + self.suggester = suggester + + def is_valid_version(self, s): + try: + self.matcher.version_class(s) + result = True + except UnsupportedVersionError: + result = False + return result + + def is_valid_matcher(self, s): + try: + self.matcher(s) + result = True + except UnsupportedVersionError: + result = False + return result + + def is_valid_constraint_list(self, s): + """ + Used for processing some metadata fields + """ + # See issue #140. Be tolerant of a single trailing comma. + if s.endswith(','): + s = s[:-1] + return self.is_valid_matcher('dummy_name (%s)' % s) + + def suggest(self, s): + if self.suggester is None: + result = None + else: + result = self.suggester(s) + return result + + +_SCHEMES = { + 'normalized': VersionScheme(_normalized_key, NormalizedMatcher, + _suggest_normalized_version), + 'legacy': VersionScheme(_legacy_key, LegacyMatcher, lambda self, s: s), + 'semantic': VersionScheme(_semantic_key, SemanticMatcher, + _suggest_semantic_version), +} + +_SCHEMES['default'] = _SCHEMES['normalized'] + + +def get_scheme(name): + if name not in _SCHEMES: + raise ValueError('unknown scheme name: %r' % name) + return _SCHEMES[name] diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/distlib/w32.exe b/.venv/lib/python3.11/site-packages/pip/_vendor/distlib/w32.exe new file mode 100644 index 0000000000000000000000000000000000000000..4ee2d3a31b59e8b50f433ecdf0be9e496e8cc3b8 GIT binary patch literal 91648 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/distlib/w64-arm.exe b/.venv/lib/python3.11/site-packages/pip/_vendor/distlib/w64-arm.exe new file mode 100644 index 0000000000000000000000000000000000000000..951d5817c9e6d81c94a173a0d9fead7f1f143331 GIT binary patch literal 168448 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/distlib/w64.exe b/.venv/lib/python3.11/site-packages/pip/_vendor/distlib/w64.exe new file mode 100644 index 0000000000000000000000000000000000000000..5763076d2878093971a0ef9870e1cde7f556b18b GIT binary patch literal 101888 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/big5prober.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/big5prober.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8cf6556acfaee8511d7595ceddc7efd1b72274c8 GIT binary patch literal 1722 zcma)6&2QX96rb_hUT4|uN2;W|;ZjRO}!0wKHbq@!VZ#T8Pw{-p3-r*U=OU%PR~mrD4}j`Ca4hmjL>r7r=S zTxfZIw6>xg#g`m+-H$lTPA_!=<7AKizKZy_U28q^~V%`^LCm3oCcf*G%1#Xk9l zHY~`h7?&`eG@#fNTy;dW>|(0fz(DXh`W3{F^bt`xblmBa9Fi?3WZZ@ll~DyI3TVv6 z4y@ii+2H|UdWNXiGVSHv!0Kd&2jod{WH-`Y_U{o$oG#a`*pQtz7qP{dANh(gfgS~J z7*DtflT3yJlaHso9OKME$~R%DA-LqKuEo0K!D>9gm>W1!GA1=xbz$p8-~K{!A??Uf zPT>2F>V~aVpZk2nvF~ov_HOg%?`LDBG&Gz^%lHR#Gc#W(S{xPO*;jy z&t1K0OJDITZO8q}S>w`f`)!+nnb#6F?&@)6H-TB$0$OdZ-4$gBX!G2N?YS)LO9044 z5PxrxL#y(zxLy3+s{UqG_pF(HYi3~09M<0YWofT=bH8@8uWz3^oPB?9_V)hl?Y_Qm zT|BVLKa{>JJuGjR`^j|#TamFALQ<0!!qURoq(FeS9P1d&Q}UFGGcYgF>VlXA8J95y zC@hPdkZ+#P1)T@#xC$xXB7dBo>Tig1p#LAo#RWW>z{@l&5a)55oO3I1qO}fGb*x(1 zvLoxjYCMt5b0nU1ESAB-IfXnxeRf!1o}4x$GKhx-m5*|0T-AJT=s)G5y#b z5_pZo^8!G<`w2KSkIib2FQG+kBywiC*%6-9BZ&^HaVF`-+|fx-(`0(OB>pGE^go%L zz4&z4JZ3m;T!H_J*o0XLClT8x%|0Ox=}s#0!g?>Q^eyow%wefy55%xQDILB`=sN@Q pcK$vf*9PPF0l7XHzYoY8gYkQ4Rw(5Bsu-NT{2ZtM`WGyz$3K3GnY;i1 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/chardistribution.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/chardistribution.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0025247ab2d016fb1bead32ba10164a412e5c60b GIT binary patch literal 11314 zcmds7S!^3gdhRBhhe%2!Me4K;>ROw&$FekbR+f*kY-x1ZBhN~5W`={LL9tsBB_47$ zHDk#Vq5xim>lld;%*INPV7b6xB4Gv_EwI4)Aqe&%4@r=Rra&M>0}dP{K%l4PK+b^$ zg5>|J$tEe1vS%?40=LMos{X&Kx{m*I)?cYzUt#^q8ux5Y+}q~%WI~*YT(tB@J>*k9e9osUJK`s2J`>g3-tUEI;GbD-Acs zM=$a>$A+f(nLGTuQzPHw?@SGkOeuECm>IfpdxW1J_l+p+D&eE|$8QeZ=7-0pXQsw) z+?^S}Gs#a4K?0pMj@-R@YpPst4wX~TohM6qS${JhRO$~nNBTp`as4%o-spe3ufJS} z&Md2-$BrE7xGw7_#;42mSA+C|&e~|Xa!;(%JaK1i=mzeBx-xVd)Gh+5;HhZL77ial z<_RM*K2~6SI)U}+1)Yx*^ge^Y`HX@?Fg@gaCP>YYnuRK{O0MTAGk65@SOuxDaA;{*b0eE22dh%4=N&Z5C0V4 z2@@;eeF2m&;j2FD46pG77D}253pyxiN-OB01fx(NS~F*gzytv=x2()MlQ8A#6{f}S z1vA3Hq`66gFPzU+eAjDM3^A%_ER>7b@wi=Gk1;wEFiNE*#Rcsi3pF|hMKuqc#`=Gx!B>G8&UtWzZL?KZ*z2`m= zBcJq!g0sCU$nNk$_dB0T$SrE18D+allgZeb8+yeqdyysb1AbYeWC@^#*BqIa}IMS({;^p z?y)7^(u&2VT!pmR_J@{7mLJ$2+v4=^5PD2bT) z+Ucr${8X|Tz^S%g%5Kz``HOAerF5>T|;luAs6dp%v$M`6n)Di7prAr11m*I_&DEo&AA%bGN- z!A7oG8D@iB2ZdgwvWX3|@}^s7>3cOgsIqSDl{*HA{32y#QR{# zf{}TT0EU#xir1J|W~KhU@yYS`?!Lzl56ukmGhumFIUX8 z^wG$)S4U+>VTptSn3I(n6uA7`*G^WHn&OIc(1)}RK+S^9k+QZV*nMkSE(DBymNPS?8s^!HJOTiJ{sf2NOWa>fyaGWJ5_nXifeufZ;|Q%V8w6-DZ3|e zA=L#lyDFQns>YM$12}`+gR(|vgMk4$3Y3{i@)neKA*ULH%TOxZQgRLmYn_#cm9sFo zdr}nu49LPbYU6|sVpm7d6i#|w=s6?)u*ma@h3CUjVFjWF9^wK1-ikk@a>ym9OD-V1 zjnI$q9R%C~g4&@NW>;gPq*P(zC&a(1=!20MLGPy+=0Z__jQj@Xx!GtmLc5^h{+9q?&8Lrw;mtl&b&17iJFvU=7 zGo0S8+g?co<@VlG)A3?&wRM=+7`f*pp~d5!5xnnFrvjJ-D{`99{?bJ&+GA3^&G^Iabg=v_Uw|iJWK< zjYT0hE1Do|HbB^Hj)RZ$Re@ZYlqQJzXFezw9;pIRWRx{ULm%=(_PFpkp_xpmsy#K`f=q#zSs6XFv)46Z#~m$>nRVL2JQ)JT-3dn$*+7!QTMm;I{#2KyvV7%%P#7 zTDYrMZOtSQ6w6$YNZ>Re#F21Bxwu0$JYAKSNsDcMA6gxv-J+JKzHQt8*~f89+FG~m z-nX{O*4DJEZo4@lB%4krU1xR{_U?VPlyqHsI-GP}mu=V6c4yXBk!#S&u7$h<3Av6i zgh1^N$`iSPa1&t|0nLh1o!#Vs7z*+HE=z6$m4?OF)$Ja`st6C^dl&_P{mlJkbe!Q9 zn_-Sco7qsC=-DystjebbQk|DF3=p0MXz~i6Dm;!L0AKCF8R7G7D*UafH%8%i%>;Er z-F@_Hs=9-yXVo2oGgaNmEy$JE@bc@SY4{WD;yncFmrx)6PqlOpU;RAGeu0y_}0o{F_dVC^AI7~x5=<+)exB-uJfdk>P z&cjgbJT~-&7h(D15FE&j#rM}o984U#KS&`kAWo|MqUb^#i&3$n2U*M=a8a+w3{ts3 zR1hVc4Y(PPYM;@HuXR;kBTcCP5-Lh4z?)3Et~KXn>|2AfwHrSB6ce19sx-i~t2Lod zy1EhzJNG^Zzta~Ve&%{B>SnWgP5s6wr?=3R*l`nE5F7|Ja&%%2BgYCF+*Nr&G!=dd&83$_ zi&wJI;@NDpc&;+=CVO#4P1}G?_gRGsi%P> zR~k5~ij4P{syCv}NpnfN*&D08LR%#ft{Vh3d@Q5a-N&q)rr3XtOE(Tc1IVs3JAI#@ z*}4Ce{p!KiEeIrS_1oS1wl>+;miTyYc)w>r?inZ!DUS&!%WLu?P7vYe`06s6e4ECE z$KbaT6XFP7t0p(z2+m)8GxgYrTS)a74~wcEn=yBc9(Pn)4o!>y9(s7077u2%_;gl_ z$G?FVm-FApYH?427CS3zv0y}v1|MBc&rMl9H^aq1m3lx_kAHaEaEEfqLW}PZXs2B7v`w@c4O{1wXd`sn%e&p z^zgE)o=aJ^_h!|8>>H^4&!GR8J8!({DGKAcY(Q_LVSH7wa&K^vHo)$lrjHV9owk27D-UU@mNh=Hhpuhl3v>{1w7; zgkK`G1E@CR6Dw=`GXR)5-2w{1;2y5MrlaXM~DTjBSz?41|=sm<<=+g^4AzYmik2+we8WsK4| zHA=^z&2FeGK2-n#jS?iU0O|m71h3U7;f3_X`)`a@BB)Ol&I@?CTz;yW#raQc{Q%+H zxq70peEBmzoc%$;kDT8V_-Y#6(_1Hc|D?tF@V^G#$ft3>7jhM@p(@N#Q`Y~+rUL*} zSsjhr?BfSOkj(N}dl{M*ldrttbF53oQ$)SHAM~Uzs z_@-Y=cfO6gT^zxrw?i@Fzu!dWi5`c=0Vw8K2*B}QYzU24X{d@(s!}Dc1eOTpRAFt{ zA%<9UoY<$7Lx1I{MotZKEc3JY&t{ZmN2&t>53h=8F(^?w^^epwqE}R^7NZOPS<1m{ z8Pb3-hCpxr=#9oA7HMciO%YvFwBD*@_CW4e<}2#&h1bXy6j}I6KZM_mGJ2L}GXo6k zk(u_=Pln@I9o(&d1F(FP%CzVIr!5$^UuOCWKN;gF%R-P?9>1pa7lqszogM3!g6tXi z8p$v6yzbIkv}L)fHte+&XjLG;$n)AN_1bZ%WB^X=wG`y`?|zNs7kS>PdKTPLDbT7w Tev#+(R~kU+3TSIV#rA&z#x+k< literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..639a09618272662a2b7ae40fba6be361d84c4444 GIT binary patch literal 4344 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachinedict.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachinedict.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f54d6f9e150e6baff2c78eac11940dc627958e20 GIT binary patch literal 997 zcmZ`%y-yo46u0jy7a%}Ui3n0ri>OeBa-vx}AQnoYsv02ys+z?zXNMfUulk%wkvddW zhp;1&fq|)2)eikr!WMa|)Tvu4Ix*G03ka#H@4e^Wd%tJ<-LpRz3S&TyGqB!R&;aDWW15WVH5~#CYyqNw1jL{^F~3=#3;@1L%|^{2 zxm`fbY%bfsRJg2(!rtqhO|-GSx$)w8bxW9g&Df`9DDr#ln3AWS%iZA)>7);x%Xbo- z0t#x7fSR@ss7?(6>ssk1o0>#hlO8oB(o-}l$M`Q}ri>+5TQ?}D5V3bbIWLME5%I#q zU5+_@iQR@5QdRGY7X4a|^F!=Z14IH1Dzad_Co zhqPMG2^%35L`aMw6hx%yD?EYF+a~rihN&J4-3z&xLI{UpB#-c-Fp-IR!r2#asd{pC z;_N4sB~FMr_B{{tb`aG)>d_WLebgk7De;kwqs??8Od}X(VEf+Lci5xM`=-e-E-w5!I=<&2qA|)Tnou z97*&3*4Lk%?^e$B?voSLvzMe?*h~Flsb?#>uuCKPxqDsrywYu)P4(<$DHrx~fAUTz z-^m~6`!lnhLZ@&nwNqfT*M~ooFV5t$aelRI35&O5d9h4AwzRv5q literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/cp949prober.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/cp949prober.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6977c7f9b67f5baac48f18704d00184a25038108 GIT binary patch literal 1731 zcma)6&1>976n~>#X=P{qQ8%&I?j<-RbP2UcQbedczNxd~Op+T2Hmd3VPNxPYu zb+RT09~Qc94Lz0Q&_hls!Sw&=aa{~Gf}l2hMEmaUCj=xFrxG`~0Rd*-L1 zp+Ug$Bivk@F9H0nezKt-G6#2%c?=$SB!H0EgeYDMw6I_o621@=L*3RBz8Dx`$u1Gl z;1lrlHh2cppA`Uh@J)wpdZi_(ntu@duabE3*4??=cjkQ|xxd_$em(jqa)Ord1%hL9 zbtvP&&$wgjYW*m{>xy9@6U#Ck8bm5EnTc5j` zQT5F{IJk#D-(XA(Y~q2fc}53Th*xNr?E))$gy}1qS8Nxbq1=wznGD-F!t@hZsRIv* zZDL%d_*CLU>QZcQCYwB}xhmRhC{NUT@C%Y3$YYQ>wBPE}9FlDZ=$9cNvudG;G;(sd zd*?{QBcR0$lczH7O>HQ3q~Q@f#lAQ>-n8!lMowx~GuB13!FX&^>PNn$lq-u|DU1i) zq?S~KTm>JW@p3h%jw<>FZq+#xOjfnHC|Ix(4^Zj`ju4az4R@X0e7$Ae6^sija-*V}1^%*?0#{}( zU9yBP*?SGg{n}Y&!fN;pi=voU=a$myF=@FCY%kP--8R!`@iKa}aXMG;nJn&eh=|XS z{JjY;%%QE)cIh{>@~c_dHK+E>sjfNoV)Ek8wcW`Zdy_Xh#qHt047l*&?)llh^Ru1e zo;kg5mcJkTc5th_UG5~$0V;#OHd2L6+DN4rk0`++Xth{R{CN(~2_Hp3D6zAA3~5|e zabR|7s~WZe3{bwO(#f^q#m(}^}!yLt+;@9 z3a=<%-a!%%9k!Cof`HO0;cqFE%EQ?tJ=|2HicBluJ0w`W?CEKSex?WiMMl9G?rB7y zc;fZ|KgZ-%0ipK21ne1yVwET7ltks2b?xq z`!YF!@kqFQSmCsLxw&JF#8<>3En-Pl%#k{=R;&|m#U&CWE5wT5CsyKNjF2DTjh+S4%y+DYxcTH}wfOgIHr{)eTD$1hS3wAxe zNUNqxmmJd-BJ_33bc~vGv=Xh9m4pMNLPc}Cy`T}80Xt|Y6rSd;?NbJGQ_i}a`OFRQ zP>fpk_BP|tq&|xK)TBMv-ecT19SVnH?ZD%-4aeAG)OL$vHjb7%#62A%r5DnnY#6TD zVTKVZhSBk?o`ZDOFz)qCXT(VxhUK+UWNl+zHOh^OriB@`Q5ln~+RCc2bhoK~PmW<; z^6TfN4Ij2ra?QYWY}*X>JKna^|2CX05~%7ERKFjq6(ogTR0vh4(nAAIs}Z4WLf#?fst(5Igy<7|BTjjMfN`|T1^>wwZhiRC=sNA|8#>=%@ zm>vxZF))3%JGEfExwo$pr%&%XF5@$}%immVda8O&YjuMTGO z{pCS!p}#Uva{bC6M;~2#=W*^GZ08@WK2~1%dhfAvyUC5ULg^nA1?o`;*;#2gBH_dZDU7!r-^V2=$1D*p?6AN9 zDPuDD;QF*)iqm2h817?|>yu%M%;&$jC%juP%v=~@vaYU_o7x9zC~xRB?Y3IG8>U8I zd9B`noCmy_wqyE!he1`d!no}Q{4H4Fd<4FMeF*QuJC)i_l_{uDtCI*6)X&LztYrCb zZ(uFUPv9s{Qu+HI3+ALZidbB$4e!Y_HrVm2&~>>ZMr93*D2MsV*j*}-srCD3{bh6l|f?0qs}y^@yZaK`iS;BB094(A-PuAWenKBT7PW+jM{X*j~ZCldzE;#sEQ M2>YH~z!28>8&VHgVE_OC literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/escprober.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/escprober.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7345c92089a1bdb4bef3f771ce435bdb1d874e59 GIT binary patch literal 4948 zcmbtXU2GHC6~5!YjO}rpALkDeJeVcmg~TKwkgZrCkU$K?1`^bjx9!Myt`mcQ!kr1- zSV7_eX##NW1EES zLa)bX?!D*SbAQe`-#zmikH>|eY@(BkPrL~IgEnf#Uah>o4V6boMlzR187{_UEHMj* zWQ%M~TQjzpjn!>wd&UuSu)00nlHp@~#u;;FTrn5xbEMrFAtq!zF;Av7)|&Cgyd1Ki z^GI&Fhh!exo>&oj4u7M>+GOV(3c9|b&7ei+qf2TkmyM@&`?V}ozTs#;r+dyW#>pI3 zFO%GLOrWFVY)(#P7v|Ksif7}A#Z(ptt$ORFcy?hqzJSlA(kdppP-QVOU7(|DgMv2Q zJrk4WW~JHa)bu62BRm%!Ju*6aHnP3%!sYFK7q6Oq31cq?HIMVp(Ec0_6r&g?qnJhJ zVpeRsQRAZ|CtI*hw#v4oZH>0<_dGF&EU>!co)Bxnylllz?CLZ1CoOP{wkObjZuZ68 zJIe9f0S(T3wpgp|!d~2l+mn{McHnm;ZL%BqoonbbF6IN%c=WbuCDC;J`9HWs zDD#UcMQmb-%L-P+xEM&}WGpI)MV!F_F}}1!a$q7cnIoc%Rh&@42qMmc6jYSMOxw>F zF~QeYL>yOA=@pUSL~bFQ%Ezy#v51vKd_nLoKZS?;-SJ?tq zZmmhn)aIsrSj)7K8mLJjbi+JfkngPZucCslR&RVadmz9rf;hECf*ffFF+%+%*rnT* zi|b*!jb8@X=yGzd-+oMTzGm)cRI5WJEfar365?f>phv-bEvj z!Ze{?p*yFh=cmukha=~8hon$M*X;x%R|Q13DL9>E>(!l-lt{-FMUoWiVxoBWyU#<{ z6ik#*Hm=6gsZ?BD$>fqLoWi%`q01|D;tXK^4L}?vH1p%pP#VWcR$5w77jy73IHBR& zID0#kPF)WfjIrU7k&u#7@z7E{aT8XlgqBiEAqm9f90^gau(uF^5@>+iXn1Lbbiso1 zeQyHgaP91m09)yVfd2Pg^pf}7Z&`17!S`~DbnHL_q9=Prc>%toQy@s=Lfd! zu#p|6V<~doMX$V_ns_@*%vot*mtcs{p~-Bu#=6IPc$fPR#;W zK#4+~?=C9$?ACgQir(XE>YDo1(IS7GEm!BSuc(0RD%m+ldJ5+P3+EuP{(1*)zq&!8 z=Z|-+tJWLzN4zzk+!LI9gN8H_W7J^>#@^goBzvu~`9-ejy) zS2x+Dnfd`MO`5HRhS_TpkYPaex!Hsf^uA>U&eF^+px?|a-m=C&t^ci&1CC^ioFnuU zj3lAW0FgoH&|O*lnQGj=gzi_jPhY(ny=s6D-JI@-MCYa1Y2s&GJEJI6K(&*R@X$aYvN^K zSPLBAnEJ)V^3bstL(#3FXldw*HgsiUO7neK9zL!OpQhDA<=y_x9~FK38=s03b$?Xp zqB|2&n{Pc|mS6Ns@C3Ng^yE zv_+zkX_n8ht3>A^$$>mlT_F^0DeTG`}G9>o4>5t{rP)iych=HqwC{trZJrAAG!6P&PB*BX;nb8u``=?0cUu0WhQ? zdf@TF!r0~zm7+dXB@LnnDh|#*QLt0y#GAy?Vc+%mT4DTYu()qb8#r1)(DD0z_WA*Y zS(_bLB-pMy)RiTOI%X%s7@q2#XymDcf~nq7{pzL>R*OuEd%7KGmoo};0tNs^Zf?g) z0zMchezC6rmix1upUwLW8Ec@a$9Mb*!^2LJ2sEi(l@gGOmE*X|1mgA;QDFP?3LPvq qKV>vpY<|k<6a)%aOkC^y755&iCEUP37N# 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℞9yX)qmTzz6UloOh_M_?gQ0t>sqEQa*0_5!KV{ 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/euckrprober.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/euckrprober.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6e81db6b40dc184d5d4f959ee76af14977e650f0 GIT binary patch literal 1723 zcma)6&1>976ra&bTG`okQnyal?j<<5bSbt-a%dpMxOGAbuD8J^H0UzO(%4obX}2@8 zCTnu=VWI2R&{IhdJ>=vPO#hD_*Tqm*U?}v|+lI}dM~jW{LbCayzEdp zW)=(|!sKi4i6RI4$kBYWht{!Q>Q1C{=;8@e2O)fAR-`>S=)!* z2WJ|dAfji8xR7zLYXhk>4NuUs^10kO_xkxh0?%=yZY2h9wx6N!&ZY)PDNcybWX$dWP}hebU7!4Yq0C;&Z}Mf0jG@Hu`Ap# z2wc&Ln(F}#=$32W?|4uV5d{BB>IrUt`o#@9q%Mm|t0Oj>Fr@$>aw=Hx4InA5Grw>3d@*GxLWt3r8~xJ^jd< zKDH{~jeaw_TiL7h)HeiGs8B>Qt*VG*aN&YtNP*VaHo=pT0$NTLqh79y#=evv;`FxW=T;=rX}z#5Xf5g4K&@D7@+?m6=aSLG;Gv< z@CFEmbMm4DQ1_t%2j-dBwQ~u@6~u}f6t3c-tdr5Wq$)9Yanidqp584k-^nO_C)LeM zE=FsosZFbv$(JHAVU@!@l%uOjlw`Y4U`JbMq;WC`&ukUoN n-;dFaez6~;oBd)xM$`RbADC4P0eh45$KQV;mtX!1rsDAr3YM9Z literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/euctwfreq.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/euctwfreq.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..49c880bee9152e86b23ef5085d321ab027538ccc GIT binary patch literal 27252 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 VPTVU&w)jV4GX3wL1N`mK{{ScdoeTf~ literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/gb2312prober.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/gb2312prober.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..55fe3f3d351b32162ccd5fb93b6df12b5d20630c GIT binary patch literal 1738 zcma)6&1>976ra&bTG`!=QwJxz?j^*yu#{NXzNBE%I!(?UQ@3YEi){q3!LI8&ubb-Krc~lSkHM*P1-3e)Q|T!|K9Ob)lp0T{@Zm>||a+WXO zMETrorPEH$)-*8!>#Ma9Y%6q}v1F97sNuIlS@%dJo9=4 zK7I1C0MPD(6zrL2V%29;C{gW`0kMJAKAz?y^$xRfIqk}ULzJDX@$8&Qyfvfj)=W=f zG8Wa(YMeE&z*{3RVO7GJ#3st3PfLddPc!n`TF5eeTYLy>m@2soq*tJn_HGgSahKd0 noX2FYJ3Noce0O*rld10T?3rZ>F~3Q=S86YD`QQJ+(tP{}rxlv6 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/hebrewprober.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/hebrewprober.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c9d066de017c25c3ecf5c5f6d23ce026c9fbeaa7 GIT binary patch literal 5727 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/jisfreq.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/jisfreq.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..21c1a97b90a780a904f68fcc54f0e025024fbcf7 GIT binary patch literal 22203 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 RxS3<`ic0^#zXtoH{~r=p@$Uct literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/johabfreq.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/johabfreq.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5e027d033d721a738f60cb0754c76743b4b34e90 GIT binary patch literal 84707 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/johabprober.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/johabprober.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c192029e7243047adf5ccbcfb1b1e7baa02bf111 GIT binary patch literal 1729 zcma)6&1>976ra&bTG`okQn#_!?j<<5bSbe&a%dpMI3Fb;tv8{jH0UyDrLkA3q}|TU zx>=Kh4+~wlhMr1t=piSUVETXbxGsh+0z;vv-Zr?0l2hM|EUz|cp`+2$)BN7N@0p*< zTvqLGgu9j||69ydIiS(J5l2 zp*zSoy2v-Fu~$H7AKr90mS0>$RqIa-|5cpK-MfGH#?9LS7c8i^MbM0I#BSK(0S9pU zR?`pSjWyv4y6Sq3Af~W7v)T?taI+)mt%l3isCdAdb;-K#Fk>gs`N(|m^QI=SQ1aTk;VbUU#3X=&> z)spat$>5Xoey--kl||oztp=lVAqB1S3CCSoHB05u5iO3 za78C-t_L)ro38z!<3UG6ko-r~6WqT0#T7fGE{jR4BN|Qkq=>z=N#jjB4C;0YTwS_+ z+2(b?`PHf%So4S0eBYWsn)~4A+QHoQ!@27{eRt|;art0z<#2JOryp7i z1FQ7?3z-K2LAt;Ha}@H>c(sa%Cn17qB0^mvE1qiSNTxh$!wfc{g^vG>4}<7PZ*cCWt85Q z>ii{VqxwmO)81wBzDP`1*ATwe qM<3?r0A1;i&jGsHAD;uX&>x>evy36;H%Wi`{g-n2uYbW*KK=o$Bb$c+ literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/jpcntx.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/jpcntx.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bb04f980ab5e752f32cb40edff64c7235e3273d7 GIT binary patch literal 40211 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 Tqi#0~J0JZdr+-#aV|)HDs}=my literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/langbulgarianmodel.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/langbulgarianmodel.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5c2b4f8a0628f716077e89574fd57773ca02d4d1 GIT binary patch literal 85881 zcmeI52Ygh=wZ>Oe(UF8P#x&ErXs&T=dhfjp!3Yot5JFUgNsp74mpE~XlQ=zgn$vsY z^xl`3hDq~#c`4+jtkdJP_kHKg;hxK`5ZF%gvvV!;Y5p^F+u1pD=G@)YeM7fyopbo_ zuG~#Ko9-;j{g7b)^^Jw!wA+@;y(AZMp{yadr)+&$S*|`8+VEd!dq-Jl7jn?{q8&s# zik6FZ674M7MYOAEH_`5*Jw$toR)|)LR#9=BUP70N_7=Tdw2$Z&qJ2fL6zwP4Uvz-z zK+!>>SBbV29V}NcgnBoRG*oz)=y1^yq9a8|$u^^PL#j-qrb1dtLxomw5eE^c1>HC_Un zE|b0X7A<96_PKQH@(PCNHH&r0!^DciMMsE^6gBIz&lss0D>_beylA!P1ks72lSC(r znswEp#cI}V@2tz~YA;vaL9}BSg_?3Hcam~v(JoTcRm$C@++DPXXiurHkaDGzt5_E6 za(|aeU2oCLMf*tKE2P|4%2$f^6YVcLKw8sdm*_cUe6ZOzs(FR+q{dT z%GjkX`NL7mv8!{0jonTcv@XxQ)V$03u5zW_ z&AYrRTQjiU#xBb?cG<_zyJU-MYF(ES7O#>*`gZDW?gP&^DeJ&P#n9g z$JIb>>|(3bii~@)H3NH_b-9hL$k@kb2A0RmRajKxRyKCoYAZ6-pSL2TUC$r8U0Sd% zk6&uu<~zC%QiExZ0lY2KYwOmdwRXgUJrM@%WJ-HRAZ0Uq8iUB9o4v%&AU9m z^ok5MshL47t0OlVyIqT{%e~sz_iAI8 zt);RF)~ClVz5K#sx7fPeOL}HtAB$>itrjn}nSnK}TbCB*ypUM8o3k$WkzVhzCT(4w zh0P2s+t_8#^vuB4^VhrVRcdCST`j7ykF6P4w)HN{>Gdv;0AGZfbz$k$dY5gs-sLey z%4}-uUAB&q?Js3!;887`&^V^5c1>HiyR$Bj-*P6*b4ia~_D^TR?9)@u*VenNNyaX> zuuPaOHg;KGYGz=c^ooo<2bGw2SwDpJ(Yj=dYTQeDW?*Z2?6RiR%)t7K%hhb$`mx)? zS(j&F*#yfr@3L&`U6yU$Wx3@w1JBFGE?#dOrwZ?zxIq73-2pja}B;*kw6AGw}LbUXk&PEUIDK64s?{(qos~JhHKiJ(P%Q=dZ{r z+}Pz+q{lALBArd}+Aq$!>}lBq_T#L}7Q4^DvaQHiPOo=)My19s>#vd-C_Q#je^J(@ zz0=m^mD{%gm?D_L9`<7ZWus%KS@_H^Vo8Y!B-6Lb0 ztr=KuEt_B;yT8jbm>^e?&L;TEn00lvK#SUpn;N?uQO>^HdwOnQjoFuFvoDWr_N6sj zUh#6PWaeexw0+s$N3O!`%Y9$m=w;6f&ka0YYj??b26hjUdo=sfj-}!n``cYI+ShV4 z&JD^*T)XTdtjlw>dyp)*HuLfv(`zzp#aB|SXsZUEWoxSj_9->$04lce%gTW(M{d6mwyg zF1>TPrRH7Mw`^S;r^L)~G1lc(*x2PUZ0xd}o_ASOdS)oL z?v)o|UGA@wjF(c@<++=6Sx#G*+g5Q~u`Ve+c3ETj1j~ba$)pz)@92-=l(g5Wb0j? zt*se&jTY6|r&Ls9pO&pFuOnvLDJ{||C)Cv z+`P-{HS4l$D>Ah%Yb>hqx@^7ct*aSYDeDe+1lHxz(qor3J>|;Gx~xf}8p-aGv0Q52 zW&Ndm8i!W6)Tln3wVGBXS+vM%>+*5$s_YX;Vsby+TDUGBlgF3X8^xrIeFwmceRm;1E! zF7_Ft8b`FPciCfvtlUP*$`$KV)R=WyE;Tc7s|nK6tjnI0rN-X-v9anc%d(B#tBS14 zy_$8ozf#s^AIsHPPLEw~RUv0#Q4M`?oL(}{Y-V6D%Y?ZP8@nuD%FMw2#n$EC)7E9b zv~}6X-dSVWK1s$`#>Ototy@>;gT&Tm-L_&~?z^4X!*VsAOGmMW%?zwbuNhdA9=oh5 zHSeOn$hz$NXpCK+`(Vlbhfw3#W$rpmYHiKH8hhW8<12U2c<}8CYXumu0(0#;wxU*~3Pg=sgt z3(4|hZ~XGrDZUHo$1ks|weicnq%F)E8^7F}eTo-0hlO>Wt1~YxZ0lZ|dxyF4%j4Vl zW%-{yetFD?JAQfPe(og?leL14Uyi|2pEG5>jbE12)@6-Zmt|Wwpe)wq`)N8usCCn` z!*Dlt`8qxJtV=syII^+F2#HG;*;vzBWTP!xj%?TitjihKemH_TNBGD#!ddsRJa%b| z;+cW9Hg!<~0qw=R3w%)s)aJu}d*=g$nIAM-N6u}S8@oJOdhGHn()k+uq{lA%ST@Yo3yod2w>);) z`f$fC&!TwEz}ob@tJc-A%i~!#%$l@yS!32^Ic;6k#1)yYc=ek3GW1V$*E@|uX z_^nx&eIAZ=d9?J*@JOu7>-W|r+t_8<)(pkgWvfLswx(BPtg&~0*fX6C+pJ5g(#l*v zcby-s?s?mNH)z~L(U2bdEWzY0_*JcK_ zE@z3fb;lQ3msj0E?l}CTvI$;8`rRKM^Wokn zy4Izo>`o3W64$%MGXsyBo*CH3J~6_**x03A(_@#d_K6X;ChOf~&7gO3((B!cj}z@H8$_E-10p#+R~yL_hnIyTcy{#?3vsnOKeIzr>y%p8MkU# zjMivbTEsF5+G2#P-b>92+|s_W#-8a}fvxE|S1l_?l96if1nV6fmjypg=3BKat~xbl zS(_fStg&@2t#2za)~ClTEok=_*jnnoF2|_-=$znIVvj4!CS#Vi7$)P?EX$fwvjJ!2 zmdC804OmXUm&W@D{NYH|F{>CoFrj zM~m9pfc5s?1IzXoMA);`dRC4k>jJ%tU@KX*Z4$xwnmktTF7n)qX9Kk?JsQ3WwQo$Z zY?fuYVStsYAHRDlr?dt>xK( zt?Ai-HTLOImM`uvhp1&$Gs|+!{=+P*pM74>zyF#G*WeXuD>_PaxM;QLWYO`W6GbP9 z4iOz2uEn;)q&!A+g4B$Y@<`F^s5s8`LW4!8hz=FKLG%ftBSdc$eWK`S(VIkji{32S zOSHXchcFdq(Ss^u_j2KmqLreZL@Puu6YVBiB|1&CT(q-jJJFt^T}7`5({YTxqW!3H zq&~tkM6VR>FWN=)D$xO=Gi5K`MF)uv6rCm7Ms&95oG=$hniu9n7leiJNQ=T^@RG0; zx-2Y*t_UlkOT#MY>aYg7HmrlL4;!Ex!zSq5uo1dB)IisSEzsJq6}lm8gKh}{S{JrM zcZ9X^NIOG4cvsi~-5naBd%|AmzR(DrANE7H%b7Nb9uTb&Z5C}1Js9So=b^9!x-cw* zE)Mgct3sQ2q)lNF_;5G^JsJ)}kA)`aE#WwHWjG2Ap&7b7?1F9$yPcq8;p;my#ugnOZH4R3?KJ-h?@&hReiyTf~+?+x#RzCU~b`oZv_c%%=9 z`@kOwABBD_d>s0T@JZ;W!l$9137>_2E_@#P1sM@v3|~U|%i$}~uZFKd^WhZqzrxp{ z-w4N`-wfY^emk6o-XG4yBYh`)7yP~OedrIu1JM5t?V$e?ehB^F@FVDtLwo2?LI>zi zLr3V@P!9cB=mh=0&>8yk&;|O7&=va2&<(mSbcb#WJ>roXLr?IpLIt!CDxnXCD(J66 zFX(T=WzgS--q7RWa_Gs>2l~`-1@vj5FZ3DVO6YB&AN1LwKlIKp0Q#~p5PDbmT|Ck& z!vgTD!|$Q54TGSs4_86&k#*P`!(f!(9EL#e4MU-C3&WuAkoR`p6-J=^o-h*nK3R2q zAdE)&LtzZ`zAzU0(J(F^>EmHM_>-X;`spwM`q?lM`uQ*k`lT=#`js#R`n7N~^i+5v z^y}dX&~Jqspr^x4&@%!&!b8x9!c6F&!=Isl35TG64S#|DE&LVw_wctn%5LZ1ul>9HmNM$6qmF;kdaBG7 z*K$U~-RWz>)O!40-?mMzjy>DpU)#F2b^P59|JvhUhuh2U?RZbeT<$ISr~j?z-^I?N zP8M~ts8be7MIAtI^ZzQ(;R$|+6 ziESq(wmns1+tVbrJwsyKZ4%p_EwSxRiES@qY(v~ZT$5wHQexYyCAPg*V%zH_w%sGK z?Tr%K-Yl{0UWsjQli2nSiEZza*!CWYZSRxV_5q1)AClO1AI_F@^hX)l1665W0;(d`cs-To-i?N1Wj9+K$xXNhiqk?8hUiEe+B==OI;H`<%=jaMQO zZn{Lcsj?comeEb3&UF%X+Q+CHm#^@UbHXNHJrT}&1cascXk|QAY~9`2xSaq7-cNwT1qu#B;^T|t0?0s z!zn{4qbLI?BPjhSgDI0K6DSiYS5qcYuAy8{c_QUT%5{`VN+(J$N*797%H@iwmYQ*r5&Xkg<<(@Ii)?N3Note+5RkFLFrAojB+KV52b=Kg)*AblX3&) zCd%I_e}gnlrSR07*xJM^Y2rmR@gkaNs3tMqUs)2H|Ai&)rD+;vI^^tB3i0eBiqx%V zX$A$4HOZZwNePr$l)04Ils%L=l--m%$~?*v%6!TPDGMmeC<`guDT^taDa$EKDSIg& zqBKxeP&QCjQdUt8Q&v;fP_|IkQua~SQ9evLK-oyyM5&?FQnpfdP#P&aDfN_HluuHc zDf=m(qBKzsQVvl*P5BJv2<5Ysqm<84j!`~OxrK6^a)NRzsO8HO9*C@}W9h7fUUP$>CHB z{QL7C$bT^Zq5OyQ_vJs5|7iYWr=E1`$)}!j>ZzxmcIxS;o^k4#r*1p-tW(cE^_)}B zJ@vd%9nW;#hH3slU31Oe+C6n=${TQQ2WxlKovC1bP4m8*eNCaRsb)`Y)(^T7Bzwb=t?z+0hn%V=~>g#J7>YAJDnhu;PuWe}D zS-Z8a`B>M(^?SpHpX62HaCCg{d zT7IT)$v(RM&^7ZG&s?%*MGa4=#XahUneq3VYE zt<~BvdHlqQ)i7|~xW?LTyYbo_sD{O=qs6MD#j5$@Y_;(vFVOhLqYsteh~mM9x|^DM zmF05yKX+g`JhITXtgP&GZgxKXf1&%-sbziIoNm{lkegc8sl(~=&bLh~v}N%DDYj>^ z&>`2U3+g)xlq+-+=&aC1psPYRf$j=D1bQk|2vjOm3G`C9OrW>Ic_^af#y6*m;@a^4PjUab?6+imM~8QCu5wo#J{R zFK2_|#)z8~H^V^*+Z02@I>qgA+Z~E(gq>x%Zrx9J?RMe+3n%?Hx@Fs` zbdJKzHo5j4Gyjk=m-$B_^N$!T3bWd%gUoK1IY=Q3AXxz6T1i8P>YR4!Aagrp4w5-Y zA#;%P9b{eyb&&bxnS*2wk~xUvcRqqFC|3tr*g12M%t0~-DRPiSoz+1Wcg-9mbCAqI ziX3D~S9Or3-7^Qt93*p)A_rNf?|~GS_skq5bCAqIiX3D`PmLfeD>Dbl93*p)A_rMj zsSdKbSLPs@gJcd;LBa;WDb%!Nai3#4zi(-I>^Sp znS*2wk~v6`gKX-n4zjsl<{+7aWDZi~AT|BeLADIY93*p)%t4AAq;`Nh$ksubgJcep zIY^O%Y#XEwlG9&daONkOpJaYg4HBy*6=L5dvYzyx)W=1G}@WDb%!NRfjaoTLtNXiDZF znS*2wQsf|qr>KJ*xh8Xv%t0~-DRPjb*QkRWyDoE(%t0~-DRPiou2Tm&enaLUnS*2w zQsf{fZcqog^~TIWG6%^Vq{u-|-lz^T_2yiA`QyFi$wLszlZPOb`-dO^l7}Dwl7}Dw zl7}Dwl7}Dwl7}Dwl7}Dwl7}Dwl7}Dwl7}Dwl7}Dwl7}Dwl7}Dwl7}Dwl7}Dwa#PEo z$wLqT$wLqT$=|RBBo9FVBo9FVBo9FVBo9FVBo9FVBo9FVBo9FVBo9FVBo9FVBo9FV zBo9FV_=g|>{X-Cd{vilJy--#E5Ck;&hadp`LlA)ePxJ!)LlA)eAqYVK5Couq2m;VQ z1OezDf&lanK>+%PAOQVC5P<$62tfZ31fYKi0?w;;&-Rwui3M* znBrGmm{_uyl6DxF#5)YoI}Fe}4A46a&^rv!I}Fe}4A46a&^rv!I}Fe}4A46a5W^mN z2@Z2^8{Kjap5`SEGj~qrBAJV%V+zKKk14=^M;Dogr`m~&%%7JnyS$4a_9jsTkS)8o zj`J=8^ic%pqX^JP5ulGEKp#bbK8gT+6ao4u0`yS?=%WbGM-d=m0rV20$hmEF%LRDS zqqxYz1z8mFE`ljDaS=e`B7h__0VJ6TAjwPsNoE2_G7~_OnE;Z^1dwDVfFv^k_{;?8 zGZUcCOn`WG&#BK$Q0X%hpwCQzJ~IJkQKYa4Pd^nGS-dE7k<3Lh7b$)W?h-ulR9s}~ zl5C;nT?ElKi6Vd`iU5)*0!X3=Ac-P?B#Ho%C;~{L2q1|ffFz0lk|+Z3Q3U9t2+&6n zAfm`Q^-%Q$MGWG<4qNU@8oSruJm?V8L*G8f5Qq}WB)t%)wOejQvS zrg_=NQ6$+-auFn|NiG6NauGn1ivW^b1d!w+fFu_IB)JG6$wdH3E&@n$5rEG{fIb%i z`dkEvW%N1qxdf5tzg;w19r01@sFopkHVK{Xz@q7g|8S&;t5} z7SJ!WfPSF`^b0MZUuXdzX)dy(F1kqkX4TFea%1@1ZQoAGw-9l(4!KTUZktxLVtk)3Ihd_ zud?IZlCQF#Gg$Ifc2p%_Wd|f*Wd~$Vk~s;6!Sps9RGCkRYh^x>`9$UuS)9mj?8ApU8Y7^9l2YZ0*FQLU!LN z`=Chj37gC(GM}IYGM~tNB71+LEZ3>?Z4(RliyN6w6i%uYvinYaCvt?0h-~eY#fdCV zWN{*k6WvaCjsItHLPA6K*^X@ObU~juc_RG*DE%B%KG&lAuv*5l)z|(F#=;1#tHC2 z@HoS20Y3B^Fj0UH_ytTB;KNJ-R}1jLjeu(f_>ell^#Xh#7vKp3eE1OHi2^q%+$@0a zE=kk0GC_QINpObZ%!soT^+Hwg-6iQcN1O27CBb=$`0kS60!1vV1Q#jd?L5IHig-Iu zaG4@LFDSS|5uX9M>n6p`5o;8; zM66ZZ8n@l17$VjwZjZP_acA7NUU65%-HP564ROOg+O#+J+^5(Walc|y?0i76IpRUZ zLlF-v9*KBV@mR!L6pu$dp?GV=lZsQ@#@AgY;==TZGZbeE;&oS?9dVB0+=%lO=L5@c zt1K)~To`eYqBq6j*tA5OmI_uCmMJcexI%Gd?7T{Gb!=UuxHjTC#r3iC2E~mLHz{t8 zSfjWlVy)s|T%M`sSmdB#0`oYBW_aM9I-}m zOT=2mtr52=hKO~F+avB!+!?W6aaY9MiVYF>DDI88Pq8uLe#NGU2Nb<2nq$*JZ8{Y3 zu;P)3M-`7nyhZVN#1o3QMm(uFwS9cub+t8Ju(B{iab|3tr8qm{9L2d2=PAyQxIl4X z#6^mWBQ8-~8gZH8@`x)GS4Lc==uNRYHm%X7wGr1Tu8+7uaid^mVUyzK*jl5wC1S1O z*4TNQVu)C$xIN+y#hnrB6?aA4t=JH8kK*2l`xF}^?pJJzctEi^;z7kj5f3YRQyhs+ zN44o##9I`PM?9f;Ys8a^Q?ah*k?HFHoO{k^|RupC^&Wt!qadyNxigV+(^AzVtT%fox z;v&Vx5tk?~jkrv4dBhcpDIe5u{q*F!3PgTJgj(x z_^hhJQSE#z;w_5DrE_KBgyOAn+mniFim6DNC9;=`r%Po%H@GmnJU3uUzW?O=EBfEx ztgKcu%=eBvUNBMv@59T1hrQ~yc3%#bb8=2(kBa=LRq|eg< zNuCZ!@^nCwrvs8a9gyVdfFw@`BzZa@$1)1Cl%)kmTur!MfTV!V4?F zG|-`1HB4Z*!U%yRPe->TPX{D3}3p2PAnqAj#7K zK2HbwJRRusbf8|Ss?XEWntYxP^m#ha=jlM7rvrVS4)l3C z(C6tu&C{z2%+rCIr&kr2rvo)luPQK42Wp;PRbZYD)I7baz&stOd3sfWc{)(@^r`~$ zbfC}Efj&nlw+x{TaO+ zpQoeM=jlMr(<>!U2l_l6sChd4U3ca4bhP?B9jJLa{9QZyJRPk*PX}tAURhwC4)l3C z(C6tu$6qsgeV&e1&C~I^Ypc)G(W-fRWr2A*Q1f)W z?uweHR~DG3k8Bh3^vVMBbfDzvxSz&69otHt4rHDV)I1%pwW8+fc&!!H6q={wjvVrI wY$BEU+)(D}gRaRBy!!r%fs&`+P@Ja^VxB&TdHNva>HSXS`azp2%W}E@2XiG6lK=n! literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/langgreekmodel.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/langgreekmodel.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d00026a3965c3ec3c546f77dfbc3aacc68d89768 GIT binary patch literal 79303 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/langrussianmodel.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/langrussianmodel.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..21267c4630272d92fd59a33130697ef4afdeef9b GIT binary patch literal 108782 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 G^Zx+EzbW@4c*6nw7NDN?NT}y_sSoV~W9m>D}~R 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 Z5UUNO6g){ko2|Y1CDs1xIZg6`_CFk>wekP} literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/macromanprober.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/macromanprober.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f96fa47af86fb537ac66e0d6b00035940a4f44d5 GIT binary patch literal 7545 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/mbcharsetprober.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/mbcharsetprober.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..71d40cc8141261ee7125a73490c839f79d633160 GIT binary patch literal 4166 zcmbUkTWk~A_0D+48OP(;1ha&Mhe;H)<`FC5u}gR@B_W{&XE$-!%3U;aJmbXRM|x+B zHj$}N%c|K`szwzRsA465u~hV9Kl(xc=pX&Ft&w7lgoISBD*lYvO6~r%=iIR;aULq_ z&G_7N@45HfbIV~Nu_Kwfh=&sklU<`Q%yts68wQ@|A$VaH)lCiG0q*{h%AK_1?8Y#z_BY!O&W6x)^E? zLEDxsS>!mD;nk~I4OB+a|^pIQ7_Dc^&~|} z=hB9vSi979ZlNU5FBV~eC&`>Z(X*Ck22_`zG_hc{E186DC`s@ba0x-zGAYL2@+e9Y zNV=lvC~7El_lMs^rge?#kzB$^WYXz`v5?KD(pp-(orrwAfGo1$G&i-Rp-09)9g1Y& zjGQvRV9e#Avni2*+gk2+B$J+r*o5N)gM$%0ZD_~l6UkfPje2B0Js(kEnVP2&{$ zBs+tct{K1woO)n>f$jvc77uJ~?SZB?j=&=QBLM%pOI}L8FWZ*eR;8}0)K&UfS?a1t zgQhfCmIiBAt}O|s)LZ-D%#yI&@v^(GG*;<8YIYxmp??Yf-U1JjbZiO($5ZMs_&^_x%TYK6T`yH=h`<>Cd?QikK4L-cd6Zt6J0rw8OX(x1+NHs7H-32%e zB6ttMZUAAPb|H=tuH*eecWF0H>;tg4cN_aLc7wP@1F&Yi-}=7ted$M&)V%)X^L4^` z`f74uIl3x`s&c3z_nLBVS?&d@>Fq~y1jwd*XjML1m5)~B0aG3*%L7|jnD)R)mV~jP zKwfRh3T;3_ZN7~He1MjMf!*%%KPJEAV8-zcd&Y1gmq1Qvjq4Gz!rcgb2HLp8-*K(y zR&s3CYwepOBk4M{-X#$mDC%8Zzx{;ettwwGCXp*ucf#T-V^Dw`eQSq^|E<N*QO%s93yp*L@8>-QAJ$DreAq+>LQPelZkb3o|uk~C|6>ZI2F4%8MAiIYVdLvDAjWI z3!2e#Eah23O4C$$nNbeQGcp<*y%f6=9kcwic|*~1`NHg+qQWa`bubqBTq><C=9NSK!#=cb3e+)r7Zz90yk*9=IjUw@1wx+ItD!!L7|YHWCvip z*t1QNMJZ3i0{su*|945vzjOH)Wq;WIU}PeG(*C~N9V&HIb{{r(AFh+2=Tq(tgI|s< zU0gD1JqI40U+plYEsg+Z;@UfMV`xB*$mEa*Jz`$zocr|$Z+mSy{ zJpXAW7&U{@GW%Ykcunf~vrnGy_{;S3PhRZ!>-4i5=82!YfW_C%;PrCw`oCZ8>o3hb z`V7m2hg?PKeg)6c@Yj3IJ&~$6Quan{HLm(kSN*3e{xhckOr5xVCqNymfxc>>uM+4t z1N~0~^Zg6ez=d+)!gtQ~UV%Lp%hDe9FtwB(7!2$=x(vuR&k<1U_AZY>)oiSjt{H;4=es*(?496hS>$-bjacpJ;tC~}ipCZi~DXI7-(ojsH*5z2y<+#n>C(w3;d0+`bKi+Nfr)2(S+^04 zbG&$_B%(mzWB(H{rL((5!yT5}SeS?Z_9%Llt-Sy%z1RIKK{2;jzLq+iVrgM@+R2Ee zyR7~HCB@3Z5-~ID%tS05vjoe|{3Ef?$4c-A>8x$!^K=Y`sDAw$0Cg9~arLu=>noGq u&EG3>s@(e3$ou8iuSSN-tzV6tD{ueR-KRNF-e&Od#v7ddehU)2$bSI~Ag~|+ literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0e5c70fe0266566afa928a0fdf4948464007c4d1 GIT binary patch literal 2036 zcma)6&2Jk;6rb_udOzYOX;Q1ZD!X2 zqa1puM1qVsp_Bao}c@9;%+08L!uN6HAQ8Gw;3Mo7s8q{bqjA zG#Rk=Gq|%?lmK|fm0^nq!ubgko&X!z5Caz)5OO(!BW~1)3OR~nZrq3qIffH%(ntz9 zjwLr`q=cNnva1-1kds(-HA54!glF8ekrr|aUvX!RSs}}K&Yd^rg{dH20ln`OsTz=0YMdYuMMynZGmHhUt z4{wF)%%)YZwyY|;=U`tfQ||8OH?~6uu739Ugu3$}RMoZBP**nYuYa-{s&aAT z)8a_m-MM#jpp}Oq@Hx!+M@;#SWgP(n+Q5jQXe~B$tUw#0s2#DRmDnL*TI{iA#1FwY z&`7Wx#A$kKHD4Tyl`5EpW>!R8G(nKxBK1N!GTe~OoCZ9Z=a?n%C-?;TJdr`;1UMZk z;CKuPjo<+O22U7r8ln*R!*H0}umcCL`t4X61?$vXES1PFan{y;c(uDw(EJcYM<%JTSudB0OP)SBbED3JA|E z;RPc+Uxa^}CYyrq9*q;^AwL_XF%RL2*qo+Jvy3gzGfj^#yMF!A%OCVz4-rqVTfT)I z$MV~5qv9Y3?OXbGyUebP%P3kyW#7}+A1vz_S)^_@+x}jIO#?(<+DG+$9Xlm`0Nhy0 z<#f;S(FaYd{E*!yPj5O+-DGZdgXnx$8~M6hDtlFa8wY1zYPQK$cC2qRuTXbsn2Prq z>b2SM;t@ELw4-Dv`InUWQ_38F*_ASXNV%s{t}EsKRu_*pJDX?2>Dtj&XX{MO92Gi+ zGd0kHDexRO_UGk{d>HGf{Y8+{ew4qLkJOHOD1PVc;~<;l)u~%9GEFL*rrWSvn9HhZ ze$}$@03iwHN@Iolg}Wjwss-6EBaBUx6+FWnJbqO^CaQ-pat0 zlaIzxz2$m?NEOs7*Md?Crc!QsNCJP(SYh$M4lJCsRIQfyiy4?Wx2aNV>{+G2B1kQJ zHOC7K{31}fV5@-z<4fSO1B49xkETSy);=BKH^YcqE Hk)!_rZ4Kv8 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/mbcssm.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/mbcssm.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e4ae98d2ee2be75190728feb685297bd388c3d63 GIT binary patch literal 31776 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 UZ)5#)jcc|H)!NCPIeBG&0ocXWUH||9 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/sbcharsetprober.cpython-311.pyc b/.venv/lib/python3.11/site-packages/pip/_vendor/chardet/__pycache__/sbcharsetprober.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..28fbbb589bdb328b2cc8ae95bd3a0a699a2f4850 GIT binary patch literal 6441 zcmcH-TTC0-^^QH`H`suUc_vPPByKjCgbll!-6bS}1OhQpAbnVBN5(T46F=CQAsbjz zQ7LM@+f?NvRcM<^{z?-?s`j&=`_*oxe%NTDj7F+N)vx_&9c3%6_NP7Pjy*OZR9mUN z4CkJE?>YB%&OHzRwyDWQpgbg_OQe&KzhR?RxGM5;9gqh^AOe#n879VLEHO*Q8nb5D z7@Of@976<)U`^XH_L!aGY}%1=#+(^f%$0G++zhdhD@5S#62T@~A6W@`3jaoldFYrO z#vG#km9ZwlIY+{-FOW3M>Fjtaq3G;PN>+4NG@cQK`PG%Qs5@p?lvFMoPwU*xEFfPn zNYCg^mzLtvoTyxvatopqw(2d|5l<+hbSbWg$(*#NdvGw7P0lIMqqok9AFPVmggBGB zC8kqLxtx$N_Gv)#N`4IO2Sg+>Mj$cEO(I%FR$$(PUW!>L#)&r3wrGKStrnoMnj`y0 zU!i0vr5$)Uia7wYQ4H6zBPKZDdYpRu92_7mUR+be>WQ!A1Tn395^!8uRQN31mF`H# zv&q$XQq)_ppI35xP7*|k&%{^s=Gq{ip{(u7+Da-BPxC7|Ii;j-i@X$vJJwroiQ)<$ zmlLTJpB5FkNm+Nq(<@8y1yPB@UK~7Kjpub2k8`c2MZi5g|G{cJjr)L>RaPY3%k%MU zHV4-Z5|epeLY2_1sjQ-Ni|Je(1ig^UrJsKa6ab+!&TTF>5 z@pe3NeGLzk0ZA^42}O=fe&p4Tyo5}{SFi*|T`4#6opMOR&81(#r3bQH)UBe?H2#oR(0#XWaDF^||JxPZF3PQ7Rm zn(nfXV8y4nHZ3vlYw4Qz(fI_g*dn%yZH?~$R`4&fg6}RH3jp2@E3^O}ERZ`)tOK;) zuLt*OKR#(u`eF>$PZ5@o7FR?s1e>tjihN8PuGB1g@LA69dcT)v5q^#Q{ zQCXF;37Ehv7Qj$XU;Z7yFPH~JK~qyLd(T~L7^zVZvX_P-c_vSIoRyZm1zI@2(Xv9z zTwOrQn*AY30xesOQb0cYo|a=ztELTLsDYB2d>qe{qPs@dSiibUfy|L7*60`i0wM`_ z8}{g&yt*Pv_})|5lmf5XRy7^Y`h9u~TTs1FH=mBnieYs0CSDdl;1jvkEVUtSFh}sP zu~XJ-4SaP#n8;-nDVOGH)5R}J$cRInB!YEA#~_R8MX4WmH-O+60Nu&+30M$Ji;UM6 zg0d-vaQF=X>!AbGX0UdkVW5&f0Pxi&`KO0Cn?JVSvp;uq>^M5gjxN>FRdRG`?cD|T zo_n{mAFAfvp5p~pb#!Xohp_I@PJ9dNF0H%AXxHjqI^LyqA-7j^cz*8s#PzY~o~JJRD!)w@3c^1skKs!gWe36>K+2 zfhp{gPC_M(AQ(d60id@g(P^z__=Mr6Q=%-L#?dnfP%zS)2+jfsTco!Te;a^|C#p#q z=UneSNXk@ot{~5M0f31A;%Gtv|GepwrjNb%yan%WO^SyOZ_hpJJFE6hmiw-%eOJr9 zSO23}cMY)?V2=HgM5$6qjsfxjZgUxGqez~{*0L%8IixaW)!6@piH5CG1lT1nf>QvV zF!VlTWDgnoj$`Zn2i-)~x6!A111M#DN1J5V?N!}96~Z{rXl+5YtzT_BUGkjPylwYB zQoYAZj^qF5!$}z7)Q;x^oE}elAGg?WI2<|nG1tNx6!N}<4b~2Js^mFUJy>7K(MJ!a zI~E|G;vrN?n0F78pte)_{Tbk1`PC&Ow}WME01P5y@`;7g*SWh9PAL^IxST$nQ{T8QA{qg2Y4{> zqUAOGbCe&oofebd>;WG0bh1AW{_Z_Pk?n^2U%od+w@{!`ZuQ zcy^So*i&m)^l_5J}l1R=*_ zO29-g^nPeSek1gu7+Q+o7DMsShpB82`Nk9 zZkBRs0p;__5 z_x0JisrjjI!zz=rH|8(hoNpkurE|$7#EG0BF03YX$K_erDnB(3;UYbb-W{E|a^XPk z=g=K@3hO-wc|;uj z0dUD~cwgWN4VQPSLafda$l{&{M|OfEpWZ14$JF3hVX`o}i=8KTf+rtOmV;;2;Mu~Y z<_)6nJOnQ0{<)H;SL+EqoK}0@DM5JH+550t?Hn#NYkqLBtQYM9hxrtXH@@8VWQ$8zQD8K2{kyh;~gq_hcutR)EU0+d9kB#iKjg;C(AoVQy`&EDcW2Wp68>rTO_~9rVGcd(y zMd=^aXFH9+qP{N`Z)E-$ft_>))m?Zlc@e<#oHzSAbhHS@Y5q@|FF?2 z`v~m3z;qy=S&uT3c_CRYPMtZDXajF8kPaElrs7K%08oxiiHLV5c+!uEO7fXSQdzf!%9sOFzQAn-Tj<;VpIh+JQ1p!3- zILTR@1QlQ%1h+rnLHj|Yfp+ld@Dmxc0a;qznhTby4gCmuO`orrRtIdk>G|u1RY1S= zdTNuiPK_}+{y^8b?mE0>Xq)jsJp#ZH*dy-J^#6dH+2T5w6C=v6k2mm`@xVbe0(*>$*8#g~izYwv|L)3P*YBRExnmMG3#D|vid4=gan%32f1HPOfLbPMlxQa4sM!|X zHZwInG4nmcc(%a=ug?Q?Ml!O1YV3OzDA$i2^wRfQvMr#Me+yufXdYjI0Zmoi-P`dU z_u-QJaK%OfouKW{j=!TGzo_~zY3*Ix^J;J8+0aFGXiDw9T5iAk!pa1u86bs_x%KD^ zC)?6jaY5t$NwxLO7jCZQY{g2Nnk((3rFCmw4GcVH)f4B+fpcZwyT2FI(P-HhEnLui zEueR^WuNh2%f1ol^ZK?feR8L82UK{AfmXpm^)YO@9EBX{IBYu_?v&8aOX$KS^x4uC z1XBp65nM-rp@)PXQNqAbLYdN(m}X(R1G05U?3FbMbe{)(p zbhN~FYe$cj*uw^dd+a@`MTRTRRxSV*lMC#62PzykY^1%bVn@tD+7E4K)W91Cm5aEV zEAARSWqK8yaB^UT4+8DP)?Bezxf9zSy%Rdr^;iH0U1sP3MX(J(`~X%u?u!Xx62O2DL56E z;4<0{*{$#buXqHH(RRvSrAz2Cbe9YjpWsuvg>J~@^N9h%Ml|G@*z}@mOB_IS0 zotOKS0b#(3Dn0saiV3+>QA`E6=5=4A|bF>}d^uD{6PyALyPmXiTO2iSj43V;yjV=A6Rpr`88{mI$6q~$Di7r|PQBdc&nR-e4jYMW!HoAqx4)ZEi;@bp;AzNNKuk=>CrOB~Ce(QBzoQW3$M zn5a0TcjZI{qk?h$r6K{{sTK>E=sZGFPSOw}4(gMzaKuA}-m78_DftYR>w{Fna*Ftv zVB8{%I;4vU_IMD+J;KOO7+;Bt3C0`JONH(>BdfZTVCtFXu|vi39o@HKT*LJkdcT~{ zN@-C>?cIS*Ni81g^&pg%MO8&eWg)|~+<*6DbXBD*j^;#7lqE^jwv_xG2}^iWjNaZ# z)2Be8m(W)@t*Oz)wb7`IMUq2>Eo~!DKPD0#-o&}hs4T5VO<-(zWF)Fe8op2v(|5%z zR-*-}5Jl81lP6K;HG{RNx}H|E?3FPWJ6zZzjC_IIulTbs__L*RQ>AOkGM}pOsS=-h3xRLw<2k%4p2<{laeY$TTVk70ZQ0Ta+Yh@dY>%jvg<`TD-ub}8Hw0REWMkd zS%UFh6KN)&?q`VU&V-C??qR*8sH#n0M$Q`9Yb3Lg)<#CNEZ2R^UfU2Q(+A6A-S9zQ z+PjjvVRjpt?We3amsOv>afh&d{0*4PXB+#Dze>l@bD1WL^lZn~^HkRC9LLoz18%GY zMy<69&Xn3~6?|Sgs#d{L>8M%-%SSfEy*ph67r97LkC+i}0NiM?Cx;^1YIwMZX*Cpzcu852BT%sY_7-?jX z1zkd-;~o;7lIyV*p{MXON`x2dr;y+Ef>iyC&Q8nml>CA*YHd?jE>Dfb6&1&4mQ?7t zAV(9+N?ZZS=HZkWm*=L`s49&|WAkxY@>_IQnWfFT>rwp5sT=| zpjk$=-g8B)W!?t7O=3kxvd>yX_MYuAjCopCfKa5a+GpR_$BA{4Lvl*>vzGSi2+-u3 zwTaw4TciQ_M$qa2p3k7$OvDWit=FBzbYmg99ZTvGmP0Y(*GeIKKz=X(0pxegL!{R9 znhng>^i+l;WR_u&T8SnQQSCKyF#2g#LmCMc*CDmOMhe(Hmw;4Ng9=ewDdssrimUXb zQPxr6Yv1M(5SM5QJz+wAr_L%%ixSp3L5Rz7RS+L_l-?@V1fdWm zQMe*uOeWObF(aU=%{q%EMN*$wbeke2W_5=k#1c_O5d_5o1AKSC&jhCx2`fQ4szwv> zcvM|Zre@<(T)Gtve!3ikAWXu}El4p{369<93nru}mW9P-bv^|zqbC@+CCRsfiTF&= z=;#mh_6C)>DxF-6#%@OEBqg{QUknN$CZ=$ZXcZ+js4T=4Pyz8BSX{=x?d#9`PHDbVq;{ytxxR9K>Ade+b!F(^OHhnV(MUW)qmdxd|05dHXo2XY z<^AH9Lvf)0z%4c|R z0=Qy}>n?EJd9Fv}dUBNqcfuHxJIHaN?jW;0M6eim8)cz-lq%+0sFAvhY%v6$AV-tZ z69%_|yh4P1hRuh8UGdh~Tr1y4gd2g}MLT?p#vj%A-W=Ea4$H`Cfh&Unw6TPA?n-nq zDnr~qLHG#KwKuWOC8F}&5=5ja(khLEM7pj#b9-imPN{P<0LKC#f2_KTAVS2bTkL=# zX1Cn6TtUBNz)@BA7%jD^lx7}7?;aM7pf%=;#OE->9m^eSt&_84mVG5{HIKhzOWV{c z0wJ_eMZlZXYJ3KC5zs9V3-or8m zR%a#XWmp9@cCYq7TWDy9)mCPCw??p8PBWr?FJ&-!&QkVvHJ(fnK_HKo@?Kpst)8Ib zzGB{K9Dv)HVCKGJmIJ*6q-eQG;~Y1cEO}#W!lB`R3!Q4=(2v z_C-}6ff4A#BpxuC;sxPekmLR0KT!Pbm;@Ro8g+*xFC`@m8Kv%&Ax8xK0UncctFxn% zlM|D=J&~H5gRFrSrJ1EUOfVI96GD!#ZVyd_h4E3{Zj99Jm%~$}&i!;^Iy53&4(sex z_`+mZZ6Lp-VbHmr?~u zPA$#N3nJtYdLvbrl4s+hB*!GZd1`E8GCVvT7Q$nbqfogz;7E`Diijj#E%y;cM;=V%ceER2<;XyQs*wto|a$`;7-`8sSeF&v#y5 zwk_{Hp?Ob~P>16NvrFmyOPLE9wb*&&(I;D-1BK3kXW@M3X|3~g=4z4e{5q{2=`Fw| z#P=56o(J_??yiEntLXW-=xNhDJwP9f7d@@J4z{WJ6#`NsU5bNS98t#fFNE4Fynncohs4Ho?;*G3*p zWH01B$EX4REl;4}2^8B7KH@i+jj<=LjmC{et?lE@wq2{G^}s6xq(q4wwYF=Xz?P@K z;OT!h@~4UCpXEIv%@fLbLcr{h^;FgQvQ61*zi-`W%XjrYyRgapaddMmKQNN(8qwND zpWlAB?y=2l&zt@{{ruXuO@Eo*{6ZV}*|#v&bPvc|77kjCxQ z^Q))7KB%<^3-!TVeUR?j(Jg+Uzz^j4L5&|QA#1|`cz?^?U2u2j-94JSXTzp_I8<;C z<=jKxRlNx*!|F~&y%=*G@gQ5%G-#f%wu$bDJud#@1|wdUqc1Cp9= zh)Nn|qaa`;d_RF1bZatt8*)JcQRJY|&qe{>v%0JNJwR&;Ss$Dg`*MKO*pQ<%d94Rm%kk&3FAda9xPi4&6&2|@5PnA|%w1w3zf zg`^;ukYl7{7YL-tmA{gOWn1C+zJ)Ye*kf>#-a)k}6V~^B`b(HKMvK{Nw*;5<-Tz9{AXrP3kVe=q;y-vam%LcP7F+BJlgzgjd zLCEjc?dtL({AU7FH@gY$)_!6dU!BbcI8*pf8vo*;->5oE?kR=dOXYiKVKFAFw~Y@{ zJ~>m)?2QW%L)HLS6SOMuJxkI?Y6bp)aOBH_ZqfJLStD3J!BfyiGA8A(KuT7IVM;$n zOnVNs)jm6DFlT;>s4r)Jis)qSO-~UW&zYYh>d%>-=9_P3zM1)b-|XKwoi+xZC(N5$%q+wFJ0`Tpl#6_wg2=}V#{?M8 zz!{^4fPub^0V92v1D61>*1{sfvW54tgw|xMma1RwAp4uNpUMdX4#bxxyxRUL^pv0+Y17Skx-P~ zNf4106YTX}po;tR$M#*l7N;JGmJ|j{!17) z#&1xn=AmUSSYUNxK=LAuN6ySyTJ>|sJIXbi@?^k zRzl#sb@SrL#=Y3Khu=9>> zr`9f4yGbWSrwkG{URvPhV$)>M{kgjbuEGT1&Zw;vB3IP;Xc- zBGd^*qqsbArE`&u4W96Ek;T;_@FKfIHCcdFN(D)64WOQP*C^cM^8YxOm7Ny3DQWHg~@uJj}-};R$ zA|wW;rzd6xM)vaY(SrCyL42|xK2;E({w7~{X3w7IIksnCTDz8OU_>dubYWzAcx+fP z&tIPzpZUfDd&I!Vq`zD-!@d}akQx}3y>c-k3`~v=lUhhAmd!h(VRjd1d5L7J$vlityL*ZS;LU=Jr;;Z2@;H5oy?qd3DmhL|s zv(E&zGB|}HrSCSIn9@%+4$o(XGd?MUT%99_DeWw0XbR_k)V>kQ+WiY>no6)VmJJ$AlET7Q+|4e~-bm|OBeb;&EPAWR+}3R;Hy1ciVT zhUbc6;u3LQsR(W+#2^ibf(KaW|IOi0~2qUTEn0E_ONw$KEyo8)4}3Tcbl!K1AZd z9SSzE>sT^0c#n_Y8;VBm45Tc0%F1aD)p(JCU8CAdqnhGK5@VhZ#z0 z$VuI95@c{^7dwW~CK%jnEZNcrwK5K*7k&i6Lndou{=l$ccw~~StUP@d-_7#G6uw(t z);G(IEpmNxw%pWd%Q6r=G9B2VN=+j~D&&S%cvZe=?v|QIuto!rLyk*s>c(XKi`o{c zw&!zex^_gW1&RZ^+}epHO>);XzT0K1R`YbTFYabZ)4X;=8ppG-Z z7Hir2PaS>$t_C=Cx{ZVoCcV-zw#enQ^OOCE%M_-}b8>QMaSl&c~M;B#B)eo0{u>9fb!RjOU%a& z;6-0Wu!{ASTg;0%V5cZUM+V(1^c5Zd+t=c%uk)g|^fkX>ENRVhYHRPksx_{>goE`| z4sX4ZLq!P(+o>ETU&W!QZ~B-PEr%zIv*N{-gwBKv|`= z_X-J^ZLdbLZ`gzAiP`cLwNS0o7D%*j;3_%8pBI?rAa9;4vyDa#eFU$F+ga`@K82u; zP6u-9@on7%5Qnvzu%7fu%8mBz!a7F<2135h$O?}wN&v8!no>n3hVzK#^_ujzoIeHTYQ}{ zD&m4CBYjTph^6E98&{*gcGR&uG>{%>r$gf|9Eq2-_-`7$O*BXKTEKzTYKfP%7-%D+ zclzuBz9Zd*Egj*pUGj+6@>#_iQ#^YHoLRm7SMd77-y^TJ--Q=ozFQBB`^MjcP7UuH z3pC02TKZ$$eod`0Fmc1dcVI*jZPDiyyW)uxpMaYb^Z?-*eNgkXf4?jAe=zAf!n+x| zi~c`w_9f$Y5f6q~4F^&W9{SY)g(AWQulDAahG!A*5O zfOnfBS#%AquOnN;u$n_Kyu~9X2B!By(Il@qBf-ZAZiV%Ay@ik{lE|H;$RmChc%F@H zP#!t_OMQ`%I55Bluqj}vS3cc;8cPuHdV*)5pM_fh;0K)rGmnjhI37l0hXA9z=M*~w z*Ai6J^>x+x0X|S&E`LF%!J!#Xh&(tnu~zPR2V9`JtB+9herQ+4_b?>XMG36#ZvjGw zap^&^p!a%LpjF7u8w|iupDGYr8!I#!pjntG!iP9C8g7y#j9~$)->X1J-t@rQ(xqRh zDv~{?s4#zz`uN611;mKI{ubPOwQmogPjF;-a(r^&*8JMQ_`ulsh)TdP-~ReEg3*!j zF@k5_O@h0@FTaJy-%qUu1zeAjI2bwL5LPM>AcqJE?NVbxu|Yl&h5He4OR?Z3PFPT^ z7p|=YLEdRcUtr28hK7!bhci_1bE1{>oLw6581T z=Murgg5X65K?tRI-db8M?iDr4{AJYGA{UVGJOr9MjJjROTadF?TWW8i^gl-G+n@np zZZ$Iw_rVO>J6^DM9$kFts>>(-!`1M(_t{d~H7L0TG5gGmI`*hOUDqeo^*y?rwJ`4L zgYRV-Uqv0%J9c$sTpiCQpPoy*#w6ERmT7gqZ2+S7e!0UZvmM~UYO4YdR$JAf=_C6g z`mm}Rk3C%(PuH^zse9&UlhWL3%6Bd8xh{FGXPG*+djI%8j-_sXC)N5E{M4GVr$Mck z@=d2bGm-~-;6-XH(>{}Htip_qL6B?Ap*L1g$^P1vo^3ph{q#G3cRS^qPkR<5&q9_d zdxd;2TiPEj9IVPN@4@?zXC+s6$~7uCvmi%>?5;hufRtdL+MA!*Bz7WWpGes!fEMVE zT>}}{!1JxNYf5rWWf_Ze=0(?_)HQu*lHBbncl%3sHAJ2TB;RbtJ)3gR%GLE!wePsP zKU3ZR{N_)BU%r!1vSjyt-YoggW$fot_H$Ig&SO_^#?|}0KJ6NnT%$jYN|RSJ zuB$26)t79S#EwhsdAXxo>Xxa_Ty zyl99!R}C-D%ze2aon20!S&`1H;5hVBQF@MD{TWyP^S9HkNy#<&vwmszTE=xP<+?^i znU>f^D$49}$5N(aDcx~Z>bNSSlu&fOSQB-D4l52TvQEZ*-2i;DjZ9^gb;7h`Cg*rozLP@_t~`fEcC#$V4zdvKdv6m zR1g2OEj@BU8o7|Jo|mfUQ`Pe_PN?tL-JfyyfBwgxzWbAR)9$m9`)ta6wy5ac^uQa^ zz#D1zo09v@l>1G&u~lju$}(1GBMlBMvbW*mxgX6velP9qmAt*5FH8OBGv4zl@A;Qq zeNxwy+}(fNJ(ua8OLxB^b-y8Z^*z0YF6CNuDc2q@d~_9tq1^|OCAqrca53v*sxKI_ zZmJ``;?c&bIU{%XVV^rw^q2K9l~XC_WVQo}XnCn$61QsfRDAsu_MQ`-k#fL609@1u z@eCjwEs3bps3nAENFf*cobK!3PIwv&%%LIfgL=9j<@Af7oMq!wZFJ5;y&$?&zyq$9 zUcp26edKuj7gzqkz*!#{;f=L)F9@L1&IhJ_lVCV7@0*Tv4}#Vsd>3PI^k429@4}eD zPH);b0Jb$fC_CudFC+he7fIWAMA0Wl^TmEy-X?!w-ZwuqUSa;!ux~!XQ>ElN(VAty z?6ssS-?tp;Hhv*f?xc^U17y^F52OiFy8q$yi?4mlzPZ>32E8co9*`kO={Efb`-(F(@8W5q+n*C+|VHOEru93vknQjI-&k1m@x2 z7qvs@U*n>^Ir}LVTA{9e{J^?zMO_m|v^rp6TE)?Ps(7Ty!oGD|_gH|o&VjZT_V;u- z9Q&rc&OuxsyVuk4Pk`%ZI%flOaQ5Kc*J{;T(5khdRqN~Ma7n9=3+DoE0-Oam0c&Dn zM|G|5s1HW0)Erh(eQD8{Ss<-08to9v9sol{J zob)d;C}%XL?((~W&RVlT;JvQh3WEu@o=2mQLIKyc+u;J6;pUzvo}gwDn0;X$z6Rsk z32FgZz+e%Bb_moPgFUPEO##LKdti`gMj^We_EiinJ7UQg8kIa4Ls4$8#wW1w%gX{^ zW%vYtlX}zONA_sX5>!jY%<*@Un;T`2>6uHGu!mKQIbpMM8)Nf%`ZMT_up3>bs=_+|bc zA0}bh2T2ieeX~(GK7)?1wAp#&?$3jyXCmi%sa?jwG;h&RK z;|=%$+`anY)j}#nOaKP}aittBa#v5v(JnW%Ji4L*7mJhPs9pdrbu9>#TIA|x042v= zGnuZLbl05JH3xuK_I9Ou&St!4Q{J<3{~M`lzuew)c;$a(S3{PmaaN_;#=j7ysg+FI zN~&!|Zu3iRlZOtut}|6Pr2b^z$gyuKUo--4lMuR@JdJW)6WBR`^J^OAo-70}se5r;r&#R8>M>F-K>H2Z0e*B9l)ajAT0gMR2;j-M+14CWYF4wa!>e`R`|84j}x^7;oo6j