%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /lib/python3/dist-packages/hyperlink/__pycache__/
Upload File :
Create Path :
Current File : //lib/python3/dist-packages/hyperlink/__pycache__/_url.cpython-312.pyc

�

G�_cF���dZddlZddlZddlZddlZddlmZmZ	ddlmZddl
mZmZm
Z
mZmZmZmZmZmZmZmZmZmZmZmZddlmZddlmZ	dd	lmZdd
l!m"Z#m$Z%ejLddk(Z'	e(e+d�Z,eeeeefdfZ-eeeeefe-eeeeeffZ.ed
�Z/d�d�Z0e0d�xZ1Z2e3d�Z4ejjd�Z6ejjd�Z7ejjd�Z8e9ejtD��cgc]H}ejtD]7}||zjEd�e(e	||zd��jEd�f��9�Jc}}�Z;ejjd�Z<e3d�Z=e3d�Z>e=e>zZ?e4e>ze@d�zZAe?eAz
ZBeAe@d�zZCe?eCz
ZDeCe@d�z
ZEe?eEz
ZFe4eCze@d�zZGe?eGz
ZHe4eGe@d�z
zZIe?eIz
ZJe4eIe@d�z
zZKe?eKz
ZLd�d!�ZMd"�ZNeNeA�ZOeMeB�ZPeNeC�ZQeNeE�ZReMeD�ZSeNeK�ZTeMeL�ZUeNeI�ZVeMeJ�ZWeNeG�ZXeMeH�ZYeNe4�ZZe9e;j��D��cgc]\}}|jIdd#�e4vr||f��c}}�Z\e3d$�Z]d�d%�Z^d�d&�Z_d�d'�Z`				d�d(�Zad�d)�Zbd�d*�Zcd�d+�Zdd�d,�Zeid-d.�d/d0�d1d2�d3d4�d5d�d6d7�d8d9�d:d;�d<d=�d>d?�d@dA�dBdC�dDdC�dEdF�dGdH�dIdJ�dKdL�idMdN�dOdP�dQd�dRdS�dTdU�dVdW�dXdY�dZd[�d\d]�d^d_�d`da�dbdc�ddde�dfdg�dhdi�djdk�dldm��diddndodpdqdrd=d?dds�
�Zfe@gdt��Zge@�Zh	d�du�Zid�dv�ZjGdw�dxek�Zldy�Zmdz�Zne3�d fd{�Zod|�Zpd�d}�Zq	d�d~�Zrd�d�Zsd�d��Zt	d�d��Zu	d�d��Zvd d�d d e;fd��Zwd��Zxd��Zyd��ZzGd��d�e{�Z|e|Z}e|�Z~d��Zd��Z�Gd��d�e{�Z�d�d��Z�y#e$re	ZY���wxYw#e$r
dd	l mZY���wxYw#e)$re*Z(Y���wxYwcc}}wcc}}w)�aHyperlink provides Pythonic URL parsing, construction, and rendering.

Usage is straightforward::

   >>> import hyperlink
   >>> url = hyperlink.parse(u'http://github.com/mahmoud/hyperlink?utm_source=docs')
   >>> url.host
   u'github.com'
   >>> secure_url = url.replace(scheme=u'https')
   >>> secure_url.get('utm_source')[0]
   u'docs'

Hyperlink's API centers on the :class:`DecodedURL` type, which wraps
the lower-level :class:`URL`, both of which can be returned by the
:func:`parse()` convenience function.

�N)�AF_INET�AF_INET6)�
AddressFamily)�Any�Callable�Dict�Iterable�Iterator�List�Mapping�Optional�Sequence�Text�Tuple�Type�TypeVar�Union�cast)�	normalize�)�	inet_pton)r)�encode�decode�.�Tc�8���G��fd�dt�}|�S)a�Creates and returns a new **instance** of a new class, suitable for
    usage as a "sentinel", a kind of singleton often used to indicate
    a value is missing when ``None`` is a valid input.

    Args:
        name: Name of the Sentinel
        var_name: Set this name to the name of the variable in its respective
            module enable pickle-ability.

    >>> make_sentinel(var_name='_MISSING')
    _MISSING

    The most common use cases here in boltons are as default values
    for optional function arguments, partly because of its
    less-confusing appearance in automatically generated
    documentation. Sentinels also function well as placeholders in queues
    and linked lists.

    .. note::

        By design, additional calls to ``make_sentinel`` with the same
        values will not produce equivalent objects.

        >>> make_sentinel('TEST') == make_sentinel('TEST')
        False
        >>> type(make_sentinel('TEST')) == type(make_sentinel('TEST'))
        False
    c�6��eZdZ��fd�Zd�ZW�rd�Zd�ZeZy)�make_sentinel.<locals>.Sentinelc�"���|_�|_y�N��name�var_name)�selfr"r#s ���0/usr/lib/python3/dist-packages/hyperlink/_url.py�__init__z(make_sentinel.<locals>.Sentinel.__init__js����D�I�$�D�M�c�~�|jr|jS|jj�d|j�d�S)N�(�))r#�	__class__�__name__r"�r$s r%�__repr__z(make_sentinel.<locals>.Sentinel.__repr__os,���}�}��}�}�$�#�~�~�6�6��	�	�B�Br'c��|jSr )r#r-s r%�
__reduce__z*make_sentinel.<locals>.Sentinel.__reduce__xs���}�}�$r'c��y)NF�r-s r%�__nonzero__z+make_sentinel.<locals>.Sentinel.__nonzero__|s��r'N)r,�
__module__�__qualname__r&r.r0r3�__bool__r!s��r%�Sentinelris$���	%�
	C��
%�	��r'r7)�object)r"r#r7s`` r%�
make_sentinelr9Js���>�6��2�:�r'�_UNSETzB~-._0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyzz^((?P<scheme>[^:/?#]+):)?((?P<_netloc_sep>//)(?P<authority>[^/?#]*))?(?P<path>[^?#]*)(\?(?P<query>[^#]*))?(#(?P<fragment>.*))?$z^[a-zA-Z0-9+-.]*$z�^(?:(?P<userinfo>[^@/?#]*)@)?(?P<host>(?:\[(?P<ipv6_host>[^[\]/?#]*)\])|(?P<plain_host>[^:/?#[\]]*)|(?P<bad_host>.*?))?(?::(?P<port>.*))?$�ascii��charmapz([-]+)z:/?#[]@z!$&'()*+,;=�%z:@�:z/?�&�=Fc�(�tt�}|st|�tdg�z}|D]c}djt	|��jd�}|j
�}|j|�||k7s�S|j|��e|S)Nr>z{0:02X}r;)�dict�
_HEX_CHAR_MAP�set�format�ordr�lower�pop)�delims�
allow_percent�ret�delim�_hexord�
_hexord_lowers      r%�_make_decode_maprP�s���
�}�
�C���V��s�D�6�{�*���#���"�"�3�u�:�.�5�5�g�>���
�
��
�������m�#��G�G�M�"�#��Jr'c��i}ttd�td��D]8\}}t|�}||vr|x||<||<� dj|�x||<||<�:|S)N�z%{0:02X})�zip�range�chrrF)�
safe_charsrL�i�v�cs     r%�_make_quote_maprZ�sq��
�C��E�#�J��c�
�+�3���1���F���
�?���C��F�S��V�(�/�/��2�2�C��F�S��V�3��Jr'�replace)r2��c��|rAtd|�jd�}dj|D�cgc]}t|��
c}�Sdj|D�cgc]}|tvr	t|n|��c}�Scc}wcc}w)z�A very comprehensive percent encoding for encoding all
    delimiters. Used for arguments to DecodedURL, where a % means a
    percent sign, and not the character used by URLs for escaping
    bytes.
    �NFC�utf8r])rr�join�_UNRESERVED_QUOTE_MAP�_UNRESERVED_CHARS��text�maximal�bytestr�b�ts     r%�_encode_reservedrj�s�����E�4�(�/�/��7���x�x�7�C�a�.�q�1�C�D�D��8�8��	
��)*�->�(>�!�!�$�A�E�	
����D��	
��A4�A9c��|rAtd|�jd�}dj|D�cgc]}t|��
c}�Sdj|D�cgc]}|tvr	t|n|��c}�Scc}wcc}w)z.Percent-encode a single segment of a URL path.r_r`r])rrra�_PATH_PART_QUOTE_MAP�_PATH_DELIMSrds     r%�_encode_path_partrosx����E�4�(�/�/��7���x�x�'�B�Q�-�a�0�B�C�C��8�8�FJ�K��A��$5�	�a�	 �1�	<�K����C��Krkc��|rAtd|�jd�}dj|D�cgc]}t|��
c}�Sdj|D�cgc]}|tvr	t|n|��c}�Scc}wcc}w)z]Percent-encode the first segment of a URL path for a URL without a
    scheme specified.
    r_r`r])rrra�_SCHEMELESS_PATH_PART_QUOTE_MAP�_SCHEMELESS_PATH_DELIMSrds     r%�_encode_schemeless_path_partrss���
��E�4�(�/�/��7���x�x�W�M��8��;�M�N�N��8�8�
�		
���+�+�
,�A�.��
�	
����N��	
rkc	�,�|sy|rdt|�z}g}|r)|D�cgc]}|r
t||��n|��}}t|�St|d�g}|j|ddD�cgc]}|r
t||��n|��c}�t|�Scc}wcc}w)aL
    Percent-encode a tuple of path parts into a complete path.

    Setting *maximal* to False percent-encodes only the reserved
    characters that are syntactically necessary for serialization,
    preserving any IRI-style textual data.

    Leaving *maximal* set to its default True percent-encodes
    everything required to convert a portion of an IRI to a portion of
    a URI.

    RFC 3986 3.3:

       If a URI contains an authority component, then the path component
       must either be empty or begin with a slash ("/") character.  If a URI
       does not contain an authority component, then the path cannot begin
       with two slash characters ("//").  In addition, a URI reference
       (Section 4.1) may be a relative-path reference, in which case the
       first path segment cannot contain a colon (":") character.
    r2r\�rfrrN)�tuplerors�extend)�
text_parts�rooted�
has_scheme�
has_authorityrf�
encoded_parts�parts       r%�_encode_path_partsr~"s���8��
��e�J�/�/�
��M��#�
��9=��d�G�4�$�F�
�
�
�����6�j��m�D�E�
����'�q�r�N�
��=A�!�$��8�d�J�
�	
������
��
s�B�"Bc��|rAtd|�jd�}dj|D�cgc]}t|��
c}�Sdj|D�cgc]}|tvr	t|n|��c}�Scc}wcc}w�z<
    Percent-encode a single query string key or value.
    r_r`r])rrra�_QUERY_KEY_QUOTE_MAP�_QUERY_KEY_DELIMSrds     r%�_encode_query_keyr�Usy��
��E�4�(�/�/��7���x�x�'�B�Q�-�a�0�B�C�C��8�8�KO�P�a�A�):�$:�	�a�	 ��	A�P����C��Prkc��|rAtd|�jd�}dj|D�cgc]}t|��
c}�Sdj|D�cgc]}|tvr	t|n|��c}�Scc}wcc}wr�)rrra�_QUERY_VALUE_QUOTE_MAP�_QUERY_VALUE_DELIMSrds     r%�_encode_query_valuer�bs���
��E�4�(�/�/��7���x�x�G�D�q�/��2�D�E�E��8�8��	
��*+�.A�)A�"�1�%�q�H�	
����E��	
rkc��|rAtd|�jd�}dj|D�cgc]}t|��
c}�Sdj|D�cgc]}|tvr	t|n|��c}�Scc}wcc}w)zyQuote the fragment part of the URL. Fragments don't have
    subdelimiters, so the whole URL fragment can be passed.
    r_r`r])rrra�_FRAGMENT_QUOTE_MAP�_FRAGMENT_DELIMSrds     r%�_encode_fragment_partr�rsy��
��E�4�(�/�/��7���x�x��A�A�,�Q�/�A�B�B��8�8�IM�N�A�1�(8�#8�	�Q�	�a�	?�N����B��Nrkc��|rAtd|�jd�}dj|D�cgc]}t|��
c}�Sdj|D�cgc]}|tvr	t|n|��c}�Scc}wcc}w)zXQuote special characters in either the username or password
    section of the URL.
    r_r`r])rrra�_USERINFO_PART_QUOTE_MAP�_USERINFO_DELIMSrds     r%�_encode_userinfo_partr�s���
��E�4�(�/�/��7���x�x�g�F��1�!�4�F�G�G��8�8��	
��,-�0@�+@�$�Q�'�a�G�	
����G��	
rk�acapi��afpi$rCiD
�dns�5�file�ftp��giti�$�gopher�F�http�P�httpsi��imap��ippiw�ipps�irc���ircsi)�ldapi��ldapsi|�mmsi��msrpi'�msrps�mtqpi�nfs�o�nntp�w�nntpsi3rI�n�prosperoi��redisi��rsyncii�rtspi*�rtspsiB�rtspui��sftp��smbi��snmp�ij�i�i��)
�ssh�steam�svn�telnet�ventrilo�vnc�wais�ws�wss�xmpp)
�urn�about�bitcoin�blob�data�geo�magnet�mailto�news�pkcs11�sip�sips�telc�<�|j�}|�	t|�}|dur
|t|<n8|dur&|�td|z��t
j
|�ntd|z��|stj
|�y#ttf$rtd|����wxYw)a�Registers new scheme information, resulting in correct port and
    slash behavior from the URL object. There are dozens of standard
    schemes preregistered, so this function is mostly meant for
    proprietary internal customizations or stopgaps on missing
    standards information. If a scheme seems to be missing, please
    `file an issue`_!

    Args:
        text: A string representation of the scheme.
            (the 'http' in 'http://hatnote.com')
        uses_netloc: Does the scheme support specifying a
            network host? For instance, "http" does, "mailto" does
            not. Defaults to True.
        default_port: The default port, if any, for
            netloc-using schemes.
        query_plus_is_space: If true, a "+" in the query string should be
            decoded as a space by DecodedURL.

    .. _file an issue: https://github.com/mahmoud/hyperlink/issues
    Nz+default_port expected integer or None, not TFz>unexpected default port while specifying non-netloc scheme: %rz"uses_netloc expected bool, not: %r)rH�int�
ValueError�	TypeError�SCHEME_PORT_MAP�NO_NETLOC_SCHEMES�add�NO_QUERY_PLUS_SCHEMES)re�uses_netloc�default_port�query_plus_is_spaces    r%�register_schemer��s���0�:�:�<�D���	��|�,�L��d�� ,����	��	��#��)�+7�8��
�	���d�#��=��K�L�L���!�!�$�'�
��+�I�&�	���"��
�	�s�A=�=Bc��|sy|j�}|tvry|tvry|jd�dtvry|S)aAWhether or not a URL uses :code:`:` or :code:`://` to separate the
    scheme from the rest of the URL depends on the scheme's own
    standard definition. There is no way to infer this behavior
    from other parts of the URL. A scheme either supports network
    locations or it does not.

    The URL type's approach to this is to check for explicitly
    registered schemes, with common schemes like HTTP
    preregistered. This is the same approach taken by
    :mod:`urlparse`.

    URL adds two additional heuristics if the scheme as a whole is
    not registered. First, it attempts to check the subpart of the
    scheme after the last ``+`` character. This adds intuitive
    behavior for schemes like ``git+ssh``. Second, if a URL with
    an unrecognized scheme is loaded, it will maintain the
    separator it sees.
    FT�+���)rHr�r��split)�scheme�defaults  r%�scheme_uses_netlocr�
sJ��(��
�\�\�^�F�
�� ��
�"�"��
�|�|�C�����/���Nr'c��eZdZdZy)�
URLParseErrorz�Exception inheriting from :exc:`ValueError`, raised when failing to
    parse a URL. Mostly raised on invalid ports and IPv6 addresses.
    N)r,r4r5�__doc__r2r'r%r�r�-s���	r'r�c��|tur|S|Sr )r:)�argumentr�s  r%�	_optionalr�5s���6�����r'c	��|std��t||�s;tddj|D�cgc]}|j��c}��d|�d|����|Scc}w)z�
    Check that the given *value* is one of the given *types*, or raise an
    exception describing the problem using *name*.
    z1expected one or more types, maybe use _textcheck?�	expected z or � for �, got )r��
isinstancer�rar,)r"�value�typesris    r%�
_typecheckr�=s[����L�M�M��e�U�#���{�{��6�1�A�J�J�6�7��u�
F�
�	
��L��7s�Ac��t|t�s-|r|�|Strdnd}|r|dzn|}td|�d|�d|����|r:t	|�t	|�zr#tddj
|��d	|�d
|����|S)N�unicode�strz or NoneTyper�r�r�z one or more reserved delimiters r]z present in z: )r�r�PY2r�rEr�ra)r"r�rJ�nullable�str_name�exps      r%�
_textcheckr�Ms{���e�T�"���
��L�$'�y�U�H�/7�(�^�+�X�C��C��u�M�N�N�
�#�e�*�s�6�{�*���w�w�v���e�
-�
�	
��Lr'c�X�t|t�r|j�}t|�S)z�
    Iterate over the (key, value) pairs in ``iterable``.

    This handles dictionaries sensibly, and falls back to assuming the
    iterable yields (key, value) pairs. This behaviour is similar to
    what Python's ``dict()`` constructor does.
    )r��
MappingABC�items�iter)�iterables r%�
iter_pairsr_s$���(�J�'��>�>�#����>�r'c�(�t|||t��S�N��normalize_case�encode_stray_percents�_decode_map)�_percent_decode�_UNRESERVED_DECODE_MAP�rerrs   r%�_decode_unreservedrms����%�3�*�	�r'c�(�t|||t��Sr)r	�_USERINFO_DECODE_MAPrs   r%�_decode_userinfo_partrw�����%�3�(�	�r'c�(�t|||t��S)z�
    >>> _decode_path_part(u'%61%77%2f%7a')
    u'aw%2fz'
    >>> _decode_path_part(u'%61%77%2f%7a', normalize_case=True)
    u'aw%2Fz'
    r)r	�_PATH_DECODE_MAPrs   r%�_decode_path_partr�s����%�3�$�	�r'c�(�t|||t��Sr)r	�_QUERY_KEY_DECODE_MAPrs   r%�_decode_query_keyr�s����%�3�)�	�r'c�(�t|||t��Sr)r	�_QUERY_VALUE_DECODE_MAPrs   r%�_decode_query_valuer�s����%�3�+�	�r'c�(�t|||t��Sr)r	�_FRAGMENT_DECODE_MAPrs   r%�_decode_fragment_partr�rr'zutf-8c��	|j|�}|jd�}t|�dk(r|S|dg}|j}	|ddD] }
