403Webshell
Server IP : 178.105.222.151  /  Your IP : 216.73.216.38
Web Server : nginx/1.28.3
System : Linux MNK 7.0.0-15-generic #15-Ubuntu SMP PREEMPT_DYNAMIC Wed Apr 22 16:06:43 UTC 2026 x86_64
User : www-data ( 33)
PHP Version : 8.5.4
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : OFF
Directory :  /usr/lib/python3.14/__pycache__/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /usr/lib/python3.14/__pycache__/_pyio.cpython-314.pyc
+
��3j�v��t�Rt^RIt^RIt^RIt^RIt^RIt^RIt^RIHt	]PR*9d^RIHt
MRt
^RIt^RIHtHtHtHtHtHt0R+mt]!]R4'd7]P/]P04]P/]P24R,t]t]!]R4;'g]P8P:tR-Rlt] R.Rl4t!R	t"]PFt#]PJt%!RR
]PPR7t)]PRPU])4!RR])4t+]PVPU]+4!RR])4t,]PXPU],4!RR],4t-!RR],4t.!RR]-4t/!RR]-4t0!RR],4t1!RR]0]/4t2Rt3!R R!]+4t4!R"R#])4t5]PjPU]54!R$R%]Pl4t7!R&R']54t8!R(R)]84t9R# ]$d]"t#EL:i;i ]$d!R
R]&]'4t%ELGi;i)/z)
Python implementation of the io module.
N)�
allocate_lock)�setmode)�__all__�SEEK_SET�SEEK_CUR�SEEK_END�Reader�Writer�	SEEK_HOLE�gettotalrefcountc���Vfh\PP'dRpMRp\PP'd#^RIpVPR\V^,4V#)a�
A helper function to choose the text encoding.

When encoding is not None, this function returns it.
Otherwise, this function returns the default text encoding
(i.e. "locale" or "utf-8" depends on UTF-8 mode).

This function emits an EncodingWarning if *encoding* is None and
sys.flags.warn_default_encoding is true.

This can be used in APIs with an encoding=None parameter
that pass it to TextIOWrapper or open.
However, please consider using encoding="utf-8" for new APIs.
N�utf-8�localez"'encoding' argument not specified.)�sys�flags�	utf8_mode�warn_default_encoding�warnings�warn�EncodingWarning)�encoding�
stacklevelrs&& �/usr/lib/python3.14/_pyio.py�
text_encodingr)sT�����9�9�����H��H��9�9�*�*�*���M�M�>�)�:��>�
;��O�c��\V\4'g\P!V4p\V\\
\34'g\
RV,4h\V\4'g\
RV,4h\V\4'g\
RV,4hVe)\V\4'g\
RV,4hVe)\V\4'g\
RV,4h\V4pV\R4,
'g\V4\V48�d\RV,4hRV9p	R	V9p
R
V9pRV9pRV9p
R
V9pRV9pV'dV'd\R4hW�,V,V,^8�d\R4hV	'g$V
'gV'gV'g\R4hV'dVe\R4hV'dVe\R4hV'dVe\R4hV'd#V^8Xd^RI
pVPR\^4\TT	;'dR;'gRT
;'dR	;'gR,T;'dR
;'gR,T;'dR;'gR,T
;'dR;'gR,WgR7pTpRpV^8XgV^8dVP4'dRpRpV^8d%\\!VP"R4\$4pV^8d\R4hV^8XdV'dV#\R4hV
'd\'VV4pMLV	'gV'g	V'd\)VV4pM'V
'd\+VV4pM\RV,4hTpV'dV#\-V4p\/VW4VV4pTpWnV# TP34h;i)a�Open file and return a stream.  Raise OSError upon failure.

 file is either a text or byte string giving the name (and the path
 if the file isn't in the current working directory) of the file to
 be opened or an integer file descriptor of the file to be
 wrapped. (If a file descriptor is given, it is closed when the
 returned I/O object is closed, unless closefd is set to False.)

 mode is an optional string that specifies the mode in which the file is
 opened. It defaults to 'r' which means open for reading in text mode. Other
 common values are 'w' for writing (truncating the file if it already
 exists), 'x' for exclusive creation of a new file, and 'a' for appending
 (which on some Unix systems, means that all writes append to the end of the
 file regardless of the current seek position). In text mode, if encoding is
 not specified the encoding used is platform dependent. (For reading and
 writing raw bytes use binary mode and leave encoding unspecified.) The
 available modes are:

 ========= ===============================================================
 Character Meaning
 --------- ---------------------------------------------------------------
 'r'       open for reading (default)
 'w'       open for writing, truncating the file first
 'x'       create a new file and open it for writing
 'a'       open for writing, appending to the end of the file if it exists
 'b'       binary mode
 't'       text mode (default)
 '+'       open a disk file for updating (reading and writing)
 ========= ===============================================================

 The default mode is 'rt' (open for reading text). For binary random
 access, the mode 'w+b' opens and truncates the file to 0 bytes, while
 'r+b' opens the file without truncation. The 'x' mode implies 'w' and
 raises an `FileExistsError` if the file already exists.

 Python distinguishes between files opened in binary and text modes,
 even when the underlying operating system doesn't. Files opened in
 binary mode (appending 'b' to the mode argument) return contents as
 bytes objects without any decoding. In text mode (the default, or when
 't' is appended to the mode argument), the contents of the file are
 returned as strings, the bytes having been first decoded using a
 platform-dependent encoding or using the specified encoding if given.

 buffering is an optional integer used to set the buffering policy.
 Pass 0 to switch buffering off (only allowed in binary mode), 1 to select
 line buffering (only usable in text mode), and an integer > 1 to indicate
 the size of a fixed-size chunk buffer.  When no buffering argument is
 given, the default buffering policy works as follows:

* Binary files are buffered in fixed-size chunks; the size of the buffer
  is max(min(blocksize, 8 MiB), DEFAULT_BUFFER_SIZE)
  when the device block size is available.
  On most systems, the buffer will typically be 128 kilobytes long.

 * "Interactive" text files (files for which isatty() returns True)
   use line buffering.  Other text files use the policy described above
   for binary files.

 encoding is the str name of the encoding used to decode or encode the
 file. This should only be used in text mode. The default encoding is
 platform dependent, but any encoding supported by Python can be
 passed.  See the codecs module for the list of supported encodings.

 errors is an optional string that specifies how encoding errors are to
 be handled---this argument should not be used in binary mode. Pass
 'strict' to raise a ValueError exception if there is an encoding error
 (the default of None has the same effect), or pass 'ignore' to ignore
 errors. (Note that ignoring encoding errors can lead to data loss.)
 See the documentation for codecs.register for a list of the permitted
 encoding error strings.

 newline is a string controlling how universal newlines works (it only
 applies to text mode). It can be None, '', '\n', '\r', and '\r\n'.  It works
 as follows:

 * On input, if newline is None, universal newlines mode is
   enabled. Lines in the input can end in '\n', '\r', or '\r\n', and
   these are translated into '\n' before being returned to the
   caller. If it is '', universal newline mode is enabled, but line
   endings are returned to the caller untranslated. If it has any of
   the other legal values, input lines are only terminated by the given
   string, and the line ending is returned to the caller untranslated.

 * On output, if newline is None, any '\n' characters written are
   translated to the system default line separator, os.linesep. If
   newline is '', no translation takes place. If newline is any of the
   other legal values, any '\n' characters written are translated to
   the given string.

 closedfd is a bool. If closefd is False, the underlying file descriptor will
 be kept open when the file is closed. This does not work when a file name is
 given and must be True in that case.

 The newly created file is non-inheritable.

 A custom opener can be used by passing a callable as *opener*. The
 underlying file descriptor for the file object is then obtained by calling
 *opener* with (*file*, *flags*). *opener* must return an open file
 descriptor (passing os.open as *opener* results in functionality similar to
 passing None).

 open() returns a file object whose type depends on the mode, and
 through which the standard file operations such as reading and writing
 are performed. When open() is used to open a file in a text mode ('w',
 'r', 'wt', 'rt', etc.), it returns a TextIOWrapper. When used to open
 a file in a binary mode, the returned class varies: in read binary
 mode, it returns a BufferedReader; in write binary and append binary
 modes, it returns a BufferedWriter, and in read/write mode, it returns
 a BufferedRandom.

 It is also possible to use a string or bytearray as a file for both
 reading and writing. For strings StringIO can be used like a file
 opened in a text mode, and for bytes a BytesIO can be used like a file
 opened in a binary mode.
 zinvalid file: %rzinvalid mode: %rzinvalid buffering: %rN�invalid encoding: %r�invalid errors: %rzaxrwb+t�x�r�w�a�+�t�bz'can't have text and binary mode at oncez)can't have read/write/append mode at oncez/must have exactly one of read/write/append modez-binary mode doesn't take an encoding argumentz+binary mode doesn't take an errors argumentz+binary mode doesn't take a newline argumentzaline buffering (buffering=1) isn't supported in binary mode, the default buffer size will be used�)�openerFTzinvalid buffering sizezcan't have unbuffered text I/Ozunknown mode: %r���i�)�
isinstance�int�os�fspath�str�bytes�	TypeError�set�len�
ValueErrorrr�RuntimeWarning�FileIO�_isatty_open_only�max�min�_blksize�DEFAULT_BUFFER_SIZE�BufferedRandom�BufferedWriter�BufferedReaderr�
TextIOWrapper�mode�close)�filer=�	bufferingr�errors�newline�closefdr&�modes�creating�reading�writing�	appending�updating�text�binaryr�raw�result�line_buffering�buffers&&&&&&&&             r�openrPJsw��n�d�C� � ��y�y�����d�S�%��-�.�.��*�T�1�2�2��d�C� � ��*�T�1�2�2��i��%�%��/�)�;�<�<���J�x��$=�$=��.��9�:�:�
��*�V�S�"9�"9��,�v�5�6�6���I�E��s�9�~����T��S��Z�!7��+�d�2�3�3��e�|�H��U�l�G��U�l�G��u��I��e�|�H��%�<�D�
�E�\�F����B�C�C���G�#�i�/�!�3��D�E�E���7�i��J�K�K�
�(�&��H�I�I�
�&�$��F�G�G�
�'�%��F�G�G�
�)�q�.���
�
�C�$�a�	)����"�"�s�(�(�b��/�/�c�'�'�R�)��/�/�c�'�'�R�)��#�#��)�)�r�+��"�"�s�(�(�b�	*�
�
)�C��F������>�Y��]�s�/D�/D�/F�/F��I�!�N��q�=��C����k�:�<O�P�I��q�=��5�6�6���>���
��=�>�>��#�C��3�F�
��I�#�C��3�F�
�#�C��3�F��/�$�6�7�7�����M� ��*���V�X�w��O�����	��
�������
�sI�%%O8�AO8�O8�O8�0O8�O8�
O8�O8�*(O8�O8�"O8�8Pc�P�^RIpVPR\^4\VR4#)a^Opens the provided file with mode ``'rb'``. This function
should be used when the intent is to treat the contents as
executable code.

``path`` should be an absolute path.

When supported by the runtime, this function can be hooked
in order to allow embedders more control over code files.
This functionality is not supported on the current runtime.
Nz(_pyio.open_code() may not be using hooks�rb)rrr2rP)�pathrs& r�_open_code_with_warningrTs(����M�M�<� �!�%���d��rc��]tRtRtRtR#)�UnsupportedOperationi.�N)�__name__�
__module__�__qualname__�__firstlineno__�__static_attributes__rWrrrVrV.s��rrVc��a�]tRtRtoRtRtRRltRtRRltRt	R	t
R
tRtRt
RR
ltRtRRltRtRRlt]R4tRRltRtRtRtRtR RltRtRtRRltRtRtVt R#)!�IOBasei2a�The abstract base class for all I/O classes.

