
    VeIi                     z    d Z ddlmZmZmZmZmZ ddlZddl	m
Z
 	 eZn# e$ r Y nw xY wddZ G d d          ZdS )	a_  This module is used to create QR Codes. It is designed to be as simple and
as possible. It does this by using sane defaults and autodetection to make
creating a QR Code very simple.

It is recommended that you use the :func:`pyqrcode.create` function to build the
QRCode object. This results in cleaner looking code.

Examples:
        >>> import pyqrcode
        >>> import sys
        >>> url = pyqrcode.create('http://uca.edu')
        >>> url.svg(sys.stdout, scale=1)
        >>> url.svg('uca.svg', scale=4)
        >>> number = pyqrcode.create(123456789012345)
        >>> number.png('big-number.png')
    )absolute_importdivisionprint_functionwith_statementunicode_literalsNHc                 (    t          | ||||          S )ac  When creating a QR code only the content to be encoded is required,
    all the other properties of the code will be guessed based on the
    contents given. This function will return a :class:`QRCode` object.

    Unless you are familiar with QR code's inner workings
    it is recommended that you just specify the *content* and nothing else.
    However, there are cases where you may want to specify the various
    properties of the created code manually, this is what the other
    parameters do. Below, you will find a lengthy explanation of what
    each parameter is for. Note, the parameter names and values are taken
    directly from the standards. You may need to familiarize yourself
    with the terminology of QR codes for the names and their values to
    make sense.

    The *error* parameter sets the error correction level of the code. There
    are four levels defined by the standard. The first is level 'L' which
    allows for 7% of the code to be corrected. Second, is level 'M' which
    allows for 15% of the code to be corrected. Next, is level 'Q' which
    is the most common choice for error correction, it allow 25% of the
    code to be corrected. Finally, there is the highest level 'H' which
    allows for 30% of the code to be corrected. There are several ways to
    specify this parameter, you can use an upper or lower case letter,
    a float corresponding to the percentage of correction, or a string
    containing the percentage. See tables.modes for all the possible
    values. By default this parameter is set to 'H' which is the highest
    possible error correction, but it has the smallest available data
    capacity.

    The *version* parameter specifies the size and data capacity of the
    code. Versions are any integer between 1 and 40. Where version 1 is
    the smallest QR code, and version 40 is the largest. If this parameter
    is left unspecified, then the contents and error correction level will
    be used to guess the smallest possible QR code version that the
    content will fit inside of. You may want to specify this parameter
    for consistency when generating several QR codes with varying amounts
    of data. That way all of the generated codes would have the same size.

    The *mode* parameter specifies how the contents will be encoded. By
    default, the best possible mode for the contents is guessed. There
    are four possible modes. First, is 'numeric' which is
    used to encode integer numbers. Next, is 'alphanumeric' which is
    used to encode some ASCII characters. This mode uses only a limited
    set of characters. Most problematic is that it can only use upper case
    English characters, consequently, the content parameter will be
    subjected to str.upper() before encoding. See tables.ascii_codes for
    a complete list of available characters. The is 'kanji' mode can be
    used for Japanese characters, but only those that can be understood
    via the shift-jis string encoding. Finally, we then have 'binary' mode
    which just encodes the bytes directly into the QR code (this encoding
    is the least efficient).

    The *encoding* parameter specifies how the content will be interpreted.
    This parameter only matters if the *content* is a string, unicode, or
    byte array type. This parameter must be a valid encoding string or None. 
    t will be passed the *content*'s encode/decode methods.
    )QRCode)contenterrorversionmodeencodings        V/var/www/html/MCyber-Diagnostic/venv/lib/python3.11/site-packages/pyqrcode/__init__.pycreater   6   s    r '5'4:::    c                       e Zd ZdZ	 	 d"dZd Zd Zd Zd	 Zd
 Z		 	 d#dZ
d$dZ	 	 d%dZ	 	 d%dZd$dZ	 	 	 	 d&dZ	 	 d'dZ	 	 d(d Zd)d!ZdS )*r
   a  This class represents a QR code. To use this class simply give the
    constructor a string representing the data to be encoded, it will then
    build a code in memory. You can then save it in various formats. Note,
    codes can be written out as PNG files but this requires the PyPNG module.
    You can find the PyPNG module at http://packages.python.org/pypng/.

    Examples:
        >>> from pyqrcode import QRCode
        >>> import sys
        >>> url = QRCode('http://uca.edu')
        >>> url.svg(sys.stdout, scale=1)
        >>> url.svg('uca.svg', scale=4)
        >>> number = QRCode(123456789012345)
        >>> number.png('big-number.png')

    .. note::
        For what all of the parameters do, see the :func:`pyqrcode.create`
        function.
    r   N