|
dd|
dd}}	|	||�|	|��"dj|�}	|j|�S#t$r|cYSwxYw#t
$rK|tv}
|
s|s	|	d�n|	d�|r!|
r|	|j��|	|�n|	|
�Y��wxYw#t$r|r�|cYSwxYw)a�Convert percent-encoded text characters to their normal,
    human-readable equivalents.

    All characters in the input text must be encodable by
    *subencoding*. All special characters underlying the values in the
    percent-encoding must be decodable as *subencoding*. If a
    non-*subencoding*-valid string is passed, the original text is
    returned with no changes applied.

    Only called by field-tailored variants, e.g.,
    :func:`_decode_path_part`, as every percent-encodable part of the
    URL has characters which should not be percent decoded.

    >>> _percent_decode(u'abc%20def')
    u'abc def'

    Args:
        text: Text with percent-encoding present.
        normalize_case: Whether undecoded percent segments, such as encoded
            delimiters, should be uppercased, per RFC 3986 Section 2.1.
            See :func:`_decode_path_part` for an example.
        subencoding: The name of the encoding underlying the percent-encoding.
        raise_subencoding_exc: Whether an error in decoding the bytes
            underlying the percent-decoding should be raised.

    Returns:
        Text: The percent-decoded version of *text*, decoded by *subencoding*.
    �%rrNrs%25r')r�UnicodeEncodeErrorr��len�append�KeyErrorrD�upperrar�UnicodeDecodeError)rer�subencoding�raise_subencoding_excrr�quoted_bytes�bits�resr!�item�hexpair�rest�pair_is_hex�unquoted_bytess               r%r	r	�s8��J��{�{�;�/�����d�#�D�
�4�y�A�~�����7�)�C�
�Z�Z�F��Q�R�����R�a��$�q�r�(���	��;�w�'�(��4�L�	�*�X�X�c�]�N���$�$�[�1�1��E�������	�!�]�2�K��"7��t���v���+��w�}�}��'��t���t���	��(�� �����s6�B�B"�C9�B�B�"AC6�5C6�9D
�	D
c��|sy	|jd�}	t|d��}|S#t$r|}Y|SwxYw#t$r|}Y|SwxYw)u�Decode a host from ASCII-encodable text to IDNA-decoded text. If
    the host text is not ASCII, it is returned unchanged, as it is
    presumed that it is already IDNA-decoded.

    Some technical details: _decode_host is built on top of the "idna"
    package, which has some quirks:

    Capital letters are not valid IDNA2008. The idna package will
    raise an exception like this on capital letters:

    > idna.core.InvalidCodepoint: Codepoint U+004B at position 1 ... not allowed

    However, if a segment of a host (i.e., something in
    url.host.split('.')) is already ASCII, idna doesn't perform its
    usual checks. In fact, for capital letters it automatically
    lowercases them.

    This check and some other functionality can be bypassed by passing
    uts46=True to idna.encode/decode. This allows a more permissive and
    convenient interface. So far it seems like the balanced approach.

    Example output (from idna==2.6):

    >> idna.encode(u'mahmöud.io')
    'xn--mahmud-zxa.io'
    >> idna.encode(u'Mahmöud.io')
    Traceback (most recent call last):
      File "<stdin>", line 1, in <module>
      File "/home/mahmoud/virtualenvs/hyperlink/local/lib/python2.7/site-packages/idna/core.py", line 355, in encode
        result.append(alabel(label))
      File "/home/mahmoud/virtualenvs/hyperlink/local/lib/python2.7/site-packages/idna/core.py", line 276, in alabel
        check_label(label)
      File "/home/mahmoud/virtualenvs/hyperlink/local/lib/python2.7/site-packages/idna/core.py", line 253, in check_label
        raise InvalidCodepoint('Codepoint {0} at position {1} of {2} not allowed'.format(_unot(cp_value), pos+1, repr(label)))
    idna.core.InvalidCodepoint: Codepoint U+004D at position 1 of u'Mahmöud' not allowed
    >> idna.encode(u'Mahmoud.io')
    'Mahmoud.io'

    # Similar behavior for decodes below
    >> idna.decode(u'Mahmoud.io')
    u'mahmoud.io
    >> idna.decode(u'Méhmoud.io', uts46=True)
    u'méhmoud.io'
    r]r;T��uts46)r�idna_decoder�r)�host�
host_bytes�	host_texts   r%�_decode_hostr6sr��\����[�[��)�
�	�#�J�d�;�I����
�	�
�I���
	�����	����s�8�
&�5�5�A�Ac���g}|D]2}|dk(r�	|dk(r|s�|j��"|j|��4t|dd�dgdgfvr|jd�|S)a�Normalize the URL path by resolving segments of '.' and '..'. For
    more details, see `RFC 3986 section 5.2.4, Remove Dot Segments`_.

    Args:
       path: sequence of path segments in text form

    Returns:
       A new sequence of path segments with the '.' and '..' elements removed
           and resolved.

    .. _RFC 3986 section 5.2.4, Remove Dot Segments: https://tools.ietf.org/html/rfc3986#section-5.2.4
    �.z..r�Nr])rIr!�list)�path�segs�segs   r%�_resolve_dot_segmentsr=Eso���D�����$�;��
�E�\�����
��K�K�����D���I��D�6�E�7�+�+����C���Kr'c�8�|syd|vr	tt|�t}||fS	tt|�t}||fS#tj$r}t	d|�d|�d���d}~wt
$rY|fSwxYw#tjt
f$rd}Y||fSwxYw)aHParse the host into a tuple of ``(family, host)``, where family
    is the appropriate :mod:`socket` module constant when the host is
    an IP address. Family is ``None`` when the host is not an IP.

    Will raise :class:`URLParseError` on invalid IPv6 constants.

    Returns:
        family (socket constant or None), host (string)

    >>> import socket
    >>> parse_host('googlewebsite.com') == (None, 'googlewebsite.com')
    True
    >>> parse_host('::1') == (socket.AF_INET6, '::1')
    True
    >>> parse_host('192.168.1.1') == (socket.AF_INET, '192.168.1.1')
    True
    )Nr]r?zinvalid IPv6 host: z (r*N)rr�socket�errorr�rr)r3�family�ses   r%�
parse_hostrCds���&���t�|�	��h��%��F��4�<��	��g�t�$��F��4�<����|�|�	K���b� I�J�J��!�	���4�<��	�����0�1�	��F��4�<��	�s,�>�A8�A5�A#�#A5�4A5�8B�Bc	���eZdZdZ									d&d�Zd'd�Zed��Zed��Zed��Z	ed��Z
ed	��Zed
��Zed��Z
ed��Zed
��Zed��Zd'd�Zd�Zd�Zd�Zed��Zeeeeeeeeef	d�Zed��Z							d(d�Zd�Zd�Zd)d�Zd�Zd�Zd'd�Z d�Z!d�Z"e#re"Z$e Z%ne"Z&e Z$eZ'eZ(ed��Z)d'd �Z*d!�Z+d*d"�Z,d*d#�Z-d$�Z.edfd%�Z/y)+�URLa�From blogs to billboards, URLs are so common, that it's easy to
    overlook their complexity and power. With hyperlink's
    :class:`URL` type, working with URLs doesn't have to be hard.

    URLs are made of many parts. Most of these parts are officially
    named in `RFC 3986`_ and this diagram may prove handy in identifying
    them::

       foo://user:pass@example.com:8042/over/there?name=ferret#nose
       \_/   \_______/ \_________/ \__/\_________/ \_________/ \__/
        |        |          |        |      |           |        |
      scheme  userinfo     host     port   path       query   fragment

    While :meth:`~URL.from_text` is used for parsing whole URLs, the
    :class:`URL` constructor builds a URL from the individual
    components, like so::

        >>> from hyperlink import URL
        >>> url = URL(scheme=u'https', host=u'example.com', path=[u'hello', u'world'])
        >>> print(url.to_text())
        https://example.com/hello/world

    The constructor runs basic type checks. All strings are expected
    to be text (:class:`str` in Python 3, :class:`unicode` in Python 2). All
    arguments are optional, defaulting to appropriately empty values. A full
    list of constructor arguments is below.

    Args:
        scheme: The text name of the scheme.
        host: The host portion of the network location
        port: The port part of the network location. If ``None`` or no port is
            passed, the port will default to the default port of the scheme, if
            it is known. See the ``SCHEME_PORT_MAP`` and
            :func:`register_default_port` for more info.
        path: A tuple of strings representing the slash-separated parts of the
            path, each percent-encoded.
        query: The query parameters, as a dictionary or as an sequence of
            percent-encoded key-value pairs.
        fragment: The fragment part of the URL.
        rooted: A rooted URL is one which indicates an absolute path.
            This is True on any URL that includes a host, or any relative URL
            that starts with a slash.
        userinfo: The username or colon-separated username:password pair.
        uses_netloc: Indicates whether ``://`` (the "netloc separator") will
            appear to separate the scheme from the *path* in cases where no
            host is present.
            Setting this to ``True`` is a non-spec-compliant affordance for the
            common practice of having URIs that are *not* URLs (cannot have a
            'host' part) but nevertheless use the common ``://`` idiom that
            most people associate with URLs; e.g. ``message:`` URIs like
            ``message://message-id`` being equivalent to ``message:message-id``.
            This may be inferred based on the scheme depending on whether
            :func:`register_scheme` has been used to register the scheme and
            should not be passed directly unless you know the scheme works like
            this and you know it has not been registered.

    All of these parts are also exposed as read-only attributes of :class:`URL`
    instances, along with several useful methods.

    .. _RFC 3986: https://tools.ietf.org/html/rfc3986
    .. _RFC 3987: https://tools.ietf.org/html/rfc3987
    Nc