This class provides dummy implementations for many methods that
derived classes can override selectively; the default implementations
represent a file that cannot be read, written or seeked.

Even though IOBase does not declare read or write because
their signatures will vary, implementations and clients should
consider those methods part of the interface. Also, implementations
may raise UnsupportedOperation when operations they do not support are
called.

The basic type used for binary data read from or written to a file is
bytes. Other bytes-like objects are accepted as method arguments too.
Text I/O classes work with str data.

Note that calling any method (even inquiries) on a closed stream is
undefined. Implementations may raise OSError in this case.

IOBase (and its subclasses) support the iterator protocol, meaning
that an IOBase object can be iterated over yielding the lines in a
stream.

IOBase also supports the :keyword:`with` statement. In this example,
fp is closed after the suite of the with statement is complete:

with open('spam.txt', 'r') as fp:
    fp.write('Spam and eggs!')
c�P�\VPP:RV:R24h)z@Internal: raise an OSError exception for unsupported operations.�.z() not supported)rV�	__class__rX)�self�names&&r�_unsupported�IOBase._unsupportedTs&��"�$(�N�N�$;�$;�T�$C�D�	Drc�(�VPR4R#)a�Change stream position.

Change the stream position to byte offset pos. Argument pos is
interpreted relative to the position indicated by whence.  Values
for whence are ints:

* 0 -- start of stream (the default); offset should be zero or positive
* 1 -- current stream position; offset may be negative
* 2 -- end of stream; offset is usually negative
Some operating systems / file systems could provide additional values.

Return an int indicating the new absolute position.
�seekN�rd�rb�pos�whences&&&rrg�IOBase.seek[s��	
���&�!rc�&�VP^^4#)z5Return an int indicating the current stream position.)rg�rbs&r�tell�IOBase.tellks���y�y��A��rNc�(�VPR4R#)ztTruncate file to size bytes.

Size defaults to the current IO position as reported by tell().  Return
the new size.
�truncateNrh�rbrjs&&rrr�IOBase.truncateo���	
���*�%rc�&�VP4R#)zeFlush write buffers, if applicable.

This is not implemented for read-only and non-blocking streams.
N��_checkClosedrns&r�flush�IOBase.flushys��
	
���rFc�v�VP'gVP4RVnR#R# RTni;i)zYFlush and close the IO object.

This method has no effect if the file is already closed.
TN)�_IOBase__closedryrns&rr>�IOBase.close�s2��
�}�}�}�
%��
�
�� $��
�	��!%��
�s�/�	8c��VPpT'dR#\TRR4;p'd	T!T4TP4R# \dR#i;i)zDestructor.  Calls close().N�
_dealloc_warn)�closed�AttributeError�getattrr>)rbr��dealloc_warns&  r�__del__�IOBase.__del__�sU��	��[�[�F���"�4��$�?�?�<�?����	
�
�
����	�
�	�s�A�A�Ac��R#)z�Return a bool indicating whether object supports random access.

If False, seek(), tell() and truncate() will raise OSError.
This method may need to do a test seek().
FrWrns&r�seekable�IOBase.seekable�s��rc�\�VP4'g\VfR4hT4hR#)zEInternal: raise UnsupportedOperation if file is not seekable
        NzFile or stream is not seekable.)r�rV�rb�msgs&&r�_checkSeekable�IOBase._checkSeekable��=���}�}���&�*-�+�(I�@�
@�;>�@�
@�rc��R#)zfReturn a bool indicating whether object was opened for reading.

If False, read() will raise OSError.
FrWrns&r�readable�IOBase.readable����
rc�\�VP4'g\VfR4hT4hR#)zEInternal: raise UnsupportedOperation if file is not readable
        NzFile or stream is not readable.)r�rVr�s&&r�_checkReadable�IOBase._checkReadable�r�rc��R#)zvReturn a bool indicating whether object was opened for writing.

If False, write() and truncate() will raise OSError.
FrWrns&r�writable�IOBase.writable�r�rc�\�VP4'g\VfR4hT4hR#)zEInternal: raise UnsupportedOperation if file is not writable
        NzFile or stream is not writable.)r�rVr�s&&r�_checkWritable�IOBase._checkWritable�r�rc��VP#)zuclosed: bool.  True iff the file has been closed.

For backwards compatibility, this is a property, not a predicate.
)r|rns&rr��
IOBase.closed�s���}�}�rc�T�VP'd\VfR4hT4hR#)z7Internal: raise a ValueError if file is closed
        N�I/O operation on closed file.�r�r1r�s&&rrx�IOBase._checkClosed�s6���;�;�;�� #��=�6�
6�14�6�
6�rc�&�VP4V#)zCContext management protocol.  Returns self (an instance of IOBase).rwrns&r�	__enter__�IOBase.__enter__�s�������rc�&�VP4R#)z+Context management protocol.  Calls close()N)r>)rb�argss&*r�__exit__�IOBase.__exit__�s���
�
�rc�(�VPR4R#)z�Returns underlying file descriptor (an int) if one exists.

An OSError is raised if the IO object does not use a file descriptor.
�filenoNrhrns&rr��
IOBase.fileno�s��
	
���(�#rc�&�VP4R#)zkReturn a bool indicating whether this is an 'interactive' stream.

Return False if it can't be determined.
Frwrns&r�isatty�
IOBase.isatty�s��
	
����rc�aa�\SR4'd	VV3RlpMRpSfRoMSPpV!4o\	4pS^8g\V4S8dBSP
V!44pV'gM"WE,
pVPR4'gKW\V4# \d\S:R24hi;i)aRead and return a line of bytes from the stream.

If size is specified, at most size bytes will be read.
Size should be an int.

The line terminator is always b'\n' for binary files; for text
files, the newlines argument to open can be used to select the line
terminator(s) recognized.
�peekc�<�SP^4pV'g^#VPR4^,;'g\V4pS^8�d
\VS4pV#)��
)r��findr0r6)�	readahead�nrb�sizes  ��r�
nreadahead�#IOBase.readline.<locals>.nreadahead	sL��� �I�I�a�L�	� ���^�^�E�*�Q�.�A�A�3�y�>���1�9��A�t��A��rc��^#)r�rWrWrrr�r�s��r� is not an integerr�r')	�hasattr�	__index__r�r.�	bytearrayr0�read�endswithr-)rbr�r��
size_index�resr$sff    r�readline�IOBase.readline�s�����4�� � �
�
��<��D�
$�!�^�^�
�"�|���k���Q�h�#�c�(�T�/��	�	�*�,�'�A����H�C��|�|�E�"�"���S�z���"�
?��4�(�*<� =�>�>�
?�s�B(�(Cc�&�VP4V#�Nrwrns&r�__iter__�IOBase.__iter__'s�������rc�B�VP4pV'g\hV#r�)r��
StopIteration�rb�lines& r�__next__�IOBase.__next__+s���}�}�������rc��VeV^8:d\V4#^p.pVF/pVPV4V\V4,
pW!8�gK.V#	V#)z�Return a list of lines from the stream.

hint can be specified to control the number of lines read: no more
lines will be read if the total size (in bytes/characters) of all
lines so far exceeds hint.
)�list�appendr0)rb�hintr��linesr�s&&   r�	readlines�IOBase.readlines1sZ���<�4�1�9���:��
�����D��L�L���
��T��N�A��y�����
�rc�Z�VP4VFpVPV4K	R#)z�Write a list of lines to the stream.

Line separators are not added, so it is usual for each of the lines
provided to have a line separator at the end.
N)rx�write)rbr�r�s&& r�
writelines�IOBase.writelinesCs&��	
�����D��J�J�t��r)�__closed��r��r')!rXrYrZr[�__doc__rdrgrorrryr|r>r�r�r�r�r�r�r��propertyr�rxr�r�r�r�r�r�r�r�r�r\�__classdictcell__��
__classdict__s@rr^r^2s������@D�"� �&���H�	%��*�@��@��@�����6��
�$��(�T���$�rr^)�	metaclassc�@a�]tRtRtoRtR	RltRtRtRtRt	Vt
R#)
�	RawIOBaseiPzBase class for raw binary I/O.c��VfRpV^8dVP4#\VP44pVPV4pVfR#V^8gV\	V48�d\RVR\	V424hW#R1\
V4#)z�Read and return up to size bytes, where size is an int.

Returns an empty bytes object on EOF, or None if the object is
set not to block and has no data to read.
Nzreadinto returned z outside buffer size r')�readallr�r��readintor0r1r-)rbr�r$r�s&&  rr��RawIOBase.read^s����<��D��!�8��<�<�>�!��d�n�n�&�'���M�M�!����9���q�5�A��A��J��1�!��4I�#�a�&��R�S�S�
�b�E��Q�x�rc��\4pVP\4;p'dW,
pK'V'd\V4#V#)z+Read until EOF, using multiple read() call.)r�r�r8r-)rbr��datas&  rr��RawIOBase.readallqs9���k���i�i� 3�4�4�d�4��K�C����:���Krc�(�VPR4R#)z�Read bytes into a pre-allocated bytes-like object b.