iso-8859-1c                    |                      ||          \  }}|d}|dk    rd| _        n|| _        |:d|cxk    rdk    rn n|| _        n"t          d                    |                    t          |t                    r|                    |          | _        nDt          |d          r |
                    | j                  | _        nt          |          | _        t          |d          r|                                }|%|| _        t          j        | j                 | _        n)|t          j                                        vr"t          d	                    |                    |d
k    rHt          j        |         t          j        d
         k    r"t          d                    |                    t          j        |         t          j        d         k    r|dk    rt          d          t          j        |         t          j        d         k    r|dk    rt          d          || _        t          j        | j                 | _        |t          j                                        v rt          j        |         | _        n"t          d                    |                    |                     | j                  | _        |r;|| j        k    r|| _        n(t          d                    || j                            t+          j        | j        | j        | j        | j                  | _        | j        j        | _        d S )Nr   kanjishiftjis   (   z6Illegal version {0}, version must be between 1 and 40.encodelowerz{0} is not a valid mode.binaryzZThe content provided cannot be encoded with the mode {}, it can only be encoded as binary.numericz)The content cannot be encoded as numeric.z'The content cannot be encoded as kanji.z{0} is not a valid error level.zThe data will not fit inside a version {} code with the given encoding and error level (the code must be at least a version {}).)datar   r   r   )_detect_content_typer   r   
ValueErrorformat
isinstancebytesdecoder   hasattrr   strr   r   tablesmodesmode_numkeyserror_levelr   _pick_best_fitbuilderQRCodeBuildercode)selfr   r   r   r   r   guessed_content_types          r   __init__zQRCode.__init__   s5    *.)B)B7H)U)U&h#H  7**&DMM$DMG!!!!r!!!!!&  "--3VG__> > > gu%% 
	%x00DII Wh'' 	%t}55DII
 GDI 4!! 	 ::<<D <,DI"L3DMM**,,,,7>>tDDEEE!X--\$6<#999  ''-vd||5 5 5 \$6<	#:::!Y.. HIII\$6<#888!W,,FGGG DI"L3DM F&++----+E2DJJ &&,fUmm5 5 5 **4955  	O$,&&&  "0 17w0M0MO O O ,$)59\26)37:? ? ? L%			r   c                      t          |           S N)reprr0   s    r   __str__zQRCode.__str__   s    Dzzr   c                 *    |                                  S r4   )__repr__r6   s    r   __unicode__zQRCode.__unicode__   s    }}r   c                 t    d                     t          | j                  | j        | j        | j                  S )Nz9QRCode(content={0}, error='{1}', version={2}, mode='{3}'))r!   r5   r   r   r   r   r6   s    r   r9   zQRCode.__repr__   s,    JTYT\49MM	Nr   c                    d }	 t          |                                          rd|fS n# t          t          f$ r Y nw xY wd                    t
          j                                                                      d          	 t          |t                    r|                    d          }n"t          |                              d          }t          t          fd|                    rdS n# t          $ r Y nt          $ r Y nw xY w	 t          |t                    r-|d}|                    |                              d          }n|                    d          }t          |          d	z  d