��|�|�d}|�|�tj|�}|r|r|sd}|�d}|�d}|�t|�}td|�|_|jrOt
j
|j�s0td|j�d|jj�d���ttd|d	��\}
|_t|t�rtd
|����td�|D��|_td�t#|�D��|_td
|�|_t)d|t*t,�|_t)d|t�|_td|d	�|_|	�t5|j|	�}	t)d|	tt,�|_|jxs0|j.xr"|j.tj|�k7}|rd|_d|_|j0s-|j8dddk(rd|_|j dd|_|s"|j r|j0sd|_yyyy)Nr�r\r]r�zinvalid scheme: zF. Only alphanumeric, "+", "-", and "." allowed. Did you meant to call z
.from_text()?r3z/?#@z)expected iterable of text for path, not: c3�6K�|]}td|d����y�w)�path segmentz/?#N�r�)�.0�segments  r%�	<genexpr>zURL.__init__.<locals>.<genexpr>�s����L�G�Z����
7�L���c3�ZK�|]#\}}td|d�td|dd��f���%y�w)zquery parameter namez&=#zquery parameter valuez&#T)r�NrI�rJ�krXs   r%rLzURL.__init__.<locals>.<genexpr>s<����
�
��1��1�1�e�<��2�A�t�d�K�
�
�s�)+�fragment�portry�userinfor�TrF)r��get�boolr��_scheme�
_SCHEME_RE�matchr�r+r,rC�_hostr�rr�rv�_pathr�_query�	_fragmentr�r��NoneType�_port�_rooted�	_userinfor��_uses_netlocr:)r$r�r3r:�queryrQrRryrSr��_�will_have_authoritys            r%r&zURL.__init__�s+�������F��<�F�.�"�&�&�v�.�D��E�$��D��>��F��<��D��>��$�Z�F�"�(�F�3����<�<��#�#�D�L�L�1� �+/�,�,����8O�8O�Q���#�:�f�d�F�#C�D�
��4�:��d�D�!��AE�G��
��L�t�L�
��
��
�
#�5�)�
�
���$�J��9������c�8�<��
�!�(�F�D�9���#�J��&�A�����,�T�\�\�;�G�K�&��;��h�
���#�j�j�
��J�J�D�4�:�:��)<�)<�V�)D�D�	�� �D�L� $�D�����$�)�)�B�Q�-�6�"9��D�L����A�B��D�J�"�t�z�z�$�,�,�!&�D��	;G�z�"r'c�t�	|jS#t$r t||��|_Y|jSwxYw�N��lazy)�_decoded_url�AttributeError�
DecodedURL)r$rhs  r%�get_decoded_urlzURL.get_decoded_url#s=��	<��$�$�$���	<� *�4�d� ;�D��� � � �	<�s��7�7c��|jS)aMThe scheme is a string, and the first part of an absolute URL, the
        part before the first colon, and the part which defines the
        semantics of the rest of the URL. Examples include "http",
        "https", "ssh", "file", "mailto", and many others. See
        :func:`~hyperlink.register_scheme()` for more info.
        )rVr-s r%r�z
URL.scheme+s���|�|�r'c��|jS)aThe host is a string, and the second standard part of an absolute
        URL. When present, a valid host must be a domain name, or an
        IP (v4 or v6). It occurs before the first slash, or the second
        colon, if a :attr:`~hyperlink.URL.port` is provided.
        )rYr-s r%r3zURL.host6����z�z�r'c��|jS)a�The port is an integer that is commonly used in connecting to the
        :attr:`host`, and almost never appears without it.

        When not present in the original URL, this attribute defaults
        to the scheme's default port. If the scheme's default port is
        not known, and the port is not provided, this attribute will
        be set to None.

        >>> URL.from_text(u'http://example.com/pa/th').port
        80
        >>> URL.from_text(u'foo://example.com/pa/th').port
        >>> URL.from_text(u'foo://example.com:8042/pa/th').port
        8042

        .. note::

           Per the standard, when the port is the same as the schemes
           default port, it will be omitted in the text URL.
        )r^r-s r%rRzURL.port@s��,�z�z�r'c��|jS)z�A tuple of strings, created by splitting the slash-separated
        hierarchical path. Started by the first slash after the host,
        terminated by a "?", which indicates the start of the
        :attr:`~hyperlink.URL.query` string.
        )rZr-s r%r:zURL.pathXror'c��|jS)a�Tuple of pairs, created by splitting the ampersand-separated
        mapping of keys and optional values representing
        non-hierarchical data used to identify the resource. Keys are
        always strings. Values are strings when present, or None when
        missing.

        For more operations on the mapping, see
        :meth:`~hyperlink.URL.get()`, :meth:`~hyperlink.URL.add()`,
        :meth:`~hyperlink.URL.set()`, and
        :meth:`~hyperlink.URL.delete()`.
        )r[r-s r%rbz	URL.querybs���{�{�r'c��|jS)aA string, the last part of the URL, indicated by the first "#"
        after the :attr:`~hyperlink.URL.path` or
        :attr:`~hyperlink.URL.query`. Enables indirect identification
        of a secondary resource, like an anchor within an HTML page.
        )r\r-s r%rQzURL.fragmentrs���~�~�r'c��|jS)awWhether or not the path starts with a forward slash (``/``).

        This is taken from the terminology in the BNF grammar,
        specifically the "path-rootless", rule, since "absolute path"
        and "absolute URI" are somewhat ambiguous. :attr:`path` does
        not contain the implicit prefixed ``"/"`` since that is
        somewhat awkward to work with.
        )r_r-s r%ryz
URL.rooted|s���|�|�r'c��|jS)zVThe colon-separated string forming the username-password
        combination.
        )r`r-s r%rSzURL.userinfo�s���~�~�r'c��|jS)z�
        Indicates whether ``://`` (the "netloc separator") will appear to
        separate the scheme from the *path* in cases where no host is present.
        )rar-s r%r�zURL.uses_netloc�s��� � � r'c�>�|jjd�dS)zF
        The user portion of :attr:`~hyperlink.URL.userinfo`.
        r?r)rSr�r-s r%�userzURL.user�s���}�}�"�"�4�(��+�+r'c�B�|jd|�}|rtd|j�z��|j}d|vr
d|zdzg}n
|jg}|jt
j
|j�k7r$|jt|j��g}|jr:|j}|sd|vr|d|jd�dz}|j|�|jdj|��dj|�S)	aPCompute and return the appropriate host/port/userinfo combination.

        >>> url = URL.from_text(u'http://user:pass@localhost:8080/a/b?x=y')
        >>> url.authority()
        u'user:@localhost:8080'
        >>> url.authority(with_password=True)
        u'user:pass@localhost:8080'

        Args:
            with_password: Whether the return value of this method include the
            password in the URL, if it is set.
            Defaults to False.

        Returns:
            Text: The authority (network location and user information) portion
                of the URL.
        �includeSecretsz$got unexpected keyword arguments: %rr?�[�]Nr�@)
rIr��keysr3rRr�rTr�r!rrS�indexra)r$�
with_password�kwr3�hostport�	authorityrSs       r%r�z
URL.authority�s���(���/��?�
�
��B�R�W�W�Y�N�O�O��y�y���$�;��d�
�S�(�)�H��	�	�{�H��9�9��+�+�D�K�K�8�8��O�O�D����O�,��	��=�=��}�}�H� �T�X�%5�#�$>�h�n�n�T�&:�Q�&>�?�����X�&�������8�,�-��y�y��#�#r'c��t||j�stSdD]}t||�t||�k7s�y|j|jk(s$|jt
vr|jt
vryy)N)r�rSr3rbrQrRr�ryFT)r�r+�NotImplemented�getattrr:�_ROOT_PATHS)r$�other�attrs   r%�__eq__z
URL.__eq__�sq���%����0�!�!�	
�	�D��t�T�"�g�e�T�&:�:��	��9�9��
�
�"��I�I��$����{�)B��r'c�^�t||j�stS|j|�Sr �r�r+r�r��r$r�s  r%�__ne__z
URL.__ne__��(���%����0�!�!��;�;�u�%�%�%r'c���t|j|j|j|j|j
|j|j|j|j|jf
�Sr ��hashr+r�rSr3r:rbrQrRryr�r-s r%�__hash__zURL.__hash__��\����������
�
��	�	��	�	��
�
��
�
��	�	����� � �
�

�
	
r'c�H�t|jxr|j�S)aoWhether or not the URL is "absolute". Absolute URLs are complete
        enough to resolve to a network resource without being relative
        to a base URI.

        >>> URL.from_text(u'http://wikipedia.org/').absolute
        True
        >>> URL.from_text(u'?a=b&c=d').absolute
        False

        Absolute URLs must have both a scheme and a host set.
        )rUr�r3r-s r%�absolutezURL.absolute�s���D�K�K�-�D�I�I�.�.r'c
���|tur||jk7rd}	|jt||j�t||j�t||j
�t||j�t||j�t||j�t||j�t||j�t|	|j���	S)a�:class:`URL` objects are immutable, which means that attributes
        are designed to be set only once, at construction. Instead of
        modifying an existing URL, one simply creates a copy with the
        desired changes.

        If any of the following arguments is omitted, it defaults to
        the value on the current URL.

        Args:
            scheme: The text name of the scheme.
            host: The host portion of the network location.
            path: A tuple of strings representing the slash-separated parts of
                the path.
            query: The query parameters, as a dictionary or as an sequence of
                key-value pairs.
            fragment: The fragment part of the URL.
            port: The port part of the network location.
            rooted: Whether or not the path begins with a slash.
            userinfo: The username or colon-separated username:password pair.
            uses_netloc: Indicates whether ``://`` (the "netloc separator")
                will appear to separate the scheme from the *path* in cases
                where no host is present.
                Setting this to ``True`` is a non-spec-compliant affordance for
                the common practice of having URIs that are *not* URLs (cannot
                have a 'host' part) but nevertheless use the common ``://``
                idiom that most people associate with URLs; e.g. ``message:``
                URIs like ``message://message-id`` being equivalent to
                ``message:message-id``.
                This may be inferred based on the scheme depending on whether
                :func:`register_scheme` has been used to register the scheme
                and should not be passed directly unless you know the scheme
                works like this and you know it has not been registered.

        Returns:
            URL: A copy of the current :class:`URL`, with new values for
                parameters passed.
        N�	r�r3r:rbrQrRryrSr�)r:r�r+r�r3r:rbrQrRryrSr�)
r$r�r3r:rbrQrRryrSr�s
          r%r[zURL.replaces���d���F�d�k�k�$9��K��~�~��V�T�[�[�1��4����+��4����+��E�4�:�:�.��x����7��4����+��V�T�[�[�1��x����7�!�+�t�/?�/?�@��

�
	
r'c��tjtd|��}|�td|z��|j	�}|dxsd}t
j|�}|�td|�d|����|j	�}|drtd	|d�d|����|d
xsd}|dxs|d}|d
}	|	�	t
|	�}	|dxsd}
|dxsd}t|d�}|dr-t|djd��}
|
ds|
dd}
d}nd}n
d}
t|�}|dr%td�|djd�D��}nd}||
||
|||	|||�	S#t$r|	std|z��td|	z��wxYw)aFWhereas the :class:`URL` constructor is useful for constructing
        URLs from parts, :meth:`~URL.from_text` supports parsing whole
        URLs from their string form::

            >>> URL.from_text(u'http://example.com')
            URL.from_text(u'http://example.com')
            >>> URL.from_text(u'?a=b&x=y')
            URL.from_text(u'?a=b&x=y')

        As you can see above, it's also used as the :func:`repr` of
        :class:`URL` objects. The natural counterpart to
        :func:`~URL.to_text()`. This method only accepts *text*, so be
        sure to decode those bytestrings.

        Args:
           text: A valid URL string.

        Returns:
           URL: The structured object version of the parsed string.

        .. note::

            Somewhat unexpectedly, URLs are a far more permissive
            format than most would assume. Many strings which don't
            look like URLs are still valid URLs. As a result, this
            method only raises :class:`URLParseError` on invalid port
            and IPv6 values in the host portion of the URL.
        reNzcould not parse url: %rr�r]zinvalid authority z	 in url: �bad_hostz
invalid host rS�	ipv6_host�
plain_hostrRzport must not be empty: %rz!expected integer for port, not %rr�rQ�_netloc_sepr:�/rrTFr2rbc3�PK�|]}d|vr|jdd�n|df��� y�w)rArN)r�)rJ�qes  r%rLz URL.from_text.<locals>.<genexpr>�s:�������r�z��H�H�T�1�%��d��$��s�$&r@)�_URL_RErXr�r��	groupdict�
_AUTHORITY_REr�r�rUrvr�)�clsre�um�gs�au_text�au_m�au_gsrSr3rRr�rQr�r:ryrbs                r%�	from_textz
URL.from_textHs���>�]�]�:�f�d�3�
4��
�:�� 9�D� @�A�A�
�\�\�^���[�/�(�S���"�"�7�+���<��5<�d�C��
���� ������05�j�0A�4�H��
���$�+����[�!�8�U�<�%8���V�}����
P��4�y���H��$����j�>�(�S���2�m�,�-��
�f�:���F��)�)�$�/�0�D���7��A�B�x�������D��'�]�F�
�g�;����W�+�+�+�D�1�
��E��E�����������

�
	
��=�
P��'�(D�w�(N�O�O�#�$G�$�$N�O�O�
P�s�7E�(Fc�t��i}|r|jj�|d<|r|jj�|d<�fd�}	|r>|jr-t	|j�D�
cgc]
}
|	|
���c}
|d<nd|d<|r4|j
D��cgc]\}}|	|�|r|	|�n|f��c}}|d<|r|	|j�|d<|rBdj|jjdd	�D�
cgc]
}
|	|
���c}
�|d
<|jdi|��Scc}
wcc}}wcc}
w)aReturn a new URL object with several standard normalizations
        applied:

        * Decode unreserved characters (`RFC 3986 2.3`_)
        * Uppercase remaining percent-encoded octets (`RFC 3986 2.1`_)
        * Convert scheme and host casing to lowercase (`RFC 3986 3.2.2`_)
        * Resolve any "." and ".." references in the path (`RFC 3986 6.2.2.3`_)
        * Ensure an ending slash on URLs with an empty path (`RFC 3986 6.2.3`_)
        * Encode any stray percent signs (`%`) in percent-encoded
          fields (path, query, fragment, userinfo) (`RFC 3986 2.4`_)

        All are applied by default, but normalizations can be disabled
        per-part by passing `False` for that part's corresponding
        name.

        Args:
            scheme: Convert the scheme to lowercase
            host: Convert the host to lowercase
            path: Normalize the path (see above for details)
            query: Normalize the query string
            fragment: Normalize the fragment
            userinfo: Normalize the userinfo
            percents: Encode isolated percent signs for any percent-encoded
                fields which are being normalized (defaults to `True`).

        >>> url = URL.from_text(u'Http://example.COM/a/../b/./c%2f?%61%')
        >>> print(url.normalize().to_text())
        http://example.com/b/c%2F?a%25

        .. _RFC 3986 3.2.2: https://tools.ietf.org/html/rfc3986#section-3.2.2
        .. _RFC 3986 2.3: https://tools.ietf.org/html/rfc3986#section-2.3
        .. _RFC 3986 2.1: https://tools.ietf.org/html/rfc3986#section-2.1
        .. _RFC 3986 6.2.2.3: https://tools.ietf.org/html/rfc3986#section-6.2.2.3
        .. _RFC 3986 6.2.3: https://tools.ietf.org/html/rfc3986#section-6.2.3
        .. _RFC 3986 2.4: https://tools.ietf.org/html/rfc3986#section-2.4
        r�r3c� ��t|d���S)NT)rr)r)�target�percentss �r%�
_dec_unresz!URL.normalize.<locals>._dec_unres�s���%��t�8��
r'r:r\rbrQr?rrSr2)r�rHr3r:r=rbrQrarSr�r[)
r$r�r3r:rbrQrSr�r�r��prPrXs
       `     r%rz
