<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet"
        integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css"
        integrity="sha512-SzlrxWUlpfuzQ+pcUCosxcglQRNAq/DZjVsC0lE40xsADsfeQoEypE+enwcOiGjk/bSuGGKHEyjSoQ1zVisanQ=="
        crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
</html>
î
j f¡
  ã               @   så   d  Z  d d l Z d d l Z d d l m Z d d d d d „ Z d d	 d
 „ Z Gd d „  d e j ƒ Z Gd d „  d e j ƒ Z Gd d „  d e j	 ƒ Z	 Gd d „  d e e j
 ƒ Z
 Gd d „  d e e j ƒ Z d d „  Z d S)a  Python 'uu_codec' Codec - UU content transfer encoding.

This codec de/encodes from bytes to bytes.

Written by Marc-Andre Lemburg (mal@lemburg.com). Some details were
adapted from uu.py which was written by Lance Ellinghouse and
modified by Jack Jansen and Fredrik Lundh.
é    N)ÚBytesIOÚstrictz<data>i¶  c       	      C   s    t  |  ƒ } t  ƒ  } | j } | j } | d | d @| f j d ƒ ƒ | d ƒ } x) | r | t j | ƒ ƒ | d ƒ } qW W| d ƒ | j ƒ  t |  ƒ f S)Nzbegin %o %s
iÿ  Úasciié-   s    
end
)r   ÚreadÚwriteÚencodeÚbinasciiZb2a_uuÚgetvalueÚlen)	ÚinputÚerrorsÚfilenameÚmodeÚinfileÚoutfiler   r   Úchunk© r   ú7/opt/alt/python34/lib64/python3.4/encodings/uu_codec.pyÚ	uu_encode   s    			!	
r   c       
      C   s7  t  |  ƒ } t  ƒ  } | j } | j } x< | ƒ  } | sH t d ƒ ‚ n  | d  d … d k r* Pq* q* Wx£ | ƒ  } | s… | d k r‰ Pn  y t j | ƒ } Wn_ t j k
 rý } z< | d d d @d d d	 }	 t j | d  |	 … ƒ } WYd  d  } ~ Xn X| | ƒ qi W| s!t d
 ƒ ‚ n  | j ƒ  t |  ƒ f S)Nz"Missing "begin" line in input dataé   s   begins   end
r   é    é?   é   é   zTruncated input data)	r   Úreadliner   Ú
ValueErrorr	   Za2b_uuÚErrorr
   r   )
r   r   r   r   r   r   ÚsÚdataÚvÚnbytesr   r   r   Ú	uu_decode!   s.    					,r"   c               @   s.   e  Z d  Z d d d „ Z d d d „ Z d S)ÚCodecr   c             C   s   t  | | ƒ S)N)r   )Úselfr   r   r   r   r   r   C   s    zCodec.encodec             C   s   t  | | ƒ S)N)r"   )r$   r   r   r   r   r   ÚdecodeF   s    zCodec.decodeN)Ú__name__Ú
__module__Ú__qualname__r   r%   r   r   r   r   r#   B   s   r#   c               @   s   e  Z d  Z d d d „ Z d S)ÚIncrementalEncoderFc             C   s   t  | |  j ƒ d S)Nr   )r   r   )r$   r   Úfinalr   r   r   r   J   s    zIncrementalEncoder.encodeN)r&   r'   r(   r   r   r   r   r   r)   I   s   r)   c               @   s   e  Z d  Z d d d „ Z d S)ÚIncrementalDecoderFc             C   s   t  | |  j ƒ d S)Nr   )r"   r   )r$   r   r*   r   r   r   r%   N   s    zIncrementalDecoder.decodeN)r&   r'   r(   r%   r   r   r   r   r+   M   s   r+   c               @   s   e  Z d  Z e Z d S)ÚStreamWriterN)r&   r'   r(   ÚbytesÚcharbuffertyper   r   r   r   r,   Q   s   r,   c               @   s   e  Z d  Z e Z d S)ÚStreamReaderN)r&   r'   r(   r-   r.   r   r   r   r   r/   T   s   r/   c               C   s:   t  j d d d t d t d t d t d t d t d	 d
 ƒ S)NÚnameÚuur   r%   ÚincrementalencoderÚincrementaldecoderÚstreamreaderÚstreamwriterÚ_is_text_encodingF)ÚcodecsÚ	CodecInfor   r"   r)   r+   r/   r,   r   r   r   r   ÚgetregentryY   s    	r9   )Ú__doc__r7   r	   Úior   r   r"   r#   r)   r+   r,   r/   r9   r   r   r   r   Ú<module>   s   !