k    rd|fS  ||          D ]&}d|cxk    rdk    sn d|cxk    rdk    sn d|fc S 'd|fS # t          $ r Y nw xY wd|fS )aU  This method tries to auto-detect the type of the data. It first
        tries to see if the data is a valid integer, in which case it returns
        numeric. Next, it tests the data to see if it is 'alphanumeric.' QR
        Codes use a special table with very limited range of ASCII characters.
        The code's data is tested to make sure it fits inside this limited
        range. If all else fails, the data is determined to be of type
        'binary.'
        
        Returns a tuple containing the detected mode and encoding.

        Note, encoding ECI is not yet implemented.
        c              3      K   d }t          dt          |           d          D ]-} || |                   dz   || |dz                      z  V  .dS )z3Output two byte character code as a single integer.c                 N    t          | t                    st          |           S | S )zgMake sure that character code is an int. Python 2 and
                3 compatibility.
                )r"   intord)bs    r   	next_bytezAQRCode._detect_content_type.<locals>.two_bytes.<locals>.next_byte   s&     "!S)) q66MHr   r         r   N)rangelen)crB   is      r   	two_bytesz.QRCode._detect_content_type.<locals>.two_bytes   s}         1c!ffa(( A A y1!+yy1Q3/@/@@@@@@A Ar   r    ASCIIc                     | v S r4    )xvalid_characterss    r   <lambda>z-QRCode._detect_content_type.<locals>.<lambda>   s    &6!6 r   )alphanumericrK   Nr   rC   r   r   i@  i  i@  i  r   )r&   isdigit	TypeErrorUnicodeErrorjoinr'   ascii_codesr*   r   r"   r#   r$   allmaprF   )r0   r   r   rI   rG   asintrO   s         @r   r   zQRCode._detect_content_type   sd   	A 	A 	A 	7||##%% + (**+<( 	 	 	D	
 776#5#:#:#<#<== ,227;;	'5)) 1NN7++LL''0036666::;; /../  	 	 	D 	 	 	D		'5)) /#)HNN8,,33J??NN:.. 1vvzQ)) #1 . .%111161111%111161111#X----H$$ 	 	 	 D		 !!sF   $, A A 
A-C: :
D	DDA0F= 0F= 8F= =
G
	G
c                 \   ddl }t          dd          D ]}t          j        |         | j                 | j                 }| j        t          j        d         k    r-||                    t          |          dz            k    r|c S |t          |          k    r|c S t          d          )zThis method return the smallest possible QR code version number
        that will fit the specified data with the given error level.
        r   Nr   )   r   rC   zUThe data will not fit in any QR code version with the given encoding and error level.)
mathrE   r'   data_capacityr   r)   r(   ceilrF   r    )r0   r   r\   r   capacitys        r   r,   zQRCode._pick_best_fitL  s     	Q|| 
	 
	G+G4TZ@OH g!666DIIc'llQ&677773w<<'' (  D E E 	Er   333333?
   r   r   r      rc   rc   rc   rc      c                    ddl }ddl}ddl}ddl}		 ddlm}
 ddlm} n# t          $ r ddl	m}
 ddl
m} Y nw xY w|                    ddd          }|                     |||||	           |                                 |	                     |
d
 ||j                                       |                    |           |                    |j                   dS )a  Displays this QR code.

        This method is mainly intended for debugging purposes.

        This method saves the output of the :py:meth:`png` method (with a default
        scaling factor of 10) to a temporary file and opens it with the
        standard PNG viewer application or within the standard webbrowser. The
        temporary file is deleted afterwards.

        If this method does not show any result, try to increase the `wait`
        parameter. This parameter specifies the time in seconds to wait till
        the temporary file is deleted. Note, that this method does not return
        until the provided amount of seconds (default: 1.2) has passed.

        The other parameters are simply passed on to the `png` method.
        r   N)urljoin)pathname2urlwbz.pngF)suffixdelete)scalemodule_color