URL.normalize�s,���^����;�;�,�,�.�B�x�L�������*�B�v�J�	���y�y�+@����+K��&'�J�q�M���6�
�$��6�
��!�J�J���A�q��A���
�1�
��:��B�w�K��'��
�
�6�B�z�N��!�Y�Y�(,�
�
�(;�(;�C��(C�D�1��A��D��B�z�N��t�|�|�!�b�!�!��#����Es�,D*�D/�?D5c��|s|S|D�cgc]}td|���}}t|j�}|jr|jddk(r|dd}|tt|d���z
}|j	|��Scc}w)a�Make a new :class:`URL` where the given path segments are a child
        of this URL, preserving other parts of the URL, including the
        query string and fragment.

        For example::

            >>> url = URL.from_text(u'http://localhost/a/b?x=y')
            >>> child_url = url.child(u"c", u"d")
            >>> child_url.to_text()
            u'http://localhost/a/b/c/d?x=y'

        Args:
            segments: Additional parts to be joined and added to the path, like
            :func:`os.path.join`. Special characters in segments will be
            percent encoded.

        Returns:
           URL: A copy of the current URL with the extra path segments.
        rHr�r]NFru�r:)r�rvr:r~r[)r$�segments�s�new_paths    r%�childz	URL.child�s���*��K�4<�
�./�J�~�q�)�
��
�����#���9�9����2��#�-����}�H��E�,�X�u�E�F�F���|�|��|�*�*��
s�Bc��td|�t|j�ddt|�fz}|j	|��S)amMake a new :class:`URL` with a single path segment that is a
        sibling of this URL path.

        Args:
            segment: A single path segment.

        Returns:
            URL: A copy of the current URL with the last path segment
                replaced by *segment*. Special characters such as
                ``/?#`` will be percent encoded.
        rHNr�r�)r�rvr:ror[)r$rKr�s   r%�siblingzURL.siblingsB��	�>�7�+�����#�C�R�(�,=�g�,F�+H�H���|�|��|�*�*r'c��|rBt|t�r|}n!td|�tj|�}|jr|S|}|j
}|jr|jstd|����|jr
|j}nU|jr/t|j�ddt|j�z}n|j}|s|j
}|j|jxs|j|jxs|j|jxs|jt|�||j��S)a7Resolve the given URL relative to this URL.

        The resulting URI should match what a web browser would
        generate if you visited the current URL and clicked on *href*.

            >>> url = URL.from_text(u'http://blog.hatnote.com/')
            >>> url.click(u'/post/155074058790').to_text()
            u'http://blog.hatnote.com/post/155074058790'
            >>> url = URL.from_text(u'http://localhost/a/b/c/')
            >>> url.click(u'../d/./e').to_text()
            u'http://localhost/a/b/d/e'

        Args (Text):
            href: A string representing a clicked URL.

        Return:
            A copy of the current URL with navigation logic applied.

        For more information, see `RFC 3986 section 5`_.

        .. _RFC 3986 section 5: https://tools.ietf.org/html/rfc3986#section-5
        zrelative URLz!absolute URI with rootless path: Nr�)r�r3rRr:rbrQ)r�rEr�r�r�rbr�ry�NotImplementedErrorr:rvr[r3rRr=rQ)r$�href�clickedrbr:s     r%�clickz	URL.click+s��0��$��$���
�>�4�0��-�-��-��������G��
�
���>�>�'�.�.�&�9=�?��
��~�~��|�|������T�Y�Y�'���,�u�W�\�\�/B�B���y�y��� �J�J�E��|�|��>�>�0�T�[�[����*�������*����&�t�,���%�%�
�
�	
r'c�J�dj|jjdd�D�cgc]
}t|���c}�}t	|j
t
|j�dd��}|js|jn%t|jd��jd�}|j|||t|jD��cgc]#\}}t|d��|�
t|d��nd	f��%c}}�t!|j"d���
�Scc}wcc}}w)uDMake a new :class:`URL` instance with all non-ASCII characters
        appropriately percent-encoded. This is useful to do in preparation
        for sending a :class:`URL` over a network protocol.

        For example::

            >>> URL.from_text(u'https://ايران.com/foo⇧bar/').to_uri()
            URL.from_text(u'https://xn--mgba3a4fra.com/foo%E2%87%A7bar/')

        Returns:
            URL: A new instance with its path segments, query parameters, and
                hostname encoded, so that they are all in the standard
                US-ASCII range.
        r?rFT)rzryrfr0r;ruN�rSr3r:rbrQ)rarSr�r�r~r:rUr�r3�idna_encoderr[rvrbr�r�r�rQ)r$r��new_userinfor��new_hostrPrXs       r%�to_uriz
URL.to_uriks�� �y�y�/3�}�}�/B�/B�3��/J�K�!�
"�1�
%�K�
��&��I�I�$�t�{�{�"3�E�4�
��
�9�9�
�I�I��T�Y�Y�d�3�:�:�7�C�	�
�|�|�!����!%�
�
����1�*�!�T�:��=�,�A�t�<�!�	��
�+�4�=�=�$�G��
�	
��
L��s�D�(Dc
��dj|jjdd�D�cgc]
}t|���c}�}t	|j
�}|j
|||jD�cgc]
}t|���c}td�|jD��t|j���Scc}wcc}w)u�Make a new :class:`URL` instance with all but a few reserved
        characters decoded into human-readable format.

        Percent-encoded Unicode and IDNA-encoded hostnames are
        decoded, like so::

            >>> url = URL.from_text(u'https://xn--mgba3a4fra.example.com/foo%E2%87%A7bar/')
            >>> print(url.to_iri().to_text())
            https://ايران.example.com/foo⇧bar/

        .. note::

            As a general Python issue, "narrow" (UCS-2) builds of
            Python may not be able to fully decode certain URLs, and
            the in those cases, this method will return a best-effort,
            partially-decoded, URL which is still valid. This issue
            does not affect any Python builds 3.4+.

        Returns:
            URL: A new instance with its path segments, query parameters, and
                hostname decoded for display purposes.
        r?rc3�VK�|]!\}}t|�|�t|�ndf���#y�wr )rrrOs   r%rLzURL.to_iri.<locals>.<genexpr>�s7�����
�A�q�&�a�(�./�m�'��*����s�')r�)
rarSr�rr6r3r[r:rrvrbrrQ)r$r�r�r5rKs     r%�to_iriz
URL.to_iri�s���0�y�y�/3�}�}�/B�/B�3��/J�K�!�
"�1�
%�K�
��!����+�	��|�|�!��<@�I�I�F��#�G�,�F���
!�J�J���+�4�=�=�9��
�	
��	
L��Gs�B<�3Cc
�"�|j}|j|�}djt|j|j
t
|�t
|�d���}g}|jD]\\}}|�|jt|d����%|jdjt|d��t|d��f���^dj|�}|j}	g}
|
j}|r||�|d�|r|d	�||�n|r|dd
d	k7r|jr|d	�|r|r|r|dddk7r|d�||�|r|d�||�|	r|d
�||	�dj|
�S)a�Render this URL to its textual representation.

        By default, the URL text will *not* include a password, if one
        is set. RFC 3986 considers using URLs to represent such
        sensitive information as deprecated. Quoting from RFC 3986,
        `section 3.2.1`:

            "Applications should not render as clear text any data after the
            first colon (":") character found within a userinfo subcomponent
            unless the data after the colon is the empty string (indicating no
            password)."

        Args (bool):
            with_password: Whether or not to include the password in the URL
                text. Defaults to False.

        Returns:
            Text: The serialized textual representation of this URL, such as
                ``u"http://example.com/some/path?some=query"``.

        The natural counterpart to :class:`URL.from_text()`.

        .. _section 3.2.1: https://tools.ietf.org/html/rfc3986#section-3.2.1
        r�F)ryrzr{rfNrurAr@r?z//rr�?�#r])
r�r�rar~r:ryrUrbr!r�r�rQr�)r$r�r�r�r:�query_partsrPrX�query_stringrQ�parts�_adds            r%�to_textzURL.to_text�sw��4�����N�N�=�1�	��x�x���	�	��{�{���<�"�9�o��
�
�����J�J�	�D�A�q��y��"�"�#4�Q��#F�G��"�"��I�I�-�a��?�/��5�A����		��y�y��-���=�=�����|�|�����L���I����J���O�
��R�a��D�(�T�-=�-=���J���)��R�a��C���S�	���J����I�������I���N��x�x���r'c�V�|jj�d|j��d�S)z�Convert this URL to an representation that shows all of its
        constituent parts, as well as being a valid argument to
        :func:`eval`.
        z.from_text(r*)r+r,r�r-s r%r.zURL.__repr__s��&*�^�^�%<�%<�d�l�l�n�M�Mr'c�\�|j�j�jd�S)z�
        Allows for direct usage of URL objects with libraries like
        requests, which automatically stringify URL parameters. See
        issue #49.
        r;)r�r�rr-s r%�	_to_bytesz
URL._to_bytess$���{�{�}�$�$�&�-�-�g�6�6r'c�$�|j|�Sr �r�)r�r�s  r%�fromTextzURL.fromText+s���}�}�Q��r'c�&�|j|��S�N)r��r��r$rzs  r%�asTextz
URL.asText0����|�|�.�|�9�9r'c��	tj|�}tt|�tgd��z
�}|S#t$r<t|j�t|jj��z}Y�hwxYw�N)r��asURI�asIRIr��
r8�__dir__rj�dirr+r9�__dict__r~�sortedrE�r$rLs  r%r�zURL.__dir__4�n��	C��.�.��&�C��S��X��$L� M�M�N���
��	�	C��d�n�n�%��T�]�]�-?�-?�-A�(B�B�C�	C���;�AB�?Bc�F�|j|j||ffz��S)a�Make a new :class:`URL` instance with a given query argument,
        *name*, added to it with the value *value*, like so::

            >>> URL.from_text(u'https://example.com/?x=y').add(u'x')
            URL.from_text(u'https://example.com/?x=y&x')
            >>> URL.from_text(u'https://example.com/?x=y').add(u'x', u'z')
            URL.from_text(u'https://example.com/?x=y&x=z')

        Args:
            name: The name of the query parameter to add.
                The part before the ``=``.
            value: The value of the query parameter to add.
                The part after the ``=``.
                Defaults to ``None``, meaning no value.

        Returns:
            URL: A new :class:`URL` instance with the parameter added.
        �rb�r[rb�r$r"r�s   r%r�zURL.add@s%��(�|�|�$�*�*��u�
�/?�"?�|�@�@r'c����|jD��cgc]\}}|�k7s�||f��}}}t�fd�t|j�D�d�}�|fg||||j|��Scc}}w)aMake a new :class:`URL` instance with the query parameter *name*
        set to *value*. All existing occurences, if any are replaced
        by the single name-value pair.

            >>> URL.from_text(u'https://example.com/?x=y').set(u'x')
            URL.from_text(u'https://example.com/?x')
            >>> URL.from_text(u'https://example.com/?x=y').set(u'x', u'z')
            URL.from_text(u'https://example.com/?x=z')

        Args:
            name: The name of the query parameter to set.
                The part before the ``=``.
            value: The value of the query parameter to set.
                The part after the ``=``.
                Defaults to ``None``, meaning no value.

        Returns:
            URL: A new :class:`URL` instance with the parameter set.
        c3�:�K�|]\}\}}|�k(s�|���y�wr r2�rJrWrPrXr"s    �r%rLzURL.set.<locals>.<genexpr>ns�����E�;�A�v��1�1��9�Q�E����r�r��rb�next�	enumerater[)r$r"r�rPrX�q�idxs `     r%rEzURL.setVsp���,#'�*�*�:���A��T�	�a��V�:��:��E�)�D�J�J�"7�E�r�
���U�m�_��#�c�
��|�|�!�|�$�$��
;s
�
A*�A*c�X�|jD��cgc]
\}}||k(s�|��c}}Scc}}w)a5Get a list of values for the given query parameter, *name*::

            >>> url = URL.from_text(u'?x=1&x=2')
            >>> url.get('x')
            [u'1', u'2']
            >>> url.get('y')
            []

        If the given *name* is not set, an empty list is returned. A
        list is always returned, and this method raises no exceptions.

        Args:
            name: The name of the query parameter to get.

        Returns:
            List[Optional[Text]]: A list of all the values associated with the
                key, in string form.
        r�)r$r"�keyr�s    r%rTzURL.getss&��(+/�*�*�D�,�3������D�D��D��
&�&c��|�Z|tur'|jD��cgc]\}}||k7s�||f��}}}ns|jD��cgc]\}}||k(r||k(s||f��}}}nHgd}}|jD]5\}}||k(r|tus||k(r||kr|dz
}�#|j||f��7|j|��Scc}}wcc}}w)a�Make a new :class:`URL` instance with occurrences of the query
        parameter *name* removed, or, if *value* is set, parameters
        matching *name* and *value*. No exception is raised if the
        parameter is not already set.

        Args:
            name: The name of the query parameter to remove.
            value: Optional value to additionally filter on.
                Setting this removes query parameters which match both name
                and value.
            limit: Optional maximum number of parameters to remove.

        Returns:
            URL: A new :class:`URL` instance with the parameter removed.
        rrr��r:rbr!r[�r$r"r��limitrPrX�nq�
removed_counts        r%�removez
URL.remove�s���,�=����+/�:�:�C��!�Q��d��q�!�f�C��C�#'�*�*����A���I�!�u�*���F����!#�A�
�B��
�
�
&���1���I��&��A��J�%��-�!�Q�&�M��I�I�q�!�f�%�
&��|�|�"�|�%�%��)D����
B7�B7�B=)	NNr2r2r]NNr]N�F�TTTTTTTr\r )0r,r4r5r�r&rl�propertyr�r3rRr:rbrQryrSr�rxr�r�r�r�r�r:r[�classmethodr�rr�r�r�r�r�r�r.r�r��__str__�__unicode__�	__bytes__r�r�r�r�r�r�rErTr�r2r'r%rErE�s	��=�B�
�
���
����S&�j!�������������.�����
��
������
��
������!��!��,��,�%$�N�,&�
�"�
/��
/�"�
�
���
����@
�D�^
��^
�D�
�
�����N"�`+�B+�">
�@+
�Z)
�VJ�XN�7�������	���
�E��E�� �� �:��A�,%�:E�2��	,&r'rEc�&�|jdd�S)Nr�z%20)r[�res r%�
_replace_plusr�s���<�<��U�#�#r'c��|Sr r2rs r%�_no_opr
�s���Kr'c	��eZdZdZeddfd�Zed'd��Zed��Z	d(d�Z
d�Zd	�Zd
�Z
d)d�Zd�Zd
�Z							d*d�Zed��Zed��Zed��Zed��Zed��Zed��Zed��Zed��Zed��Zed��Zed��Zeeeeeeeeef	d�Zd�Zd+d�Z d+d�Z!edfd�Z"d�Z#d �Z$d!�Z%d"�Z&d#�Z'eZ(eZ)ed(d$��Z*d(d%�Z+d&�Z,y),rkaI
    :class:`DecodedURL` is a type designed to act as a higher-level
    interface to :class:`URL` and the recommended type for most
    operations. By analogy, :class:`DecodedURL` is the
    :class:`unicode` to URL's :class:`bytes`.

    :class:`DecodedURL` automatically handles encoding and decoding
    all its components, such that all inputs and outputs are in a
    maximally-decoded state.  Note that this means, for some special
    cases, a URL may not "roundtrip" character-for-character, but this
    is considered a good tradeoff for the safety of automatic
    encoding.

    Otherwise, :class:`DecodedURL` has almost exactly the same API as
    :class:`URL`.

    Where applicable, a UTF-8 encoding is presumed. Be advised that
    some interactions can raise :exc:`UnicodeEncodeErrors` and
    :exc:`UnicodeDecodeErrors`, just like when working with
    bytestrings. Examples of such interactions include handling query
    strings encoding binary data, and paths containing segments with
    special characters encoded with codecs other than UTF-8.

    Args:
        url: A :class:`URL` object to wrap.
        lazy: Set to True to avoid pre-decode all parts of the URL to check for
            validity.
            Defaults to False.
        query_plus_is_space: + characters in the query string should be treated
            as spaces when decoding.  If unspecified, the default is taken from
            the scheme.

    .. note::

      The :class:`DecodedURL` initializer takes a :class:`URL` object,
      not URL components, like :class:`URL`. To programmatically
      construct a :class:`DecodedURL`, you can use this pattern:

        >>> print(DecodedURL().replace(scheme=u'https',
        ... host=u'pypi.org', path=(u'projects', u'hyperlink')).to_text())
        https://pypi.org/projects/hyperlink

    .. versionadded:: 18.0.0
    FNc��||_|�|jtv}||_|s9|j|j