Returns an int representing the number of bytes read (0 for EOF), or
None if the object is set not to block and has no data to read.
r�Nrh�rbr$s&&rr��RawIOBase.readinto|rurc�(�VPR4R#)z�Write the given buffer to the IO stream.

Returns the number of bytes written, which may be less than the
length of b in bytes.
r�Nrhr�s&&rr��RawIOBase.write�s��	
���'�"rrWNr�)rXrYrZr[r�r�r�r�r�r\r�r�s@rr�r�Ps!����(��&	�&�#�#rr�c�Va�]tRtRtoRtRRltRRltRtRtRt	Rt
R	tR
tVt
R#)
�BufferedIOBasei�a�Base class for buffered IO objects.

The main difference with RawIOBase is that the read() method
supports omitting the size argument, and does not have a default
implementation that defers to readinto().

In addition, read(), readinto() and write() may raise
BlockingIOError if the underlying raw stream is in non-blocking
mode and not ready; unlike their raw counterparts, they will never
return None.

A typical implementation should not inherit from a RawIOBase
implementation, but wrap one.
c�(�VPR4R#)aDRead and return up to size bytes, where size is an int.

If the argument is omitted, None, or negative, reads and
returns all data until EOF.

If the argument is positive, and the underlying raw stream is
not 'interactive', multiple raw reads may be issued to satisfy
the byte count (unless EOF is reached first).  But for
interactive raw streams (XXX and for pipes?), at most one raw
read will be issued, and a short result does not imply that
EOF is imminent.

Returns an empty bytes array on EOF.

Raises BlockingIOError if the underlying raw stream has no
data at the moment.
r�Nrh�rbr�s&&rr��BufferedIOBase.read�s��$	
���&�!rc�(�VPR4R#)zQRead up to size bytes with at most one read() system call,
where size is an int.
�read1Nrhr�s&&rr��BufferedIOBase.read1�s��	
���'�"rc�(�VPVRR7#)a6Read bytes into a pre-allocated bytes-like object b.

Like read(), this may issue multiple reads to the underlying raw
stream, unless the latter is 'interactive'.

Returns an int representing the number of bytes read (0 for EOF).

Raises BlockingIOError if the underlying raw stream has no
data at the moment.
F�r���	_readintor�s&&rr��BufferedIOBase.readinto�s���~�~�a�u�~�-�-rc�(�VPVRR7#)z�Read bytes into buffer *b*, using at most one system call

Returns an int representing the number of bytes read (0 for EOF).

Raises BlockingIOError if the underlying raw stream has no
data at the moment.
Tr�r�r�s&&r�	readinto1�BufferedIOBase.readinto1�s���~�~�a�t�~�,�,rc��\V\4'g\V4pVPR4pV'dVP\	V44pMVP\	V44p\	V4pW1RV%V#)�BN)r(�
memoryview�castr�r0r�)rbr$r�r�r�s&&&  rr��BufferedIOBase._readinto�sc���!�Z�(�(��1�
�A�
�F�F�3�K����:�:�c�!�f�%�D��9�9�S��V�$�D���I���"�1���rc�(�VPR4R#)z�Write the given bytes buffer to the IO stream.

Return the number of bytes written, which is always the length of b
in bytes.

Raises BlockingIOError if the buffer is full and the
underlying raw stream cannot accept more data at the moment.
r�Nrhr�s&&rr��BufferedIOBase.write�s��	
���'�"rc�(�VPR4R#)z�
Separate the underlying raw stream from the buffer and return it.

After the raw stream has been detached, the buffer is in an unusable
state.
�detachNrhrns&rr
�BufferedIOBase.detach����	
���(�#rrWNr�)rXrYrZr[r�r�r�r�rr�r�r
r\r�r�s@rr�r��s2����
�"�(#�.�	-�
�	#�$�$rr�c�a�]tRtRtoRtRtRRltRtRRltRt	R	t
R
tRt]
R4t]
R
4t]
R4t]
R4tRtRtRtRtRtRtVtR#)�_BufferedIOMixini�z�A mixin implementation of BufferedIOBase with an underlying raw stream.

This passes most requests on to the underlying raw stream.  It
does *not* provide implementations of read(), readinto() or
write().
c��WnR#r���_raw�rbrLs&&r�__init__�_BufferedIOMixin.__init__s���	rc�`�VPPW4pV^8d\R4hV#)r�z#seek() returned an invalid position)rLrg�OSError)rbrjrk�new_positions&&& rrg�_BufferedIOMixin.seeks.���x�x�}�}�S�1���!���?�@�@��rc�^�VPP4pV^8d\R4hV#)r�z#tell() returned an invalid position)rLrorrss& rro�_BufferedIOMixin.tell
s)���h�h�m�m�o����7��?�@�@��
rNc��VP4VP4VP4VfVP4pVPPV4#r�)rxr�ryrorLrrrss&&rrr�_BufferedIOMixin.truncatesL����������
	
�
�
���;��)�)�+�C��x�x� � ��%�%rc�t�VP'd\R4hVPP4R#)�flush on closed fileN)r�r1rLryrns&rry�_BufferedIOMixin.flush$s%���;�;�;��3�4�4������rc���VPeBVP'g.VP4VPP4R#R#R# TPP4i;ir�)rLr�ryr>rns&rr>�_BufferedIOMixin.close)sJ���8�8������
!��
�
������� �)4���
����� ���A�A.c�~�VPf\R4hVP4VPpRVnV#)Nzraw stream already detached)rLr1ryrrs& rr
�_BufferedIOMixin.detach1s6���8�8���:�;�;��
�
���i�i����	��
rc�6�VPP4#r�)rLr�rns&rr��_BufferedIOMixin.seekable;����x�x� � �"�"rc��VP#r�rrns&rrL�_BufferedIOMixin.raw>s���y�y�rc�.�VPP#r�)rLr�rns&rr��_BufferedIOMixin.closedBs���x�x���rc�.�VPP#r�)rLrcrns&rrc�_BufferedIOMixin.nameF����x�x�}�}�rc�.�VPP#r�)rLr=rns&rr=�_BufferedIOMixin.modeJr.rc�J�\RVPP:R24h�zcannot pickle z object�r.rarXrns&r�__getstate__�_BufferedIOMixin.__getstate__N�!���.����)@�)@�(C�7�K�L�Lrc���VPPpVPPpVPpRP	WV4# \
dRP	Y4u#i;i)z<{}.{} name={!r}>z<{}.{}>)rarYrZrc�formatr�)rb�modname�clsnamercs&   r�__repr__�_BufferedIOMixin.__repr__Qsf���.�.�+�+���.�.�-�-��	F��9�9�D�'�-�-�g��E�E���	6��#�#�G�5�5�	6�s�A�A+�*A+c�X�\VPRR4;p'dV!V4R#R#�rN)r�rL�rb�sourcer�s&& rr�_BufferedIOMixin._dealloc_warn[s(��"�4�8�8�_�d�C�C�<�C��� �Drc�6�VPP4#r�)rLr�rns&rr��_BufferedIOMixin.filenoa����x�x��� � rc�6�VPP4#r�)rLr�rns&rr��_BufferedIOMixin.isattydrDrrr�r�)rXrYrZr[r�rrgrorrryr>r
r�r�rLr�rcr=r4r;rr�r�r\r�r�s@rrr�s�������
��
&�"�
!��#�����������������M�F�!�!�!�!rrc�aa�]tRtRtoRtRtRRltRtRtRt	V3Rlt
RR	ltRR
ltRt
RRltR
tRRltRtRtRtRtVtV;t#)�BytesIOihz<Buffered I/O implementation using an in-memory bytes buffer.Nc�L�\4pVe	W!,
pW n^VnR#r�)r��_buffer�_pos)rb�
initial_bytes�bufs&& rr�BytesIO.__init__ps#���k���$�� �C�����	rc�p�VP'd\R4hVPP4#)z__getstate__ on closed file)r�r1�__dict__�copyrns&rr4�BytesIO.__getstate__ws*���;�;�;��:�;�;��}�}�!�!�#�#rc�f�VP'd\R4h\VP4#)z8Return the bytes value (contents) of the buffer
        zgetvalue on closed file)r�r1r-rJrns&r�getvalue�BytesIO.getvalue|s(���;�;�;��6�7�7��T�\�\�"�"rc�f�VP'd\R4h\VP4#)z;Return a readable and writable view of the buffer.
        zgetbuffer on closed file)r�r1rrJrns&r�	getbuffer�BytesIO.getbuffer�s(���;�;�;��7�8�8��$�,�,�'�'rc�t<�VPeVPP4\SV`
4R#r�)rJ�clear�superr>�rbras&�rr>�
BytesIO.close�s&����<�<�#��L�L��� �
��
�rc���VP'd\R4hVfRpMVPpV!4pV^8d\VP4p\VP4VP8:dR#\\VP4VPV,4pVPVPVpW0n\V4# \d\	T:R24hi;i)�read from closed filer�rr')
r�r1r�r�r.r0rJrKr6r-)rbr�r��newposr$s&&   rr��BytesIO.read�s����;�;�;��4�5�5��<��D�
$�!�^�^�
�"�|���!�8��t�|�|�$�D��t�|�|���	�	�)���S����&��	�	�D�(8�9���L�L����V�,���	��Q�x���"�
?��4�(�*<� =�>�>�
?�s�C�C0c�$�VPV4#)z"This is the same as read.
        )r�r�s&&rr��
BytesIO.read1�s���y�y���rc��\V\4'd\R4h\V4;_uu_4pVP'd\R4hVPpV^8XdRRR4^#VPpV\VP48�dVPPV4W PWDV,%V;PV,
unRRR4V# +'giX#;i�z can't write str to binary stream�write to closed fileN)r(r,r.rr�r1�nbytesrKr0rJ�resize)rbr$�viewr�rjs&&   rr��
BytesIO.write�s����a�����>�?�?�
��]�]�d��{�{�{� �!7�8�8����A��A�v��
�]��)�)�C��S����&�&����#�#�C�(�(,�L�L��1�W�%��I�I��N�I�����]���s�2C)�1A.C)�)C:	c��VP'd\R4hVPpV!4pT^8Xd)T^8d\RT:24hYnTP
#T^8Xd/\
^TP
T,4TnTP
#T^8Xd8\
^\TP4T,4TnTP
#\R4h \d\	T:R24hi;i)zseek on closed filer��negative seek position zunsupported whence value)	r�r1r�r�r.rKr5r0rJ)rbrjrk�	pos_indexs&&& rrg�BytesIO.seek�s����;�;�;��2�3�3�	��
�
�I��+�C��Q�;��Q�w� ��!E�F�F��I��y�y��
�q�[��A�t�y�y�3��/�D�I�
�y�y��	�q�[��A�s�4�<�<�0�3�6�7�D�I��y�y���7�8�8���	:��s�g�%7�8�9�9�	:�s�C�C:c�T�VP'd\R4hVP#)�tell on closed file)r�r1rKrns&rro�BytesIO.tell�s!���;�;�;��2�3�3��y�y�rc��VP'd\R4hVfVPpM*VPpV!4pT^8d\RT:24hVPVR1V# \d\T:R24hi;i)ztruncate on closed fileNr�znegative truncate position )r�r1rKr�r�r.rJ)rbrjrms&& rrr�BytesIO.truncate�s����;�;�;��6�7�7��;��)�)�C�
"��M�M�	� �k���Q�w� �C�!I�J�J��L�L�����
��"�
>��3�'�);� <�=�=�
>�s�A*�*Bc�@�VP'd\R4hR#�r�Tr�rns&rr��BytesIO.readable�����;�;�;��<�=�=�rc�@�VP'd\R4hR#rur�rns&rr��BytesIO.writable�rwrc�@�VP'd\R4hR#rur�rns&rr��BytesIO.seekable�rwr)rJrKr�r�r�)rXrYrZr[r�rJrr4rTrWr>r�r�r�rgrorrr�r�r�r\r��
__classcell__�rar�s@@rrHrHhsZ����F��G��$�
#�(��
�*�
�&�*�
�"�
�
�rrHc�a�]tRtRtoRt]3RltRtRtRRlt	RRlt
RR	ltRR
ltRRlt
RtR
tRRltRtVtR#)r;i�z�BufferedReader(raw[, buffer_size])

A buffer for a readable, sequential BaseRawIO object.

The constructor creates a BufferedReader for the given readable raw
stream and buffer_size. If buffer_size is omitted, DEFAULT_BUFFER_SIZE
is used.
c���VP4'g\R4h\PW4V^8:d\	R4hW nVP
4\4VnR#)zMCreate a new buffered reader using the given readable raw IO object.
        z "raw" argument must be readable.�invalid buffer sizeN)	r�rrrr1�buffer_size�_reset_read_buf�Lock�
_read_lock�rbrLr�s&&&rr�BufferedReader.__init__sX���|�|�~�~��<�=�=��!�!�$�,��!���2�3�3�&�������&��rc�6�VPP4#r�)rLr�rns&rr��BufferedReader.readabler'rc�"�RVn^VnR#�rN)�	_read_buf�	_read_posrns&rr��BufferedReader._reset_read_bufs�������rNc��VeVR8d\R4hVP;_uu_4VPV4uuRRR4# +'giR#;i)z�Read size bytes.

Returns exactly size bytes of data unless the underlying raw IO
stream reaches EOF or if the call would block in non-blocking
mode. If size is negative, read until EOF or until read() would
block.
Nzinvalid number of bytes to readr')r1r��_read_unlockedr�s&&rr��BufferedReader.reads?�����r�	��>�?�?�
�_�_�_��&�&�t�,��_�_�_�s�A�A	c��RpRpVPpVPpVeVR8Xd�VP4\VPR4'd8VPP4pVfWER;'gR#WERV,#WER.p^pVPP
4pWc9dTpM%V\V4,
pVPV4KIRPV4;'gT#\V4V,
p	W8:d$V;PV,
unWEWQ,#WER.p\VPV4p
W�8dJVPP
V
4pWc9dTpM%V	\V4,
p	VPV4KO\W4pRPV4pW�RVn^VnV'dVRV#T#)rNr�r�r')
r�r�r�r�rLr�r�r0r��joinr5r�r6)rbr��
nodata_val�empty_valuesrMrj�chunk�chunks�current_size�avail�wanted�outs&&          rr��BufferedReader._read_unlocked#s����
�"���n�n���n�n��
�9��R��� � �"��t�x�x��+�+����(�(�*���=��t�9�,�,��,��t�9�u�,�,��$�i�[�F��L�����
�
����(�!&�J����E�
�*���
�
�e�$��8�8�F�#�1�1�z�1��C��3����:��N�N�a��N��3�5�>�!��d�)����T�%�%�q�)���i��H�H�M�M�&�)�E��$�"�
���S��Z��E��M�M�%� �
��M���h�h�v����R��������s�2�A�w�-�:�-rc��VPR4VP;_uu_4VPV4uuRRR4# +'giR#;i)z�Returns buffered bytes without advancing the position.

The argument indicates a desired minimal number of bytes; we
do at most one raw read to satisfy it.  We never return more
than self.buffer_size.
zpeek of closed fileN)rxr��_peek_unlockedr�s&&rr��BufferedReader.peekWs6��	
���/�0�
�_�_�_��&�&�t�,��_�_�_�s�A�A	c��\WP4p\VP4VP,
pW28gV^8:dcVPV,
pVP
P
V4pV'd-VPVPRV,Vn^VnVPVPR#)r�N)r6r�r0r�r�rLr�)rbr��want�have�to_read�currents&&    rr��BufferedReader._peek_unlockedbs����1�&�&�'���4�>�>�"�T�^�^�3���;�$�!�)��&�&��-�G��h�h�m�m�G�,�G��!%�������!@�7�!J���!"����~�~�d�n�n�o�.�.rc
�b�VPR4V^8d
VPpV^8XdR#VP;_uu_4VP^4VP	\V\
VP4VP,
44uuRRR4# +'giR#;i)z<Reads up to size bytes, with at most one read() system call.zread of closed filerN)	rxr�r�r�r�r6r0r�r�r�s&&rr��BufferedReader.read1ms}��	
���/�0��!�8��#�#�D��1�9��
�_�_�_�����"��&�&��D�#�d�n�n�-����>�?�A��_�_�_�s
�AB�B.	c��VPR4\V\4'g\V4pVP^8Xd^#VP	R4p^pVP
;_uu_4V\
V48Ed5\\
VP4VP,
\
V44pV'deVPVPVPV,WW4,%V;PV,
un	W4,
pV\
V48XdM�\
V4V,
VP8�d0VPPWR4pV'gMHW5,
pM(V'd	V'gVP^4'gMV'gEK9V'gEKDRRR4V# +'giT#;i)z2Read data into *buf* with at most one system call.zreadinto of closed filerN)rxr(rrgrr�r0r6r�r�r�rLr�r�)rbrMr��writtenr�r�s&&&   rr��BufferedReader._readinto�sU��	
���3�4�
�#�z�*�*��S�/�C��:�:��?���h�h�s�m����
�_�_�_��C��H�$��C����/�$�.�.�@�#�c�(�K������t�~�~�d�n�n�U�6J�K���
�.��N�N�e�+�N��$�G��#�c�(�*���s�8�g�%��(8�(8�8����)�)�#�h�-�8�A����L�G� �G��.�.�q�1�1���5�W�W��;�>��?�_�>��s+�-DF=�<F=�F=�F=�'F=�2F=�=G	c��\\PV4\VP4,
VP
,^4#r�)r5rror0r�r�rns&rro�BufferedReader.tell�s3���#�(�(��.��T�^�^�1D�D�t�~�~�U�WX�Y�Yrc�n�V\9d\R4hVPR4VP;_uu_4V^8Xd.V\	VP
4VP,
,p\PWV4pVP4VuuRRR4# +'giR#;i)�invalid whence valuezseek of closed fileN)
�valid_seek_flagsr1rxr�r0r�r�rrgr�ris&&&rrg�BufferedReader.seek�s���)�)��3�4�4����/�0�
�_�_�_���{��s�4�>�>�*�T�^�^�;�;��"�'�'��6�:�C�� � �"���_�_�_�s�AB#�#B4	)r�r�r�r�r�r�r�)rXrYrZr[r�r8rr�r�r�r�r�r�r�r�rorgr\r�r�s@rr;r;�sO�����)<�!�#��-�2.�h	-�	/�A�&.�`Z�	�	rr;c�ha�]tRtRtoRt]3RltRtRtRRlt	Rt
R	tR
tRRlt
RtR
tVtR#)r:i�z�A buffer for a writeable sequential RawIO object.