background
quiet_zonezfile:)ostimetempfile
webbrowserurlparserg   urllibrh   ImportErrorurllib.parseurllib.requestNamedTemporaryFilepngcloseopen_new_tabnamesleepunlink)r0   waitrl   rm   rn   ro   rp   rq   rr   rs   rg   rh   fs                r   showzQRCode.showa  sC   $ 					4((((((+++++++ 	4 	4 	4,,,,,,33333333	4 ''VE'JJ%l&: 	 	? 	? 	?				af1E1E F FGGG

4
		!&s    88r   c                 8    t          j        | j        ||          S )a  This is method helps users determine what *scale* to use when
        creating a PNG of this QR code. It is meant mostly to be used in the
        console to help the user determine the pixel size of the code
        using various scales.

        This method will return an integer representing the width and height of
        the QR code in pixels, as if it was drawn using the given *scale*.
        Because QR codes are square, the number represents both the width
        and height dimensions.

        The *quiet_zone* parameter sets how wide the quiet zone around the code
        should be. According to the standard this should be 4 modules. It is
        left settable because such a wide quiet zone is unnecessary in many
        applications where the QR code is not being printed.

        Example:
            >>> code = pyqrcode.QRCode("I don't like spam!")
            >>> print(code.get_png_size(1))
            31
            >>> print(code.get_png_size(5))
            155
        )r-   _get_png_sizer   r0   rl   ro   s      r   get_png_sizezQRCode.get_png_size  s    . $T\5*EEEr   c           	      N    t          j        | j        | j        |||||           dS )a	  This method writes the QR code out as an PNG image. The resulting
        PNG has a bit depth of 1. The file parameter is used to specify where
        to write the image to. It can either be an writable stream or a
        file path.

        .. note::
            This method depends on the pypng module to actually create the
            PNG file.

        This method will write the given *file* out as a PNG file. The file
        can be either a string file path, or a writable stream. The file
        will not be automatically closed if a stream is given.

        The *scale* parameter sets how large to draw a single module. By
        default one pixel is used to draw a single module. This may make the
        code too small to be read efficiently. Increasing the scale will make
        the code larger. Only integer scales are usable. This method will
        attempt to coerce the parameter into an integer (e.g. 2.5 will become 2,
        and '3' will become 3). You can use the :py:meth:`get_png_size` method
        to calculate the actual pixel size of the resulting PNG image.

        The *module_color* parameter sets what color to use for the encoded
        modules (the black part on most QR codes). The *background* parameter
        sets what color to use for the background (the white part on most
        QR codes). If either parameter is set, then both must be
        set or a ValueError is raised. Colors should be specified as either
        a list or a tuple of length 3 or 4. The components of the list must
        be integers between 0 and 255. The first three member give the RGB
        color. The fourth member gives the alpha component, where 0 is
        transparent and 255 is opaque. Note, many color
        combinations are unreadable by scanners, so be judicious.

        The *quiet_zone* parameter sets how wide the quiet zone around the code
        should be. According to the standard this should be 4 modules. It is
        left settable because such a wide quiet zone is unnecessary in many
        applications where the QR code is not being printed.

        Example:
            >>> code = pyqrcode.create('Are you suggesting coconuts migrate?')
            >>> code.png('swallow.png', scale=5)
            >>> code.png('swallow.png', scale=5,
                         module_color=(0x66, 0x33, 0x0),      #Dark brown
                         background=(0xff, 0xff, 0xff, 0x88)) #50% transparent white
        N)r-   _pngr/   r   r0   filerl   rm   rn   ro   s         r   rz   z
QRCode.png  s6    \ 	TYdE!:z	; 	; 	; 	; 	;r   c                    ddl }ddl}|                                5 }|                     |||||           |                    |                                                              d          }ddd           n# 1 swxY w Y   |S )a  This method uses the png render and returns the PNG image encoded as
        base64 string. This can be useful for creating dynamic PNG images for
        web development, since no file needs to be created.
        
        Example:
            >>> code = pyqrcode.create('Are you suggesting coconuts migrate?')
            >>> image_as_str = code.png_as_base64_str(scale=5)
            >>> html_img = '<img src="data:image/png;base64,{}">'.format(image_as_str)

        The parameters are passed directly to the :py:meth:`png` method. Refer
        to that method's documentation for the meaning behind the parameters.
        
        .. note::
            This method depends on the pypng module to actually create the
            PNG image.

        r   N)r   rl   rm   rn   ro   ascii)iobase64BytesIOrz   	b64encodegetvaluer$   )	r0   rl   rm   rn   ro   r   r   virtual_fileimage_as_strs	            r   png_as_base64_strzQRCode.png_as_base64_str  s    & 				ZZ\\ 	U\HH,e, *z  C C C!++L,A,A,C,CDDKKGTTL	U 	U 	U 	U 	U 	U 	U 	U 	U 	U 	U 	U 	U 	U 	U s   AA>>BBc                 8    t          j        | j        ||          S )a  Returns a string representing an XBM image of the QR code.
        The XBM format is a black and white image format that looks like a
        C header file. 
        
        Because displaying QR codes in Tkinter is the
        primary use case for this renderer, this method does not take a file
        parameter. Instead it retuns the rendered QR code data as a string.
        
        Example of using this renderer with Tkinter:
            >>> import pyqrcode
            >>> import tkinter
            >>> code = pyqrcode.create('Knights who say ni!')
            >>> code_xbm = code.xbm(scale=5)
            >>>
            >>> top = tkinter.Tk()
            >>> code_bmp = tkinter.BitmapImage(data=code_xbm)
            >>> code_bmp.config(foreground="black")
            >>> code_bmp.config(background="white")
            >>> label = tkinter.Label(image=code_bmp)
            >>> label.pack()

        
        The *scale* parameter sets how large to draw a single module. By
        default one pixel is used to draw a single module. This may make the
        code too small to be read efficiently. Increasing the scale will make
        the code larger. Only integer scales are usable. This method will
        attempt to coerce the parameter into an integer (e.g. 2.5 will become 2,
        and '3' will become 3). You can use the :py:meth:`get_png_size` method
        to calculate the actual pixel size of this image when displayed.

        The *quiet_zone* parameter sets how wide the quiet zone around the code
        should be. According to the standard this should be 4 modules. It is
        left settable because such a wide quiet zone is unnecessary in many
        applications where the QR code is not being printed.
        )r-   _xbmr/   r   s      r   xbmz