|j|j|jfyr )	�_urlr�r��_query_plus_is_spacer3rSr:rbrQ)r$�urlrhr�s    r%r&zDecodedURL.__init__�sQ����	��&�"%�*�*�4I�"I��$7��!��
�I�I�t�}�}�d�i�i����T�]�]�J�r'c�B�tj|�}||||��S)a        Make a `DecodedURL` instance from any text string containing a URL.

        Args:
          text: Text containing the URL
          lazy: Whether to pre-decode all parts of the URL to check for
              validity.
              Defaults to True.
        )rhr�)rEr�)r�rerhr�r
s     r%r�zDecodedURL.from_texts"���}�}�T�"���4�d�8K�L�Lr'c��|jS)zeAccess the underlying :class:`URL` object, which has any special
        characters encoded.
        )r
r-s r%�encoded_urlzDecodedURL.encoded_urls���y�y�r'c�8�|jj|�S)z/Passthrough to :meth:`~hyperlink.URL.to_text()`)r
r�)r$r�s  r%r�zDecodedURL.to_texts���y�y� � ��/�/r'c�6�|jj�S)z.Passthrough to :meth:`~hyperlink.URL.to_uri()`)r
r�r-s r%r�zDecodedURL.to_uri����y�y���!�!r'c�6�|jj�S)z.Passthrough to :meth:`~hyperlink.URL.to_iri()`)r
r�r-s r%r�zDecodedURL.to_iri"rr'c�<�|j||j��S)N)r�)r+r)r$rs  r%�_clonezDecodedURL._clone's$���~�~�� $� 9� 9��
�	
r'c��t|t�r|j}|j|jj	|���S)z^Return a new DecodedURL wrapping the result of
        :meth:`~hyperlink.URL.click()`
        )r�)r�rkr
rr�)r$r�s  r%r�zDecodedURL.click/s:��
�d�J�'��9�9�D��{�{��I�I�O�O��O�&�
�	
r'c�h�|j|jjt|���S)z�Automatically encode any reserved characters in *segment* and
        return a new `DecodedURL` wrapping the result of
        :meth:`~hyperlink.URL.sibling()`
        )rr
r�rj)r$rKs  r%r�zDecodedURL.sibling:s-���{�{��I�I���.�w�7�8�
�	
r'c��|s|S|D�cgc]
}t|���}}|j|jj|��Scc}w)z�Automatically encode any reserved characters in *segments* and
        return a new `DecodedURL` wrapping the result of
        :meth:`~hyperlink.URL.child()`.
        )rjrr
r�)r$r�r��new_segss    r%r�zDecodedURL.childDsH����K�19�:�A�$�Q�'�:��:��{�{�?�4�9�9�?�?�H�5�6�6��;s�Ac�b�|j|jj|||||||��S)zdReturn a new `DecodedURL` wrapping the result of
        :meth:`~hyperlink.URL.normalize()`
        )rr