The constructor creates a BufferedWriter for the given writeable raw
stream. If the buffer_size is not given, it defaults to
DEFAULT_BUFFER_SIZE.
c���VP4'g\R4h\PW4V^8:d\	R4hW n\
4Vn\4Vn	R#)z "raw" argument must be writable.r�N)
r�rrrr1r�r��
_write_bufr��_write_lockr�s&&&rr�BufferedWriter.__init__�sT���|�|�~�~��<�=�=��!�!�$�,��!���2�3�3�&��#�+����6��rc�6�VPP4#r�)rLr�rns&rr��BufferedWriter.writable�r'rc��\V\4'd\R4hVP;_uu_4VP'd\R4h\
VP4VP8�dVP4\
VP4pVPPV4\
VP4V,
p\
VP4VP8�dVP4VuuRRR4# \d�p\
TP4TP8�dn\
TP4TP,
pY5,pTPRTPTn\TPTPT4hRp?L�Rp?ii;i +'giR#;ire)r(r,r.r�r�r1r0r�r��_flush_unlocked�extend�BlockingIOError�errno�strerror)rbr$�beforer��e�overages&&    rr��BufferedWriter.write�s[���a�����>�?�?�
�
�
�
��{�{�{� �!7�8�8��4�?�?�#�d�&6�&6�6��$�$�&�����)�F��O�O�"�"�1�%��$�/�/�*�V�3�G��4�?�?�#�d�&6�&6�6�	L��(�(�*��/�
��'�L��4�?�?�+�d�.>�.>�>�#&�d�o�o�"6��9I�9I�"I���*��*.�/�/�:K�4�;K�;K�*L���-�a�g�g�q�z�z�7�K�K�
?��L���
�
�s7�CF>�9D�	F>�F;� BF6�1F>�6F;�;F>�>G	Nc��VP;_uu_4VP4VfVPP4pVPP	V4uuRRR4# +'giR#;ir�)r�r�rLrorrrss&&rrr�BufferedWriter.truncate�sO��
�
�
�
�� � �"��{��h�h�m�m�o���8�8�$�$�S�)�	�
�
�
�s�A	A)�)A:	c��VP;_uu_4VP4RRR4R# +'giR#;ir�)r�r�rns&rry�BufferedWriter.flush�s)��
�
�
�
�� � �"��
�
�
�s	�0�A	c��VP'd\R4hVP'd�VPP	VP4pTf\\PR^4hT\TP48�gT^8d\R4hTPRT1K�R# \
d
\
R4hi;i)rzHself.raw should implement RawIOBase: it should not raise BlockingIOErrorNz)write could not complete without blockingz*write() returned incorrect number of bytes)r�r1r�rLr�r��RuntimeErrorr��EAGAINr0r�rbr�s& rr��BufferedWriter._flush_unlocked�s����;�;�;��3�4�4��o�o�o�
G��H�H�N�N�4�?�?�3���y�%��L�L�?��D�D��3�t���'�'�1�q�5��J�K�K�������#���#�
G�"�$F�G�G�
G�s�%B4�4Cc�`�\PV4\VP4,#r�)rror0r�rns&rro�BufferedWriter.tells!���$�$�T�*�S����-A�A�Arc���V\9d\R4hVP;_uu_4VP4\PWV4uuRRR4# +'giR#;i)r�N)r�r1r�r�rrgris&&&rrg�BufferedWriter.seeksN���)�)��3�4�4�
�
�
�
�� � �"�#�(�(��F�;��
�
�
�s�&A�A-	c	��VP;_uu_4VPeVP'dRRR4R#RRR4VP4VP;_uu_4VPP	4RRR4R# +'giLZ;i +'giR#;i TP;_uu_4TPP	4RRR4i +'gii;i;ir�)r�rLr�ryr>rns&rr>�BufferedWriter.closes���
�
�
�
��x�x��4�;�;�;���
�#.��	!��J�J�L��!�!�!������ �"�!��
��"�!�!���!�!�!������ �"�!�!�!�s@� B�B�B;�/B'�B$	�'B8	�;D�C4	�+	D�4D
�?D)r�r�r�r�r�)rXrYrZr[r�r8rr�r�rrryr�rorgr>r\r�r�s@rr:r:�sB�����)<�	"�#��8*�#�$�"B�<�
!�
!rr:c�a�]tRtRtoRt]3RltRRltRtRt	RRlt
RRltR	tR
t
RtRtR
tRt]R4tRtVtR#)�BufferedRWPairi(awA buffered reader and writer object together.

A buffered reader object and buffered writer object put together to
form a sequential IO object that can read and write. This is typically
used with a socket or two-way pipe.

reader and writer are RawIOBase objects that are readable and
writeable respectively. If the buffer_size is omitted it defaults to
DEFAULT_BUFFER_SIZE.
c���VP4'g\R4hVP4'g\R4h\W4Vn\W#4VnR#)z5Constructor.

The arguments are two RawIO instances.
z#"reader" argument must be readable.z#"writer" argument must be writable.N)r�rr�r;�readerr:�writer)rbr�r�r�s&&&&rr�BufferedRWPair.__init__8sN��
��� � ��?�@�@���� � ��?�@�@�$�V�9���$�V�9��rc�D�VfRpVPPV4#�Nr')r�r�r�s&&rr��BufferedRWPair.readFs!���<��D��{�{����%�%rc�8�VPPV4#r�)r�r�r�s&&rr��BufferedRWPair.readintoKs���{�{�#�#�A�&�&rc�8�VPPV4#r�)r�r�r�s&&rr��BufferedRWPair.writeNs���{�{� � ��#�#rc�8�VPPV4#r�)r�r�r�s&&rr��BufferedRWPair.peekQs���{�{����%�%rc�8�VPPV4#r�)r�r�r�s&&rr��BufferedRWPair.read1Ts���{�{� � ��&�&rc�8�VPPV4#r�)r�rr�s&&rr�BufferedRWPair.readinto1Ws���{�{�$�$�Q�'�'rc�6�VPP4#r�)r�r�rns&rr��BufferedRWPair.readableZ����{�{�#�#�%�%rc�6�VPP4#r�)r�r�rns&rr��BufferedRWPair.writable]r�rc�6�VPP4#r�)r�ryrns&rry�BufferedRWPair.flush`s���{�{� � �"�"rc��VPP4VPP4R# TPP4i;ir�)r�r>r�rns&rr>�BufferedRWPair.closecs8��	 ��K�K�����K�K�����D�K�K����s	�8�Ac�z�VPP4;'gVPP4#r�)r�r�r�rns&rr��BufferedRWPair.isattyis*���{�{�!�!�#�;�;�t�{�{�'9�'9�';�;rc�.�VPP#r�)r�r�rns&rr��BufferedRWPair.closedl����{�{�!�!�!r)r�r�Nr�r�)rXrYrZr[r�r8rr�r�r�r�r�rr�r�ryr>r�r�r�r\r�r�s@rr�r�(s`����	�4G�:�&�
'�$�&�'�(�&�&�#� �<��"��"rr�c�za�]tRtRtoRt]3RltRRltRtRRlt	RRlt
R	tRR
ltRRlt
RtR
tRtVtR#)r9iqz�A buffered interface to random access streams.

The constructor creates a reader and writer for a seekable stream,
raw, given in the first argument. If the buffer_size is omitted it
defaults to DEFAULT_BUFFER_SIZE.
c�~�VP4\PWV4\PWV4R#r�)r�r;rr:r�s&&&rr�BufferedRandom.__init__zs.����������;�7�����;�7rc�0�V\9d\R4hVP4VP'd^VP;_uu_4VP
P
VP\VP4,
^4RRR4VP
P
W4pVP;_uu_4VP4RRR4V^8d\R4hV# +'giLl;i +'giL7;i)r�Nz seek() returned invalid position)r�r1ryr�r�rLrgr�r0r�rris&&&rrg�BufferedRandom.seeks����)�)��3�4�4��
�
���>�>�>��������
�
�d�n�n�s�4�>�>�/B�B�A�F�!��h�h�m�m�C�(��
�_�_�_�� � �"����7��<�=�=��
�!���
�_�s�
AC2�D�2D	�D	c�z�VP'd\PV4#\PV4#r�)r�r:ror;rns&rro�BufferedRandom.tell�s-���?�?�?�!�&�&�t�,�,�!�&�&�t�,�,rNc�T�VfVP4p\PW4#r�)ror:rrrss&&rrr�BufferedRandom.truncate�s#���;��)�)�+�C��&�&�t�1�1rc�X�VfRpVP4\PW4#r�)ryr;r�r�s&&rr��BufferedRandom.read�s&���<��D��
�
���"�"�4�.�.rc�L�VP4\PW4#r�)ryr;r�r�s&&rr��BufferedRandom.readinto�s���
�
���&�&�t�/�/rc�L�VP4\PW4#r�)ryr;r�r�s&&rr��BufferedRandom.peek�s���
�
���"�"�4�.�.rc�L�VP4\PW4#r�)ryr;r�r�s&&rr��BufferedRandom.read1�s���
�
���#�#�D�/�/rc�L�VP4\PW4#r�)ryr;rr�s&&rr�BufferedRandom.readinto1�s���
�
���'�'��0�0rc�P�VP'dnVP;_uu_4VPPVP\VP4,
^4VP
4RRR4\PW4# +'giL%;i�r�N)	r�r�rLrgr�r0r�r:r�r�s&&rr��BufferedRandom.write�sd���>�>�>��������
�
�d�n�n�s�4�>�>�/B�B�A�F��$�$�&�!��#�#�D�,�,�!��s�AB�B%	rWr�r�r�)rXrYrZr[r�r8rrgrorrr�r�r�r�rr�r\r�r�s@rr9r9qsF�����)<�8�
�"-�2�/�0�/�0�1�-�-rr9c�h�VR8�dV^,	pM	RV,pV\8d\pW,#)��)r8)�
bytes_read�addends& r�_new_buffersizer�s4���E���q����z�!��
�#�#�$����rc�aa�]tRtRtoRtRtRtRtRtRt	Rt
RRltRtRt
Rt]R	4tR
tRRltRRltR
tRtRt]3RltRtRRltV3RltRtRtRtRtRt Rt!]R4t"]R4t#Rt$Vt%V;t&#) r3i�FNTc�
�VP^8�dBRVnVP'd!\P!VP4RVn\V\4'd\R4h\V\4'dS\V\4'd(^RI
pVPR\^R7\V4pTpV^8d\R4hMRp\V\4'g\RV:24h\V4\R48:g\RV:24h\!RV44^8wgVP#R	4^8�d\R
4hRV9d5RVnRVn\P(\P*,pMR
V9dRVn^pMnRV9d.RVn\P*\P.,pM:RV9d4RVnRVn\P2\P*,pR	V9dRVnRVnVP,'d+VP&'dX\P4,pMAVP,'dX\P6,pMX\P8,pV\;\R^4,p\;\R^4;'g\;\R^4pWx,pRp	V^8d�V'g\R4hVf\P<!WR4pM>V!W4p\V\4'g\R4hV^8d\RV24hTp	V'g\P>!VR4W0n\P@!V4Vn\BPD!VPPF4'd>\I\JPL\PN!\JPL4V4h\R'd\SV\PT4Wn+VP0'd\PX!V^\Z4MW`nR# RTni;i \PdL~i;i \\d+p
T
PJ\JP^8wdhRp
?
LURp
?
ii;i RTnT	e\P!T	4h;i)aOpen a file.  The mode can be 'r' (default), 'w', 'x' or 'a' for reading,
writing, exclusive creation or appending.  The file will be created if it
doesn't exist when opened for writing or appending; it will be truncated
when opened for writing.  A FileExistsError will be raised if it already
exists when opened for creating. Opening a file for creating implies
writing so this mode behaves in a similar way to 'w'. Add a '+' to the mode
to allow simultaneous reading and writing. A custom opener can be used by
passing a callable as *opener*. The underlying file descriptor for the file
object is then obtained by calling opener with (*name*, *flags*).
*opener* must return an open file descriptor (passing os.open as *opener*
results in functionality similar to passing None).
Nz$integer argument expected, got floatz!bool is used as a file descriptor)rznegative file descriptorzinvalid mode: zxrwab+c3�*"�TF	qR9x�K	R#5i)�rwaxNrW)�.0�cs& r�	<genexpr>�"FileIO.__init__.<locals>.<genexpr>�s���)�D�q�F�{�D�s�r"zKMust have exactly one of create/read/write/append mode and at most one plusrTrr r!�O_BINARY�O_NOINHERIT�	O_CLOEXECz'Cannot use closefd=False with file namei�zexpected integer from openerzopener returned Fr')0�_fd�_stat_atopen�_closefdr*r>r(�floatr.r)�boolrrr2r1r,r/�sum�count�_created�	_writable�O_EXCL�O_CREAT�	_readable�O_TRUNC�
_appending�O_APPEND�O_RDWR�O_RDONLY�O_WRONLYr�rP�set_inheritable�fstat�stat�S_ISDIR�st_mode�IsADirectoryErrorr��EISDIRr�r��_setmoderrc�lseekrr�ESPIPE)rbr?r=rCr&r�fdr�noinherit_flag�owned_fdr�s&&&&&      rr�FileIO.__init__�s����8�8�q�=� $�D��
��=�=�=��H�H�T�X�X�&�����d�E�"�"��B�C�C��d�C� � ��$��%�%���
�
�A�,���<��4�y���B��A�v� �!;�<�<���B��$��$�$��$�8�9�9��4�y�C��M�)��4�9�:�:��)�D�)�)�Q�.�$�*�*�S�/�A�2E��9�:�
:��$�;� �D�M�!�D�N��I�I��
�
�*�E�
�D�[�!�D�N��E�
�D�[�!�D�N��J�J����+�E�
�D�[�!�D�N�"�D�O��K�K�"�*�*�,�E��$�;�!�D�N�!�D�N��>�>�>�d�n�n�n��R�Y�Y��E�
�^�^�^��R�[�[� �E��R�[�[� �E�
���Z��+�+��!�"�m�Q�7�6�6�!�"�k�1�5�	�
�����.	��A�v��$�%N�O�O��>�����e�4�B���,�B�%�b�#�.�.�'�(F�G�G��A�v�(�+;�B�4�)@�A�A���%��&�&�r�5�1�#�M� "�����D��
��<�<�� 1� 1� 9� 9�:�:�+�E�L�L�,.�K�K����,E�t�M�M�;��x���R�[�[�)��I�������H�H�R��H�-�����Q����`"�
��
�� ���w�w�%�,�,�.��/����	� $�D���#�����"��sx�R� R�<S�A.S�:8S�3A-R� S�-2S� R#�	R�R �S�R � S�#S�. S�S�S�S�$S?c��VP^8�dLVP'd8VP'g$^RIpVP	RV:2\
^VR7R#R#R#R#)r�Nzunclosed file )rr@)rrr�rr�ResourceWarning)rbr@rs&& rr�FileIO._dealloc_warnMsJ���8�8�q�=�T�]�]�]�4�;�;�;���M�M�N�6�*�5��%&�t�
�
5�4?�]�=rc�J�\RVPP:R24hr2r3rns&rr4�FileIO.__getstate__Sr6rc	�x�VPP:RVPP:2pVP'd
RV,#VPpRV:RV:RVP
:RVP:R2	# \d.RYPTP
TP3,u#i;i)r`z
<%s [closed]>�<z name=z mode=z	 closefd=�>z<%s fd=%d mode=%r closefd=%r>)	rarYrZr�rcr=rr�r)rb�
class_namercs&  rr;�FileIO.__repr__Vs��� $��� 9� 9� $��� ;� ;�=�
��;�;�;�"�Z�/�/�	B��9�9�D� ��t�y�y�$�-�-�A�
B��	�	F�3����4�9�9�d�m�m�D�E�
F�	F�s�B�5B9�8B9c�x�VPf\#\VPR^4pV'g\#V#)N�
st_blksize)rr8r�)rb�blksizes& rr7�FileIO._blksizeds6�����$�&�&��$�+�+�\�1�=���&�&��rc�@�VP'g\R4hR#)zFile not open for readingN)r#rVrns&rr��FileIO._checkReadableo����~�~�~�&�'B�C�C�rc�@�VP'g\R4hR#)zFile not open for writingN)r rVr�s&&rr��FileIO._checkWritablesrHrc���VP4VP4VeV^8dVP4#\P!VP
V4# \dR#i;i)avRead at most size bytes, returned as bytes.