QRCode.xbm  s    H |DIuj999r   #000TpyqrcodepyqrlineFc                 ^    t          j        | j        | j        |||||||||	|
||           dS )aR  This method writes the QR code out as an SVG document. The
        code is drawn by drawing only the modules corresponding to a 1. They
        are drawn using a line, such that contiguous modules in a row
        are drawn with a single line.

        The *file* parameter is used to specify where to write the document
        to. It can either be a writable stream or a file path.
        
        The *scale* parameter sets how large to draw
        a single module. By default one pixel is used to draw a single
        module. This may make the code too small to be read efficiently.
        Increasing the scale will make the code larger. Unlike the png() method,
        this method will accept fractional scales (e.g. 2.5).

        Note, three things are done to make the code more appropriate for
        embedding in a HTML document. The "white" part of the code is actually
        transparent. The code itself has a class given by *svgclass* parameter. 
        The path making up the QR code uses the class set using the *lineclass*.
        These should make the code easier to style using CSS.

        By default the output of this function is a complete SVG document. If
        only the code itself is desired, set the *xmldecl* to false. This will
        result in a fragment that contains only the "drawn" portion of the code.
        Likewise, you can set the *title* of the document. The SVG name space
        attribute can be suppressed by setting *svgns* to False.

        When True the *omithw* indicates if width and height attributes should
        be omitted. If these attributes are omitted, a ``viewBox`` attribute
        will be added to the document.

        You can also set the colors directly using the *module_color* and
        *background* parameters. The *module_color* parameter sets what color to
        use for the data modules (the black part on most QR codes). The
        *background* parameter sets what color to use for the background (the
        white part on most QR codes). The parameters can be set to any valid
        SVG or HTML color. If the background is set to None, then no background
        will be drawn, i.e. the background will be transparent. Note, many color
        combinations are unreadable by scanners, so be careful.

        The *quiet_zone* parameter sets how wide the quiet zone around the code
        should be. According to the standard this should be 4 modules. It is
        left settable because such a wide quiet zone is unnecessary in many
        applications where the QR code is not being printed.
        
        Example:
            >>> code = pyqrcode.create('Hello. Uhh, can we have your liver?')
            >>> code.svg('live-organ-transplants.svg', 3.6)
            >>> code.svg('live-organ-transplants.svg', scale=4,
                         module_color='brown', background='0xFFFFFF')
        )rl   rm   rn   ro   xmldeclsvgnstitlesvgclass	lineclassomithwdebugN)r-   _svgr/   r   )r0   r   rl   rm   rn   ro   r   r   r   r   r   r   r   s                r   svgz
QRCode.svg  sL    l 	TYd%".: *G5 8y"%		1 	1 	1 	1 	1 	1r   r   r   r   c           	      N    t          j        | j        | j        |||||           dS )a  This method writes the QR code out as an EPS document. The
        code is drawn by only writing the data modules corresponding to a 1.
        They are drawn using a line, such that contiguous modules in a row
        are drawn with a single line.

        The *file* parameter is used to specify where to write the document
        to. It can either be a writable (text) stream or a file path.

        The *scale* parameter sets how large to draw a single module. By
        default one point (1/72 inch) is used to draw a single module. This may
        make the code to small to be read efficiently. Increasing the scale
        will make the code larger. This method will accept fractional scales
        (e.g. 2.5).

        The *module_color* parameter sets the color of the data modules. The
        *background* parameter sets the background (page) color to use. They
        are specified as either a triple of floats, e.g. (0.5, 0.5, 0.5), or a
        triple of integers, e.g. (128, 128, 128). The default *module_color* is
        black. The default *background* color is no background at all.

        The *quiet_zone* parameter sets how large to draw the border around
        the code. As per the standard, the default value is 4 modules.

        Examples:
            >>> qr = pyqrcode.create('Hello world')
            >>> qr.eps('hello-world.eps', scale=2.5, module_color='#36C')
            >>> qr.eps('hello-world2.eps', background='#eee')
            >>> out = io.StringIO()
            >>> qr.eps(out, module_color=(.4, .4, .4))
        N)r-   _epsr/   r   r   s         r   epsz