r)r$r�r3r:rbrQrSr�s        r%rzDecodedURL.normalizeOs6���{�{��I�I�����d�E�8�X�x�
�
�	
r'c�.�|jjSr )r
r�r-s r%r�zDecodedURL.absolutecs���y�y�!�!�!r'c�.�|jjSr )r
r�r-s r%r�zDecodedURL.schemeh����y�y���r'c�@�t|jj�Sr )r6r
r3r-s r%r3zDecodedURL.hostms���D�I�I�N�N�+�+r'c�.�|jjSr )r
rRr-s r%rRzDecodedURL.portrs���y�y�~�~�r'c�.�|jjSr )r
ryr-s r%ryzDecodedURL.rootedwr r'c	��t|d�s=t|jjD�cgc]}t	|d����c}�|_|j
Scc}w)NrZT�r&)�hasattrrvr
r:r	rZ)r$r�s  r%r:zDecodedURL.path|sR���t�W�%��"�Y�Y�^�^���$�A�T�B���D�J��z�z���s�Ac����t|d�sT|jrt�nt�t	t
t
�fd�|jjD���|_	|jS)Nr[c3�P�K�|]\}}t�fd�||fD�����y�w)c3�L�K�|]}|�t�|�d��nd���y�w)NTr%�r	)rJ�x�	predecodes  �r%rLz-DecodedURL.query.<locals>.<genexpr>.<genexpr>�s:��������=�(�%�a�L���"�	"��s�!$N�rv)rJrPrXr,s   �r%rLz#DecodedURL.query.<locals>.<genexpr>�s7�����
���1���#$�Q��
��
�s�#&)
r&rrr
r�
QueryPairsrvr
rbr[)r$r,s @r%rbzDecodedURL.query�s\����t�X�&��(�(�)�	�"�	����
�!%�	�	���
�
�
�D�K��{�{�r'c��t|d�s(|jj}t|d��|_|jS)Nr\Tr%)r&r
rQr	r\)r$�frags  r%rQzDecodedURL.fragment�s5���t�[�)��9�9�%�%�D�,�T��N�D�N��~�~�r'c��t|d�sstttttttffttd�|jjjdd�D����|_	|jS)Nr`c3�6K�|]}t|d�����y�w)Tr%Nr*�rJr�s  r%rLz&DecodedURL.userinfo.<locals>.<genexpr>�s"������(���F�F��rMr?r)
r&rrrr�rvr
rSr�r`r-s r%rSzDecodedURL.userinfo�ss���t�[�)�!��e�C�j�%��S��/�1�2����!%���!3�!3�!9�!9�#�q�!A�����D�N��~�~�r'c� �|jdS)Nr)rSr-s r%rxzDecodedURL.user�s���}�}�Q��r'c�.�|jjSr )r
r�r-s r%r�zDecodedURL.uses_netloc�s���y�y�$�$�$r'c
��|turtd�|D��}|tur)tttd�t	|�D���}|turEt|�dkDrt
d|����dj|D�
cgc]
}
t|
���c}
�}nt}|jj|||||||||	��	}|j|��Scc}
w)a�While the signature is the same, this `replace()` differs a little
        from URL.replace. For instance, it accepts userinfo as a
        tuple, not as a string, handling the case of having a username
        containing a `:`. As with the rest of the methods on
        DecodedURL, if you pass a reserved character, it will be
        automatically encoded instead of an error being raised.
        c3�2K�|]}t|����y�wr �rjr3s  r%rLz%DecodedURL.replace.<locals>.<genexpr>�s����;��)�!�,�;�s�c3�JK�|]\}}td�||fD�����y�w)c3�:K�|]}|�t|�nd���y�wr r8)rJr+s  r%rLz/DecodedURL.replace.<locals>.<genexpr>.<genexpr>�s'������01�}�(��+�$�F��s�Nr-rOs   r%rLz%DecodedURL.replace.<locals>.<genexpr>�s4�����
��1�	��"#�Q�����s�!#rzDuserinfo expected sequence of ["user"] or ["user", "password"], got r?r�)r)r:rvrr.rr r�rarjr
r[r)
r$r�r3r:rbrQrRryrSr�r��
userinfo_text�new_urls
             r%r[zDecodedURL.replace�s���(�v���;�d�;�;�D��������
!+�5� 1���	�E��6�!��8�}�q� � �7?�B���!�I�I�H�&M�q�'7��':�&M�N�M�"�M��)�)�#�#��������"�#�$�

���{�{�w�{�'�'��'Ns�?Cc�X�|jD��cgc]
\}}||k(s�|��c}}Scc}}w)z?Get the value of all query parameters whose name matches *name*r�)r$r"rPrXs    r%rTzDecodedURL.get�s&��!%�
�
�8�f�q�!�d�a�i��8�8��8r�c�F�|j|j||ffz��S)zRReturn a new DecodedURL with the query parameter *name* and *value*
        added.r�r�r�s   r%r�zDecodedURL.add�s%���|�|�$�*�*��u�
�/?�"?�|�@�@r'c����|j}|D��cgc]\}}|�k7s�||f��}}}t�fd�t|�D�d�}�|fg||||j|��Scc}}w)zBReturn a new DecodedURL with query parameter *name* set to *value*c3�:�K�|]\}\}}|�k(s�|���y�wr r2r�s    �r%rLz!DecodedURL.set.<locals>.<genexpr>		s�����G�+�1�f�q�!�Q�$�Y�A�G�r�r�r�r�)r$r"r�rbrPrXr�r�s `      r%rEzDecodedURL.set	sm����
�
��"'�5���A�1��9�a��V�5��5��G��5�)9�G��L���U�m�_��#�c�
��|�|�!�|�$�$��
6s
�
A"�A"c��|�Z|tur'|jD��cgc]\}}||k7s�||f��}}}ns|jD��cgc]\}}||k(r||k(s||f��}}}nHgd}}|jD]5\}}||k(r|tus||k(r||kr|dz
}�#|j||f��7|j|��Scc}}wcc}}w)z�Return a new DecodedURL with query parameter *name* removed.

        Optionally also filter for *value*, as well as cap the number
        of parameters removed with *limit*.
        rrr�r�r�s        r%r�zDecodedURL.remove
	s����=����+/�:�:�C��!�Q��d��q�!�f�C��C�#'�*�*����A���I�!�u�*���F����!#�A�
�B��
�
�
&���1���I��&��A��J�%��-�!�Q�&�M��I�I�q�!�f�%�
&��|�|�"�|�%�%��'D��r�c�R�|jj}|�d|j�d�S)Nz(url=r*)r+r,r
)r$�cns  r%r.zDecodedURL.__repr__0	s ��
�^�^�
$�
$��!�4�9�9�-�-r'c�,�t|j�Sr )r�r
r-s r%rzDecodedURL.__str__5	s���4�9�9�~�r'c��t||j�stS|j�j	�|j�j	�k(Sr )r�r+r�rr�r�s  r%r�zDecodedURL.__eq__;	sA���%����0�!�!��~�~��&�&�(�E�O�O�,=�,D�,D�,F�F�Fr'c�^�t||j�stS|j|�Sr r�r�s  r%r�zDecodedURL.__ne__A	r�r'c���t|j|j|j|j|j
|j|j|j|j|jf
�Sr r�r-s r%r�zDecodedURL.__hash__G	r�r'c�(�|j||��Srfr�)r�r�rhs   r%r�zDecodedURL.fromText\	s���}�}�Q�T�}�*�*r'c�&�|j|��Sr�r�r�s  r%r�zDecodedURL.asTexta	r�r'c��	tj|�}tt|�tgd��z
�}|S#t$r<t|j�t|jj��z}Y�hwxYwr�r�r�s  r%r�zDecodedURL.__dir__e	r�r�)FNr�r\rr )-r,r4r5r��
_EMPTY_URLr&rr�rrr�r�r�rr�r�r�rr�r�r3rRryr:rbrQrSrxr�r:r[rTr�rEr�r.rr�r�r�r�r�r�r�r�r2r'r%rkrk�s���+�Z&�E�t�
��M��M�����0�
"�
"�

�	
�
�	7��
�
�����
�(�"��"�� �� ��,��,������ �� ��	��	�����0��������� �� ��%��%��
�
���
����5(�n9�
A�%���	!&�F.�
�G�&�
�$
�E��E��+��+�:�r'rkc�R�tj|�}|s|St||��}|S)a~
    Automatically turn text into a structured URL object.

    >>> url = parse(u"https://github.com/python-hyper/hyperlink")
    >>> print(url.to_text())
    https://github.com/python-hyper/hyperlink

    Args:
        url: A text string representation of a URL.

        decoded: Whether or not to return a :class:`DecodedURL`,
            which automatically handles all
            encoding/decoding/quoting/unquoting for all the various
            accessors of parts of the URL, or a :class:`URL`,
            which has the same API, but requires handling of special
            characters for different parts of the URL.

        lazy: In the case of `decoded=True`, this controls
            whether the URL is decoded immediately or as accessed. The
            default, `lazy=False`, checks all encoded parts of the URL
            for decodability.

    .. versionadded:: 18.0.0
    rg)�
EncodedURLr�rk)r�decodedrh�enc_url�dec_urls     r%�parserQr	s-��4�"�"�3�'�G������t�,�G��Nr')�_MISSINGr]r�)T)FTTT)TNTr )FF)TF)�r��re�sys�stringr?rrr�ImportErrorr��typingrrrr	r
rrr
rrrrrrr�unicodedatar�_socketr�collections.abcr��collections�idnarr�rr2�version_infor��unichr�	NameErrorrU�typer]r.�QueryParametersrr9�_unspecifiedr:�	frozensetrc�compiler�rWr�rC�	hexdigitsrD�	_ASCII_RE�_GEN_DELIMS�_SUB_DELIMS�_ALL_DELIMSrE�_USERINFO_SAFEr��
_PATH_SAFErn�_SCHEMELESS_PATH_SAFErr�_FRAGMENT_SAFEr��_QUERY_VALUE_SAFEr��_QUERY_KEY_SAFEr�rPrZr�rrmrqrr�rr�rr�rrbr�r
r�rjrorsr~r�r�r�r�r�r�r�r�r�r�r�r�r�r�rrrrrrrr	r6r=rCr8rErMrKrr
rkrQ)�arhrPrXs0000r%�<module>rqs����$
�
�
�
�$��$������""��2�5�>�
���q��Q����
���:��
�5��x��~�-�.��3�
4�
���D�(�4�.� �!���U�4��$��'�
(�)�+���
�C�L��8�v&�h�/�/��v�
�K����"�*�*�����R�Z�Z�,�
-�
���
�
���
���!�!��
��!�!��
��a�%����	 �&��Q��U�B��"8�"?�"?�	�"J�K��K���
�
�B�J�J�'�(�	��
�#����'���K�'��"�[�0�3�t�9�<����/��
�c�%�j�
(�
��Z�'��"�S��X�-��%�(=�=��"�Z�/�#�e�*�<����/��%���T��(B�B��!�$5�5��#�&7�#�d�)�&C�C���/�1����+�>�:��'�(8�9��&�z�2��"1�2G�"H��#�L�1��&��7��(�):�;��(�):�;��*�+>�?��%�n�5��'�(8�9��'�(9�:���"�'�'�)���A�q��8�8�G�Y�'�+<�<�
�A�������%���$��(����0 �f
�
� 
�
�(-�
�C�-�	�3�-��D�-�
�2�	-�
�D�-�
�2�
-�
�4�-�
�b�-��B�-��S�-��C�-�
�3�-��C�-�
�3�-��D�-� �C�!-�"�S�#-�$
�4�%-�&�D�'-�(�T�)-�*�D�+-�,
�3�--�.�C�/-�0�S�1-�2
�3�3-�4��5-�6�T�7-�8�S�9-�:�C�;-�<�S�=-�>�T�?-�@�B�A-�B
�3�C-�D�C�E-�F�
������
���Y-��`����&���DH�1�h�@	�J�	��
� $-�;���$��7<�	�
� �7<�	�7<�	������
M�`=�@�>'�Tg&�&�g&�T!�
�
�U�
�$�
�
f��f�V
��mJ���M���0�2�1�1�2����
�F���N��JsB�O�O�2O,�A
O:
�/"P
�O�O�O)�(O)�,O7�6O7

Zerion Mini Shell 1.0