If size is less than 0, read all bytes in the file making
multiple read calls. See ``FileIO.readall``.

Attempts to make only one system call, retrying only per
PEP 475 (EINTR). This means less data may be returned than
requested.

In non-blocking mode, returns None if no data is available.
Return an empty bytes object at EOF.
N)rxr�r�r*r�rr�r�s&&rr��FileIO.readws_��	
���������<�4�!�8��<�<�>�!�	��7�7�4�8�8�T�*�*���	��	�s� A�A-�,A-c��VP4VP4VPeVPP^8:d\pM�VPP^,pVPPR8�dg\
P!VP^\4pVPPV8�d%VPPV,
^,p\V4p^p\
P!VP\V4VR4;p'd7WE,
pV\V48�gKOVP\V44Kk\V4V,
^8�gQR4hVPV4\#V4# \dL�i;i \ dT'gR#Lci;i)a[Read all data from the file, returned as bytes.

Reads until either there is an error or read() returns size 0
(indicates EOF). If the file is already at EOF, returns an
empty bytes object.

In non-blocking mode, returns as much data as could be read
before EAGAIN. If no data is available (EAGAIN is returned
before bytes are read) returns None.
NrzBos.readinto buffer size 0 will result in erroneous EOF / returns 0)rxr�r�st_sizer8r*r2rrrr�r�rr0rhrr�r-)rb�bufsizerjrMr
r�s&     rr��FileIO.readall�s���	
�����������$��(9�(9�(A�(A�Q�(F�)�G��'�'�/�/�!�3�G�� � �(�(�5�0���(�(�4�8�8�Q��9�C��(�(�0�0�C�7�"&�"3�"3�";�";�c�"A�A�"E���7�#���
�	��{�{�4�8�8�Z��-?�
��-L�M�M�!�M���
���V��,��M�M�/�*�"=�>�N��6�{�Z�'�1�,�	Q�P�	Q�,��
�
�j�!��V�}���#������	����	�s,�
A%F#�=A
F4�F4�#F1�0F1�4G
�G
c��VP4VP4\P!VPV4# \
dR#i;i)zSame as RawIOBase.readinto().N)rxr�r*r�rr��rbrOs&&rr��FileIO.readinto�sF����������	��;�;�t�x�x��0�0���	��	��� A�A�Ac��VP4VP4\P!VPV4# \
dR#i;i)z�Write bytes b to file, return number written.

Only makes one system call, so not all of the data may be written.
The number of bytes actually written is returned.  In non-blocking mode,
returns None if the write would block.
N)rxr�r*r�rr�r�s&&rr��FileIO.write�sH��	
��������	��8�8�D�H�H�a�(�(���	��	�rTc��\V\4'd\R4hVP4\P
!VPW4#)a�Move to new file position.

Argument offset is a byte count.  Optional argument whence defaults to
SEEK_SET or 0 (offset from start of file, offset should be >= 0); other values
are SEEK_CUR or 1 (move relative to current position, positive or negative),
and SEEK_END or 2 (move relative to end of file, usually negative, although
many platforms allow seeking beyond the end of a file).

Note that not all file objects are seekable.
zan integer is required)r(rr.rxr*r2rris&&&rrg�FileIO.seek�s>���c�5�!�!��4�5�5������x�x����#�.�.rc�n�VP4\P!VP^\4#)zQtell() -> int.  Current file position.

Can raise OSError for non seekable files.)rxr*r2rrrns&rro�FileIO.tell�s'��	
�����x�x����!�X�.�.rc��VP4VP4VfVP4p\P!VP
V4RVnV#)z�Truncate the file to at most size bytes.

Size defaults to the current file position, as returned by tell().
The current file position is changed to the value of size.
N)rxr�ror*�	ftruncaterrr�s&&rrr�FileIO.truncate�sK��	
���������<��9�9�;�D�
���T�X�X�t�$� ����rc�<�VP'g\RVnVP'd2VP^8�d!\P
!VP4\SV`4R#R# \ST`4i;i)zClose the file.

A closed file cannot be used for further I/O operations.  close() may be
called more than once without error.
N)r�rrrr*r>r[r\s&�rr>�FileIO.close�sY����{�{�{� $�D��
 ��=�=�=�T�X�X��]��H�H�T�X�X�&���
��
����
��s�A1�1A1�1Bc���VP4VPf%VP4RVnVP#VP# \dRTnTP#i;i)z$True if file supports random-access.TF)rx�	_seekablerorrns&rr��FileIO.seekablesf�������>�>�!�
&��	�	��"&����~�~��t�~�~���	�
'�!&����~�~��	
'�s�A�A/�.A/c�:�VP4VP#)z'True if file was opened in a read mode.)rxr#rns&rr��FileIO.readable��������~�~�rc�:�VP4VP#)z(True if file was opened in a write mode.)rxr rns&rr��FileIO.writablererc�:�VP4VP#)z3Return the underlying file descriptor (an integer).)rxrrns&rr��
FileIO.filenos�������x�x�rc�b�VP4\P!VP4#)z.True if the file is connected to a TTY device.)rxr*r�rrns&rr��
FileIO.isatty s!�������y�y����"�"rc���VPe3\P!VPP4'gR#\P
!VP4#)a�Checks whether the file is a TTY using an open-only optimization.

TTYs are always character devices. If the interpreter knows a file is
not a character device when it would call ``isatty``, can skip that
call. Inside ``open()``  there is a fresh stat result that contains that
information. Use the stat result to skip a system call. Outside of that
context TOCTOU issues (the fd could be arbitrarily modified by
surrounding code).
F)rr,�S_ISCHRr.r*r�rrns&rr4�FileIO._isatty_open_only%sA��
���)��L�L��!2�!2�!:�!:�;�;���y�y����"�"rc��VP#)z6True if the file descriptor will be closed by close().)rrns&rrC�FileIO.closefd4s���}�}�rc��VP'dVP'dR#R#VP'dVP'dR#R#VP'dVP'dR#R#R#)zString giving the file modezxb+�xbzab+�abzrb+rR�wb)rr#r%r rns&rr=�FileIO.mode9sO���=�=�=��~�~�~���
�_�_�_��~�~�~���
�^�^�^��~�~�~���r)	r%rrrr#rarr rcr')rTNr�)'rXrYrZr[rrr#r r%rarrrr4r;r�r7r�r�r�r�r�r�rrgrorrr>r�r�r�r�r�r4rCr=r\r�r|r}s@@rr3r3�s�����
�C��H��I��I��J��I��H�|�|5�M�B�����D�D��,,�\�� (�/� /�� �
��
�
�
#�

#���������rr3c�za�]tRtRtoRtR
RltRtRRltRtRt	]
R	4t]
R
4t]
R4t
RtVtR#)�
TextIOBaseiOzbBase class for text I/O.

This class provides a character and line based interface to stream
I/O.
c�(�VPR4R#)z�Read at most size characters from stream, where size is an int.

Read from underlying buffer until we have size characters or we hit EOF.
If size is negative or omitted, read until EOF.

Returns a string.
r�Nrhr�s&&rr��TextIOBase.readWs��	
���&�!rc�(�VPR4R#)z.Write string s to stream and returning an int.r�Nrh)rb�ss&&rr��TextIOBase.writeas�����'�"rNc�(�VPR4R#)z*Truncate size to pos, where pos is an int.rrNrhrss&&rrr�TextIOBase.truncatees�����*�%rc�(�VPR4R#)zORead until newline or EOF.

Returns an empty string if EOF is hit immediately.
r�Nrhrns&rr��TextIOBase.readlineis��
	
���*�%rc�(�VPR4R#)z�
Separate the underlying buffer from the TextIOBase and return it.

After the underlying buffer has been detached, the TextIO is in an
unusable state.
r
Nrhrns&rr
�TextIOBase.detachprrc��R#)zSubclasses should override.NrWrns&rr�TextIOBase.encodingys��rc��R#)zzLine endings translated so far.

Only line endings translated during reading are considered.

Subclasses should override.
NrWrns&r�newlines�TextIOBase.newlines~s��rc��R#)zEError setting of the decoder or encoder.

Subclasses should override.NrWrns&rrA�TextIOBase.errors�s��
rrWr�r�)rXrYrZr[r�r�r�rrr�r
r�rr�rAr\r�r�s@rrwrwOs_�����"�#�&�&�$������������rrwc�fa�]tRtRtoRtRRltRRltRtRtRt	^t
^t^t]
R4tR	tVtR
#)
�IncrementalNewlineDecoderi�aCodec used when reading a file in universal newlines mode.  It wraps
another incremental decoder, translating \r\n and \r into \n.  It also
records the types of newlines encountered.  When used with
translate=False, it ensures that the newline sequence is returned in
one piece.
c�z�\PPWR7W nWn^VnRVnR#))rAFN)�codecs�IncrementalDecoderr�	translate�decoder�seennl�	pendingcr)rbr�r�rAs&&&&rr�"IncrementalNewlineDecoder.__init__�s1���!�!�*�*�4�*�?�"���������rc���VPfTpMVPPWR7pVP'd!V'g	V'dRV,pRVnVPR4'dV'g
VRRpRVnVP	R4pVP	R4V,
pVP	R4V,
pT;P
T;'d
VPT;'d
VP,T;'d
VP,,unVP'd5V'dVPRR4pV'dVPRR4pV#)N��final�
FT�
�
r')r��decoder�r�rr��_LF�_CR�_CRLFr��replace)rb�inputr��output�crlf�cr�lfs&&&    rr�� IncrementalNewlineDecoder.decode�s���<�<���F��\�\�(�(��(�<�F��>�>�>�v���F�]�F�"�D�N��?�?�4� � ���C�R�[�F�!�D�N��|�|�F�#��
�\�\�$�
�$�
&��
�\�\�$�
�$�
&��������t�x�x�B�O�O�4�8�8�<��*�*��
�
�,�	,���>�>�>�������5�������d�3���
rc��VPfRp^pMVPP4wrV^,pVP'd
V^,pW3#)Nr)r��getstater�)rbrM�flags&  rr��"IncrementalNewlineDecoder.getstate�sM���<�<���C��D����-�-�/�I�C���
���>�>�>��A�I�D��y�rc��Vwr#\V^,4VnVPe&VPPW#^,	34R#R#r)rr�r��setstate)rb�staterMr�s&&  rr��"IncrementalNewlineDecoder.setstate�s@���	���d�Q�h�����<�<�#��L�L�!�!�3��	�"2�3�$rc�v�^VnRVnVPeVPP4R#R#)r�FN)r�r�r��resetrns&rr��IncrementalNewlineDecoder.reset�s/���������<�<�#��L�L��� �$rc�(�RVP,#)N)Nr�r�)r�r�r�)r�r�)r�r�)r�r�r�)r�rns&rr��"IncrementalNewlineDecoder.newlines�s�������	r)r�r�r�r�N)�strict)F)rXrYrZr[r�rr�r�r�r�r�r�r�r�r�r\r�r�s@rr�r��sF�������>	�4�!��C�
�C�
�E�
�	��	rr�c
�a�]tRtRtoRtRtRtR1RltRtR1Rlt	Rt
]R	4t]R
4t
]R4t]R4t]R
4tRRRRR]RRRR/RltRtRtRtRtRt]R4t]R4tRtRtRtRtRtR tR2R!lt R"t!R#t"R$t#R3R%lt$R&t%R't&R2R(lt'R)t(R4R*lt)R2R+lt*R,t+R2R-lt,]R.4t-R/t.R0t/Vt0R#)5r<i�a�Character and line based layer over a BufferedIOBase object, buffer.