QRCode.epsO  s6    @ 	TYdE<	- 	- 	- 	- 	-r   defaultreversec                 :    t          j        | j        |||          S )a  This method returns a string containing ASCII escape codes,
        such that if printed to a compatible terminal, it will display
        a vaild QR code. The code is printed using ASCII escape
        codes that alter the coloring of the background.

        The *module_color* parameter sets what color to
        use for the data modules (the black part on most QR codes).
        Likewise, the *background* parameter sets what color to use
        for the background (the white part on most QR codes).  

        There are two options for colors. The first, and most widely
        supported, is to use the 8 or 16 color scheme. This scheme uses
        eight to sixteen named colors. The following colors are
        supported the most widely supported: black, red, green,
        yellow, blue, magenta, and cyan. There are an some additional
        named colors that are supported by most terminals: light gray,
        dark gray, light red, light green, light blue, light yellow,
        light magenta, light cyan, and white. 

        There are two special named colors. The first is the
        "default" color. This color is the color the background of
        the terminal is set to. The next color is the "reverse"
        color. This is not really a color at all but a special
        property that will reverse the current color. These two colors
        are the default values for *module_color* and *background*
        respectively. These values should work on most terminals.

        Finally, there is one more way to specify the color. Some
        terminals support 256 colors. The actual colors displayed in the
        terminal is system dependent. This is the least transportable option.
        To use the 256 color scheme set *module_color* and/or
        *background* to a number between 0 and 256.

        The *quiet_zone* parameter sets how wide the quiet zone around the code
        should be. According to the standard this should be 4 modules. It is
        left settable because such a wide quiet zone is unnecessary in many
        applications.

        Example:
            >>> code = pyqrcode.create('Example')
            >>> text = code.terminal()
            >>> print(text)
        )r-   	_terminalr/   )r0   rm   rn   ro   s       r   terminalzQRCode.terminalr  s%    Z  L*!+- - 	-r   c                 6    t          j        | j        |          S )a  This method returns a string based representation of the QR code.
        The data modules are represented by 1's and the background modules are
        represented by 0's. The main purpose of this method is to act a
        starting point for users to create their own renderers.

        The *quiet_zone* parameter sets how wide the quiet zone around the code
        should be. According to the standard this should be 4 modules. It is
        left settable because such a wide quiet zone is unnecessary in many
        applications.

        Example:
            >>> code = pyqrcode.create('Example')
            >>> text = code.text()
            >>> print(text)
        )r-   _textr/   )r0   ro   s     r   textzQRCode.text  s      }TY
333r   )r   NNr   )r`   ra   rb   rd   re   )r   re   )r   rb   rd   re   )r   r   Nre   TTNr   r   FF)r   r   Nre   )r   r   re   )re   )__name__
__module____qualname____doc__r2   r7   r:   r9   r   r,   r   r   rz   r   r   r   r   r   r   rM   r   r   r
   r
   q   s        & ?C&_& _& _& _&B    N N NZ" Z" Z"xE E E* 5C89$ $ $ $LF F F F2 /=89/; /; /; /;b 7EFG   8$: $: $: $:L BF:>>C:1 :1 :1 :1x /8()!- !- !- !-F ;D.- .- .- .-`4 4 4 4 4 4r   r
   )r   NNN)r   
__future__r   r   r   r   r   pyqrcode.tablesr   pyqrcode.builderr-   unicoder&   	NameErrorr   r
   rM   r   r   <module>r      s   4 $ c b b b b b b b b b b b b b     " " " " " "	
CC 	 	 	D	9; 9; 9; 9;vA	4 A	4 A	4 A	4 A	4 A	4 A	4 A	4 A	4 A	4s    ''