encoding gives the name of the encoding that the stream will be
decoded or encoded with. It defaults to locale.getencoding().

errors determines the strictness of encoding and decoding (see the
codecs.register) and defaults to "strict".

newline can be None, '', '\n', '\r', or '\r\n'.  It controls the
handling of line endings. If it is None, universal newlines is
enabled.  With this enabled, on input, the lines endings '\n', '\r',
or '\r\n' are translated to '\n' before being returned to the
caller. Conversely, on output, '\n' is translated to the system
default line separator, os.linesep. If newline is any other of its
legal values, that newline becomes the newline when the file is read
and it is returned untranslated. On output, '\n' is converted to the
newline.

If line_buffering is True, a call to flush is implied when a call to
write contains a newline character.
iNc��VPV4\V4pVR8XdVP4p\V\4'g\RV,4h\P!V4P'gRp\Wr,4hVfRpMJ\V\4'g\RV,4h\'d\P!V4WnRVn
^VnRVnVP P#4;VnVn\)VP R4VnVP-W#VWV4R#)rrz%r is not a text encodingNr�rr%r�)�_check_newliner�_get_locale_encodingr(r,r1r��lookup�_is_text_encoding�LookupError�
_CHECK_ERRORS�lookup_errorrJ�_decoded_chars�_decoded_chars_used�	_snapshotrOr�ra�_tellingr��
_has_read1�
_configure)rbrOrrArBrN�
write_throughr�s&&&&&&& rr�TextIOWrapper.__init__s�����G�$� ��*���x���0�0�2�H��(�C�(�(��3�h�>�?�?��}�}�X�&�8�8�8�-�C��c�n�-�-��>��F��f�c�*�*� �!5��!>�?�?��}��#�#�F�+��� ���#$�� ����)-���)=�)=�)?�?�����!�$�+�+�w�7�������'�&�	7rc��Ve/\V\4'g\R\V4:24hVR9d\	RV:24hR#)Nzillegal newline type: zillegal newline value: )Nr%r�r�r�)r(r,r.�typer1)rbrBs&&rr��TextIOWrapper._check_newline(sB����z�'�3�'?�'?��$�w�-�I�J�J��8�8��G�E�F�F�9rc���WnW nRVnRVnRVnV'*VnVRJVnW0nVR8gVnT;'g\PVnW@nWPn
VP'd^VP4'dFVP P#4pV^8wd#VP%4P'^4R#R#R#R# \(dR#i;i)N�r%)�	_encoding�_errors�_encoder�_decoder�	_b2cratio�_readuniversal�_readtranslate�_readnl�_writetranslater*�linesep�_writenl�_line_buffering�_write_throughrar�rOro�_get_encoderr�r�)rbrrArBrNr��positions&&&&&& rr��TextIOWrapper._configure.s���!������
���
����")�k���%��o�����&�"�}����-�-�2�:�:��
�-��+���>�>�>�d�m�m�o�o��{�{�'�'�)�H��1�}���%�%�'�0�0��3��.�>��
#����s�<C#�#C2�1C2c��RPVPPVPP4pVPpVRPV4,
pVPpVRPV4,
pVRPVP4,# \
dLTi;i \
dL@i;i)z<{}.{}z name={0!r}z mode={0!r}z encoding={0!r}>)r8rarYrZrcr�r=r)rbrMrcr=s&   rr;�TextIOWrapper.__repr__Rs���������!:�!:�!%���!<�!<�>��	1��9�9�D�
�m�*�*�4�0�0�F�	1��9�9�D�
�m�*�*�4�0�0�F��*�1�1�$�-�-�@�@�@���	��	���	��	�s#�B'�!B8�'B5�4B5�8C�Cc��VP#r�)r�rns&rr�TextIOWrapper.encodingcs���~�~�rc��VP#r�)r�rns&rrA�TextIOWrapper.errorsg����|�|�rc��VP#r�)r�rns&rrN�TextIOWrapper.line_bufferingks���#�#�#rc��VP#r�)r�rns&rr��TextIOWrapper.write_throughos���"�"�"rc��VP#r�)rJrns&rrO�TextIOWrapper.buffersr�rrrArBrNr�c�P�VPeVfVfV\Jd\R4hVfVfVPpM+RpM(\	V\
4'g\
RV,4hVfVPpM?\	V\
4'g\
RV,4hVR8XdVP4pV\Jd
VPpVPV4Vf
VPpVf
VPpVP4VPWVWE4R#)zPReconfigure the text stream with new parameters.

This also flushes the stream.
NzPIt is not possible to set the encoding or newline of stream after the first readr�rrr)r��EllipsisrVr�r(r,r.r�r�r�r�rNr�ryr�)rbrrArBrNr�s&$$$$$r�reconfigure�TextIOWrapper.reconfigurews��
�M�M�%��)�V�-?��x�/�&�'�(�
(��>�������!���F�C�(�(��0�6�9�:�:����~�~�H��h��,�,�� 6�� A�B�B��8�#��4�4�6���h���l�l�G����G�$��!�!�0�0�N�� � �.�.�M��
�
������'�&�	7rc�T�VP'd\R4hVP#)r�)r�r1rarns&rr��TextIOWrapper.seekable�s!���;�;�;��<�=�=��~�~�rc�6�VPP4#r�)rOr�rns&rr��TextIOWrapper.readable�r�rc�6�VPP4#r�)rOr�rns&rr��TextIOWrapper.writable�r�rc�\�VPP4VPVnR#r�)rOryrar�rns&rry�TextIOWrapper.flush�s������������
rc���VPeBVP'g.VP4VPP4R#R#R# TPP4i;ir�)rOr�ryr>rns&rr>�TextIOWrapper.close�sN���;�;�"�4�;�;�;�
$��
�
�����!�!�#�	,7�"�����!�!�#�r"c�.�VPP#r�)rOr�rns&rr��TextIOWrapper.closed�r�rc�.�VPP#r�)rOrcrns&rrc�TextIOWrapper.name�s���{�{���rc�6�VPP4#r�)rOr�rns&rr��TextIOWrapper.fileno�����{�{�!�!�#�#rc�6�VPP4#r�)rOr�rns&rr��TextIOWrapper.isatty�r�rc�\�VP'd\R4h\V\4'g'\	RVP
P,4h\V4pVP;'gVP;'dRV9pV'd@VP'd.VPR8wdVPRVP4pVP;'gVP4pVPV4pVPP!V4VP'd V'gRV9dVP#4VP$eVP'R4RVnVP('dVP(P+4V#)zWrite data, where s is a strrfzcan't write %s to text streamr�r�Nr%)r�r1r(r,r.rarXr0r�r�r�r�r�r��encoderOr�ryr��_set_decoded_charsr�r�)rbr{�length�haslf�encoderr$s&&    rr��TextIOWrapper.write�s5���;�;�;��3�4�4��!�S�!�!��;��K�K�0�0�1�2�
2��Q����%�%�=�=��)=�)=�L�L�4�1�9���T�)�)�)�d�m�m�t�.C��	�	�$��
�
�.�A��-�-�6�6�4�#4�#4�#6���N�N�1��������!������U�d�a�i��J�J�L��>�>�%��#�#�B�'�!�D�N��=�=�=��M�M���!��
rc��\P!VP4pV!VP4VnVP#r�)r��getincrementalencoderr�r�r�)rb�make_encoders& rr��TextIOWrapper._get_encoder�s0���3�3�D�N�N�C��$�T�\�\�2��
��}�}�rc���\P!VP4pV!VP4pVP'd\W P4pW nV#r�)r��getincrementaldecoderr�r�r�r�r�r�)rb�make_decoderr�s&  r�_get_decoder�TextIOWrapper._get_decoder�sJ���3�3�D�N�N�C���t�|�|�,������/��9L�9L�M�G��
��rc� �Wn^VnR#)zSet the _decoded_chars buffer.N)r�r�)rb�charss&&rr�� TextIOWrapper._set_decoded_chars�s��#��#$�� rc��VPpVfVPVRpMVPW"V,pV;P\V4,
unV#)z'Advance into the _decoded_chars buffer.N)r�r�r0)rbr��offsetrs&&  r�_get_decoded_chars� TextIOWrapper._get_decoded_chars�sR���)�)���9��'�'���0�E��'�'���z�:�E�� � �C��J�.� ��rc�P�^RIpVP4# \dR#i;i)r�Nr
)r�getencoding�ImportError)rbrs& rr��"TextIOWrapper._get_locale_encoding�s/��	(��
�%�%�'�'��	�	��	�s��%�%c�p�VPV8d\R4hV;PV,unR#)z!Rewind the _decoded_chars buffer.z"rewind decoded_chars out of boundsN)r��AssertionErrorr�s&&r�_rewind_decoded_chars�#TextIOWrapper._rewind_decoded_chars	s-���#�#�a�'� �!E�F�F�� � �A�%� rc�v�VPf\R4hVP'dVPP4wrVP'd'VP
P
VP4pM%VP
PVP4pV'*pVPPW44pVPV4V'd,\V4\VP4,Vn
MRVn
VP'dXXV,3VnV'*#)zA
Read and decode the next chunk of data from the BufferedReader.
z
no decoderr�)r�r1r�r�r�rOr��_CHUNK_SIZEr�r�r�r0r�r�r�)rb�
dec_buffer�	dec_flags�input_chunk�eof�
decoded_charss&     r�_read_chunk�TextIOWrapper._read_chunk	s����=�=� ��\�*�*��=�=�=�%)�M�M�$:�$:�$<�!�J�
�?�?�?��+�+�+�+�D�,<�,<�=�K��+�+�*�*�4�+;�+;�<�K��o���
�
�,�,�[�>�
����
�.�� ��-��D�4G�4G�0H�H�D�N� �D�N��=�=�=�(��k�)A�B�D�N��w�rc��W^@,,V^�,,V^�,,\V4R,,#)�@r	)r)rbr�r�
bytes_to_feed�need_eof�
chars_to_skips&&&&&&r�_pack_cookie�TextIOWrapper._pack_cookie6	s;���r�M�*�m�S�.@�A��s�"�$�&*�8�n�c�&9�:�	;rc��\VR4wr#\VR4wr$\VR4wr%\VR4wrgW4V\V4V3#)r�l)�divmodr)rb�bigint�restr�rr'r(r)s&&      r�_unpack_cookie�TextIOWrapper._unpack_cookie@	sO�����.��� ��u�-���$�T�5�1���"(��u�"5����M�4��>�=�P�Prc
��VP'g\R4hVP'g\R4hVP	4VP
P
4pVPpVeVPf VP'd\R4hV#VPwr4V\V4,pVPpV^8XdVPW4#VP4p\VP V,4p^pV\V48:gQhV^8�d�VP#RV34\VP%VRV44p	W�8:d<VP4wr�V
'gTpWY,pM>V\V
4,p^pKxWx,pV^,pK�^pVP#RV34W,pTp
V^8Xd#VPW�4VP#V4#^pRp^p\'V\V44FxpV^,
pV\VP%VVV^,44,
pVP4wppV'gVV8:dW�,
pVV,pT^^pr�VV8�gKxM9	V\VP%RRR74,
pRpVV8d\R4hVPW�W�V4VP#V4# TP#T4i;i)	�!underlying stream is not seekablez(telling position disabled by next() callNzpending decoded textrFTr�z'can't reconstruct logical file position)rarVr�rryrOror�r�r�rr0r�r*r�r)r�r�r��range)rbr�r�r�
next_inputr)�saved_state�
skip_bytes�	skip_backr�r$�d�	start_pos�start_flags�	bytes_fedr(�
chars_decoded�irs&                  rro�TextIOWrapper.tellG	s����~�~�~�&�'J�K�K��}�}�}��D�E�E��
�
���;�;�#�#�%���-�-���?�d�n�n�4��"�"�"�$�%;�<�<��O�!%����	��C�
�O�#���0�0�
��A���$�$�X�9�9��&�&�(��F	*��T�^�^�m�;�<�J��I���Z��0�0�0��q�.�� � �#�y�!1�2�����z�+�:�'>�?�@���%�"�+�+�-�D�A��$%�	�%�*�
���#�a�&�(�J� !�I��+�J� )�A�
�I��
�� � �#�y�!1�2�!�-�I�#�K���!��(�(��@�@
���[�)�5�I��H��M��:�s�:��7���Q��	���W�^�^�J�q��1��4E�%F�!G�G�
�(/�(8�(8�(:�%�
�I�!�m�}�&D��*�I�!�]�2�M�<E�q�!�M�� �M�1��8���W�^�^�C�t�^�%D�!E�E�
��� �=�0�!�"K�L�L��$�$��	�]�L�
���[�)��G���[�)�s�7C1K,�:BK,�
A
K,�,K?c��VP4VfVP4pVPPV4#r�)ryrorOrrrss&&rrr�TextIOWrapper.truncate�	s0���
�
���;��)�)�+�C��{�{�#�#�C�(�(rc�~�VPf\R4hVP4VPpRVnV#)Nzbuffer is already detached)rOr1ryrJrRs& rr
�TextIOWrapper.detach�	s6���;�;���9�:�:��
�
����������
rc�|a�V3RlpSP'd\R4hSP'g\R4hV\8Xd&V^8wd\R4h^pSP4pM�V\8Xd�V^8wd\R4hSP4SPP^V4pSPR4RSnSP'dSPP4V!V4V#V^8wd\RV:R24hV^8d\R	V:24hSP4SPV4wrVrxp	SPPV4SPR4RSnV^8Xd.SP'dSPP4MqSP'gV'g	V	'dPSP;'gSP4SnSPP!R
V34VR
3SnV	'dzSPP#V4p
SPSPP%W�44Wj3Sn\'SP(4V	8d\+R4hV	SnV!V4V#)c��<�SP;'gSP4pV^8wdVP^4R#VP4R# \dR#i;i)z9Reset the encoder (merely useful for proper BOM handling)N)r�r�r�r�r�)r�rrbs& �r�_reset_encoder�*TextIOWrapper.seek.<locals>._reset_encoder�	sV���	
$��-�-�>�>�4�+<�+<�+>��
�q�=��$�$�Q�'��M�M�O���
��
�s�A�A�A"�!A"rpr3z#can't do nonzero cur-relative seeksz#can't do nonzero end-relative seeksr%Nzunsupported whence (�)rlrz#can't restore logical file position)r�r1rarVrrorryrOrgr�r�r�r�r0rr�r�r�r0r�rr�)rb�cookierkrFr�r:rr'r(r)r sf&&        rrg�TextIOWrapper.seek�	s2���	$��;�;�;��2�3�3��~�~�~�&�'J�K�K��X����{�*�+P�Q�Q��F��Y�Y�[�F�
�x�
���{�*�+P�Q�Q��J�J�L��{�{�'�'��6�2�H��#�#�B�'�!�D�N��}�}�}��
�
�#�#�%��8�$��O��Q�;��&�B�C�C��A�:��F�D�E�E��
�
��

����'�	E�	�m�}�	
������#�����#�����Q�;�4�=�=�=��M�M���!�
�]�]�]�i�=� �M�M�@�@�T�->�->�-@�D�M��M�M�"�"�C��#3�4�'��-�D�N���+�+�*�*�=�9�K��#�#��
�
�$�$�[�;�
=�'�5�D�N��4�&�&�'�-�7��C�D�D�'4�D�$��v���
rc��VP4VfRpMVPpV!4pVP;'gVP4pV^8dzVPP4pVf\R4hVP4VPVRR7,pVPeVPR4RVnV#RpVPV4p\V4V8dGV'g?VP4'*pWPPV\V4,
4,
pKVV# \d\T:R24hi;i)Nr�zRead returned None.Tr�r%Fr')r�r�r�r.r�rrOr�r�rr�r�r�r0r#)rbr�r�r�r�rMr!s&&     rr��TextIOWrapper.read
s5�������<��D�
$�!�^�^�
�"�|���-�-�6�6�4�#4�#4�#6���!�8��K�K�$�$�&�E��}�%�&;�<�<��-�-�/��n�n�U�$�n�7�8�F��~�~�)��'�'��+�!%����M��C��,�,�T�2�F��f�+��$�S��*�*�,�,���1�1�$��V��2D�E�E���M��/"�
?��4�(�*<� =�>�>�
?�s�D;�;Ec��RVnVP4pV'gRVnVPVn\hV#)FN)r�r�r�rar�r�s& rr��TextIOWrapper.__next__#
s4����
��}�}����!�D�N� �N�N�D�M����rc���VP'd\R4hVfRpMVPpV!4pVP4p^pVP'gVP4R;rVVP'd1VPRV4pV^8�dV^,pEMr\V4pM�VP'd�VPRV4pVPRV4pVR8XdVR8Xd
\V4pM�V^,pEMVR8XdV^,pM�Wx8dV^,pM�Wx^,8XdV^,pM�V^,pM�VPVP4pV^8�dV\VP4,pM�V^8�d\V4V8�dTpMpVP4'dVP'gK*VP'dW0P4,
pEK�VPR4RVnV#V^8�d	Wa8�dTpVP#\V4V,
4VRV# \d\	T:R24hi;i)r_Nr�r�r�r%r')r�r1r�r�r.rr�rr�r�r0r�r�r#r�r�r�r)	rbr�r�r��startrj�endpos�nlpos�crposs	&&       rr��TextIOWrapper.readline,
s>���;�;�;��4�5�5��<��D�
$�!�^�^�
�"�|���&�&�(�����}�}�}����������"�"�"��i�i��e�,���!�8� �1�W�F����I�E��$�$�$�
�	�	�$��.���	�	�$��.���B�;���{� #�D�	��"'������b�[�"�Q�Y�F���]�"�Q�Y�F���a�i�'�"�Q�Y�F��#�Q�Y�F���i�i����-���!�8� �3�t�|�|�#4�4�F���q�y�S��Y�$�.�����"�"�$�$��&�&�&���"�"�"��/�/�1�1���'�'��+�!%������1�9����F�	
�"�"�3�t�9�v�#5�6��G�V�}���g"�
?��4�(�*<� =�>�>�
?�s�I�I)c�V�VP'dVPP#R#r�)r�r�rns&rr��TextIOWrapper.newlines�
s��)-����t�}�}�%�%�@�D�@rc�X�\VPRR4;p'dV!V4R#R#r>)r�rOr?s&& rr�TextIOWrapper._dealloc_warn�
s(��"�4�;�;���F�F�<�F��� �Gr)r�rJr�r�r�r�r�r�r�r�r�r�r�rar�r�r�r�r�)NNNFFr�)r�r�Fr�r�)1rXrYrZr[r�rrJrr�r�r;r�rrArNr�rOr�r�r�r�r�ryr>r�rcr�r�r�r�rr�rr�rr#r*r0rorrr
rgr�r�r�r�rr\r�r�s@rr<r<�s������,�K��G�
7�@G��HA�"���������$��$��#��#�����)7�!�)7�*.�)7�8@�)7�#'�)7�7;�)7�V�
&�&�'�$��"��"�� �� �$�$��0�
�%�
�(�&�(�T;�Q�a*�F)��I�V�@�[�z�A��A�!�!rr<c�laa�]tRtRtoRtR
V3RlltRtRt]R4t	]R4t
RtR	tVt
V;t#)�StringIOi�
z�Text I/O implementation using an in-memory buffer.

The initial_value argument sets the value of object.  The newline
argument is like the one of TextIOWrapper's constructor.
c�2<�\\V`\4RRVR7VfRVnVeh\V\4'g.\RP\V4P44hVPV4VP^4R#R#)r
�
surrogatepass)rrArBNFz*initial_value must be str or None, not {0})
r[rZrrHr�r(r,r.r8r�rXr�rg)rb�
initial_valuerBras&&&�rr�StringIO.__init__�
s����
�h��&�w�y�07�.=�/6�	'�	8��?�#(�D� ��$��m�S�1�1�� L�!'���]�(;�(D�(D�!E�G�G��J�J�}�%��I�I�a�L�%rc�P�VP4VP;'gVP4pVP4pVP	4VPVPP4RR7VPV4# TPT4i;i)Tr�)	ryr�rr�r�r�rOrTr�)rbr��	old_states&  rrT�StringIO.getvalue�
s{���
�
���-�-�6�6�4�#4�#4�#6���$�$�&�	��
�
��	(��>�>�$�+�+�"6�"6�"8��>�E����Y�'��G���Y�'�s�*B�B%c�,�\PV4#r�)�objectr;rns&rr;�StringIO.__repr__�
s�����t�$�$rc��R#r�rWrns&rrA�StringIO.errors�
���rc��R#r�rWrns&rr�StringIO.encoding�
rgrc�(�VPR4R#)r
Nrhrns&rr
�StringIO.detach�
s�����(�#r)r�)r%r�)rXrYrZr[r�rrTr;r�rArr
r\r�r|r}s@@rrZrZ�
sK������ (�%�
��������$�$rrZ>�win32�cygwin>r�r��i)rn)rr'NNNTN):r�r*�abcr�r�r,r�_threadrr��platform�msvcrtrr1�iorrrrrr	r�r��addr
�	SEEK_DATAr8r�r�dev_moder�r�staticmethodrPrT�	open_coder�rVrr1�ABCMetar^�registerr�r�rrHr;r:r�r9rr3rwr�r�r<rZrWrr�<module>r{sM���
�
�
���
�)��<�<�&�&�*��H�	�F�F���
�2�{���������&�������&�!��"����0�1�G�G�S�Y�Y�5G�5G�
��B�D��D�P� (����I�
��2�2��Y�s�{�{�Y�v�	�	���6��:#��:#�x�����i� �e$�V�e$�N�����>�*�l!�~�l!�^L�n�L�^F�%�F�Pf!�%�f!�RF"�^�F"�RG-�^�^�G-�T�F�Y�F�R>��>�@�
�
���z�"�R�� 9� 9�R�jh
!�J�h
!�V0$�}�0$��[K�(�'�I�(���
�
�w�
�
�
�s$�H�#H �	H�H� H7�6H7

Youez - 2016 - github.com/yon3zu
LinuXploit